We can see that the distribution is almost uniform for all the short description categories except for a few
Currently,
Guided by powerful AI techniques that can classify incidents to right functional groups can help organizations to reduce the resolving time of the issue and can focus on more productive tasks.
import nltk # Import NLTK
from nltk.corpus import reuters # Import the Reuters corpus
import pandas as pd
import numpy as np # linear algebra
import seaborn as sns
import matplotlib.pyplot as plt # seaborn is based on matplotlib
sns.set(color_codes=True) # adds a nice background to the graphs
%matplotlib inline
# tells python to actually display the graphs
import scipy.stats as stats
import seaborn as sns
from statsmodels.stats.weightstats import ztest
from sklearn.model_selection import train_test_split
import tensorflow as tf
# Importing necessary libraries
import seaborn as sns
import tensorflow
import random
import pandas as pd
import os
import cv2
import seaborn as sns
import matplotlib.pyplot as plt # seaborn is based on matplotlib
sns.set(color_codes=True) # adds a nice background to the graphs
%matplotlib inline
# tells python to actually display the graphs
import scipy.stats as stats
from sklearn.model_selection import train_test_split
from sklearn.neighbors import KNeighborsClassifier
from scipy.stats import zscore
# Ignore the warnings
import warnings
warnings.filterwarnings("ignore")
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense
from tensorflow.keras import regularizers, optimizers
from tensorflow.keras.preprocessing import image
from keras.layers.convolutional import Conv1D
from keras.layers.convolutional import MaxPooling1D
from tensorflow.keras.applications.vgg16 import VGG16, preprocess_input
# Initialize the random number generator
import random
random.seed(0)
# Ignore the warnings
import warnings
warnings.filterwarnings("ignore")
#import numpy
from keras.datasets import imdb
from matplotlib import pyplot
Data = pd.read_excel("IT-Ticket-Classification.xlsx") # reading the csv file from local machine
Data.head()
| Short description | Description | Caller | Assignment group | |
|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 |
| 1 | outlook | _x000D_\n_x000D_\nreceived from: hmjdrvpb.komu... | hmjdrvpb komuaywn | GRP_0 |
| 2 | cant log in to vpn | _x000D_\n_x000D_\nreceived from: eylqgodm.ybqk... | eylqgodm ybqkwiam | GRP_0 |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 |
| 4 | skype error | skype error | owlgqjme qhcozdfx | GRP_0 |
Data has four columns:
Data.shape
(8500, 4)
There are 8500 rows in the dataset
##### Ask Dipanshu how can we do the upsampling - Bhawna to check
Data.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 8500 entries, 0 to 8499 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Short description 8492 non-null object 1 Description 8499 non-null object 2 Caller 8500 non-null object 3 Assignment group 8500 non-null object dtypes: object(4) memory usage: 265.8+ KB
We need to either remove or feed such entries before processing the data
#Data.describe(include='all')
We will analyze the data further and derive more insights later
Data.drop(['Caller'], axis = 1,inplace=True) # Dropping the caller column as it wouldn't be needed for the classification task
Data["Assignment group"].value_counts()
GRP_0 3976
GRP_8 661
GRP_24 289
GRP_12 257
GRP_9 252
...
GRP_64 1
GRP_67 1
GRP_35 1
GRP_70 1
GRP_73 1
Name: Assignment group, Length: 74, dtype: int64
import plotly
import cufflinks as cf
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
init_notebook_mode(connected=True)
cf.go_offline()
# Assignment group distribution
print('\033[1mTotal assignment groups:\033[0m', Data['Assignment group'].nunique())
# Pie chart
assgn_grp = pd.DataFrame(Data.groupby('Assignment group').size(),columns = ['Count']).reset_index()
assgn_grp.iplot(
kind='pie',
labels='Assignment group',
values='Count',
title='Assignment Group Distribution- Pie Chart (Fig-2)',
hoverinfo="label+percent+name", hole=0.25)
Total assignment groups: 74
Plotting Frequency distribution in descending order, across various groups which were assigned the tickets
plt.style.use('ggplot') # Using gg plot for plotting based on decending order
%matplotlib inline
descending_order = Data['Assignment group'].value_counts().sort_values(ascending=False).index
plt.subplots(figsize=(22,5))
#added code for x label rotate
ax=sns.countplot(x='Assignment group', data=Data,order=descending_order)
ax.set_xticklabels(ax.get_xticklabels(), rotation=45, ha="right")
plt.tight_layout()
plt.show()
Observation:
Data['Assignment group'][Data['Assignment group'] != "GRP_0"]
6 GRP_1
17 GRP_3
32 GRP_4
43 GRP_5
47 GRP_6
...
8493 GRP_10
8494 GRP_3
8495 GRP_29
8498 GRP_62
8499 GRP_49
Name: Assignment group, Length: 4524, dtype: object
plt.style.use('ggplot') # Using gg plot for plotting based on descending order
%matplotlib inline
descending_order = Data['Assignment group'][Data['Assignment group'] != "GRP_0"].value_counts().sort_values(ascending=False).index
plt.subplots(figsize=(22,5))
#added code for x label rotate
ay=sns.countplot(x='Assignment group', data=Data,order=descending_order)
ay.set_xticklabels(ay.get_xticklabels(), rotation=45, ha="right")
plt.tight_layout()
plt.show()
Observation:
# Find out the Assignment Groups with less than equal to 30 tickets assigned
rare_ticket = Data.groupby(['Assignment group']).filter(lambda x: len(x) <= 5)
print('\033[1m#Groups with less than equal to 5 tickets assigned:\033[0m', rare_ticket['Assignment group'].nunique())
rare_ticket['Assignment group'].iplot(
kind='hist',
xTitle='Assignment Group',
yTitle='count',
colorscale='-orrd',
title='#Records by rare Assignment Groups- Histogram (Fig-4)')
#Groups with less than equal to 5 tickets assigned: 19
# Distribution of Assignment groups excluding GRP_0 & rare groups (groups with less than equal 30 tickets assigned)
excluded_grp = ['GRP_0']
excluded_grp.extend(rare_ticket['Assignment group'].unique())
filtered_tkt = Data[~Data['Assignment group'].isin(excluded_grp)]
# Pie chart
filtered_assgn_grp = pd.DataFrame(filtered_tkt.groupby('Assignment group').size(),columns = ['Count']).reset_index()
filtered_assgn_grp.iplot(
kind='pie',
labels='Assignment group',
values='Count',
title='#Records by Assignment groups(excluding GRP_0 and rare groups)- Pie Chart (Fig-5)',
pull=np.linspace(0,0.3,filtered_assgn_grp['Assignment group'].nunique()))
# Histogram
filtered_tkt['Assignment group'].iplot(
kind='histogram',
xTitle='Assignment Group',
yTitle='count',
colorscale='-gnbu',
title='#Records by Assignment groups(excluding GRP_0 and rare groups)- Histogram (Fig-6)')
Observations from the histogram are confimred with the pie-chart which is showing percentage distributions of tickets assigned
plt.style.use('ggplot') # Using gg plot for plotting based on descending order
%matplotlib inline
descending_order = Data['Short description'].value_counts().sort_values(ascending=False).index
plt.subplots(figsize=(22,5))
#added code for x label rotate
az=sns.countplot(x='Short description', data=Data,order=descending_order)
az.set_xticklabels(az.get_xticklabels(), rotation=45, ha="right")
plt.tight_layout()
plt.show()
Obeservation: As seen, there is not any defined short description categories which receive good number of tickets. Hence we need to apply NLP techniques for classification
# Datafinal = Data.dropna() # Dropping the 20 null "LoanOnCard" value carrying rows
Datafinal= Data # Taking backup
Data.head
<bound method NDFrame.head of Short description \
0 login issue
1 outlook
2 cant log in to vpn
3 unable to access hr_tool page
4 skype error
... ...
8495 emails not coming in from zz mail
8496 telephony_software issue
8497 vip2: windows password reset for tifpdchb pedx...
8498 machine não está funcionando
8499 an mehreren pc`s lassen sich verschiedene prgr...
Description Assignment group
0 -verified user details.(employee# & manager na... GRP_0
1 _x000D_\n_x000D_\nreceived from: hmjdrvpb.komu... GRP_0
2 _x000D_\n_x000D_\nreceived from: eylqgodm.ybqk... GRP_0
3 unable to access hr_tool page GRP_0
4 skype error GRP_0
... ... ...
8495 _x000D_\n_x000D_\nreceived from: avglmrts.vhqm... GRP_29
8496 telephony_software issue GRP_0
8497 vip2: windows password reset for tifpdchb pedx... GRP_0
8498 i am unable to access the machine utilities to... GRP_62
8499 an mehreren pc`s lassen sich verschiedene prgr... GRP_49
[8500 rows x 3 columns]>
Datafinal.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 8500 entries, 0 to 8499 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Short description 8492 non-null object 1 Description 8499 non-null object 2 Assignment group 8500 non-null object dtypes: object(3) memory usage: 199.3+ KB
We need to create a custom function for data cleansing as the standard nltk stpwords would not work for:
import re
from dateutil import parser
def is_valid_date(date_str):
try:
parser.parse(date_str)
return True
except:
return False
def clean_data(text):
text=text.lower()
text = ' '.join([w for w in text.split() if not is_valid_date(w)])
text = re.sub(r"received from:",' ',text)
text = re.sub(r"from:",' ',text)
text = re.sub(r"to:",' ',text)
text = re.sub(r"to:",' xd ',text)
text = re.sub(r"subject:",' ',text)
text = re.sub(r"sent:",' ',text)
text = re.sub(r"ic:",' ',text)
text = re.sub(r"cc:",' ',text)
text = re.sub(r"bcc:",' ',text)
#Remove email
text = re.sub(r'\S*@\S*\s?', '', text)
# Remove numbers
text = re.sub(r'\d+','' ,text)
# Remove new line characters
text = re.sub(r'\n',' ',text)
text = re.sub(r'\r',' ',text)
# Remove hashtag while keeping hashtag text
text = re.sub(r'#','', text)
#&
text = re.sub(r'&;?', 'and',text)
# Remove HTML special entities (e.g. &)
text = re.sub(r'\&\w*;', '', text)
# Remove hyperlinks
text = re.sub(r'https?:\/\/.*\/\w*', '', text)
# Remove characters beyond Readable formart by Unicode:
text= ''.join(c for c in text if c <= '\uFFFF')
text = text.strip()
# Remove unreadable characters (also extra spaces)
text = ' '.join(re.sub("[^\u0030-\u0039\u0041-\u005a\u0061-\u007a]", " ", text).split())
# for name in callers:
# namelist = [part for part in name.split()]
# for namepart in namelist:
# text = text.replace(namepart,'')
text = re.sub(r"\s+[a-zA-Z]\s+", ' ', text)
text = re.sub(' +', ' ', text)
text = text.strip()
return text
for i in range(len(Datafinal['Short description'])):
Datafinal['Short description'][i] =clean_data(str(Datafinal['Short description'][i]))
Datafinal['Description'][i] =clean_data(str(Datafinal['Description'][i]))
Datafinal.head(10)
| Short description | Description | Assignment group | |
|---|---|---|---|
| 0 | login issue | verified user details employee and manager nam... | GRP_0 |
| 1 | outlook | xd xd xd hello team xd xd my meetings skype me... | GRP_0 |
| 2 | cant log in to vpn | xd xd xd hi xd xd cannot log on to vpn xd xd best | GRP_0 |
| 3 | unable to access hr tool page | unable to access hr tool page | GRP_0 |
| 4 | skype error | skype error | GRP_0 |
| 5 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | GRP_0 |
| 6 | event critical hostname company com the value ... | event critical hostname company com the value ... | GRP_1 |
| 7 | ticket no employment status new non employee e... | ticket no employment status new non employee e... | GRP_0 |
| 8 | unable to disable add ins on outlook | unable to disable add ins on outlook | GRP_0 |
| 9 | ticket update on inplant | ticket update on inplant | GRP_0 |
Datafinal['Short description'].replace('', np.nan, inplace=True) # To be execcuted after clean_data function
Datafinal['Description'].replace('', np.nan, inplace=True) # To be execcuted after clean_data function
Data.dropna(subset=['Short description'],inplace=True)
Data.dropna(subset=['Description'],inplace=True)
Datafinal.head
<bound method NDFrame.head of Short description \
0 login issue
1 outlook
2 cant log in to vpn
3 unable to access hr tool page
4 skype error
... ...
8495 emails not coming in from zz mail
8496 telephony software issue
8497 vip windows password reset for tifpdchb pedxruyf
8498 machine o est funcionando
8499 an mehreren pc lassen sich verschiedene prgram...
Description Assignment group
0 verified user details employee and manager nam... GRP_0
1 xd xd xd hello team xd xd my meetings skype me... GRP_0
2 xd xd xd hi xd xd cannot log on to vpn xd xd best GRP_0
3 unable to access hr tool page GRP_0
4 skype error GRP_0
... ... ...
8495 xd xd xd good afternoon xd am not receiving th... GRP_29
8496 telephony software issue GRP_0
8497 vip windows password reset for tifpdchb pedxruyf GRP_0
8498 i am unable to access the machine utilities to... GRP_62
8499 an mehreren pc lassen sich verschiedene prgram... GRP_49
[8448 rows x 3 columns]>
Observation: Some of the sentences sound German in nature which needs to be transalted back to English. We need to first identify all such sentenes
pip install deep-translator
Requirement already satisfied: deep-translator in c:\users\p0s041d\anaconda3\lib\site-packages (1.5.4) Requirement already satisfied: requests<3.0.0,>=2.23.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from deep-translator) (2.24.0) Requirement already satisfied: click<9.0.0,>=8.0.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from deep-translator) (8.0.3) Requirement already satisfied: beautifulsoup4<5.0.0,>=4.9.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from deep-translator) (4.9.3) Requirement already satisfied: soupsieve>1.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from beautifulsoup4<5.0.0,>=4.9.1->deep-translator) (2.0.1) Requirement already satisfied: colorama in c:\users\p0s041d\anaconda3\lib\site-packages (from click<9.0.0,>=8.0.1->deep-translator) (0.4.4) Requirement already satisfied: certifi>=2017.4.17 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.23.0->deep-translator) (2020.6.20) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.23.0->deep-translator) (1.25.11) Requirement already satisfied: idna<3,>=2.5 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.23.0->deep-translator) (2.10) Requirement already satisfied: chardet<4,>=3.0.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.23.0->deep-translator) (3.0.4) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
pip install google_trans_new
Requirement already satisfied: google_trans_new in c:\users\p0s041d\anaconda3\lib\site-packages (1.1.9)Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
pip install langdetect
Requirement already satisfied: langdetect in c:\users\p0s041d\anaconda3\lib\site-packages (1.0.9) Requirement already satisfied: six in c:\users\p0s041d\anaconda3\lib\site-packages (from langdetect) (1.15.0) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
from google_trans_new import google_translator
from deep_translator import GoogleTranslator
from langdetect import detect
detected_lang = []
for i in range(0,len(Datafinal)):
print("i:",i," ",Datafinal.iloc[i]['Description'])
result_lang = detect(Datafinal.iloc[i]['Description'])
# print(result_lang)
if result_lang == 'en':
continue
else:
translator = google_translator()
detected_lang.append(result_lang)
Datafinal.iloc[i]['Short description']=GoogleTranslator(source=result_lang, target='en').translate(Datafinal.iloc[i]['Short description'])
Datafinal.iloc[i]['Description']=GoogleTranslator(source=result_lang, target='en').translate(Datafinal.iloc[i]['Description'])
print("Translated ",i,": ",Datafinal.iloc[i]['Description'])
i: 0 verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 1 xd xd xd hello team xd xd my meetings skype meetings etc are not appearing in my outlook calendar can somebody please advise how to correct this xd xd kind i: 2 xd xd xd hi xd xd cannot log on to vpn xd xd best Translated 2 : xd xd xd xd xd hi ne can log on to a VPN xd xd Best i: 3 unable to access hr tool page i: 4 skype error Translated 4 : skype error i: 5 unable to log in to engineering tool and skype i: 6 event critical hostname company com the value of mountpoint threshold for oracle sid erpdata srpsad srpsad data perpsrpsad is i: 7 ticket no employment status new non employee enter user name i: 8 unable to disable add ins on outlook i: 9 ticket update on inplant i: 10 engineering tool says not connected and unable to submit reports i: 11 hr tool site not loading page correctly i: 12 unable to login to hr tool to sgxqsuojr xwbesorf cards i: 13 user wants to reset the password i: 14 unable to open payslips Translated 14 : unable to open payslips i: 15 ticket update on inplant i: 16 hi am unable to login to company vpn website trying to open new session using the below link but not able to get through pls help urgently as we are working from home tomorrow due to month end closing i: 17 when undocking pc screen will not come back i: 18 erp sid account locked i: 19 unable to sign into vpn Translated 19 : unable to sign into vpn i: 20 unable to check payslips i: 21 xd xd xd hello helpdesk xd xd am not able to connect vpn from home office couple hours ago was connected now it is not working anymore getting message that my session expired but if click on the link nothing happens xd xd xd xd xd need help with your dynamics crm xd click here xd xd chat with live agent regarding your dynamics crm questions now click here xd xd best i: 22 unable to connect to vpn Translated 22 : unable to connect to vpn i: 23 user called for vendor phone number i: 24 hello m not being able to connect to company network through the vpn pls check sir am not being able to upload as result of no company network i: 25 erp sid password reset Translated 25 : erp sid password reset i: 26 unable to login to hr tool to check payslips i: 27 account locked out i: 28 unable to login to hr tool i: 29 unable to log in to erp sid Translated 29 : unable to log in to erp sid i: 30 password reset for collaboration platform i: 31 hi please reset users password client id username xyz i: 32 gentles have two devices that are trying to share an ip address they are trying to share one is printer with the hostname of prtjc and the other is new display for erp the display is using dhcp to get its address assigned and the printer is hard coded my guess is that the address did not get set to static address in dhcp need this corrected so the display will pick up another address i: 33 ess password reset Translated 33 : ess password reset i: 34 unable to install flash player i: 35 ticket no employment status new non employee xd i: 36 erp sid account unlock and password reset i: 37 the status button is dierppearing after few seconds i: 38 need to install engineering tool on the pc i: 39 call for ecwtrjnq jpecxuty i: 40 ticket update inplant Translated 40 : ticket update implant i: 41 tablet sound not working i: 42 unable to login to system i: 43 hi the printer printer is not working and needs part replaced can you reroute the jobs in queue to printer printer wihuyjdo qpogfwkb has indicated that prqos needs new part and it not deliver for few days so the inwarehouse tools will need to print on printer for now this needs to be taken care of today since the inwarehouse tools are printed and are picked up by an outside vendor at pm in usa on daily basis please contact dkmcfreg anwmfvlgenkataramdntyana if you have questions about the jobs in queue for today i: 44 unable to login to hr tool etime Translated 44 : unable to login to hr tool etime i: 45 can not log into hr tool etime through single sign on portal i: 46 password changed in password management tool but didnt update for erp account i: 47 xd job job failed in job scheduler at i: 48 windows password change via password management tool i: 49 when closing call the agent keeps on the on acd call status i: 50 xd job mm zscr dly merktc failed in job scheduler at i: 51 call for ecwtrjnq jpecxuty Translated 51 : call for ecwtrjnq jpecxuty i: 52 i need my password management tool password manager password reset xd xd xd Translated 52 : i need my password management tool password manager password reset xd xd xd i: 53 hello please reset my scm software password cdbaoqts wqbsodni global product manager markhtyeting initiatives i: 54 account kept locking out xd possible reasons xd xd companysecure or mobile device email setup has an incorrect password stored xd windows and network passwords do not match i: 55 xd xd xd good morning xd xd had to reset my password again and ve lost my option for setting up skype meeting again can you please help me can recall how you were able to bring it back the last time xd xd i: 56 enquiry on impact rewards how to get password reset i: 57 need dn for material plant plant pcs i: 58 xd xd xd hello xd please help to unlock my company net log on password urgent xd i: 59 xd job mm zscr dly merktc failed in job scheduler at i: 60 xd job job failed in job scheduler at i: 61 password changed required for user abc i: 62 xd xd xd xd best Translated 62 : xd xd xd xd Best i: 63 please help try to create dlv for this mm xd sto xd sto xd xd sto from plant to plant i: 64 apac company two switches are down since am et on xd xd company ap chn apac company access sw xd company ap chn apac company access sw i: 65 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 66 d and xd plant plant to plant xd the issue display xd ekpo sobkz ekpo umsok ekpo kzbws ekpo kzvbr note not supported check your entry xd i: 67 xd job job failed in job scheduler at i: 68 xd job job failed in job scheduler at i: 69 xd job job failed in job scheduler at i: 70 xd job job failed in job scheduler at i: 71 it team please kindly release locked computer for user xyz user name fbmugzrl ahyiuqev i: 72 my laptop speakers is not working again and requires your urgent help i: 73 user needs help to connect to the wireless connection at home had the user connect to the lan at home connected to the user system using teamviewer checked the network settings help the user login to the home wireless disconnected the home lan user confirmed that he is able to login to the home wireless issue resolved i: 74 inc ticket update i: 75 xd job hr payroll na failed in job scheduler at i: 76 xd job hr payroll na failed in job scheduler at i: 77 xd job hr payroll na failed in job scheduler at i: 78 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yno yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 79 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 80 xd job job failed in job scheduler at Translated 80 : xd job job failed in job scheduler at i: 81 erp sid account locked i: 82 user yhmwxsqj ugnthxky having issues logging to outlook rgtry will be available tomorrow around am he works out of company campus request you to reach out to him and fix the issue i: 83 xd job bwhrattr failed in job scheduler at i: 84 hello it service xd need to monitor the manufacturing drawings to approve manufacturing xd the engineering tool stopped showing pdf originals xd xd process xd xd xd erp production order interface vendor bas cr rfc destination production order interface vendor views not accessible file cannot be stamped now xd xd bapireturnederrorexception xd stack trace xd cadagent erp conn jco tm jcoerpmanager handlereturnstructureorreturntableline jcoerpmanager java id jcoerpmanager java wt xd cadagent erp conn jco tm jcoerpmanager handlereturnstructure jcoerpmanager java id jcoerpmanager java wt xd cadagent erp conn jco tm jcoerpmanager generirtcfunction jcoerpmanager java id jcoerpmanager java wt xd cadagent objmod plmfile checkoutview plmfile java id plmfile java aju xd plm omf omforiginalsexport checkoutbapi omforiginalsexport java id omforiginalsexport java rb xd plm omf omforiginalsexport downloaddocumentoriginals omforiginalsexport java id omforiginalsexport java rb xd plm omf omforiginalsexport actionperformed omforiginalsexport java id omforiginalsexport java rb xd cadagent gui obr obrfunctioneventqueue run obrfunctioneventqueue java id obrfunctioneventqueue java bda xd xd api bapi document checkoutview xd xd xd xd xd xd is this known problem when it will be fixed xd xd i: 85 xd job apo bop plant failed in job scheduler at i: 86 xd job job failed in job scheduler at Translated 86 : xd job job failed in job scheduler at i: 87 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 88 unable to open ie Translated 88 : unable to open ie i: 89 xd job job failed in job scheduler at i: 90 xd job sid cold failed in job scheduler at i: 91 xd job sid cold failed in job scheduler at i: 92 xd job job failed in job scheduler at Translated 92 : xd job job failed in job scheduler at i: 93 xd job sid cold failed in job scheduler at i: 94 xd job job failed in job scheduler at i: 95 xd job sid cold failed in job scheduler at i: 96 xd job sid cold failed in job scheduler at i: 97 amssm label sys amssm ef on server is over space consumed space available g i: 98 unable to view payslips from hr tool time i: 99 my system says my password expires tomorrow but when want to change to new password it does not allow the new password is not accepting it says server does not authorize kindly check and do the needful as the password is expiring tomorrow i: 100 hello he is an kiosk user please reset the password and confirm noscwdpm akiowsmp ihkolepb ozhnjyef ess portal access issue hi below mentioned employee krlszbqo spimolgz with user id sv is not able to login to ess portal to access his pay slips and related contents he is attendance tool user please reset his user id and password and revert back i: 101 hi below mentioned employee krlszbqo spimolgz with user id sv is not able to login to ess portal to access his pay slips and related contents he is attendance tool user please reset his user id and password and revert back i: 102 xd job job failed in job scheduler at i: 103 xd job job failed in job scheduler at Translated 103 : xd job job failed in job scheduler at i: 104 xd job job failed in job scheduler at Translated 104 : xd job job failed in job scheduler at i: 105 xd job job failed in job scheduler at i: 106 xd job job failed in job scheduler at i: 107 hello good morning am experiencing issues with attendance tool log on every time try to log on through single sign portal the following screen gets displayed and it stays there appreciate your support to fix this issue i: 108 excel freezing issue i: 109 unable to sync file in collaboration platform i: 110 unable to update password on the password management tool password manager i: 111 vitalyst transfer reporting tool access query i: 112 xd job job failed in job scheduler at i: 113 user said he will callback i: 114 unable update passwords on password management tool i: 115 erp sid erp production password reset account is locked i: 116 xd xd xd hello xd xd have been trying to gain access to my pay roll information on the hub specifically the hr tool etime portal the other information on the portal come up without problems but the pay stub does not it continuously shows the search ring xd xd xd i: 117 ticket update on ticket no i: 118 unable to display expense report Translated 118 : unable to display expense report i: 119 password reset for upitdmhz owupktcg cruzjc i: 120 unable to login in benefits tab i: 121 hello m having an issue with my outlook view can you call me and let me share my screen i: 122 unable to access mails Translated 122 : unable to access mails i: 123 unable to display expense report Translated 123 : unable to display expense report i: 124 tvcdfqgp nrbcqwgj pm nwfodmhc exurcwkm se ha bloqueado en forma temporal la sincronizaci de su dispositivo vil mediante exchange activesync hasta que su administrador autorice el acceso hi received this message and our local it expert has told me to open ticket i: 125 internal keybankrd will not work after cs nor will an external usb keybankrd i: 126 blank call gso Translated 126 : blank call gso i: 127 update on inplant i: 128 xd xd xd hello sir xd xd tried to change my password thru above got below error pl help know what action to be taken further to ensure all passwords are same everywhere since belo wmsg says all passwords were not changed xd xd xd i: 129 unlock personal number in ess i: 130 intermittent service on configair server in sid requires probably restart on production server the error occurs in production and shows internal serrver error error while trying to invoke the method java util list iterator of null object loaded from local variable local list the issue can be reproduced in production g company customer g and base material mm hss pm finishing company customer g and starting from scratch can select product platform g hp hss pm roughing but the screen freezes log on language different en g de company customer g base material g we had this issues already several times before and it needed always restart of the server thryeu is good contact person for this issue as he was already working on the root cause with our external vendor configair i: 131 unable to access vpn Translated 131 : unable to access vpn i: 132 unable to open outlook i: 133 install driver in printer hr in hostname Translated 133 : install driver in printer hr in hostname i: 134 unable to send emails from outbox i: 135 name xvgftyr tryfuh language browser microsoft internet explorer customer number summary cannot seem to access the drawings from the netweaver application that is installed on my computer it doesn take me to the same page that my colleagues have i: 136 name vdhfy language browser microsoft internet explorer customer number summary have scrapped the old phone my mail was configured in it can you take off the permissions set to view mails on that phone i: 137 xd job job failed in job scheduler at i: 138 xd job job failed in job scheduler at i: 139 unable to view payslips in ie i: 140 please reset hr tool gv password reset i: 141 hi our channel partner with the email address received emails regarding the pos error in matheywter of milliseconds he is very angry this needs to be fixed aerp attached is file extracted from erp documenting the emails i: 142 usa company interface fastethernet and gigabitethernet is down since pm et on i: 143 good morning have forgotten my password for erp sid have made attempts and failed could you please reset my user id is dgrtrkjs i: 144 ess login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 145 qifzkoej etbmgjvo is unable to start his dell in tablet device Translated 145 : qifzkoej etbmgjvo is unable to start his dell in tablet device i: 146 erp print tool install Translated 146 : erp print tool install i: 147 name wvngzrca sfmrzdth language browser microsoft internet explorer customer number summary good morning am having trouble getting into my vpn can you assist i: 148 install acrobat standard Translated 148 : install standard acrobat i: 149 password reset from ad i: 150 please reset my password to sid it blocked login jdhdw i: 151 bwfhtumx japznrvb regional controller Translated 151 : bwfhtumx japznrvb regional controller i: 152 crm add in is getting disabled from outlook i: 153 outlook hangs Translated 153 : outlook hangs i: 154 vpn not working Translated 154 : vpn not working i: 155 employee is getting an error user authentication failed when trying to log into the ess portal she is able to access erp and is able to access the hub tried to reset and change her password through password management tool password manager but got an error cannot find account woodscf on target active directory her user id is hdjdkt i: 156 xd job bkbackup tool sql prod inc failed in job scheduler at i: 157 ess password reset i: 158 please note some continuous erp printing is happening in printer wy the print is not given locally please arrange to cancel the same immediately as lot of paper is getting wasted i: 159 xd xd xd dear all xd xd java viewer is not working any more need access to view scanned inwarehouse tools in erp xd xd assume java update is required xd xd xd xd best i: 160 xd job job failed in job scheduler at i: 161 we are observing below alert in monitoring tool xd xd hostname is currently experiencing high cpu utilization please investigate i: 162 xd xd xd hello xd xd till last week was accessing bex reports using mms portal and there were no issues xd xd starting this week the system is incredibly slow when log in and finally does not allow me to access any reports xd xd can it be the issue with any maintenance or my access rights or rather should try to access bex using different way xd xd below the print screen from what see after log in xd xd am also able to get to finance reports see below however when click profitability analysis as was always doing separate window is open however apart rom that the screen is blank xd xd xd appreciate your support xd xd have great day xd xd robhyertyj xd xd xd yfqoaepn xnezhsit xd managing director xd finance manager cee xd tel xd mob xd xd company polska sp o ul krzywoustego pozna www company com xd xd company polska sp o z siedzib polandiu pozna ul krzywoustego xd sp ka zarejestrowana s dzie rejonowym pozna nowe miasto wilda polandiu wydzia viii gospodarczy krs pod numerem xd kapita zak adowy pln nip xd xd xd xd xd xd i: 163 windows account lockout i: 164 windy shi ticket no comments added select the following link to view the disclaimer in an alternate language i: 165 account locked in erp sid i: 166 xd job job failed in job scheduler at i: 167 user needs training to use engineering tool to view drawings xd connected to the user system using teamviewer xd help and educated the user on how login to business client and view drawings xd issue resolved i: 168 xd xd xd hello xd xd am unable to access the skype the password is showing error xd xd xd xd xd i: 169 account unlock request Translated 169 : account unlock request i: 170 hello it team could you please generate delivery note for below order we cannot issue dn for so despite of enough stock for all of items at shipping plant sales org delivery plant plant shipping point tys so mm pc mm pcs mm pcs i: 171 xd job job failed in job scheduler at i: 172 xd job job failed in job scheduler at i: 173 error login on to the sid system i: 174 unable to take print out from wy i: 175 xd job job failed in job scheduler at Translated 175 : xd job job failed in job scheduler at i: 176 xd xd xd hi there xd xd would you please help me unlock my supply chain software account and reset my supply chain software password i: 177 i try to change now my password acc to attached mail but this don work was out of office for vacation time until now but xd password management tool link don work please help xd xd xd xd your password expires in day xd xd the requirement to change your password every days enhances data security within company xd xd please login to xd step by step guide on using the self service tool is available here xd xd please do not reply to this email if you require assistance please submit ticket to the global support center via any of these modes xd xd ticketing tool xd email xd xd kind i: 178 xd job hostname fail failed in job scheduler at i: 179 unable to login to erp sid Translated 179 : unable to login to erp sid i: 180 xdvwitpm zscxqdhoalaramdntyan am xyculgav cuqptoah fw crm license for dfgry hello crm is not installed in my laptop please support me on this i: 181 unable to connect to vpn Translated 181 : unable to connect to vpn i: 182 xd job job failed in job scheduler at i: 183 windows account locked i: 184 apply for mobile phone access to mail box i: 185 data not correctly pulled for all the employees in the travel tool attendee interface i: 186 am nwfodmhc exurcwkm re shipment notification dear pls help to update customer shipment notification email address b i: 187 i want recover folder xd i: 188 xd job bkwin hostname inc failed in job scheduler at i: 189 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 190 password reset request Translated 190 : password reset request i: 191 user is not able to see all text in mails on his iphone i: 192 password reset Translated 192 : password reset i: 193 unable to sync all mails in outlook on wifi i: 194 crm tab does not appear on outlook i: 195 unable to submit expense report as it is locked by user i: 196 titcket update on inplant i: 197 i need to approve the new product requests below i: 198 ticket update on inplant i: 199 changed desktop wallpaper Translated 199 : changed desktop wallpaper i: 200 name xbdht yrjhd language browser microsoft internet explorer customer number summary benefit advisor will not run in my browser i: 201 assign crm and license to nyrjkctu tbhkenlo use profile like qmglkaru qiwhfkdv i: 202 xd xd xd good afternoon xd xd am having issues again with my notebook in that cannot get any sound and cannot participate in skype calls xd xd i: 203 need the username to submit the insurance i: 204 query on external browser i: 205 unable to access benefits and other apps in hr tool one time access denied i: 206 unable to see the current course in ethics user id bdtryh i: 207 user clicked on driver update manually and then after restarting the machine he received an error stating pnp detected fatal error i: 208 erp sid account unlock i: 209 windows password reset i: 210 telephone number update i: 211 insurance information i: 212 please give chrtyad access to reporting tool ltaballotcsalesemp and map him to thrdy tgyu team as an ae in the virtual table i: 213 loud noise gso Translated 213 : loud noise gso i: 214 ess kiosk user password reset Translated 214 : ess kiosk user password reset i: 215 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 216 hi have uacyltoe hxgayczeed in sid and it works now correctly the accounting documents were generated automatically without any errors am approving the change best i: 217 erp sid account unlock i: 218 hdytrkfiu pm xjzcbgnp vfkwscao export shipment of grinding mahcine to khdgd apac advance information we are pushixepyfbga wtqdyoin for dispatching an grinding machine to khdgd apac tomorrow this is just for your advance information once everything is in place we will seek your support in your areas to help us in clearing this consignment tomorrow i: 219 contact phone Translated 219 : contact phone i: 220 adding members to dl Translated 220 : adding members to dl i: 221 java issue on uacyltoe hxgaycze laptop Translated 221 : java issue on uacyltoe hxgaycze laptop i: 222 support r fa konnica arexjftu ohxdwngl i: 223 hallo es ist erneut passiert der pc hat sich zum wiederholten male aufgeh ngt und mir lediglich einen blauen bildschirm mit weisser schrift pr sentiert was nnen wir da machen Translated 223 : hello it happened again the pc hung itself up again and again and just presented me with a blue screen with white writing what we can do there i: 224 xd job pp eu tool netch ap failed in job scheduler at i: 225 eu tool crashes when confirmations are deleted not able to remove scrap confirmations that have been rectified in erp i: 226 enable bgdxitwu dhcopwxa active directory account name fdgrty summary need bgdxitwu dhcopwxa active directory account enabled i: 227 sync emails issue Translated 227 : sync emails issue i: 228 user is having issues with his internet explorer the page keeps refreshing and ends up with dll error i: 229 call for ecwtrjnq jpecxuty Translated 229 : call for ecwtrjnq jpecxuty i: 230 blank call i: 231 unable to view payslips Translated 231 : unable to view payslips i: 232 two customer accounts have not been getting the order acknowledgements automatically like they have been for the past years both are under the same top parent accts and should automatically be sending acknowledgements to since they have not been getting them can someone look into this this is affecting the customer paying the bills as they use this acknowledgement as receiver so they can pay the bill senior sales engineer company inc i: 233 production order is locked by user gtxuamif pamxszek no one has been able to unlock can this order be unlocked inspection lot is being processed by gtxuamif pamxszek i: 234 i could always get into the finance section and now can i need access please bwfhtumx japznrvb regional controller i: 235 erp sid account unlock and password reset i: 236 i ve received the message below can you tell me from whom the email mentioned was sent i: 237 email address confirmation Translated 237 : email address confirmation i: 238 hi all we have connectivity issue between erp pi and msd crm due to certificate renewal on azure websites and that certificate is not yet updated on erp pi side issue changes to data records accounts sales area data partner functions contacts leads are not being processed from erp pi to worked with it msd crm and vice versa in all environments prod qa and dev issue start time pm troubleshooting steps when tryhdty from customer master team reported the issue that prospect account created in erp didn come into msd yet erp pi team observed that the records are in still awaiting acknowledgement status which basically means they are not yet delivered received by the target system upon some log analysis and trying to identify the root cause between erp pi basis and msd teams it been observed that the issue has started in production environment since around est on we observed the same behavior with azure mfg tool and erp pi logs of other non production environments as well you can find error screenshots from erp pi system in the mail chain root cause it appears that the certificate for azure webapps have been updated on as it is nearing the expiration date th but the new certificate is not updated on erp pi they are not even aware of this change so when the production azure webapp company crm sp mfg toolt azurewebsites net got restarted on around this connectivity appears to have been broken next steps we need the azure webapp certificate chain to be sent to erp basis team so that they can update it on erp pi system whom can reach out to for receiving the certificate details do we have an azure admin in house or do you want me to open case with microsoft once certificate is received maybe we can first do this on qa system and then upon confirmation that it works we can apply it to production and other environments i: 239 please complete all required questions below if not it will be returned back to the gsc requester to provide required information gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart printer name make model ex hq wy hp kd detailed description of the problem error says need to download and install software driver from the hostname computer to print to kd type of documents not printing email excel word etc word inwarehouse tool delivery note production order etc what system or application being used at time of the problem ex windows erp windows if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed not sure what this means if erp system which system ex sid sid hrp plm not erp if it an erp printer problem can the erp output be rerouted to another erp printer temporarily not erp what printer can it be rerouted too if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 240 what type of outage network circuit power please specify what type of outage top cert site no yes no na when did it start am et on scheduled maintenance power no yes no na company power provider power scheduled maintenance network no yes no na company maint yes no provider maint ticket does site have backup circuit yes yes no na backup circuit active no yes no na site contact notified phone email na yes no na remote dial in na yes no na equipment reset na yes no na verified site working on backup circuit na yes no na vendor ticket global telecom verizon telecom vendor telecom vendor global telecom notified gsc na yes no na cert started yes no na additional diagnostics i: 241 xd xd xd hello team xd xd am unable to log into my erp account even the correct password id not accepted xd xd need resolution on very urgent basis xd xd i: 242 windows password reset i: 243 iygsxftl hysrbgad set up spare company owned iphone cause the old one was broken xd agreement and supervisors appoval is attached xd now his account is quarantined xd could you please activate his new device xd i: 244 login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 245 welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation ayrhcfxi zartupsw hi ayrhcfxi zartupsw i: 246 xd job job failed in job scheduler at Translated 246 : xd job job failed in job scheduler at i: 247 welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation ayrhcfxi zartupsw hello gstdy yrada hi ayrhcfxi zartupsw hello i: 248 welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd ayrhcfxi zartupsw hello i: 249 welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation tyss ashdtyf greetings ayrhcfxi zartupsw hi ayrhcfxi zartupsw i: 250 name obanjrhg rnafleys language browser microsoft internet explorer customer number summary hello problem signing in to skype i: 251 bitte passwort r fygrwuna gomcekzi mail zur cksetzen bitte neues passwort zu manager Translated 251 : please password r fygrwuna gomcekzi mail to reset please new password to manager i: 252 xd xd xd hello xd xd please unlock and reset my password for sid system xd xd i: 253 babiluntr client license expired and client is now in uacyltoe hxgaycze mode eagl tel i: 254 outbound calls not possible via germany pbx system inbound calls are working fine please check i: 255 probleme mit laufwerk laeusvjo fvaihgpx Translated 255 : problems with laufwerk laeusvjo fvaihgpx i: 256 pls also extend mm and to my purchasing user account need to create prs for both mm i: 257 xd xd xd dear it xd xd would you pls help to check dn o can not be generated for this dn i: 258 name language browser microsoft internet explorer customer number summary itry to open excel file with microsoft online but not work i: 259 unable to login to hr tool i: 260 gstdy tehdy am vkjdgtxb pkinmjqs re fw access to time dear i: 261 business client not working i: 262 xd xd xd hi xd xd everytime want to set filter in reporting tool with data source xd xd pk publish pk otc billing otc billing xd xd am getting below error message xd xd xd xd i: 263 xd job bwhrattr failed in job scheduler at i: 264 fmzdkyqv dbrslnhe director finance business company i: 265 xd xd xd hallo xd xd netweaver funktioniert nicht mehr bzw kann ich nicht mehr ffnen xd xd xd xd xd xd xd xd xd xd xd mit freundlichen gr en best Translated 265 : xd xd xd hello xd xd netweaver no longer works or I can no longer open it xd xd xd xd xd xd xd xd xd xd xd best regards i: 266 a ndigung for fgxprnub hlanwgqj effective has been approved i: 267 xd job job failed in job scheduler at i: 268 outlook setting is changed i: 269 xd job job failed in job scheduler at Translated 269 : xd job job failed in job scheduler at i: 270 neues passwort r accountname tgryhu hgygrtui passwort r diesen account funktioniert nicht mehr mitarbeiter ist in kw und auf fr hschicht anwesend Translated 270 : new password r account name tgryhu hgygrtui password r this account no longer works employee is present in kw and early shift i: 271 check status button is not seen in my purchasing screen i: 272 drucker scanner em scanner findet pfad nicht mehr Translated 272 : printer scanner em scanner can no longer find path i: 273 without logging in to vpn remote am unable to login to erp it throws balancing error i: 274 windows account locked i: 275 xd xd xd hello xd xd provide me immediately the skype meeting options presently it is not enabled xd xd xd xd xd xd xd xd best i: 276 outlook folder folder office Translated 276 : outlook folder folder office i: 277 xd xd xd dear it xd xd can not login the skype would you pls help to check it i: 278 sn os has been identified as unavailable via esrs monitoring services and you have no esrs connectivity i: 279 please provide the following xd xd what order number xd xd what material or item number mm xd xd what warehouse location plant xd xd issue description error message see attachment i: 280 erp sid account locked i: 281 brdhdd dhwduw am nwfodmhc exurcwkm fwd unable to down load ethics module begin forwarded message unable to down load ethics module hi trust doing well am unable to down load and getting below msg did reset resolution however still same issue persist please help director of sales company indirect channels asia and i: 282 xd xd xd all xd xd please help to set up the email access to my private own cell phone xd xd xd best i: 283 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et at xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 284 unable to log in to ess Translated 284 : unable to log in to ess i: 285 skype error while logging in i: 286 vitalyst transfer crm installation i: 287 unable to access benefits tab i: 288 laptop is very slow any dialog bog open is choppy and flickers delayed i: 289 ticket update on inplant i: 290 summary for th we will be running full production and need erp update pushed out for several hours i: 291 india access sw and sw went down at pm et on i: 292 need password reset Translated 292 : need password reset i: 293 issues with pdf viewer on iphone for davidthd i: 294 engineering tools not connected to network even though vpn is connected i: 295 xd xd xd are having issue with outlook and crm on our phone and computers xd xd sent from my iphone xd best i: 296 need erp password reset for Translated 296 : need erp password reset for i: 297 xd xd xd to do some general uacyltoe hxgayczeing and training will need access to the training and development application for microsoft dynamics xd xd mikhghytr wafglhdrhjop xd sr manager global ethics and compliance programdntys xd m xd xd company inc technology way usa pa xd xd xd xd i: 298 internal users are unable to download discount price file on distributor tool company center the issue is probably related to the change made for ftp download we need to fix issues aerp as this is causing lost sales external users works fine all zsdrshstrud is the price maintenance abap report for the pricing team to maintain price data in erp erp and it is going to be limited to pricing functions for all price related uploads into erp however the function distributor discount report from that report don see problem to usa access also for internal users especially as the external users seem to have already access to it best i: 299 unable to login to collaboration platform Translated 299 : unable to login to collaboration platform i: 300 unable to receive emails on company provided iphone i: 301 windows password reset i: 302 eu tool ist sehr langsadgtym ywqgrbnx jwnsyzbv jionmpsf wnkpzcmv Translated 302 : eu tool ist sehr langsadgtym ywqgrbnx jwnsyzbv jionmpsf wnkpzcmv i: 303 request to reset microsoft online services password for i: 304 alte eq abholen wrcktgbd wzrgyunp Translated 304 : pick up old eq wrcktgbd wzrgyunp i: 305 probleme lan an tgeyd we wu wrcktgbd wzrgyunp Translated 305 : Probleme shore an tgeyd web wu wrcktgbd wzrgyunp i: 306 support r we zlqfptjx xnklbfua i: 307 hello username gdthryd mgvpoyqd tnlshpwb is locked out of his computer am sending this message on his behalf please help inhekdol anvqzdif quality technologist i: 308 unable to connect to lan internet Translated 308 : unable to connect to lan internet i: 309 install collaboration platform i: 310 request to reset microsoft online services password for i: 311 ticket update Translated 311 : ticket update i: 312 erp sid account unlock i: 313 receive sponsor portal internal error when attempting to issue guest wifi access xd this is the link was given to use xd createknownaccountssummary xd i: 314 user needs help to login to the company vpn xd connected to the user system using teamviewer xd help the user login to the company vpn xd user confirmed he is now abl eto login to the erp sid xd issue resolved i: 315 need to map mailboxes of colleagues i: 316 erp sid password reset Translated 316 : erp sid password reset i: 317 new team and manager details not updated on bobj reports from ess on opening the bex reports from ess refer screenshot the reports still shows the old team data need to reflect the new team data xd xd new manager details are already updated on erp xd xd phone sartlgeo lhqksbdx i: 318 email font showing very small when replying to emails xd connected to the user system using teamviewer xd corrected the font size xd advised the user to check now xd user confirmed all is fine now xd issue resolved i: 319 reset passwords for hdthy hstdd using password management tool password reset i: 320 computer in the maintenance dept is down please fix i: 321 computer is down in the old cnc area please fix for erp i: 322 user needs new telephony software password i: 323 hello want to connect my workstation to printer ag in germany the following screen shot says need permission to connect to this printer from the system administrator many i: 324 i cannot get onto the network on my pc i: 325 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 326 unable to login to the hub i: 327 user id gdthrujt i: 328 need to setup guest wi fi access i: 329 xd xd xd good day xd xd please assist with issue below xd xd xd xd when clicking to view the commercial inwarehouse tool this appears blank xd xd please help xd xd kind i: 330 outlook won open Translated 330 : outlook won open i: 331 issue is severe especially after pm everyday xd wants to talk to engineering tool administration team to check on account i: 332 cannot see any of the folders in outlook emails appeared in the view i: 333 windows password reset i: 334 cannot access erp hq network drives internal network drive access is working fine performed flush dns winsock reset still nogo multiple users affected ip i: 335 schulungsraum sprechanlage funktioniert nicht xd Translated 335 : classroom intercom not working xd i: 336 data back up for germany Translated 336 : data backup for germany i: 337 server ekpsm located at germany location is down since on i: 338 germany company pbx trunk card andpbx since am et on i: 339 konto gespaerrt Translated 339 : account locked i: 340 i am not able to sign onto vpn with my user name and password it says incorrect password but it is the one always use i: 341 source ip system name lmsl user name trhdyd mffbsf location usa sms status no updates field sales user yes no yes dsw event log see below i: 342 shortcut opening multiple folders i: 343 dear sir we required system updating for govt tender uploading in portal on the following computer computer name aiuw service tag no jnjxbq model details optiplex please do the needful and confirm on urgent basis with kind i: 344 account locked out i: 345 hi could you please help after an error message server disconnected cannot make any edits to trgdyyufs calendar no invitations from his calendar no calendar entries possible very urgent i: 346 xd job job failed in job scheduler at Translated 346 : xd job job failed in job scheduler at i: 347 xd job pp eu tool conf ap failed in job scheduler at i: 348 expense report receipt entry screen keeps locking up xd this is causing delays with entering expense reports especially wherein multiple entries are required i: 349 install eu tool laeusvjo fvaihgpx Translated 349 : install eu tool laeusvjo fvaihgpx i: 350 please provide access to below drive to view the drawings xd live mw live i: 351 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start amet on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 352 entire location at germany network is down user mention all the applications are down erp outlook internet intranet i: 353 hostname volume disk consumed is i: 354 xd xd xd hello xd xd refer the below screen shot xd xd xd xd warm Translated 354 : xd xd xd xd xd hello refer the screen shot below xd xd xd xd warm i: 355 hostname bobj cpu load on server is high currently utilization is since on i: 356 purchasing input the related the information also generated the ordered number but check the erp mea no data can check pls help i: 357 eu tool aktualisierung alle min uft nicht Translated 357 : eu tool does not update every minute i: 358 kindly copy the desktop files of user id vvgtyrhds to vvkuhtdppg local folder i: 359 hello the account nikulatrhdy is currently locked out the user cannot log on the system please help koahsriq wdugqatr administrative assistant i: 360 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 361 xd job job failed in job scheduler at Translated 361 : xd job job failed in job scheduler at i: 362 error message when try to open the shop xd shop failure xd you cannot enter the selected shop xd reason xd authentication data is missing or cookie was not accepted by client xd xd catalogue has moved to another url see attached mail with the details xd i: 363 hallo bitte einmal ansehen danke Translated 363 : hello please take a look thank you i: 364 need wireless mouse for my laptop i: 365 labeldrucker wk druckt nicht mehr Translated 365 : label printer wk no longer prints i: 366 xd job bwhrattr failed in job scheduler at i: 367 hi following user id winows is locked pl help user id thrydufg i: 368 daten kann nicht heruntergeladen werden die maschine ist im stillstand maschine name wam datei werden von udo geschikt datei warden in zip und exe format Translated 368 : data cannot be downloaded the machine is at a standstill machine name wam files are sent from udo files are stored in zip and exe format i: 369 unable to login to erp sid Translated 369 : unable to login to erp sid i: 370 erp schulung raum kann beamer nicht verbinden xd xd reopened as user called in again please refer to tkt inplant i: 371 xd job job failed in job scheduler at Translated 371 : xd job job failed in job scheduler at i: 372 unable to scan after resetting password on password management tool contact number scan documents are not landing in the scan folder please check i: 373 xd job job failed in job scheduler at i: 374 your file could not be printed due to an error on hostname tc on e i: 375 eng records for engineering tool can used see attachment for detailed xd i: 376 xd xd xd hello xd xd business client soft ware not working in my computer xd xd with kind i: 377 xd xd xd hello xd xd can you please help me to put new password to my account xd xd yesterday have changed my password which worked some hors or so xd then since that it does not work xd xd my suspision is that the new password was the same like in the past year ago or so xd xd want to log into password management tool password manager but without any success xd xd xd xd pofgtzdravem kind i: 378 pls extend mm and to my user name thnak you need to create prs for those mm i: 379 xd xd xd hi it experts xd xd d like to continue receive your support for setting up my hand set for emails xd xd xd pls find my below reply xd xd wifi and data plan from your service provider is required to setup email on your mobile device will use wifi xd xd is this device company owned n xd xd is this replacement of your old device n xd xd if yes please ensure company data has been removed from the old device delete exchange setup from settings mail contacts calendar ok xd xd for personal device please attach approval form signed by manager to the ticketing tool ticket enclsoed xd xd please ensure the device is company approved for email setup xd xd if it is not company approved device please contact the gsc xd xd for help with exchange setup on personal device please contact the device vendor you also refer to the faq section for steps xd xd has the exchange setup been completed on your device n seems xd xd xd best i: 380 unable to login to erp sid Translated 380 : unable to login to erp sid i: 381 dear all can you help to close the cost center of cnn for i: 382 unable to login to windows i: 383 hello xd xd have messages to process documents in my erp workflow but find none xd please advise xd xd xd i: 384 ufgkybsh ijswtdve pm nwfodmhc exurcwkm tgryds fw engineering tool upload issue dear sir mam please find below the screenshot of engineering tool issue faced during upload please help me to resolve the same i: 385 unable to log in to collaboration platform Translated 385 : unable to log in to collaboration platform i: 386 ticket update on inplant i: 387 unable to pull up reports on sales and markhtyeting tab in ess i: 388 reset users password Translated 388 : reset users password i: 389 query regarding logging in to benefits portal i: 390 inquiry on erp sid bex analysis i: 391 password reset request Translated 391 : password reset request i: 392 interface fastethernet on usa plant mpls is down since pm xd cc communications mbps circuit id is cccethxakm i: 393 password reset Translated 393 : password reset i: 394 please assist thrys hsdbdtt in logging into reporting tool from crm see attached screen shot he was unable to access using his windows credentials i: 395 outlook freezing on mobile broadband i: 396 configure calendar on phone sync with outlook i: 397 outlook freezing issue i: 398 unable to find shortcut on erp i: 399 the hr tool app on the sso page opens to beshryu screen when open the pay and taxes tab and does nothing can not view any pay records xd i: 400 i am unable to open outlook am getting the error message xd new guard page for the stack cannot be created xd xd have tried restarting the computer xd have tried starting outlook in safe mode xd have tried using the repair function for outlook xd xd please advise i: 401 need access to kp to enter forecast for it cost centers had requested and received this access at the end of access appears to be gone again need by i: 402 password reset for yscgjexz hxlbvjgf Translated 402 : password reset for yscgjexz hxlbvjgf i: 403 node lhqsv located at usa is down since pm interface fc lhqsv on sandplant and sandir is down since pm i: 404 account lock and need to unlock i: 405 followup on ticket no i: 406 xd xd xd hr tool etime unable to see payroll statements try to access and receive screen below it will not move out of this view xd xd xd xd xd xd xd best i: 407 xd xd xd pl support to resolve this problem xd xd i: 408 not able to enter project in the lean tracker in collaboration platform see attached errors i: 409 hi had an associate leave on the vsp at the end of had his outlook in my outlook but now it gone had received an email that it was now stored on collaboration platform but don see anything when click on the link can have his email restored through i: 410 myhrt sthry retired as plant manager in usa have replaced him request access to his collaboration platform to copy relevant documents before it is being deleted as per mail below mqjdyizg amhywoqg am fw myhrt sthry collaboration platform for business contents will be preserved for days danie you should follow up on this to see if there are any files you need utejhdyd vice president and general manager mail am mqjdyizg amhywoqg myhrt sthry collaboration platform for business contents will be preserved for days myhrt sthry account has been deleted from the active directory their collaboration platform for business will be preserved for days you re the temporary owner of all documents saved to their collaboration platform for business if you would like to save content beyond the day retention period you can copy important documents to another location you can also contact your administrator to reassign ownership to another collaboration platform for business owner after days myhrt sthry collaboration platform for business will be permanently deleted go to myhrt sthry collaboration platform for business at i: 411 cannot open excel files from hostname departments hrm pricing current pricing fy and bkzcfmse naslrwdb can files are slow to open or will freeze i: 412 cannot print to prtqx under my profile on rqxw i: 413 cannot print from windows with new pc was just given i: 414 intermittent wireless issue on i: 415 complete Translated 415 : complete i: 416 completed i: 417 outlook is slow Translated 417 : outlook is slow i: 418 does the vpn meter the amount of data that can be transferred i: 419 trhsys hrydjs would like to recall the message incident ticket no has been assigned to oncidblt ucewizyd i: 420 password reset Translated 420 : password reset i: 421 account gets locked out xd id changed from company to company xd i: 422 password reset Translated 422 : password reset i: 423 account locked i: 424 knlrgsiv cqvuexjz has license xd Translated 424 : knlrgsiv cqvuexjz has license xd i: 425 unable to login to engineering tool i: 426 password change request i: 427 uacyltoe hxgayczeing pl ignore Translated 427 : uacyltoe hxgayczeing pl ignore i: 428 i unable to login erp system engineering tool sid Translated 428 : i unable to login erp system engineering tool sid i: 429 misplaced login information for ess i: 430 reset erp sid password for vvtgryhud Translated 430 : reset erp sid password for vvtgryhud i: 431 misplaced username password i: 432 as per system instruction now have reset the password but m unable to login erp system sid i: 433 unable to login to the hub i: 434 password reset for axhkewnv zpumhlic in citrix i: 435 unable to use jabra head phone for skype calls i: 436 removing mail reminders from workflow systems of requisition approval get repeated mail reminders for purchase approval from workflow tasks but they have been completed long ago i: 437 hello the user tgrsyduf accidentally deleted information from collaboration platform yesterday is possible recover this information i: 438 hello can you add the users below to as team members to the cybersecurity website should have ownership users below can have edit access qasouhlc xkhsirtd gzhapcld fdigznbk ugyothfz ugrmkdhx raosetuv hmgwrkzb mfyivqes cpihaxbs thrdyd dhdtwdd thrdyakdj yhtdush jqeczxtn gfjcronyudhakar akisjtzm uvbmysgcbenezer qfrntose ivnhumzjalakrisyuhnyrtn thtudb ghtysui i: 439 after setting new overall password couldn access erp too many fails sorry for that i: 440 hello all my collegue thryduf and hddwtra need for the future fully erp acceptance for plant plant too i: 441 probleme mit portal knlrgsiv cqvuexjz Translated 441 : problems with portal knlrgsiv cqvuexjz i: 442 password reset needed Translated 442 : password reset needed i: 443 misplaced username password i: 444 unable to join and setup skype meeting Translated 444 : unable to join and setup skype meeting i: 445 rma workflow in error status please advise reason for error and restart workflow i: 446 setup rechner ewel r hr thrydad thrydad consulting puxsvfwr cwkjruni Translated 446 : setup rechner ewel r hr thirtieth consulting puxsvfwr cwkjruni i: 447 etdh thsydaas s employee computer access is terminated please usa him access back aerp his last day with company is i: 448 recurrent network outage every minutes intranet and internet both are affected contact i: 449 since engineering tool users of south amerirtca reported that engineering tool shows message after the logon related to the server hostname plm server xd please see attached message i: 450 bitte konto ewel reaktivieren laptop r ein hr pr fer konto r trhfyd sugajadd ist aktiv bitte um ckruf fyi von mfyivqes cpihaxbs gesendet dienstag oktober an ughzilfm cfibdamq betreff re bitte konto ewel reaktivieren laptop r ein hr pr fer konto rtrhfyd sugajadd ist aktiv bitte um ckruf hallo bitte ein tickert an help aufmachen die nnen das machen gr e Translated 450 : please reactivate account ewel laptop r a hr pr fer account r trhfyd sugajadd is active please ckruf fyi from mfyivqes cpihaxbs sent tuesday october to ughzilfm cfibdamq regarding re please reactivate account ewel laptop r an hr pr fer account rtrhfyd sugajadd is active please ckruf hello please open a tick to help, the men make it great i: 451 the following sales managers cannot see the sales manager views in business objects explorer tcflirwg ojflyruq bmudkpie qolrvbip thryd athrdyau vksfrhdx njhaqket please check their security and settings with respect to bobj i: 452 reset passwords for qnxfegjw rljdhmwb using password management tool password reset i: 453 probleme mit erpgui tmqfjard qzhgdoua Translated 453 : problems with erpgui tmqfjard qzhgdoua i: 454 support r fa thrydsss funke laeusvjo fvaihgpx i: 455 bildband tauschen drucker we vepxdgot poezmwny Translated 455 : illustrated book exchange printer we vepxdgot poezmwny i: 456 hello writes from company eu plant this mail for inform that we have primary telephone flow down all incomig calls and external calls are not running opened tck to telecom for investigate and for solving the problem tck no i: 457 hello can now enter bobj but not able to look into any spaces see below screenshot error when entering any space sales manager company western europe i: 458 team my sales managers are not seeing their team view in bobj anymore global access they need it to pull data analysis can you please reinstall global access for tcflirwg ojflyruq bmudkpie qolrvbip thryd adwjfpbreu vksfrhdx njhaqket i: 459 skpe addon gone ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation maaryuyten hello need your help my skype botton in outlook is gone hello need your help my skype botton in outlook is gone dwfiykeo argtxmvcumar hello i: 460 xd job job failed in job scheduler at i: 461 my user id thrydksd m involved in uat uacyltoe hxgayczeing for ec ecc and was asked to re install hpqc client installation kit what ve already done with below links when start hpqc and enter my windows user name and windows password receive following error message user is not maintained in the project fy release please contact hpqc admin i: 462 xd job job failed in job scheduler at Translated 462 : xd job job failed in job scheduler at i: 463 telefon gigaset ex professional tel d nicht mehr anschluss defekt Translated 463 : telephone gigaset ex professional tel d no longer connection defective i: 464 please setup user trhdaa back to startpassword at erp i: 465 hello following problem xd due to necessary changes on tool for an received order tried to update the costs in cockpit but when saving the quote it does not work error message field mvgr cannot be changed vbapkom ready for input any hints how to solve that did that on other s before and it worked only new thing is that we have an order running xd erp data in case it is necessary order concerning items as above i: 466 nutzer wk ksem gesperrt Translated 466 : user wk ksem blocked i: 467 timerecording terminals in plant germany no communication to the server in rth they are sending the message i: 468 xd job job failed in job scheduler at i: 469 ie crm crm Translated 469 : ie crm crm i: 470 xd xd xd hello xd xd kindly request to give access to drive xd xd globalengservices xd xd xd i: 471 kindly add user id trhsydsff to erp business analytics team in ticketing tool tool i: 472 xd job job failed in job scheduler at i: 473 desktop item missing when save attachment i: 474 hostname is currently experiencing high cpu utilization please investigate i: 475 mass upload programdnty changes to condition table in crm xd i: 476 server lnbdm active directory located in philadelph ia is down since am et on i: 477 is blocked now as the user said i: 478 please give full access to user trhadg for folder mentioned in the subject i: 479 name dbwkxalj cnhgysju language browser microsoft internet explorer customer number summary the user account is blocked now i: 480 xd job job failed in job scheduler at i: 481 seit gestern ca uhr fehlen alle zeitdaten daten werden dringend r die glichen auswertungen leistungsgrad s ben tigt Translated 481 : all time data has been missing since yesterday around o'clock data is urgently needed for the same performance level evaluations i: 482 what type of outage network circuit power please specify what type of outage xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 483 name theajdlkadyt hrtgsd language browser microsoft internet explorer customer number summary am unable to open the collaboration platform link shared by my europe counterpart eagl users schetrhsdlw collaboration platform company inc k i: 484 name mitgckqf ewourgcx language browser microsoft internet explorer customer number summary can not reach to password management tool password manager to change my password i: 485 hello pl add my name in to this team also need administrative control of this since have heading this team after ndthwedwys rao left company with kind i: 486 xd job sid filesys failed in job scheduler at i: 487 please provide details of the issue melhduty gqchtedl hi melhduty gqchtedl obuwfnkm ufpwmybi melhduty gqchtedl id i: 488 a hostname teams business sahtym wanthryg i: 489 xd job job failed in job scheduler at Translated 489 : xd job job failed in job scheduler at i: 490 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 491 cyber security month ransomware i: 492 please check lfal looks like bothms office and installed ii have an access database that won work with pacific i: 493 ticket update on inplant i: 494 logon balancing error on erp sid user brandtrhee pjdhfitman called on behalf of user i: 495 xd job job failed in job scheduler at Translated 495 : xd job job failed in job scheduler at i: 496 windows account locked i: 497 backup on company provided mobile phone i: 498 please create an purchasingupstreamsso and ad for qpixeudn rjlziysd bachsdadgtadw the samaccountname in ad is to be all lowercase i: 499 please activate the badge numbers below for the msc training they need to be active from st at am cst to at pm cst i: 500 missing the sales and markhtyeting tab from the enterprise portal which gives access to crm so don have access to crm i: 501 i need access to the following path please see pmgzjikq potmrkxy for approval tbvpkjoh wnxzhqoa company usa plant controller i: 502 ticket update on inplant i: 503 unable to login to collaboration platform password reset i: 504 all my calls to my ip phone are going to warehouse toolmail it is not even ringing i: 505 sales area selection on opportunities not filtering to those in which the account is extended see attached email communication including example for account i: 506 pc not detecting docking station i: 507 jeftryhf is having trouble connecting to companysecure at remote sites and usa i: 508 i tried rebooting the computer and tried logging into another computer and get blank screen i: 509 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm shadakjsdd request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name twejhda last name asjadjs consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 510 usa file server hostname has failed hard drive i: 511 unable to display the expense report i: 512 blank call gso i: 513 hi team could you please unlock account the user aeftjxos lhnyofad id vvsardkajdjtf case this account was expired please extend the access for the account the manager this user is zuyimtsf qjtimdsp please contact majsdtnrio or if you have more doubts please return me i: 514 rjsulvat uanigkqc pm nwfodmhc exurcwkm thadasgg fwd problem with outlook it is again iphone rjsulvat uanigkqc nwfodmhc exurcwkm problem with outlook hello cannot start outlook iphone i: 515 logon balancing error in erp Translated 515 : logon balancing error in erp i: 516 outlook freezing issue i: 517 hello the username ccghksdm will be used to login to company via citrix assume that we need to delete this user profile on the citrix servers so please send ticket to the citrix team because his account in active directory is not locked oinqckds qieswrfu manager gesendet dienstag oktober an oinqckds qieswrfu betreff password hi can you please reset my account so can login again my user is ccghksdm my last password was prbsddqd it doesnt work so cant login at the moment i: 518 jgdydqqd locked me out tried going onto password management tool to reset my password but jgdydqqd isn listed can you please unlock my account aerp i: 519 internet connection does not appear to be working wireless i: 520 xd xd xd hello am unable to sign into reporting tool can someone please assist me with my correct user name and password have never signed into it before xd i: 521 vitalyst transfer crm calendar not showing on outlook i: 522 working from home started vpn cannot access erp keep getting logon balancing error suggest submitting to it team at usa i: 523 hello colleagues would you please be so kind and activate the new iphone of hybegvwo dbgrtqhs company kstdaddaad details please see mail below many i: 524 hello xd xd k ndigung for eluvxqhw gpbfkqeu effective has been approved xd xd xd xd i: 525 nwfodmhc exurcwkm pm uzpycdho hdswinlo ustvaifg hmzfewks uzpycdho hdswinlo your windows password is expiring soon hi unfortunately it is an automatic process we cannot extend the time period once you come back from vacation please give us call back we will reset the password for you i: 526 password reset Translated 526 : password reset i: 527 erp sid password reset Translated 527 : erp sid password reset i: 528 name fievgddtrr language browser microsoft internet explorer customer number telephone summary erp bloqued too many failes attempts tanks i: 529 unable to join skype meeting xd skype keeps freezing Translated 529 : unable to join skype meeting xd skype keeps freezing i: 530 unable to connect to company center sales org not working i: 531 blank call i: 532 name joetrhud language browser microsoft internet explorer customer number telephone summary unable to connect to internet using broadband service i: 533 garthyhtuy was out of office for long time and needs assistance with logging back in to the pc now he is in office at the moment i: 534 name kirathrydan language browser microsoft internet explorer customer number telephone summary attendance tool password forgot i: 535 erp quote pntp net price and zntc unit price are but all costs are loaded see screenshots in email attached need quote to send to customer for ordering i: 536 error message it was not possible to retrieve the facets and their values xd can start exploring the information space as it doesn contain any data i: 537 hi team below is the hub posting to be published for us time change aerp revert if you have any questions planned service disruption what is the event daylight savings time ends in s when does it begin pm edt th november when does it end following time change am est november who and what will be affected all erp users all erp systems including erp plm bw crm supply chain hcm what is the reason all erp systems must be stopped during time change to prevent data inconsistency questions corporate datacenter xabkyoug wdkyiqfx nvyjtmca xjhpznds and network operations best i: 538 xd job hostname idb daily failed in job scheduler at i: 539 in has cracked screen but turned off touch screen so no longer jumps curser around phone pc name lmsltrys i: 540 name dctvfjrn oypnxftq language browser microsoft internet explorer customer number telephone summary reset the password for aolhgbps pbxqtcek uacyltoe hxgayczemii i: 541 unable to login to skype i: 542 hallo my outlook collapsed two times tried to restart my laptop but it doesn startup anymore restarting is on my screen for already half an hour image jpg met vriendelijke groet lwizucan zvnxlobq directeur company i: 543 why are these coming in spanish have already told lothryra what they mean but they should be in english please enter ticket for collaboration i: 544 unable to open outlook i: 545 carthygyrol is back in the office after few weeks off she saw an ip address conflict message requested to restart and she did not see the message again i: 546 scan doesn work in the home printer i: 547 erp sid account lock out xd i: 548 skype meeting add in getting disabled from outlook Translated 548 : skype meeting add in getting disabled from outlook i: 549 i can connect my note book to the vpn xd page csn not be shown i: 550 today the erp is not working while attempting to use the erp client it shows message attached microsoft odbc vmsliazh ltksxmyv driver login failed for user infosthryda reason the password of the account has expired we have contacted the vendor that said the password is expired due to settings configured by company dba team dba team should unlock account cahnge password and setup the erp with the new password i: 551 reset passwords for mgvpoyqd tnlshpwb using password management tool password reset i: 552 xd xd xd hello xd am facing the issue of no sound during skype meeting kindly do needful xd xd best i: 553 regarding ticket no which was fixed with chg key user reported in the attached email that the application is showing the problem again today xd we have contacted the vendor and they told us they will verify but have recommended to run the command again while they are investigating also they have suggested us to involve the dba team to also verify it seems the db is missing information xd i: 554 name gqhfieys pkwcdbrv language browser microsoft internet explorer customer number telephone summary ts printer still not working after system restart i: 555 probleme mit fixiereinheit we qvncizuf ueiybanz Translated 555 : problems with the fuser unit we qvncizuf ueiybanz i: 556 efrjkspc sfhbunrp am nwfodmhc exurcwkm aw efrjkspc sfhbunrp your windows password is expiring soon importance high hello have changed my password few day days ago why get this reminder please inform me if have change again i: 557 xd xd xd hello it support xd xd could you please give mr vxpcnrtw xelhoicd the permission to read and write load and upload files from the global teams drive for the folder gm sge programdnty xd many i: 558 all groups qlhmawgi sgwipoxns and ou for usatdhdal can be deleted usatdhdal ou can also be deleted i: 559 name tqnbkjgu xyedbsnm language browser microsoft internet explorer customer number telephone summary uacyltoe hxgaycze i: 560 hello it xd xd please check why billing block was not removed automatically xd xd i: 561 need to create the delivery note for sto but it won work i: 562 name chtrhysdrystal language browser microsoft internet explorer customer number telephone summary good morning can you please reset my erp password i: 563 need to install ts printer i: 564 tqnbkjgu xyedbsnm reported that he and his colleagues are unable to reach gso using the chat xd when they fill out the form the next page comes up only with the company logo xd i: 565 hello colleagues would you please be so kind and activate the new iphone of hybegvwo dbgrtqhs company sdjdskjdkyr details please see mail below many i: 566 folder access hostname departements aese thryad read and write access needed i: 567 in outlook and all other microsoft applications message appears saying product deactivated xd i: 568 facing charging issue computer name aidle service tag dcdhzhd i: 569 reset passwords for bfnvjgxd trqmnpvu using password management tool password reset i: 570 xd xd xd hallo xd xd der drucker em scannt keine dokumente ein xd xd fehlermeldung zugriff berpr fen r folgende ziele fehlgeschlagen xd xd hostname kmscan em file hostname kmscan em der pfad kann nicht gefunden werden xd xd der fehler sst sich auch durch mehrmaliges ein und ausschalten nicht beheben xd xd mit freundlichen gr en best Translated 570 : xd xd xd hello xd xd the printer em does not scan any documents xd xd error message check access r the following destinations failed xd xd hostname kmscan em file hostname kmscan em the path cannot be found xd xd the error can also be caused by switching the device on and off several times not fix xd xd yours best i: 571 erp sid password reset Translated 571 : erp sid password reset i: 572 bitte erp freischalten fehlversuche Translated 572 : please activate erp failed attempts i: 573 password is not synchronized i: 574 pc der maschine f hrt nicht mehr hoch Translated 574 : The machine's pc no longer starts up i: 575 pc awywx in rddept qlhmawgi sgwipoxn is not getting network connection i: 576 caller named benjamtrhdyin from salesforce wanted to talk to hathryrtmut i: 577 bug in employee extract programdnty reportncqulao qauighdpnager is appearing blank i: 578 eu tool in germany steel ohne funktion ckmelden geht nicht Translated 578 : eu tool in germany steel ohne funktion ckmelden geht nicht i: 579 xd job job failed in job scheduler at i: 580 erp sid account locked i: 581 hello xd when open outlook crm goes on erro with net and if press continue can work with outlook but not with crm plug in xd otherwise outlook crash i: 582 hallo kannst du einmal nachsehen wo der mail button ist am drucker er ist weg danke uwe Translated 582 : hello can you see where the mail button is on the printer it's gone thanks uwe i: 583 link users ottyhddok thielpwiie lobodeidd loksdkdjwda please get in touch with them i: 584 erp sid account unlock and password reset i: 585 hi please usa email access on new samsung device for nzuofeam exszgtwd md apac and vp cpmmecial please find information as follow email manager name chucashadqc wsljdqqds is this replacement of your old device yes as the existing old samsung phone is no longer in use please remove access on the old samsung device i: 586 hallo gerade eben ist der computer an meinem arbeitsplatz zum wiederholten male ausgestiegen und hat lediglich einen blauen bildschirm mit wei er schrift dargestellt bitte schau dir das vor ort mal an Translated 586 : Hello, the computer at my workplace has just got out of the car again and only has a blue screen with white letters. Please take a look at it on site i: 587 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 588 no display on desk phone i: 589 probleme mit lan r rechner erodiermaschine dtlmbcrx mwuateyx Translated 589 : problems with lan r computer erosion machine dtlmbcrx mwuateyx i: 590 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 591 eu tool is hanging and slow at the loaction i: 592 xd job job failed in job scheduler at i: 593 german workflow objects from all folders are gone de industrial gen ing transportation ici in the morning there were approximately objects please check also the uk folder i: 594 xd xd xd hello xd xd cannot start outlook xd xd xd Translated 594 : xd xd xd xd xd can access Not Start Outlook xd xd xd i: 595 netzlaufwerke auf auf quattro quattro quattro seit sonntag nicht verbunden Translated 595 : network drives on quattro quattro quattro not connected since sunday i: 596 password reset vvjotsgssea Translated 596 : password reset vvjotsgssea i: 597 uacyltoe hxgaycze chat Translated 597 : uacyltoe hxgaycze chat i: 598 mount request on lib prod weekly for job backup tool hostname weekly i: 599 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 600 employee owned mobility agreement i: 601 please check if this is related to the change in name of the telephony software queues from fdrf to germany xd please check the attached error xd chat url xd english language chat works normally i: 602 xd job job failed in job scheduler at i: 603 xd job job failed in job scheduler at i: 604 xd job job failed in job scheduler at i: 605 xd xd xd mit freundlichen gr en best Translated 605 : xd xd xd Yours sincerely i: 606 xd job job failed in job scheduler at i: 607 xd xd xd dear sir or madam xd xd while changing my password through the password management tool password manager following issue occured xd xd xd for the erp hcm production target it was not able to change the password details say please contact your helpdesk xd xd many i: 608 funktionsst rung Translated 608 : functional size i: 609 on ly for uacyltoe hxgayczeing sn i: 610 hallo help drucker wk funktioniert nicht mehr richtig etiketten verschieben sich bitte herrn himghtmelreich informieren vielen dank best Translated 610 : hello help printer wk is no longer working properly labels are shifting please inform mr himghtmelreich many thanks best i: 611 xd job job failed in job scheduler at i: 612 xd job job failed in job scheduler at i: 613 the following area codes below are being routed from our line to tyuhfljp zyjfpgtk when someone calls the help desk line they should be routed to lewbzysd gqdaikbv can you please check the routing area codes group dnis i: 614 engineering tool login issue xd help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 615 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start oct rd xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 616 uacyltoe hxgaycze ticket Translated 616 : uacyltoe hxgaycze ticket i: 617 hello following trail employee working in pthyu is unable to login his company hub mail id to view salary slip request to rectify the same aerp name thsaqsh number mail id user id wshqqhdqh password vasanqi i: 618 outlook outlook ost Translated 618 : outlook outlook ost i: 619 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor sr xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 620 xd xd xd hi xd xd we are facing issue in wifi connectivity and erp login xd xd xd best i: 621 uacyltoe hxgaycze Translated 621 : uacyltoe hxgaycze i: 622 hello please help us on this issue issue we are unable to update the status for tickets in ticketing tool tool below are the example tickets for your info i: 623 uacyltoe hxgayczeing pls ignore i: 624 uacyltoe hxgayczeing please ignore i: 625 hello have developed one application which access database internally have already checked with few of my collogues and it working fine the app is made for putyrh press tool team in their machine it not working have checked their system configuration as well which is same as my system system names awywkwdx awylw awywkjswx configuration office bit this is the error what get in their system i: 626 gso currently erp system production order number cannot be found after order number was identify enter in shopfloor everything is fine before erp routine maintenance please open ticket for escalate the responsible team that very urgent best i: 627 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 628 office excel powerpoint i: 629 xd job hr payroll na failed in job scheduler at i: 630 xd job hr payroll na failed in job scheduler at i: 631 xd job hr payroll na failed in job scheduler at i: 632 hi it team kindly please assist as user tahamt unable to access outlook after he change his password thry ldikdowdfm operation supervisor company distribution services of asia pte ltd email i: 633 please delete following these session created by tomyhoen i: 634 see attachment Translated 634 : see attachment i: 635 wauhocsk vxuikqaf pm nwfodmhc exurcwkm lxrponic lyszwcxg ranlpbmw djwkylif fw impact awards dear sirs please be so kind and help have been asking hr but they told me that you are the right people to talk to there have been done change on the position of director sales theeadjjd and we when sales managers from theeadjjd direct side are plugging in impact award points the approver is still ranlpbmw djwkylif should be wauhocsk vxuikqaf and guess same issue might be with we wester europe there was change of sales director as well we original sd crohuani dtjvhyob we new sd ranlpbmw djwkylif eseer original sd ranlpbmw djwkylif eseer new sd wauhocsk vxuikqaf would you be so kind and help us please in case you need more info let me know i: 636 fdbgoamk hygxzklauthuchidambaramdnty xd pm xd nwfodmhc exurcwkm xd fw your mobile device is temporarily blocked from synchronizing using exchange activesync until your administrator usas it access xd xd please provide access for mails in my mobile phone xd xd i: 637 xd job bkbackup tool csqe dev inc failed in job scheduler at i: 638 xd job bkbackup tool hostname prod inc failed in job scheduler at i: 639 xd job job failed in job scheduler at Translated 639 : xd job job failed in job scheduler at i: 640 xd job bkbackup tool hostname prod inc failed in job scheduler at i: 641 xd job bkbackup tool hostname prod inc failed in job scheduler at i: 642 xd job job failed in job scheduler at i: 643 interface gigabitethernet usa access sw on usa core sw is down since pm i: 644 my outlook is not working please see if you can fix thsadyu dwwlhews sales manager gl i: 645 xd job job failed in job scheduler at Translated 645 : xd job job failed in job scheduler at i: 646 xd job job failed in job scheduler at Translated 646 : xd job job failed in job scheduler at i: 647 hostname germany server is down since am et on i: 648 call came and there was only music and nothing else i: 649 blank call loud noise Translated 649 : blank call loud noise i: 650 hi require to reset erp password login id anantadth with warm i: 651 call came and got disconnected i: 652 xd job bwhrerattr failed in job scheduler at i: 653 xd job job failed in job scheduler at i: 654 hostname does not come up after weekly reboot note that recently there was hdd and power supply replaced on this server users karashsnnsb ping hostname pinging hostname company company com with bytes of data request timed out request timed out request timed out request timed out ping statistics for packets sent received lost loss users karashsnnsb i: 655 xd job bk hana sid os wly dp failed in job scheduler at i: 656 xd job job failed in job scheduler at Translated 656 : xd job job failed in job scheduler at i: 657 xd job job failed in job scheduler at i: 658 xd job job failed in job scheduler at Translated 658 : xd job job failed in job scheduler at i: 659 xd job job failed in job scheduler at i: 660 xd job sid cold failed in job scheduler at i: 661 xd job bkbackup tool sql prod full failed in job scheduler at i: 662 erp sid account locked i: 663 xd job bk hana sid erp wly dp failed in job scheduler at i: 664 switch down apac company rpmwh access sw located at apac is down since pm i: 665 inquiry on expense report erp Translated 665 : inquiry on expense report erp i: 666 xd job bkbackup tool powder prod full failed in job scheduler at i: 667 xd job bkbackup tool powder prod full failed in job scheduler at i: 668 xd job job failed in job scheduler at i: 669 xd job bkbackup tool sql prod full failed in job scheduler at i: 670 xd job job failed in job scheduler at i: 671 xd job job failed in job scheduler at i: 672 xd job bkbackup tool primary prod full failed in job scheduler at i: 673 xd job job failed in job scheduler at i: 674 hostname disk volume is over space consumed space available g i: 675 xd job bwdpmbkp failed in job scheduler at i: 676 xd xd xd we are experiencing an interruption in our systems involved with server hostname xd most of the network printers are not operational due to this problem xd xd please advise xd xd xd best i: 677 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on et xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes no na xd xd backup circuit active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 678 account unlock i: 679 pm nwfodmhc exurcwkm the terminate action for kmzucxgq vjzfocgt has completed hello termination for kmzucxgq vjzfocgt effective has been approved i: 680 i cannot get the data model to work in my excel bwfhtumx japznrvb regional controller i: 681 password reset Translated 681 : password reset i: 682 xd job job failed in job scheduler at i: 683 xd job job failed in job scheduler at i: 684 xd job job failed in job scheduler at i: 685 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 686 xd job bkwin infonet full failed in job scheduler at i: 687 xd xd xd hello xd xd my outlook app on my laptop isn opening xd xd i: 688 hostname server beeping sound in the server i: 689 ticket update on ticket no Translated 689 : ticket update on ticket no i: 690 usa company company na usa usa core sw went down at pm et on xd gigabitethernet interface down on company na usa usa core sw xd company na usa usa access sw went down at pm et on gigabitethernet interface down i: 691 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 692 i get an error every time that try to log into erp get log balancing error could not connect to message server i: 693 unable to connect to erp Translated 693 : unable to connect to erp i: 694 password prompt resulting in an unauthorized access error i: 695 please check hostname shop floor app server drive for possible problems one of the drives is flashing yellow i: 696 usa and usa perhaps other sites as well many users outlook refusing to send reply emails new email will send but reply will stall and outlook freezes with not reponding error this appears to be happening only with office personally am using office got many complaints from usa and complaints from usa mi as well suspect systemic problem company wide i: 697 access denied collaboration platform check screenshots in email attachment could you please reviewing the alejayhsdtffndro profile on collaboration platform in the functions menu alejayhsdtffndro chose the finance option but receive the message access denied alejayhsdtffndro is controller in mexico please see the screenshots below i: 698 jpg files encrypted i: 699 hello locked myself out of erp can you reset my password thesdf sdlwfkvach production supervisor i: 700 there is an employee that has been terminated who still has access to company email on his personal device aylrbosw gaeycbwd tsicojkp kghaozew commodity manager i: 701 outlook not working Translated 701 : outlook not working i: 702 unlocked and reset erp sid Translated 702 : unlocked and reset erp sid i: 703 company center is not pulling replacement items when they are available xd material in company center is pre obsolete with replacement the diaolog box is not displaying the replacement vb is populated mm xd i: 704 vip erp account locked for user janhduh keehadfvkgaalen Translated 704 : vip erp account locked for user janhduh keehadfvkgaalen i: 705 outlook freezing for all users i: 706 hello crm plug in buttons are not staying checked when close outlook lose the crm function in my outlook when close the programdnty please see attached screen shot tskvmwag awkrdqzb sr sales engineer nc north central region i: 707 xd xd xd Translated 707 : xd xd xd i: 708 dear sir please help me in erp login user id dwivethn with best i: 709 hello team can you please create business partner id for bertsckaadyd in solution manager inxsupmy zhwmifvx team lead sourcing and logistics global it i: 710 missed call i: 711 id printer have paper stuck up issue i: 712 when searching in inbox the following message is received due to current network conditions some results not be included in your search i: 713 skype error while logging in i: 714 system sid sid sid sid hrp other sid enter user id of user having the issue moranm transaction code the user needs or was working with cvn describe the issue csr mdwydindy mwdlkloran currently does not have access to view drawings please upgrade her access as this is necessary requirement for all csrs on the company team provide access the same as this other user yrlsguzk fasyiokl i: 715 unable to open xml files on the computer i: 716 yesterday had some problems with outlook after password change the problem was crm new version was loaded and thought my troubles were over now my skype for business is not working and could not join an important meeting this morning copy of the skype screen is below is the sign in address correct if not what should it be have emailed this because the telephone help line hangs up on you as soon as you select number to direct the call tjwdhwdw tdlwdkunis senior sales engineer team i: 717 please note when dialing into the help line as soon as you make selection or it hangs up on you terminating the call tjwdhwdw tdlwdkunis senior sales engineer i: 718 xd xd xd hello xd am having trouble accessing skype keep getting cut off when select from the phone menu hope this gets through xd i: 719 xd have wifi but my computer does not work with wifi only works with telecom vendor telecom vendor it is gsm suplier with g i: 720 blank call i: 721 name slrgconp onukdesq language browser microsoft internet explorer customer number telephone summary opened ticket this morning who is it assigned to i: 722 dpuifqeo eglwsfkn pm nwfodmhc exurcwkm shkdwd dlwdwd dfetvmzq brxavtzp re purchasing dfetvmzq brxavtzp the email address on this profile is incorrect please change to also need to add the company catalog to her profile i: 723 i am new to erp and have had no training at all xd would you please call me and walk me through login or at least verify my login name and password please and i: 724 blank call i: 725 xd xd xd hello team xd used to be able to see what search in outlook within pdf attachments but after the upgrade cannot search within pdf attachment in my mailbox xd can you please advise xd xd i: 726 erp sid erp production password reset i: 727 when try to login to ethics training click on the log in from the collaboration platform site it takes me to the page to select language click on engilsh then get an error that says the page failed to load i: 728 usa access for configuring outlook exchange on windows phone approval is attached with this ticket xd xd i: 729 gigabitethernet shopfloor schuette on company eu deu germany emsw access sw is down since i: 730 cannot log into hiatchi password manager to change to new password i: 731 password reset request Translated 731 : password reset request i: 732 my external monitor will not come on this morning i: 733 xd xd xd good morning xd xd we have urgent need for assistance as customer is awaiting parts for mm please give this matheywter high priority xd xd however xd xd we have experienced glitch in creating delivery for sales order the delivery created for pcs there is balance due of pcs but we can not change delivery quantity nor can we delete delivery we did not pgi the delivery when created and the delivery is still showing in md but when we try to make changes there is an error that the delivery has been posted we have tried to unpost vl delivery but we are getting message stating that delivery has already been inwarehouse toold but in all reality the delivery is frozen in erp and no changes can be made xd xd i: 734 company com not working dns issue i: 735 customer catalogue and collaboration tool is not working i: 736 xd xd xd fyi xd xd tried calling in this morning no matheywter which option select m immediately disconnected xd xd i: 737 good morning please give yhrdw hdldgeman access to netweaver questions thanx jwbsdd ddmefoche sr applications engineer i: 738 hello am getting error when trying to create new lean tracker number attached the screenshot of the error need your help to resolve it i: 739 shared mailbox not updating activities i: 740 i cannot get into my computer get an error no ip address Translated 740 : i cannot get into my computer get an error no ip address i: 741 account locked in erp sid i: 742 would you please reset my erp hcm password m locked out of it i: 743 outlook and skype not responding Translated 743 : outlook and skype not responding i: 744 drucker in we uacyltoe hxgayczeraum knicrhtyt papier dtlmbcrx mwuateyx Translated 744 : printer in we uacyltoe hxgayczeraum knicrhtyt paper dtlmbcrx mwuateyx i: 745 bitte zugriff auf folgenden pfad einrichten departments hostname programdntyme schichtplaner user freybtrhsdl Translated 745 : please set up access to the following path departments hostname programdntyme shift planner user freybtrhsdl i: 746 hostname plm plot view production order interface app rfcserver exe process count critical i: 747 password no more valid new password to access to erp sid erp production i: 748 reinstall hardcopy und eu tool lndypaqg dhqwtcsr Translated 748 : reinstall hardcopy und eu tool lndypaqg dhqwtcsr i: 749 hi team could you please help me to reinstall erp in computer the an user computer lpawhdt please contatc me if you have more doubt tnks i: 750 hi team pls help to run out dn against sto pcs customer need them urgently thx lot rgds wswdd djdwol company hardpoint apacc i: 751 we gibt nur eine fehlermeldung aus xd anmelden im netzwerk xd registrieren der netzwerkeinstellungen xd nicht alle vorg nge nnen erledigt werden xd warten sie einen moment vzqomdgt jwoqbuml Translated 751 : we only output an error message xd registering in the network xd registering the network settings xd not all operations are completed xd wait a moment vzqomdgt jwoqbuml i: 752 my pc is responding slow can the pc team please check to speed it up further xd am looking for disk fragmentation or similar type of activity which will help pc perform its activitiess faster i: 753 xd job job failed in job scheduler at i: 754 trigger loads for bw fill rate recovery kba for Translated 754 : trigger loads for bw fill rate recovery kba for i: 755 lable drucker in der endkontrolle defense gibt keine etiketten aus Translated 755 : lable printer in the final inspection defense does not issue any labels i: 756 xd job bk biaprod failed in job scheduler at i: 757 rechner r ngenmessmaschine uacyltoe hxgayczeen xosdfhbu gtbfkisl Translated 757 : computer r ngenmessmaschine uacyltoe hxgayczeen xosdfhbu gtbfkisl i: 758 hello we need new pc name service tag of the pc is fynkssc koahsriq wdugqatr administrative assistant company ooo vavilova corp russia russia www company com i: 759 please provide the following what order number customer order nor what material or item number item mm what warehouse location plant issue description error message the delivery quantety is the picked quantety is delivery note is booked but system says delivery is not picked yet can not cancel please help i: 760 erp sid account has been not unlocked successfully pw reset for erp user name pihddltzr hi unlocked the erp sid account please login with same password not working i: 761 kabel lan liefern gogtyekhan merdivan Translated 761 : cable lan liefern gogtyekhan merdivan i: 762 cannot use it because of missing plugin i: 763 transactions are interrupted and erp connection is broken constantly i: 764 xd xd xd xd mit freundlichen gr en best Translated 764 : xd xd xd xd Yours sincerely i: 765 xd xd xd xd mit freundlichen gr en best Translated 765 : xd xd xd xd Yours sincerely i: 766 xd xd xd hi it team xd xd have still received the email notification reminder to approve prs daily for the ones which have already approved and there are no any pending prs left to approve in me also pos have been raised by purchasing team xd xd kindly review the system and fix for me i: 767 help erp is very slow with disconnections please resolve at the earliest i: 768 erp slow down few locations impacted at least eu i: 769 backup r rechner lasplant pfjwinbg ljtzbdqg Translated 769 : backup r computer lasplant pfjwinbg ljtzbdqg i: 770 blank call i: 771 log in for erp is out of order i: 772 pls help to run out dn against sto pcs customer need them urgently i: 773 eu tool funktioniert nicht mehr Translated 773 : eu tool no longer works i: 774 hello all dudyhuyv is not active in password management tool and australia can access to windows please can you check and do what is necessary thx sinc res salutations best i: 775 unable to open eps files Translated 775 : unable to open eps files i: 776 received solarwind alert am on et xd xd netpath running from hostname is having an issue reaching portal microsoftonline com xd xd attached is the screen shot i: 777 xd xd xd dv zlettel mit freundlichen gr en with best Translated 777 : xd xd xd dv note with kind regards with best i: 778 xd job job failed in job scheduler at i: 779 collaboration platform nicht verf gbar kein internetzugriff Translated 779 : collaboration platform not available no internet access i: 780 xd xd xd hello xd xd requesting you to provide me an authorization for the below mentioned programdnty xd xd xd xd best i: 781 wgpimkle kijhcwur mail xd am xd nwfodmhc exurcwkm xd rad bex error xd xd help desk xd xd xd got below error message when ran rrmx through sid xd please fix the issue xd i: 782 eu tool funktioniert nicht Translated 782 : eu tool does not work i: 783 xd job bkwin search server prod daily failed in job scheduler at i: 784 pc hrt nach neustart nicht mehr hoch bzw bricht hrend der hochfahrsequenz den bootvorgang ab bitte berpr fen danke Translated 784 : pc doesn’t start up after restarting or it stops during the start-up sequence, please check, thank you i: 785 name zheqafyo bqirpxag language browser microsoft internet explorer customer number telephone summary erp is too slow i: 786 users from various department are complaining slow response in erp engineering tool engineering tool etc and unable to work i: 787 xd job job failed in job scheduler at i: 788 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 789 hi plant encounter erp sid system down due to this issue we or not able to fulfill local orders for today it depend on how fast the system will be up have raise it ticket inc nsdwd mwdddlleh operation supervisor company distribution services of asia pte ltd email i: 790 unable to check pay slip in hr tool i: 791 it erp id fenthgh erp password was forgotten and self service system password was forgotten too even worse all systems were locked do me fever to unlock them i: 792 agents have to wait minutes for each operation of erp i: 793 as we found that the erp response time speed is very slow this morning please help chek and fix this issue aerp i: 794 xd xd xd hi it team xd xd kindly please assist to check plant encounter erp sid system slow between to daily i: 795 pls help to check erp due to slow response thx i: 796 xd job bkwin hostname inc failed in job scheduler at i: 797 hostname and fence are at instead of i: 798 a termination for hwddwwd wdflefrong wdnwe effective has been approved i: 799 xd job bkwin hostname inc failed in job scheduler at i: 800 xd termination for svfuhlnx aqrzskpg effective has been approved xd i: 801 xd xd xd how do access my earlier work emails xd dell desktop doesn pull up mails older than xd xd i: 802 xd job sid hotf failed in job scheduler at i: 803 xd job sid hotf failed in job scheduler at i: 804 xd job sid hotf failed in job scheduler at i: 805 xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job job failed in job scheduler at i: 806 xd major lib drive time pm xd dev rmt xd cannot write to device o error xd xd job sid hot failed in job scheduler at i: 807 xd job sid hot failed in job scheduler at i: 808 windows password reset request i: 809 xd job job failed in job scheduler at i: 810 unable to log in to ethics i: 811 query to send skype meeting i: 812 unable to connect to home printer i: 813 dear it team please usa read and write access on the following two folders to me dnqdqld hostname departments personal file hostname departments personal hostname departments pesonal file hostname departments pesonal i: 814 ticket update inplant Translated 814 : ticket update implant i: 815 outlook issue ms crm dynamics i: 816 please usa sasqkjqh lwddkqddq access to printer cl ps per lpoebzsc grknswyo i: 817 password update query Translated 817 : password update query i: 818 vpn query for user vvtdfettc Translated 818 : vpn query for user vvtdfettc i: 819 xd xd xd good afternoon xd can you please add new library heading talent review to the library area can you also remove kristina cope as the owner of this portion of this page please use myself mtdyuhki fdnrxaci and ifblxjmc dyrgfwbm to this page xd xd xd xd xd xd i: 820 xd job sid hotf failed in job scheduler at i: 821 erp station in castings is not working i: 822 dalmdwppi pc in castings is not working i: 823 no boot Translated 823 : no boot i: 824 in last fourth weeks have same problem start outlook outlook is opening but it doesn open it was times fixed by our it service technician but it help always for one week and than it appeares again please help me to fix it my phone number is will be at home tomorrow afternoon from i: 825 erp sid account lock out i: 826 i believe apo is out of synch and cif programdnty need to be run the sto was created inventory received at this afternoon next bop job is not scheduled until after pm this sto needs to ship before then i: 827 ticket update on inplant i: 828 quoting engine error Translated 828 : quoting engine error i: 829 reset outlook password for theecanse wdleell his windows logon password is different since he doesn log on to company i: 830 i am having trouble with getting internet guest access for the person below skads wdlmdwwck technician engineering usa plant i: 831 details provided when trying to open file only states the file is corrupt and cannot be opened multiple files noticed since at plant have become unavailable confirmation of unavailable files from different departments no mail of notice regarding any possible server changes i: 832 contact summary modem in the idg area is down at the usa plant i: 833 interface serial and serial connection to usa plant is down since pm et on i: 834 ad account locked out i: 835 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network yes yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 836 i am getting certificate error trying to access hfyujqti jdcbiezxs see attached hddwdw lwdwdwdr i: 837 erp sid password reset request Translated 837 : erp sid password reset request i: 838 symantec pop query ran quick scan and deleted cookies i: 839 axcbfuqo yiagubvh no longer has access to http bddjwwwdw he needs access please see the attached email from gilles good morning there is very long time that did not contacted the team and you am in india for weeks and work with the team using the new equipment need your help because am not anymore able to be connected application where was able to make consultation received this following message can you help to have this connection working again have also the competitive databse but this is still working well i: 840 unable to connect to outlook i: 841 hi team need your help with two error the customization the engineering tool the two errors attachment in ticket erro computer lpawty diwhdd jwddkwor and lpawty gsotqxfi lidunfjg if you have more doubts please contatc me i: 842 xd job job failed in job scheduler at i: 843 summary need phone to connect to outlook i: 844 hello is outlook down can seem to connect on laptop remotely please advise sent from my iphone dxwuovgs lmuxizht sr sales engineer i: 845 please create tax code in ccyks this is really urgent as we have to post vat inwarehouse tool by the end of the week background there was an export of goods from this location to germany from plant to plant delivery sto vat inwarehouse tool is not posted in finance i: 846 hi poland cannot log into crm all users in poland i: 847 xd job pp eu tool netch ap failed in job scheduler at i: 848 i need to check on email license for production leads dwwkd wdjwd usa wdnwk wdwmd wdkfww usa whwdiuw wdnwwl kwfwdw usa wdkwdwd Translated 848 : to check on email to angen License for production leads dwwkd wdjwd usa wdnwk wdwmd wdkfww usa usa wdkwdwd whwdiuw wdnwwl kwfwdw i: 849 can not sign into crm or single sign on portal on the hub it states my password is not correct this is the password use for all other access points in company i: 850 password reset Translated 850 : password reset i: 851 printer dymo labelwriter turbo is not working can print calibration label for our gages i: 852 unable to change password i: 853 not able to login to sso one team it never worked xd refer ticket ticket no i: 854 xd job sid hotf failed in job scheduler at i: 855 pc rqxw setup for remote company use cannot be logged in to it appears the domain membership is broken i: 856 bdwdwarbara needs the permissions to save to the folder srvlavstorage toolroom tooling documentation i: 857 the name of the employee who needs access is wdwddw wwdyuan yqddquanw employee number the file is located on our operations drive drive then sub file drafting then sub file itar this was set up by our own it guy before he was laid off i: 858 need access to ess i: 859 engineering tool installation i: 860 eu tool for plant plant is working very slowly please help here immediately i: 861 crm issue ms outlook issue i: 862 user needs help to login to the mii xd i: 863 working with the systems is almost impossible the processing of orders is no longer possible at the moment xd das arbeiten mit den systemen ist fast nicht glich das abarbeiten von auftr gen ist zur zeit nicht mehr glich i: 864 gehe einmal davon aus das herr aurwddwacher zum ende oktober das unternehmen verl sst bzw in ruhestand rente geht im prozess der schung des accounts ticketing tool vorlage employee status termination kann unter special instuctrion eine sogenannte delegation angegeben werden somit erh lt derjenige dem die postfach delegiert wurde zugriff r einen bestimmten zeitraum die vorlage wird normalerweise vom vorgesetzten bzw zust ndigen hr abteilung ausgef llt und sollte mit beiden abgesprochen werden Translated 864 : assume that mr aurwddwacher will leave the company or retire at the end of October, will retire in the process of closing the accounts ticketing tool template employee status termination, a so-called delegation can be specified under special instuctrion so that the person to whom the post office box was delegated has access For a certain period of time, the submission is usually filled out by the superior or the responsible HR department and should be discussed with both of them i: 865 userid waldjrrm Translated 865 : userid waldjrrm i: 866 user needs help to login to the collaboration platform site xd provided the user the email id and password after verifying the user details xd advised the user to try and login to the collaboration platform xd user confirmed he is now able to login to the collaboration platform xd issue resolved i: 867 account lockout i: 868 outlook table view incorrect i: 869 xd xd xd dear was not able to go on internet since this morning an itbof germany was not able to log in we have tried so much that the pasword is locked have the message your password has expired and must be changed please forward me the new password i: 870 hello xd xd when use analysis for ms excel now can see the design pane even when option is turned on refer to screenshot was able to see design pane earlier without problem the only major change on my pc is recently upgraded to office suite can you please help bring my design pane back i: 871 browser issue flash player and addins issue i: 872 not able to do pgi for delivery customer vale td order xd itens pieces pieces pieces pieces xd urgente uacyltoe hxgaycze for customer xd xd error xd co account assignments have different profit centers xd message no bk xd xd diagnosis xd you entered multiple co account assignments objects assigned to different profit centers in document item however all co account assignments objects with profit center assignments must be assigned to the same profit center xd xd procedure xd if the message is an error message check and change the co account assignments objects so that all objects with profit center assignments are assigned to the same profit center xd xd in customizing you can change this message from an error message to warning message notification or you can deactivate it completely to do so see the implementation guide img step under controlling general change message control message class bk message xd i: 873 erp sid account unlock and password reset i: 874 i open bex analyzer and connect to sid xd try to open report xhlg pmm atm product management master at xd the window to select values for variables appears no available variants data provider is set to for finance xd click ok the system sits and does nothing eventually get microsoft excel not responding error xd xd is there something wrong with the system is there something wrong with my settings xd xd need to pull reports for an external auditor so it is rather urgent that get this fixed quickly xd xd i: 875 cannot print on usa printer prtqx any longer please fix i: 876 unable to print from the printer qc i: 877 no one has helped me with this am not sure why this was closed out when had received no help i: 878 user unable to connect at the companysecure at office checked the network connection settings enabled the network connections updated the network drivers updated the bios on the pc restarted the pc user iformed he is ina meeting and will call tomorrow i: 879 ich will im etikettendruck eine zahlen buchstaben drucken als barcode ber word etikettendruck mit der schriftart cosid geht dies nicht das ich es mit einer scanpistole lesen kann phone Translated 879 : i want to print a number letter in the label printing as a barcode over word label printing with the font cosid this is not possible that i can read it with a scan gun phone i: 880 xd job sid hotf failed in job scheduler at i: 881 dear it team please usa read and write access on the following two folders to me webrgers hostname departments personal file hostname departments personal hostname departments pesonal file hostname departments pesonal i: 882 erp sid account unlock and password reset i: 883 xd job job failed in job scheduler at i: 884 bitte user gogtyektdgwo richtig einstellen nach anmeldung fehlen alle netzlaufwerke Translated 884 : please set user gogtyektdgwo correctly after login all network drives are missing i: 885 called in to get in touch with ecwtrjnq jpecxuty i: 886 vip account unlock i: 887 support r roboworker sandstrahlen xwirzvda okhyipgr Translated 887 : support r roboworker sandstrahlen xwirzvda okhyipgr i: 888 setup new ws lndypaqg dhqwtcsr i: 889 ticket update for ticket no Translated 889 : ticket update for ticket no i: 890 circuit outage india admin core sw is down at am et on i: 891 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 892 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 893 wenn jemand von au erhalb anruft dann klingelt das telefon nicht bitte mal nachschauen danke Translated 893 : if someone calls from outside then the phone doesn’t ring, please take a look, thank you i: 894 unable to launch outlook i: 895 system sid sid sid sid hrp other pm xd xd enter user id of user having the issue mathes xd xd transaction code the user needs or was working with xd xd describe the issue please reset the password if required please unlock the id xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 896 xd xd xd dear team xd xd my erp account got locked because of wrong password attempt xd xd please support to get unlock the same xd xd xd xd xd i: 897 xd job job failed in job scheduler at i: 898 production order printer mp is being replaced remove rerouting from mp to mp on erp systems printer replacement you will need to have power network connectivity and the printer installed ready before ticketing tool ticket can be opened do you have all requirements above satisfied yes no yes replacing erp printer name g hq id wy mp name stays the same ip address if known ip stays the same make model of the replacement erp printer hp laserjet mf what erp printer do you currently use g hq id wy list the erp system the printer needs to be defined erp sid sid sid sid sid sid hrp plm etc hrp sid plm same as old mp what is currently printed on these printers from erp g inwarehouse tools delivery notes etc same as old mp location of install country city building floor cubicle same as old mp local it site contact name xvwchsdg pladjmxt optional printer serial number printer mac address serial cnctft i: 899 hostname is currently experiencing high cpu utilization please investigate i: 900 hedjdbwlmut nwwiebler called regarding folder access query i: 901 xd xd xd dear colleagues xd xd please usa access to this path for me for read and write access xd xd corpbusinessdev monthly financial review xd xd i: 902 hi please usa email access on new iphone device for our indirect channel manager information as follow email manager name sqqqd zlkmlwdwdade and nidqknwjktin dewkiodshpande is this device company owned yes is this replacement of your old device yes as the existing old samsung phone is faulty i: 903 hello one of the temperory workmen nxcfastp xnwtyebg whose user id is vvandwkjis is not able to login to ess as his user id locked he is kiosk user please re set his password and confirm i: 904 obleme mit barcode etiketten volume format zu gro vzqomdgt jwoqbuml Translated 904 : obleme mit barcode labels volume format zu gro vzqomdgt jwoqbuml i: 905 setup new ws in br usalikfj lfmpxbcn i: 906 guten morgen hkydrfdw der monitor an unser ngenmessmaschine ist defekt bitte kurzfristig einen ersatzmonitor bereitstellen danke Translated 906 : good morning hkydrfdw the monitor on our measuring machine is defective please provide a replacement monitor at short notice thank you i: 907 bitte wieder freigeben Translated 907 : please release again i: 908 reinstall eagl from scratch device chrashes when entering stand by mode i: 909 please restore the complete file hostname hr fd mitarbeiter azubis including all files under azubis danke viele gr trgqbeax hfyzudql i: 910 xd job job failed in job scheduler at Translated 910 : xd job job failed in job scheduler at i: 911 xd xd xd hi it xd xd please help to resolve our sg printer problem the printer is fine after printer technician check it is to do with our cable and server ports in the server room xd xd we admin have no knowledge and capability to handle that please have someone to help aerp xd xd xd best i: 912 eu tool pls and wqw are working very slow i: 913 schreibrechte r ksdvp ce leiter Translated 913 : write rights r ksdvp ce head i: 914 there was change in bank details made with ticket no this is not correctly printing on the english forms it is showing the correct data but the descriptions are in german example bankverbindung instead of bank address konto nummer instead of account number also see that there is an extra text being printed for the customers bitte beachten sie unsere neue bankverbindung please note our new bank account details only the english version should print on the english documents not both german and english i: 915 released orders do not make it into the to do list please check the status and restart the system i: 916 i am not able to get into skype right now is there an outage i: 917 whenever fill in any amount money into erp it show me only rmb finally in the system please contact withn me aerp my phone i: 918 xd job job failed in job scheduler at i: 919 configair server responds with internal server error in case of any other logon language then en and the model csewdwdwdndmill is used the issue exists in erp erp system sid as well as on uacyltoe hxgayczedistributor tool uacyltoe hxgayczecompany center quality environment further error message text is error while trying to invoke the method java util list iterator of null object loaded from local variable locallist logon language en is ok if our csscdddwsawdrill model is used all language seem to be working fine but once the user changes to any other language g de or it and uses the model csewdwdwdndmill the configig air system responses with the error message during starting process of configair configurator i: 920 xd job pp eu tool netch ap failed in job scheduler at i: 921 plant have pcs cannot created n for mm our customer is very urgent this goods xd would you please help sloved xd xd i: 922 xd xd xd dear sir xd by mistake one of the folder in hostname rk has been deleted xd requesting you to retrieve the same xd xd with best i: 923 xd xd xd hi it team xd xd cannot approve pr via the link provided only enable to approve directly in erp via me xd xd kindly fix for me i: 924 seit mesz serverprobleme qmsoft nicht anwendbar Translated 924 : since mesz server problems qmsoft not applicable i: 925 pm problem report from pwrhmc hq company com reporting system pwrhmc machine type model serial ev problem number error description management console to fsp bpa or bpc failure detected last occurred pm current status pmr number a details i: 926 xd xd xd good day xd could you please reset password for erp xd xd i: 927 jkddwkwd ngtr assistant manager manufacturing company india limited i: 928 request access to get prints my id is i: 929 gso user qzkyugce etsmnuba dondwdgj can log on the ticketing tool the system display the user and password invalid could you work on this i: 930 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor na xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 931 xd job sid stat failed in job scheduler at i: 932 kwddwdw hudfefwe am nwfodmhc exurcwkm rxoynvgi ntgdsehl gzawrocy shbgwxeparamdnty fw mm iak urgent it help please help check it urgent din in future please raise such issue to our it as well ap logistics manager rxoynvgi ntgdsehl am gzawrocy shbgwxeparamdnty johthryugftyson hu kmvwxdti uaoyhcep re mm iak hi morning this issue still not solve yet still encounter same issue the net weight higher than gross weight net weight kgs and physical gross weight kgs but in erp sid vln shown it is correct attached for your reference hi morning need your advice on this issue this is issue happen since last still not solve yet attached email flow for your reference ksjfye fekfeealleh operation supervisor email pm gzawrocy shbgwxeparamdnty kmvwxdti uaoyhcep rxoynvgi ntgdsehl aw mm iak hello it done have nice day mit freundlichen gr en best i: 933 please see attachment i: 934 hello my user id yandfgs please help to unlock it i: 935 xd xd xd cannot run the erp sid sa zsd mexico inwarehouse tool extract shows an error xd best i: 936 first name trtgoywdd last name povirttch customer job title sales engineer contact email address vitalyst reference number bbfa was bomsdgar used yes description of problem unable to access collaboration platform site if this problem persists contact your support team and include these technical details correlation id sid afd ace cfce date and time pm user issue type user does not have permissions steps taken so far goes to the hub search lagp lagp request goes to form click on blue circle access denied message previously had access to this site i: 937 i need access to sid uacyltoe hxgaycze system username owenssdcl supervisor phjencfg kwtcyazx manager vnhaycfo smkpfjzv wsjkbw owwddwens accounting specialist i: 938 no authorization in apps i: 939 unable to log in to erp sid Translated 939 : unable to log in to erp sid i: 940 xd job job failed in job scheduler at i: 941 access to erp sid for user rgpvdhcm mgvpabsj i: 942 zugriff auf verzeichnis angefragt xd folder access requested hostname xd xd benutzer id xd user id xd xd benutzer die position titel xd user position title xd xd verzeichnis xd folder corpbusinessdev monthly financial review fy october xd xd art des zugriffs xd type of access read only or full control i: 943 summary need access to the following folder for our financial review corpbusinessdev monthly financial review need to get read write need to save files here and be able to open them i: 944 unlocked account i: 945 the attached screenshot is from ptljghyk qhtvlrxe she looked up product that she knows we have the screen shows i: 946 engineering tool not able to update new customer i: 947 unable to access collaboration platform Translated 947 : unable to access collaboration platform i: 948 unable to open engineering tool i: 949 i no longer have access to create cost centers in sid only sid please update access for cost center creation in the uacyltoe hxgayczeing system sid transaction ks xd xd i: 950 summary having issues with collaboration platform unable to access we have meetings that people have to post documents to the library and are not able to access when will it be fixed i: 951 it has been requested by our temporary service to provide them with static ip address for time clock that will be hard wired in can you provide contact summary do gear the request for static ip address to this box for assistance i: 952 the collaboration platform system is not working multiple users report getting an error trying to open any company collaboration platform com website this greatly affects the discount process as we cannot access any request or update approved ones the error message which pops up is attached this affects pozna and usa i: 953 cannot get my usb wifi adapter to work on my laptop i: 954 unable to access collaboration platform Translated 954 : unable to access collaboration platform i: 955 summary was thrown off of vpn and tried several times to get back in am now back into vpn but cannot sign on to crm i: 956 collaboration platform issue i: 957 collaboration platform down i: 958 ihuogcqd ihusvgcw phone my skype for business can connect to exchange this has been going on all week have rebooted and logged back into skype but it will not connect and keep getting this error i: 959 the company collaboration platform is reporting down status since pm i: 960 vip collaboration platform page access issue i: 961 when running the report example would be mm for location plant as the source location and making sure on the outputs tab that scheduling agreements are included this report is not picking up this scheduling agreement i: 962 windows running into problem goes to start up repair page loading fine in safe mode with networking user was able to log in using admin account but dint dint have access to it tried shutting down pc and trying booting up no go flea power no go it was going to repair screen again and again st lkzddens contact details can be contacted during i: 963 hostname volume label sys hostname aa is over space consumed space available xd i: 964 i need my address added to xerox prtqx i: 965 personal number locked expense report i: 966 erp sid password reset Translated 966 : erp sid password reset i: 967 hallo ersuche alle meine passw rter zur ckzusetzen da gesperrt crm erp vpn hello all my passwords are locked crm erp vpn mit freundlichen gr en best Translated 967 : hello ask to reset all my passwords because locked crm erp vpn hello all my passwords are locked crm erp vpn best regards i: 968 skype and outlook synch issue meeting are not showing up in skype xd error message attached xd xd error message skype for business and exchange aren making connection i: 969 unable to open the outlook its hang at process stage i: 970 ncasrpvx fijwprtv pm nwfodmhc exurcwkm tr notification re po no dsfdb hello could you check this message i: 971 mechmet hswddwk company sllwdw tel email period from now til tomorrow at mp i: 972 unable to print driver not found i: 973 unable to open outlook i: 974 welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp i: 975 needs to change password i: 976 i changed my password using the password manager and now am locked out of erp used the password manager to unlock but still fails to log in to erp and engineering tool i: 977 xd job job failed in job scheduler at i: 978 unable to open netweaver i: 979 trying to use skype is not responding was working earlier i: 980 vip user unable to login to the pc xd advised the user to restart the pc and try to login with the new password no go xd reset and help the user login to the pc xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 981 page down to ensure that all required data fields are complete before submitting use this template for consultants temps interns vendors etc please complete all entries id first name johddnthay last name welwsswbtwe location usa us manager sponsor keddsdn wethrybb cost center bdm external company name kellkwdy what systems do they need access on mii mii yes if yes is user operator admin or supervisor operator need username and word security note for mii add im shopfloor user to user sid account is company email required for this person if yes by default k license will be assigned for use of owa and collaboration platform only not outlook client or skype if outlook client or skype are required more costly license must be assigned and can be used only on company computer assign k or license access like who required this is to review copy from person access for approvals requires access until date is the computer owned by company if yes is it laptop or desktop computer name is remote access vpn required if yes please provide to which all applications erp systems network servers the user needs access via vpn start date i: 982 hello business client business client vpn ktghvuwr uwtakcmj sr application engineer optimization team i: 983 company guest account set up Translated 983 : company guest account set up i: 984 not updating so that the other people working the email box can see who has each email so we are duplicating work i: 985 query regarding unread sync failure emails Translated 985 : query regarding unread sync failure emails i: 986 unable to login to mii system yrhackgt sfhxckgq xd xd checked account and found that it was not locked out xd suggested user to unlock account from password management tool and try logging in again some time xd xd i: 987 unable to launch ethics flash player issue i: 988 unable to access time Translated 988 : unable to access time i: 989 name francestrhuco language browser microsoft internet explorer customer number telephone summary pls reset me the sid crm production access thx i: 990 their number is i: 991 krthdelly sthytachnik phone usa location login i: 992 called to unlock nvyjtmca xjhpznds account user id datacntr i: 993 bitte scanner r we einstellen drucker wurde auf werkseinstellung zur ckgesetzt konica Translated 993 : please set scanner r we printer was reset to factory setting konica i: 994 help to change the windows password using password management tool password tool connected to the user system using teamviewer help the user login to the password management tool password tool and change the passwords help the user to sync the psswords to the company network caller confirmed that he was able to login issue resolved i: 995 fehlermeldung systemfehler andh with mr potthryzler user identification potzlow eu tool does not go to the computer empwa error message system error and h i: 996 account unlock i: 997 probleme mit login in br usalikfj lfmpxbcn Translated 997 : problems mit login in br usalikfj lfmpxbcn i: 998 good morning am unable to log into my erp as normal after review with doyhtuug endlkglfeghart it was determined this was from the switchover of servers can you please correct so can log in as normal i: 999 unable to login to sid Translated 999 : unable to login to sid i: 1000 winwip not working asking to buy trial version validity expired i: 1001 please push the erp mii ksff dashbankrd to this computer i: 1002 need access to erp sid like rpgcdbfa reuwibpt i: 1003 user needs help to login to erp sid xd connected to the user system using teamviewer xd help the userlogin to the erp sid xd issue resolved i: 1004 need the configuration of new pc i: 1005 xd xd xd hellow xd xd can someone help me to install polycom have some issues xd xd i: 1006 can you please give me access to the sid uacyltoe hxgaycze system user pildladjadga i: 1007 xd xd xd hello xd due to travel tool uacyltoe hxgayczeing please allow me to acces to xd i: 1008 i changed my password yesterday ever since keep getting messages to enter my email and password do and nothing happens again get prompted to enter it my one note is not syncing because of this issue evry time work with file keep getting the prompt i: 1009 npc was created by svuxizgr mkynswqd before she left the company task list looked complete before she left the materials are not fert re assigned coordinator and tasks to me but it wont complete i: 1010 hello drwfubia per our conversation in two cases below am unable to change the passwords because the erp system passwords are not reset to daypay do not know who this ticket should be assigned to created the ticket and it was assigned by someone to you if it has to go to someone else please reassign it accordingly cphemg erp sid account locked login not possible cphemg erp sid account locked login not possible i: 1011 need access to eagcldaten aese leitung csd emealeitung i: 1012 xd xd xd hello all xd xd could you please help me retrieving the deleted folder from drive xd below was the link now it not here folder name vacation plan xd vacation plan update file hostname teams globalengservices tcb graphics vacation plan team vacation updates xlsx xd xd please support xd xd i: 1013 not able to view drawings in business client i: 1014 xd job sid filesys failed in job scheduler at i: 1015 xd job job failed in job scheduler at Translated 1015 : xd job job failed in job scheduler at i: 1016 hallo ich kann mich nicht in das impact award programdntym einloggen oder mein pass wort zur cksetzen mit freundlichen gr en lzvdyouh imqgfadb Translated 1016 : hello, i cannot log into the impact award program or reset my password, best regards lzvdyouh imqgfadb i: 1017 system sid sid sid sid hrp other enter user id of user having the issue transaction code the user needs or was working with describe the issue if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user pandethrypv i: 1018 please see below in red xd xd viele gr best Translated 1018 : please see below in red xd xd viele gr best i: 1019 outlook not working Translated 1019 : outlook not working i: 1020 every time click on the walkme link get the upgrade plugin message get the below message in new tab am not being able to access walkme plugin on hr tool i: 1021 german caller Translated 1021 : german caller i: 1022 xd xd xd hello xd xd please note am unable to get my old mails in the inbox the oldest mail can get is of xd need my old mails also as there is important data related to customers xd xd i: 1023 xd job sid hoti failed in job scheduler at i: 1024 not able to open the existing hana report i: 1025 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 1026 xd xd xd hello xd xd office collaboration platform is not executing in my c xd xd pl help xd xd xd i: 1027 a termination for ckfobaxd wgnejyvt effective has been approved xd xd account is not yet disabled i: 1028 xd xd xd hello it helper xd recently always got some email from working flow system to remind me approve pr and but that pr already no in erp can you help me check xd xd xd i: 1029 laptop model dell precision m Translated 1029 : laptop model dell precision m i: 1030 there are belgium costumers calling the polish phone number of agnwfwieszka can we do something on it i: 1031 xd job job failed in job scheduler at i: 1032 hostname volume consumed out of gb currently gb space is available i: 1033 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1034 l fter defekt industriekontrollmonitor niptbwdq csenjruz Translated 1034 : l fter defective industrial control monitor niptbwdq csenjruz i: 1035 reinstall win qidgvtwa qvbutayx i: 1036 guten morgen dhthykts um die kamera an den neuen monitor anzuschlie en ben tigen wir ein kabel von hdmi auf diesen hellgrauen anschluss am dell monitor so ist zumindest die erste kamera aufgebaut falls es andere alternativen gibt sind wir nat rlich auch daf offen Translated 1036 : good morning dhthykts to connect the camera to the new monitor we need a cable from hdmi to this light gray connection on the dell monitor so at least the first camera is set up if there are other alternatives we are of course also open to it i: 1037 please provide the following what order number what material or item number item what warehouse location plant issue description error message it is legal control issue material was extended to plant plant by rqfhiong zkwfqagb team but legal control group isn extend automatically also it is fert product and for poland like for all eu it should be set like ear we have the same problem with all new materials extended to plant plant and country pl the same issue with czech republic plant and turkey plant all materials have to be released manually by import export managers rlhuwmve krcfhoxj slrgconp onukdesq chrsddiwds dwdbertfsych the manually process take lot times export team and csrs every day and very often block invoicing and sales tools after tests demonstrations consigment stocks material is only example and will be relased manually by petqkjra but please check the problem find root cause and solve it i: 1038 probleme mit fp rechner bleibt ngen ksxchbaf rhquvzfm Translated 1038 : problems with fp computer remains ngen ksxchbaf rhquvzfm i: 1039 need help in changing password in password management tool password manager Translated 1039 : need help in changing password in password management tool password manager i: 1040 amssm windows disk space utilization alert utiliuytretion is out of gb currently mb is available i: 1041 xd xd xd hello xd xd the response time is of erp sid erp production is very slow xd request you to kindly arrange to resolve it xd xd i: 1042 telecom vendor donggle connection issue connected to the user system using teamviewer uninstalled and reinstalled the telecom vendor dongle app checked the dongle settings advised the user to try and connect no go user mentioned that the telecom vendor connect get connected for some time and then disconnects its happening since long time no i: 1043 wild card search for grade is not working in search by part number in distributor tool i: 1044 mein erp passwort funktioniert nicht ich bin gesperrt Translated 1044 : my erp password does not work i am blocked i: 1045 xd xd xd hello ladies and gentlemen xd xd xd need access xd xd xd xd xd xd xd xd xd Translated 1045 : xd xd xd hello ladies and gentlemen xd xd xd need access xd xd xd xd xd xd xd xd xd i: 1046 xd job job failed in job scheduler at Translated 1046 : xd job job failed in job scheduler at i: 1047 pc an der eu tool station oder bde in germany funktioniert nicht mehr xd anzeige schreibt festplatten fehler Translated 1047 : pc at eu tool station or bde in germany no longer works xd display writes hard disk errors i: 1048 fehlermeldung in der mail dieser vorgang wurde wegen beschr nkung abgebrochen bitte wenden sie sich an den systemadministrator kein hyperlink glich zu ffnen Translated 1048 : error message in the mail this process was canceled due to restrictions please contact the system administrator no hyperlink could be opened i: 1049 the i: 1050 hi it team kindly please assist to reset erp sid password for user kimtc dkklddww lqdwjdwd operation supervisor company distribution services of asia pte ltd email i: 1051 bitte erp account von fygrwuna gomcekzi entsperren Translated 1051 : cleats erp account von fygrwuna gomcekzi entsperren i: 1052 same issue with inc have found another delivery status blocked items please see the attached excel file for material numbers xd plesae change status to not blocked otherwise we cannot create delivery note i: 1053 bitte erp kennwort zur cksetzen Translated 1053 : please reset erp password i: 1054 the i: 1055 xd xd xd dear sir xd xd please give the quote for laptop bag and projector adopter for my laptop dell latitude xd xd xd with best i: 1056 xd job job failed in job scheduler at i: 1057 verbindung zwischen drucker em und pc eemw kann nicht hergestellt werden Translated 1057 : The connection between printer em and pc eemw cannot be established i: 1058 hello it team can you please assist to create dn for the following so we cannot create delivery believed this is because delivery block status has been set with blocked need to be not blocked so mm i: 1059 bitte netzteil oder netzstecker am pc evhw wareneingang pr fen und ggf reparieren xd pc sst sich nur nach bewegen des steckers einschalten Translated 1059 : please check the power supply unit or plug on the pc evhw incoming goods and repair if necessary xd pc can only be switched on after moving the plug i: 1060 account locked in erp sid i: 1061 in hub for commstorage product company folder for me it is showing access denied i: 1062 xd xd xd hello xd xd when try to create new mm number for items with storage location plant the mm number gets created under plant even when the storage location is specified as plant in the line item xd pl rectify same xd xd i: 1063 xd job job failed in job scheduler at i: 1064 xd job job failed in job scheduler at i: 1065 please insert the delivery note no in erp book i: 1066 xd xd xd dear it xd xd would you pls help to check dn the o can not generated i: 1067 ms office pro plus french has got corrupted please do the need full i: 1068 unable to login to windows account i: 1069 also my initial is wrong the right one is waitgr chdffong sdfgwong i: 1070 a termination for lauredwwden hwffiglhkins effective has been approved i: 1071 xd job job failed in job scheduler at i: 1072 xd job sid hoti failed in job scheduler at i: 1073 hi it team kindly please assist as my staff kmvwxdti uaoyhcep unable to open his email computer name aswl user kthassia dbkdwwd wdfwsggalleh operation supervisor company distribution services of asia pte ltd email i: 1074 mail am nwfodmhc exurcwkm the terminate action for phvwitud kvetadzo has completed hello termination for phvwitud kvetadzo effective has been approved click the link to view here i: 1075 dear all would you please do me favor plant is on the customs audit and we are preparing the document referring to the attached file using pweaver ship manifest can extract the tracking numbers based on dns would you please let me know if there is any way can we not extract the old data i: 1076 pvjdtrya oevyhtdx mail pm nwfodmhc exurcwkm wtykmnlg xamesrpfrop ship will not inwarehouse tools hello on my order below have drop ships that will not inwarehouse tool they customer item and po and please advise please update your records with my new email address zurtxjbd gaotwcfd inside sales representative i: 1077 termination for brthryian lsgthhuart hello termination for brthryian lsgthhuart effective has been approved click the link to view i: 1078 unable to sync mails on iphone i: 1079 hello please can you login again my phone to server changed my phone from old iphone to new want connect get mails from exchange outlook on my iphone again iphone phone number imei i: 1080 unable to access erp Translated 1080 : unable to access erp i: 1081 xd job sid hoti failed in job scheduler at i: 1082 hello termination for yhteijwf llwlfazo effective has been approved click the link to view here i: 1083 ticket update on inplant i: 1084 this looks like spam to me just wanted to make someone aware xd xd i: 1085 dwmnad macwdlmwkey this is the error am getting when use any search function on system outofmemoryexception exception of type system outofmemoryexception was thrown at system reflection runtimeassembly getrawbytes runtimeassembly assembly objecthandleonstack retrawbytes at system reflection runtimeassembly getrawbytes at system security policy hash getrawdata at system security policy hash generatehash type hashtype at system security policy hash get sha at system web handlers scriptresourcehandler getassemblyinfointernal assembly assembly at system web handlers scriptresourcehandler getassemblyinfo assembly assembly at system web handlers scriptresourcehandler runtimescriptresourcehandler getscriptresourceurlimpl list assemblyresourcelists boolean zip at system web handlers scriptresourcehandler runtimescriptresourcehandler system web handlers iscriptresourcehandler getscriptresourceurl list assemblyresourcelists boolean zip at system web handlers scriptresourcehandler runtimescriptresourcehandler system web handlers iscriptresourcehandler getscriptresourceurl assembly assembly string resourcename cultureinfo culture boolean zip at system web ui scriptreference geturlfromname scriptmanager scriptmanager icontrol scriptmanagercontrol boolean zip at system web ui scriptreference geturlinternal scriptmanager scriptmanager boolean zip at system web ui scriptreference geturl scriptmanager scriptmanager boolean zip at system web ui scriptmanager registeruniquescripts list uniquescripts at system web ui scriptmanager registerscripts at system web ui scriptmanager onpageprerendercomplete object sender eventargs at system web ui page onprerendercomplete eventargs at system web ui page processrequestmain boolean includestagesbeforeasyncpoint boolean includestagesafterasyncpoint i: 1086 password reset to login hub i: 1087 no display on the monitor i: 1088 distribution list not updating xd removed and re added it back waited for some time xd it worked fine xd issue resolved i: 1089 host hostname company com xd target type database instance xd target name sid xd categories capacity xd message the value of datafile size for perpsrglovia oracle sid erpdata srglovia srglovia data is xd severity critical xd event reported time oct pm edt xd event type metric alert xd event name me oracle datafile monitor datafile size xd i: 1090 cannot post delivery about materials were recently moved from usa warehouse to usa warehouse we are not able to post this delivery get error that says this material is not maintained at plant plant plant is usa alabama plant should have nothing to do with this see attached screen shots am concerned that some configuration is missing to allow plant to ship consignment fill up orders for this customer tool flo mfg these products are only to be stored in usa temporarily once inventory depletes these will be shipped direct from plant plant plant we cannot miss service to this customer please advise i: 1091 hello please reset my password for supply chain software user beyhtcykea best i: 1092 hello pls assign user corsthroc to the ad ltabthrysallotcsalesman currently he is added to ltaballotcsalesemp but he is sales manager approved by me if it is enough as approval i: 1093 xd xd xd xd hello xd xd haved any access to bobj since days please could you help me xd i: 1094 i not able to add lean event through the webpage cannot be displayed i: 1095 xd job job failed in job scheduler at Translated 1095 : xd job job failed in job scheduler at i: 1096 unable to load outlook as ost file got corrupted name bthrob knrlepglper language browser microsoft internet explorer customer number telephone summary could you please take control of my screen and let me know what is wrong with my email i: 1097 ticket update on inplant i: 1098 xd xd xd company help xd xd was unable to access the finance portal on the hub even though have done this in the past receiving the below message could you please check my permissions and let me know what need to do to reinstate xd xd i: 1099 unable to access drawings i: 1100 update on inplant Translated 1100 : update on implant i: 1101 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1102 von ydigzqbu xdgjizek gesendet dienstag oktober an ujxvrlzg pkaegicn betreff workflow inbox hello mr thetadkg hope you are the right person to turn suddenly don reeive any team workflows anymore into my erp inbox am assigned to csd and hope you can tackle this problem i: 1103 vip mobile device activation Translated 1103 : vip mobile device activation i: 1104 summary my email is not update again i: 1105 hello xd have used several times in the past but for some reason today it not functioning properly get to the point where have chosen which table to load and then it freezes and says not responding really need this to be working properly so that can do my job please help i: 1106 need access to collaboration platform approved by blktuiae jzakfmhw please find attachment user id schddklnes website fcd ef cb ab fbcce andfile emea dpo vendor payment terms change log xlsxandaction default i: 1107 userid walddkrrm mdiwjd wthaldlmdsrop global ethics and compliance programdntys i: 1108 xd xd xd hi have been unable to load my picture in skype when try to edit it takes me to my account and does not load xd have added in outlook but does not show up in skype xd any ideas xd i: 1109 not able to clear printer queue xd cleared queue by command prompt and checked giving uacyltoe hxgaycze print it worked fine xd issue resolved i: 1110 uacyltoe hxgaycze call from benethrytte cthoursook i: 1111 xd xd xd ve attempted to submit this expense report below for approval and it does not appear to be moving on to approver it only saves the report xd xd this happens every time submit an expense report xd xd i: 1112 bplnyedg vobluewg placed uacyltoe hxgaycze call id i: 1113 wjslkzfr jxlbzwrp pm nwfodmhc exurcwkm re email and internet browser importance high hello please help me my email keeps disconnecting and have not had internet access at all this week i: 1114 i have no access to appreciatehub com it says you not yet be authorized to enter employee recognition site please contact your admin i: 1115 ghost call with interaction id i: 1116 blank call call came and got disconnected i: 1117 id xd xd person on other side disconnected i: 1118 outlook not updating Translated 1118 : outlook not updating i: 1119 dear sir have two issues on my kpm my time keep does not go forward ii submitted my time report for last week but my supervisor does not receive it and iii my time keeping window only showing one row on my time cannot enter new vacation time dathniel fangtry senior staff engineer i: 1120 unable to see engineering tool i: 1121 current file is corrupt and not working xd server name dat hostname i: 1122 iwifi companysecure not working at sao bernardo do campo i: 1123 call came and got disconnected xd private number was unable to call i: 1124 blank call i: 1125 account lockout i: 1126 get the attached error when trying to post delivery i: 1127 name pfzxecbo ptygkvzl language browser microsoft internet explorer customer number telephone summary can not add skype meeting link to new meeting notice the button is no longer there please advise how to get it back i: 1128 password reset Translated 1128 : password reset i: 1129 uninstalling driver update slimware technologies external software Translated 1129 : uninstalling driver update slimware technologies external software i: 1130 unable to open outlook i: 1131 hello xd xd please send me replacement detachable keybankrd for my venue pro vpro xd xd the right hand keys are not working not working properly xd xd it makes using the machine very problematic xd i: 1132 name tim hopes email telephone summary two employee lost access to mii scanning clock numbers and i: 1133 ich chte einen serienbrief erstellen kann aber meine datenquelle excelliste nicht ffnen xd systemfehler ich bitte um hilfe danke xd Translated 1133 : I would like to create a serial letter but cannot open my data source excellist xd system error I ask for help, thank you xd i: 1134 unable to connect to internet Translated 1134 : unable to connect to internet i: 1135 system freezing Translated 1135 : system freezing i: 1136 erp login issue password reset Translated 1136 : erp login issue password reset i: 1137 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1138 erp sid account unlock i: 1139 please unlock my password forgot it xd i: 1140 outlook issue not loading Translated 1140 : outlook issue not loading i: 1141 password reset from password management tool i: 1142 das folgende word dokument kann nicht mehr bearbeitet werden edksm qs zeugnis kunden doc der cursor springt st ndig auf seite Translated 1142 : the following word document can no longer be edited edksm qs testimonial customer doc the cursor jumps constantly to page i: 1143 the i: 1144 there is job that had been printing out every morning on bd need it cancelled this is the one that printed today if you look at tomorrow date you can see there is one released that will proint bwfhtumx japznrvb regional controller i: 1145 hallo bitte r jannek ndling zugriff auf den ordner department ausbildung mit freundlichen gr en best Translated 1145 : hello please r jannek ndling access to the folder department training best regards i: 1146 xd xd xd hi xd xd cannot open close or manipulate any of my tasks on engineering tool this makes it difficult to work with our team in india please have look xd xd i: 1147 windows password reset i: 1148 eu tool funktioniert teilweise gar nicht Translated 1148 : eu tool sometimes doesn't work at all i: 1149 erp sid system in germany is extremly slow no delivery possilbe please help i: 1150 xd xd xd hi xd please assist changed password this morning entered old password just now please activate xd xd kind i: 1151 windows account unlock i: 1152 windows account lockout i: 1153 reset password Translated 1153 : reset password i: 1154 transaktionen in erp dauern zu lange Translated 1154 : transactions in erp take too long i: 1155 monitor r video messmaschine liefern oziflwma nhgvmqdl Translated 1155 : monitor r video messmaschine liefern oziflwma nhgvmqdl i: 1156 probleme mit outlook cwivnxuk izmxqfud Translated 1156 : problems mit outlook cwivnxuk izmxqfud i: 1157 rechner optiplex defekt ewew xpugntjv zcaermdt Translated 1157 : rechner optiplex defective ewew xpugntjv zcaermdt i: 1158 error you are not authorized to view this page xd you do not have permission to view this directory or page using the credentials that you supplied i: 1159 after clicking the outlook icon the start window appears for minutes xd no matheywter how long you wait the programdnty does not start xd also restart of the computer brought no improvement i: 1160 fyi qasdhyzm yuglsrwx analyst distributed system lan pc de qasdhyzm yuglsrwx enviada em ter feira de outubro de para ferguss gustaco filipim requena hp assun res inc problem with engineering tool for non miowvyrs qkspyrdms hi we are waiting you m available and gustavo too believe that you need connect in computer the gustathsvo non company to solve this problem can you connect in computer the gustathsvo now or can be ist if you can streamline this process appreciate because gustathsvo has this problem by weeks qasdhyzm yuglsrwx analyst distributed system de enviada em ter feira de outubro de para qasdhyzm yuglsrwx assun inc problem with engineering tool for non miowvyrs qkspyrdms hi can you please come up with your availability aerp it would be great if you could mention the date and time ist please give me call if you could not reach out to me via skype i: 1161 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1162 please restart the eu tool server aerp so we can run production as planned i: 1163 hello team can you please create business partner id for vvtathadnda in solution manager rtpcnyhq ceqmwkhi i: 1164 xd job pp eu tool netch ap failed in job scheduler at i: 1165 unable to loin to ess portable Translated 1165 : unable to loin to ess portable i: 1166 hello user jesjnlyenmrest is experiencing programdnty issues with these aplications engineering tool he can access it create new report unable to submit the computers are approximately one year old should rather reinstall this pc instead of trying to fix the problems separatelly best i: 1167 setup eu tool we wu jionmpsf wnkpzcmv Translated 1167 : setup eu tool we wu jionmpsf wnkpzcmv i: 1168 hallo bitte lese schreibberechtigung r niptbwdq csenjruz einrichten ist mit sbtvploj mwtrouyl besprochen gru lhmxposv lnpgjhus betriebsabteilungsleiter technische dienste gesch ftsf hrer managing directors phvkowml azbtkqwx naruedlk mpvhakdq sitz registered office germany registergerirtcht listed in the court register germany pers nlich haftende gesellschafterin general partner company company beteiligungs gmbh sitz registered office rth bay registergerirtcht listed in the court regster rth von niptbwdq csenjruz gesendet montag oktober an jionmpsf wnkpzcmv xmlbfjpg yegzbvru dhoalycb yopvwrjq lhmxposv lnpgjhus sbtvploj mwtrouyl joerg passiep cwryvksu cedsairg betreff aw maschinenumstellung bei mir klappt es nicht mit freundlichen gr en niptbwdq csenjruz servicecenter instandhaltung i: 1169 please insert the delivery note no in erp book i: 1170 erp sid password reset Translated 1170 : erp sid password reset i: 1171 dear all this is jathyrsy from plant we are on the audit and the auditor would like to see po documents hard copy is there any way to print po documents one time if ues men and zz mails need to do one by one the number of pos is more than i: 1172 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1173 we are downloading the sp for outlook and will see if the issue is resolved once it is installed i: 1174 hallo zusammen bitte das iphone freischalten r mail empfang danke mit freundlichen gr en rtnyumbg yzemkhbq tel mit freundlichen gr en rtnyumbg yzemkhbq techn beratung und verkauf company deutschland gmbh max planck stra x apple data detectors apple data detectors company deutschland gmbh gesch ftsf hrer rfwlsoej yvtjzkaw harald nnlein herr pinkow diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 1174 : hello together please unlock the iphone r mail reception thank you kindly gr en rtnyumbg yzemkhbq tel kindly gr en rtnyumbg yzemkhbq techn advice and sales company germany gmbh max planck stra x apple data detectors apple data detectors company germany gmbh business leader rfwlsoej harvtjzk mr. pinkow this communication is intended solely for the use of the addressee and may contain information that is confidential or is excluded from disclosure under applicable law, distribution or reproduction of this communication by persons who are not intended The recipient is strictly forbidden if you have received this message due to a mistake then please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language this message is solely and exclusively r the use determined by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if this communication you received it due to a mistake, please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 1175 can you please unlock and reset password for userid bertes and let me know the initial password i: 1176 user needs help to open rar file xd connected to the user system using teamviewer xd installed the application on the user system xd user informed he is able to open the rar files now xd issue resolved i: 1177 received below email from inin tried to ping the server but it is not responding pm media server disconnect company inc the cthaasnoc network operations center noc has received media server disconnect alert via proactive monitoring for the following media server we have opened an incident to track this alert and will close the incident when connectivity is re established to the media server please verify power to all devices and or follow up with your network provider for further troubleshooting affected infrastructure server dengic location united states indgic location united states indgic location united states dengic location united states dengic location united states dengic location united states dengic location united states dengic location united states additional information trghwyng route to lpapr over maximum of hops sartlgeo lhqksbdx ms ms ms ms ms ms ms ms ms ms ms ms ms ms ms ms ms request timed out request timed out request timed out request timed out if you have any questions regarding this notification please contact our support team at the number listed below sincerely interactive intelligence cthaasnoc team interactive intelligence blast notification this mailbox is not monitored please call support at the phone number in this communication for any questions you have i: 1178 xd xd xd hello xd am not able to access business client please help xd xd xd i: 1179 system bankrd inlet temp alert for hostname xd system bankrd ambient temp alert for lpas xd xd attached is the screen shot of windows event viewer logs i: 1180 name fyzceglp vfnraqxc language browser microsoft internet explorer customer number telephone summary have another user that can remember his erp sid password sign on is cabane please reset to daypay i: 1181 name fyzceglp vfnraqxc language browser microsoft internet explorer customer number telephone summary user pluytd erthryika plaunyud locked herself out of erp sid can you please reset her password to daypay i: 1182 the i: 1183 unable to access emails on outlook i: 1184 hello it team xd xd please help to check the following issue erp did not pull the customer part number from the ztax item for the taps item although it was shown on the delivery note please see attached we were not able to print the label for item xd xd i: 1185 not able to login to collaboration platform i: 1186 ticket update on ticket no Translated 1186 : ticket update on ticket no i: 1187 henvrkuo nogrfadw is getting the following error message when trying to access purchasing xd no data found for employee inform system administration xd xd please sync her hr org details to purchasing i: 1188 if this option is currently available please let me know i: 1189 no audio on ethics page i: 1190 intermittent audio issue on computer Translated 1190 : intermittent audio issue on computer i: 1191 summary when logging in remotely am unable to access my outlook understand there is setting need to change to fix the issue please help i: 1192 inc ticket update i: 1193 xd xd xd when try to login the following message is received please advise xd xd xd xd i: 1194 ticket query on ticket no i: 1195 xd xd xd am unable to log into skype please advise xd xd xd xd i: 1196 monitor on ray instrument pc will not stay turned on i: 1197 sever hqap has hd failure light kindly create ticket with the vendor i: 1198 static sound from telephony software phones id i: 1199 xd xd xd please advise the user login associated with this machine need to update the address book xd xd xd xd i: 1200 need installation of msoffice xd xd user is new joiner and she unable to access msoffice as because she having license i: 1201 hostname teams rta full control access for rjodlbcf uorcpftk i: 1202 summary need to have user id reset for sid erp for fduinmtw yofhirjs hixsodl please mail her once you have reset the password i: 1203 hello have employees that has access to scan out production orders on but do not have access today could you check into this problem and let me know what to do hydluapo qbgclmit and eulsvchi rqflkeuc they have tried to unlock everything in password management tool but no luck cthryhris kovaddcth production supervisor i: 1204 xd xd xd hello xd xd can go into vpn xd password should be not right xd xd please can you reset my password also for vpn xd xd many i: 1205 there are two different engineering tools installed on the in tablet and neither of them work properly when click on link it goes into web based search also when click on the engineering tool icon it show an error cannnot continue the application is improperly formatheywted the other error that get below is an example of the web based search when entering new engineering tool xd sorry the page you were looking for does not exist or is not available we performed web search for http engineering data report server pages report viewer aspx report viewer pages report server and here what we found i: 1206 xd job job failed in job scheduler at Translated 1206 : xd job job failed in job scheduler at i: 1207 hi we need your help with programdnty nx when the users tiaghry santhuy and pvimkcfw sarxkfvj click in gkad the nx close can we do make something to solve this problem i: 1208 crm add in will not come up i: 1209 when try to open through erp business analysis it gives error the launcher is exited with error analysis add in is not registered correctly i: 1210 dear sir please reset password as it is failed to logon as had changed the password management tool password due to expiry which results in this problem user name schyhty emp id with best i: 1211 flash player update issue i: 1212 contact need read write access to folder ldgm lean network path hostname public lean read and write access i: 1213 erp prtgghjk password reset Translated 1213 : erp prtgghjk password reset i: 1214 needs to change password i: 1215 windows account unlock i: 1216 bcxfhekz bplfrnis exited the company and we need to forward bcxfhekz bplfrnis emails to zneyrlhg bfiwanze effective immediately xd i: 1217 telephone summary have completed nda for alarm systems but am not receiving the emailed response with link to the form cothyshy has access to the above link she can edit but whenever she saves it she does not receive the email confirmation copy i: 1218 xd job job failed in job scheduler at i: 1219 icloud account is synched with outlook need to delete it i: 1220 erp sid account locked out i: 1221 name bettymcdanghtnuell language browser microsoft internet explorer customer number telephone summary iam locked out of erp tried to change password and got locked out i: 1222 summary new employee phone number needed i: 1223 xd xd xd dear it team xd xd cannot connect below link it is long download it and as below screen please help xd xd users can access vpn xd xd xd best i: 1224 received the following email for the last two backups the job was automatically canceled because it exceeded the job maximum configured run time backup server is hostname xd xd stefyty dabhruji is currently assisting i: 1225 mobile device activation Translated 1225 : mobile device activation i: 1226 name giuliasana byhdderni language browser microsoft internet explorer customer number telephone summary cannot access the planner app in owa i: 1227 password expired unable to change the password i: 1228 summary am having difficulty changing my password for usa company through the password management tool id system please assist i: 1229 xd xd xd hello xd xd would like to gain access to this link xd xd am trying to complete an lagp request for one of my customers this is the error m receiving xd xd i: 1230 ticket update inplant Translated 1230 : ticket update implant i: 1231 hello can not open our branding site receive following error message in internet explorer make sure the web address am on vpn syhtu pozdrsavom mit freundlichem gruss best i: 1232 keinyujo torvxeda can not access the pre call planning section of the account record he gets an error that is the same as the one he gets for his reporting engineering tool on the crm dashbankrd it fixed once but when opened crm again same issue happened i: 1233 xd xd xd hi can some help me with costing issue xd xd mm this is part that is made at plant and was extended to plant as you can see the cost at plant is at and usd think that the is incorrect xd when try to cost this part it is coming in at the on the ppc and on the gpc with an warning message of mat in plant plant itemization does not match cost component split xd am not sure as to what need to do to correct this can you help xd xd plant cost is at cad xd xd xd xd xd xd xd xd xd best i: 1234 erp sid locked Translated 1234 : erp sid locked i: 1235 summary cannot open downloaded dedalus report on pdf this was reported on several collegues when downloading and opening this particular report i: 1236 xd xd xd dear all xd xd just got the information that since last rkyjnbqh kfshormi sales engineer didn receive any push out reports like xd the open quote report etc xd xd can someone please check and let us know what happens xd xd i: 1237 error windows cannot access hostname red cross on the drives in the server user has access to server it has worked before contact it has impacted our quoting team design team and manufacturing usa plant i: 1238 unable to open business client install net framdntyework i: 1239 network drive not loading Translated 1239 : network drive not loading i: 1240 i didn receive any sales activity order reports from for this past week mnlvhtug imvetgoa sr application engineer general engineering company inc i: 1241 xd xd xd hello xd xd m facing some problems to join conference calls by skype xd when access m the only one in the call xd xd i: 1242 rechner r eu tool st be ngt sich auf spdczoth vajtodny Translated 1242 : The calculator r eu tool st hangs on spdczoth vajtodny i: 1243 forgot password for erp login Translated 1243 : forgot password for erp login i: 1244 not able to open single sign on portal on hub i: 1245 rechner r infostand defekt probleme mit fter niptbwdq csenjruz Translated 1245 : computer r information status defective problems with fter niptbwdq csenjruz i: 1246 hallo wir brauchen usb stick gb r lehrjahr st ck Translated 1246 : hello we need usb stick gb r apprenticeship year piece i: 1247 not able to submit lean tracker in collaboration platform i: 1248 xd xd xd hello team xd xd can not open outlook and skype in my pc it gives an error like this xd xd xd cid be dbe bb eccc xd xd xd i: 1249 unable to get to password management tool to change the password i: 1250 vpn is suddenly not accepting credentials i: 1251 erp sid account unlock i: 1252 please see the attached jpg file that show the message from pm tool for sd i: 1253 account locked i: 1254 xd job job failed in job scheduler at i: 1255 all the bobj webi publications have failed over the weekend the services are still not working i: 1256 help desk there are pr which are pending more than and days which are yet to release by please find the screen shot for both the pr as below but when it is checked in work flow of approver user id jagtgarthy nothing is pending screen shot is attached for the same please verify the details for not appearing in the work flow of approver s i: 1257 xd job job failed in job scheduler at i: 1258 hello dwight any update on this i: 1259 hostname stibo server physical drive and power supply issue i: 1260 not able to open drtawings in pdf i: 1261 xd xd xd dear all xd xd all reports under bob information spaces like the product management report and quota report and others are missing xd xd you simply get an empty screen other users report the same problem xd xd can you please fix the issue xd xd i: 1262 volume label sys amssm ef on server is over xd space consumed space available g i: 1263 xd job job failed in job scheduler at i: 1264 hi it team would please need two loaner laptops location germany from th th for visitors consultant from bank who name are rtbkimey cfsqwtdv and xikojdym rgazclmi the consultant will finish huge update for our erp payment management and autobank tool cost center fuf i: 1265 not able to see sny information spaces bobj prod server i: 1266 please unlock the account hanx and reset password for me i: 1267 xd xd xd hi it team xd xd d like to set up my hand set samsung for my company outlook emails xd pls offer assistance xd xd best i: 1268 im not able to login to sid system plese look into this on priority my user id is venktyamk i: 1269 fe Translated 1269 : it i: 1270 probleme mit benutzer erneut nur tempor merdivan xwirzvda okhyipgr Translated 1270 : probleme mit utilizationzer erneut nur tempor merdivan xwirzvda okhyipgr i: 1271 anmeldefehler lync qidgvtwa qvbutayx Translated 1271 : anmeldefehler lync qidgvtwa qvbutayx i: 1272 dvi schnittstelle ohne funktion vermutlich grafikkarte defekt Translated 1272 : dvi interface does not work, graphics card is probably defective i: 1273 fehlermeldung systemfehler andh unbekannter fehler Translated 1273 : error message system error andh unknown error i: 1274 name syhunil krishnyhda language browser microsoft internet explorer customer number telephone summary changed my password from password management tool password unlocked all accounts my engineering tool is not taking new password it is showing number of failed attempts exceeded i: 1275 hello xd xd bob geht wieder mal nicht xd haben wir einen systemfehler xd xd bob goes back not even xd do we have system failure xd xd xd mit freundlichen gr en xd best Translated 1275 : hello xd xd bob doesn't work again xd we have a system error xd xd bob goes back not even xd do we have system failure xd xd xd with kind regards xd best i: 1276 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant xd xd issue description error message cannot run n although plant has pcs stock i: 1277 company connect i: 1278 xd job job failed in job scheduler at i: 1279 xd xd xd good day xd xd please help with the following xd xd we have an issue on the below sales order xd xd xd the first line item is not pulling through to the picking slip xd xd xd please assist xd xd i: 1280 r pc def evtl netzger t Translated 1280 : r pc def evtl netzger t i: 1281 bitte sofort lokalen it support smpijawb eawkpgqf vor ort schicken um fehler zu analysieren komplette auslieferung des werkes germany steht Translated 1281 : please send local it support to smpijawb eawkpgqf on site immediately to analyze errors complete delivery of the works in germany is available i: 1282 as in the last weeks the eu tool performance is verly low in germany plant i: 1283 not able to submit lean tracker i: 1284 eu tool und chargenverwaltung geht nicht Translated 1284 : eu tool and batch management does not work i: 1285 yotyhga narthdyhy am nwfodmhc exurcwkm fw file scanning problem in richoscan wy kindly request you to it previous this folder is in drive directly mtb st floor richoscan wy and now somebody have moved this to mtb st floor richoscan wy please correct this and now not able to scan the files to mtb st floor richoscan wy i: 1286 keine ckmeldungen und zuteillisten glich Translated 1286 : no ck messages and allocation lists were alike i: 1287 serverprobleme qm soft nicht anwendbar i: 1288 battery not charging when the power adapoter is connected when the power adaptor is unpliugged the batter is not detected system latitude service tag hvzlqthr express service code installed the power system bios restarted the pc and checked still the same issue issue with the battery needs replacement contact i: 1289 the computer lthyqzns service code will not turn on at all tried changing elengineering toolical plug and had no effect the fan to the computer will not turn on either contact gordon leach xernsfqa uzvsnlbd number i: 1290 the i: 1291 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 1292 printer offline see attachment i: 1293 xd job hr payroll na failed in job scheduler at i: 1294 xd job hr payroll na failed in job scheduler at i: 1295 xd job hr payroll na failed in job scheduler at i: 1296 login issue erp sid xd user getting logon balancing error xd advised the user to check if he is on the company network xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 1297 xd xd xd dear it xd xd we can not do chk for dn pls help to check it it urgent i: 1298 xd xd xd dear it team xd xd just complete gr for dn mm but there is not stock available on md please advise because would like to ship to customer pcs today xd xd xd best i: 1299 xd xd xd dear it team xd xd just complete gr for dn mm but there is not stock available on md please advise because would like to ship to customer pcs today xd xd xd best i: 1300 please provide access to following to mr akirtyethsyd user id vvsthryomaa aswyuysm mtbelengineering toolical production file aswyuysm mtbelengineering toolical production read write hostname mtbu ele file hostname mtbu ele read only printer wy i: 1301 xd job hr payroll na failed in job scheduler at i: 1302 xd job hr payroll na failed in job scheduler at i: 1303 xd job hr payroll na failed in job scheduler at i: 1304 dear team we got stock recall notice from plant plant mm pcs need to be returned to plant we just created sto for this request but only pc dn generated pls help to run out dn for the rest pc materials thx rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 1305 xd job job failed in job scheduler at i: 1306 name pfzxecbo ptygkvzl language browser microsoft internet explorer customer number telephone summary signed on to vpn but can not access hana or erp i: 1307 outlook not launching contact connected to the user system using teamviewer user confirmed he does not use ms crm tried to repair the ms office restarted the pc tried to reconfigure the outlook taking some time outlook ver user mentioned that he will call us back tomorrow with the ticket nunber please help the user i: 1308 please help to unlock erp and tell me the new password i: 1309 xd job job failed in job scheduler at i: 1310 xd xd xd it xd please image below have been trying to get into bobj all day and this is all that shows up xd xd xd xd i: 1311 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation jqxtbspr mpfdivlh hello rakthyesh rakthyesh hi davidthd i: 1312 need to change password and sync new password on all accounts i: 1313 unable to sign in to skype Translated 1313 : unable to sign in to skype i: 1314 password reset for ess user nothrdaj i: 1315 circuit outage company na usa usa plant bld qa carb access sw switch is down since am et on i: 1316 xd job job failed in job scheduler at i: 1317 warning alwaysupservice exe process count i: 1318 xd job job failed in job scheduler at i: 1319 xd job job failed in job scheduler at i: 1320 xd job pp eu tool netch ap failed in job scheduler at i: 1321 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 1322 xd job job failed in job scheduler at i: 1323 xd job snp heu regen failed in job scheduler at i: 1324 xd job job failed in job scheduler at i: 1325 xd job snp heu regen failed in job scheduler at i: 1326 xd job pp eu tool netch ap failed in job scheduler at i: 1327 xd job job failed in job scheduler at i: 1328 xd job job failed in job scheduler at i: 1329 what type of outage network xcircuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1330 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 1331 backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd xd job job failed in job scheduler at i: 1332 thaybd mhasttdd pm nwfodmhc exurcwkm rohthsit mhdyhtya fw inquiry purchase order hi kindly check for below mail is hope it be junk mail never meet any person as name shows of sender have tried opening attachment but unable to do that forwarding this mail for seeking it help to check whether its only junk mail or attachment opeyctrhbkm plvnuxmry cause issues like virus or our company database theft through link please check and confirm best i: 1333 inquiry on erp sid maintenance i: 1334 company ap chn apac company fpsf access sw xd company ap chn apac company pmw access sw xd company ap chn apac company psf access sw i: 1335 xd job bcv sid failed in job scheduler at i: 1336 xd job sid hoti failed in job scheduler at i: 1337 xd job sid hoti failed in job scheduler at i: 1338 xd job job failed in job scheduler at i: 1339 xd job job failed in job scheduler at i: 1340 xd job bwhrattr failed in job scheduler at i: 1341 xd job job failed in job scheduler at i: 1342 einlasten bei it germany da hierf bereits ein ersatz pc verbaut ist und ein neuer bestellt wurde Translated 1342 : Invite it Germany because a replacement pc is already installed and a new one has been ordered i: 1343 name ilypdtno mkdfetuq language browser microsoft internet explorer customer number telephone summary my laptop model latitude speakers are not working i: 1344 jobs are getting fail due to dbif rsql sql error issue Translated 1344 : jobs are getting fail due to dbif rsql sql error issue i: 1345 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1346 xd job bwsdslspln failed in job scheduler at i: 1347 xd job job failed in job scheduler at i: 1348 xd job job failed in job scheduler at i: 1349 xd job job failed in job scheduler at i: 1350 server lnbdm active directory located in philadelph ia is down since et on i: 1351 xd job bk hana sid erp dly dp failed in job scheduler at i: 1352 erp sid account locked i: 1353 xd xd xd hi xd xd please provide access pu file hostname departments pu press tool folder for following computers xd awywx xd awyl xd xd with best i: 1354 xd job sid filesys failed in job scheduler at i: 1355 xd job job failed in job scheduler at i: 1356 hi please reset the pass word as daypay for below user id user id purartnpn best i: 1357 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1358 xd job sid filesys failed in job scheduler at i: 1359 vogelfontein south africa sa company eu zaf vogelfontein access sw company com is down since pm et on xd interface down on gigabitethernet uplink to company eu zaf vogelfontein access sw on company eu zaf vogelfontein core sw company com i: 1360 password reset request Translated 1360 : password reset request i: 1361 unable to sync mails or calendars on mobile device Translated 1361 : unable to sync mails or calendars on mobile device i: 1362 ticket update on inplant i: 1363 unable to connect to network printer xd xd ticket update on inplant i: 1364 xd job job failed in job scheduler at i: 1365 xd xd xd hello team good afternoon xd xd my name is cuzhydjl fugwxdqh mexico queretaro xd xd unfortunate my password was expired but forgot update it now cannot enter at the company systems distributor tool crm xd xd today tried to change the password but the web site don give me access please can you said me what should do about this xd xd xd i: 1366 xd xd xd please check to see if printer rr on lrrsm is connected to the network have sent several documents but they are all sitting in queue the printer is turned on and says it is ready but nothing happens xd i: 1367 ticket update on inplant i: 1368 folder deleted in hostname folder needs to be restored globaleng beyond machining gtc Translated 1368 : folder deleted in hostname folder needs to be restored globaleng beyond machining gtc i: 1369 unable to log in to erp netweaver Translated 1369 : unable to log in to erp netweaver i: 1370 windows password reset i: 1371 ess password reset Translated 1371 : ess password reset i: 1372 hello please unlock my user account user name sekarfts i: 1373 windows account lockout i: 1374 please add to my company center accounts and on account accidently deleted the orders section please restore i: 1375 xd job snp heu regen failed in job scheduler at i: 1376 kryuisti turleythy usa site business manager Translated 1376 : kryuisti turleythy usa site business manager i: 1377 xd job snp heu regen failed in job scheduler at i: 1378 create telephony software id for the gso new hire sewilrxm cbikymvf i: 1379 xd xd xd hello xd need help saving an exe file had an analyst attempting to help today and he asked me to put in help desk ticket as there is problem with my pc the file he is attempting to save is attached xd xd i: 1380 vip user unable to join skype meeting from external vendor Translated 1380 : vip user unable to join skype meeting from external vendor i: 1381 install the analysis for office aao tool on the laptop i: 1382 error no sto possible with these combinations xd xd error when entering stock transfer for material from plant to plant xd xd i: 1383 help to format and reinstall the os on the laptop system is getting hang suddenly and slow running i: 1384 help to update the java ver on the internet explore i: 1385 unable to install the software asking for administrator access i: 1386 link where user needs access xd xd i: 1387 melisdfysa is not included on the rgrtrs email list she is not receiving emails coming from this address i: 1388 phone issue Translated 1388 : phone issue i: 1389 generirtc information i: 1390 account lockout i: 1391 when click on the download to pdf don get the pop up which allows me to download to pdf see attachment xd hi this is bthrob ducyua xd had don put crm dynamics com in his popup blocker and it worked don know if that the only thing he needs in the pop up blocker also had him put company collaboration platform com in his pop up blocker because that what had in mine please close this ticket if this is all that needs to be done i: 1392 blank call i: 1393 unable to connect to vpn Translated 1393 : unable to connect to vpn i: 1394 outlook issue unable to open new email and is going to not responding i: 1395 inc ticket update i: 1396 i lost connection to hqn which is personal drive shared between my desktop and laptop am able to access it on my desktop but no longer on my laptop tried to map to the location again but was unsuccessful i: 1397 outlook Translated 1397 : outlook i: 1398 name uicjxvng jcoshmbf language browser microsoft internet explorer customer number telephone summary need to change my default printer in erp for transactions co and co despite changing my default in su they are still printing to the wrong printer i: 1399 interface fastethernet cisco aircap on company na usa usa idf access sw company com is down since am et on i: 1400 unable to open sid and password issue in sid i: 1401 i am having difficulty obtaining data from bobj which must have this morning are there any issues being reported if not could someone please call me i: 1402 everything else works just erp sid is locked out i: 1403 unable to login to hub to check pay statements i: 1404 hostname windows disk space utilization alert utiliuytretion is free space available is under gb i: 1405 hi am having trouble getting erp sales info there are no figures in the fields when pull up report vkzwafuh tcjnuswg cmp sr application eng suthye kinght pm vkzwafuh tcjnuswg sntvfpbl vtokgley re erp sales info hi stuarthsyt you have to put an it ticket in to get this fixed i: 1406 unable to create skype meetings on behalf of tomashtgd mchectg i: 1407 interface is down on switch company eu deu germany emsw access sw since am et on i: 1408 issues viewing drawings please see the attached document with the error messages i: 1409 hello xd xd k ndigung for dxnzkcuh eqdgoxap effective has been approved xd xd click the link to view xd i: 1410 unable to see all the tabs under ess i: 1411 let talk video is not playing i: 1412 i have recently switched account from company com to company com now whilst m able to log into the hub with the new credentials when try to log into the ethics portal get this message welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp giuliasana byhdderni bernig i: 1413 xd xd xd hi it team xd xd here with enclosed the screen shot it says this copy of microsoft office professional is not activated please suggest what to be done for key entry for activation this popup comes automatically after login to ms outlook xd xd best i: 1414 user called to inform that she was kicked out of eu remote after minutes and now she is connected to na its working fine i: 1415 mathrv macyhtkey my engineering tool client will not open am getting an error message cannot continue the application is improperly formatheywted contact the application vendor for assistance have uninstalled and re installed several times i: 1416 need access to vpn computer name lcvl i: 1417 xd job job failed in job scheduler at i: 1418 error message trying to log into purchasing to order user id cuthyunniy have attached the email that shows the errors am receiving i: 1419 password reset request Translated 1419 : password reset request i: 1420 blocked out from expense report i: 1421 some confidential document was shared on the hub and everyone had access to it link mikhghytr this is an issue sent from my iphone begin forwarded message efdhrlwv aoxtugzr date at am edt aedwrpvo qbpafrsx aqritplu beuflorc itclukpe aimcfeko yjscozva lyjoeacv confidential information on the hub this was brought to my attention this morning by kpudhygb vnizrdeb if you search usa jobs on the hub this information is in the results field just thought you all might want to know open i: 1422 xd xd xd Translated 1422 : xd xd xd i: 1423 usa backup exec server rgtsm has filed raid hdd physical disk i: 1424 unable to open outlook and mobile device activation i: 1425 please reset password in sid for user id maihtyrhu i: 1426 dear sir one apprentice mr suniythulkuujmar nk is unable to view his salary statements due to user id and password fail pl help to recover the same old id vvkhyhums old password dhadwuz with i: 1427 telefon defekt Translated 1427 : phone defective i: 1428 invoicing error i: 1429 account locked in ad i: 1430 name ilypdtno mkdfetuq language browser microsoft internet explorer customer number telephone summary skype account login problem ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation dwfiykeo argtxmvcumar hello ilypdtno mkdfetuq hi am facing problem in signing in skype account dwfiykeo argtxmvcumar please provide me id and password for team viewer ilypdtno mkdfetuq id password dwfiykeo argtxmvcumar working now ilypdtno mkdfetuq yup i: 1431 the plm services is reporting down status on hostname i: 1432 monitor tauschen dhoalycb yopvwrjq i: 1433 password is not getting synchronized i: 1434 xd xd xd hello xd xd m company apac company location it many of our users didn receive the email for ethics training of fy but all of them have completed ethics training of fy i found when they log into ethics it will be displayed below hint xd xd xd xd xd please help us change the user ethics status back to correct setting i: 1435 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1436 install office ewel qidgvtwa qvbutayx i: 1437 quote save in erp sid broken for configured items with erp vc quoting engine it only generates an error message line item specify positive values only xd it seems to be change in erp sid yesterday between and pm est server time we noticed there is break in the material number sequence all mm younger than does not exists in sid neither in sid or sid i: 1438 setup new ws batuhan gueduel Translated 1438 : setup new ws batuhan gueduel i: 1439 setup new ws szockfpj izohlgcq Translated 1439 : setup new ws szockfpj izohlgcq i: 1440 setup new ws qdztknml hpcxnyrq Translated 1440 : setup new ws qdztknml hpcxnyrq i: 1441 hello though connected the reporting engineering tool is not shown xfdkwusj gyklresa sales manager earthworks european served area south please note our new telephone number and company address effective company infrastructure gmbh gesch ftsf hrer phvkowml azbtkqwx und naruedlk mpvhakdq i: 1442 i cannot launch add the lean event icon in collaboration platform request you to install microsoft version of it xd attached is the error for your reference i: 1443 xd xd xd dyqekzuc djhznybt sitzt neben mir er kann seinen account nicht mehr ffnen xd xd viele gr best Translated 1443 : xd xd xd dyqekzuc djhznybt sits next to me he can no longer open his account xd xd many gr best i: 1444 dear sir have got multiple problems with the laptop instant shaking of the screen mails before month cannot be seen unless refreshed slow in processing please do the needful and get me out of this proms i: 1445 please reset password to daypay i: 1446 xd xd xd hell xd next issue to bob doesn work on my account xd xd xd best i: 1447 account locked i: 1448 outlook freezes after crm update i: 1449 hallo seit einiger zeit werden in meinem outlook nicht mehr alle offenen email angezeigt ich muss immer erst auf das blau unterlegte hinweisfeld dr cken um weitere emails sehen zu nnen das geht aber nur wenn ich eine verbindung zum exchange server habe da das nicht immer gegeben ist bitte entsprechend einstellen dass ich alle emails immer lesen kann mit freundlichen gr en best Translated 1449 : hello for some time not all open emails are displayed in my outlook I always have to press the blue highlighted field to see more emails, but this is only possible if I have a connection to the exchange server because this is not always the case please set accordingly so that I can always read all emails, best regards i: 1450 the sound is horrible customer was very hard to understand asked him whether he has this issue too not on his side of the line he said i: 1451 engineering tool and erp not working Translated 1451 : engineering tool and erp not working i: 1452 need help in resetting password in password management tool Translated 1452 : need help in resetting password in password management tool i: 1453 hi it team kindly please assist as we need extra mother awb copy when closing all shipment for all vendor carriers for audit purpose i: 1454 observing below alerts in monitoring tool since am on et xd xd the www company com is reporting down status on ec compute amazonaws com please investigate xd the www company com is reporting down status on ec compute amazonaws com please investigate i: 1455 windows account locked i: 1456 dear saravthsyana we need standby laptop at hall for our day mcae course should have microsoft office adobe reader and vlc to run the show please make it ready today will collect it at morning am from your dept thanking you i: 1457 xd job job failed in job scheduler at i: 1458 hello erp working is very slow since yesterday morning but no action has been taken yet please raise sev ticket and arrange to resolve the issue immediately booking of orders and resolving customer queries are getting delayed due to this await your immediate feedback with i: 1459 hello pl provide business client authorization for checking downloading drawings employee id i: 1460 xd job job failed in job scheduler at i: 1461 xd job bkwin hostname inc failed in job scheduler at i: 1462 when creating sto to return complained goods from plant to plant we found the error message as below please help fixing this issue and advise back to us aerp i: 1463 xd xd xd hello it team xd xd we are not able to change the condition type for pos and in so xd please check and advise me xd xd i: 1464 xd job sid filesys failed in job scheduler at i: 1465 ticket update on inplant i: 1466 show me the text that is written on the email that has been quarantined below xd xd uisewznr ewtmkphs xd am xd nwfodmhc exurcwkm xd fw notification fwd needed material drawing xd xd hi team xd xd can you please show me the text that is written on the email that has been quarantined below i: 1467 xd xd xd could someone please call me have tried to call it and it keeps disconnecting xd xd xd i: 1468 unable to install engineering tool i: 1469 xd xd tjlgzkbp iervwjzg xd pm xd nwfodmhc exurcwkm xd ran fw freight charge for cesco inwarehouse tool xd xd ref sales doc xd xd order shipped ups ground pound shipping verified freight cost in kis is xd inwarehouse tool shows this is incorrect xd please advise why the system applied the much higher incorrect freight charge to their inwarehouse tool xd i: 1470 ticket update on ticket no Translated 1470 : ticket update on ticket no i: 1471 ticket update on ticket no Translated 1471 : ticket update on ticket no i: 1472 ticket update on inplant i: 1473 the i: 1474 nwqktzlx vnlqkgpb pm nwfodmhc exurcwkm phishing check fw e i: 1475 expense report not going to correct manager i: 1476 unable to sync passwords on all accounts i: 1477 password reset Translated 1477 : password reset i: 1478 cannot get prtqx to print on pc rqxw drivers won load i: 1479 kpm issue ie upgrade from to ie i: 1480 amssm volume disk is over space consumed space available g i: 1481 blank call gso loud noise i: 1482 please reset erp password of kambthryes exlbkpoj vrkoqaje to daypay i: 1483 could you please reset the password for the user olthyivectr for sid in erp he is company sales manager and his password is not working and he needs this access due the channel partner programdnty i: 1484 ticket update on inplant i: 1485 xszoedmc gmhkdsnw approvals in purchasing are not working properly please verify that the proper samaccountname in ad is in lowercase for rxqtvanc kthqwxvb tegdtyyp and ethd yhtheehey shyheehew i: 1486 outlook issue Translated 1486 : outlook issue i: 1487 mithyke tayjuoylor and arithel shfsako get this error when they try to open the add lean event button on their pcs i: 1488 outlook is very slow to respond m having to manually refresh to update xd xd i: 1489 vip please usa user access to dtheb mulhylen o drive full access name lpoebzsc grknswyo email telephone summary as you know dtheb mulhylen will be retiring from company on please usa me access to her drive full access i: 1490 xd xd xd hi all xd already approved this by email but don hear nothing about xd could you please verify the status its urgency in south amerirtca xd i: 1491 summary hello cannot download or print drawings from erp netweaver i: 1492 outlook not updating crashing intermittently i: 1493 hostname dev sid dataa the space has been used to xd hostname dev sid dataa the space has been used to xd i: 1494 ticket update on ticket no Translated 1494 : ticket update on ticket no i: 1495 sbgvrncj idfhtoqv pm przcxbml vnjdghui nwfodmhc exurcwkm jywvemun qngschtz re synchronization iphone with outlook hi thsgy yes this option is available gso please open ticket for this and approve many i: 1496 need access to assistant programdnty in nx i: 1497 unable to login to collaboration platform with email address and password i: 1498 i would like to have todthyd renytrner email forwarded to myself todthyd has accepted the vsp and will be assuming his duties i: 1499 windows account unlock i: 1500 trying to access hpqc xd xd error xd initialization has failed contract your system administrator for details see the loader log file xd failure details xd i: 1501 static issue on phone interaction id i: 1502 unable to connect to vpn Translated 1502 : unable to connect to vpn i: 1503 when try to access either one receive the message that this page can be displayed i: 1504 engineering tool not opening Translated 1504 : engineering tool not opening i: 1505 erp sid account unlock and password reset i: 1506 email activation on company provided device i: 1507 xd xd xd hi sir ma am xd xd refer below screenshot and help me out urgent xd xd xd i: 1508 office asking for license key i: 1509 workflow meiner gruppe r mich nicht sichtbar nicht im workcenter nr pe emea fu aerospace gruppe eingetragen Translated 1509 : workflow of my group r me not visible not entered in the work center no pe emea fu aerospace group i: 1510 engineering tool company and company not working i: 1511 unable to save docs on drive internet not working i: 1512 name wqxzleky uwjchqor language browser microsoft internet explorer customer number telephone summary cannot open files in collaboration platform get message that server isn responding location of files i: 1513 what type of outage network circuit power please specify what type of outage xd xd top cert site yes no na xd xd when did it start at am xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1514 hi ramdntyassthywamy any status on this i: 1515 msd crm popup when try to lunch outlook and outlook freezing i: 1516 name budighfl izbxvary browser microsoft internet explorer email telephone summary cannot edit i: 1517 ms crm emails not coming to outlook i: 1518 unable to login to ethics Translated 1518 : unable to login to ethics i: 1519 ticket update for inplant i: 1520 when try and initialize secure logon get message username or password incorrect logged on earlier this morning and it worked fine phone i: 1521 account locked out windows i: 1522 account locked i: 1523 account locked i: 1524 ticket query regarding ticket no i: 1525 unable to open outlook i: 1526 unable to login to skype i: 1527 the new iphone is not getting quaraintined i: 1528 having issues with outlook i: 1529 xd xd xd hello xd xd need accses to this report xd xd hostname departments pubreports fy file hostname departments pubreports fy xd vielen dank xd mit freundlichen gr en best i: 1530 vip outlook freezing Translated 1530 : vip outlook freezing i: 1531 account lockout i: 1532 change for user giuliasana byhdderni from company com to company com i: 1533 benelthyux team has bad phone connection of incomming calls lot of crackling and interruption i: 1534 probleme mit lan am rechner we wu essa wrcktgbd wzrgyunp Translated 1534 : problems with LAN on the computer we wu essa wrcktgbd wzrgyunp i: 1535 pdf dateien gehen nicht auf Translated 1535 : pdf files do not open i: 1536 xd xd xd hi it team xd xd kindly please assist as we unable to reprint inwarehouse tool in ecs system xd xd the system just show below attached only without any other detail xd xd xd xd xd hydstheud mddwwyleh xd operation supervisor xd company distribution services of asia pte ltd xd asia regional distribution centre xd changi south lane xd and building xd apac xd xd xd xd email i: 1537 i cannot find de fd gso de as well as de fd gso de in telephony software had access until atleast last week and possibly on too i: 1538 wireless mouse is missing from desk need new replaced wireless mouse i: 1539 unable to sync all the contact information from outlook to crm the address and notes fields are not synced to crm as there are more then contacts its not possible to put the company name for each customer manually contact number i: 1540 probleme mit portal user gogtyekthyto vzqomdgt jwoqbuml Translated 1540 : problems with portal user gogtyekthyto vzqomdgt jwoqbuml i: 1541 xd xd xd hi stefyty xd xd recent we have moved some changes to improve the performance xd can you please check if you are still getting the same issue xd xd i: 1542 xd job job failed in job scheduler at Translated 1542 : xd job job failed in job scheduler at i: 1543 hello xd xd we have again the problem with wrong too late automaticaly created stock stransfers the delivery date is too late xd need at plant on shows delivery date nov xd the parts are available at plant xd why dosen show the stock transfer the wrong delivery date xd xd we had the same problem with xd the issue needs to solved s p xd i: 1544 xd xd xd hi xd xd every quarter when the course has been added it does not appear in my current learning xd ll have to find out the course name from my team mates and check in the browse option xd could you please help to resolve this issue permanently xd xd best i: 1545 drucker em macht willk rlich flecken auf den ausdrucken kopien Translated 1545 : printer em makes random spots on the printed copies i: 1546 internal power supply on company eu deu germany b new office access sw is showing faulty xd xd xd company eu deu germany b new sh env all xd fan is ok xd temperature is ok xd power is faulty xd rps is not present xd i: 1547 hi please check my computer excel runs slowly qhyoiwls uynrhiva analyst planning and reporting company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 1547 : hi please check my computer excel runs slowly qhyoiwls uynrhiva analyst planning and reporting company shared services gmbh managing director phvkowml azbtkqwx naruedlk mpvhakdq this communication is intended solely for the use of the addressee and may contain information that is confidential or in accordance with applicable law the distribution or reproduction of this communication by persons other than the intended recipients is strictly prohibited if you have received this communication by mistake, please notify the sender and send this message company posts select the following link to view the disclaimer in an alternate language i: 1548 reset the password for xaykwtrf amlswjfr on erp produktion erp i: 1549 probleme mit lan youfzmgp xvysrnmb Translated 1549 : problem mit lan youfzmgp xvysrnmb i: 1550 name jvxtfhkg heptuizn language browser microsoft internet explorer customer number telephone summary no vpn connection my employee financial ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation dwfiykeo argtxmvcumar hello is it petrghada financial jvxtfhkg heptuizn no it pethrywr financial dwfiykeo argtxmvcumar ok jvxtfhkg heptuizn can you call him it urgent dwfiykeo argtxmvcumar ok will do it jvxtfhkg heptuizn i: 1551 hi well received i: 1552 wifi connection is intermittent getting frequently disconnected in india contact intranet is getting affected i: 1553 production order printer mp needs to be routed to mp xd xd all erp systems including drawings etc xd xd unable to find printer mp in ticketing tool ad and erp print tool xd rerouted priter with name prqmp did not work i: 1554 telephone summary network problem in india ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation dwfiykeo argtxmvcumar hello i: 1555 the i: 1556 hello there are punches out missing in erp for the employees that ended night shift today in the morning location germany germany machining please help i: 1557 i raised ticket to upgrade the system ramdnty can mine be upgrade to gb assign to sridthshar herytur i: 1558 hi please find below the credentials of guest access for annyhtie zhothu i: 1559 xd this link can not be open i: 1560 email from maryhtutina bauuyternfeyt to athyndy eartyp to review alternate route shipments from from us warehouse and discrepancy in postings inwarehouse tool has been cancelled please cancel gr as well no delivery note inwarehouse tool has been cancelled please cancel gr as well no delivery note inwarehouse tool has been cancelled please cancel gr as well no delivery note i: 1561 xd xd xd hello xd could you help me unlock my account xd can not get through xd i: 1562 keine daten bertragung von pc auf maschine glich werk plant workcenter ebm maschine pc eemwx programdntym winprodnc ansprechpartner wunthyder Translated 1562 : no data transfer from pc to machine like factory plans work center ebm machine pc eemwx programdntym winprodnc contact person wunthyder i: 1563 xd xd xd hello xd xd am unable to log in to bex website through ess portal please help xd xd i: 1564 xd xd xd hi xd is the month where we usually gets new ethics training course xd this time didn receive any ethics mail and also my current learning is empty but few of my colleagues got the mail to complete the course xd is it that this time don need to complete the course xd xd i: 1565 hello it xd xd production order cannot be released cer is active the business ta cannot be carried out xd please see attached screenshot xd xd please solve aerp shipment has to be done today xd xd i: 1566 mdghayi redytudy am zarlgjes nxjvzcta datacenter tiyhum kuyiomar re long distance service down hello dac there is an alarm on one of circuit id dhec at usa please can you open ticket with global telecom and co ordinate i: 1567 account locked in ad i: 1568 gnasmtvx cwxtsvkm pm nathyresh gayhtjula rwuqydvo anecdfps pradyhtueep yyufs re apt run hi nathyresh we request you to change the payment method as instead of for all the employee masters i: 1569 anti fmxcnwpu tcwrdqboinition is not updated from long time attached the screenshot i: 1570 xd job job failed in job scheduler at Translated 1570 : xd job job failed in job scheduler at i: 1571 xd xd xd hello xd xd in the recent past we are facing an issue of pricing condition not getting changed while booking the order xd xd though we override the pricing condition with znr the pricing condition remains as zlp only xd xd for example in oa the price was over written with znr condition with nett price of rs but still pricing condition is shown as zlp with standard discount xd xd what we have observed is whenever there are sub delivery items created due to non availability of stock this issue crops up that too after the challan is created it becomes too difficult to make any changes xd xd we request you to look into this immediately assign sev ticket and resolve the same xd xd await your feedback xd xd with i: 1572 xd xd xd it helpdesk xd xd please provide network connection for alicona edgemaster hone measuring equipment installed in pu xd xd this is necessary for software updating and also for shatryung relevant information with global team xd xd xd xd i: 1573 kryuisti turleythy pm nwfodmhc exurcwkm rakthyesh fw delivery note for bakyhrer huhuyghes please see string of emails on an issue that is happening with the transfer of shipping materials that used to be shipped from usa to now being shipped from usa and usa the printer is defaulting to the usa printer for delivery notes need to take the default out so it defaults to the shipping plant please let me know if you need more information do not know what is triggering it to print from usa printer having same issue in usa kryuisti turleythy usa site business manager kryuisti turleythy am ebpwcfla qoxvpbam gmnhjfbw farnwhji re delivery note for bakyhrer huhuyghes so the issue is that for some reason it is defaulting to usa printer for the delivery note what is your printer number and will send it to the printer for future orders before you save the delivery go to extra delivery output header and change the printer in communication method kryuisti turleythy usa site business manager ebpwcfla qoxvpbam am kryuisti turleythy re delivery note for bakyhrer huhuyghes item so line picking request delivery kryuisti turleythy am ebpwcfla qoxvpbam re delivery note for bakyhrer huhuyghes can you give me an order number kryuisti turleythy usa site business manager ebpwcfla qoxvpbam am kryuisti turleythy delivery note for bakyhrer huhuyghes hi kryuisti m trying to ship out an order for bakyhrer huhuyghes have picking request but am unable to print out delivery note is there any way you can help me with this kenny does not know i: 1574 dear sir pkj folder is missing in guest is hostname prakaythsh kujigalore senior manager engineering i: 1575 windows account frequently getting locked i: 1576 xd job job failed in job scheduler at i: 1577 xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd xd job bkwin hostname inc failed in job scheduler at i: 1578 no power on the laptop i: 1579 frequent account lockout on windows i: 1580 hostname volume label sys hostname ab is over space consumed space available g i: 1581 ticket update on ticket no Translated 1581 : ticket update on ticket no i: 1582 engineering tool not working Translated 1582 : engineering tool not working i: 1583 need help resetting one of my team members hub windows password i: 1584 summary hello need to reset one of my team members password his name is mzyejqvd xzbtcfar user id gilbrmuyt i: 1585 ticket update on ticket no Translated 1585 : ticket update on ticket no i: 1586 please give schoegdythu read write access to all files under hostname globalmfg amerirtcas manufacturing infrastructure mu is i: 1587 please give gethyoff schoemerujt schoegdythu the same access to server hostname as me mccoyimgs my phone is i: 1588 skype will for load phone same problem as last week i: 1589 ticket update on inplant i: 1590 unable to open emails in outlook i: 1591 access to hr tool denied i: 1592 no access to engineering tool see attachment i: 1593 vpn shut down when was clocking back in for lunch phone said had bee gone for minutes no warning i: 1594 outlook doesn start up on my tablet dell latitude i: 1595 it notices on the hub do not expire on the scheduled expiry date xd this notice should have expired on but is still actively displayed today xd this notice should ve expired on xd xd please review other notices as well xd xd i: 1596 calls are coming to me but rerouting and showing missed call telephony software ext i: 1597 i am able to access sid and sid however can access sid for some reason am getting an error that states account access not within validity date i: 1598 application erp mii on node hostname and hostname is down i: 1599 ms office word issue i: 1600 xd xd xd good afternoon xd would you please check this error in sid xd user revelj xd erp sid xd also need reset my password in sid xd this is the error xd best i: 1601 unable to login to collaboration platform Translated 1601 : unable to login to collaboration platform i: 1602 unable to access company password expired i: 1603 danyhuie deyhtwet plant manager keeps showing up on hr skype meetings Translated 1603 : danyhuie deyhtwet plant manager keeps showing up on hr skype meetings i: 1604 hallo zusammen es werden bei mir keine wifi verbindungen mehr angezeigt zuhause kann ich mich nicht mehr einw hlen bitte um hilfe danke mit freundlichen gr en best Translated 1604 : hello everyone there are no more wifi connections displayed for me at home i can no longer dial in please for help, thank you, best regards i: 1605 client pc is rebooting randomly and also having office software issues i: 1606 unable to see my previous pay slips i: 1607 wifi not working in pennsylvania xd xd access point not working work stoppage issue xd tried calling christgry twice reached warehouse tool mail left brief message xd dialed again not able to reach christgry i: 1608 i was fixing an order went to answer question on skype noticed that skype lost connection then noticed the vpn was shutting down didn see pop up note on vpn before the shut down i: 1609 knocked off vpn connection again wasn doing anything in particular just finished call i: 1610 xd xd xd good morning xd xd just sent request but found more data so received the attached email asking to look into the issue when look at the inwarehouse tool referenced in the email saw the sample line was charged at cost when it shouldn have been when go into the order step on the sample line go to document flow see completely different inwarehouse tool number than what is referenced the inwarehouse tool highlight below is for no cost as it should be xd xd when look at the document flow for the entire order see both inwarehouse tools xd xd please help me understand why the customer was inwarehouse toold twice for the sample and why the second inwarehouse tool is at cost when it should not be let me know what need to do on my end to help with this please xd xd for record the inwarehouse tool sent on is correct xd xd best i: 1611 xd xd xd good morning xd xd our customer ultramdntyet was inwarehouse toold for sample line that was entered as no charge sample in erp will be issuing credit to the customer for the amount charged but can you tell me why it was inwarehouse toold to begin with xd xd xd best i: 1612 while searching for quotes in erp vpn shut down didn see pop up note the first clue with problem was that erp shut down then saw that vpn connection had shut down i: 1613 unable to connect to companyssecure i: 1614 unable to login to skype Translated 1614 : unable to login to skype i: 1615 i have large zip file that want to download and add to folder on hostname intellectual property when unzip the file and try to save to hostname it says that there is not enough space lryturhyyth ryhunan chief counsel for ip i: 1616 need to find old emails on outlook i: 1617 ticket update on ticket no Translated 1617 : ticket update on ticket no i: 1618 mehr machen bitte dringend um hilfe meine mobile tel nr Translated 1618 : please do more urgently for help my mobile tel no i: 1619 xd xd xd do not have the benefits solver application on my single sign on portal can someone please assist me with getting this added i: 1620 outlook not working emails not opening crm issue i: 1621 locked out of his system i: 1622 erp sid password reset Translated 1622 : erp sid password reset i: 1623 xd xd xd all xd xd xd xd need to get log in created for our new sr production specialist tmunkaiv ockthiyj xd xd xd xd i: 1624 erp password reset sid Translated 1624 : erp password reset sid i: 1625 dw print job error Translated 1625 : dw print job error i: 1626 xd xd xd drucker defekt xd xd xd diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung xd company posts xd select the following link to view the disclaimer in an alternate language Translated 1626 : xd xd xd printer defective xd xd xd this communication is intended solely for use by the addressee and may contain information that is confidential or is excluded from disclosure under applicable law, the distribution or reproduction of this communication by people it is not the intended recipient is strictly prohibited if you have received this message by mistake then please notify the sender and send this message xd company posts xd select the following link to view the disclaimer in an alternate language i: 1627 unable to login to impact award xd tried password reset but was not able to remember security question i: 1628 need link to access outlook web mail i: 1629 account locked out i: 1630 performance problems with erp ieas and eu tool xd especially several timeout errors in eu tool in the search functions see attachment over the complete day i: 1631 i want to upload directly to purchasing pdf files that are saved in collaboration platform file can this be done was told to open ticket and have assigned to collaboration development group or skype i: 1632 ever since recent workstation move am unable to print to cl before the move printed to cl regularly since the move any attempt to print to cl prompts me to install the driver which do but the print job fails regardless i: 1633 when using migo goods receipt to receive product into plant batch information is required to process it has begun to happen more frequently over the past month the following rqfhiong zkwfqagbs are examples as to where this has occurred mm and i: 1634 need to create the aolhgbps pbxqtcek in active directory and assign groups miioperatordev and miioperatorqa let barrtyh know when the aolhgbps pbxqtcek is ready i: 1635 hostname volume dev sid ora on server hostname is over space consumed space available m i: 1636 calendar is not visible by manager i: 1637 probleme mit eu tool fehler beim auftrag abmelden ypladjeu wzfryxav Translated 1637 : Probleme mit their tool fehler beim auftrag abmelden ypladjeu wzfryxav i: 1638 xd xd xd dac gso xd xd basis on call details has been modified and the modified is placed in the below location in the collaboration platform please update your records accordingly xd xd xd xd i: 1639 is the finance app system still down xd we need this system to retrieve financial information for our quarterly closing i: 1640 laptop byclpwmv esafrtbh defekt Translated 1640 : laptop byclpwmv esafrtbh defective i: 1641 ess password reset Translated 1641 : ess password reset i: 1642 jayatramdntydba cvyg pm nwfodmhc exurcwkm bhayhtrathramdnty mamilujli amihtar lalthy fw ticket no new non employee gurublxkizmh nvodbrfluppasadabasavaraj vvkuthyrppg hello mr guruythupyhtyad is still not able to open the folder ie mtb project mgmt servicing please look into this subject and provide access best i: 1643 xd xd xd got an error message after minutes xd think that update has not been done correctly xd could you please check my computer xd xd best i: 1644 xd xd xd hallo zusammen xd xd der drucker em druckt nicht mehr ber die eingabe briefkopf xd bitte einstellungen korrigieren xd xd danke vorab xd xd mit freundlichen gr en best Translated 1644 : xd xd xd hello everyone xd xd the printer em no longer prints via the letterhead input xd please correct the settings xd xd thank you in advance xd xd best regards i: 1645 xd xd xd good morning xd am in trouble with my password xd changed the password and have the possibility to be connected to my mail and connection to various areas xd but still have my old password to start my computer xd if request to change my password using ctrl alt delete and change the password it is not working xd can you help i: 1646 software babiluntr does not work Translated 1646 : software babiluntr does not work i: 1647 hello my laptop display link is not working pls help message comes as could not recognize usb device vivthyek byuihand asst manager sales company india ltd india i: 1648 xd xd xd hello xd please note that my display link adaptor is not working kindly arrange replacement xd xd also need new data card sim card holder for my laptop xd xd xd best i: 1649 kindly copy the desktop files of prithivrtyaj user id vvyhtyumasp to guruythupyhtyad vvkuthyrppg local folder pc no awyw i: 1650 hello team ve got problem can call while working remote can you help i: 1651 outlook repeatedly asking for passwords i: 1652 probleme mit eu tool tmqfjard qzhgdoua Translated 1652 : problem mit eu tool tmqfjard qzhgdoua i: 1653 w rden sie bitte einen ordner im teams laufwerk rth anlegen name hr tr voller zugriff rtnzvplq erhmuncq rtgdcoun pngufmvq naruedlk mpvhakdq efodqiuh tpfnzkli rcwpvkyb exgjscql gabryltke sch tt vielen dank gabryltke sch tt human resources company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 1653 : Would you please create a folder in the teams drive rth name hr tr full access rtnzvplq erhmuncq rtgdcoun pngufmvq naruedlk mpvhakdq efodqiuh tpfnzkli rcwpvkyb exgjscql gabryltke sch tt many thanks to gabryltke fqs solely intended for use by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strict prohibited if you received this message due to a mistake please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 1654 xd job dir failed in job scheduler at i: 1655 xd xd xd dear sir xd xd my laptop currently has version of microsoft outlook xd kindly help me in getting the lauacyltoe hxgaycze version of the same xd xd with best i: 1656 latitude tab not detecting the telecom vendor broadband sim phone i: 1657 owner of the group bhty plc yhhm er is not available and has gave approval to add ploxzuts utvimnwo attaching the approval mail thvnfs anyhusppa pm gzjtweph mnslwfqv fw inc add my name to distribution lists fyi with best i: 1658 gso hotline not working new as well old numbers tried user are getting welcome message after that it is blank nothing can be heard i: 1659 reset the password for wcrbmgon kcudbnrw on mail i: 1660 maschinen pc ohne funktion bitte pr fen Translated 1660 : machine pc without function please check i: 1661 faxen von purchase orders direkt aus der po schl gt seit gestern r alle fehl xd faxing from the purchase orders directly from the po has been unsuccessful since yesterday i: 1662 rechner r erodiermaschine defekt youfzmgp xvysrnmb Translated 1662 : computer r erosion machine defective youfzmgp xvysrnmb i: 1663 hallo xd bitte nur das passwort r appricatehub com impact award zur cksetzen da auch die sicherheitsfrage wie hie die erste schule die sie besucht haben nicht korrekt beantwortet werden kann xd danke Translated 1663 : hello xd please only use the password r appricatehub com impact award because the security question like the first school you attended cannot be answered correctly xd thank you i: 1664 i have created new customer account in but it has problem it showns customer is markhtyed for deletion in the sales area selected please help handle it i: 1665 in outlook am not getting mails ic welcome our next available agent will be with you shortly interaction alerting agent govind hello ic website visitor has joined the conversation dwfiykeo argtxmvcumar hello please click on the link run it twice give me the id and password govind few days back created folder for pollaurid messages dwfiykeo argtxmvcumar ok please provide me access to your system govind its not working to me can you send me teamviewer dwfiykeo argtxmvcumar please try this link govind tinyurl tinyurl i: 1666 archiving tool has been installed on my pc but can view attachments in erp xd could you please help me xd xd i: 1667 unable to submit lean tracker i: 1668 xd job job failed in job scheduler at Translated 1668 : xd job job failed in job scheduler at i: 1669 maus defekt niptbwdq csenjruz Translated 1669 : mouse defect niptbwdq csenjruz i: 1670 probleme mit ws cad wsboedtj yvlswgxb Translated 1670 : problems with ws cad wsboedtj yvlswgxb i: 1671 briefly describe what you were trying to do and the issue you have encountered xd it is not possible to replace the original file as the following error messages occurs xd please refer to the attached picture xd please include screenshot of any error messages xd xd xd i: 1672 name tuzkadxv rxloutpn language browser microsoft internet explorer customer number telephone summary outlook on laptop won startup anymore errormessage new guard page for the stack cannot be created i: 1673 we re unable to create sto for mm per pr and mm per purrqs found the error message as per attached please help fixing this error and advise back to us aerp i: 1674 xd xd xd hallo liebe kollegen kolleginnen xd xd ich kann skype nicht starten kommt immer diese fehlermeldung xd xd dv zlettel mit freundlichen gr en best Translated 1674 : xd xd xd hello dear colleagues colleagues xd xd i can't start skype this error message always comes up xd xd dv note with best wishes i: 1675 accound locked in ad i: 1676 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 1677 amy li pm pradyhtueep yyufs mthyn jtyhnifer ayhtrvin yzhao crysyhtal xithya mathgie ztyhng alvrhn twhyang xamtgvnw usdekfzq re sales record prathryep we want to understand why the cost is high for mm in plant we select one example mm this mm is manufactured in plant ship to plant sales order relevant dn and intercompany billing billing in plant shipment cost in plant rmb we didn understand why the cost in plant is so high it is delivery on in plant sales cost in plant is rmb this is from margin report in plant why it is so high std cost in plant is rmb cost in plant is rmb based on lot size the qty is same as sales order i: 1678 xd xd xd yhmwxsqj ugnthxky xd am xd pradyhtueep yyufs fw credit limit revision xd xd pradtheyp xd xd please look into the revision request of company tooling and company credit limit of distributors xd xd this is one of the ia point and schedule closure was sep xd xd need your support to complete this activity so that we can respond to ia team for closure of this point xd xd best i: 1679 account is getting locked daily i: 1680 xd xd xd hello xd could you please help to unlock my erp sid account xd my user id is lilp xd xd i: 1681 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 1682 xd xd xd hello xd xd about the engineering tool xd the kpm project numbers are numerirtcal not in the right order anymore xd xd i: 1683 lan connection in training room not workig also need mini dp to vga adapter i: 1684 hostname disk space on label dat hostname is consumed available space is gb out of gb i: 1685 solid works issue when trying to give print solid work crashes xd xd see attachment xd ph xd ph xd i: 1686 xd xd xd hi xd request your support to configure settings for outlook mails on my new motorola moto plus handset xd xd i: 1687 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 1688 xd xd xd dear sir xd am not able to login in ethics portal to complete the course xd kindly do needful xd xd error screen shot attached for reference xd xd xd with best i: 1689 the i: 1690 xd job bwhrertran failed in job scheduler at i: 1691 impacts awards login issue i: 1692 mm pur req ko assign for user yeyhtung kimthy vvkuimtyu sid system xd xd alkuozfr bhqgdoiu xd pm xd sudghhahjkkarreddy rangini dbwkxalj cnhgysju xd suhtnhdyio psfshytd seocompanyxv syxewkji erp purchasing hr global datateam xd re ticket no erp additional access xd xd this role has been requested and have approved it numerous times in the past xd the role is approved xd xd this will still not resolve the issue at hand that issue will deal with the users attributes and possibly with hr org data xd please loop in the erp purchasing team and the global hr data team to get this completed xd hell xd doug englehart xd manager global sourcing systems xd xd xd xd xd company inc technology way usa pa www company com xd xd sudghhahjkkarreddy rangini xd am xd alkuozfr bhqgdoiu dbwkxalj cnhgysju xd suhtnhdyio psfshytd seocompanyxv syxewkji xd re ticket no erp additional access xd xd hi douglas xd xd below purchase role not assigned to users xd xd is it the issue can you please check and if needs to be assign below role to user seocompanyxv syxewkji vvkuimtyu sid system please provide your approval for the same xd xd role mm pur req ko xd xd xd i: 1693 xd xd xd dear it xd xd would you pls help to check i: 1694 xd job pp eu tool netch ap failed in job scheduler at i: 1695 error login on to the mii system xd verified user details employee and manager name xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 1696 hostname volume label dat hostname eafe on server hostname is over space consumed space available g i: 1697 amssm volume ef on server is over space consumed space available g i: 1698 unable to log in to collaboration platform i: 1699 xd job bkwin hostname inc failed in job scheduler at i: 1700 ticket update on inplant i: 1701 no power on the laptop i: 1702 i changed my password through password management toolpasswordmanager and when attempt to logon to erp my password is not recognized mthyike voyyhuek senior materials engineer i: 1703 outlook Translated 1703 : outlook i: 1704 unable to update passwords using password management tool link i: 1705 usa file server not responding appears to have crashed i: 1706 ticket update on inplant i: 1707 rolcgqhx ehndjmlv am communication help please let me know why cannot send email to this customer best i: 1708 ticket update on ticket no Translated 1708 : ticket update on ticket no i: 1709 please reset my pass word for sandop i: 1710 provide network access rights to fuydxemo fntmbpla that match tyyhtuler hiyhtull hello could you please provide network access rights to fuydxemo fntmbpla that match tyyhtuler hiyhtull access like who person name tyyhtuler hiyhtull hiyhllt manager name user id vnjwsadx iltywzjm fidleyhtjp best i: 1711 unable to take ethics course i: 1712 monitor is bright yellow and gtehdnyu once it warms up i: 1713 discount form issue infopath i: 1714 prtqi and malfunction i: 1715 need adobe professional or any software that has option to print to pdf xd computer name lacl i: 1716 user was unable to open reporting tool i: 1717 finance app system is down need someone in the database admin group to verify that the database hfmp on server hostname is up and running i: 1718 i recently received gb engineering laptop to use for work currently work in the tech center building where both wired docked connection and wifi company secure work fine have been in two meetings today in the corporate center building where cannot connect to any secure wifi network this has been frustrating since usually require my laptop with internet to some extent in any meeting please assist i: 1719 account locked out i: 1720 cyber security phish uacyltoe hxgaycze report i: 1721 when try to open documents am prompted to enter my email address then password and then the process repeats did change my password today but don know if that has anything to do with it i: 1722 i get mysterious java error on every boot of my laptop i: 1723 i need to have rckfthy grind added to my microsoft email i: 1724 cannot print on paper on new xerox prtqx i: 1725 password reset and access to reporting engineering tools i: 1726 during skype meetings have been unable to use skype calls get the message that my speaker is not working and it will not connect me to audio this happened yesterday for one call and then it worked later in the day today have not been able to join via skype my same headset works fine for telephone calls so do not believe it is my headset i: 1727 lhejbwkc xbmyvnqf xd pm xd nwfodmhc exurcwkm xd dan fw die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird xd importance high xd xd dear all xd xd please activate my new iphone it is company owned device xd xd i: 1728 byclpwmv esafrtbh pm nwfodmhc exurcwkm geoyhtrge wuryhtudack trurthyuft wg ticket r drucker hello help team pls enter ticket regarding defect scanner printer vh plant manager controlling local it is already working on that with external supplier just to make sure all work is tracked thx marfhtyio mit freundlichen gr en best i: 1729 ticket update on ticket no Translated 1729 : ticket update on ticket no i: 1730 xd xd xd it been down for long distance most of the day xd xd justrgun xd xd i: 1731 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar rohit request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name ncoileu last name boeyhthm consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 1732 ftnijxup sbltduco am jmxrabzy dpyvjcxr nwfodmhc exurcwkm rakthyesh re finished start of sandop process help desk please check johthryu account in supply chain software i: 1733 i am signed in to both telephony software and crm am using soft phone and when the phone rings select pick up in crm to answer the call and no one can hear me telephony software extension number system name lfml call back number i: 1734 monitoring tool is has detected an event in the windows event log with id on host hostname xd monitoring tool is has detected an event in the windows event log with id on host hostname i: 1735 phone issue Translated 1735 : phone issue i: 1736 windows password reset i: 1737 when try to put in vacation request in hr tool the requests do not show on the calendar need to cancel some dates but they don show up for me to cancel them my supervisor cannot see my requests either i: 1738 summary since outlook crashed yesterday the speakers on device do not work last week bios upgrade was run to get speakers working again i: 1739 outlook issue crashing and not responding i: 1740 helped user with crm site and xd also helped user with vendor number i: 1741 ticket update on ticket no Translated 1741 : ticket update on ticket no i: 1742 xd xd xd hello xd xd where do find the password management tool password manager xd xd i: 1743 vip windows account unlock i: 1744 unable to reply to emails i: 1745 hello team my outlook is unable to connect to mailserver this happened just after renewed my passwords over password management tool password manager upon an email notification do not have any problems in connecting emails over office web or in skype business could you please take look user gokcerthy computer aisl i: 1746 g nderen gacfhedw iqustfzh nderildi ekim sal kime nwfodmhc exurcwkm konu outlook is unable to connect hello team my outlook is unable to connect to mailserver this happened just after renewed my passwords over password management tool password manager upon an email notification do not have any problems in connecting emails over office web or in skype business could you please take look user gokcerthy computer aisl i: 1747 password management tool password manager queries and password reset Translated 1747 : password management tool password manager queries and password reset i: 1748 white ben eva li stefyty parkeyhrt patience rob re company intepmov imjukbqhing plan hi eva can you work with your local it team to determine your desktop ip address and provide it to dyhtuiel and stefyty hi dyhtuiel stefyty eva is miowvyrs qkspyrdm located in the apac office please check that the routing is in place from her network to connect over the vpn to hr tool to i: 1749 unable to open up emails Translated 1749 : unable to open up emails i: 1750 unable to make outbound calls from usa using siemens hiapth i: 1751 hello am delegate for finance vip email am set up to send emails on behalf of finance vip but when the recipient receives the mail it says lpoebzsc grknswyo on behalf offinance vip what want is for it to just say jk name like it had been sent from him dtheb mulhylen and othybin graceuyt both have their emails set up that way i: 1752 outlook freezes i: 1753 asking me to download new browser to continue i: 1754 johthryu erp inbox is not updating since i: 1755 getting virus prompt from sep xd xd Translated 1755 : getting virus prompt from sep xd xd i: 1756 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1757 handscanner an pc evhw bei funktioniert nach tausch immer noch nicht bitte pr fen und bei bedarf nochmals tauschen Translated 1757 : hand scanner on pc evhw if it still does not work after replacement, please check and replace again if necessary i: 1758 xd xd xd hello support team xd xd need visio on my pc xd xd can you please install it xd xd software request approval attached below xd xd best i: 1759 setup we ewewx lxfnwyuv bqmjyprz Translated 1759 : setup we ewewx lxfnwyuv bqmjyprz i: 1760 setup we ewew lxfnwyuv bqmjyprz Translated 1760 : setup we ewew lxfnwyuv bqmjyprz i: 1761 momitor defekt niptbwdq csenjruz Translated 1761 : momitor defect niptbwdq csenjruz i: 1762 hip ersatz festplatte erstellen Translated 1762 : create hip replacement hard drive i: 1763 xd xd xd hallo xd xd bitte im eu tool unter infos einen neuen pfad anlegen xd xd xd xd unter impact award ein neues verzeichnis anlegen xd als bezeichnung bitte erp pm verwenden xd xd die dateien zum visualisieren befinden sich auf xd handb cher erp pm file hostname info handb cher erp pm xd xd xd reason xd pm qavdrpfu ylfwnbkr xd have created some traiyctrhbkm plvnuxmrterial for our shopflor workers for our new erp pm system for creating breakdown notifications xd so they will have chance to look into this traiyctrhbkm plvnuxmrterial when they want to do any notification fjaqbgnld yukdzwxs people xd because we still started with erp pm and our old system was part of eu tool xd called azm xd xd xd xd xd xd xd mit freundlichen gr en best i: 1764 help desk xd please check stefyty account in supply chain software xd xd i: 1765 xd xd xd hallo xd xd leider repliziert mein laptop im firmennetz nur rudiment im iphone bekomme ich die neusten emails das problem haben auch andere kollegen hier am standort xd xd xd xd xd xd mit freundlichen gr en best Translated 1765 : xd xd xd hello xd xd unfortunately my laptop in the company network only replicates rudiment on the iphone i get the latest emails the problem also other colleagues here at the xd xd xd xd xd xd with best regards i: 1766 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1767 hostname oracle finance app financial management web tier epmsystem service monitor down i: 1768 unable to launch citrix error message atttached Translated 1768 : unable to launch citrix error message atttached i: 1769 xd job job failed in job scheduler at i: 1770 dear all lvdyrqfc pfnmjsok personnel userid webyutelc lost deleted by mistake his open opportunities week ago can someone please check if these open opportunities can be restored i: 1771 barcode scanner defekt paternoster Translated 1771 : barcode scanner defective paternoster i: 1772 xd job job failed in job scheduler at i: 1773 dear admin request to reset erp password for the following user othyoiz i: 1774 help desk xd please check jeffrghryey account in supply chain software xd xd i: 1775 am rollomatic alfa set messger m ssen die einstellungen laut anleitung berpr ft werden Translated 1775 : The settings on the rollomatic alfa set measuring device must be checked according to the instructions i: 1776 bitte passwort r benutzer franhtyuj zur cksetzten wurde mehrfach falsch eingegeben xd danke Translated 1776 : please reset the password for the user franhtyuj was entered incorrectly several times xd thanks i: 1777 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1778 po number has been posted gr with incorrect gl account i: 1779 please check brook account in supply chain software i: 1780 erp schulung raum kann beamer nicht verbinden Translated 1780 : erp training room cannot connect projectors i: 1781 hi just tried to change my password via passwordmanager and locked me totally would you please be so kind and unlock me again so that can change it again mit freundlichen gr en agjzikpf nhfrbxek analyst logistics company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 1781 : hi just tried to change my password via passwordmanager and locked me totally would you please be so kind and unlock me again so that can change it again best regards agjzikpf nhfrbxek analyst logistics company shared services gmbh managing director phvkowml azbtkqwx naruedlk mpvhakdq this message is solely intended for use by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients Strictly Prohibited If you received this message by mistake, please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 1782 interface and are down on switch company eu deu ds germany edksw core sw since et on i: 1783 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1784 monitor defekt xd fuer hr tjzohmve wusgaozx xd xd neu bau stock Translated 1784 : monitor defective xd for hr tjzohmve wusgaozx xd xd new building stock i: 1785 erp gui login profile missing erp cannot login Translated 1785 : erp gui login profile missing erp cannot login i: 1786 device does not properly boot up windows system hangs before user login i: 1787 dear team we got stock recall noticplant for mm and should return pc materials to plant then created sto base on this recall dn pc was just created against the sto pls help to run out the dn of rest pc thx lot rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 1788 xd job job failed in job scheduler at i: 1789 please provide details of the issue xd xd m not able to view the attachment of customer xd yesterday received the hourglass only loging on and off didn solve the issue xd today the following message is displaying on the bottom xd javascript void i: 1790 xd job job failed in job scheduler at Translated 1790 : xd job job failed in job scheduler at i: 1791 xd job job failed in job scheduler at Translated 1791 : xd job job failed in job scheduler at i: 1792 xd xd xd dear all xd xd this is jay from plant xd plant receives airwaybill label from erp whenever we do pgi for export sometimes zebra printer doesn print the label so xd plant cancel the shipment and re do pgi xd xd is there another way for us to have the label not to cancel pgi and re do pgi xd xd i: 1793 login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 1794 xd job bkwin hostname inc failed in job scheduler at i: 1795 xd job pp eu tool netch keheu failed in job scheduler at i: 1796 wifi i: 1797 xd job sid filesys failed in job scheduler at i: 1798 skype outlook skype online meeting Translated 1798 : skype outlook skype online meeting i: 1799 outlook dizquolf hlykecxa ap accountant i: 1800 we posed po in miro and erp issued no however this voucher no does not exist in fb as attachment shown and in men ir cannot be found after making gr and in fbln the transaction still does not exist only in mir no is shown as the posed inwarehouse tool xd please tell us resolve the problem i: 1801 carrier orders not processing labels through shipping system in erp getting the following error message server is unable to process the request i: 1802 please assign this ticket to keyhtyvin toriaytun the glovia database is down i: 1803 this is in reference to so xd xd this all started with this email called company and spoke with wkpnlvts oumeaxcz and has confirmed that the items are in route from germany and are scheduled to get to them on and turn around and ship to us the new delivery date is for she was not sure why the date of is on the company center xd xd after investigating this and looking at screen shots provided by heidi this is what is happening manufacturing updated the information in the system and if csr ran an apo availability check on the art they could see the updated date of but it did not update the delivery date in the order went into the order and manually ran apo stock update on the order and it updated the delivery date to if the customer were to look at it now through company center they would see delivery date of xd xd when manufacturing updates the delivery time for an order it has to update on all open orders for that item in this case it did not we are loosing orders because of this issue as it has been going on for some time now but this is the first time have documented screen shots of what was going on csrs can not run apo every time date is changed in erp this has to be automated anything less is unacceptable xd i: 1804 xd xd xd this item was manufactured at plant and received into plant it was received into stock at plant on xd xd at that point would have expected the system to have automatically moved the product to plant where there is safety stock and forecast xd xd can you please advise if the process is working if it is working can you please advise why this item did not move xd xd xd dqplrwoy cutpwjie xd supply chain planner xd strategic sourcing and supply planning xd xd xd company inc technology way usa pa www company com xd xd xd xd xd xd xd i: 1805 contact sitmzuje ckrpsabm unable to save download dxf files when using the business client screenshot attached error message persists when attempting to download the dxf engineering drawing tool files from the business client web based format from path business client product engineering drawing search display document select document g nxd dxf copy to select directory users mazurjw documents my drawings result certificate does not exist i: 1806 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar amar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name theydbar last name brrgtyanthet perry consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 1807 unable to take screenshot i: 1808 only need password rest for the phone in my office i: 1809 unable to open website i: 1810 bit printer driver installation on new laptop i: 1811 i just received call from our sales person badgknqs xwelumfz in st louis mo stating that he tried to call in on the toll free number time but received message that the number was not in service checked the number he was dialing and he is dialing the correct number urgent i: 1812 password reset from password management tool i: 1813 erp sid password reset Translated 1813 : erp sid password reset i: 1814 issues with outlook not responding i: 1815 erp sid password reset Translated 1815 : erp sid password reset i: 1816 outlook not working correctly and freezing i: 1817 we ensured ipv was unchecked and that network connection was good it was limited initially but went to normal once denghyrt disconnected from vpn xd checked that outlook works okay in safe mode reduced offline folder settings to months from months xd uninstalled and reinstalled crm dynamics repair did not help xd denghyrt will im me if he has any issues with tasks or reminders in crm i: 1818 ess password reset Translated 1818 : ess password reset i: 1819 issue with outlook and vpn i: 1820 ich kann meinen vpn nicht ffnen Translated 1820 : i can't open my vpn i: 1821 engineering tool is downloading reports in kpr format and engineering tool crashes on reinstalling engineering tool it is crashing too xd i: 1822 password reset from password management tool i: 1823 i was knocked off vpn at about now am unable to log back in via na remote i: 1824 name esqcuwbg gdcuhzqw language browser microsoft internet explorer customer number telephone summary me time will not populate the names of my employees i: 1825 the i: 1826 xd job job failed in job scheduler at i: 1827 i noticed that my erp front end programdnty seems to be gone for some reason will need this returned immediately to my desktop with all prior levels of access set for it i: 1828 unable to access erp user contacted for an issue where she unable to access erp after her id got changed last checked in password management tool and it not showing any erp accounts under her name only shows active directory and servers please help check with the user at the earliest on this as she needs to access erp sid erp production old user id coppthsy new user id humthyphk i: 1829 unable to share calendar Translated 1829 : unable to share calendar i: 1830 outlook not launching i: 1831 name lzapwbnc yrjekzqv language browser microsoft internet explorer customer number telephone summary hi after an automatci upgrade cannot print on zebra printer anymore the error message is runtime error type mismatch can you give me support i: 1832 blank call loud noise gso Translated 1832 : blank call loud noise gso i: 1833 name bgflmyar xgufkidq language browser microsoft internet explorer customer number telephone summary is there way to access hr tool time from mobile device i: 1834 unable to open website i: 1835 i have several company center accounts that are not pulling information from erp checked to make sure they were created correctly and they are this is effecting channel partners ability to use company center i: 1836 vpn vpn is working Translated 1836 : vpn vpn is working i: 1837 erp sid locked out i: 1838 erp sid and erp sid password reset Translated 1838 : erp sid and erp sid password reset i: 1839 ethics flash player issue i: 1840 the i: 1841 the i: 1842 please to extend the user validation to development environment sid still are expired user vvamrtryot i: 1843 vpn is not working Translated 1843 : vpn is not working i: 1844 xd xd xd plant servers hostname and lrrsm are not connecting xd xd can see gtehdnyu lights on the front of the server but they are not blinking xd xd i: 1845 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp all usa zebra label printers sm models xd xd detailed description of the problem the zebra print software will not connect to erp see attached photos for errors received xd xd type of documents not printing product labels xd xd what system or application being used at time of the problem zebra print xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed printer is able to print windows uacyltoe hxgaycze pages so it does not appear to be pc network printer issue xd xd if erp system which system sid xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily no xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 1846 reset the password for kslhobgj cyhvefna on other interaction desktop i: 1847 o drive missing Translated 1847 : o drive missing i: 1848 dw unlock in erp sid Translated 1848 : dw unlock in erp sid i: 1849 xd xd xd this is the error information xd xd if that doesn help contact your support team and include these technical details xd correlation id bdacd beb adddf xd date and time am xd url sitepages home aspx xd user issue type user not in directory xd xd xd best i: 1850 s Translated 1850 : s i: 1851 ipglathybel qlhmawgi sgwipoxn password reset in erp i: 1852 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1853 i am unable to send from our email had no problems up to last week see screenshot of error i: 1854 unable to launch outlook i: 1855 hello when try to print on zebra this error message appair xd please see the screen shot message xd it seems that the problem is the erp connection xd xd i: 1856 erp sid account unlock and password reset i: 1857 probleme mit laser pfjwinbg ljtzbdqg Translated 1857 : problems with laser pfjwinbg ljtzbdqg i: 1858 probleme mit lasplant pfjwinbg ljtzbdqg Translated 1858 : problems with lasplant pfjwinbg ljtzbdqg i: 1859 xd xd xd dear it team xd xd archiving tool archive does not open any inwarehouse tools xd xd please repair i: 1860 getting this error when trying to print labels using zebra printers in shipping thoyhts brthyrtiv am dpuifqeo eglwsfkn re imp yes because that is erp error message i: 1861 user vvbthryhn is blocked for citrix access please unlock i: 1862 r cksetzung der passw rter r accounts vvwtyeidt vvftgors vvnergtubj vvthygschj Translated 1862 : r cksetzung der passw rter r accounts vvwtyeidt vvftgors vvnergtubj vvthygschj i: 1863 lean event can not be added i: 1864 my supply chain software scm software password has locked please reset so can log in dthyan matheywtyuews sales manager gl i: 1865 iom sensor chassis and internal power supply has reporting some non critical alerts could you please investigate and advise i: 1866 label printer not working error connection to erp could not be made xd xd ip xd xd xd xd xd xd xd error in attachment xd labels are not getting printed i: 1867 label printer not working error connection to erp could not be made xd printer name prtoplant xd xd multiple location are affected usa germany also having same issues i: 1868 i created engineering tool and filled up all datas but when click to submit button it is given error message please see message detail below i: 1869 user kubyhtuaa issue when working with erp crm user encounters instant timeouts please resolve or advise how to resolve i: 1870 label printer not working error connection to erp could not be made xd printer name prtor prtor xd xd labels are not getting printed i: 1871 set abc code erp under me in crm in erp is ok Translated 1871 : set abc code erp under me in crm in erp is ok i: 1872 please help me reset my password login is dabhrujirthy password was ryljar Translated 1872 : please help me reset my password login is dabhrujirthy password was ryljar i: 1873 xd job job failed in job scheduler at Translated 1873 : xd job job failed in job scheduler at i: 1874 account locked in ad i: 1875 wenn ich outlook aufrufe will der rechner gleichzeitig sich auch noch mit collaboration platform verbinden das lautet mit ihrem gesch fts oder schulkonto anmelden wenn ich meine emailadresse und mein password eingebe passiert aber nichts das st ndige einblenden ist sehr st rend bitte um abhilfe meine telefonnummer ist Translated 1875 : when I call outlook the computer also wants to connect to the collaboration platform at the same time, that is, log in with your business or school account when I enter my email address and password but nothing happens i: 1876 i cannot access the dob report was able to access this before need this report for the global busienss i: 1877 xd xd xd hello support team xd xd the printer ag needs printing ink xd xd where do get paper for the printer xd xd ask you to support here xd xd i: 1878 not able to connect to vpn i: 1879 hi it team kindly please assist as we unable to close break bulk sto in ecs system due to nothing in the system we have completely bulk for plant and plant sto in ecs system but nothing shown below attached your reference hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd asia regional distribution centre email i: 1880 abholen alte it equipment cad ws nd monitor umykjweg jpwrfuhk i: 1881 good day all please assist me in resetting my erp password user name krugew kind i: 1882 please find the attachment for the issue detail i: 1883 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1884 i trying to connect to eu remote but only get xd xd your session is finished xd logged out successfully xd i: 1885 hi gso xd tried thrgxqsuojr xwbesorfs to renew my password from erp with password management tool password manager it doesnt work xd xd error message xd error password change failed old password is invalidated please try again using different password failed to perform operation reset xd xd please reset my password xd xd i: 1886 install hardcopy ewew rhaycqjg arcgonvy Translated 1886 : install hardcopy ewew rhaycqjg arcgonvy i: 1887 i using the us vpn as the european one is down fjaqbgnld yukdzwxs can reach the hana box can connect to all other machines on the network have attached the reporting tool failure and tracert to the box have rebooted my machine and broadband i: 1888 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1889 probleme mit we die druckerwarteschlange wird zurzeit nicht ausgef hrt fdyietau dvsyxwbu Translated 1889 : problems with we the printer queue is not currently running fdyietau dvsyxwbu i: 1890 paper jam for insert printer Translated 1890 : paper jam for insert printer i: 1891 different problems please reinstall eagw with current fy company image upgrade ramdnty to gb i: 1892 need to enter and edit the link ef fdd cd da andfile apac approved exception list xlsxandaction default i: 1893 name vithrkas language browser microsoft internet explorer customer number telephone summary vpn not getting log in i: 1894 i cant have preview of pictures in explorer just see icons i: 1895 host hostname is disconnected in vsphere i: 1896 xd xd xd hi xd cannot access the vpn when click on open new session nothing happens xd i: 1897 sir my user id is bathylardb and given password is india but im unable to login to the erp request you to reset the password and send the same i: 1898 xd job job failed in job scheduler at i: 1899 india awyl is down since et on i: 1900 add user ashtusis pyhuule phufsav to active directory eagcutview remove user yhru manyhsu ayujdm from this ad i: 1901 germany germany gigabitethernet on germany edksw stack sw went down at am et i: 1902 gso please kindly reset password for zhhtyangq with erp sid i: 1903 reeset password Translated 1903 : reeset password i: 1904 skype wird nicht vom browser geladen auch nicht nach langer wartezeit Translated 1904 : skype is not loaded by the browser even after a long wait i: 1905 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 1906 xd xd xd gso xd xd please unlock the erp sid for linz i: 1907 xd xd xd dear it team xd xd my skype not work xd xd best i: 1908 hi helpdesk when trying to access vpn following message appears am unable to get in by clicking click here pls help because am doing ppm reviews from outside company office with my team today and need access to data from company folders thx micheyi gyhus vice president company inc www company com i: 1909 phone email germany can connect to the local network using the vpn connection it worked until morning we got just the screen your logoff was successfully called the phone support he fixed this but now after logon we can reach erp and the servers in our plant ping failed please fix this our external employees can not work i: 1910 xd job job failed in job scheduler at i: 1911 cant connect to the network mobile hot spot also not connecting telecom vendor hecked the network connection settings restarted the system tried to connect getting limited ph i: 1912 die systeme eu tool chargenverwaltung pdv laufen absolut schlecht xd man kann mit ihnen so nicht wirklich arbeiten xd xd Translated 1912 : the eu tool batch management pdv systems run absolutely poorly xd you can't really work with them like this xd xd i: 1913 c users virakv ping hostname company company com xd xd pinging hostname company company com with bytes of data xd request timed out xd request timed out xd request timed out xd request timed out xd xd ping statistics for xd packets sent received lost loss i: 1914 unable to generate sto as per purrqs please find the error message as attached file please help fixing this issue aerp xd i: 1915 xd job job failed in job scheduler at Translated 1915 : xd job job failed in job scheduler at i: 1916 xd xd xd hello xd xd my vpn page is not responding unable to connect xd xd i: 1917 xd xd xd hi it team xd xd xd since yesterday my laptop was unable to start outlook mail could only use web mail now xd xd any assistance to resolve this is appreciated xd xd xd best i: 1918 xd job hr payroll na failed in job scheduler at i: 1919 xd job hr payroll na failed in job scheduler at i: 1920 xd job hr payroll na failed in job scheduler at i: 1921 laptop cannot connect companysecure wifi network i: 1922 c users virakv ping hostname xd xd pinging hostname company company com with bytes of data xd request timed out xd request timed out xd request timed out xd request timed out xd xd ping statistics for xd packets sent received lost loss xd i: 1923 name wanayht language browser microsoft internet explorer customer number telephone summary please help for vpn connection try to contacted but can t i: 1924 name stgyott gdhdyrham language browser microsoft internet explorer customer number telephone sartlgeo lhqksbd summary hi have dell latitude which use from home office and remotely laptop will not stay connected to the internet can you assist please i: 1925 please provide details of the issue xd outlook i: 1926 xd xd xd gso xd xd please reset password for hanx i: 1927 xd xd xd hi xd xd m trying to install hpqc for travel tool uacyltoe hxgayczeing with my windows user name and password but have the following error message xd xd xd best i: 1928 am lzspyjki smdbqnef ok am lzspyjki smdbqnef bring up notepad her name is oyunatye am Translated 1928 : am lzspyjki smdbqnef ok am lzspyjki smdbqnef bring up notepad her name is oyunatye am i: 1929 xd job job failed in job scheduler at i: 1930 xd job job failed in job scheduler at Translated 1930 : xd job job failed in job scheduler at i: 1931 node hostname located at usa is down since am xd xd node down due to the power flap xd check with the site admin during the business hours on i: 1932 hostname application plm dsc file on node hostname is unreachable i: 1933 hostname application plm conversion server on node hostname is warning action i: 1934 xd job job failed in job scheduler at i: 1935 xd xd xd hi xd xd request you to reset my erp password xd xd Translated 1935 : xd xd xd hi xd xd request you to reset my erp password xd xd i: 1936 xd xd xd please unlock account xd xd i: 1937 xd job job failed in job scheduler at i: 1938 xd job snp heu regen failed in job scheduler at i: 1939 the tax interface webpage is reporting down status on hostname xd application tax interface proc counts on node hostname is critical xd application tax interface prod app server on node hostname is dow i: 1940 xd job job failed in job scheduler at i: 1941 xd job job failed in job scheduler at i: 1942 name ilhcgoqf xlibynvc email telephone summary hello have problems with my engineering tools it is impossible to create new customer i: 1943 xd job job failed in job scheduler at i: 1944 the last worklist was created on at am i: 1945 xd job job failed in job scheduler at i: 1946 xd job job failed in job scheduler at i: 1947 xd job pp eu tool netch keheu failed in job scheduler at i: 1948 xd job job failed in job scheduler at Translated 1948 : xd job job failed in job scheduler at i: 1949 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 1950 xd job pp eu tool netch ap failed in job scheduler at i: 1951 xd job pp eu tool netch ap failed in job scheduler at i: 1952 xd pm unable to allocate processing resources error all backup proxies are offline or outdated xd xd xd job job failed in job scheduler at i: 1953 hello the issue contacts that have been designated to track in crm are not showing up in crm and m not sure why see the screen shots below biyhll kthyarg sales engineer wc team i: 1954 rakthyesh ramdntythanjesh am kzishqfu bmdawzoi tiyhum kuyiomar re request to reset microsoft online services password for dear dene accounts status is unlocked for user please note the following url using which you can unlock all accounts and setup one single password for access across all systems from any other pc connected to the company network for step by step guide on how to use this site click on the following link let me know if you need more information or assistance on this matheywter kind i: 1955 password reset request Translated 1955 : password reset request i: 1956 email screen shot of error duane said remember seeing similar error during uacyltoe hxgayczeing that we resolved which had to do with the customer master think it had to do with uacyltoe hxgaycze request and using the actual customer rather than the requester as the tandd customer xd xd this npr is for quote and not tandd order xd i: 1957 xd job bkbackup tool powder prod full failed in job scheduler at i: 1958 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd rakthyesh ramdntythanjesh xd hi ramdntythanjesh xd ramdntythanjesh xd hi rakthyesh xd rakthyesh ramdntythanjesh xd i: 1959 hostname volume is over space consumed space available g i: 1960 xd job job failed in job scheduler at Translated 1960 : xd job job failed in job scheduler at i: 1961 xd xd xd hello xd xd during the ongoing internal audit conducted by eandy it was observed that in list of inwarehouse tools attached tax rate was different from the one updated in the product hierarchy xd xd request you to look into the reason for few samples and identify reasons why incorrect tax rate was captured in inwarehouse tool tax and not as per product hierarchy xd xd also let us know whether it was system error xd xd xd xd i: 1962 xd job job failed in job scheduler at i: 1963 ftnijxup sbltduco xd pm xd nwfodmhc exurcwkm xd wg die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird xd xd help desk xd please take my new iphone out of quarantine xd xd Translated 1963 : ftnijxup sbltduco xd pm xd nwfodmhc exurcwkm xd wg the synchronization with exchange activesync is temporarily blocked on your ger until access is granted by the administrator xd xd help desk xd please take my new iphone out of quarantine xd xd i: 1964 xd xd xd Translated 1964 : xd xd xd i: 1965 unable to see emails which are older than days i: 1966 erp sid password reset Translated 1966 : erp sid password reset i: 1967 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am at et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1968 blank call gso loud noise i: 1969 dear sir request you to depute telephone repair person to pu shop floor shop floor connection as it not working segvwfyn mogtrevn assistant manager manufacturing i: 1970 call came and got disconnected i: 1971 ftnijxup sbltduco xd pm xd qaohugxw kdeqjncw nwfodmhc exurcwkm xd re my access to supply chain software is blocked xd xd xd help desk xd please check pathuick account in supply chain software xd xd i: 1972 supply chain software password reset ftnijxup sbltduco pm thsyrley shi nwfodmhc exurcwkm re finished start of sandop process help desk please check thsyrley account in supply chain software and assist for sign on i: 1973 erp sid password reset Translated 1973 : erp sid password reset i: 1974 usa plant company na usa usa plant bld qa carb access sw switch is down since et on i: 1975 reset passwords for jvpkulxw ovuweygj using password management tool password reset Translated 1975 : reset passwords for jvpkulxw ovuweygj using password management tool password reset i: 1976 account got locked i: 1977 since it not possible to send mail for the user details dialog anymore mail address it used to work before xd that function is very helpful for the end user to contact the designer on issues question directly from engineering tool without leaving engineering tool xd see attachments dialog and error message i: 1978 please provide details of the issue xd ms outlook i: 1979 xd job job failed in job scheduler at i: 1980 xd job job failed in job scheduler at Translated 1980 : xd job job failed in job scheduler at i: 1981 xd job job failed in job scheduler at i: 1982 xd xd xd dear it xd xd pls help to check dn we unable to do kis for this dn i: 1983 xd job bkbackup tool reporting tool prod full failed in job scheduler at i: 1984 gso please unlock and reset password for lijsyte also send password to jinxyhdi luji i: 1985 xd job job failed in job scheduler at i: 1986 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 1987 xd job job failed in job scheduler at i: 1988 xd job job failed in job scheduler at i: 1989 gso the account vvlixthy is expired could you extend the account date to jacyhky liuhyt is sponsor is jacyhky liuhyt i: 1990 account is locked i: 1991 hi all please reset my password for sid for my entering error more than times user name caoryhuq best i: 1992 password reset using password management tool Translated 1992 : password reset using password management tool i: 1993 node usa pbx located at usa is down since pm et on i: 1994 unable to save excel document Translated 1994 : unable to save excel document i: 1995 unable to sync some files in collaboration platform i: 1996 ticket update on inplant i: 1997 ticket update on inplant i: 1998 unable to log in to engineering tool i: 1999 blue screen on start up i: 2000 unable to sign in to skype meeting i: 2001 outlook not opening up stuck on loading screen i: 2002 telephone summary cannot get vpn to connect on my computer i: 2003 sqlcuhep railgnfb called in for an issue where he was unable to launch engineering tool and unable to fill up discount form i: 2004 unable to view mails more than days i: 2005 i needed hand setting up jabra pro headset for skype calls have installed drivers just not sure what else needs to be done contact i: 2006 hello team could you please unlock account email in cell phone the user vhjkdqop tkhafgrc id sanchrtyn i: 2007 qhjkxoyw lgiovknd called as he wanted to speak to tiyhum kuyiomar i: 2008 unable to log in to supply chain software i: 2009 call from vythytalyst uploading group of contacts to crm issue contact while synchronizing contacts from outlook to crm its not synchronizing complete list of contacts its moving those contacts from outlook and keeping in crm i: 2010 i don have access to below prerequisites you must have the infopath filler client to complete and submit the lra form please contact the gsc and open remedy ticket for the pc support group if you do not have the infopath filler client to determine if you have the infopath filler client click on the start button and choose all programdntys click on microsoft office group you should see the microsoft infopath filler client dthyan matheywtyuews sales manager gl i: 2011 unable to open engineering tool application i: 2012 engineering tool issue Translated 2012 : engineering tool issue i: 2013 business client net error message Translated 2013 : business client net error message i: 2014 unable to enter mileage details Translated 2014 : unable to enter mileage details i: 2015 ticketing tool issue cannot seem to create new subtask from the ticketing tool console the area to create new sub task seems to be missing we were asked to create separate tasks for server decommissioning and neither me nor ron mcgee can seem to create sub task on ticket any more i: 2016 client is having issues with excel crashing i: 2017 summary need help downloading uacyltoe hxgaycze application can someone take over my screen and help me out i: 2018 subbathykrisyuhnyrt shhuivashankar company provided phone activation i: 2019 ticket update on inplant i: 2020 unable to access easyterritory map view builder i: 2021 when attempting to email voucher following the standard procedure enter the email address and press send email and the page goes completely blank then need to resign onto sid and the email has not been sent xd xd please review and correct aerp i: 2022 erp sid account unlock i: 2023 bitte schalten sie meine passw rter frei plase unlook my password chrithysgd mit freundlichen gr en best Translated 2023 : please activate my passwords plase unlook my password chrithysgd, best regards i: 2024 external recipient is unable to share screen with internal company employees during pstn conference call xd xd error message all company users saw message that read something like presentation failed since the presenter has left the meeting even though he was still in the meeting we agreed to end the meeting once and re join but the issue didn go away xd xd i: 2025 account unlock i: 2026 general query Translated 2026 : general query i: 2027 xd job bkbackup tool hostname prod inc failed in job scheduler at i: 2028 summary hello saw on pdf options that it possible to export pdf into excel do you know who can contact in company to get this conversion tool i: 2029 browser issue etime flash player issue addin issue i: 2030 unable to sign in to skype i: 2031 please look at sale order csr zektaqof cgxlqtiz released order from workflow and the qty went from pc to pcs showing csr changed the qty csr did not change qty please review possible issue maybe wf batch issue i: 2032 uacyltoe hxgaycze Translated 2032 : uacyltoe hxgaycze i: 2033 ticket update inplant Translated 2033 : ticket update implant i: 2034 excel keeps exiting i: 2035 unable to update mileage details site not loading Translated 2035 : unable to update mileage details site not loading i: 2036 erp sid password reset Translated 2036 : erp sid password reset i: 2037 xd xd xd good morning xd xd can you please assist me with getting the skype meetings back up and running for me it came up before but no longer have the option xd xd i: 2038 skype issue personal certificate error Translated 2038 : skype issue personal certificate error i: 2039 navdgtya kuhyakose pm htsnaodb adjtmlzn petgvwch zevpkogu khfgharla mwdjuli vthuzanc fqdgotvx rzucjgvp ioqjgmah nawkpdtx gwcvmbhn pos septemer hi karghyuen have compared the pos data between crm and bi for and the data are in sync will run the programdnty on to update the table zcp crm bi count of mandt sum of toengineering tool sum of counter sum of total distributor cost i: 2040 unable to access vpn Translated 2040 : unable to access vpn i: 2041 hr tool etime issue i: 2042 error windows build this copy of windows is not genuine for next weeks he will be in usa contact i: 2043 audio issue in skype i: 2044 please allow access for using printer in india office xd xd please refer the attachment i: 2045 please to provide access to solman environment solman sid production for the user vvamrtryot xd he need this access to open requests for theses charms and xd i: 2046 engineering tool installation i: 2047 outlook not opening Translated 2047 : outlook not opening i: 2048 blank call loud noise gso Translated 2048 : blank call loud noise gso i: 2049 erp sid account unlock i: 2050 unable to see workflow in erp sid i: 2051 anleitung fuer password management tool Translated 2051 : password management tool guide i: 2052 dear help desk can access to hr tool etime see below error the page you are trying to reach is not available an internal server error was raised jdamieul fandyhgg senior staff engineer i: 2053 wifi not working webpages not loading Translated 2053 : wifi not working webpages not loading i: 2054 when call comes in its first presented on the computer screen and only few sec later the phone starts ringing xd the time between is around sec i: 2055 examples given shesyhur reports to davidthd and davidthd should be reporting to chukhyt and not ron like wise managing director should be reporting this only happened to records being updated today see attached screenshots i: 2056 call from vendor about crm i: 2057 uacyltoe hxgaycze Translated 2057 : uacyltoe hxgaycze i: 2058 handscanner an pc evhw ohne funktion rep oder ersetzen pc in halle bei erp terminal Translated 2058 : hand scanner on pc evhw without function rep or replace pc in hall at erp terminal i: 2059 usa skype is working Translated 2059 : usa skype is working i: 2060 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue hellej xd xd transaction code the user needs or was working with vf xd xd describe the issue m not authorized for transaction vf in sid please find attached the error message xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user maryhtutina bauuyternfeyt i: 2061 please reset the password i: 2062 xd job job failed in job scheduler at i: 2063 empw defekt code xed blue screen Translated 2063 : empw faulty code xed blue screen i: 2064 i have recently upgraded our calendar outlook to the crm software upgrade do not have the track and set regarding toolbar selections as seen in the snap shot below so the install did not complete need the server side synchronization of incoming emails corrected and the crm application permissions for my in if that is not correct and you believe it to be another issue let me know xd xd xd xd xd this is not phone issue thus is notebook or in issue please review the snap shots sent in and advise xd i: 2065 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2066 xd job job failed in job scheduler at i: 2067 install drucker we ewew hnyeajrw ctxjsolz i: 2068 install drucker we ewew lxfnwyuv bqmjyprz Translated 2068 : install printer we ewew lxfnwyuv bqmjyprz i: 2069 please complete all required questions below if not it will be returned back to the gsc requester to provide required information gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart printer name make model kq hp laserjet px detailed description of the problem wrong carahcters printing reporting rfumsv error message pjl enter language pcl type of documents not printing sa reporting rfumsv tax on sls purch advanced return what system or application being used at time of the problem erp if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed it prints but with wrong language characters if erp system which system sid if it an erp printer problem can the erp output be rerouted to another erp printer temporarily no tried in another erp printer issue persits the same what printer can it be rerouted too not applicable if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket file attached nia pereira accounting and report analyst finance i: 2070 kindly install software paint shop and winzip i: 2071 install drucker we oziflwma nhgvmqdl Translated 2071 : install printer we oziflwma nhgvmqdl i: 2072 hallo ben tige eine zahlenblock tastatur r linke hand Translated 2072 : hello ben meget eine zahlenblock keyboard r left hand i: 2073 aktuell nnen keine ckmeldungen in eu tool eingegeben werden fehler laufzeitfehler Translated 2073 : currently no c-messages can be entered in eu tool errors runtime errors i: 2074 xd xd xd hello at all xd xd ist not possible to create the delivery note xd xd xd xd best i: 2075 xd job job failed in job scheduler at Translated 2075 : xd job job failed in job scheduler at i: 2076 not able login to ethics website please find the screenshot for the same and kindly help regarding this issue i: 2077 pulverleitstand and chargenverwaltung doesn work correctly either it runs very slow or it crashes down there are error messages all the time xd eu tool also runs very slow i: 2078 xd job job failed in job scheduler at i: 2079 xd job job failed in job scheduler at i: 2080 automatische datenaufbereitung geht nicht Translated 2080 : automatic data processing does not work i: 2081 account locked in ad i: 2082 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2083 xd xd xd good morning xd xd xd yesterday started outlook in the morning xd xd xd as every morning it started very quick but when tryed to open mail received white screen tried several new computer starts but nothing changed xd xd xd so decided to work via collaboration platform and m doing this right now as well because today had the same negative result with outlook start was quick and that it no chance to read an email or write one xd xd xd please have alook into this matheywter because working via collaboration platform sless comfortable and slowing down xd xd xd i: 2084 dba team the job processor at the engg application has stopped again please restart as soon as possible dmqxwkfr olmwqzpu i: 2085 plant plant eu tool system is running very slowly big problems to enter the productions plans i: 2086 job name bkwin tax interface qa daily Translated 2086 : Job name bkwin List daily interface material i: 2087 purchasing online katalog de technischer handel funkioniert nicht Translated 2087 : purchasing online catalog de technical trade does not work i: 2088 please add static route on the lan switch in germany to ensure access to the shop floor network is not disrupted during downtime of the vpn router xd xd company eu deu germany emsw core sw xd conf xd ip route xd exit xd copy running config startup config xd xd i: 2089 hello need an access to email address to modify as and when required please provide me the access for below mentioned mailing address bnthygl pdu hdjm er bhrtty pdlc yhhm er with best i: 2090 erp sid account locked i: 2091 hrt archive jobs are failing with error xd ora the account is locked xd brw connect to database instance hrt failed i: 2092 xd job bkwin tax interface dev daily failed in job scheduler at i: 2093 xd job job failed in job scheduler at i: 2094 ticket update on inplant i: 2095 uagqromi sqgtkmci controller company posts select the following link to view the disclaimer in an alternate language i: 2096 unable to install crm for outlook i: 2097 ticket update on inplant i: 2098 xd job job failed in job scheduler at i: 2099 outlook programdnty takes about min to load i: 2100 password reset to login to hub i: 2101 xd xd xd hello xd xd need access to quality folder in lan drive of usa xd xd xd xd i: 2102 engineering tool page not opening Translated 2102 : engineering tool page not opening i: 2103 analysis add in keeps getting removed i: 2104 account locked out ad i: 2105 nibaotpy vmxathog Translated 2105 : nibaotpy vmxathog i: 2106 erp sid account unlock i: 2107 what type of outage network circuit power please specify what type of outage xd xd top cert site slo mins yes no na xd xd when did it start pm xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2108 please can you unlock the user vvamrtryot on the environment sid again xd seems is still locked there only in sid for all other everything is fine i: 2109 xd xd xd need to access pc that does not have skype xd xd xd xd xd xd i: 2110 hpqc uacyltoe hxgaycze installation i: 2111 change in offline cache mode in outlook to months i: 2112 erp closes when opening attachment in md i: 2113 when log in to purchasing and choose company catalog the window never loads up i: 2114 erp sid password reset Translated 2114 : erp sid password reset i: 2115 ms dynamics not synched in outlook i: 2116 i was having issues opening outlook and skype for business and reached out to pc services to investigate on this issue i: 2117 unable to login to erp and distributor tool i: 2118 ticket update inplant Translated 2118 : ticket update implant i: 2119 xd xd xd it team xd please create dn for warehouse today before they cut off time i: 2120 installation of skype i: 2121 account locked i: 2122 unable to log in to erp sid Translated 2122 : unable to log in to erp sid i: 2123 ramdnty think the workflows need looked at on the nda there are several ttemplates not working as note during the outage on several workflows lost their settings had to redo few that be the case with the nda i: 2124 xd job job failed in job scheduler at Translated 2124 : xd job job failed in job scheduler at i: 2125 adding user dinthyesh achthyardk to distribution group exekirty empkirty i: 2126 software to read the text from the scanned pages i: 2127 unable to view subject option in outlook i: 2128 blank call i: 2129 skype call join ends up in bad call or blanks out during multiple attempts i: 2130 after netweaver installing it is not possible to log in to erp user name nagdyiyst i: 2131 xd xd xd bitte passwort und acount freischalten xd xd xd mit freundlichen gr en best Translated 2131 : xd xd xd please activate your password and account xd xd xd Yours sincerely i: 2132 skype does not log me on when turn on the computer phone i: 2133 unable to login to erp sid error user account not in validity date Translated 2133 : unable to login to erp sid error user account not in validity date i: 2134 xd xd xd hello it team xd xd for some reason when go to some of the folders got the message belwo cannot open some folder it appears the message below xd xd will appreciate your support xd xd i: 2135 hello please add user delthybid jeknosml gkcoltsy to the collaboration platform table for crm i: 2136 account is locked out ad account i: 2137 not able to print from hr tool i: 2138 the i: 2139 analysis for microsoft excel is no longer available xd attached you can find the note i: 2140 system sid sid sid sid hrp other sid enter user id of user having the issue hohlbfgtu describe the issue unlock password logon i: 2141 summary need vpn provision to access drive from when am away from office i: 2142 i never received access to tghkris wickhamtf person folder on the network drive did get access to her collaboration platform drive but not her network folder know her network folder is where she saved lot of information really need to have access to this folder to access her documents also m not sure why the communications m receiving regarding her collaboration platform collaboration platform are in german die endg ltige schung des collaboration platform for business von gflewxmn qnxhoryg ist in tagen geplant sie haben immer noch zeit um wichtige dokumente an einen anderen speicherort zu kopieren nach tagen wird das collaboration platform for business von gflewxmn qnxhoryg endg ltig gel scht wechseln sie zum collaboration platform for business von gflewxmn qnxhoryg unter i: 2143 probleme mit com port maschine st hrmann eaodcgsw trmzwbyc i: 2144 i recently received new machine for work and downloaded collaboration platform designer to access my workflow for my product move system after linking the site tried to open the workflow it gives me an error saying cannot access restart designer and try again have tried restarting multiple times please assist i: 2145 name jadqhguy fvwhyenp language browser microsoft internet explorer customer number telephone summary am unable to share my screen on skype i: 2146 xd xd xd dear company help xd why cannot adding new customer in engineering tool application this happened after downloading new update application xd xd xd i: 2147 inter company sto is not computing transfer price is it because the material is priced at euro per pc and the order is only for pc should they change the order to pc xd xd i: 2148 name xmeytziq dcgwuvfk browser microsoft internet explorer email telephone summary earlier in the week was trying to put my expense report in but it will not let me change the cost center there was suppose to be ticket but in for this and was just wondering how that was going have not received any notifications on this issue i: 2149 xd xd xd bitte schalten sie meine passw rter frei xd xd xd mit freundlichen gr en best Translated 2149 : xd xd xd please activate my passwords xd xd xd Yours sincerely i: 2150 configair server not available in production sid error message service not available Translated 2150 : configair server not available in production sid error message service not available i: 2151 engineering tool and distributor tool error unable to see customer details i: 2152 frequent account lock out wothyehre i: 2153 my telephony software will not allow me to pick up call or make call phone i: 2154 hello could you please check why delivery notes were created for total pcs from plant to plant when on plant we have customer order for pcs and no order on plant we were waiting for this material and once it appeared on plant stock these dn for company europe gmbh plant were created had to ask plant team for cancelation and creation dn for our order many i: 2155 upload of monthly reports to sid hana tables zmc i: 2156 ticket no antjuyhony usa i: 2157 wifi not working in conference room of usa oh xd i: 2158 anlagen pc an der hochdrucksinteranlage hip startet nicht Translated 2158 : systems pc on the high-pressure inter-system hip does not start i: 2159 vip upgrade to ie Translated 2159 : vip upgrade to ie i: 2160 not able to see emails in the outlook i: 2161 i have punched hrs on e on in my engineering tool but it is showing only hrs in my kpm xd i: 2162 user wasn able to access the report via ie hence installed chrome to access the reports via myportal company com xd after while the user wasn able to open the reports via chrome as well because some tabs dierppeared xd and the user is not able to connect to vpn via chrome xd xd this is not related to business analytics tech team erp bi bw this is something related to the browser setting i: 2163 xd job bkwin hostname inc failed in job scheduler at i: 2164 latitude battery issue battery light is constantly blinking red and not charging user has to be constantly connected to the ac adapter might require battery replacement phone i: 2165 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2166 name maaryuyten language browser microsoft internet explorer customer number telephone summary no bobj acces ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation maaryuyten hi can log in to bobj this is the error message get dwfiykeo argtxmvcumar hello maaryuyten io error error dwfiykeo argtxmvcumar to get better understanding of your issue would like to take look at your computer through teamviewer please click on maaryuyten id pw maaryuyten sre you still there dwfiykeo argtxmvcumar yes maaryuyten see the issie dwfiykeo argtxmvcumar let me take screen shot of it dwfiykeo argtxmvcumar will assign to erp bw bi they will look into it i: 2167 probleme mit gehaltsnachweis drucken eaodcgsw trmzwbyc Translated 2167 : problems with proof of salary print eaodcgsw trmzwbyc i: 2168 uacyltoe hxgayczeing the email notification i: 2169 probleme mit wlan laptop weszfyok fbadnjhu Translated 2169 : probleme mit wlan laptop weszfyok fbadnjhu i: 2170 account unlock we wu i: 2171 xd xd xd dear all xd xd when select in crm advanced find the next screen is scrolled xd xd xd xd xd xd xd xd xd the symbols are moved into the query it is nearly impossible for me to create view xd xd i: 2172 infopath is not working i: 2173 probleme mit we wu jionmpsf wnkpzcmv Translated 2173 : probleme mit we wu jionmpsf wnkpzcmv i: 2174 hallo kannst du mal bei uns im labor vorbei schauen da ist der monitor vom rfa analyseger defekt rclqfpgt tbnovxdp ist der ansprechpartner Translated 2174 : hello can you drop by at our laboratory the monitor of the rfa analyzer is defective rclqfpgt tbnovxdp is the contact person i: 2175 xd xd xd hello xd xd while trying to change the password on xd xd xd xd i: 2176 xd xd xd hi xd xd need to send video of machine to our customer on urgent basis the file size is mb kindly let me know how to send the same xd xd xd i: 2177 xd xd xd help desk xd xd today tried to open add lean event tracker link to enter new project details while doing so got error message screen shot is attached for your reference xd xd please go through the same and do the needful so that can enter the details in lean tracker any clarification please revert back xd xd xd i: 2178 dear sir madam pl add my name to distribution lists below warm i: 2179 uacyltoe hxgaycze Translated 2179 : uacyltoe hxgaycze i: 2180 pls unlock windows account of user vvgoythttu i: 2181 xd xd xd hello xd xd need your help xd xd my skype for business does not work in laptop xd print screen is attached xd xd teamviewer xd id sartlgeo lhqksbdx xd password xd xd i: 2182 xd xd xd hi xd xd seem to have problem with logging into vpn distributor tool etc xd xd cannot access the change my password as need to be on vpn xd xd any advice would be greatly appreciated xd xd i: 2183 account locked in ad i: 2184 user voethrylke is unable to log on telephony software for the following reason authentication failed because the remote party has closed the transport stream see attachment as well i: 2185 xd xd xd hello team xd xd cannot login to the sid uacyltoe hxgaycze system could you please check xd xd xd best i: 2186 the computer mouse from the pc eemw has malefunktion i: 2187 it is offline since i: 2188 it is offline since i: 2189 unable to log into skype certificate error Translated 2189 : unable to log into skype certificate error i: 2190 request you to reset my sid password and send it across i: 2191 it seems that the transfer from eu tool to erp is stopped or delay since clock german time please the attachment i: 2192 when creating new document in engineering tool we re seeing three doctypes that weren previously showing xd xd has someone added these recently xd xd they re showing in sid sid and sid i: 2193 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2194 please provide details in the template below if multiple applications are impacted please use the quick ticket template in the operations folder xd site location germany xd user id ad xd system you are seeing performance problems on please list all g crm erp bw bobj xd transactions that are slow g va create an order all erp sid is very very slow it takes seconds to build page xd area this belongs to g sales finance markhtyeting etc xd how can this issue be replicated by the it support group xd are other users seeing this xd please attach relevant screenshots and exact times when the issue occurred i: 2195 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 2196 erp is not working for multiple user xd server hostname not pinging i: 2197 reference ticket no some data entries where affected not all xd xd received several reports that it is currently not possible to close complete orders over orders are currently missing xd i: 2198 kein datenabgleich zwischen eu tool und erp in germany Translated 2198 : no data comparison between eu tool and erp in germany i: 2199 ich habe an meinem pc nur zugriff auf die interne festplatte drucken funktioniert aber kein zugriff auf b die drucker server Translated 2199 : i only have access to the internal hard drive on my pc. printing works but no access to the printer server i: 2200 please reset the password for the below user in quality uacyltoe hxgaycze in erp user rayhtuorv i: 2201 xd job job failed in job scheduler at i: 2202 xd xd xd hi xd xd am unable to take ethics training course in ie as it is showing the below shown error please do the needful xd xd this error shows up even after updating the flash player xd xd xd i: 2203 xd xd xd hello xd xd there is problem while creating new lean tracker and when we click on save and upgrade option xd please resolve xd xd i: 2204 hello please usa access add mr shryresh rdyrty to shared mail box investor relation kindly do the needful with i: 2205 the oracle listener monitor is reporting warning status on hostname please investigate i: 2206 xd user got crm and outlook configured yesterday xd outlook version earlier was old xd now after the new version has been installed along with crm xd all my mails get re downloaded every time xd specially the ones in all folders i: 2207 xd job bkwin hostname inc failed in job scheduler at i: 2208 wgpimkle kijhcwur mail xd am xd nwfodmhc exurcwkm xd erp error microsoft net framdntyework is not installed xd xd help desk xd xd tried to approve credit memo as per attached workflow mail but the below message was shown and could not open the programdnty xd please fix the issue aerp as we need to issue the credit memo soon xd xd xd xd xd xd xd best i: 2209 this is in sid xd xd i: 2210 xd job job failed in job scheduler at i: 2211 name jashtyckie language browser microsoft internet explorer customer number telephone summary urgent can get audio skype need it urgently for meeting today i: 2212 hostname xd xd volume dev sid data is over space consumed space available xd volume dev sid data is over space consumed space available g i: 2213 ticket update on inplant i: 2214 unable to open attachments on outlook i: 2215 i am the new plant manager at usa facility need access to the server drive ldg sm both drive and drive the access should be similar to the previous plant manager misuhet milsytr i: 2216 unable to update passwords Translated 2216 : unable to update passwords i: 2217 node lhqsm located at usa is down since pm et on i: 2218 not able to login to windows i: 2219 came in at as of my folder had not been updated since exited out and tried to get back in but it will not open xd i: 2220 system is slowing down while processing shipments at plant every evening between pm and pm sometimes it is with chk process and sometimes during the kis shipping tool shippping system process this has been going on for the last couple of months fyzceglp vfnraqxc is the shipping supervisor during this shift and can be contacted if additional information is needed there was ticket entered last night but was closed this morning because the system was not slow this morning this only happens at night i: 2221 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue uacyltoe hxgayczekurtyar xd xd transaction code the user needs or was working with xd xd describe the issue userid uacyltoe hxgayczekurtyar is needed for validation uacyltoe hxgayczeing in sid please extend this account for months xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 2222 xd job job failed in job scheduler at Translated 2222 : xd job job failed in job scheduler at i: 2223 unable to schedule skype meeting option no longer on outlook i: 2224 ticket update on inplant i: 2225 key figures being taken out from bex analyzer xd xd sales revenue key figure that gets removed autamatically i: 2226 xd job job failed in job scheduler at i: 2227 ticket update on ticket no Translated 2227 : ticket update on ticket no i: 2228 calls are routing to laptop and not on the telephony software phone phone i: 2229 xd xd xd attachment is the only connections available when need wireless please review and figure out why other wireless are not available xd xd was at company usa and also hotel no access available xd i: 2230 ticket update on inplant i: 2231 access to collaboration platform link xd xd i: 2232 summary the files for my shared mailbox dierppeared from the left side of my screen i: 2233 could you please check feasibility to add additional space in hostname dev gpfsfs xd xd justification bw reports are failing due to space issue in the mentioned mount point i: 2234 system sid sid sid sid hrp other sid enter user id of user having the issue keshyslsj transaction code the user needs or was working with sid describe the issue forgot password to sid if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 2235 erp sid account unlock i: 2236 crm add in is missing i: 2237 xd job job failed in job scheduler at i: 2238 vpn was disconnected during an incoming call i: 2239 skype audio not working Translated 2239 : skype audio not working i: 2240 ms crm dynamics outlook issue i: 2241 it appears that the pos files being submitted by our channel partners are not processing please see the attached log it appears that the last time file was processed was on i: 2242 i unable to access any of the bobj explorer reports m getting ps and ps errors please look into it i: 2243 xd job job failed in job scheduler at i: 2244 contact xd summary bex does not show any results as soon as limit time periods sind approx mins is there again gneral bex issue at the moment xd need to create reporting to my upper management and get no sales infomation out as soon as do select financial toolscal years or financial toolcal months the company overall value get no data found xd have re staerted bex several times na xd and even rebooted my pc xd xd note issue is urgent as have to finally review data tomorrow morning my time with upper management and need to pull bunch of sales data xd xd checked with another colleague too appears to have same issue xd xd i: 2245 xd job job failed in job scheduler at i: 2246 xd job job failed in job scheduler at Translated 2246 : xd job job failed in job scheduler at i: 2247 xd xd xd hallo xd xd port r ewew pf port liefert keine richtige ip xd bitte pr fen xd xd xd i: 2248 xd job job failed in job scheduler at i: 2249 unable to connect to outlook from home network i: 2250 xd xd xd hello xd system disk of server hostname is full again please check xd we had the same issue weeks ago ticket inc and weeks ago ticket inc xd please identify and solve the cause of the problem and not only the impact again and again xd it is the virtual center server xd i: 2251 unable to open outlook i: 2252 printer issue delivery notes windows on printer prtgt and prtgt xd contact xd error message install driver access is denied while printing windows and erp i: 2253 i have access to the report and reporting tool now however when go into the report none of the lookup sort features are available to me there are fields in the upper right corner that should allow me to manipulate the report however they don show as available they just show blank here is screen shot xd xd please refer the attachment i: 2254 contact Translated 2254 : contact i: 2255 summary have an open incident request inco with rakthyesh can we resolve this here i: 2256 xd job bwhrchgr failed in job scheduler at i: 2257 we need nwfoucba dzbujamc it germany germany for the preparation of our technology town hall meeting on the beginning of the meeting is at clock xd i: 2258 unable to access to bobj reports i: 2259 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2260 summary hit the wrong button and messed up my mail format to delete anything have to go into the home button and delete from there i: 2261 user called to speak with nicdhylas hidhys asked user to send an email as on skype he is not available i: 2262 windows password reset i: 2263 static noise interaction id i: 2264 xd xd xd hello xd we need new computer name xd service tag is ddwjm xd i: 2265 account unlock i: 2266 hello feel very sorry to say off late we are facing lots of issues with engineering tool system please note the below names not appearing in ascending order of alphabets looking for particular names has become nightmare best i: 2267 i have been working on creating an inspection plan and it doesn seem to be working created it but am not able to view the batch number for this inspection plan in qa tried to create an lot as well and it isn working either no valid inspection type for material was found or selected is the warning can you please assist me with this material is alloy mm and it needs to ship today contact phone number i: 2268 not able to make outbound calls from siemens phone system i: 2269 halo der drucker bereitet problem mit dem druck bitte die einstellungen berpr fen danke uwe Translated 2269 : halo the printer is causing problems with the printing please check the settings thanks uwe i: 2270 pl provide pm supervisor role to user haajksjp plant plant system sid sent from my iphone i: 2271 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2272 probleme mit vpn weszfyok fbadnjhu Translated 2272 : problems mit vpn weszfyok fbadnjhu i: 2273 probleme mit portal franjuz urbghty Translated 2273 : problems with urbghty fringe portal i: 2274 erp sid account unlock and password reset for i: 2275 russia interface vlan russia engineering tool wharehouse lan on company eu rus engineering toolkuznetsk dmvpn rtr company com is down i: 2276 xd job job failed in job scheduler at i: 2277 problem in outlook client database synchronizing i: 2278 hi team xd xd am unable to get mails intermittently during these time need to update the folder to get the mails sometimes it does not work like that too can you please look into this issue i: 2279 currently there are two versions of office on my computer installed office in the bit folder and office in the bit folder xd pls delete the old and repair the new one i: 2280 batia ben shloosh pm huji uhytry rujteoza mcoswhjuanthila yayuel sayatgr hkfipags sdilxrfk rzucjgvp ioqjgmah jhdythua htayhil udmbwocs kegsjdva re mm n hello please find the lauacyltoe hxgaycze sto please be informed that the same currency problem has occurred on new shipment under the above n for pcs mm under n the inwarehouse tool show the total amount of us the real value which show on the sto number is for each please check the issue urgently the shipment is currently hold in our warehouse please see the below correspondence on the previous shipment from i: 2281 hallo kollegen bitte mal pr fen warum der kollege diehm diese frage gestellt bekommt auf nein klickt and sich dann nicht einloggen kann dank and gru cid hardcopy cid Translated 2281 : hello colleagues please check why the colleague diehm is asked this question click on no and then cannot log in thanks to gru cid hardcopy cid i: 2282 xd xd xd dear sir madam xd xd pl do the needful regarding the subject matheywter message shown is wrong user id and password xd xd fyi and na xd xd warm i: 2283 error message in both systems sid sid xd xd partner not reached error no connection refused i: 2284 xd job job failed in job scheduler at Translated 2284 : xd job job failed in job scheduler at i: 2285 we can not create please create dn from plant to plant on pc of mm urgent shipping point dns i: 2286 hi khadfhty today created another lean event but still the certificates are not sent automatically to the recipient i can see the certificates in the certificate list section also co facilitator name is not appearing in the certificate same happened for the past event too request you to kindly fix this issue on priority i: 2287 windows password reset i: 2288 probleme mit alicona nach update jionmpsf wnkpzcmv i: 2289 setup we wu jionmpsf wnkpzcmv Translated 2289 : setup we wu jionmpsf wnkpzcmv i: 2290 xd xd xd hello xd xd have received ten mails so far on approval of the above ticket sample mail attached pl take immediate steps to stop these reminders as have already approved the ticket xd xd xd xd best i: 2291 dear all could you please reset password for dpajkrhy hwvjympt websty immediately and let me know best i: 2292 xd job job failed in job scheduler at i: 2293 xd xd xd hello xd xd am not able to see option for creating new customer and new dealer names in the engineering tool software please help me to resolve the issue xd xd xd xd i: 2294 sehr geehrte kollegen ich kann den netweaver business clint nicht ffnen wenn ich auf die entsprechende app dr cke ber vpn bereits verbunden dann kommt folgender hinweis bitte um ihre unterst tzung mit freundlichen gr en best Translated 2294 : dear colleagues i cannot open the netweaver business clint if i press the corresponding app via vpn already connected then the following note comes please for your support i: 2295 xd job job failed in job scheduler at Translated 2295 : xd job job failed in job scheduler at i: 2296 outlook and crm not getting sync i: 2297 account locked in ad i: 2298 xd xd xd hello xd xd am not able to access erp and other files through network xd am facing this problem from past weeks on daily basis the issues are addressed to local it team and getting it resolved on case to case basis xd it is causing lot of disturbance xd xd seek suppor to resolve the issue xd xd below is the error message when tried to log in for sid xd xd xd and each day when connect to network am connected to companyguest network need to change it to companysecure after this also am facing problems xd xd i: 2299 xd job job failed in job scheduler at i: 2300 interface fastethernet timeclock on clhr toollant is down since on i: 2301 xd job job failed in job scheduler at i: 2302 xd job job failed in job scheduler at i: 2303 it help can login erp sid from home by vpn with error message below can you help juhu jojfufn ap logistics manager select the following link to view the disclaimer in an alternate language i: 2304 ey consultant is unable to login to citrix attached the error screenshot xd kindly do the needful i: 2305 unable to login to engineering tool i: 2306 xd job job failed in job scheduler at i: 2307 unable to login to engineering tool i: 2308 name elituyt language browser microsoft internet explorer customer number telephone summary australia australia is currently experiencing very long loading times for erp can you please look into this i: 2309 xd xd xd hi xd xd my erp is running incredibly slow and it tries to load pages and then kicks me out with the below xd xd xd kind i: 2310 name fyzceglp vfnraqxc language browser microsoft internet explorer customer number telephone summary erp very slow happens every night starting at pm i: 2311 xd job job failed in job scheduler at i: 2312 xmjwanes astmvqhc am nwfodmhc exurcwkm rakthyesh fw processed payment potentional security attempt do not open see the attached received earlier today marc xmjwanes astmvqhc director human resources original message mail pm xmjwanes astmvqhc processed payment made list with the items need and can find on company com do you offer discounts for bulk orders you can find my contact details and the item list attached i: 2313 xd xd xd hi help desk team xd xd my window id locked please assist to unlock immediately i: 2314 ticket update on inplant i: 2315 xd job bkwin hostname inc failed in job scheduler at i: 2316 ticket update on inplant i: 2317 ticket update on inplant i: 2318 xd job job failed in job scheduler at i: 2319 i am missing one person from my gl team on the calendar page dthyan matheywtyuews sales manager gl i: 2320 unable to connect to vpn while updating passwords i: 2321 password expired i: 2322 ms crm dynamics error outlook addin i: 2323 user wants crm mobile app to be donwloaded on mobile i: 2324 i cannot access or go to libraries in collaboration platform need to access this for applications support calls and mails m having to transfer to other members or put the calls on hold while someone else be available to search for me xd this is the message am getting xd xd if this problem persists contact your support team and include these technical details xd correlation id ebaad ad bd aaa xd date and time pm xd user xd issue type user does not have permissions i: 2325 need crm added to outlook ribbon in microsoft outlook for crm mfg tooltion i: 2326 power management query Translated 2326 : power management query i: 2327 unable to load collaboration platform site i: 2328 xd xd xd xd best Translated 2328 : xd xd xd xd Best i: 2329 pjxclyhs fcniljtu pm nwfodmhc exurcwkm jwoiyzfp zlftrkpq liz domasky trupthyti fw folder access ticket no please usa me read only access to the following folder finance corporateaccounting partner cash and bank reconciliations misc cash account kind i: 2330 lhqsm patching antivirus sw prod node lhqsm located at usa is down since pm et on i: 2331 unable to load outlook i: 2332 collaboration platform not working server is busy unavailable i: 2333 royhtub haujtimpton unable to access crm thru outlook i: 2334 change of owner on collaboration platform link i: 2335 coffee spillage on keybankrd Translated 2335 : coffee spillage on keybankrd i: 2336 can you please check marftgytin pfner userid hoepftyhum gets the crm error message when trying to open the forecast to plan dashbankrd i: 2337 xd xd xd have accidentally saved as an excel spreadsheet over another file is there way to recover to few days ago xd xd i: 2338 query on crm app Translated 2338 : query on crm app i: 2339 configure the id printer on the laptop i: 2340 xd hi there xd xd tried changing my password in the poruxnwb yfaqhceo yesterday oracle fusion middleware production and after entering my old and new passwords the log in box kept popping up but did not let me log in somehow backed out of it and it let me access the system xd xd today neither the old or new password will work have had this happen in the past and szewiguc nvajphfm would unlock it for me xd xd can someone help me get this corrected xd xd xd i: 2341 no audio on lat Translated 2341 : no audio on lat i: 2342 windows password reset i: 2343 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2344 user profiles seem to be messed up on this server and not creating when trying to investigate monitoring tool monitoring issue came across the error message in the attached screenshot xd xd please investigate i: 2345 hello as discussed please assist on renewing the internal certificate for password management tool id password manager tool i: 2346 ticket upadate on inplant i: 2347 erp sid password reset Translated 2347 : erp sid password reset i: 2348 xd job job failed in job scheduler at Translated 2348 : xd job job failed in job scheduler at i: 2349 summary who can help me with collaboration platform issues have shared directory and files on collaboration platform with an external user but it is telling me only you under the shared with column i: 2350 users at usa are not receiving inbound external calls xd xd internal extension to extension calls are working and outbound calls are working xd i: 2351 i previously had access to the amerirtcas hrssc mail box on outlook but it is no longer available to me can this be re set up vpksyfco chosuygq i: 2352 just to inform you that user vvamrtryot seems has expired the password in sid sid sid xd we couldn proceed checking can you also reset the password xd i: 2353 outlook stuck on processing i: 2354 erp gui is missing login options for xhaomnjl ctusaqpr i: 2355 xhaomnjl ctusaqpr called for erp account unlock Translated 2355 : xhaomnjl ctusaqpr called for erp account unlock i: 2356 windows acccount lockout i: 2357 with the germany office move the main inwarehouse tool printer fdv got temporarily totally deleted by accident from erp big bulk of inwarehouse tools was already reissued but there are billing documents dated that do not have any output yet at all see lists attached xd xd if an update is done on the billing via vf the correct output type gets automatically added therefore we need to have mass update done just go to change mode and save so that the missing printouts get added and issued to the appropriate printer billings with existing output might be amongst the list these are good and no action is required xd xd xd important xd xd if the mass update is done please don do it any any regular billing job times and note the issued documents from erp spool the list of billings attached might also have documents with output assigned to other printers than fdv these billings are correct xd accounting department however would need to have list of all billings where the output now would get generated as the customer might get reminders or dunnings for the same we need to clearly trace these billing documents with output only now generated for audit reasons we need to get the print outs as soon as possible please help to support this request as soon as possible as some customers get annoyed with wrong dunnings xd xd if you have questions don hesitate to contact me xd i: 2358 clients laptop will not turn on i: 2359 erp sid password reset Translated 2359 : erp sid password reset i: 2360 sample before refresh xd xd xd xd xd after refresh xd xd xd xd xd xd best Translated 2360 : Before sample xd xd xd xd xd refresh after refresh xd xd xd xd xd xd Best i: 2361 error received says our records indicate your log in credentials used to access the site from the company collaboration platform do not match the records we have on file within the active directory i: 2362 email address has been newly blocked from sending attachments please remove the block i: 2363 i ve received new laptop latitude after the image installation the erp has very little definition when try to logon can see only very little charatcher do you have some indications i: 2364 xd xd xd hello xd xd recently changed my company network password log in email vpn etc and cannot sign in to skype for business anymore get notification saying there was problem acquiring personal certificate xd xd xd any assistance you can provide would be greatly appreciated xd xd i: 2365 xd xd xd hello xd xd my second monitor stopped working cannot get picture on it can someone please come and take look at it i: 2366 please reset my password for sid erp production and sid bw production i: 2367 i updated my profile in the new single sign on and yet still appears it has affected my number in outlook as well as anyone who has me in their contact list the only number that should be associated with my profile is if you do an employee search from outlook you will see the number i: 2368 request to reset user password the following user in your organization has requested password reset be performed for their account first name donnathyr last name welling consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 2369 eu tool ws ewew funktioniert nicht jionmpsf wnkpzcmv Translated 2369 : eu tool ws ewew funktioniert nicht jionmpsf wnkpzcmv i: 2370 hallo xd xd mein pc zeigt blaue seite mit vielen wei en buchstaben xd pc nr xd typ optiplex xd xd bitte helfen xd xd best Translated 2370 : hello xd xd my pc shows the blue side with lots of white letters xd pc no xd type optiplex xd xd please help xd xd best i: 2371 xd xd xd while updating existing product management master key figures dierppear and if shown in columns also columns dierppear and download is distrtgoyed xd xd last month we have had the same issue as anybody made changes on the product management master xd pallutyr pande corrected it back maybe you can involve her again xd xd we are very bussy with month end data and immediately need the correct settings as they have been before xd xd sample before refresh xd xd xd xd xd xd best i: 2372 skype issue personal certificate error Translated 2372 : skype issue personal certificate error i: 2373 request to reset user password the following user in your organization has requested password reset be performed for their account first name hyeonthygwon last name lethre consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 2374 account got locked i: 2375 system took long time to respond after password reset xd stack guard error came up with outlook i: 2376 user lndypaqg dhqwtcsr gogtyekthyto hat sein passwort in erp sid verggermany Translated 2376 : user lndypaqg dhqwtcsr gogtyekthyto has his password in erp sid verggermany i: 2377 unable to connect to expense reimbursement webpage xd page fails to load Translated 2377 : unable to connect to expense reimbursement webpage xd page fails to load i: 2378 issue occurred after recent password change i: 2379 gurts lrupiepens left company usa il facility on am assuming partial responsibilities for gus can you please set up email forwarding for any correspondences to my email address please advise if there is anything else required on my part or my manager xpoqcrtb zwrypjqv i: 2380 please reset my password for hana sid sid sid for userid bathishry i: 2381 erp password reset erp sid Translated 2381 : erp password reset erp sid i: 2382 hostname rfcserver exe process count service is down at am et on i: 2383 xceliron process where pos are auto received is not working as designed resulting in blocked inwarehouse tools resulting in additional work for the ap and buyer who cannot control this process please correct the missing goods receipts on the attached file and make permanent correction so that goods receipts are done in timely fashion going forward please do not close this ticket until permanent fix is uacyltoe hxgayczeed and in place i: 2384 crm app on ios i: 2385 desk cubicle number in the customer service department usa phone number laptop model latitude direct connection to monitors work through docking station no go i: 2386 hello all the project documentation under the collaboration platform links below is no longer accessible with error message jaytya created it but he left meanwhile perhaps deactivation of his account could be the reason anyway please help to get access again or provide instruction to change owner i: 2387 unable to sign in to skype i: 2388 since couple days we see huge performance issues in fue to view drawings from erp xd i: 2389 xd xd xd hello xd xd please find below compatibility check getting while launching ethics xd xd kindly go thru and do the needful xd xd xd system details is provided below for your quick view xd xd i: 2390 xd xd xd hallo xd xd das ffnen von pdf files aus engineering tool dauert heute extrem lange manchmal erscheint auch diese meldung ohne dass das file ge ffnet wird xd xd xd mit freundlichen gr en best Translated 2390 : xd xd xd hello xd xd opening pdf files from engineering tool takes an extremely long time nowadays sometimes this message also appears without the file being opened xd xd xd with kind regards i: 2391 qkmvosen opundxsk pm nyifqpmv kfirxjag travel expense manager hello transaktion pr doesn work for personal number please check Translated 2391 : qkmvosen opundxsk pm nyifqpmv kfirxjag travel expense manager hello transaktion pr doesn work for personal number please check i: 2392 probleme mit ie vzqomdgt jwoqbuml Translated 2392 : problems with ie vzqomdgt jwoqbuml i: 2393 sinic allgemeiner fehler odbc vmsliazh ltksxmyv driver abfragetimeout jionmpsf wnkpzcmv Translated 2393 : sinic general error odbc vmsliazh ltksxmyv driver query timeout jionmpsf wnkpzcmv i: 2394 hallo xd xd unser kopierer im schulungsraum ist auch defekt minolta we xd xd kannst du bitte mal nachschauen xd Translated 2394 : hello xd xd our copier in the classroom is also defective minolta we xd xd can you please have a look xd i: 2395 xd job job failed in job scheduler at i: 2396 urgent help required cant link an appointment to an account have the crm tab on outlook but when enter an appointment and go to set regarding and put in the account nothing comes to the account for an appointment i: 2397 xd job job failed in job scheduler at i: 2398 login peathryucoj have issues with my emails in outlook today there are delays with pulling emails and sending out am getting my emails with almost an hour delay also have issues with sending out my emails they are hanging in my outbox for long time until they finally go out i: 2399 ebhl does not ring when there is call i: 2400 infopath is not working i: 2401 account locked password reset request i: 2402 zugriff auf verzeichnis angefragt folder access requested benutzer id user id ahujajtyhur benutzer die position titel user position title executive sales admin verzeichnis folder scan art des zugriffs type of access read only or full control full name des vorgesetzten manager name cobsfvjz apkqmrdu hi please help to assign scanner to my system best i: 2403 hello it desk sent this emal thru the web mail as can not open the ms office outrlook due to the error message below the error message says cannot create new gard page of stack as of things just changed my pass word recently with accordance to the auto notification from system please help me to solve this trouble quickly and start to use outlook for my daily work my email address is id is yathryu mobile phone is your asistance is highly appreciated best i: 2404 wifi not connecting i: 2405 windows password reset i: 2406 xd xd xd dear all xd xd under crm extensions the forecast button is gone instead we have now potential spends can someone please readd the forecast xd xd i: 2407 xd xd xd hallo kollegen xd xd in meinem outlook kommt ein feld dass ein app problem vorhanden ist xd xd was ist zu tun xd xd xd mit freundlichen gr en best Translated 2407 : xd xd xd hello colleagues xd xd in my outlook comes a field that there is an app problem xd xd what to do xd xd xd best regards i: 2408 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant xd xd issue description error message no i: 2409 mr kothyherr has not received any mail from ethics since long time he thinks he should have received at least mails during this period that is why he is unable to do the course he insists ethics to look into it hallo kollegen ich sollte eigentlich meine ethics vorg nge abarbeiten dazu habe ich jedoch keinerlei erinnerungsinformationen bekommen noch einen link wie ich in das portal komme deswegen habe ich versucht ber hub in das portal zu kommen dazu habe ich auf login gedr ckt dann auf den button deutsch dann kommt jedoch keine offene session was ist zu tun mit freundlichen gr en best i: 2410 frequent account locked out i: 2411 account locked i: 2412 xd xd xd dear all xd xd not only the one user is affected we got other sales reps indicating that they can open the crm forecast to plan dashbankrd and get the resource not found error xd xd i: 2413 outlook is not updating Translated 2413 : outlook is not updating i: 2414 xd job job failed in job scheduler at i: 2415 name alparslanthyr language browser microsoft internet explorer customer number telephone summary hello am still unable to salesperson and uacyltoe hxgaycze performed by in engineering tool could you help me i: 2416 xd xd xd dear sir xd am not able to login to ethics portal the error screen shot attached below xd kindly do the need full xd xd xd xd xd xd with best i: 2417 dear it team good morning please provide full control access to below paths for the below members markhtyed cc departments hostname file hostname k scorecard india iscl departments hostname file hostname k updates india iscl sagfhoshgzpkmilu skwbuvjyheelavant fahdlecz erathyur ihkolepb ozhnjyef culixwse pmrvxbnjhivaramdntyaiah i: 2418 dear all xd xd can you please fix the bobj problem for mjvfxnka zvjxuahe see below error message xd xd i: 2419 xd xd xd good morning xd xd use my dell latitude in my home office using my own wifi network for internet access xd often when wake it up from powersave mode it is still connected to my local wifi network but as not identified network with no internet connection my private owned devices pc smartphone tablet still work fine xd have to shut down and restart the dell again to get proper connection xd xd please advise what to do as restarting the dell couple of times over the day is annoying and time kirtyling xd xd best i: 2420 i have noticed that don have access to timecards in my ticketing tool can have it enabled i: 2421 xd job hostname failagain failed in job scheduler at i: 2422 pgi for delivery note not possible please see enclosed message xd xd i: 2423 xd job hostname fail failed in job scheduler at i: 2424 account locked in ad i: 2425 kann sich nicht anmelden Translated 2425 : can not login i: 2426 xd xd xd xd mit freundlichem gru kind Translated 2426 : xd xd xd xd Yours sincerely, gru child i: 2427 unable to login to hostname vsphere client xd vmware virtualcenter server service is in stopped state i: 2428 the material code trn hdt kmc is available in the erp system but when selecting it in engineering tool there is an error no material code exists i: 2429 hello since while the plm enterprise search for engineering records is not working on my pc plugin is missing according to the error messages in the status bar see attachments xd i: 2430 request to reset user password the following user in your organization has requested password reset be performed for their account first name tyhufrey last name thyel consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc i: 2431 xd job job failed in job scheduler at i: 2432 xd bei drucker vh keine ausgabe der druckauftr ge aus erp hrp druck aus word excel funktioniert xd drucker wurde bereits ausgeschaltet und neu gestartet ohne erfolg xd xd xd xd please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp xd xd detailed description of the problem xd xd type of documents not printing email excel word etc xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 2433 xd xd xd hello xd xd am not able to open the ethics training course xd xd please see the below error screenshot xd xd xd with i: 2434 xd xd xd hi xd xd please see highlighted error and resolve it on urgent basis xd xd xd best i: 2435 hi when m trying to login to ethics training course get the web page as unregistered user please can you help in this i: 2436 xd xd xd hello xd xd can you please help me with this message which got when tried to open the lauacyltoe hxgaycze video on courage change win xd xd xd i: 2437 unable to print from wy printer ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation dwfiykeo argtxmvcumar hello zheqafyo bqirpxag hi good moryctrhbkm plvnuxmrnoj could not print in wy printer am in india zheqafyo bqirpxag hi are you there dwfiykeo argtxmvcumar yes zheqafyo bqirpxag this problem happens every month dwfiykeo argtxmvcumar ok let me check with local it where are you right now in which deppt i: 2438 xd xd xd hello xd xd can you please install the lauacyltoe hxgaycze version of flash player on my system got this message which is shown below while tried to complete the ethics course on our collaboration platform site xd xd xd i: 2439 xd job pp eu tool netch keheu failed in job scheduler at i: 2440 xd xd xd hi xd xd please reset my password for sid to daypay xd xd xd xd i: 2441 hi it started an report this morning and it takes normal minute to get the result current the report ist still running after minutes do we have performance issue with erp my user id is wethruiberg i: 2442 collaboration platform site is not opening i: 2443 hi there xd my reporting line in the outlook organization system is wrong have been relocated from usa to apac and now report to vlpfgjyz dvzrfsbo my title is sr engineer randd which is not reflected in the system too please help to correct i: 2444 xd xd xd hi xd xd please help to assist the following issue xd xd i: 2445 dartnl porwrloisky mail pm nwfodmhc exurcwkm rakthyesh login problems with vpn hi can log into the vpn or ticketing tool changed my password this morning and now it is not working can you please reset my login my username is poloidgthyl keep getting this error danl poloisky territory manager f federal signal dr usa il i: 2446 summary when run wip list and try to do my report get run time error pivot table field name not valid i: 2447 issues with crm dynamics need permissions while opening records user is getting error record is unavailable the request record was not found or you do not have sufficient permissions to view it xd i: 2448 my account will expire soon please help to extend vvwhtyuy account for one year user vvwhtyuy manager name mikdhyu lihy i: 2449 xd xd xd hi team xd xd originally enquiries about this at the start of and nothing has been amended xd xd currently do not receive any email notifications for the likes of ethics ethical moments sipppr xd xd and now have tried to log into ethics via collaboration platform and received the following error message xd xd welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp xd xd can you please assist aerp in setting up these notifications xd xd i: 2450 blank call i: 2451 i was kicked off of vpn for the time today at about i: 2452 potential security issue with the ios update i: 2453 outlook error Translated 2453 : outlook error i: 2454 xd xd xd hello xd xd there is no crm tab in my outlook ribbon please advise xd xd xd xd xd xd fjohugzb fhagjskd xd sr channel partner specialist xd company inc xd office xd xd technical support xd www company com xd xd i: 2455 user called in for an issue where he was not able to connect to any wireless network he using the dell tablet device i: 2456 unable to update new password on iphone i: 2457 unable to update passwords for all accounts i: 2458 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2459 xd xd xd hello started ethics training it became stuck on page xd please contact me aerp xd xd best i: 2460 unable to open edit expense report for employee Translated 2460 : unable to open edit expense report for employee i: 2461 marty nevins username nevinmw cannot login to computer shrugott tyhuellis usa facilities mgr i: 2462 when try to safe file to sales order in erp received the fallowing error xd an error occurred when uploading to erp knowledge xd provider xd i: 2463 jochgthen it team there appears to be an issue with the history in apo only the history looks correct i: 2464 xd job job failed in job scheduler at i: 2465 external site not loading Translated 2465 : external site not loading i: 2466 account unlock i: 2467 crm in outlook not working grethyg Translated 2467 : crm in outlook not working grethyg i: 2468 windows account unlock i: 2469 windows account lockout i: 2470 windows password reset i: 2471 unable to sign in to skype i: 2472 was knocked off vpn about et today and then again about et have problem with being knocked off almost every day i: 2473 my purchasing catalogs are no longer there when try and re select them all the us supplier say do not use i: 2474 my vpn dropped twice this morning and twice since lunch i: 2475 unable to enter an estimated value in opportunities in ms crm i: 2476 unable to sign in to outlook i: 2477 reset windows password for all accounts i: 2478 unable to login to erp Translated 2478 : unable to login to erp i: 2479 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp prtqv and prtqv xd xd detailed description of the problem xd xd type of documents not printing email excel word etc xd inwarehouse tool delivery note production order etc xd erp xd what system or application being used at time of the problem ex windows erp kls xd erp windows xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm sid xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too currently qv is being routed to qv xd qv is now fixed and need all erp jobs to print on qv not qv xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 2480 password change i: 2481 unable to login to skype Translated 2481 : unable to login to skype i: 2482 i have old version ethics training on my account please help me i: 2483 map drive Translated 2483 : map drive i: 2484 crm not synching mails i: 2485 this is getting tiresome being logged out of vpn automatically while working on erp cant seem to get much done if have to keep logging back on this needs to be fixed mnlvhtug imvetgoa sr application engineer general engineering company inc i: 2486 user wish to set lan as first priority for internet but my laptop makes wireless first priority and disconnect from lan and connect to wireless pc name ldvl i: 2487 external caller asking for vtykrubi whsipqno email address i: 2488 unable to open an website i: 2489 unlock erp sid account i: 2490 hi team need your help we have people than isn employee company but needed install engineering tool in computer they re client company he has id ccfterguss to acces site engineering tool but in hour that install appears the error in attachment do you have instructions to install in computers no company i: 2491 monitor on wire pc is out i: 2492 unable to find name as sales person in engineering tool phone i: 2493 windows account lockout i: 2494 usa plant all the switches and servers are down at the site at am et on i: 2495 lwgytuxq qspdztiw called in for an issue where the internet is completely down and they are unable to access internet erp and all other applications contact no i: 2496 tried to share my calendar in outlook with my manager rick orelli and got this error message biintll tujutnis senior sales engineer wc team www company com i: 2497 wjslkzfr jxlbzwrp xd pm xd nwfodmhc exurcwkm xd re quotes in workflow xd xd hi xd xd have items in workflow that am unable to save out it appears the quote was deleted xd lines and xd please help me get these saved out xd xd i: 2498 unable to open outlook after changing password i: 2499 name ksgytjqr ojdukgzc language browser microsoft internet explorer customer number telephone summary can sign into skype i: 2500 i have made several attempts to access ethics training and it doesn connect soujqrxw mvwduljx company inc sales engineer usa cell customer service product support i: 2501 no audio device on the pc failed to play uacyltoe hxgaycze tone i: 2502 xd xd xd hello t team xd xd my vpn will not accept my username and password please contact me at your earliest convenience xd xd best i: 2503 password reset from password management tool i: 2504 vip ie crashes on opening mii from ess portal phone i: 2505 renew internal certificate for password management tool password manager i: 2506 today created lean event in our collaboration platform lean tracker and after submitting the event no participant got any mail or lean certificate lean tracker id for the event created is i: 2507 pollaurid is unable to enable sp on an account without getting an error indicating there are potential duplicates the account is different than the other but does use the same email address which believe dup detection is based off of when he attempts to save anyways he get business process error pls refer to account as an example as well as the attached screen shots i: 2508 it appears that have browser issue in viewing pay statements in hr tool see emails below are you able to help me to view these screens xd xd i: 2509 global telecom number Translated 2509 : global telecom number i: 2510 good morning need password reset for telephony software for vfjsubao yihelxgp id taylthyuoaj workstation ldgl i: 2511 printer not printing Translated 2511 : printer not printing i: 2512 can you please add manuf eng us plant xd i: 2513 minitab license issue cannot run minitab as of early am minitab throws license server not found error this is affecting production in the usa site i: 2514 hr tool time application this morning do not have the my time stamp selection on my timecard cannot log in and clock in was here on time this morning and cannot clock myself in local it stefyty dabhruji already looked at it appears there is something wrong with my account of the application phone email i: 2515 xd xd xd hi there xd xd am trying to set up crm on my iphone and it asks for the company crm address what is it xd xd i: 2516 password reset Translated 2516 : password reset i: 2517 url not working Translated 2517 : url not working i: 2518 xd xd xd can someone please advise if we are still utilizing password management tool password manager xd xd can connect to this site to do mass update of my new password to all accounts xd xd i: 2519 the i: 2520 the i: 2521 xd xd xd hi it support xd xd one of our users have problem with running of business client client he is still getting error message that net framdntyework is not installed on your pc tried to reinstall it but no success xd xd is it known issue please can you help us how to solve it xd xd i: 2522 please change erp logic that currently identifies hardware items for warehouse tool to include rqfhiong zkwfqagb classification of hdw see attached email assign to vamthrsee krisyuhnyrt i: 2523 xd xd xd the screenshot below is the message received when tried to open the password management tool password manager site this morning to reset my password please advise xd xd xd i: 2524 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2525 xd xd xd please reset the following passwords in erp sid us plant employees xd xd knemilvx dvqtziya xd nabjwvtd sprhouiv xd i: 2526 reset the password for jmusidzr sratdeol on erp production hcm i: 2527 united kingdom has issues with making outbound calls xd this is on the telephony software as on the siemens pbx i: 2528 someone in the service center was able to successfully add zj partner to an existing customer master account in sid xd we set it up that only the users assigned to the sd cust mast partner func zj role would have add edit delete access to this partner function xd here is summary of what happened per lillanna xd he ujxvrlzg pkaegicn was using sid ecc what is strange is that the system gave him warning that he is not allowed to add zj partner function he could not even save changes until he cleared the zj field but it seems the system added the zj partner function anyway when he saved the account the account was and he added zj partner of xd xd i: 2529 please provide pos data for the month of xd xd i: 2530 nwfodmhc exurcwkm pm tiyhum kuyiomar password reset hi shivakuhdty your account was locked out we unlocked your account please try login with your existing password as you are ess user we have not changed your password please replay back if you have any issue i: 2531 xd xd xd dear sir mam xd xd kindly refer below screenshot where this notification is prompting again and again xd xd xd best i: 2532 when we opened new order we got communicate tahat order is incomplete xd sale office is not determinated when we try enter right sales office mw can add the chanhes xd print screen in attached i: 2533 xd job job failed in job scheduler at i: 2534 browser microsoft internet explorer customer number telephone summary erp error of certificate from list with pse ssl client standard ends in days i: 2535 i ve just changed my all passwords because of expiration but erp does not accept the new password it says that the name and password is not correct please fix it i: 2536 a few users have reported the seeing the attached error message today regarding certificate validity xd i: 2537 bex analyzer and bex designer is not working i: 2538 hi have just started having below system massage and it prompts every time move from erp nord to nord bothering me please advise what this is about and what should do on this qgrbnjiu hidzlfma manager warehouse and distribution company posts select the following link to view the disclaimer in an alternate language i: 2539 office has to be upgraded to i: 2540 the i: 2541 the i: 2542 dn has been received on but the same dn mm qty have arrived on duplicated please help finding the root cause why the duplicated dn could have been pgi since the dn was already received plant is not able to perform the gr against this intransit please provide the best solution to process the gr i: 2543 hello please support our dealer for engineering tool installation contact details below best i: 2544 help desk xd xd please usa an access right to hpmjtgik blrmfvyh to following folder xd xd hostname departments finance xd xd she is new staff for eh japan finance department and am her reportncqulao qauighdpnager xd xd xd xd best i: 2545 please provide access to mtb mt sales drive xd xd for any clarification pl call me back xd xd xd xd best i: 2546 personal device xd xd Translated 2546 : personal device xd xd i: 2547 xd xd xd hello xd xd xd changed my mobile phone and below informations belong to my own personal phone could you provide to use my new mobile phone device for mails xd xd i: 2548 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2549 kuhyndan lalthy am nwfodmhc exurcwkm qjgnkhso vahgolwx re user id vvamirsdwnp pallutyr not able to log in pallutyr who is having user id vvamirsdwnp not able to log in the window etc can you check it urgently kindly provide access upto i: 2550 lehsm and lehsm are down since am on et i: 2551 network port is not work and wifi network is very poor Translated 2551 : network port is not work and wifi network is very poor i: 2552 unable to post billing to account billed quantity xd xd ic ziv vvsallz ic xd ic ziv oprbatch ic xd i: 2553 need help in changing password on password management tool Translated 2553 : need help in changing password on password management tool i: 2554 volume label sys lhqsm aa on server lhqsm is over space consumed space available g i: 2555 xd job bkwin search server prod daily failed in job scheduler at i: 2556 xd job hr payroll na failed in job scheduler at i: 2557 xd job hr payroll na failed in job scheduler at i: 2558 xd job hr payroll na failed in job scheduler at i: 2559 the i: 2560 hostname volume dev sid ora on server hostname is over space consumed space available m i: 2561 always upservice exe is not running on hostname i: 2562 xd xd xd hello xd xd wireless companysecure outage of taiwan xd please help xd xd i: 2563 xd job job failed in job scheduler at i: 2564 xd job job failed in job scheduler at i: 2565 xd xd xd zifujpvr vxfkwaqh email is not working can get an update on this his email is still not working xd xd i: 2566 xd job job failed in job scheduler at i: 2567 xd job snp heu regen failed in job scheduler at i: 2568 contact phone company email not working the server couldn be contacted error message owa also not working i: 2569 ie browser issue website not loading its contents completely i: 2570 xd job bwhrattr failed in job scheduler at i: 2571 frequent account lock out xd ran lock out status xd account was getting locked out from one of the wifi devices xd took control of machine and started credential manager services xd deleted bunch of passwords saved in credential manager xd asked user to remove company secure from mobile device and keep wifi disabled for couple of days and can enable it when at home xd also undocked computer and docked it back tried login in it worked xd locked system and unlocked it with no difficulty xd keeping account ticket under observation xd arranging call back tomorrow as will be ooo i: 2572 i lost access to mail on went in and checked the setting for my account and found the error attached error on my account removed my license and applied and to see if that would resolve the issue but still can get into my email if try accessing my account via owa get attrachment error xd xd this be an issue with all licenses they have all expired cannot receive email so will not receive any replies or emails concerning this ticket i: 2573 reminder for approval of requisition already approved this request in erp i: 2574 xd job job failed in job scheduler at i: 2575 xd job job failed in job scheduler at i: 2576 xd job pp eu tool netch ap failed in job scheduler at i: 2577 only erp running slow internet is working fine all transactions are running slow contact erp system sid all transactions checking with dac team i: 2578 xd job job failed in job scheduler at Translated 2578 : xd job job failed in job scheduler at i: 2579 xd job mm zscr wkly qux failed in job scheduler at i: 2580 xd job pp eu tool netch keheu failed in job scheduler at i: 2581 name kvrmnuix yicpojmf language browser microsoft internet explorer customer number telephone summary cannot connect to company server i: 2582 xd job job failed in job scheduler at i: 2583 xd job oemcold failed in job scheduler at i: 2584 xd job job failed in job scheduler at i: 2585 xd job job failed in job scheduler at i: 2586 call conference to nahytu Translated 2586 : call conference to nahytu i: 2587 password reset alert from o i: 2588 this is serious breach of security as she is in hr please correct immediately i: 2589 the i: 2590 ms crm dynamics issue collaboration platform not mfg toolting with crm xd enabled collaboration platform and collaboration platform mfg tooltion saved changes no go xd added site to compatibility mode reset cleared cookies cache no go xd user not really sure if this worked before in past i: 2591 xd xd xd hi xd xd xd xd link is not working kindly resolve yhe issue on urgent basis xd xd xd xd best i: 2592 the i: 2593 erp password reset sid Translated 2593 : erp password reset sid i: 2594 summary can not log into the vpn for na i: 2595 windows account was locked out unlocked account i: 2596 replied to email sending instructions how to install engineering tool i: 2597 alkuozfr bhqgdoiu pm zbpdhxvk nowxjztk mpihysnw wrctgoan aghynilthykurtyar gorlithy inxsupmy zhwmifvx oxlqvika zrvbahym rujteoza mcoswhjuanthila dctviemg muapxkns wfgtyill hannathry nwfodmhc exurcwkm re ie issues encountered all am getting this problem when clicking on the shop link in purchasing when using internet explorer there is an error message that pops up should get list of the catalogs but do not it sends me to the below screen second screen shot not sure if this is my problem or more widespread i: 2598 xd xd xd hallo xd xd reisekostenabrechnung in erp leider nicht glich siehe fehlermeldung unten xd xd xd xd mit freundlichen gr en best Translated 2598 : xd xd xd hello xd xd travel expense accounting in erp unfortunately not identical see error message below xd xd xd xd with best regards i: 2599 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2600 xd xd xd hi xd xd still am not able create new customer in engineering tool please resolve the issues at the earliest xd xd xd xd with warm i: 2601 xd xd xd dear it xd xd same issue repeated again have problem to use the programdnty xd xd please help to solve the issue aerp need to run and submit the report on xd xd best i: 2602 xd xd xd dear sir madam xd xd there is correction needed in spelling of my email id xd xd existing email id xd email id to be changed xd pl do the needful xd xd i: 2603 xd job bkwin infonet full failed in job scheduler at i: 2604 windows account locked i: 2605 xd job job failed in job scheduler at i: 2606 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2607 xd job bkbackup tool hostname prod full failed in job scheduler at i: 2608 xd job job failed in job scheduler at i: 2609 xd job hr payroll na failed in job scheduler at i: 2610 xd job hr payroll na failed in job scheduler at i: 2611 xd job job failed in job scheduler at Translated 2611 : xd job job failed in job scheduler at i: 2612 xd job hr payroll na failed in job scheduler at i: 2613 xd job sid filesys failed in job scheduler at i: 2614 name wpdxlbhz etvzjmhx language browser microsoft internet explorer customer number telephone summary was on skype call when programdnty locked up after restarting computer several times can not log into skype as it freezes every time also can not get speaker on laptop in dell device i: 2615 xd job job failed in job scheduler at i: 2616 with full charge indicates hr mint but actual life hours seeking replacement original battery two years old xd model dell asset number xd xd also rubber around screen is separating can this be replaced reattached or should super glue i: 2617 bwfhtumx japznrvb regional controller Translated 2617 : bwfhtumx japznrvb regional controller i: 2618 name danyhuie deyhtwet language browser microsoft internet explorer customer number telephone summary have new laptop and tried to log into enter the employee recognition site i: 2619 engineering tool issue xd connected to the user system using teamviewer xd educated the user on how to use the engineering tool xd issue resolved i: 2620 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 2621 xd xd xd am unable to force the inwarehouse tool on the below also this too is consigned material and needs to inwarehouse tool before the end of today xd please help xd xd xd i: 2622 xd xd xd good afternoon xd xd am unable to force the billing for the below this is consigned material and needs to inwarehouse tool before the end of today xd please help xd xd xd i: 2623 password reset alert from o i: 2624 global erp crm any party change in complaint causes blank screen upon saving and the change is not saved xd please investigate why this is happening and fix the problem i: 2625 summary can you help me set up crm tab in my outlook ribbon i: 2626 ticket update on inplant i: 2627 audio issue windows audio issue i: 2628 ticket update on inplant i: 2629 password reset from password management tool i: 2630 insufficient permissions on web crm i: 2631 does not matheywter which account number use major inconvenience i: 2632 summary need to have the crm tab added to my computer i: 2633 a solution is needed to find permanent fix to be able to use memotech xd xd add ken mstipsolutions com to compatibility list i: 2634 reset the password for constance wgtyillsford on erp production bw i: 2635 xd xd xd hello xd could you please help me on entering the euromote to open erp from my personel wireless xd xd xd xd xd best i: 2636 after password change can sign in to skype on dell in this has happened before and requires it to access my computer and delete files tommyth duyhurmont channel partner sales engineer company inc www company com i: 2637 ticket update on inplant i: 2638 lpoebzsc grknswyo pm nwfodmhc exurcwkm fw expense report has been submitted good afternoon tried entering an expense report for martha bank sent it for finance vip approval and it is not showing up in his worklist recently began supporting finance vip and his team about month ago perhaps something needs to be updated in the system for me to be able enter expense reports on their behalf in the past when have had issues with ess contacted kyefsrjc eadmpzcn however he is on vacation today your assistance in this matheywter is greatly appreciated i: 2639 back up tape not ejected today unable to switch out tapes previously switched them daily i: 2640 rma xd xd workflow error rma needs to be processed before end of today i: 2641 xd xd xd dear sir xd unable to access engineering tool xd following error message shown xd request support to resolve xd xd xd i: 2642 vitalyst crm configuration in outlook i: 2643 unable to log in to windows to update password on password management tool i: 2644 summary have lost the crm ribbon in outlook i: 2645 erp sid password reset Translated 2645 : erp sid password reset i: 2646 xd job bwsdslspln failed in job scheduler at i: 2647 login issue xd verified user details employee and manager name xd checked the user name in ad all fine xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 2648 name zdcheloy aevzsogn language browser microsoft internet explorer customer number telephone summary am unable to port crm dynamics com i: 2649 unable to login to distributor tool as password expired i: 2650 company mobile device activation i: 2651 hi team xd xd need your help xd xd request you to check as user kehtxprg uekapfzt is not able to access erp sid in turn which is blocking him to approve pr xd xd i: 2652 summary hello my pc is formatheywted by local it but there is no sound think audio driver is not installed properly could you help me i: 2653 password reset request Translated 2653 : password reset request i: 2654 name mityhuch ervuyin language browser microsoft internet explorer customer number telephone summary cannot log into netweaver i: 2655 engineering tool access query i: 2656 i figured out that can not create any new sds any more this is on the production system the engg experts came back with the following issue hi the drive where the engg prod db lives on is full the dba have to make it bigger so it just matheywter of having enough disk space can you let them know i: 2657 ooo until oct xd xd xd need access to hostname teams materials file hostname teams materials on my computer system xd i: 2658 xd xd xd have let my password expire and need help getting back into our systems xd xd xd i: 2659 delete the transport from the buffer sid k i: 2660 please note that am receiving an error message when trying to update rqfhiong zkwfqagb fields when using the zsd price field update abap programdnty please see screenshots of error message have also attached the uacyltoe hxgaycze file that was uploading am able to change the material pricing group through transaction mm therefore don think that it is security problem i: 2661 hello trying to load the mobile crm app on iphone and while trying to run putting in the we re sorry your server is not available or does not support this application vybmcrxo kirxdspz applications engineer i: 2662 cannot access hostname engineering application from vpn company using vvbloor inc closed not fixed please do not assign to vidya computer lbdl can access the hostname engineering application using other sign ons dudekm signed onto the computer and it works vvbloor can sign on to the computer and use dudekm to sign on to the vpn and it works it does not work when vvbloor signs on to the vpn vvblorytor can access other servers hostname hostname just cannot access hostname i: 2663 my manager was changed to mhtyike szumyhtulas in but my travel is still going to my previous manager qvhixotw rxutkyha tried to change in travel tool but it is greyed out can this be changed to correct manager zdcheloy aevzsogn manager business operational excellence i: 2664 hi team xd xd could you please help user urgapyzt tnxiuramdnty to open files the engineering tool engineering tool xd xd he did downloaded the file in site xd error the verification name file ktr the file is with error xd xd this message appears to all files the site in attachment m including the screen with error and the file zip xd xd let me know if you have more doubts you can contact with user xd xd i: 2665 windows account locked out i: 2666 logon balancing error in erp Translated 2666 : logon balancing error in erp i: 2667 login to citrix tro access erp vvparthyrra password change request from manager i: 2668 qksrtvzb vjkftuai said that he spilled some coffee on his laptop yesterday and since then the machine is not booting up and he wants to get this checked and replaced if necessary i: 2669 please see attachments i: 2670 ticket update Translated 2670 : ticket update i: 2671 account has expired on th xd need to extend the account until the end of the year xd xd need this done as soon as possible as the employee is assisting with tasks that are related to an employee who is leaving the company today xd please expedite i: 2672 ms crm dymanics giving error message while loading outlook i: 2673 need an update on inplant i: 2674 synchronization log mails after accepting calendar invite i: 2675 infopath installation i: 2676 phishing emails uacyltoe hxgaycze query i: 2677 please see attached ppt op is confirmed but order is not showing up in op to do list even after hours both ops are in same work center xd my understanding is that the background job runs every minutes i: 2678 usa bd printer says it needs drivers updated but continually fails to update or allow printing i: 2679 i am experiencing reoccurring issue with my erp engineering tool am not able to display original files pdf and stp this is major function in my role and unable to complete any work unless it is resolved this issue occurs every time an upgrade occurs to erp or engineering tool xd xd xd i: 2680 vkzwafuh tcjnuswg pm nwfodmhc exurcwkm amar fw you must validate your account hi is this legitimate email or scam vkzwafuh tcjnuswg cmp sr application eng cyber crime dept mail am vkzwafuh tcjnuswg you must validate your account dear mail user as part of the security measures to secure all email users across the world all email users are mandated to have their account details registered as requested by the cyber crime dept you are here by required to validate your account within hours so as not to have your email account suspended and deleted from the world email server kindly validate your email account to have your account registered please click here i: 2681 i am trying to connect to network printer tc located in the tech center my computer is having issues finding the correct driver to link to the printer please assist i: 2682 outloook calendar invites are automatically creating multiple meeting requests when single meeting entry is sent causing issues for customers internal and external by filling inboxes with multiple invites for same meeting and resending invite every day up to the meeting and causing confusion please advise help aerp i: 2683 computer in tool and cutter is down i: 2684 anmelden bei outlook seit passwort ndern nicht glich tel Translated 2684 : log in to outlook since changing password not equal to tel i: 2685 adding shared mailbox to outlook i: 2686 issue reported from us plant please see attached picture i: 2687 hi created accounts in company center and they aren working can someone please call me as soon as possible it would be great if the person who contacts me has access to active directory because think this be the problem i: 2688 account got locked i: 2689 non company pc windows operating system surthryr stahyru i: 2690 unable to load outlook i: 2691 need to retrieve deleted emails i: 2692 hello xd xd xd we are facing an issue of the below screen shot please help us how to resolve this issue we are very urgent to complete this stragiht away xd xd i: 2693 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue vv and please copy the same roles of kawtidthry xd xd transaction code the user needs or was working with va xd xd describe the issue please open the sid connection to erp and provide remote login data to erp xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 2694 india high latency packet drops i: 2695 hello xd xd please urgently fix xd xd mwst error xd xd mm xd xd best i: 2696 probleme mit drucken vermessungsmaschine r st be eaodcgsw trmzwbyc Translated 2696 : problems with printing surveying machine r st be eaodcgsw trmzwbyc i: 2697 support r alicona jionmpsf wnkpzcmv i: 2698 refer email sent Translated 2698 : refer email sent i: 2699 restart the company service in hostname i: 2700 dear it help xd xd got below email what should do is it corporate instruction or external party which no need to follow xd xd please advice xd xd best i: 2701 call for ecwtrjnq jpecxuty i: 2702 german call Translated 2702 : german call i: 2703 wykigmnz wvdgopybrumugam mgyhnsat aswubnyd sridthshar herytur mvfnbces urbckxna dargthya jayartheuy amihtar lalthy tcqpyuei becoxvqkahadikar jayatramdntydba cvyg re old laptop or dear mr am started using the new laptop and the following issue facing no requirement problem remarkhtys csm module not working properly wrench engineering toolent software not available fanuc ladder software not available in mail some option not working properly dwg true viewer software required please do the needful best i: 2704 log on balancing error i: 2705 ticket update inplant Translated 2705 : ticket update implant i: 2706 xd xd xd dear sir xd xd ivohcdpw ixcanwbm is not able to access his engineering tool he has requested for help also from it but till date nothing has moved ahead please help nthryitin to get access to engineering tool and install the same at earliest xd xd xd xd best i: 2707 german call Translated 2707 : german call i: 2708 drucker em druckt mit bis zu std verz gerung xd wird von pc eemw aus gedruckt ce ap messecke xd xd printer name make model ex hq wy hp em xd detailed description of the problem printer takes too long time to print error ff error turn off then on the printer is restarted couple of times does not help printer can not be pinged see attachment it looks like it a non existing printer xd xd type of documents not printing email excel word etc data from access datenbank excel xd inwarehouse tool delivery note production order etc xd what system or application being used at time of the problem ex windows erp kls windows i: 2709 lmwohkbd ucziatex am nyifqpmv kfirxjag aw travel expense manager hello transaktion pr also doesn work for personal no and mit freundlichen gr en lmwohkbd ucziatex programdnty engineering europe gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq von lmwohkbd ucziatex gesendet freitag an nyifqpmv kfirxjag betreff travel expense manager hello travel expense manager doesn work mit freundlichen gr en lmwohkbd ucziatex programdnty engineering europe Translated 2709 : lmwohkbd ucziatex am nyifqpmv kfirxjag aw travel expense manager hello transaktion pr also doesn work for personal no and mit freundlichen gr en lmwohkbd expenseg ucziatex programdnty engineering europe sch ftsf hrer phvkowml azbtkqwitax haktfrex hakitax manager expenseg expensev tk ts manager doesn work mit freundlichen gr and lmwohkbd ucziatex programdnty engineering europe i: 2710 xd xd xd hello xd xd please set up vpn access for elcpduzg eujpstxi graurkart xd rudolf has kennmetal owned laptop eeml xd i: 2711 user change the password through vpn xd user was getting password prompt i: 2712 we are in the process of refreshing history in rr we need to modify bobj script jb ecc bw zsd to pull month new pricing sales data from zsd by giving date range we need to move the changes to production and extract the data today itself once the data is extracted we will revert back the programdnty jb ecc bw zsd to extract delta data i: 2713 xd job job failed in job scheduler at i: 2714 probleme mit skype und outlook user dardabthyr Translated 2714 : problems with skype and outlook user dardabthyr i: 2715 probleme mit skype und outlook dardabthyr Translated 2715 : problems with skype and outlook dardabthyr i: 2716 kannst du bitte noch mal usb sticks gb besorgen bei uns ist wieder einer kaputt gegangen Translated 2716 : can you please get usb sticks gb again one of us broke i: 2717 unser kopierer we hp laserjet zeigt fehlermeldung transfereinheit fehlt an Translated 2717 : our copier we hp laserjet shows error message transfer unit is missing i: 2718 system sid sid sid sid hrp other sid enter user id of user having the issue vv transaction code the user needs or was working with va and please copy the roles of user id kawtidthry describe the issue please provide remote login credentials and update in oss secure connection area if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 2719 xd xd xd hi team xd xd kindly create ticket and assign it to me xd xd i: 2720 enterprise scanner is freezing telephone Translated 2720 : enterprise scanner is freezing telephone i: 2721 xd major lib drive time am xd dev rmt xd cannot write to device o error xd xd job bk biaprod failed in job scheduler at i: 2722 xd xd xd dear it team xd xd kindly fixed it transaction error as below within to avoid difference for intercompany reconciliation xd xd xd ir transaction has not been posted xd xd xd xd xd duplicate ir transaction xd xd best i: 2723 vpn tuqrvowp fxmzkvqo human resources i: 2724 xd job job failed in job scheduler at Translated 2724 : xd job job failed in job scheduler at i: 2725 hello xd please approve primary email of jeknosml gkcoltsy in ms crm prod and train email xd i: 2726 xd xd xd hello team xd could you please check the error and help us we cannot create the inwarehouse tool for this delivery for months because of this error and it cannot be solved xd xd your urgent support is needed xd i: 2727 xd xd xd hi xd xd erp is very slow please resolve the issue on urgent basis xd xd xd best i: 2728 dthyan matheywtyuews pm nwfodmhc exurcwkm sabrthy fw synchronization log importance high have lost my access to reporting tool in crm as per notes below dthyan matheywtyuews sales manager gl dthyan matheywtyuews am dthyan matheywtyuews synchronization log importance high synchronizer version synchronizing mailbox dthyan matheywtyuews synchronizing hierarchy synchronizing local changes in folder calendar uploading to server view form updated in online folder synchronizing local changes in folder inbox uploading to server view form updated in online folder downloading from server item changed read state in offline folder synchronizing local changes in folder contacts uploading to server view form updated in online folder synchronizing local changes in folder tasks uploading to server view form updated in online folder synchronizing server changes in folder russ hall calendar downloading from server error synchronizing folder you do not have sufficient permission to perform this operation on this object see the folder contact or your system administrator microsoft exchange information store for more information on this failure click the url below done microsoft exchange offline address book download successful i: 2729 outlook not starting Translated 2729 : outlook not starting i: 2730 user wothyehre is locked out every day i: 2731 benoittry is unable to login to distributor tool waiting to see if one of the previous passwords passwords used in erp was used while resetting in password management tool i: 2732 need help in changing password in password management tool password manager Translated 2732 : need help in changing password in password management tool password manager i: 2733 need developer display access for user uacyltoe hxgayczecp in sid system i: 2734 xd xd xd encountring outlook issues xd cannot open from pc xd urgent xd xd i: 2735 xd xd xd dear sir xd xd was trying to upload engineering tool in system after loading all the details for price drill details engineering tool is saved below is the screen shot which show all details filled xd xd but am trying to upload this engineering tool on server faced an error for which screen shot is attached pl look into this pl resolve this immediately xd xd all details filled for pricing in uacyltoe hxgaycze sites xd xd xd screen shot for error xd xd xd i: 2736 the i: 2737 xd am error channelerror connectionreset xd xd job bkbackup tool reporting tool prod inc failed in job scheduler at i: 2738 xd job bkbackup tool hostname prod full failed in job scheduler at i: 2739 erp system is very slow in apac dc asked stefytyn shi to uacyltoe hxgaycze the network he uacyltoe hxgaycze the network it about packet loss when ping erp server and he check the data from truview there only link utilization and he asked apac plant erp is slow too so please check the server and solve the issue i: 2740 erp disconnected and we can log on now xd before the disconnection it took several mins to conduct any action in erp i: 2741 i kate liu from apac plant can complete some pr approval need support xd my email i: 2742 dear team pls help to maintain the net price of mm we need to create sto for this material from plant to plant and its net price just shows as pls help to maintain it s p cause it a urgent case thx in advance rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 2743 xd xd xd hello xd xd please help cannot login outlook on my notebook xd xd i: 2744 docking station not working no power for laptop i: 2745 there is po in plant xd now we need ship it out but we can do mb please help i: 2746 india plant india node company ap ind kkc access sw company com is down node company ap ind kkc access sw company com located at india kirty is down interface down on gigabitethernet and gigabitethernet connection to company ap ind kkc access sw on company ap ind admin core sw company com i: 2747 dear all would you please solve the issue to settle negative stock need to do gr with migo manually like below erp said l account does not exist in company code please let me know how to handle it today is the end of month so please solve it aerp i: 2748 received over emails and numerous calls from customers and sales they are not able to create quotes these are the last few days of the quarter and this is huge risk to lose sales and negatively impact customers i: 2749 unauthorised access your account has been deleted please contact help desk xd xd windows sid sid sid password management tool bw hana reporting tool crm dynamics outlook etc all are fine i: 2750 ms office general question Translated 2750 : ms office general question i: 2751 xd job job failed in job scheduler at i: 2752 can you please help tami receive in the rma below details of the issue are below this screen shot m not sure how to help i: 2753 request to remove day pick route logic from supply chain for customer in plant view i: 2754 i am not getting my reporting engineering tools and it says don have access to veiw manager reports please fix aerp dthyan matheywtyuews sales manager gl i: 2755 skype goes to not responding mode phone i: 2756 ms crm login issue connected to the user system using teamviewer user is on the company network when user tries to login to the ms crm its gives him error i: 2757 ticket update on sev ticket inplant Translated 2757 : ticket update on sev ticket implant i: 2758 we had some bad storms come through last night and took out switch on the machine network i: 2759 external link not working in ie Translated 2759 : external link not working in ie i: 2760 unable to install mobile app on iphone phone Translated 2760 : unable to install mobile app on iphone phone i: 2761 engg work bench login issue Translated 2761 : engg work bench login issue i: 2762 xd xd xd hello xd xd please clear quote from my workflow this quote no longer exists and should not be showing up in my workflow see attached screen shot xd xd i: 2763 windows account lock out issue i: 2764 we are all having issues with hana on our systems am on vacation for weeks but please work with brandeerthy as the lead for getting this fixed we have defined report that utilized hana to bring in information it has been working fine but not we seem to have issues when we select analysis the refresh all code is grayed out when we used to be able to just go in and hit refresh all and be done tried inserting the data source for quote performance from where this is built from but when do this get when refresh all not data changes when looked at the display none of the columns and background filters are appearing any longer brandeerthy please utilize the canada file in the quote performance canada folder dated rev as the uacyltoe hxgaycze one when it calls you i: 2765 please be aware that sales reps and customer are not able ot request quote through distributor tool for sales area i: 2766 xd xd xd hello xd xd printer ts in the purchasing dept is not sending scans to our emails can someone look into this please xd xd i: 2767 xszoedmc gmhkdsnw please add oabdfcnk xeuhkoqa shyheehew to purchasingupstreamsso and active directory the samaccountname in ad is to be all lowercase i: 2768 swap clients with e i: 2769 lean tracker will give me an error when trying to save lean event get an infopath error i: 2770 need to usa remote access to carolutyu magyarics to repair prepull system which is part of the usanet used by the usa factory carolutyu is an it consultant used in the past to create custom databases and applications to support the business on the production floor her windows id was vvmagyc she will require vpn access also along with her administrative rights to repair the sql database this system has been down for hours and internal it resources at usa and usa have not been able to resolve i: 2771 xd xd xd hi it xd please help on this create dn for po i: 2772 crm installation i: 2773 windows password reset i: 2774 power outage query i: 2775 the i: 2776 blank call i: 2777 windows password reset request i: 2778 need to check the payslips i: 2779 configure crm on the outlook xd xd i: 2780 erp sid account locked password reset i: 2781 name nmpworvu upgtrvnj language browser microsoft internet explorer customer number telephone summary have an issue saving lean project to infopath i: 2782 xd xd xd hi manjgtiry xd xd got again skype problem but not that big as the last time xd xd every morning when start my computer have to add skype manually in the add ins xd xd could you please fix this issue aerp will be on vacations from xd xd i: 2783 have not been able to switch the tapes for this week i: 2784 external user called for help for calendar issue i: 2785 can you please remove my email from this mailing list cesgrtar abgrtyreu pm nwfodmhc exurcwkm ranjhruy re ergebnis evakuierungs bung hello can you please remove my email from this mailing list i: 2786 xd job job failed in job scheduler at i: 2787 spam mail notification Translated 2787 : spam mail notification i: 2788 xd xd xd we re sorry xd you can connect to the server because it doesn have trusted ssl certificate contact your crm administrator for assistance xd xd xd xd xd xd i: 2789 telefon mit der nummer ist defekt sinterei germany bitte reparieren Translated 2789 : Telephone with the number is defective. Please repair it. Please repair it i: 2790 mail xd am xd datacenter xd weekly reboot reminder backup tool servers xd xd xd datacenter xd xd please perform the weekly reboot of the azure backup server clhqsm backup tool management server hostname and the backup tool proxy servers hostname hostname hostname following completion of the daily backup tool backup processing xd xd raise the job scheduler batch fence on hostname to xd ensure there are no backup jobs running in backup tool or job scheduler on hostname xd logon to the backup tool management server hostname and perform restart xd after hostname is available reboot the proxy servers can boot travel toolrently xd lower the job scheduler batch fence on hostname to following all reboots xd xd you can reboot clhqsm at anytime xd xd also the dell dr storage server is rebooted following the backup tool server reboots this server will be rebooted by the administrator tim following completion of the backup tool reboots xd xd xd i: 2791 probleme mit vpn wxstfouy isjzcotm i: 2792 xd xd xd hello xd have no crm tab in my outlook page xd was told need it to fix this xd xd best i: 2793 stack guard error Translated 2793 : stack guard error i: 2794 my outlook does not have the crm ribbon please call i: 2795 fnqelwpk ahrskvln xd pm xd trxsychl xamcuong nwfodmhc exurcwkm maliowbg cltnwazh xd nmyzehow gnlcripo xd amar re ayuda con conseciones xd xd xd team xd xd please help me check marfhtyios collaboration platform settings he is getting this errror with the discount tool xd xd we already talked to rmegscqu juksmtho and it not an issue with the tool xd xd i: 2796 hatryu bau called in for an issue where he needed access to fuyidkbv koximpja email as fuyidkbv koximpja has already left the company on of this month hatryu is the manager and he needs fuyidkbv koximpja mailbox to be delegated to him for some important purpose of emails related to customers please do the needful at the earliest contact no i: 2797 xd xd xd am not getting any volume on my computer please help fix need volume for skype xd xd xd best i: 2798 audio is not working Translated 2798 : audio is not working i: 2799 oinqckds qieswrfu pm nwfodmhc exurcwkm chrthryui stavenheim trurthyuft aw tess account hello can someone check whether chrthryui stavenheim can login with his account ccftv via the citrix access with this access please inform him and myself when the issue is fixed as we have to generate turnover and satisfy customers oinqckds qieswrfu manager tess holemaking design automation von chrthryui stavenheim mail gesendet donnerstag an oinqckds qieswrfu betreff tess account hello robhyertyj ve been unable to login to tess few weeks now either password och user name is wrong user name is ccftv could you please help me out med nlig lsning best i: 2800 hello team can you please create credentials for erp sid and maintain the same in the safe area you can copy same access like kantthyhn i: 2801 engineering tool error machining cloud stopped working i: 2802 general issue Translated 2802 : general issue i: 2803 crm app greyed out i: 2804 uninstallation of adwares from computer i: 2805 blank call loud noise gso Translated 2805 : blank call loud noise gso i: 2806 hi m trying to enter quote for distributor in company center filled out the information and clicked quick quote it did nothing please advise vkzwafuh tcjnuswg cmp sr application eng i: 2807 skype issue personal certificate error Translated 2807 : skype issue personal certificate error i: 2808 i have been setting users up in company center and have run into an problem the passwords set them up with don work and need to reset them please get back to me as soon as possible because we need to get users up and running in the system i: 2809 there are now over confirmations needing to be deleted since this error was identifies in issue was identified to eu tool support which no longer exists xd xd will forward screen capture images to assigned it agent to better explain this error xd xd alrthyu xd i: 2810 xd xd xd hello xd xd at pc eagwsf have irrecular network issues sometimes there is no connection to the network possible after restart it works again in most cases xd the hardware can reach checked for disconnection or lax connection xd xd i: 2811 account lock out issue since last two days xd i: 2812 please escalate this issue since mqjdyizg amhywoqg is required to approve sales contracts in purchasing mqjdyizg amhywoqg is having an issue with accessing purchasing please review bill ad and samacocuntname in ad then contact bihrtyull thadhylman to resolve i: 2813 xd job job failed in job scheduler at Translated 2813 : xd job job failed in job scheduler at i: 2814 purchase order number delivery creation issue i: 2815 xd job job failed in job scheduler at Translated 2815 : xd job job failed in job scheduler at i: 2816 xszoedmc gmhkdsnw or skype access to collaboration platform legal elengineering toolonic contract management system libarary contract archive industrial folder to janhetgdyu fox chatgrylouy please skype janhetgdyu to work with her i: 2817 xd xd xd need you help xd xd xd xd xd xd best Translated 2817 : You need help xd xd xd xd xd xd xd xd xd Best i: 2818 spl gl indicator bill of exchange payt request is missing in customer open items feed i: 2819 ordnerfreigabe r kvp Translated 2819 : ordnerfreigabe r kvp i: 2820 hi mr hatryupsfshytd is unable to login ess portal please reset the password emp no name userid manager aqihfoly xsrkthvf hsh panghyiraj shthuihog fyi with i: 2821 aidw needs to format and reinstall i: 2822 reinstall eu tool und hardcopy acqpinyd ecygimqd Translated 2822 : reinstall their tool und hardcopy acqpinyd ecygimqd i: 2823 probleme mit companyguest bctypmjw cbhnxafz Translated 2823 : problem mit companyguest bctypmjw cbhnxafz i: 2824 probleme mit hp drucker local petljhxi bocxgins Translated 2824 : problems with hp drucker local petljhxi bocxgins i: 2825 ich ben tige hilfe bei der passwort nderung und bei skype mikrophone zuschaltung xd da ich bei skype meetings zwar andere ren kann diese mich aber nicht ren nnen Translated 2825 : I need help with changing my password and switching on my skype microphones xd because I can call other people at skype meetings, but they cannot call me i: 2826 ughzilfm cfibdamq wanted details to check for company guest i: 2827 erp sid account unlock i: 2828 system affected bls beschichtungsleitstand engl coating production system xd xd confirmation for process step packing fhurakgsl mldufqov is not transfered to eu tool xd xd sample orders xd i: 2829 mm xd bestellnumer xd Translated 2829 : mm xd order number xd i: 2830 xd xd critical lhqsm company company com time am xd ipc failure reading net message ipc write error xd system error software caused connection abort xd aborting xd xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job job failed in job scheduler at i: 2831 xd xd xd dear sir xd yesterday upgraded engineering tool application and now am facing below problem xd search and new option is not appearing in customer find add tab kindly help to resolve the issue xd xd xd i: 2832 the company is bankruped i: 2833 there are connection problems while calling the sr the sr gets silent line while get connected with the warehouse toolmail immediately i: 2834 please see the attached email i: 2835 vuxdrbng owqplduj k Translated 2835 : vuxdrbng owqplduj k i: 2836 xd job job failed in job scheduler at i: 2837 i cannot select the customer and cannot edit it see the picture below there is no button for new or find which we had in the previous versions and the select button is not active i: 2838 setup new ws vuxdrbng owqplduj i: 2839 volume label dat hostname ad on server is over space consumed space available k i: 2840 reset the password for bzwrchnd ysfiwvmo on windows i: 2841 xd job job failed in job scheduler at i: 2842 am rechner evhw funktioniert outlook nicht mehr xd Translated 2842 : on the computer evhw outlook no longer works xd i: 2843 lean tracker not opening i: 2844 account locked in ad i: 2845 po same tax issue Translated 2845 : po same tax issue i: 2846 we are in the process of refreshing history in rr and we need to send years sales data from zsd table through bobj script jb ecc bw zsd please modify the programdnty to pull month data to from zsd once the extract is complete we will switch it back to delta extraction i: 2847 create guest wifi vvrassyhrt i: 2848 reset my attendance tool password i: 2849 hi pl provide business client authorization to uypsqcbm fqpybgri for checking downloading drawings irgsthy pl provide your employee id i: 2850 not able to login to skype i: 2851 sound card issue in dell latitude laptop Translated 2851 : sound card issue in dell latitude laptop i: 2852 daisy huang xd hi vpn xd your system failed for antivirus check please ensure the following is true and try again or contact your administrator your antivirus software is enabled it is up to date antivirus database no older than days you have recently scanned your system not longer than days ago xd obuwfnkm ufpwmybi xd xd xd i: 2853 interface fastethernet asheshopsw on company na usa usa access sw is down xd interface gigabitethernet asheshopsw on company na usa usa core sw is down i: 2854 user status cer is active xd user status cer is active xd can not create the production order xd please help to fix it i: 2855 crjhotyk pxslorbe xd am xd rakthyesh ramdntythanjesh xd crm crjhotyk pxslorbe xd xd can not transfer customer in tracking to crm should be able to right click and click track to crm does not work xd xd i: 2856 xd xd xd am trying to enter etime on the hub but only get this screen it will not go anywhere from this screen can this be corrected please get in touch with me tomorrow during office hours xd xd xd best i: 2857 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 2858 i have access to engineering tools engineering tool but my name doesn show up in the drop down for salesman or uacyltoe hxgaycze performed by and it isn allowing me to write it in can please be added aerp tommyth duyhurmont channel partner sales engineer company inc www company com www company com engineering tool en home html i: 2859 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 2860 password was reset but will not allow reset for sid erp production i: 2861 collaboration platform is using lot of memory on my computer it is trying to sync large number of file try to exit it try to end the process nothing works would like to uninstall it if possible can this be fixed contact i: 2862 blank call i: 2863 blank call i: 2864 frequent account lockout Translated 2864 : frequent account lockout i: 2865 access to open this link for corp contracts don have access to open this link for corp contracts can you please review and usa me access dthyan matheywtyuews sales manager gl i: 2866 tsbnfixp numwqahj pm nwfodmhc exurcwkm amar wg die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird importance high please usa access for that company owned device user id grbhybrdg tsbnfixp numwqahj thanking you in anticipation oqlcdvwi pulcqkzo von microsoft outlook gesendet mittwoch an tsbnfixp numwqahj betreff die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird der zugriff von ihrem mobilen ger auf inhalte ber exchange activesync ist vorr bergehend blockiert da es in quarant ne gestellt ist sie ssen keine aktion durchf hren der inhalt wird automatisch heruntergeladen sobald der zugriff vom administrator gew hrt wird please ignore the above paragraph we cannot change it or delete it special note jan the microsoft outlook app for ios and android released yesterday is not currently approved software for accessing company mail until it is uacyltoe hxgayczeed and approved please consider using one of the other the embedded mail software in your mobile device the browser on your mobile device or the microsoft owa app published for your mobile device platform beginning employees with supervisor approval use personally owned mobile devices to access outlook email company is moving forward and providing the opportstorage product for our employees to use specified personally owned devices to allow for productivity improvement and enable work life balance this is an addition to the policy for company owned devices currently approved handheld devices can be found in this policy wireless mobility technical document the above policy will be updated as other devices are approved for use if you own an approved device and would like to take advantage of this opportstorage product you can submit ticketing tool ticket to the it global support center gsc if it is personally owned device you need to attach the agreement form found in the wireless mobility standard procedure this agreement must be signed by you and your next level supervisor and provided to the gsc prior to ticket being entered you can attach the signed form to the ticket or send the signed form to the gsc and they will attach it any ticket without the signed form will be cancelled you have weeks to process and submit the form before your device will be denied deleted from quarantine wireless mobility standard procedure informationen zu ihrem mobilen ger ger temodell iphonec ger tetyp iphone ger te id fvqfjrgjrjbkdgus ger tebetriebssystem ios sartlgeo lhqksbdxa ger tebenutzer agent apple iphonec ger te imei exchange activesync version ger tezugriffsstatus quarantined grund r ger tezugriffsstatus global um an gesendet i: 2867 to correct attached listed errors i: 2868 i did po and it received with no problem try to ship thru pweaver in erp and it tells me the server is unable to process the request i: 2869 my skype errors out when calling my desk phone it calls other numbers in the building fine when am in kqelgbis stiarhlu also skype headset is connected and on but doesn work have to switch to pc speakers to hear i: 2870 iphone crm app install on iphone i: 2871 password resets to everything but erp productio i: 2872 my monitor will not display any video it says no signal can be found i: 2873 erp password reset needed Translated 2873 : erp password reset needed i: 2874 wi fi access to user jamhdtyes kinhytudel i: 2875 there is no connection to the erp system we have no erp reporting tool engineering tool or anything that connects to erp i: 2876 my contact information is as follows i: 2877 i was unable to save my file in ug keep getting error and save canceled rebooted and now can login to engineering tool knethyen grechduy engineer product engineering company i: 2878 help all of our systems are down erp is down nx is down reporting tool cannot connect seems to be all users at our site i: 2879 hello xd xd k ndigung for manuel zuehlke effective has been approved xd Translated 2879 : hello xd xd k ndigung for manuel zuehlke effective has been approved xd i: 2880 xd job job failed in job scheduler at i: 2881 help to install the administration tools in windows os i: 2882 unable to attach an attachment in expense report i: 2883 unable to login business client as there was no prompt to login to sid account i: 2884 create quote is not working in distributor tool i: 2885 unlock personal number in ess i: 2886 we are finding warehouse to creating with the planned pgi date based on the production confirmed date and not the committed date to the customer this is occurring on orders with multiple schedule lines usually created by production recommits good example is sales order line with to number will be attaching pdf copy i: 2887 msoffice installation i: 2888 naveuythen dyhtruutt pm nwfodmhc exurcwkm dan fw your unauthorized loggin attempt hi am getting this mail continuously from past days can you pls have look into this i: 2889 security clearance to view cutter and insert drawings on our web based netweaver system xd xd hello it team xd xd please help my team members get the proper security clearance to view cutter and insert drawings on our web based netweaver system i: 2890 appears the next message nx has stoped working problem caused the programdnty xd gkad lathe and gkadx function properly i: 2891 all the users from usa plant are unable to access mii they re getting an error which states that recovering webpage the entire plant is affected i: 2892 unable to clock orders in mii multiple user affected phone i: 2893 windows password reset i: 2894 xd job sid hotf failed in job scheduler at i: 2895 the clock that you punch in your employee number it has maintenance mode and we forgot the password this is done on the device and not on the pc i: 2896 hi have now two open travel expenses which can enter into erp can you you please solve it aerp uyrpdvoq mbzevtcx sales manager earthworks european served area north company infrastructure gmbh gesch ftsf hrer phvkowml azbtkqwx und naruedlk mpvhakdq www company com i: 2897 please help unlock the user erp mae on server hostname at the earliest i: 2898 xd xd xd hi xd xd my main monitor will not turn on the computer has been shut down and restarted and all cable connections have been checked can someone take look at it can continue working off of the secondary monitor it is just an inconvenience xd xd i: 2899 stopped responding error xd multiple programdnty shortcuts exist on his desktop for engineering tool and none of them work xd password has expired as well as the aiqjxhuv dceghpwn runtime software is missing from the pc xd i: 2900 unable to sign in to outlook after password change i: 2901 i need to get crm loaded on my outlook m currently using the web crm version wkqjcfgy vsknlfri metalworking sales engineer company inc technical support i: 2902 companycenter company com Translated 2902 : companycenter company com i: 2903 sid account smhdyhti tool was set up as zm combined monthly billing for and they received multiple inwarehouse tools see attached i: 2904 we are having problem back order report paramdntyeter in access xd open order book i: 2905 name mfeyouli ndobtzpw xd language xd browser microsoft internet explorer xd customer number xd telephone xd summary can you unlock haunm erp sid account he seems to get locked out everytime he tries to log in i: 2906 erp sid password locked Translated 2906 : erp sid password locked i: 2907 update on ticket no i: 2908 printer asking to update driver Translated 2908 : printer asking to update driver i: 2909 erp sid password reset Translated 2909 : erp sid password reset i: 2910 ticket update on ticket no Translated 2910 : ticket update on ticket no i: 2911 hi all had this issue month ago and was told to delete my browsing history did and access was restored routinely clear my browsing history but today cannot view etime see attached screen shot i: 2912 unable to send skype meeting invitation i: 2913 ughzilfm cfibdamq called requesting for the appreciate hub link i: 2914 windows account locked i: 2915 probleme mit ie niptbwdq csenjruz Translated 2915 : problems with ie niptbwdq csenjruz i: 2916 wanted to know if the account of pathuick stope is still active i: 2917 i am no longer able to print to tc must install driver for this and am not sure how used to be able to print to tc without an issue and for some reason am no longer able to i: 2918 analysis add in does not show up i: 2919 s to for hcuixqgj mavxgqbs i: 2920 install we ewew acqpinyd ecygimqd Translated 2920 : install web ewew acqpinyd ecygimqd i: 2921 probleme mit portal acqpinyd ecygimqd Translated 2921 : problems with portal acqpinyd ecygimqd i: 2922 password reset Translated 2922 : password reset i: 2923 probleme mit portal hcuixqgj mavxgqbs Translated 2923 : problems with portal hcuixqgj mavxgqbs i: 2924 hr tool etime not loading i: 2925 meeting was scheduled by former employee xd xd organizer panjkytr mehrota xd xd fw nextgen kentip mfg xd xd details xd xd panjkytr mehrotra xd am xd panjkytr mehrotra ohljvzpn phwdxqev fabijhsd ocsnugeh ksvlowjd ptyzxscl nwgcbfdt ahmbnsoi aditya choragudi gotbumak ymdqokfp cyxieuwk rekwlqmu ruy frota estaxpnz mqhrvjkd vipqmdse zkaowfrx jhwgydeb ufiatosg ynlqrebs hwfoqjdu doug harman ejvkzobl yijgokrn frmyejbx weclfnhx cltszugw tgzbklec gdxujefz egnwtvch raouf benamor lpnzjimdghtyy mwtvondq lwguyibh nqepkugo knqmscrw sdtoezjb arjpdohf mrqwdtil xd nextgen kentip mfg xd when occurs every effective until from am to am utc eastern time us and canada xd where mccoy xd i: 2926 xd job job conf failed in job scheduler at i: 2927 whenever pc is turned on it shows blue screen but then works xd keith suspects the cache is causing it i: 2928 unable to find network drives after password reset i: 2929 name stdezpqw bkmeuhfz xd email telephone xd summary my monitor is no longer operating as the display my office was re arranged yesterday and when moved the monitor to the right location it stopped displaying the content and only shows dell window with self uacyltoe hxgaycze feature check and red gtehdnyu blue and white bars beneath that message couldn activate through control panel i: 2930 account locked i: 2931 mill model model in sid is not working correctly while starting the configuration proces from scratch it does not run through the procedures we created to default characteristic values based on selected product platform xd please restart the server as have an important training session to amerirtcas cas team at cest my time today which is min from now i: 2932 hi xd xd mr indra kurtyar is not able to log in due to password issue xd xd kindly provide new password to the person xd xd name mr indra kurtyar xd no xd user id vvrajai xd email indrakurtyar xd best i: 2933 lese und schreibberechtigung r hostname produktion Translated 2933 : read and write authorization r hostname production i: 2934 the model and field pk publish pk otc quotes zcae quote performance value raw doc curr qt sees to be rounding see attached screenshot converted to usd for that sample quote is but the value in lc is but the currency for the document is in usd so these two fields should match i: 2935 unable to connect to company secure i: 2936 please upgrade tom and karghyuen office to the newest i: 2937 please reset my password not sure why mine giving problems xd xd xd i: 2938 laptop is getting power supply not sufficient warning on boot up when docked i: 2939 xd xd xd hello help xd xd xd xd the zlz agreement is shown in md as demand but the is no po for the production plant xd xd the zlz agreement is not shown as demand in md xd xd maybe it is problem with the material type xd xd xd xd xd xd mit freundlichen gr en best i: 2940 ughzilfm cfibdamq called in to reset password for zlnfpuam aktplhre i: 2941 xd printer name make model ex hq wy hp xd hp laser jet xd detailed description of the problem xd druckauftrag wir nicht ausgef hrt xd xd type of documents not printing email excel word etc xd xd xd what system or application being used at time of the problem ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 2942 outlook not working Translated 2942 : outlook not working i: 2943 outlook not working Translated 2943 : outlook not working i: 2944 user moblews forgotten his telephony software password xd schtrtgoyht mobley xd i: 2945 pc eemw einrichten damit der barcode angezeigt und man ihm drucken kann xd ebs ro dicker Translated 2945 : Set up pc eemw so that the barcode is displayed and you can print it xd ebs ro thicker i: 2946 xd xd xd hi xd xd please reset the password of mr aqihfoly xsrkthvf xd xd emp no xd xd name xd xd useid xd xd manager xd xd xd xd aqihfoly xsrkthvf xd xd hsh xd xd panghyiraj shthuihog xd xd xd fyi xd xd xd with Translated 2946 : xd xd xd xd xd hi Please reset the password of Mr aqihfoly xsrkthvf emp no xd xd xd xd xd xd name useid manager xd xd xd xd xd xd aqihfoly xsrkthvf hsh xd xd xd xd panghyiraj shthuihog xd xd xd xd xd xd with FYI i: 2947 ordnerfreigabe r kvp und ce leiter Translated 2947 : folder sharing r kvp and ce head i: 2948 xd job job failed in job scheduler at i: 2949 wifi is not working Translated 2949 : wifi is not working i: 2950 please give me administration permission for my user id reddakv xd we need to install our team basic applications and software s i: 2951 the inwarehouse tool printed output is not complete ie item no quantity unit price and total amount are dierppear xd attached delviery note and inwarehouse tool are for your information xd please help fix this issue and advise back to us aerp i: 2952 refer to this inwarehouse tool no the printed inwarehouse tool is not complete ie the line item no quanttiy unit price and tootal amount are dierppear also the total inwarehouse tool amount is not correct the attached are related delivery note and inwarehouse tool as for your information please help fix this issue and inform us aerp i: 2953 hello team xd xd java changes are moved to production but unfortunately db changes were not moved so we request you please restart the sid server to reflected dba changes in production i: 2954 incorrect logo is been displayed on distributor tool xd logo changes was requested with the ticket ticket no logo changes were done and moved to qa since there was one file which was dependent with other ticket and logo changes file were moved along with other ticket where requestor does not want the logo changes now i: 2955 xd xd xd hello xd xd need an viewer at my computer to check step files xd xd mit freundlichen gr ssen xd with best i: 2956 setup new ws zlnfpuam aktplhre Translated 2956 : setup new ws zlnfpuam aktplhre i: 2957 system sid sid sid sid hrp other purchasing portal mycompany company com irj portal xd xd enter user id of user having the issue helmu xd xd xd describe the issue action could not be performed the attribudes of the user are inconsistent or not defined see transaction ppoma ppb xd attached screen shot xd xd xd i: 2958 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2959 drucker em im auslieferbereich immer den gleichen lieferschein mal danach wird erst der richtige ausgedruckt erp problem Translated 2959 : printer em in the delivery area always the same delivery note, sometimes then the correct erp problem is printed out i: 2960 xd xd xd to view fqhlvcxn zdfymgjp pdf sign in xd xd xd xd company posts xd select the following link to view the disclaimer in an alternate language i: 2961 pls check erp account of vvgraec she is not able to sign on anymore pls see attachment xd i: 2962 xd xd xd dear sir xd xd mycompany company com site not functioning for applying leave kindly support xd xd xd i: 2963 hostname volume label dat hostname ad is over space consumed space available m i: 2964 source ip xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log xd xd event detail xd xd event id xd vid bare http get executable from ip address possible downloader trojan xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd xref vid xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xfbcdcc ack xec win tcplen xd pcap xd yahoo csrsv exe http ahost aconnection keep alive a a xd pcap xd xd xd ex http uri yahoo csrsv exe xd xd ex http hostname xd xd security xd xd correlation data xd dhcpd dhcpack on to e f e lhql via eth relay lease duration renew xd xd lowercaseurlcorrelation yahoo csrsv exe xd srcip xd urlcorrelation yahoo csrsv exe xd vendorreference vid xd foreseeconndirection outgoing xd refererproxycorrelationurl null xd foreseeexternalip xd eventtypeid xd unique event hash xd ontologyid xd foreseeinternalip xd urlpath yahoo csrsv exe xd srchostname lhql xd inspectorruleid xd inspectoreventid xd httpmethod get xd netacuity destination organization ecatel ltd xd vendoreventid xd device id xd foreseemaliciousprobability xd event summary vid bare http get executable from ip address possible downloader trojan xd tcpflags ap xd agentid xd srchostname lhql xd cvss xd foreseedstipgeo den dolder nld xd devip xd inlineaction xd proto tcp xd dstport xd vendorpriority xd ileatdatacenter true xd vendorsigid xd srcport xd globalproxycorrelationurl csrsv xd host xd dstip xd source network type internal xd url yahoo csrsv exe xd urlfullpath yahoo csrsv exe xd urlhost xd irreceivedtime xd action not blocked xd ctainstanceid xd vendorversion xd httpversion http xd logtimestamp xd foreseemaliciouscomment negativeevaluationthreshold positiveevaluationthreshold modelversion classifiertype naivebayes annotatorlist action not blocked eventtypeid ontologyid evaluationmodels nb global model xd netacuity destination isp ecatel ltd xd device network type internal xd srcmacaddress e f e xd sherlockruleid xd eventtypepriority i: 2965 hostname volume label sys hostname ab is over xd space consumed space available g i: 2966 hp Translated 2966 : hp i: 2967 zpononpo mp data is incorrect Translated 2967 : zpononpo mp data is incorrect i: 2968 xd job job failed in job scheduler at i: 2969 i ve realised that not needed customer stock buckets are not needed xd the customer order are already completed but the stock is reserved for these orders xd therefore stock will sit there for ever xd xd would you please address to the people responsible xd that would allow us to reduce stock level xd i: 2970 create users unix team user with sudo privileges for trayton and neal xd server droracle xd xd xd xd delete users markhty snyder gptmrqzu muiqteyf pollaurid griener xd server hostname hostname droracle xd i: 2971 xd xd xd xd Translated 2971 : xd xd xd xd i: 2972 xd xd xd hallo xd xd frau rie wird ab dienstag oktober wieder ihre arbeit beginnen xd xd bitte passwort neu vergeben xd xd frau rie wird voraussichtlich von bis uhr im ro erreichbar sein xd xd mit freundlichen gr en best Translated 2972 : xd xd xd hello xd xd mrs rie will start her work again on tuesday october xd xd please reassign your password xd xd mrs rie will probably be available in the ro from until o'clock xd xd best regards i: 2973 bridgex from lacw monitoring tool robot transaction down xd xd copy of netperfmon event log transaction bridgex from lacw is down reason step uploading excel file step failed element file upload field was not found action was executed successfully xd xd xd hi team xd xd we got the above alert in monitoring tool checked with basis team and there is no issues from their side xd xd i: 2974 both the numbers for gso are not working xd germany xd usa or xd xd calls are landing on the phones but caller can not hear anything xd communication is one way agent can hear but not caller i: 2975 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email noi yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 2976 xd xd xd hello team xd please help me to confirm printer prtsg as we are not able to configure from our side xd xd i: 2977 system sid sid sid sid hrp other xd xd enter user id of user having the issue reisenkostenabrechnung nicht glich da zu viele falsche anmeldungen bitte passwort zur ck setzen danke xd xd transaction code the user needs or was working with xd xd describe the issue xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 2978 reactivate ruenzm it is our ceo usa deloro group it is urgent i: 2979 ich kann seit ca woche meine suche im outlook nicht verwenden da der hinweis ihre elemente werden zurzeit von outlook indiziert erscheint xd habe auch meinen pc mit ge ffnetem outlook bers wochenende laufen lassen doch bisher immer das gleiche xd aktuell ssen noch elemente indiziert werden xd gestern waren es ca elemente xd ich habe somit massive probleme da ich mails von vor einem jahr bis jetzt mit der suchfunkton nicht finden kann Translated 2979 : I have not been able to use my search in outlook for about week since the notice your elements are currently being indexed by outlook appears xd also ran my pc over the weekend with the outlook open but so far it has always been the same xd current ssen elements are still indexed xd were yesterday es ca elements xd i have massive problems because i can't find mails from a year ago until now with the search function i: 2980 please unlock my erp account user id murakt i: 2981 xd job job failed in job scheduler at i: 2982 xd xd xd hello xd xd am not able to login to business client due to wrong password xd pl unblock and let me know the existing password to reset the same with new password xd xd i: 2983 out look is not opening showing error message couldn able to access mail i: 2984 unable to login to ess portal Translated 2984 : unable to login to ess portal i: 2985 unable to login to windows i: 2986 the i: 2987 xd xd xd hello sirs xd xd we had schedule agreement about mm pcs which request delivery time is in and the stocks can meet our agreement but in there is pcs created in plant and then it took our all current plant stock and only confirmed us pcs as below which cannot meet the customer demand so we want to check what is the current rule about the confirm date why the stock meet the back order not the previous order xd i: 2988 xd job bkwin hostname inc failed in job scheduler at i: 2989 xd job sid filesys failed in job scheduler at i: 2990 we ve faced the problem ie the printer ba do keep printing the job which is wrongly assigned by some user vvkujup we turned off the printer and lan by yesterday evening and turn on printer and plug lan this morning however the printer do still printing such jobs as checked with local printer team he suggested to change ip address at ba as attached please help us stop such error printing and advise back to us aerp i: 2991 erp mae ad account is locked and hana production jobs are failing unlock immediately and share the root cause xd please assign to safrgyynjit or team and reach them immediately on call i: 2992 when sae the zwip report the sales order is not shown customer and sales order as well xd please check the reason and let me know how to show above information in zwip xd plant plant xd prodcution order i: 2993 win Translated 2993 : win i: 2994 xd job job failed in job scheduler at i: 2995 hi team xd xd have created the attached quote however it is not up showing correctly see attached can you please fix this as soon as possible i: 2996 xd job job failed in job scheduler at i: 2997 i am trying to download the software to do tooling reports on my company dell in and keep getting error messages assume someone will have to take remote access of my computer to see what is going on tommyth duyhurmont channel partner sales engineer company inc www company com www company com engineering tool en home html i: 2998 commodity details error the same as inc xd dn xd sto xd this consignment is urgent so can it be resolved quickly please i: 2999 xd xd xd for some reason cannot connect to the vpn xd have tried my usual username and password but it is not working xd xd xd xd xd xd i: 3000 xd job job failed in job scheduler at i: 3001 user getting prompt to upgrade java xd connected to the user system using teamviewer xd advised the user to complete the installation xd issue resolved i: 3002 erp inbox for smitrtgcj is not working have created background report to run and deliver to my erp inbox but it is not delivering have also tried to create mail thru the erp inbox and send to myself and get the error erp user christgry smhdyhti does not exist even though show up in the soplant transaction i: 3003 name lagqcompanyo xqtldrcs language browser microsoft internet explorer customer number telephone summary custom quote at saving receive error message of enter rate usd rate type for in the system settings see attachment i: 3004 briefly describe what you were trying to do and the issue you have encountered xd am trying to access material drawings but am getting an error message when log in see attached xd please include screenshot of any error messages i: 3005 xd job job conf failed in job scheduler at i: 3006 name fybwjzhx ojgrpafb language browser microsoft internet explorer customer number telephone summary can you reset my password for sid i: 3007 please reset my password i: 3008 i am able to open the analysis for microsoft excel but when click on log in to erp business objects get an error message that says the launcher is exited with error see log file for more details the analysis add in is not registered correctly when click on logfile folder get dialog box that ways windows can open this file file launcher log glf and asked me to find the programdnty to open the file i: 3009 claim is approved but is not showing up in settlement list can not get credit to generate also can not reject in order to create new claim created new claim to replace but have concerns with proceeding to process if cant reject the first please advise as we owe the customer their credit new claim i: 3010 xd job job failed in job scheduler at i: 3011 password reset Translated 3011 : password reset i: 3012 gso please reach out to lryturhy to correct his addin issue after rechecking his crm addin boxes and closing outlook they become unchecked again and the addin portion of the ribbon dierppears i: 3013 expense report blocked Translated 3013 : expense report blocked i: 3014 working on the fax lines in usa to see if we can do them without having to order any parts i: 3015 outlook down wlhxrogv yawtxuod Translated 3015 : Outlook Down wlhxrogv yawtxuod i: 3016 working on getting his new laptop ready for him i: 3017 unable to load outlook i: 3018 i recently changed my work computer from an gb business model to gb engineering model frequently use business objects analysis for excel when opening files that have saved that use data connections am running into an error that prompts me to try and migrate the connection from odbc to http see attached error because am not familiar with this cannot refresh data on old workbooks can someone assist i: 3019 login issue xd verified user details employee and manager name xd checked the user name in ad unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 3020 xd job job failed in job scheduler at Translated 3020 : xd job job failed in job scheduler at i: 3021 srvlavpwdrprd company company com is not responding this is our calibration system need up aerp i: 3022 xd xd xd hello can someone help me with netweaver access xd xd i: 3023 i tried using my windows login password but it is not working i: 3024 skype certificate error Translated 3024 : skype certificate error i: 3025 hi please raise it ticket all dealer open orders are appearing in vkm credit check even though the credit utilization is within the limits this started after changing the credit terms as to all open orders gajthyana hegdergyt manager finance for technical assistance i: 3026 nihtykki mcgyuouald pm nwfodmhc exurcwkm amar fw client company inc rejected edi inwarehouse tool hello please check into the below edi file to see why it was rejected from our system they have provided the technical support below i: 3027 grhryueg dewicrth pm nwfodmhc exurcwkm amar fw pr workflow hello it help can you help please see the image in the email below there is workflow that need to process but it will not give me an approve or reject option and will not pull up the details in the portal am also accessing it from outside of company as am traveling for work i: 3028 help to create and configure the user login profile and outlook i: 3029 ticket update on inplant i: 3030 unable to view data in distributor tool account i: 3031 request for install the dock station and ip phone for the telephony software application i: 3032 hello termination for johhdyanna kadyuiluza effective has been approved i: 3033 xd job job conf failed in job scheduler at i: 3034 vpn connectivity is too slow i: 3035 vpn disconnecting Translated 3035 : vpn disconnect i: 3036 erp mae id seems to be locked in hana sid request for unlock i: 3037 unable to launch outlook i: 3038 name xernsfqa uzvsnlbd language browser microsoft internet explorer customer number telephone summary am receiving error messages when trying to update my printer drivers m unable to print to the printers need to utilize dg and dg i: 3039 bsxvtpke vbfcashd cell system affected is dell laptop outlook i: 3040 xd job job failed in job scheduler at i: 3041 unable to connect to vpn Translated 3041 : unable to connect to vpn i: 3042 unable to connect to company secure in usa i: 3043 name dfgtyon stasrty language browser microsoft internet explorer customer number telephone summary can we get this ticket ticket no completed today need to be able to get this site up thank u i: 3044 account unlock i: 3045 ticket update on inplant i: 3046 customer sales org have inwarehouse tools automatically set to be emailed this works for standard orders zkb and zke order types but when an order is referenced to contract they are not being transmitted the partners in the order is correct but on the inwarehouse tool it is the same as the sold to party please see attached for examples i: 3047 ticket update inplant Translated 3047 : ticket update implant i: 3048 xd xd xd please reset my password in sid see msg below xd xd i: 3049 hello am have problems running open sales backorder report data will not download past i: 3050 unable to login to skype Translated 3050 : unable to login to skype i: 3051 we have some accounts where tax is not being issued and they are coded to the reason code code that is part of this job have attached examples i: 3052 unable to set up skype meetings Translated 3052 : unable to set up skype meetings i: 3053 rechner ewew bluescreen wrcktgbd wzrgyunp Translated 3053 : computer ewew bluescreen wrcktgbd wzrgyunp i: 3054 reinstall hardkopy we wu wrcktgbd wzrgyunp Translated 3054 : reinstall hardkopy we wu wrcktgbd wzgyunp i: 3055 probleme mit hp fehler lxvunpiz mgjxwept Translated 3055 : problems with hp fehler lxvunpiz mgjxwept i: 3056 rechner ewew sehr langsam lxvunpiz mgjxwept Translated 3056 : computer ewew very slow lxvunpiz mgjxwept i: 3057 setup new ws sgnubadl gpkovbah Translated 3057 : setup new ws sgnubadl gpkovbah i: 3058 unable to connect to tc and tc i: 3059 erp sid password reset done Translated 3059 : erp sid password reset done i: 3060 account locked i: 3061 password is not getting synchronized i: 3062 hi team xd xd could you please reset passw the erp sid user almrgtyeiba gvtbduyf gdblxiva only erp xd xd tnks i: 3063 unable to launch outlook after resetting the password i: 3064 crm plugin not responding i: 3065 urgent crm mailbox is not synchronising got call from vitalyst they ve checked the crm sync settings and say that everything is in order however the crm mailbox is not synching not accepting the username password too xd xd phone sartlgeo lhqksbdx i: 3066 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model hr on hostname xd xd detailed description of the problem keeps asking for driver install but will not install driver update xd xd type of documents not printing all tried xd xd xd what system or application being used at time of the problem windows xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed turned off and on printer xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 3067 unable to get the crm app on outlook i: 3068 termination for user lisfgta geitrhybler hello k ndigung for liuytre gei ler effective has been approved click the link to view i: 3069 pls reset windows password for user vvkertgipn i: 3070 call for ecwtrjnq jpecxuty i: 3071 hello k ndigung foulgnmdia pgsqwrumh langmar effective has been approved click the link to view i: 3072 unable to sign in to vpn Translated 3072 : unable to sign in to vpn i: 3073 dear it xd xd still some issues with the tracker even with your message in collaboration tool etc xd xd jertyur can difozlav dgbfptos make ticket and contact you or some other person xd xd they cannot enter any projects xd xd please let us know xd xd xd xd xd mit freundlichen gr en best i: 3074 hello it helpdesk xd xd good morning xd am not able to add new project into collaboration platform lean tracker contacting you the helpdesk as per instruction from below mail xd xd xd i: 3075 inc ticket update i: 3076 please create procenter login credential for below new joiners name keyhuerthi vtyr user id reddatrhykv i: 3077 need access to folder sox self assessments for quaterly sox requests xd xd xd i: 3078 xd job bk hana sid arc dp failed in job scheduler at i: 3079 hr employee data is not replicated got stuck in sid i: 3080 probleme mit druecker mp xd xd fehlermeldung transport einheit fehlt oder motor fehler aufgetreten xd das ist eine leasing druecker Translated 3080 : problems with printer mp xd xd error message transport unit missing or motor error occurred xd this is a leasing printer i: 3081 misplaced password i: 3082 source ip xd source hostname android baadea xd source port xd source mac address c f xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log xd xd xd event data xd xd related events xd event id xd event summary internal outbreak for udp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname android baadea xd source port xd source mac address c f xd destination hostname no entry xd destination port xd connection directionality internal xd protocol udp xd xd device information xd device ip xd device name company european asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd asa deny udp src inside dst noris by access group acl inside xeda xd xd correlation data xd dhcpd dhcpack on to c f android baadea via eth relay lease duration renew xd xd ascii packet xd no entry xd xd hex packet xd no entry i: 3083 source ip xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log xd xd xd event data xd xd related events xd event id xd event summary internal outbreak for udp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname awyl xd source port xd source mac address f ab xd destination hostname xd destination port xd connection directionality internal xd protocol udp xd xd device information xd device ip xd device name att apac asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd asa deny udp src inside dst outside by access group acl inside x xd xd correlation data xd dhcpd dhcpack on to f ab awyl via eth relay lease duration renew xd xd ascii packet xd xd xd hex packet s i: 3084 kfdyzexr hnbetvfk password reset Translated 3084 : kfdyzexr hnbetvfk password reset i: 3085 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant xd xd issue description error message create delivery not allowed sys status exls object vb i: 3086 mobile device activation Translated 3086 : mobile device activation i: 3087 xjvubmlq vyamhjip xd am xd nwfodmhc exurcwkm xd rad po language is incorrect po xd xd hello xd the po language is correct when print output it xd xd xd xd xd xd but when use zz mails the po language is incorrect could you please help to check it xd xd xd xd xd xd xd xd xd with best i: 3088 hi all the user romertanj need their password reset i: 3089 hi all xd xd please the user romertanj need their password reset xd xd i: 3090 outlook not getting connected to exchange server i: 3091 xd xd xd hi xd xd have to divide the quantity of the item due to partial shipment and currency issue but while dividing item quantity and re writing zno for currency update process zno price is deleted xd try to enter the price again with zno however the system can allow it and bring the new price with zcnp xd xd so could you help me please xd xd xd xd xd xd xd xd xd sayg lar zla best i: 3092 erp sid account locked i: 3093 druckt druckt alles vergraut Translated 3093 : prints prints everything grayed out i: 3094 xd xd xd dear all xd xd can you help me to access below forms i: 3095 hello my college anrgtdy bofffgtyin came to germany germany fort he work and needs to connect to lan could you please send him password for guest lan connetction anrgtdy bofffgtyin technical programdntyme manager aerospace and defence mit freundlichen gr en best i: 3096 account locked in ad i: 3097 when the pos are posed as the local tax law we need choose for them however after we choose as tax code erp shows red message like the attachments then we make tax code empty erp will require to place tax code this make us confused how to pose this pos please help to pose them i: 3098 account locked in supply chain software i: 3099 what type of outage network yes circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3100 dear it team xd xd have again an issue with final inwarehouse tool have the following erp order xd we had down payment of all items but final shipment of item xd items and have not been shipped hence we are not allowed to do an final inwarehouse tool for this xd so tried to do final inwarehouse tool for items but it did not work with inwarehouse tool the down payment amount got deducted twice xd so cancelled all inwarehouse tools incl down payment inwarehouse tool and separated them one inwarehouse tool for item and another inwarehouse tool for item xd after that tried again to inwarehouse tool it but still the wrong amunt was shown need to have an inwarehouse tool for item with amount minus down paymant can you please have look and help me xd this is not single issue we had that already several times i: 3101 name mandgtryjuth language browser microsoft internet explorer customer number telephone summary after changing the password outlook is not responding to the newly assigned password i: 3102 xd xd xd hi xd xd still same error persists xd xd xd with warm i: 3103 hello failed to login my hpqc account and got below message could you please reset password for my hpqc account need it to do uacyltoe hxgaycze next week my user id is zhudrs i: 3104 unable to open outlook and business client i: 3105 xd xd xd hello xd xd am unable to access business client when open business client it goes directly into below screen xd kindly look into xd xd xd xd i: 3106 xd job job failed in job scheduler at i: 3107 the plm conversion server is reporting warning status on hostname please investigate i: 3108 hello team can you please add inxsupmy zhwmifvx to the materials management purchasing group in ticketing tool inxsupmy zhwmifvx team lead ssl sourcing and logistics global it i: 3109 xd xd xd hello xd xd am not able to login into erp as my attempts exceed the set limit xd requesting you to unblock the same xd xd i: 3110 name warrrtyen language browser microsoft internet explorer customer number telephone summary outlook is not updating on my laptop i: 3111 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3112 erp sid account locked i: 3113 erp sid account locked i: 3114 xd xd xd hello xd xd need help the sound system of my laptop doesn seem to be working neither through speaker nor through ear phone it very inconvenient for skype calls xd xd please look into this xd xd i: 3115 xd xd xd hello xd xd please see this error xd can not log in erp xd please tell me the solution xd xd xd i: 3116 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3117 hr tool etime Translated 3117 : hr chair etime i: 3118 we ve faced the problem of erp system which is very slow response time please help check and fixing this issue to make erp system more faster speed i: 3119 hostname dev ulv is over space consumed space available g i: 3120 unable to browse hr tool site snapshot of error is attached i: 3121 xd job pp eu tool netch keheu failed in job scheduler at i: 3122 xd xd xd good day xd xd can you please advise whether crm is going through updates at the moment xd xd there are number of issues concerning us in xd xd xd at the moment we cannot access crm at all xd xd yesterday could not enter new customer accounts as my drop down boxes were not fully loading and thus could only see one or two items to select from xd xd the team here in australia advised that lately that they have had to contact customer master on numerous occasions as there are certain entries in crm new customer accounts that are not transferring to erp like xd sales reps xd carriers xd etc xd xd we were advised by our finance department that they believed it were aware of such problems above xd xd kind i: 3123 xd job bkwin hostname inc failed in job scheduler at i: 3124 apac china apac dc and company colleagues said the erp is very slow ping erp address packet loss i: 3125 xd job pp eu tool netch ap failed in job scheduler at i: 3126 xd xd xd hello xd xd when export the po files to pdf format in erp by command zz mails sometimes it show the other language rather than chinese so how can solve it xd xd xd xd with best i: 3127 password reset via password manager tool password manager Translated 3127 : password reset via password manager tool password manager i: 3128 outlook not working and unable to receive emails i: 3129 xd xd xd hi xd xd not able to add new customer in engineering tool kindly support to solve the error xd xd xd with warm i: 3130 msd outlook not showing the crm add in xd connected to the user system using teamviewer xd deleted and reconfigured the user profile on crm xd launched outlook xd user confirmed by closing and relaunching outlook everything is fine now xd issue resolved xd xd i: 3131 vpn access status check i: 3132 i tried to add to the watch list on ticket but couldn find him in ticketing tool xd please active christgrytoph account in ticketing tool i: 3133 scthyott lortwe pm nwfodmhc exurcwkm trup ti fw recode acct importance high it team please see the email chain below please assign this to me alrthyu lowe my ee is it needs to show under me in the financial report that mikhghytr robhyertyjs receives from nicrhty piper scthyott lortwe sales manager southeast industrial segment christgry financial toolher am mikhghytr robhyertyjs scthyott lortwe re recode acct hi mikhghytr that is not an account in erp it is new customer quota that was loaded into financial reporting per the direction of cpmaidhj elbaqmtp unfortunately you will need to submit an it ticket to have it reassigned kindest i: 3134 expense report issue xd xd please change cost center for user i: 3135 outlook language is changing automatically xd connected to the user system using teamviewer xd changed the launguage settings as english default xd restarted the pc xd advised the user to check now xd user confirmed that the outlook language is now english xd educated the user about the steps to take to change the outlook launguage xd issue resolved i: 3136 mobile device activation Translated 3136 : mobile device activation i: 3137 load telephony software onto users pc i: 3138 no audio while on skype call i: 3139 problem with erp login the server list is not available i: 3140 i am not able to upload engineering tool see below screen shot i: 3141 not able to login to windows i: 3142 user unable to login to the telephony software user unable to login to the interaction client user getting authenication error contact i: 3143 the compensation system is missing inwarehouse tools which is impacting sales compensation reports for all of north amerirtca field sales please assign to bw team and consult zarthyc mithycs for resolution i: 3144 called to service desk to check status of for account activation xd xd i: 3145 solicito fornecer pia da conta telef nica do celular do per odo de de junho de setembro Translated 3145 : I request to provide the sink of the cell phone bill for the period of June-September i: 3146 as per my understanding mii should subtract already confirmed pieces from order planned quantity from confirmation screen whenever user is confirming something xd for ex for piece order if user confirms pieces the next user or same user next time when confirms that operation the default qty presented should be but m noticing its presenting the original i: 3147 rzonkfua yidvloun was unable to login to windows and outlook i: 3148 usa go live week issue reported on xd xd order xd op xd work center xd xd operation was in prir status sartlgeo lhqksbdx pm but mii won allow to resume run xd gergryth changed status in mii from prst to prir it changed status in to di list but not in machine summary xd xd start process pm xd current time sartlgeo lhqksbdx pm xd time elapsed hours and that what we re seeing on machine summary dashbankrd meaning mii did send partial confirmation information to erp but didn used the same information for machine status view etc xd xd so in summary the partial confirmation information made it to erp perfectly fine but the machine status windows wasn updated with partial confirmation pause and behaved as if partial confirmation pause never happened xd xd xd xd xd xd example from usa xd for usa location and order operation xd xd mii showed the order in prpf status looking at erp order was partially confirmed followed by automatic pause which mii adds change log shows all entries were done by miiadmin it weird since erp is showing expected status which is provided by mii but mii itself is showing prpf status which does not make sense reporting this issue so team can do deep dive and come up with the solution xd xd xd xd xd i: 3149 unable to print purchase orders from erp i: 3150 during usa go live week on was able to get into data maintenance on operator pc using operator id exact steps listed below operator had operator dashbankrd open on his pc he asked for help and todfrm brgyake plant manager zcudbnyq rdxzgpej manufacturing manager and stopped by operators desk his question required to get into data maintenance and confirm something original question was about interrupt codes opened new tab right next to operator dashbankrd and typed url of data maintenance then went into operator dashbankrd tab and clicked log out was expecting to enter my own credentials to get into data maintenance but some thing weird happened the moment switched to data maintenance tab realized was already logged in without entering my id double checked with tom and davidthd that if was maybe dreaming and entered my credentials but they confirmed application took me to home screen of data maintenance without asking credentials i: 3151 hello k ndigung for pfgia scgtitt effective has been approved i: 3152 issue reported from usa usa and usa note from erin we have new issue today in the osterwalder bank the operators are signing in as themselves and being logged in under other usernames in the attached screen shot edclhpkf ahjklpxm signed in with her login mcelrnr but was logged in as sanddry mcgfrtann mcgatnsl this is new change previously it would log in the lauacyltoe hxgaycze person when you would open the window but now it not even signing in the correct person i: 3153 ie needed for finance app xd connected to the user system using teamviewer xd uninstalled ie and reinstalled the ie xd user confirmed he was able to login to the finance app xd issue resolved i: 3154 erp sid password reset Translated 3154 : erp sid password reset i: 3155 password reset Translated 3155 : password reset i: 3156 summary hello can log in my pc due to updating of intel the driver was not loaded properly i: 3157 would like some assistance on trying to change the email access as approved below for our partner team ergtyic wrtyvis manager internal audit pal sadipta mail am ntsowaem jfgslyde fw partner rtr team email restrictions hi erirtc do you think sonia will be able to expedite this i: 3158 documents folder is missing i: 3159 unable to connect to dg printer Translated 3159 : unable to connect to dg printer i: 3160 ticket update on ticket no Translated 3160 : ticket update on ticket no i: 3161 unable to print erp orders Translated 3161 : unable to print erp orders i: 3162 unable to connect to wifi i: 3163 unable to hear audio on skype i: 3164 when converting planned orders to production orders and releasing to print or just attempting to print anything from erp am getting the following error message connection to system production order interface app with destination production order interface vendor connc is not okay error when opening an rfc connection cpic call i: 3165 skype issue login issue Translated 3165 : skype issue login issue i: 3166 hr tool etime query Translated 3166 : hr tool etime query i: 3167 reset the password for cyvdluja oxrkfpbz on other telephony software i: 3168 unable to open outlook i: 3169 in machine status window the active hours of operation are displayed in one instance hours were pushed out of bar making information unreadable instead of showing it appears as adding pitcure i: 3170 we see order in mii which infact is material number need to know how this was entered as production order in dashbankrd i: 3171 when confirm qty threshold is set to system presents warning even when we confirm planned order qty which is exactly of planned order qty xd i: 3172 xd xd xd help for work order xd xd i: 3173 xd xd xd help for work ord xd xd Translated 3173 : xd xd xd xd xd help for work ord i: 3174 unable to login to ess Translated 3174 : unable to login to ess i: 3175 xd xd xd when converting planned orders to production orders and releasing to print am getting the following error message xd xd xd i: 3176 summary am unable to sign into skype getting pop up message saying there is problem with certificate any suggestions i: 3177 xd job job failed in job scheduler at i: 3178 connection to system production order interface app with destination production order interface vendor connc is not okay i: 3179 wrong stock status symbols displayed in distributor tool companycenter see attached email i: 3180 high priority gofmxlun kxcfrobq is getting errors in erp when she tries to create and order this is her main function and she is unable to proceed creating orders note from micthle follows m receiving server error when trying to create production orders in erp the error message says connection to system production order interface app with destination production order interface vendor connc is not okay error when opening an rfc conneciton cpic call system sid sid sid sid hrp other sid enter user id of user having the issue letyenm transaction code the user needs or was working with co describe the issue see message above from micthle i: 3181 order operation xd operator unable to final confirm the order using time event gergryth looked up confirmation details in erp and everything looks correct mii is throwing out pair formation error i: 3182 for order operation we final confirmed job in mii but operator was able to start the job again should ve not happened as per logic we have defined i: 3183 error reads xd connection to system production order interface app with destination xd production order interface vendor connc is not okay xd error when opening an rfc connection cpic call i: 3184 erp printing issue connection to system production order interface app with destination production order interface vendor connc is not okay error when opening an rfc connection contact i: 3185 erp printing issue connection to system production order interface app with destination production order interface vendor connc is not okay error when opening an rfc connection contact ext i: 3186 please usa ycimqxdn wtubpdsz vrtybundj access to ticketing tool to view tickets similar to what pwc is usaed each year let me know if you have any questions i: 3187 xd xd xd good morning xd xd need help assigning an account in crm the account was assigned to me by another se but the account has since been reassigned am unable to reassign the account since am not the primary sales xd i: 3188 business client login issue Translated 3188 : business client login issue i: 3189 message no dvsrepro zrfc Translated 3189 : message no dvsrepro zrfc i: 3190 kthvr sertce pm nwfodmhc exurcwkm rjodlbcf uorcpftk zdcheloy aevzsogn amar fw important account information hi it please investigate if this is accurate or spam is an older email address for our usa customer service email box it is listed on older literature that is still being used by customers we should keep it in operation please confirm i: 3191 expense report is blocked i: 3192 personal certificate error skype issue Translated 3192 : personal certificate error skype issue i: 3193 unable to print production orders on erp printer bd i: 3194 exporting contacts from outlook i: 3195 skype is not opening Translated 3195 : skype is not opening i: 3196 reinstall eu tool ewew wrcktgbd wzrgyunp Translated 3196 : reinstall their tool ewew wrcktgbd wzrgyunp i: 3197 sales doc still shows as open in the backorder database sales doc has been pgid yet it still shows as open in the backorder database rpbdvgoy hxasnzjc suggested enter ticket according to aobrelcs suchytro this sales doc still looks open xd i: 3198 windows and erp account locked i: 3199 blank call loud noise gso Translated 3199 : blank call loud noise gso i: 3200 attachment shows skype version etc am not able to join any skype meeting at this time due to this problem dvzgjsom ynpxqjlf company usa facility i: 3201 password reset help from password management tool password manager i: 3202 call for ecwtrjnq jpecxuty Translated 3202 : call for ecwtrjnq jpecxuty i: 3203 umzcxfah aoshpjiu plant controller us plant Translated 3203 : umzcxfah aoshpjiu plant controller us plant i: 3204 password reset Translated 3204 : password reset i: 3205 xd xd xd good morning xd xd keep receiving this error and have to close out of internet explorer each time when re open ie the website database needs to be re added to the compatibility view settings page this has happened to several other people in the ip department xd xd xd xd xd i: 3206 unable to login to hr tool erp systems i: 3207 hallo it ich archiviere meine mails in einer ordnerstruktur leider finde ich immer wieder ordner die pl tzlich keinen inhalt mehr haben was uft hier falsch gru achim anivdcor rbmfhiox sales manager sales germany company deutschland gmbh gesch ftsf hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 3207 : hello it I archive my mails in a folder structure unfortunately I always find folders that suddenly no longer have any content what is wrong here gru achim anivdcor rbmfhiox sales manager sales germany company deutschland gmbh managing director rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvh this message is unique and solely intended for use by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if you received this message by mistake, please notify the sender and post this message company posts select the following link to view the disclaimer in an alternate language i: 3208 windows password reset i: 3209 summary urgent help required crm issue crm ribbon is grey not active same issue with home tab and track and set regarding options i: 3210 when turn on crm it comes on as my name as manager get all the opportunities from all over the world want it to just have my crm information there i: 3211 ms excel analysis addin disabled i: 3212 see attachments other csr were having the same issues on i: 3213 xd xd xd it xd xd was in the process of entering my expenses when lost internet connection now when trying to complete my expenses receive the error below please unblock xd xd xd best i: 3214 xd job job failed in job scheduler at Translated 3214 : xd job job failed in job scheduler at i: 3215 allow to edit contact info and update back to erp this is r npr project go live i: 3216 outlook cannot connect to the server i: 3217 global it service request xd best Translated 3217 : global it service request xd best i: 3218 no audio in dell in tablet Translated 3218 : no audio in dell in tablet i: 3219 hallo liebe kollegen xd xd warum habe ich diese mail bekommen xd hat jemand etwas modifiziert in meine mail postfach xd xd dv zlettel mit freundlichen gr en best Translated 3219 : hello dear colleagues xd xd why did i get this mail xd has someone modified something in my mailbox xd xd dv note with kind regards best i: 3220 xd xd xd hello sir xd xd my erp accout had been locked can you help me and try to log in password management tool passoword system to unlock all the accout also can to log in xd xd xd xd best i: 3221 sid erp production system please reset my password cannot log in and need to perform the goods receipt on po i: 3222 need to configure printers Translated 3222 : need to configure printers i: 3223 hey team xd xd can you please reset my password for the telephony software interaction desktop xd xd i: 3224 system sid sid sid sid hrp other sid enter user id of user having the issue erp incident oss message provide access the same as this other user mutoralkv please open http and all necessary connections for erp and update in the oss message i: 3225 xd xd xd hello xd this morning installed intel updates but while processing this my computer has blocked and can not start windows can start it with safe mod could you please connect my pc with team viewer xd xd xd xd best i: 3226 xd xd xd hi xd please advise can not accesss collaboration platform it gives me this message xd xd xd kind i: 3227 usb ports not working again after replacement updated chipset drivers issue persists user wants the motherbankrd to be replaced phone i: 3228 locked out again of erp prtgghjk and sid this keeps happening way too often telephone i: 3229 jartnine called to give status update i: 3230 pl refer attachment i: 3231 receiving error with open order book nightly report please see attached screen shot i: 3232 hello team have recently joined esg group as programdnty engineer request you to provide me access for sid log in erp please do the needful i: 3233 xd xd xd network printer wy issue no print out xd xd xd xd warm i: 3234 hello while releasing word file drawings route card showing error message server offline and document not get printed required help in resolving the issue please do not print this email unless it is absolutely necessary spread environmental awareness confidentiality caution this communication including any accompanying documents is intended only for the sole use of the person to whom it is addressed and contain information that is privileged confidential and exempt from disclosure any unauthorised reading dissemination distribution duplication of this communication by someone other than the intended recipient is strictly prohibited if your receipt of this communication is in error please notify the sender and destrtgoy the original communication immediately i: 3235 see attached screenshot i: 3236 xd xd xd hello xd xd we are using the application database but can access it see below xd xd xd best i: 3237 xd xd xd hi xd xd there is problem in wifi connection since last three days also most of the lan connections are also not working xd xd pl check and resolve the issue aerp xd xd i: 3238 installation of godaddy certificate bundles gd bundle crt is not proper in sid we are getting peer certificate rejected by chainverifier error and not able to deploy and uacyltoe hxgaycze the functionality in dev please refer ticket no for earlier installation i: 3239 forgot password i: 3240 disable private address fields new and edit buttons on employee master crm ui i: 3241 xd xd xd dear it xd xd please help to reverse it the screen shot is as below xd xd xd best i: 3242 reinstall company barcode r ewew zlqfptjx xnklbfua Translated 3242 : reinstall company barcode r ewew zlqfptjx xnklbfua i: 3243 es kann von dieser adresse nichts empfangen oder gesendet werden Translated 3243 : Nothing can be received or sent from this address i: 3244 we have opened complaint contact person is bnmdslzh qyinrmaf we see in crm signed number to contact person bnmdslzh qyinrmaf when we opened this number we could see data other customet mail and number in complaint form are printed wrong data please see attached i: 3245 erp sid password reset request Translated 3245 : erp sid password reset request i: 3246 xd xd xd hi xd xd could you please re open this ticket still the request is not resolved xd xd i: 3247 xd job job failed in job scheduler at Translated 3247 : xd job job failed in job scheduler at i: 3248 query change the screen saver xd i: 3249 hi xd xd pm work center to be updated to pm order operations i: 3250 efyumrls gqjcbufx finance and administration manager is working with new pc win not company imaged xd everything is working except symantec endpoint protection can install it it goes in error xd as antivirus she has windows defender xd unfortunately when she run the vpn message appear and it seems that she can run the vpn due tu an antivirus not updated xd xd she will be out of office for few days this week and she really needs the vpn connection xd xd could you please check the issue xd xd i: 3251 skype meeting option is not showing up in calendar i: 3252 xd xd xd am unable to open the mails please refer the screen shot xd xd xd best i: 3253 xd xd xd gso xd xd please kindly unlock and reset password for erp sid account zhhtyangq i: 3254 name melerowicz language browser microsoft internet explorer customer number telephone summary hi it team would like to open pdf document but got the message before proceeding you must first launch adobe acrobat and accept the end user licence agreement my user melthryerj could you please help i: 3255 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3256 unlocked account using password management tool wgpimkle kijhcwur mail pm nwfodmhc exurcwkm re please unlock an id sugisdfy importance high sorry again and again could unlock through password management tool i: 3257 xd xd xd hi xd xd changed my password last week now the laptop won let me in xd xd kind i: 3258 dear it please help need to approve this but cannot the following expense report has been submitted for your approval personnel no uy expense report no start date end date total costs usd reimbursement amount usd to review this expense report in full please log into your universal worklist on manager self service get this message mit freundlichen gr en best i: 3259 lean tracker not working i: 3260 hi it team kindly please assist as we unable to process dn in ecs ecs system prompted below message hi sujitra kindly note that we unable to process dn in ecs and most probably this order will hold for today shipping pending for solution hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd asia regional distribution centre email i: 3261 dir nxd ac can be opened for edit as it seems to be locked in the database by wagfrtneh dir is within status ac all main originals seem to be checked in so please unlock in the database i: 3262 support r rechner messvorrichtung jionmpsf wnkpzcmv Translated 3262 : support r computer measuring device jionmpsf wnkpzcmv i: 3263 there is no option in purchasing check status is missed i: 3264 rechner we wu funktioniert nicht Translated 3264 : computer we wu does not work i: 3265 rechner r viotto funktioniert nicht Translated 3265 : computer r viotto does not work i: 3266 xd job job failed in job scheduler at i: 3267 node ldiwsf located at usa village is down since pm i: 3268 dear all my hana report can be refresh can you help to check bujiesrg zopcrshl specialist accounting and reporting i: 3269 truview application is down we are not getting the alarms and also saw today that the application is also down i: 3270 the tzornbldf account is used to in of the dashbankrds in reporting tool this will affect of sales employees managers directors as they will not be able to access their dashbankrds i: 3271 i tried to change my password by password management tool password manager got an error message but the password seems changed but don remember the entered code iewnguxv bufwxeiy has reset the windows password by can enter erp can you please reset me in password management tool passwprd manager i: 3272 when try to create skype meeting on outlook there is no skype meeting button on outlook so couldn crete meeting request please fix it i: 3273 xd job job failed in job scheduler at i: 3274 xd job job failed in job scheduler at i: 3275 xd xd xd gso xd xd could you please verify why ticketing tool tickets for dxyvfuhr uyfqgomx are classified as usa tickets he is not usa but ceo in europe of company checked two other users from switzerland were the message did not display as it is correct actually thought the location would determine if users are from usa or not can you advise what the issue with his user is it needs correction xd xd i: 3276 we need to revise the pirces for order to zno for all the items xd changed for item but cannot change for please check and help i: 3277 unable to login to erp sid account Translated 3277 : unable to login to erp sid account i: 3278 xd xd xd hello it team xd xd could you please create delivery note for below order xd we got the error message hence we cannot issue the delivery note xd xd so line item xd mm xd order qty pc xd delivery plant plant xd xd we can see available stock via md screen xd xd but we cannot create delivery note for this item we got below error message when we manually tried to issue the dn plant xd xd xd i: 3279 document number xd relevant document number pr can release with error in process no detail log or explanation xd i: 3280 outlook xd m not able to log on to outlook thiw morning xd restarted my computer several times without any effort xd xd i: 3281 excel is blank when open excel file i: 3282 erp sid account locked i: 3283 outlook Translated 3283 : outlook i: 3284 there are no accounting documents for billings and please help i: 3285 excel is blank when open the excel file i: 3286 hello help geetha outlook is not working at all system is very slow she has logged off and on thrice since morning pls look into the attached files for the error message and resolve at the earliest i: 3287 im erp netweaver portal ist es nicht mehr glich unter dem paramdntyeter feinnavigation die bestell bersicht aufzurufen xd siehe angef gte screenshots Translated 3287 : In the erp netweaver portal it is no longer possible to call up the order overview under the fine navigation parameter. xd see attached screenshots i: 3288 xd xd xd hi xd xd please find below error xd xd kindly help to resolve this issue on urgent basis xd xd xd xd xd best i: 3289 erp Translated 3289 : erp i: 3290 hello while route card release error message appearing and route card not get printed required help in resolving the issue please do not print this email unless it is absolutely necessary spread environmental awareness confidentiality caution this communication including any accompanying documents is intended only for the sole use of the person to whom it is addressed and contain information that is privileged confidential and exempt from disclosure any unauthorised reading dissemination distribution duplication of this communication by someone other than the intended recipient is strictly prohibited if your receipt of this communication is in error please notify the sender and destrtgoy the original communication immediately i: 3291 network outage unable to connect both lan and wi fi india location contact no i: 3292 xd job job failed in job scheduler at Translated 3292 : xd job job failed in job scheduler at i: 3293 sridthshar herytur am erpbasis support cedroapx blsktzgq fdmaluyo tvecikxn mvfnbces urbckxna nawkpdtx gwcvmbhn erp printing issue hi all again same problem repeats on erp printing for plant below printer error issue radyhthika kindly raise the request for same and concern team best i: 3294 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3295 xd xd xd hi xd xd my attendance tool password is not working kindly reset the same and give me the new password xd xd xd xd i: 3296 gdhyrts muggftyali am chefghtyn chnbghyg nwfodmhc exurcwkm rad regarding cell phone model hello chefghtyn gso will help on this am copying to them hello gso please help on this i: 3297 xd job hr payroll na failed in job scheduler at i: 3298 xd job hr payroll na failed in job scheduler at i: 3299 xd job hr payroll na failed in job scheduler at i: 3300 kbyivdfz zwutmehy mail xd am xd nwfodmhc exurcwkm xd rad need to know who the processor is xd xd hello xd xd need to know who the processor might be xd xd kindly check and let me know who have authority to approve of and xd xd internal purchase requisition can not be released so cannot issue po xd xd best i: 3301 please help to reset pass word for erp sid user id hertel best i: 3302 xd xd xd hello xd xd wireless companysecure outage of taiwan xd please help xd xd i: 3303 xd job job failed in job scheduler at i: 3304 xd job job failed in job scheduler at Translated 3304 : xd job job failed in job scheduler at i: 3305 erp account lock i: 3306 do you have any idea why received this message katfrthy cighyillo consultant microsoft outlook pm notwkdgr zvmesjpt undeliverable fw company ec mfg tooltion in us image removed by sender your message to couldn be delivered gmail com couldn confirm that your message was sent from trusted location kathleen cirillo office dhermosi action required recipient spf validation error how to fix it your organization email admin will have to diagnose and fix your domain email settings please forward this message to your email admin more info for email admins status code this error occurs when sender policy framdntyework spf validation for the sender domain fails if you re the sender email admin make sure the spf records for your domain at your domain registrar are set up correctly office supports only one spf record txt record that defines spf for your domain include the following domain name spf protection outlook com if you have hybrid configuration some mailboxes in the cloud and some mailboxes on premises or if you re an exchange online protection standalone customer add the outbound ip address of your on premises servers to the txt record for more information and instructions about configuring spf records see customize an spf record to validate outbound mail sent from your domain bkmk spfrecords original message details created date pm sender address recipient address fw company ec mfg tooltion in us error details reported error the message was rejected because of sender policy framdntyework violation unauthenticated email from hr tool com is not accepted due to domain dmarc policy please contact the administrator of hr tool com domain if this was legitimate mail please visit dsn generated by dmprmb namprd prod outlook com remote server mx google com message hops hop time utc from to with relay time pm dmprmb namprd prod outlook com dmprmb namprd prod outlook com mapi sec pm dmprmb namprd prod outlook com dmprmb namprd prod outlook com microsoft smtp server version tls cipher tls ecdhe rsa with aes cbc sha original message headers dkim signature a rsa sha relaxed relaxed company com selector date message id content type mime version bh pkhj cxiisgrkpfsbsxqqzvxrpkmbumybgcvme svvuxrjlaemyloakfqtpvvdnwyalrvmwpvltihleelrpztsatflwqaiwmpjkyor nks ricxtqctywsprvdutltoghtybewbfcuvwmapgzzbtnqsozevisyenotqkqmumxccbhzm received from dmprmb namprd prod outlook com by dmprmb namprd prod outlook com with microsoft smtp server version tls cipher tls ecdhe rsa with aes cbc sha id received from dmprmb namprd prod outlook com by dmprmb namprd prod outlook com with mapi id favot jean jacques fw company ec mfg tooltion in us thread top company ec mfg tooltion in us thread index adiuklhl ozbuesgkwoqwhfsrwaakvcg sender notwkdgr zvmesjpt date message id references in reply accept language en us content language en us ms has attach yes ms tnef correlator authentication results spf none sender ip is ms exchange messagesentrepresentingtype ms exchange meetingforward message forward originating ip ms office filtering correlation id ee fb bc defc microsoft exchange diagnostics dmprmb zwkfzfqhveyrfplvnznkjsmckqwehilqgumjnxnqprprqkdhi rvjjucnejqafzgtzjij acwuvpuzdunkhjwjqwvmyqktqtf sotovjkvrswnbmikostapagfwtlikizopxoinzelnwzgqwxhdfht kzmqla pajmwsrgslvqwosb oqmwgxvfmlsw zvgixwksid qzzitpqyludriottgkxzayeeyzavgeudngmojgvhdtnqwuiojybnp xet hrgrzftydsb hkcyiuezslcybgt nrswzhjzgmtanpptqedo vwvcyqyepupocqfthezolpfhxzkwojpdnpwkzpomtdksxjgwuzrcjk gbfmvjrqggvlyaikcekgjrnwpozuhpverkfxyf bxtnfjdvsrkxcifcvddkrkgwwnfnaklxdg cheincsucpegyhrjxtdziuemaklov pefvrpt qnxldyyaiuersials rrranhcqjepzugqvggjsdvnkibmjwqntjhjs xghabfqwviwctkdxqupnpbikhjtjiylmevfzllvnwoggkaenkvbsoltryjexff prcpejfgu hihognmjetrokkpaemfapugfinxzgnbwwvkifmzcsfrcsrewvfocmgqhnl vh uowqrijelr yuhmlbonhp mlumfitatgzwedr orpaenclbrvinpcrdnfpzm xfdqqrspoembzawfucemmdkgttfznydbdftagjq czljtqjboyohmsdkaw yjguwxlcemjtijzkysxvmpdwujtas microsoft antispam uriscan bcl pcl ruleid srvr dmprmb microsoft antispam prvs exchange antispam report uacyltoe hxgaycze uriscan exchange antispam report cfa uacyltoe hxgaycze bcl pcl ruleid srvr dmprmb bcl pcl ruleid srvr dmprmb forefront prvs fca forefront antispam report sfv nspm sfs dir out sfp scl srvr dmprmb dmprmb namprd prod outlook com fpr spf none ptr infonorecords mx lang received spf none protection outlook com company com does not designate permitted sender hosts spamdiagnosticoutput spamdiagnosticmetadata nspm content type multipart mixed boundary dmprmbfdedabcbeaefcadmprmbnamp mime version originatororg company com ms exchange crosstenant originalarrivaltime utc ms exchange crosstenant fromentityheader hosted ms exchange crosstenant id eee cb bdeb ms exchange transport crosstenantheadersstamped dmprmb i: 3307 eagsm the service security tool password manager is stopped or disabled or is not installed on the target machine i: 3308 account locked unable to login to ess portal Translated 3308 : account locked unable to login to ess portal i: 3309 xd job job failed in job scheduler at Translated 3309 : xd job job failed in job scheduler at i: 3310 lv not printing Translated 3310 : lv not printing i: 3311 xd job job failed in job scheduler at i: 3312 ms crm configuration in outlook i: 3313 sound coming from computer while connecting any device or moving monitor i: 3314 xd job snp heu regen failed in job scheduler at i: 3315 summary issue with the sound of the laptop there no sound i: 3316 xd job job failed in job scheduler at i: 3317 hello all xd how are you doing xd xd please can you put this email in general junk xd xd it a spam xd thx xd gergryth xd xd i: 3318 xd job co val update crosscomp failed in job scheduler at i: 3319 xd job job failed in job scheduler at Translated 3319 : xd job job failed in job scheduler at i: 3320 xd job job failed in job scheduler at i: 3321 xd job job failed in job scheduler at i: 3322 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 3323 xd job job failed in job scheduler at i: 3324 alwaysupservice exe for plm conversion server on hostname plm conversion server on hostname plm conversion server on hostname plm conversion server on hostname i: 3325 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar request to reset microsoft online services password for request to reset user password the following user in your organization has requested password reset be performed for their account first name allert last name herghan consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 3326 inquiry on erp status unable to access ess portal Translated 3326 : inquiry on erp status unable to access ess portal i: 3327 xd job job failed in job scheduler at i: 3328 xd job bkbackup tool powder prod full failed in job scheduler at i: 3329 xd job sid hoti failed in job scheduler at i: 3330 xd job sid hoti failed in job scheduler at i: 3331 vip ticket all having reviewed this with joothyst and clrgtydia the problem is not caused by the exclusion list or the cm workflow the problem is because of security configuration where joftgost receives items in the universal worklist but no mail notification we traced this to screen sud where in the screenshot attached to this incident you will see the mail address for joftgost is incorrectly please update this to dear madam sir am no longer receiving workflow notifications to my outlook inbox how can restore these with kind i: 3332 xd job job failed in job scheduler at Translated 3332 : xd job job failed in job scheduler at i: 3333 ms crm dynamics deployment query Translated 3333 : ms crm dynamics deployment query i: 3334 efbwiadp dicafxhv pm shesyhur posrt inc uacyltoe hxgaycze message hello shesyhur have just checked this issue was reported previously after the upgrade users are getting email about uacyltoe hxgayczeing email configuration please be aware that this is only part of the upgrade and can be safely deleted i: 3335 yahoo emails skype team viewer not loading internet not working Translated 3335 : yahoo emails skype team viewer not loading internet not working i: 3336 xd job job failed in job scheduler at i: 3337 neerthyu agrtywal xd pm xd nwfodmhc exurcwkm xd fw uacyltoe hxgaycze message xd importance low xd xd hi xd xd received this email which shows that it has been sent from my id where as have not sent any such uacyltoe hxgaycze email pl look into this matheywter and advise xd xd i: 3338 sound issue issue i: 3339 xd job job failed in job scheduler at i: 3340 xd job job failed in job scheduler at i: 3341 erp log on balancing error vpn issue Translated 3341 : erp log on balancing error vpn issue i: 3342 is there anyway you can add our network drives back to all computers or send instructions on how to add to each computer i: 3343 xd job job failed in job scheduler at i: 3344 xd xd xd hello xd please helo for subject matheywter pls see below snapshot xd xd xd i: 3345 xd job apo cif psid ap failed in job scheduler at i: 3346 xd job apo cif pds am failed in job scheduler at i: 3347 xd job apo cif pds am failed in job scheduler at i: 3348 xd job apo cif pds eu failed in job scheduler at i: 3349 xd job bkwin infonet full failed in job scheduler at i: 3350 xd job job failed in job scheduler at Translated 3350 : xd job job failed in job scheduler at i: 3351 unable to access engineering tool due to vpn i: 3352 xd job sid filesys failed in job scheduler at i: 3353 not able to login to vpn xd advised the caller to restart the system and check the internet connection xd advised the caller to logon to the company vpn xd caller confirmed that he was able to login xd issue resolved i: 3354 not sure why or how but this error came up several times while attempting to add an email to crm at the bottom of this email it shows it added the email to crm but cannot find it anywhere when click on the view in crm get below error why is it when click on it opens up new large crm page and shows created calendar date but it doesn show in my regular crm even after closing it and reopening it this is what shows in my regular crm i: 3355 xd xd xd am experiencing problems with elt folders in collaboration platform my collaboration platform view for the elt meetings is not current and is not updating as documents are uploaded xd xd was told it has to do with my time setting on my pc lpoebzsc grknswyo tried to reset it but the system did not reset it xd xd please look into it and fix the problem xd xd xd i: 3356 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 3357 ms crm installation xd connected to the user system using teamviewer xd installed the mscrm add in for outlook xd launched the outlook xd user able to see the crm add in on outlook xd issue resolved i: 3358 zbxljotu cbunzrak ihre rechnung zur bestellung nr vom error account to order no from Translated 3358 : zbxljotu cbunzrak your invoice for the order no from the error account to order no from i: 3359 outlook configuration and vpn connectivity i: 3360 engineering tool login issue xd connected to the user system using teamviewer xd unlocked the user account xd caller confirmed that he was able to login xd issue resolved i: 3361 urgent help required outlook to crm mfg tooltion issue need crm tab on my outlook i: 3362 dell skype audio not working xd connected to the user system using teamviewer xd updated the sound drivers restarted the pc xd user able to listen to the audio over the skype calls xd issue resolved i: 3363 hello could you please help us to add the customers below to engineering tool software maquinados de precision de mex magonza sa de cv evercast a de v tecnologia en maquinados hidra saludos johjkse luartusa rahymos representante de ventas zona bajio este mensaje est destinado al uso exclusivo de la persona quien est dirigido puede contener informaci privilegiada confidencial que est exenta de ser revelada conforme con lo dispuesto en la legislaci vigente toda difusi distribuci o reproducci de este mensaje por parte de otra persona que no sea el receptor al que est destinado queda estrictamente prohibida si recibe este mensaje por error se ruega que lo notifique al remitente borre este mensaje company posts select the following link to view the disclaimer in an alternate language este mensaje est destinado al uso exclusivo de la persona quien est dirigido puede contener informaci privilegiada confidencial que est exenta de ser revelada conforme con lo dispuesto en la legislaci vigente toda difusi distribuci o reproducci de este mensaje por parte de otra persona que no sea el receptor al que est destinado queda estrictamente prohibida si recibe este mensaje por error se ruega que lo notifique al remitente borre este mensaje company posts select the following link to view the disclaimer in an alternate language Translated 3363 : hello could you please help us to add the customers below to engineering tool software maquinados de precision de mex magonza sa de cv evercast a de v tecnologia en maquinados hydra greetings johjkse luartusa rahymos bajio sales representative this message is intended for the exclusive use of the person to whom it is addressed may contain confidential privileged information that is exempt from being disclosed in accordance with the provisions of current legislation, any dissemination, distribution or reproduction of this message by another person other than the recipient for whom it is intended is strictly prohibited if it receives this message in error, please notify the sender delete this message company posts select the following link to view the disclaimer in an alternate language this message is intended for the exclusive use of the person to whom it is addressed may contain confidential privileged information that is exempt from be disclosed in accordance with the provisions of current legislation t Any dissemination, distribution or reproduction of this message by someone other than the intended recipient is strictly prohibited if you receive this message by mistake, please notify the sender delete this message company posts select the following link to view the disclaimer in an alternate language i: 3364 xd connected to the user system using teamviewer xd help the user login to the portal xd issue resolved i: 3365 ie issue Translated 3365 : ie issue i: 3366 switch company na usa usa shippingarea access sw and company na usa usa furnace access sw located at usa is down since pm et i: 3367 i drive not connecting xd xd tried with ip address no go xd checked server name no go xd user mentioned that he changed his password for vpn and then not able to connect to drive xd rest all drivers are working fine and accessible xd informed user to get in touch with one of colleagues and get the screen shot of all drivers he has access to also to onfiirm drive xd tried mapping drive with password nogo xd xd waiting for user email i: 3368 hello could you please help us to add the customers below to engineering tool software maquinados de precision de mex magonza sa de cv evercast a de v tecnologia en maquinados hidra saludos whoyizfp gclnfkis sr sales engineer i: 3369 xd xd xd m trying to add change item to my er but get the error listed below xd xd xd xd knethyen grechduy xd engineer product engineering xd company xd xd xd xd xd company inc technology way usa pa www company com xd xd xd xd i: 3370 xd xd xd hello have this error while sending trs connected to vpn can you help me i: 3371 urgent help required outlook to crm mfg tooltion issue problem detail after set regarding calendar item to an account it doesn show in the assigned crm account record ph i: 3372 ticket update for ticket no Translated 3372 : ticket update for ticket no i: 3373 skype error getting skype certificate error Translated 3373 : skype error getting skype certificate error i: 3374 unable to connect to erp modules even after connecting to vpn logon balancing error xd it was working minutes back i: 3375 can not submit discount through collaboration platform xd xd says access denied must add to favorites had this happen before i: 3376 unable to connect to mobile broadband i: 3377 account locked i: 3378 interface fastethernet company johthryugftyson city ap on company na usa johthryugftyson city access sw company com is down since am on et xd xd logged on to switch found interface is down xd xd edt lineproto updown line protocol on interface fastethernet changed state to down xd edt link updown interface fastethernet changed state to down xd company na usa johthryugftyson city access sw xd i: 3379 erp sid account locked i: 3380 account locked i: 3381 account locked i: 3382 name ksgytjqr ojdukgzc language browser microsoft internet explorer customer number telephone summary cannot get the volume up high enough it was fine yesterday now not high enough for conference calls i: 3383 password reset Translated 3383 : password reset i: 3384 order took minutes to batch over from one work center bucket to the next xd xd order xd operation xd operation xd xd this has happened on multiple other orders as well xd xd i: 3385 xd xd xd hi xd am not able to get into outlook any more keep getting messages telling me its stopped working and do want to restart in safe mode to do repair have had to send this from my phone i: 3386 need the password management tool link i: 3387 unable to connect to tc i: 3388 usa village clappdico company na usa clappdico wireless access sw is down since at am et on xd gigabitethernet connection to clappdico wireless switch company na usa clappdico access sw i: 3389 internet explorer issue Translated 3389 : internet explorer issue i: 3390 erp sid account unlock and password reset i: 3391 i try to change my log in password and the system keeps stating the old password is not correct and disagree because tried so many times being careful know typed in my old password correctly i: 3392 erp sid password reset Translated 3392 : erp sid password reset i: 3393 please unlock tpfghtlugn erp hana sid do not reset password i: 3394 observing below alert in monitoring tool since am on et xd ksfs company company com is reporting down status on hostname please investigate xd cpu load is showing i: 3395 good morning crm on my mobile device will not work please see below screen shot wghjkftewj cid dbfc ed e de i: 3396 unable to get emails synced on samsung mobile device i: 3397 password reset ad Translated 3397 : password reset ad i: 3398 users are unable to connect to machine in shop floor machine name mazak contact n i: 3399 jurten setgyrt am stefyty parkeyhrt qikvnjzc evmrcqug aw pm tool for sd missing currency table in pm tool for sd prod hello stefyty any progress on that topic we are running in trouble because we have to send out two proposals but cannot because of missing pricing best i: 3400 office reinstall i: 3401 lunjuws if you recall we had this new form developed when we were there for the tmb project specially as per bakyhrer huhuyghes requirement please don print this email unless you really need to this will preserve trees on planet earth smxoklny hbecskgl damuphws arkulcoi an les re need little help please hcytr is this format the one that bakyhrer huhuyghes required with their bin numbers on the delivery note shathyra are you aware of the special requirement for bakyhrer huhuyghes delivery notes forgot about it until hcytr mentioned this best i: 3402 chanthrydru is this format the one that bakyhrer huhuyghes required with their bin numbers on the delivery note shathyra are you aware of the special requirement for bakyhrer huhuyghes delivery notes forgot about it until chanthrydru mentioned this best i: 3403 please include field to enter aqzz erpquery memepr xd xd i: 3404 xerox in our office will not turn on no power outlet where it plugged in is good i: 3405 rechner ewewx olympus kein zugriff auf hostname eu tool glich Translated 3405 : computer ewewx olympus no access to hostname eu tool was like i: 3406 dear sir the printer at msg second floor awyrthysm file awyrthysm is not working please rectify the problem immediately i: 3407 xd xd xd hello xd xd xd as many times before after system password change ms outlook doens start xd attached printscreen xd xd xd xd xd xd best i: 3408 xd job job failed in job scheduler at Translated 3408 : xd job job failed in job scheduler at i: 3409 rzucjgvp ioqjgmah pm subgtybaryuao hs nyifqpmv kfirxjag re erro log reg hi sutyu this seems to be related to co issue am requesting co person to look into this issue hi ramdntyassthywamy please help mr subgtybaryuao on this i: 3410 system sid sid sid sid hrp other sid enter user id of user having the issue magerjtyhd yadavtghya schgtewmik transaction code the user needs or was working with zcopc describe the issue please remove the plant controller role from all three users have discussed with uylvgtfi eovkxgpn he and obdphylz qaeicrkz do not need access again to zcopc qbjmoihg nbgvyqac needs it but would prefer if you could assign the role co team view for her instead of plant controller if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 3411 install eu tool und bls rechner olympus xwirzvda okhyipgr i: 3412 hallo xd xd bitte schreib und leseberechtigung r user maerza auf den ordner staebefertigung leitung einrichten xd xd danke xd Translated 3412 : hello xd xd please write and read authorization r user maerza on the folder staebefertigung line set up xd xd thank you xd i: 3413 dss Translated 3413 : dss i: 3414 fbgetczn jlsvxura xd am xd nyifqpmv kfirxjag xd wjkzgyxh pktcqbxu xd aw unterhaltung mit nyifqpmv kfirxjag xd xd hello hr ramdntyassthywamy xd sebfghkasthian asked me to send you the below attached screen shots xd xd xd xd xd xd mit freundlichen gr en best i: 3415 good day jfhytu mthyuleng senior buyer company anniversary logo i: 3416 setup new ws ewew jionmpsf wnkpzcmv Translated 3416 : setup new ws ewew jionmpsf wnkpzcmv i: 3417 drucker von cvd we einrichten am pc in der qs Translated 3417 : set up cvd we printer on pc in qs i: 3418 xd xd xd hello help xd xd outlook is not getting updated automatically and periodically xd time to time need to update send and receive folder this issue persists since last sep xd xd system was given to the it dept here on but there is no improvement xd xd xd xd i: 3419 probleme mit collaboration platform infopath difozlav dgbfptos i: 3420 hello xd with component we see wrong subcontracting demand in erp coming from parent xd the strange thing is that the po referenced is not subcontracting po xd we need to understand what going wrong here and need to remove the incorrect demand xd xd xd i: 3421 volume label dat hostname data efce on server is over xd space consumed space available g i: 3422 owa does not open xd error page can not be displayed i: 3423 volume label sys hostname ab on server is over xd space consumed space available g i: 3424 erp sid finance xd user tempuser changed the layout in fb jinf to be the default setting for everyone we tried to figure out which layout was the default before have chosen erp for now but don know exactly if this really was the default xd this happens from time to time some users are not aware that they set default for everyone i: 3425 bitte netzwerkverbindung r rechner vhw herstellen alicona messraum cs halle a Translated 3425 : please establish network connection r computer vhw alicona measuring room cs hall a i: 3426 xd xd xd hello xd xd please reset my appreciate hub password xd xd i: 3427 anmeldung bei account helftgyldt nicht glich fehlermeldung das angesprochene konto ist momentan gesperrt und kann nicht r die anmeldung verwendet werden Translated 3427 : Registration with account helftgyldt does not look like an error message. The account addressed is currently blocked and cannot be used for registration i: 3428 the i: 3429 outlook takes too much time to open i: 3430 unable to change password through password management tool i: 3431 anmeldung bei account jncvkrzm thjquiyl nicht glich fehlermeldung das angesprochene konto ist momentan gesperrt und kann nicht r die anmeldung verwendet werden Translated 3431 : Registration at account jncvkrzm thjquiyl not equal to error message the account addressed is currently blocked and cannot be used for registration i: 3432 hi please provide access to wy printer machine tool business for below trainee trainee name blapmcwk dgrkbnua login id vvkusgtms computer no awyw i: 3433 gso xd please open an it ticket for the erp co group to review the issue below with tandd delivery where pgi does not work because of co assignment having different profit centers xd xd i: 3434 hi team please unlock the windows account nakagtwsgs user name qwghlvdx pjwvdiuz best i: 3435 hello one of the workman aqihfoly xsrkthvf whose user id is hsh is not able to login to ess as his user id locked he is kiosk user please re set his password and confirm noscwdpm akiowsmp manager hr shared services center i: 3436 my profile shows different pictures on collaboration platform outlook skype see attached screenshots the correct one should be the one shown on attachment actual jpg i: 3437 xd job job failed in job scheduler at xd xd am unable to release guest error failed to unfreeze guest system network mode xd rpc function call failed function name unfreeze target machine xd rpc error the remote procedure call failed xd code xd i: 3438 dear collegues need password reset for erp hrp modul username rethtyuzkd gru i: 3439 marcom team has assigned task of proofreading it requires me to download into dropdox i: 3440 erp passwort mal verkehrt eingegeben bitte erp account freischalten Translated 3440 : erp password entered incorrectly please activate erp account i: 3441 hello team can you please add rtpcnyhq ceqmwkhi to the materials management purchasing group in ticketing tool inxsupmy zhwmifvx team lead ssl sourcing and logistics global it i: 3442 xd job bwhrertran failed in job scheduler at i: 3443 india coating interface vlan on company ap ind india coating dmvpn rtr is down since pm et i: 3444 xd xd xd hi xd xd have changed the password of engineering tool days back it showed that it is successfully changed xd still am not able to login xd xd please check the error message in the below image xd xd xd i: 3445 hello xd can not add new customer while making new engineering tool xd entered the country and the city xd there used to be button new but not anymore xd xd i: 3446 sw temperature sensor yellow on company ap chn apac access sw xd hardware component warning or critical state detected i: 3447 outlook not working receiving message that it is not licensed product i: 3448 xd xd xd hello xd xd unable to proceed with opening new customer account xd xd please advise as what the issue is xd xd xd i: 3449 xd xd xd team xd xd was recently advised that my password needed changing xd went to the password manager site and changed passwords xd xd all passwords for different things changed except one my startup to log onto computer failed to change how do change this one xd xd i: 3450 boot up issue with the laptop user requesting local it to check the laptop as the pc is not booting up at all user tried to plug in the power adaptor still no go service tag asset tag ph i: 3451 name sndaofyw jetcxpda language browser microsoft internet explorer customer number telephone summary my computer keeps going off line i: 3452 xd job job failed in job scheduler at i: 3453 xd job sid filesys failed in job scheduler at i: 3454 user not recieving email on the iphone xd checked the user account all fine xd checked the user accont on the ecp site all fine xd advised the user to contact vendor xd xd i: 3455 name rgtyob lafgseimer language browser microsoft internet explorer customer number telephone summary reset password today now skype will not take password i: 3456 xd job sid filesys failed in job scheduler at i: 3457 name uprmwlgb kirvecja language browser microsoft internet explorer customer number telephone summary software installation i: 3458 unable to print erp jobs from prtqv after routing it from prtqv i: 3459 change printer from prtqv to prtqv i: 3460 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar amar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name angyta hgywselena last name brescsfgryiani acgyuna consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 3461 please assign bill the necessary permissions so that he can open the drawings see attachment i: 3462 hello have previous tickets for an issue that am experiencing again today am not sure why keep having this issue can someone help me understand if it is something am doing wrong this is something use daily and need access to inc inc description when try to look at configuration for rqfhiong zkwfqagb get an error while trying to invoke the method java util list iterator of null object loaded from local variable locallist i: 3463 please investigate the issue with the product selector currently no data is being loaded on the company website i: 3464 no display on the external monitor connected through docking station xd xd request you to kindly look into video display issue on my computer where do not get display on the external monitor when docked to the docking station have tried on other docking stations and have not been able to get the display on the external monitor ve had this issue for over three months and it was intermittent earlier xd had discussed this with ghkkytu and he is aware of this issue as we have worked on it together xd we have reinstalled video drivers but issue still persists will leave the computer with security xd request assistance on the same xd i: 3465 ticket update on ticket no Translated 3465 : ticket update on ticket no i: 3466 unable to print from printer install driver Translated 3466 : unable to print from printer install driver i: 3467 mscrm outlook not opening xd connected to the user system using teamviewer xd reconfigured the user profile xd launched outlook xd caller confirmed that he is now able to see the emails on outlook xd issue resolved i: 3468 stays on the open screen and won complete been like this for days in an off site meeting so not be able to answer phone for while i: 3469 unable to access windows account i: 3470 auf den totmannhandys ist eine st rung xd techn st rung dps request fehlt Translated 3470 : on the dead man's cell phones there is a fault xd techn fault dps request missing i: 3471 loading crm mobile app times out and returns to phone desktop before completing download i: 3472 user haveing issues with the skype audio xd connected to the user system using teamviewer xd checked the audio settings xd gave uacyltoe hxgaycze call to the user all fine xd issue resolved i: 3473 xd job job failed in job scheduler at i: 3474 i made mistake and change the permissions do basically everything on the following page wanted to see if there was way to restore all permissions to what they were yesterday xd xd xd i: 3475 user wanted help to check if email was spam xd connected to the user system using teamviewer xd assigned the ticket to the spam xd educated the user on the same xd issue resolved i: 3476 xd xd xd hello xd am having problem with skype am not able to find my colleagues xd xd i: 3477 ie cleanup Translated 3477 : ie cleanup i: 3478 unable to access bex analyzer as nothing happens when click pc name lmdl phone i: 3479 password reset needed Translated 3479 : password reset needed i: 3480 ticket update inplant Translated 3480 : ticket update implant i: 3481 outlook asking to reactivate i: 3482 unable to print from the printer hp color laser cp pcl cl xd connected to the user system using teamviewer xd the printer keeps asking to update drivers xd tried to install the drivers no go xd contact xd computer name lhql xd user wants to have local it look as there are many users faceing similar issue i: 3483 usb ports not works at time i: 3484 upgraded the ie to on uacyltoe hxgaycze workstation i: 3485 user wants to change the erp printer prt prtqv to prt prtqz i: 3486 windows account locked i: 3487 name bonhyb knepkhsw language browser microsoft internet explorer customer number telephone summary am trying to find an expense report to approve have an email that says have one to approve it is not showing up i: 3488 crm app installation Translated 3488 : crm app installation i: 3489 cannot connect to hostname engineering application going through company vpn can access hostname hostname and hostname servers through the vpn can access hostname at the office can not access remotely through vpn company com i: 3490 user has samsung galaxy device with android as the os on it he wants to install and use the dynamics crm app but that app requires android as minimum i: 3491 ticket update on inplant i: 3492 configair server in uacyltoe hxgaycze environment sid responds with internal server error error while trying to invoke the method java util list iterator of null object loaded from local variable locallist xd this happens when log on erp with language de german it is happening for both models csscdrill and mill model xd in case log on erp in en language the csscdrill model is working fine but the mill model model comes up and when select product platform the system hangs up at i: 3493 hostname application plm scheduled tasks monitor on node hostname is in critical state i: 3494 password reset Translated 3494 : password reset i: 3495 eu tool is having issue since we upgraded to bit keeps saying out of memory phone i: 3496 could you please confirm if this upgrade occurred was out of town during the week of the upgrade and was never prompted for anything so suspect that this didn happen if so ll need to schedule an upgrade for this computer please i: 3497 examples xd xd xd xd xd problem as discussed in key user call from i: 3498 xd job job failed in job scheduler at Translated 3498 : xd job job failed in job scheduler at i: 3499 xd xd xd xd xd submitted several reports couple of days ago and now it will not let me create new report xd need this issue resplved xd i: 3500 ticket update on inplant i: 3501 need access to user collaboration platform xd xd xd summary cowqyjzm fzsxgapt has informed me that stefyty smhdyhtis collaboration platform for business will be permanently deleted in days need access to his collaboration platform to see if there is any information on their that we need i: 3502 hello xd material shows pieces demand in plant for parent mm which refers to subcontracting po xd the po has been closed already the component had been shipped to the vendor with movement and has been booked out with the movement together with the movement for the good receipt xd why shows erp still demand of pieces for that po xd how can this wrong demand been cleaned xd i: 3503 i can access my collaboration platform it asks me my username and password and then goes into constant loop of those two fields once entered never actually get to collaboration platform i: 3504 vitalyst unable to see customer list in crm see attached screenshot user id lehhywsmat contact no i: 3505 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rbozivdq gmlhrtvp hi jonnht bnoupaki cpeioxdz hello rbozivdq gmlhrtvp it not showing as locked can you tell me what the error you re getting bnoupaki cpeioxdz now can log in not sure why was temporarily unable to do so all seems to be ok i: 3506 hello have this error when starting erp netweaver can you please help to solve unrbafjx reyshakw global portfolio manager advanced materials pcd i: 3507 reset the erp sid password as marcel had issues logging in after resetting his password using password management tool i: 3508 unable to connect to home printer i: 3509 erp sid account unlock i: 3510 create purchase requisition with purchasing does not work any more got following error massage xd xd action could not be performed xd no data found for employee etc inform system administrator i: 3511 source ip source port source ip geolocation lisbon prt destination ip destination hostname tims iphone system name not found user name not found location usa sms status not found field sales user yes no no dsw event log see below event data related events event id event summary vid server response with anubis sinkhole cookie set probable infected asset occurrence count event count host and connection information source ip source port source ip geolocation lisbon prt destination ip destination hostname tims iphone destination port destination mac address c d connection directionality incoming protocol tcp http status code device information device ip device name isensor company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail vid server response with anubis sinkhole cookie set probable infected asset classification none priority action accept impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xabbf ack xadc win tcplen tcp options nop nop ts pcap security correlation data dhcpd dhcpack on to c d tims iphone via eth relay lease duration renew ascii packet pcap ascii pcap ascii hex packet pcap hex c e aef wj a cde cb bbf p adc c au eaf ee ec e n http f f moved tempo da rarily server e a nginx date thu a da e gmt cont e f ent type text b cd fe f ea tml connection cf da f fb close set cook e ie anbtr cd dc b sid bcfac doma de c ae dd in myslidz com ac f ea location http ff e ed xsso api mysli e fd dz com cdd cb ad cfac go ht af fe d tp xsso api my ae df slidz com cd dc bcfac pcap hex event id event summary vid server response with anubis sinkhole cookie set probable infected asset occurrence count event count host and connection information source ip source hostname in addr arpa anubisnetworks com source port source ip geolocation lisbon prt destination ip destination hostname tims iphone destination port destination mac address c d connection directionality incoming protocol tcp http status code device information device ip device name isensor company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail vid server response with anubis sinkhole cookie set probable infected asset classification none priority action accept impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xabba ack xfdce win tcplen tcp options nop nop ts pcap security correlation data dhcpd dhcpack on to c d tims iphone via eth relay lease duration renew ascii packet pcap ascii pcap ascii hex packet pcap hex c e ceb w c bfb af cb abb v j dce a eaf ee ab e http bd ok server e da nginx date th u sep a d fe gmt con d f tent type text dc da ee fe html connection c d ff close set coo b e kie anbtr d ddc b fd bcfac dom ed ed a fd ain myslidz com da e d f content encodi a da da fb ng gzip pcap hex e i: 3512 i have created new ship to for the sold to via distributor tool xd this ship to can be found either in ecc nor in distributor tool xd you can only see that it actually exists in crm xd same situation as with ship to xd xd all the data are complete in crm and the system does not show any errors but for some reason these ship to are not transferred into ecc xd could you please look at that xd i: 3513 source ip xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log xd xd event data xd xd related events xd event id xd event summary vid server response with anubis sinkhole cookie set probable infected asset xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname in addr arpa xd anubisnetworks com xd source port xd source ip geolocation lisbon prt xd destination ip xd destination hostname ekxl xd destination port xd destination mac address a ba ec xd connection directionality incoming xd protocol tcp xd http status code xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid server response with anubis sinkhole cookie set probable infected asset xd classification none priority action accept impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xfae ack xdddde win xb tcplen xd pcap xd xd security xd xd correlation data xd dhcpd dhcpack on to a ba ec ekxl via eth relay lease duration renew xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd fa ec xd fab af c fae h xd dd dde f h http xd e bd ok ser xd e da ver nginx date xd thu sep xd d gmt xd fe d content type xd dc da ee ext html connec xd fe f tion close set xd d ff a d cookie anbtr xd dbcccbbe xd b ffafbba xd fd ed sid domain space xd d e dd fe mbiance com con xd d f a tent encoding xd ad af zip xd xd pcap hex e i: 3514 please provide the following xd xd what order number xd xd xd what material or item number xd xd what warehouse location xd plant to plant xd xd issue description error message no message i: 3515 the footer with banking details has not printed on inwarehouse tool the customer has rejected this inwarehouse tool until the footer details are corrected i: 3516 unable to detect the dell usb adapter xd xd Translated 3516 : unable to detect the dell usb adapter xd xd i: 3517 india high latency i: 3518 analysis add in getting disabled i: 3519 computer has lost connectivity to the network shrugott tyhuellis usa facilities mgr i: 3520 computer has partial connectivity to network cannot get to all drives needed shrugott tyhuellis usa facilities mgr i: 3521 this computer is moving to new location the new setup needs to be completed so production is not interrupted xd note shrugott tyhuellis or not have entered ticket for this move i: 3522 brgtyad ahdwqrson is the operator in this area his work is at standstill which also affects subsequent operations nearing end of month the product needs to move and computer work needs to be complete i: 3523 in the next week the operators control desk is moving to make room for other equipment this computer setup has computers of which are connected to the furnace operations for monitoring by operators in the area the table needs to physically move and the cables need to be re activated in the new location the other computer in this area is connected to shop floor app and shared files for the operators to access their work files all of this must work in the new location i: 3524 this is location for the access database for our rolling information currently need to interrupt their data entry to extract information for project also the database stopped calculating the density number can you fix this my limited experience with access doesn help me fix this problem looks like the path is lan rolling contact i: 3525 aufl sung am bildschirm von pc eemw sehr schlecht nderungen werden nicht bernommen Translated 3525 : resolution on the pc eemw screen very poor changes are not adopted i: 3526 hello team please check the below error am getting during logging in for engineering tool have changed my laptop its details are as follows computer name service tag model name aiul dvzlq latitude username kadjuwqama earlier was using engineering tool with the below laptop and username username kadjuwqama laptop name awyl errors during engineering tool login are as mentioned below same error get during company engineering tool log in please do the needful description i: 3527 please reset petrghada sid password as soon as possible i: 3528 laptop will not start up while docked blue power light on the lights up briefly then goes off i: 3529 xd xd xd hello team xd xd please check the below error am getting during logging in business client xd xd xd i: 3530 bluetooth headset bekommt keine verbindung mit pc Translated 3530 : bluetooth headset does not connect to pc i: 3531 unable to open outlook i: 3532 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd xd printer name make model wy xd xd detailed description of the problem wy printer to be added to my pc xd xd type of documents not printing email excel word etc xd i: 3533 need reset password erp sid system Translated 3533 : need reset password erp sid system i: 3534 xd job job failed in job scheduler at i: 3535 hello please add new csr wkgpcxqd vobarhzk to following distribution lists email bucket company csr in poland are shatryung company sales team company promotion emea to add esguiazn pqdjtzin to bucket and xhnmygfp bnpehyku to company promotion emea best i: 3536 see attachment contact uk i: 3537 when call the germany office with telephony software the can hear me but can hear them this happended twice today last interaction id but also some weeks ago xd have no problems when call other people inside and outside the company i: 3538 blocked inwarehouse tool in our system reason for blocking document has been saved foreign trade data incomplete same as ticket no xd after first analysis infos were available in mm for concerned materials we know how to fix the issue but before completing the document please provide information or make further analysis in order to avoid this issue in the futur i: 3539 hi am trying to take training course and when start the course the videos won play please advise vkzwafuh tcjnuswg cmp sr application eng i: 3540 optiplex messmachine berirtch zedghkler i: 3541 xd xd xd hi it team xd xd kindly please assist as unable to access sid in my system xd xd attached for your reference i: 3542 please reset my password in erp sid erp uacyltoe hxgaycze system Translated 3542 : please reset my password in erp sid erp uacyltoe hxgaycze system i: 3543 not able to login to beyond evolution campaign reporting engineering tool site certified content i: 3544 xd xd xd hello xd xd am not able to log on to business client soft ware in my laptop xd xd pl do needful on priority xd xd xd xd with kind i: 3545 erp hrp hcm account lockout i: 3546 probleme mit erpgui jionmpsf wnkpzcmv Translated 3546 : problem mit erpgui jionmpsf wnkpzcmv i: 3547 pc empw neu aufsetzen Translated 3547 : reinstall pc empw i: 3548 xd xd xd hello help xd xd we are unable to create delivery challan due to below error xd xd xd xd i: 3549 xd job job failed in job scheduler at i: 3550 id printer not working at company i: 3551 konto gesperrt handy wlan authentifizierungsproblem Translated 3551 : Account locked cellphone wifi authentication problem i: 3552 access point defekt jxphgfmb gjbtuwek Translated 3552 : access point faulty jxphgfmb gjbtuuwek i: 3553 hallo xd xd ich chte gerne das in der suche auch meine telefon nr erscheint xd Translated 3553 : hello xd xd i would like my phone number to appear in the search xd i: 3554 probleme mit skype difozlav dgbfptos niptbwdq csenjruz Translated 3554 : problem with skype difozlav dgbfptos niptbwdq csenjruz i: 3555 hello it there is pcs under plant but can run the dn for please help check it i: 3556 xd xd xd dear sir xd the dvd player not working in my pc kindly rectify xd xd contact number xd xd i: 3557 login problems in skype Translated 3557 : login problems in skype i: 3558 please check pgi from delivery note i: 3559 hello xd xd m unable to login on the bcd travel side as the creation of password failed see below xd xd gru i: 3560 xd job job failed in job scheduler at i: 3561 poland experience some response time slowness again i: 3562 usa company inc interface gigabitethernet uplink to company na usa usa conforma core sw on company na usa usa conforma bld stack swsince at am et on i: 3563 several users in rth including me are experiencing drop in performance since some hours xd opening transactions executing transactions and extracting data out of erp takes significantly longer than usually xd can you please check xd i: 3564 xd xd xd hi xd please advise my collaboration platform is not saving or syncing any files the notice get says sync problems i: 3565 outlook hangs Translated 3565 : outlook hangs i: 3566 xd xd xd hello xd xd have problem with eu tool can not get the transfer times of our employees xd the downloaded file is empty without this datas it is not possible to calculate the productivity of our plants in germany xd xd xd xd mit freundlichen gr ssen with kind i: 3567 hello can you please do the daily reset of my vpn password my account is vanghtydec every second time log in the password is blocked can please solve this problem on structural basis contact user vanghtydec i: 3568 please provide permission to the files in it department networking i: 3569 bitte telefon tauschen Translated 3569 : please change phone i: 3570 since we have many users that have multiple sold tos assigned to their profile eg mfg tooltors distributors there is an issue when they add new ship to xd create new ship to related to the current selected sold to works fine xd change the sold to and create the exact same ship to system error ship to already exists xd that is problem as user cannot create the same recipient address for multiple different sold tos the duplication check should only be done against the existing ship tos of the currently selected sold to xd i: 3571 xd xd xd hello help team xd xd can you pls arrange full access for oscar usero and ivbkzcma nrehuqpa to the following oe drive on teams eagcldaten xd xd xd eagcldaten teams oe kata file eagcldaten teams oe kata xd xd xd i: 3572 xd xd xd hello xd xd am unable to logon erp system now so please help me to check it many i: 3573 engineering toolkuznetsk warehouse company vlan interface is down since at am et on i: 3574 hi johthryugftyson any update form it team as want to close this issue i: 3575 bitte erstellen sie mir eine liste ber alle berechtigungen bzw zugriffe von cvltebaj yzmcfxah rostuhhwr Translated 3575 : please create a list of all authorizations and accesses from cvltebaj yzmcfxah rostuhhwr i: 3576 user is new employee and unable to create expense report and getting error as mentioned in screenshot please find the attachment i: 3577 password logon no longer possible too many failed attempts i: 3578 usa access for configuring outlook exchange on windows phone i: 3579 i can not log in erp Translated 3579 : i can not log in erp i: 3580 xd xd xd hello xd xd good day xd xd from morning it been observed like plm response is very slow xd xd kindly take the action against it xd xd i: 3581 users are complaining that erp response is very slow and getting disconnected frequently i: 3582 given name and surname changes required in windows domain please change it to xd hnkwirgv wdgebvpzagavan xd i: 3583 erp has been very slow and takes more than seconds to execute transaction gurhyqsath india i: 3584 apac company company ap chn apac shop closet access sw company com fastethernet uplink to company ap chn apac access sw since at et on i: 3585 ugyothfz ugrmkdhx am ntteam stefyty dabhruji xomkhzrq vytqlphd datacenter bhayhtrathramdnty mamilujli bhayhtrathramdnty gzhapcld fdigznbk hnynhsth jsuyhwssad kathght shfhyw clhqsm notification password verification failure hello windows server support nvyjtmca xjhpznds operations we have received password verification failure in security tool when attempting to connect to the monitoring tool azure server clhqsm it looks like this server exits in the company domain but we are unable to connect to this server please find the log details in the alert below and confirm if the server is still active or decommissioned i: 3586 apac china and apac plant have reported erp slowness i: 3587 this account was extended to div in crm on but the new extension has not replicated to sid yet please advise nkthumgf mwgdenbs ph i: 3588 xd xd xd keep having to restart outlook and my computer xd xd xd i: 3589 dell sound issue xd connected to the user system using teamviewer xd installed the sound drivers xd restarted the pc sound is working fine now xd issue resolved i: 3590 xd job sid filesys failed in job scheduler at i: 3591 for the past two days my account has been repeatedly locked have not been entering the wrong password thrgxqsuojr xwbesorfs in row on my pc keyhtyvin toriaytun has unlocked it several times keyhtyvin has asked me to request trace to determine what is causing my account to be locked i: 3592 outlook not launching connected to the user system using teamviewer uninstalled and reinstalled mscrm restarted the pc caller confirmed that he is now able to see the emails on outlook issue resolved i: 3593 i used to be the supervisor over usa in this was changed to efqhmwpj tgeynlvr being the supervisor over that location credit memo and returns are still coming to my workflow and have to forward to them today was informed that nuhfwplj ojcwxser is now the team lead over usa usa usa and these should be sent to her can you update erp so these get routed properly nealxjbc owjduxai customer service supervisor i: 3594 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 3595 not able to login to vpn xd advised the caller to restart the system and check the internet connection xd updated the drivers xd advised the caller to logon to the company vpn xd caller confirmed that he was able to login xd issue resolved i: 3596 how did you determine there are network problems error web page not recovering in mii xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow erp mii xd xd are more than one transactions impacted operator dashbankrd xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen sid xd xd do other co workers also notice slow response times in erp yes it happened on multiple machines xd xd what other applications are running slow mii is the only application available to operators xd xd can you access your data files on the server xd xd any other comments or issues with other systems this slow response happens during shift change when lot of activity on the system and i: 3597 please add me to the allowed sender list for the usx team members i: 3598 name mikhghytr language browser microsoft internet explorer customer number telephone summary cant load the company home page or engineering tool i: 3599 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 3600 call came and got disconnected i: 3601 unable to update passwords on all accounts i: 3602 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 3603 cannot print to prtqx on pc rqxw anymore prints stall in print queue Translated 3603 : cannot print to prtqx on pc rqxw anymore prints stall in print queue i: 3604 name xnqzhtwu hivumtfz language browser microsoft internet explorer customer number telephone summary request to remove day pick route logic from supply chain for customer in plant view i: 3605 computer crashed after reboot i: 3606 name mikhghytr language browser microsoft internet explorer customer number telephone summary cant connect to outlook i: 3607 ticket update inplant Translated 3607 : ticket update implant i: 3608 xd xd xd hello xd xd am not able to search emails using from or subject option as only few of the cases come xd hence it is becoming very difficult to retrieve past details which is required for many reference xd xd plus the address book details are also not sync automatically xd xd pl help in fixing the same xd xd i: 3609 xd xd xd pethrywr lauthry xd sorry but m still waiting your confirmation that this was agreed globally within finance team am emea apac in order to move on xd this is not an otc report it only used by your finance team xd xd if m not receiving confirmation m sorry but have to cancel the ticket ll will wait till then have to cancel xd xd hope you comprehend xd xd i: 3610 account expired for user coumikzb ubfcwegt user id viruhytph i: 3611 company emails on personal smartphone i: 3612 interface down on tengigabitethernet connection to tech a xd interface down on tengigabitethernet dr connection to top i: 3613 dell sound issue with skype calls connected to the user system using teamviewer upgraded the system bios restarted the pc checked the skype audio settings gave uacyltoe hxgaycze call to the user through skype audio is now working fine contact i: 3614 ich ben tige r folgende personen aus germany die angegeben berechtigung r den ordner hostname teams schlammversand sludgeshipping nur leseberechtigung hoscgthke pl metallurgie th langhdte pl schneidk rper hbyoyer pl st befertigung dahytrda sv distribution retzkowski controlling chsbhuo controlling Translated 3614 : I need the following people from germany the given authorization for the folder hostname teams sludge shipping sludgeshipping read-only authorization hoscgthke pl metallurgy th langhdte pl cutting units hbyoyer pl st production dahytrda sv distribution retzkowski controlling chsbhuo controlling i: 3615 i am currently running into issues with my context menu which is displayed when right click in an excel document the menu does not pop up in any of my excel documents and frequently use it to format cells when working in files please assist i: 3616 ticket update on inplant i: 3617 blank call i: 3618 blank call i: 3619 xd xd xd dear sir ma am xd xd am unable to connect the projector on my system xd xd with best i: 3620 windows password reset i: 3621 mii password reset Translated 3621 : mii password reset i: 3622 password reset Translated 3622 : password reset i: 3623 xd job job failed in job scheduler at i: 3624 system sid sid sid sid hrp other sid enter user id of user having the issue nehsytwrrej transaction code the user needs or was working with grwtfer describe the issue see attachment if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket attached provide access the same as this other user i: 3625 good morning yes we use chk in usa as well have good day damuphws arkulcoi shipping inventory specialist company inc smxoklny hbecskgl am chnagdrtymk an damuphws arkulcoi eples re need little help please chahdtyru have confirmed that usa is using chk to process best i: 3626 xd xd xd hello xd will ask your help if can solve it with the help of my boss tomorrow i: 3627 blank call gso loud noise i: 3628 xd xd xd hello xd will ask your help if can solve it with the help of my boss tomorrow i: 3629 erp sid account locked out i: 3630 chandruhdty have confirmed that usa is using chk to process best i: 3631 laptop not booting up Translated 3631 : laptop not booting up i: 3632 ticket update on ticket no Translated 3632 : ticket update on ticket no i: 3633 need to check if sdlixwmb zvygmnco account is locked i: 3634 called to check how to change the lanhuage of office i: 3635 unable to update passwords Translated 3635 : unable to update passwords i: 3636 vip erp sid account unlock Translated 3636 : vip erp sid account unlock i: 3637 crm configuration and password reset i: 3638 general enquiry about engineering tool installation on windows xp i: 3639 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3640 erp sid account locked i: 3641 xd xd xd hello xd xd please activate my new company owned samsung galaxy for office access xd xd ger temodell xd xd sm gf xd xd ger tetyp xd xd samsungsmgf xd xd ger te id xd xd seceffa xd xd ger tebetriebssystem xd xd android xd xd ger tebenutzer agent xd xd android samsung sm gf xd xd ger te imei xd xd xd xd exchange activesync version xd xd xd xd ger tezugriffsstatus xd xd quarantined xd xd grund r ger tezugriffsstatus xd xd global xd xd xd you can remove the existing samsung galaxy device from my account but do not remove any other devices that have access to my account xd i: 3642 unable to load outlook i: 3643 need to add two mailboxes to outlook still working with outlook and but doesn work i: 3644 drucker wk defekt Translated 3644 : printer wk defective i: 3645 password reset as it is expired i: 3646 the current team sproc calculates delta value and adds it in to the previous period ytd sales to get the full ytd sales this needs to be changed instead of calculating delta the procedure will calculate true ytd number by applying current allocations percentages retroactively and by summing all direct revenue and adjustments together i: 3647 hello xd discount team in pozna is unable to open discount request forms from links in our inboxes error occurs this hugely impacts the team productivity please address as soon as possible attached are two print screens one with an example of said links one with the error that occurs when trying to open discount form i: 3648 unable to load erp Translated 3648 : unable to load erp i: 3649 xd xd xd riqmdnzs mtlghwex would like to recall the message ticket no due date has been updated to edt xd xd xd i: 3650 connect in to companysecure i: 3651 unable to get on network drives i: 3652 erp sid password reset Translated 3652 : erp sid password reset i: 3653 account locked i: 3654 i can provide information in crm during working on it website is stopping my job and showing that kind of alert which have attached it happening from yesterday to today every second or every time when am starting fill data this has worked before just started happening xd i: 3655 password reset Translated 3655 : password reset i: 3656 die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird Translated 3656 : the synchronization with exchange activesync is temporarily blocked on your ger until access is granted by the administrator i: 3657 please this problem is related it south amerirtca xd xd i: 3658 loop back ip for primary router at erkheim went unreachable i: 3659 account lock out i: 3660 xd xd xd hello xd xd greetings for the day xd xd please help me to open the fy add lean event form when tried to open it got the following message it said me to update my infopath with newer version xd xd xd i: 3661 monitor in der st be endkontrolle defekt Translated 3661 : monitor in st st end control defective i: 3662 xd xd xd hi team xd xd could you please reset password from user dw to daypay xd the user forgot her password xd xd i: 3663 dear team xd xd we are facing errors in bwa indexing of quer in sid due to bwa server is over loaded error have checked the filters for those queries and it is only for months data fy xd xd please suggest if all the servers bwa are not overloaded and operating fine and request to provide resolution at an earliest xd xd i: 3664 problems with creating pgi in transaction vln because we can enter the batch when we need it and every time when we need enter the batch we asking about it our german warehouse colleagues they sad us that this function are locked in my erp account could you help me please i: 3665 hallo xd ich und howfanzi siavgtby brauchen eine neue anst ndige maus xd hre sch wenn du sie kurzfristig uns vorbei bringen nnuacyltoe hxgaycze xd Translated 3665 : hello xd me and howfanzi siavgtby need a new decent mouse xd hre sch if you bring it over to us at short notice nnuacyltoe hxgaycze xd i: 3666 hallo xd ich und howfanzi siavgtby brauchen eine neue anst ndige maus xd hre sch wenn du sie kurzfristig uns vorbei bringen nnuacyltoe hxgaycze xd Translated 3666 : hello xd me and howfanzi siavgtby need a new decent mouse xd hre sch if you bring it over to us at short notice nnuacyltoe hxgaycze xd i: 3667 probleme mit symantec konferenzraum st be nozahtbr ubznqpsy Translated 3667 : problems with symantec conference room st be nozahtbr ubznqpsy i: 3668 fehlermeldung fo Translated 3668 : error message fo i: 3669 account locked in erp sid i: 3670 xd xd xd hello xd xd please help me to connect to vpn am not able to xd matheywter urgent xd xd xd i: 3671 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3672 i don reach pasword manager pages it says security problem for this connection i: 3673 the i: 3674 the i: 3675 xd job job failed in job scheduler at i: 3676 hostname usa plant ups is down at am et on i: 3677 erp csd cockpit application condition update not possible xd not possible to built up an price record gt xd quote line item Translated 3677 : erp csd cockpit application condition update not possible xd not possible to built up an price record gt xd quote line item i: 3678 ess password reset i: 3679 hostname volume dev ora data is over space consumed space available xd i: 3680 qlhmawgi sgwipoxn roaghyunokepc locked i: 3681 my sid system is been locked can you unlock it my user id is vvhstyap i: 3682 xd xd xd to the concerned xd xd am unable to access to the collaboration platform xd please resolve it at the earliest xd xd xd i: 3683 this pc is offline since i: 3684 ebusiness service am jfwvuzdn xackgvmd nwfodmhc exurcwkm radgthika order products online problem hello the issue is that your userid is locked in erp sid and in erp sid you need to go to the password management tool password manager and first select the option unlock accounts after that select the option change password once that is completed successfully you should logon to distributor tool with that new password mit freundlichem gru kind i: 3685 gartryhu xd erp xd vpn xd xd best Translated 3685 : gartryhu an ERP has xd xd xd xd Best VPN i: 3686 source ip xd source hostname leengineering tool zhm xd destination ip xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log see below xd xd xd event data xd xd related events xd event id xd event summary vid daserf backdoor phoning home apt activity xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname leengineering tool zhm xd source port xd destination ip xd destination port xd destination ip geolocation urumqi chn xd connection directionality outgoing xd protocol tcp xd http method get xd user agent mozilla compatible msie windows nt sv xd host es cn xd full url path stats php xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid daserf backdoor phoning home apt activity xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd sartlgeo lhqksbdx xd tcp ttl tos id iplen dgmlen df xd ap seq xfaf ack xfc win xbc tcplen xd pcap xd xd xd ex http uri stats php xd xd ex http hostname es cn xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd cd bd b w xd b aeb d ac da ff f af p xd c bc i get xd e stats php http xd d e user agent xd fa c e mozilla co xd c d mpatible msie xd b f windows nt xd b da sv host xd e e ed es cn cac xd d fe fc ef he control no xd da da ache xd pcap hex e i: 3687 source ip xd destination ip xd destination hostname android faecee xd destination port xd user name xd location xd sms status xd field sales user yes no xd dsw event log see below xd xd xd event data xd xd related events xd event id xd event summary vid server response with anubis sinkhole cookie set probable infected asset xd occurrence count xd event count xd xd host and connection information xd source ip xd source port xd source ip geolocation lisbon prt xd destination ip xd destination hostname android faecee xd destination port xd destination mac address c xd connection directionality incoming xd protocol tcp xd http status code xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid server response with anubis sinkhole cookie set probable infected asset xd classification none priority action accept impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xcb ack xef win tcplen xd tcp options nop nop ts xd pcap xd xd security xd xd correlation data xd dhcpd dhcpack on to c android faecee via eth relay lease duration renew xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd d e b w xd b fd cde cc cb a xd ef fcf vu xd bd bd ea e http xd f f moved tempo xd da rarily server xd e a nginx date tue xd sep xd d da e gmt cont xd e f ent type text xd d cd fe f ea tml connection xd cf da f fb close set cook xd e ie anbtr fdb xd befdba xd b sid fdeb doma xd de c e in allinvest us xd da cf fe location http xd af fe e cc xsso help all xd e invest us fdb xd befdba xd da da fdeb go xd ff e xd c e f allinvest us xd fdbbef xd dbafdeb xd pcap hex e i: 3688 hostname finance global bank bals fy xd xd group lhqfinglbalfyfc xd owner pjxclyhs fcniljtu xd access full control i: 3689 xd job job failed in job scheduler at Translated 3689 : xd job job failed in job scheduler at i: 3690 please reach out to me for more information if needed i: 3691 hi xd xd please see below pricing team comments and advise on above mentioned materials xd xd xd xd xd xd xd xd i: 3692 dear bhughjdra this is good enquiry agree batch number view is important too best i: 3693 xd job job failed in job scheduler at i: 3694 dear he time jave tuqrvowp fxmzkvqo human resources i: 3695 xd xd xd hello team xd xd as you can see at the below sreenshot my distributor tool account did not identified for sales organisation so can not do anything at the distributor tool xd xd could you please help me for this issue xd xd i: 3696 maschinenstillstand ma kesm fernwartung notwendig tel herr teichgr ber Translated 3696 : machine downtime ma kesm remote maintenance necessary tel mr teichgr ber i: 3697 xd job job failed in job scheduler at i: 3698 xd job job failed in job scheduler at i: 3699 shathyra lunjuws zd is the delivery output type which was developed for baker huges when usa went live on erp delivery note output type zdus will be added automatically as soon as the delivery note is created if there is no specific customer specific output type maintained in this scenario since we have already customer specific output zd maintained in output config zdus will be automatically replaced with zd and it will print immediately in hx printer printer hx has been defined as default printer for sales org and customer combination the complexity is that we are shipping to customer from both usa and usa can you please confirm if we are using chk to print the delivery note usa lunjuws we need your help to check with usa team if they are using chk for printing delivery note based on the above information we shall check on the possibilities and let you know chandruhdty n senior analyst global it please don print this email unless you really need to this will preserve trees on planet earth damuphws arkulcoi smxoklny hbecskgl need little help please sorry never email you to just say hey how it going but you know how it going m sure my dilemma is since we have started shipping to bakyhrer huhuyghes our delivery notes are still printing to usa who do need to contact about this if it is the help desk m not sure what how to ask for it they aren as easy to explain stuff to as you are we are wanting the transaction zdus to be added to the delivery output screen instead of zd usa used zd we were using zd but zdus is what we really need to be using if have talked myself in circles let me know and ll try to explain it little better this is an example of what we want this is what we get right now after we go in and add the zd to get delivery note to print here i: 3700 xd job job failed in job scheduler at i: 3701 hi m trying to install license server on this new server was just logged onto it but it now appears to be unavailable pollaurid phlpiops manager engineering technology i: 3702 lean tracker ffnet nicht fehlermeldung erscheint Translated 3702 : lean tracker does not open error message appears i: 3703 name wnorzsyv mdflqwxg language browser microsoft internet explorer customer number telephone summary minitab to be installed i: 3704 system sid sid sid sid hrp other xd xd enter user id of user having the issue xd xd transaction code the user needs or was working with xd xd describe the issue xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 3705 windows account locked i: 3706 windows account locked i: 3707 xd xd xd dear sir xd refer below snapshot of pdf output of engineering tool xd batch number is not appearing in pdf output xd xd why batch number is important xd in case of variation in tool life from batch to batch customer raises the complaint we send ccif with engineering tool in engineering tool software we enter batch number but when download pdf it doesn show batch number without batch number analysis cannot be done that why it very important to capture batch number in engineering tool pdf output xd xd for your necessary action xd xd xd i: 3708 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 3709 xvwchsdg pladjmxt pm dwfiykeo argtxmvcumar thomklmas woehyl wlan guest access for cantine germany hello manjgtiry we are having issues connecting to guest wlan with an party adapter which has worked before built in wifi adapter from their notebook is working just fine both of the adapters are able to find the ssid is it possible that the mac address of the edimax is in some kind of quarantine da f best i: 3710 xd job job failed in job scheduler at Translated 3710 : xd job job failed in job scheduler at i: 3711 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name babhjbu last name gdgy consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 3712 erp sid account locked i: 3713 xd xd xd team xd xd am not able access to inq industrial for which we receive enquiries about special products xd from past one week above mentioned shared email box is not functioning for me whereas other members are able to access the same xd so kindly request you to take it upon high priority and confirm back xd xd i: 3714 one of my employees sent his expenses to me today and there were notes all over it that there were no receipts he has the receipts for everything how should this be handled i: 3715 name jashtyckie language browser microsoft internet explorer customer number telephone summary two billings were not posted to gl and i: 3716 name pfzxecbo ptygkvzl xd language xd browser microsoft internet explorer xd customer number xd telephone xd summary vpn will not allow access to erp this is the occurrence of the same issue i: 3717 xd job job failed in job scheduler at i: 3718 xd job sid filesys failed in job scheduler at i: 3719 laptop can log on Translated 3719 : laptop can log on i: 3720 psf ups Translated 3720 : psf ups i: 3721 crm when the responsible user updated its status as final review it generally dispatch the auto notification email to the crm owner but have not received the notification the key user confirmed it hasn sent to me reference to the attached email communication please investigate why i: 3722 xd xd xd hi team xd xd am having issues logging into sid have reset my password in password manager but still cannot access it can you please assist i: 3723 name danyhuie deyhtwet language browser microsoft internet explorer customer number telephone summary new laptop dell search icon is running all the time slowing the laptop down i: 3724 xd job job failed in job scheduler at Translated 3724 : xd job job failed in job scheduler at i: 3725 add mail address to shipment notification for customer see example attached lalanne rohhsyni rjuyihes com i: 3726 please review the attached inwarehouse tools both of which are the same the one without the tax is the one the customer received the second one with the tax is one that sent to myself and is billing tax spoke with cegtcily in the tax dept and she is stating that she has ticket in for this issue where tax is not printing but is calculating in erp please look into this issues as quickly as possible as customers are now questioning the billing difference and it is becoming an issue for our customers i: 3727 user gkzedilm tkpfumeb jesjnlyenm can log into his aplications engineering tool and netweaver netweaver reports too many incorrect logins and engineering engineering tools unable to contact server suspect the user is blocked from these accounts due to too many incorrect logins the user did not recently changed password i: 3728 gigaset mit der durchwahl xd akku lt nicht mehr nger wie tag xd kann am display nicht mehr erkennen xd clip defekt Translated 3728 : gigaset with extension xd battery no longer like tag xd can no longer recognize on the display xd clip is defective i: 3729 unable to log in to erp Translated 3729 : unable to log in to erp i: 3730 user gkzedilm tkpfumeb jesjnlyenm can log into his aplications engineering tool and netweaver netweaver reports too many incorrect logins and engineering engineering tools unable to contact server suspect the user is blocked from these accounts due to too many incorrect logins the user did not recently changed password i: 3731 password reset for mii xd Translated 3731 : password reset for mii xd i: 3732 i have access to few systems on erp but am not able to log into the system have entered wynhtydf as my username and for the password enter the same password that successfully logs me into password management tool password manager have unlocked the systems which have access to in password management tool password manager and still cannot log in please see screenshot erp error screenshot for the error message and password management tool password unlock for list of erp systems cannot access i: 3733 sfb personal certificate error Translated 3733 : sfb personal certificate error i: 3734 name nmpworvu upgtrvnj language browser microsoft internet explorer customer number telephone summary my password is locked when am trying to go into the erp newweaver portal i: 3735 unable to log in to mii Translated 3735 : unable to log in to mii i: 3736 xd xd xd twimc xd xd have the opportstorage product along with ruben castro of company to receive free downloads of esprit cam software through local authorized esprit dealer we are teaming with on project locally was wondering what we needed to do in order to receive administrative approval i: 3737 cannot connect to outlook from home i: 3738 for usa location and order operation xd xd mii showed the order in prpf status looking at erp order was partially confirmed followed by automatic pause which mii adds change log shows all entries were done by miiadmin it weird since erp is showing expected status which is provided by mii but mii itself is showing prpf status which does not make sense reporting this issue so team can do deep dive and come up with the solution i: 3739 qipzctgs wjhtbpfr is onsite in usa at baker he needs to have access to use etime and email m told he needs network account so we can get all this et up this is urgent need by i: 3740 when trying to enter discount get the following message xd xd error occured contact pricing xd xd have new laptop don think it has been configured yet i: 3741 if set confirm qty threshold to it gives me error even when try to confirm order planned qty default xd for example if order is pieces and confirmation screen by default shows pieces it will give me warning if threshold is set to believe should get this warning for confirming pieces higher than threshold threshold should check if pieces entered are equal or less than planned no warning i: 3742 performance improvement tuning for machine summary and load list xd i: 3743 name chhyene dolhyt language browser microsoft internet explorer customer number telephone summary am currently on the phone with our salesman terhyury portelance and he needs his password reset in erp can you help his user id is porteta i: 3744 we ve noticed that the cpu utilization on the mii uacyltoe hxgaycze server hostname has been hovering around with occasional spikes to we have stopped all of the background jobs and even rebooted the server but the utilization is still very high attached is screen shot of the task manager processes showing the sql process is there anything that you can check on this server to see what is consuming so much of the system resources there are only few users who are currently using the uacyltoe hxgaycze system at this time i: 3745 outlook addin crm not showing up i: 3746 hello erp user id having issue rudras erp system sid sid sid sid sid portal sid error screenshot am unable to open few transaction codes and few codes will not allow me to change anything in the material su screenshot business justification am working for usa and will do the same work as schtrtgoyht schhdgtmips reference mirror user id with same job title having access to it schhdgtmips i: 3747 unable to print expense report Translated 3747 : unable to print expense report i: 3748 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar amar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name michbhuael last name laugdghjhlin consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 3749 i had company south amerirtca look at the sto and someone at our facility and nobody is able to help me i: 3750 is not possible to do gr for delivery sto xd error below xd account requires an assignment to co object xd message no ki xd xd diagnosis xd you have not defined co account assignment for an account that is relevant to cost accounting xd xd system response xd account is defined as cost element xd this means that you must always specify co account assignment xd xd procedure xd enter one of the following co account assignments xd xd order xd cost center cost center activity type xd sales order item for project or cost relevant xd project wbs element xd cost object process manufacturing xd network network activities xd business process xd profitability segment xd real estate object xd the posting row affected is account xd i: 3751 application hana sidecar prod on node hostname is in warning state cpu load is high for that service i: 3752 account unlock i: 3753 vip erp sid account unlock for user vvshyuwb stefyty parkeyhrt pm nwfodmhc exurcwkm amar fw need unlock my userid vvshyuwb importance high please assist user aerp he is consultant on project i: 3754 name brandhyht muthdyrta language browser microsoft internet explorer customer number telephone summary collaboration platform problem when try to access error the server is busy now try again later correlation id edad ef date and time am i: 3755 unable to access collaboration platform i: 3756 hello xd xd customer xd it changed but the data is not updated xd xd from the registration of the ship to only it has registered sold to like xd i: 3757 i have not received the sid ewa reports for and please fix i: 3758 vip unable to access collaboration platform Translated 3758 : vip unable to access collaboration platform i: 3759 unable to access collaboration platform i: 3760 pc is job scheduler owned company imaged laptop pc name is job schedulerbhml i: 3761 hi xd was working in crm and tried to qualify new lead when did got the below error please advise xd xd i: 3762 xd job job failed in job scheduler at i: 3763 unable to click on claims page of insurance website i: 3764 hello xd xd am unable to find any po pending with me pl find screen shot upon going thro sid xd kindly do the needfufl xd i: 3765 sanmhty mahatndhyua pm nwfodmhc exurcwkm sonia fw reminder for approval of requisition hi please reset erp password as do not use regularly and have to clear below mentioned pr urgently i: 3766 unable to login to vcenter hostname Translated 3766 : unable to login to vcenter hostname i: 3767 xd job kk uacyltoe hxgaycze failed in job scheduler at i: 3768 xd xd xd hello xd xd am not able to use the discount request form following window opens once click new request please help xd xd xd xd best i: 3769 we see event ld and which is related to dc replication issue hence will have to reboot the server i: 3770 sto created by zredeploy has future committed date in it even when stock are available at the sender warehouse i: 3771 require new driver for local printer i: 3772 need to be able to save several times day into team documents can attach screenshot i: 3773 please look at this this error message and let me know how to fix it marjnstyk jsytis senior sales engineer company horz logo i: 3774 xd xd xd hello xd xd our local application can download files from archiving tool server because the content repository address is not returning valid response xd archiving tool addreess we are tring to call is xd xd xd xd and we obtain the following answer xd xd xd http status procache cscache xd xd xd xd type status report xd xd message procache cscache xd xd description the requested resource is not available xd xd kindly ask you to check web service configuration to enable comunication on port xd trying to ping archiving tool app the address is solved as xd xd xd i: 3775 name mfeyouli ndobtzpw language browser microsoft internet explorer customer number telephone summary please reset sid erp account for haunm i: 3776 xd job job failed in job scheduler at Translated 3776 : xd job job failed in job scheduler at i: 3777 outlook does not open Translated 3777 : outlook does not open i: 3778 observing alert in monitoring tool since am on et xd the shop floor app is reporting down status on lcosm we are able to ping the server xd xd users karansb ping lcosm xd xd pinging lcosm company company com with bytes of data xd reply from bytes time ms ttl xd reply from bytes time ms ttl xd reply from bytes time ms ttl xd reply from bytes time ms ttl xd xd ping statistics for xd packets sent received lost loss xd approximate round trip times in milli seconds xd minimum ms maximum ms average ms xd xd users karansb xd xd i: 3779 clients laptop crashed and will not boot i: 3780 account locked i: 3781 we are already in contact with the eu tool system in india we need each imaginal help since we have big problems with eu tool since today eu tool we have no chance to confirm our operations to sign our errors to set our stockmanagement etc this is very great hinderance for plant i: 3782 replace monitor in cell with one that tiyhum kuyiomar sent i: 3783 i not able to log into collaboration platform or collaboration platform have restarted my pc multiple times and tried to log in but cannot do so please advise see screen shots below sethdyr hdtyr assistant general counsel compliance and real estate i: 3784 company collaboration platform is down cannot access the hub keep getting this message rxqtvanc kthqwxvb region controller amerirtcas email i: 3785 replace monitor across from yolktfas fyoxqgvh different cable is needed i: 3786 i get an error message indicating the server is busy right now try again later please see the attachment to review the message if you need additional information can be reached at i: 3787 i am unable to access the hub collaboration platform and collaboration platform receive the below error best lpoebzsc grknswyo executive assistant tofinance vip vice president and chief financial officer i: 3788 cursors moving in the opposite direction xd xd i: 3789 erp sid account locked i: 3790 summary operator does not know their mii erp username or password i: 3791 inc ticket update i: 3792 server is busy on collaboration platform i: 3793 we can open and save nxa as there are two epj active content versions xd xd ve tried using dscsag dms kpro double repair without success xd xd according to bob there is report in erp called rsir content unmarkhty prelim that should resolve the issue with multiple active content versions i: 3794 unsuccessful installing drivers for network printers tc and tc attempts result in error processing request i: 3795 company collaboration platform com application status is down from am et i: 3796 drucker em druckt nicht mehr irgend ein fehler im papiereinzug nach anweisung fehlermeldung nachgeschaut und nichts gefunden Translated 3796 : printer em no longer prints any error in the paper feed according to the instruction looked up the error message and found nothing i: 3797 during working on crm m getting exit pop ups attached screens i: 3798 wk erp drucker druckt nicht sauber seiten wedgrtyh ahsnwtey Translated 3798 : wk erp printer does not print clean pages wedgrtyh ahsnwtey i: 3799 vip unable to sign in to one note as password is not synching i: 3800 da durch den zugriff per iphone auf den mail account das gesamte konto gesperrt wurde xd muss der account auf dem iphone gel scht und neu anlegt werden Translated 3800 : as the entire account was blocked by accessing the mail account via iphone xd the account on the iphone must be deleted and re-created i: 3801 vermutlich hat der zugriff mit dem iphone das konto wieder gesperrt xd passwort mu nochmals zur ckgestzt werden jxphgfmb gjbtuwek Translated 3801 : probably access with the iphone has blocked the account again xd password must be reset again jxphgfmb gjbtuwek i: 3802 erp sid password reset request Translated 3802 : erp sid password reset request i: 3803 user is unable to open presentation from outlook client i: 3804 old mails they have been archived somewhere need to access how do get there i: 3805 ramdntythanjeshkurtyar mail am spxqmiry zpwgoqju sadjuetha shwyhdtu datacenter network re packet drops dear vignbhyesh we are experiencing internal fiber media issue outage team is working on for restoration etr is pm warm i: 3806 when users delete the update it will run the update every day the update makes it impossible to logon to the telephony software phone system xd therefor we need to have easy way to remove the update or avoid the update to be installed xd xd this is global issue although mostly seen within europe xd xd i: 3807 xd xd xd hello xd please refer the below screen shot for engineering tool related issue xd after installing software update am unable make new customer entries please note that option button for new customer entry is not appearing xd xd kindly resolve the problem at the earliest xd xd xd best i: 3808 xd xd xd hi xd xd when one note workbook is shared with me can only open the web view and get below error message xd xd xd according to the owner have permission to open it xd xd i: 3809 as discussed xd i: 3810 xd xd xd hello xd xd vide below mentioned inwarehouse tool customer has returned material without excise papers xd xd we find system has debited cvd amount and also credited expenses xd xd please review and rectify accordingly xd xd xd xd i: 3811 reset password in sid user zigioachstyac i: 3812 bitte im laufwerk germany unter berechnungsprogramdntym die sicherungsdatei db stp vom datum wiederherstellen ben tigen wir um produktionsinfos raus zu geben Translated 3812 : please restore the db stp backup file from the date in the germany drive under calculation program dntym, we need to provide production information i: 3813 not able to build distributor tool project in local system xd when login vvhstyap with my details m not able to build project in my local system but when my colleague log in with his login details he able to build the project in my local system xd so kindly look into this on priority as it is stopping my development activities xd you can use venktyamk login name as reference to map the roles to me i: 3814 it help xd xd for dn the post code is on the shipping label from kis as below xd but the correct post code should be as cec confirms it same in customer master xd copy the screens below xd xd can you check what caused the wrong post code on the label i: 3815 hello xd xd xd could you please resolve the following issue immediately xd xd issue trying to rma with using zlx which is the erp process for returning goods and there are the below screen shot shows fault xd xd xd xd xd xd xd xd best i: 3816 xd xd xd hello xd xd xd new customer addition button is missing please update matheywter urgent xd xd i: 3817 hallo folgende mitarbeiter ben tigen zugriff auf unten stehen verlauf skv alicona mitarbeiter rhaycqjg arcgonvy kudhnyuhnm nfybpxdg yjtdkfuo kesrgtyu lxfnwyuv bqmjyprz rockehsty hgrvubzo wgyhktic koiergyvh und hnyeajrw ctxjsolz simekdty vergleichsmitarbeiter beckshtywsnh beckshtyw Translated 3817 : hello the following employees need access to the bottom stand history skv alicona employee rhaycqjg arcgonvy kudhnyuhnm nfybpxdg yjtdkfuo kesrgtyu lxfnwyuv bqmjyprz rockehsty hgrvubzo wgyhktic koiergyvh and hnyeajckshtyuv employees beckyhkty koiergyvh and hnyeajckshts employee compared i: 3818 i need to complete npc task in erp but get error messages see attachement xd xd please cancel chg as this got created by mistake i: 3819 hostname oracle finance app financial management web tier epmsystem service monitor unknown xd hostname oracle finance app financial management java server epmsystem service monitor unknown xd i: 3820 drucker em geht nicht mehr trotz mehrere druckauftr ge xd kein anderer drucker instaliert xd bitte drucker em auch instalieren Translated 3820 : printer em no longer works despite several print jobs xd no other printer is installed xd please also install printer em i: 3821 unable to launch erp Translated 3821 : unable to launch erp i: 3822 need access to emails of for year ph i: 3823 rickjdt has confirmed that the password is working after reset i: 3824 bitte um freigabe von skv alicona hnyeajrw ctxjsolz i: 3825 brauche freigabe r skv alicona hgrvubzo wgyhktic i: 3826 erp sid password reset Translated 3826 : erp sid password reset i: 3827 xd job pp eu tool netch ap failed in job scheduler at i: 3828 brauche freigabe r skv alicona lxfnwyuv bqmjyprz Translated 3828 : need approval r skv alicona lxfnwyuv bqmjyprz i: 3829 bitte freigabe r skv alicona einrichten nfybpxdg yjtdkfuo Translated 3829 : please release r skv alicona set up nfybpxdg yjtdkfuo i: 3830 bitte freigabe r skv alicona einrichten rhaycqjg arcgonvy Translated 3830 : please release r skv alicona set up rhaycqjg arcgonvy i: 3831 mikhghytr kinsella has reported that the product selector link does not work www company com home page xd it allows selection as far as material type and then goes to contacts page i: 3832 erp and other internet service are slow for all users i: 3833 this pc is offline since i: 3834 xd xd xd kindly look into unable to extract and open engineering tool files xd xd please revert back with top priority and same case studies are required to be discussed xd xd get the below error xd xd xd xd best i: 3835 xd job job failed in job scheduler at i: 3836 bitte die drucker umstellen und konfigurieren vaigycet jtgmpdcr Translated 3836 : please switch and configure the printer vaigycet jtgmpdcr i: 3837 hello while route card release error message appearing and route card not get printed required help in resolving the issue please do not print this email unless it is absolutely necessary spread environmental awareness confidentiality caution this communication including any accompanying documents is intended only for the sole use of the person to whom it is addressed and contain information that is privileged confidential and exempt from disclosure any unauthorised reading dissemination distribution duplication of this communication by someone other than the intended recipient is strictly prohibited if your receipt of this communication is in error please notify the sender and destrtgoy the original communication immediately i: 3838 erp net weaver funktioniert nicht pc empw Translated 3838 : erp net weaver does not work pc empw i: 3839 ft octophon sl prof ladeschale mnr s telefonnummer ro prozessflussverantwortliche scdp i: 3840 hello when awa order with voucher the printing says the discount is which is wrong please check and correct this example in attachment i: 3841 xd xd xd hello help xd xd there is frequent disconnections in erp and is very slow also xd please have it checked at the earliest i: 3842 unable to login to windows error domain controller logon balancing error contact no mobile location germany germany i: 3843 windows account locked i: 3844 xd job pp eu tool netch ap failed in job scheduler at i: 3845 erp sid password reset Translated 3845 : erp sid password reset i: 3846 xd job job failed in job scheduler at Translated 3846 : xd job job failed in job scheduler at i: 3847 passwort ist abgelaufen bitte reset einleiten auch r das iphone jxphgfmb gjbtuwek Translated 3847 : password has expired please initiate reset also r the iphone jxphgfmb gjbtuwek i: 3848 while starting erp sid get an error logon balancing error see attachment this is for user vadnhyt and stegyhui and manjhyt i: 3849 india kirty packet drops on telecom vendor link since at am et on i: 3850 msdotnet business client sid Translated 3850 : msdotnet business client sid i: 3851 the order header is showing this voucher code and the line item details are also showing this voucher code under additional data nevertheless table vbap zzcmpgn id is empty xd the printed acknowledgement and inwarehouse tool are not referring this voucher code but pricing has considered the voucher discount xd something is not correct xd xd if voucher is not relevant for this customer ship to then it should not consider voucher discount i: 3852 hostname volume label sys hostname ab is over space consumed space available g i: 3853 sir the salary slip user id is locked for our apprentice jahtyuj with id no pl help to retrieve the same best i: 3854 could you reset my company mobile phone details are below xd xd cihaz modeli iphonec xd cihaz r iphone xd cihaz kimli hnorauaperabdlbtc xd cihaz letim sistemi ios sartlgeo lhqksbdxa xd cihaz kullan arac apple iphonec xd cihaz imei xd exchange activesync r xd cihaz eri im durumu quarantined xd cihaz eri im durumu nedeni global xd Translated 3854 : could you reset my company mobile phone details are below xd xd cihaz models iphonec xd cihaz r iphone xd cihaz kimli hnorauaperabdlbtc xd cihaz letim sistem ios sartlgeo lhqksbdxa xd cihaz kullan arac apple iphonec xd cihaz imei xd exchange activesync r xd ci cihaz eri im durumu nedeni global xd i: 3855 sid xd create delivery note for mm sto to apac xd see error message on att xd i: 3856 xd xd xd hello xd am trying to add this printer but receive the following message xd please enable it so that can connect to this printer which is in the erp room here in germany where am attending workshop for weeks until october xd xd xd xd many i: 3857 telephony software department description xd xd for the germany users the description of the department was updated to ifbg xd as we would have expected cfc customer fulfillment center instead please let me know what it stands for and for what reason it has been changed i: 3858 sm transaction canceled fp vbkpf xd xd sm nieconn refused remote communication failure with partner xd xd sid update terminated system error b nfe update xblnr error during update table bkpf i: 3859 erp ticket Translated 3859 : erp ticket i: 3860 hello please usa kahrthyeuiuiw koithc from hr tool wireless access for germany germany from and confirm when done sctqwgmj yambwtfk many i: 3861 vsbhyrt is unable to open eng engineering tool nor able to log in to password management tool to reset passwords xd pls help xd xd i: 3862 unable to browse company collaboration platform site i: 3863 xd job job failed in job scheduler at Translated 3863 : xd job job failed in job scheduler at i: 3864 xd xd xd hi help desk xd xd kindly help to reset my password for sid production as am not able to login after changed password this morning i: 3865 he is not able to click on the icons he is able to login to citrix please refer to the screenshot i: 3866 hello bohyub and pradtheyp yesterday jaya conveyed all that we discussed about changes required in graphics portal all requirements are fulfilled you please go ahead and change i: 3867 unable to login to engineering tool i: 3868 er hat sich bereits am pc evhw geuacyltoe hxgayczeet und da funktioniert es einwandfrei Translated 3868 : he has already on the pc evhw geuacyltoe hxgayczeet and it works fine there i: 3869 unable to login to erp sid account Translated 3869 : unable to login to erp sid account i: 3870 xd job job failed in job scheduler at i: 3871 windows account locked i: 3872 erp sid account locked i: 3873 xd xd xd dear sir xd xd am not able to access the crm portal please do the need full xd xd screen shot of error attached xd xd xd with best i: 3874 xd job job failed in job scheduler at Translated 3874 : xd job job failed in job scheduler at i: 3875 computer running slow i: 3876 xd xd xd hi it xd xd regularly have trouble with erp lagging particularly it seems after our time xd last week especially it was very bad all day xd yesterday and today again it seems to lag after that noon time xd this is becoming continuously embarrassing during phone calls when am required to search for stock or quote order over the phone as have to apologise for the system taking so long xd xd there are two other csr in the building uisewznr ewtmkphs rarely has the same trouble his system seems faster though much faster than mine or duoyrpvi wgjpviul amy system will lag but not as much as mine xd xd can you please shed some light on this scenario xd xd note it is more convenient for this office if can be contacted mid late mornings xd xd kind i: 3877 shipping dashbankrd tabs which have data refresh issue maybe data is not being refreshed daily or something has broken with respect to daily extraction xd freight cost region analysis xd packages dashbankrd xd total freight cost by sales org and shipping location xd export indicator analysis xd delivery type analysis xd carrier wise analysis xd shipping statistics xd xd data is not being refreshed daily as can find reports when select previous week i: 3878 vpn not working vpn company com link is giving error i: 3879 xd job job failed in job scheduler at i: 3880 xd xd xd hi xd xd have problems using ap vpn from home xd xd xd best i: 3881 kis documents will not generate because the sto has no pricing xd dn sto i: 3882 xd xd xd it help xd xd we have one shipment from apac to indonesia as attachment the unit price is on the inwarehouse tool from erp but it should be pcs xd xd can you check what caused the wrong price on inwarehouse tool xd xd i: 3883 usa pc companyst apc in the pvd area needs to be on the network in order to print to the printers in pvd i: 3884 vpn not working vpn company com link is giving error i: 3885 user unable tologin to vpn xd connected to the user system using teamviewer xd help the user login to the company vpn using the vpn company vpn link xd issue resolved i: 3886 name mehrugshy language browser microsoft internet explorer customer number telephone summary am not able to log into my vpn when am trying to open new session it is going to the your session is finished page i: 3887 vpn not working vpn company com link is giving error i: 3888 vpn not working vpn company com link is giving error i: 3889 user unable tologin to vpn xd connected to the user system using teamviewer xd help the user login to the company vpn using the vpn company vpn link xd issue resolved i: 3890 xd xd xd can reconnect to the vpn hit click here and screen does not change tried closing and relaunching and have some result tried restarting my computer and have same result xd xd xd best i: 3891 please revisit ticket ticket no and review the fastenal label as the customer is claiming the barcode that we output from from the zebra printers do not scan will need to replicate the barcode located on the labels that we currently output from the datamax xd xd see attached i: 3892 vpn not working vpn company com link is giving error i: 3893 vpn not working vpn company com link is giving error i: 3894 user unable tologin to vpn xd connected to the user system using teamviewer xd help the user login to the company vpn using the vpn company vpn link xd issue resolved i: 3895 when click on click here to enter new session the screen just repeats itself instead of prompting for user id and password as it usually does am able to use euro vpn through link provided to me by email i: 3896 are we having vpn issues can get logged in to vpn dthyan matheywtyuews sales manager gl i: 3897 vpn not working vpn company com link is giving error i: 3898 name cfokqnhz notxygdz language browser microsoft internet explorer customer number telephone summary hello in germany steel plant the programdnty eu tool does not run please check the programdnty i: 3899 vpn not working Translated 3899 : vpn not working i: 3900 user unable tologin to vpn xd connected to the user system using teamviewer xd help the user login to the company vpn using the vpn company vpn link xd issue resolved i: 3901 vpn login issue xd user unable tologin to vpn xd connected to the user system using teamviewer xd help the user login to the company vpn using the vpn company vpn link xd issue resolved i: 3902 name lizhwdoe mjudivse language browser microsoft internet explorer customer number telephone summary can login in to vpn i: 3903 name wvqgbdhm fwchqjor language browser microsoft internet explorer customer number telephone not available summary can get into vpn need to be on at est and it wont happen please help aerp i: 3904 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 3905 my distributor tool account is not working my dashbankrd is gone cannot select sales org cannot select customers i: 3906 name xmeytziq dcgwuvfk language browser microsoft internet explorer customer number telephone summary need to get access to tjlizqgc ngvwoukp calendar have taken over the ehs duties here in usa as well as usa indiana i: 3907 unable to see name in engineering tool i: 3908 ticket update on inplant i: 3909 name itclukpe aimcfeko language browser microsoft internet explorer customer number telephone summary need user name and password reset for mii for wpcatozg roceshun em his current id and password will let him log in the system but not in mii i: 3910 xd xd xd global it team xd xd do not currently have connectivity between crm and microsoft outlook on my company computer we are now required to begin to link emails and contact information between outlook and crm and without the crm add in working on my device am currently unable to do this please open ticket to get this completed i: 3911 password reset for i: 3912 ticket update on inplant i: 3913 distributor tool and engineering tool do not show inventory for mm even though mmbe transaction shows unrestricted stock in plant and dvw xd other mm numbers such as or do not have this issue xd not sure if there are other mm numbers where we do have stock but distributor tool and engineering tool aren seeing such stock xd xd please see attached email for background and attached screenshots from materials managementbe transaction engineering tool and distributor tool xd i: 3914 unable to connect to ca printer Translated 3914 : unable to connect to ca printer i: 3915 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue bakertm xd xd transaction code the user needs or was working with xd xd describe the issue userid no longer active for sid reset passwords with password management tool all changed but sid as userid no longer active please allow access as needed for erp mii uacyltoe hxgayczeing xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 3916 xd xd xd Translated 3916 : xd xd xd i: 3917 we want to setup erp to automatically sync and push updated knowledge bases to the ipc configair server space xd this is standard practice to not require network admin to do that manually which also is to eliminate various compatibility issues from doing that manually with extracted files xd for setup in each system in turn sid sid and sid for change delta moves to configair servers from erp updates i: 3918 printer is asking for trusted source and driver install but does still not work after update i: 3919 locked out on the crm account i: 3920 name jashyht mkuhtyhui language browser microsoft internet explorer customer number telephone summary have erp netweaver business client but am unable to pull up drawings have seen coworker screens and they look similar but the drawing tab is missing on mine i: 3921 xd xd xd hello t team xd xd need to get my outlook and crm remfg toolted please reach out to me as soon as possible xd xd best i: 3922 i no longer have the crm portion or add on in my outlook need to have this installed login webdhyt employee number best i: 3923 xd xd xd hi it m not seeing the crm options in my outlook please let me know how can get that working as have to be in dallas next for training i: 3924 i need to have crm addin in outlook to perform my daily job functions moving forward i: 3925 ticket update on inplant i: 3926 sent items folder not showing up in outlook i: 3927 xd job job ap failed in job scheduler at i: 3928 unable to fill the expense report form for employee i: 3929 see attached example discount applied was but quote copy is showing not sure where the pdf is picking up the additional xd xd also see example this will show the print on was correct and what was printed today is not did something move over the weekend that can be backed out xd i: 3930 ticket no ticket update Translated 3930 : ticket no ticket update i: 3931 summary unable to log into skype calls i: 3932 ticket no ticket update Translated 3932 : ticket no ticket update i: 3933 update on ticket no i: 3934 reset password for hana systems sid sid for user id bollmam xd kindly make it on priority basis i: 3935 same issue as inc xd xd please delete rm eb i: 3936 sandplant fc drlab hostname is down since pm et on i: 3937 terhyury jerhtyua employee of usa is locked out of mii please unlock and verify if employee has more than sid access xd employee is unable to report production and capture value add data on mii i: 3938 schdule name final in job scheduler batch job documentation needs to be updated i: 3939 can access skype for business xd comes up with message programdnty files microsoft office root office lync exe i: 3940 xd event data xd xd related events xd event id xd event summary vid server response with anubis sinkhole cookie set probable infected asset xd occurrence count xd event count xd xd host and connection information xd source ip xd source port xd source ip geolocation lisbon prt xd destination ip xd destination hostname apul xd destination port xd connection directionality incoming xd protocol tcp xd http status code xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid server response with anubis sinkhole cookie set probable infected asset xd classification none priority action accept impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xdabb ack xee win xb tcplen xd pcap xd xd xd ex http uri domain newflv sohu ccgslb net xd xd ex http hostname sso anbtr com xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd ac df wv xd cc bb cde ac cb da bb p xd ee bfb fe h http xd e f moved xd f da emporarily serv xd e a er nginx date xd fe mon sep xd a da gmt xd e d content type te xd f cd fe xt html connect xd f ea cf da ion close set xd f fb d cookie anbtr xd feecdaac xd b caaca xd f sid de ee domain ccgslb xd da cf fe et location ht xd af fe c tp xsso newflv xd f c ee sohu ccgslb net xd bfeecda xd sartlgeo lhqksbdxaccaaca xd ad af go xd fe c f sso newflv sohu xd ee ccgslb net bf xd eecdaac xd caaca xd pcap hex e i: 3941 ip xd blue light blinking xd does not permit connection xd xd could you please check i: 3942 hi xd xd please refer below mail from branch and attached tandd inwarehouse tool of plant the inwarehouse tool has picked the total basic value as rs and the excise duty has got charged and paid accordingly instead of correct total basic value of rs as per previous inwarehouse tool kindly find and fix the problem for future inwarehouse tool to capture the correct total basic value to avoid paying higher excise duty xd xd xd i: 3943 windows password reset i: 3944 source ip system name android faecee user name unknown location unknown sms status field sales user yes no dsw event log incident overview we are seeing your isensor company com device generating vid server response with anubis sinkhole cookie set probable infected asset alerts for traffic not blocked from port tcp of to port tcp of your android faecee device indicating that the host is most likely infected with malware this return traffic indicates that android faecee has most likely attempted to visit domain name which is being sinkholed dns sinkholes are dns servers that give out false information in order to prevent the use of the domain for which ip address resolution has been requested sinkhole traffic is possible indicator of an infected computer that is reaching out to controller that has been taken over by law enforcement or research organization as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole however are clear indication of malware infection we are escalating this incident to you via high priority ticket per our default escalation policies if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at ticket only escalation for sinkhole domain alerts explicit notification via medium priority ticket no phone call auto resolve sinkhole domain alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely soc technical details the domain name system dns is hierarchical naming system for any resource connected to the internet or private network which has the primary purpose of associating various information with domain names assigned to each of the participating entities it is primarily used for translating domain names to the numerirtcal ip addresses for the purpose of locating service and devices on network the domain name system distributes the responsibility of assigning domain names and mapping those names to ip addresses by designating authoritative name servers for each domain authoritative name servers are assigned to be responsible for their supported domains and delegate authority over subdomains to other name servers the domain name system also specifies the technical functionality of this database service it defines the dns protocol detailed specification of the data structures and data communication exchanges used in dns as part of the internet protocol suite dns sinkholes are dns servers that give out incorrect information in order to prevent the use of the domain name for which ip address resolution is being attempted when client requests to resolve the address of sinkholed hole or domain the sinkhole returns non routable address or any address except for the real address this germanytially denies the client connection to the target host using this method compromised clients can easily be found using sinkhole logs another method of detecting compromised hosts is during operations in which servers being used for command and control purposes are taken over by law enforcement as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole are clear indication of infection by trojan of some sort connections to sinkholes seem somewhat benign but the ramdntyifications certainly include information leakage to some extent although sinkhole operators are unlikely to use any personally identifiable information they capture from trojan communication it become public knowledge that company is infected with which lead to reputational damage additionally some sinkholes are feeding ip addresses of victims to beshryulists which impede access to certain services like sending email finally some trojans connect to multiple controller domains hostnames and even though some of them be sinkholed there be others that are not leading to the possibility of remote code execution or information leakage to malicious parties in some cases references event data related events event id event summary vid server response with anubis sinkhole cookie set probable infected asset occurrence count event count host and connection information source ip source port source ip geolocation lisbon prt destination ip destination hostname android faecee destination port destination mac address c connection directionality incoming protocol tcp http status code device information device ip device name isensor company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail vid server response with anubis sinkhole cookie set probable infected asset classification none priority action accept impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xf ack xaccedd win tcplen tcp options nop nop ts pcap security correlation data dhcpd dhcpack on to c android faecee via eth relay lease duration renew ascii packet pcap ascii pcap ascii hex packet pcap hex c df df f b fea cde dc p and acc edd caf j def a e http f f moved tempo da rarily server e a fe nginx date mon a d da e gmt cont e f ent type text b cd fe f ea tml connection cf da f fb close set cook e ie anbtr bdc afef b sid ef doma de c e in allinvest us da cf fe location http af fe e cc xsso help all e invest us bdc afef da da ef go ff e e c e p allinvest us dcafe fef pcap hex e i: 3945 xd xd xd hello xd please unlock netweaver access for user switzerlandim marftgytin switzerlandik xd reinstalled the application now it reports too many failed logins xd xd best i: 3946 please install ms visio std on the clients pc i: 3947 i have been locked out of sid client function specifically for the crm system made one attempt at entering my password and received password logon no longer possible too many failed attempts i: 3948 need visio installed on my laptop i: 3949 unable to connect to skype i: 3950 well have fighting with this all week our suppliers technical department has been helping also xd xd just to refresh your memory we are having trouble connecting secomea site managers to the secomea cloud xd xd history xd xd configured total of five secomea site mangers and uacyltoe hxgaycze them as each one is complete xd the first two worked and still work fine xd the third one started dropping off of the cloud and wont connect at all now xd units four and five wont connect at all and never did xd xd tried unit three at building one and two no luck xd xd took unit three home and connected it to my router it connects and can see it on the gate manager xd xd we use these in every machine we build so m asking for help from company it department and some direction xd realize it might not be familiar with this product so have attached simple troubleshooting guide from secomea xd xd i: 3951 kein zugriff auf zeiterfassung und sonstiges netzwerk spdczoth vajtodny Translated 3951 : no access to time recording and other network spdczoth vajtodny i: 3952 outlook does not start Translated 3952 : outlook does not start i: 3953 please see the attached screen print for vfx billing errors for and both of which state foreign trade data incomplete the billing document will not create i: 3954 mobile device activation Translated 3954 : mobile device activation i: 3955 power supply issue for pwrhmc hq company com i: 3956 i have warning messages on my symantec endpoint protection icon on my taskbar please see the attached document showing these messages i: 3957 name erirtc language browser microsoft internet explorer customer number telephone summary trying to get the status of ticket number ticket no i: 3958 windows account lockout i: 3959 unable to connect to mobile broadband i: 3960 monitor not working i: 3961 need mouse replacement xd ltcw i: 3962 maus funktioniert nicht mehr richtig bitte ersetzen howfanzi siavgtby Translated 3962 : mouse no longer works properly please replace howfanzi siavgtby i: 3963 brauche eine neue funktionierende maus tkhaymqg cwuqzyvm Translated 3963 : need a new working mouse tkhaymqg cwuqzyvm i: 3964 unable to load outlook due to crm i: 3965 my iphone now has reduced ear speaker when speaking to an individual can not hear them with any volume very faint must use the speaker phone which makes the call non secure can the phone be repaired or can replace it i: 3966 keine anmeldung auf skype glich vzqomdgt jwoqbuml Translated 3966 : no registration on skype was like vzqomdgt jwoqbuml i: 3967 xd xd xd hello it support team xd xd please release the device as per attached form as an employee owned mobile device the corresponding form is attached xd for the moment am using the outlook app xd xd hello joftgost xd xd please approve the form in return by mail xd xd i: 3968 no response from caller Translated 3968 : no response from caller i: 3969 i need to know the members in lhqftphfm could you please provide it in an excel file format i: 3970 account locked out on bex i: 3971 outlook is not working ve updated the sp but nothing i: 3972 please setup printers dg and dg on hostname with print drivers i: 3973 i cannot print at all the status of the printers have mapped to are all need driver update however when try to update the driver it will not update it but quits half way through the installation i: 3974 hi team xd xd xd could you please route the all files print pa hp ip plant hp xd xd note pa have problem hardware xd if you have more doubts please contact me xd xd i: 3975 account locked in ad i: 3976 xd xd xd bitte toner an em pr fen und ersetzen xd xd freundlicher gru best Translated 3976 : xd xd xd please send toner to us and replace it xd xd kindly gru best i: 3977 bitte guest wifi fuer gastronomie fuer eine jahr einrichten Translated 3977 : please set up guest wifi for catering for one year i: 3978 ticket update inplant i: 3979 password management tool account unlock i: 3980 xd job job dr failed in job scheduler at Translated 3980 : xd job job dr failed in job scheduler at i: 3981 xd job job failed in job scheduler at Translated 3981 : xd job job failed in job scheduler at i: 3982 hi it team kindly please assist user kassiaryu unable to received incoming email pc name aswl hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd email i: 3983 system sid sid sid sid hrp other sid enter user id of user having the issue mahapthysk ngyht transaction code the user needs or was working with we describe the issue no authorization to open employee idoc if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 3984 xd job bkbackup tool sql prod inc failed in job scheduler at i: 3985 unable to loginto skype Translated 3985 : unable to loginto skype i: 3986 need assistance cannot login to engineering tool web application after password change i: 3987 add user maghtyion cnjkeko cekomthyr to active directory group eagcutview i: 3988 xd job job failed in job scheduler at i: 3989 xd job job failed in job scheduler at i: 3990 hi manjgtiry xd xd Translated 3990 : hi manjgtiry xd xd i: 3991 xd job job failed in job scheduler at i: 3992 xd job job failed in job scheduler at i: 3993 xd job bwhrattr failed in job scheduler at i: 3994 xd xd xd dear it xd xd would you pls help to create delivery note for sto it urgent for plant for something error we unable to create i: 3995 xd critical lhqsid company company com time am xd ipc failure reading net message ipc read error xd system error connection reset by peer xd aborting xd xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd job job failed in job scheduler at i: 3996 cannot create engineering tool task for er please help to deal with any problems contact t i: 3997 erp systems are slow in plant all erp users in plant Translated 3997 : erp systems are slow in plant all erp users in plant i: 3998 hello please usa the following consultants from attendance tool access to company guest for weeks from to roshyario mcfaullfhry sarhfa ssofgrtymerset josefghph hughdthes jofgyst langytge please confirm when done many i: 3999 how did you determine there are network problems xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow xd xd are more than one transactions impacted xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen xd xd do other co workers also notice slow response times in erp xd xd what other applications are running slow xd xd can you access your data files on the server xd xd any other comments or issues with other systems i: 4000 head set input jack no longer ask questions during plug in i: 4001 unable to login to skype m Translated 4001 : unable to login to skype m i: 4002 we are facing huge issues that german travelers cannot enter their expenses in erp sid because their infotype does not exist again we have to create it manually for each of them which is relly time consuming some of them don even know who to contact when the error comes up xd what happened why was the infotype deleted can it be re created automatically somehow xd xd xd xd i: 4003 hostname volume label sys hostname ab is over space consumed space available g i: 4004 apusm volume label dat hostname deb is over space consumed space available m i: 4005 how did you determine there are network problems xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow xd xd are more than one transactions impacted xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen xd xd do other co workers also notice slow response times in erp xd xd what other applications are running slow xd xd can you access your data files on the server xd xd any other comments or issues with other systems i: 4006 xd xd xd hello xd xd receive the following error message when try to open finance app plant monthly book could you please check xd xd xd mit freundlichen gr ssen kind i: 4007 accout locked i: 4008 outlook is prompting for password again and again i: 4009 erp sid and sid not working Translated 4009 : erp sid and sid not working i: 4010 system sid sid sid sid hrp other sid and sid enter user id of user having the issue gthydanp transaction code the user needs or was working with describe the issue need access to the stated roles if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user manjuvghy i: 4011 xd xd xd hallo xd xd last week setup collaboration platform and after start shatryung my collaboration platform didn recognize me as owner so that couldn make any action xd today started collaboration platform again and now it is telling me that it couldn connect to the server while the vpn connection was established xd xd hope you can help me fixing those issues xd xd xd met vriendelijke groet xd xd lwizucan zvnxlobq xd directeur company benelthyux xd xd xd xd xd company nederland bv wim duisenbergplantsoen se maastricht www company com xd company nederland bv postbus az maastricht xd xd xd xd i: 4012 computer unable to connection company network pc got ip address i: 4013 der mitarbeiter schrenfgker heinrifgtch pn ben tigt zugriff im pulverleitstand lesen and eintragen Translated 4013 : the employee schrenfgker heinrifgtch pn needs access to the powder control desk read and enter i: 4014 account locked in ad i: 4015 erp sid account locked i: 4016 account locked in ad i: 4017 xd xd xd hello xd xd xd xd xd xd warm Translated 4017 : hello xd xd xd xd xd xd xd xd xd warm i: 4018 eeml wlan sst sich nicht per knopfdruck de aktivieren xvwchsdg pladjmxt ist informiert bitte zu haende hrrn pries Translated 4018 : eeml wlan cannot be deactivated at the push of a button xvwchsdg pladjmxt is informed, please keep your ears praised i: 4019 xd xd xd hi xd xd please note that atp is not getting committed in sid the screen shot of error msg is given below xd xd xd xd xd i: 4020 vpn Translated 4020 : vpn i: 4021 name srinfhyath language browser microsoft internet explorer customer number telephone summary how to change password in outllok i: 4022 time cards not automatically generating i: 4023 hi below mentioned apprentice is unable to login his desktop please reset the password emp no name useid cheghthan achghar vvdgtyachac with i: 4024 erp sid account locked i: 4025 xd job hr payroll na failed in job scheduler at i: 4026 xd job hr payroll na failed in job scheduler at i: 4027 xd job hr payroll na failed in job scheduler at i: 4028 hi it team kindly please assist to reset sid password for user kassia hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd email i: 4029 xd job bkwin hostname inc failed in job scheduler at i: 4030 how to connect to mobile hotspot i: 4031 ie Translated 4031 : ie i: 4032 the i: 4033 unable to login to microsoft account and need password i: 4034 inquiry on erp availability i: 4035 volume label oraarch on server lhqsid is over space consumed space available g i: 4036 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active primary is active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4037 unable to login to system i: 4038 xd job job failed in job scheduler at i: 4039 xd job bkbackup tool csqe prod inc failed in job scheduler at i: 4040 xd job job failed in job scheduler at Translated 4040 : xd job job failed in job scheduler at i: 4041 dear sir my erp password is blocked request you to kindly re set the password employee code login id achghyardr i: 4042 the i: 4043 xd job snp heu regen failed in job scheduler at Translated 4043 : xd job snp heu regen failed in job scheduler at i: 4044 skype personal certificate issue Translated 4044 : skype personal certificate issue i: 4045 xd job job failed in job scheduler at i: 4046 xd job job failed in job scheduler at i: 4047 xd xd xd best Translated 4047 : xd xd xd Best i: 4048 job name job Translated 4048 : job name job i: 4049 xd job job failed in job scheduler at Translated 4049 : xd job job failed in job scheduler at i: 4050 xd job job failed in job scheduler at i: 4051 xd xd xd witam xd xd zg aszam opoty engineering tool em xd xd xd nie mo na zrobi synchronizacji brak raport itp xd xd pozdrawiam best Translated 4051 : xd xd xd hello xd xd aszam opoty engineering tool em xd xd xd cannot be done synchronization no report etc xd xd best i: 4052 erp sid account locked out and password reset i: 4053 xd job job failed in job scheduler at Translated 4053 : xd job job failed in job scheduler at i: 4054 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4055 xd job job failed in job scheduler at i: 4056 xd job job failed in job scheduler at i: 4057 xd job pp eu tool netch keheu failed in job scheduler at i: 4058 summary my skype business cannot login error message is there was problem acquiring personal certificate required to sign in please help to solve this i: 4059 apac company company ap chn apac shop closet access sw company com fastethernet uplink to company ap chn apac access sw since et on i: 4060 xd job job failed in job scheduler at i: 4061 xd job co val update crosscomp failed in job scheduler at i: 4062 only erp running slow since last hours internet is working fine all transactions are running slow contact erp system sid all transactions checked with dac team no issues as such dac team checking with utilization now dac confirmed that utilization is high since last half an hour calling erp basis on call support on call support i: 4063 xd job job failed in job scheduler at Translated 4063 : xd job job failed in job scheduler at i: 4064 source ip system name whqsm reference company com user name a location dmz sms status field sales user yes no dsw event log see below the ctoc has received at least occurrences of vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound cve alerts from your isensor device isensplant company com for traffic not blocked sourcing from port tcp of dallas usa destined to port tcp of usa usa that occurred on at this indicates that the external host at and possibly other sources are attempting to discover if your public facing servers including is vulnerable to the magento mage adminhtml block widget grid getcsvfile sql injection vulnerability described in cve this ticket will effectively serve as master ticket for any related alerts until we receive feedback from you on how to handle these events going forward please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at we have number of options available for the handling of future alerts such as this one autoresolve these alerts directly to the portal no explicit notification and events will be available for reporting purposes in the portal this is most likely the best choice if you are not running the application being targeted ticket only escalation via medium priority ticket no phone call for each unique source ip address for these alerts this generate relatively large volume of incident tickets full escalation via high priority ticket and phone call for each unique source ip address we would not recommend options and since the exploit code is in the wild and merely identifying the sources of the attack not be very useful and we can always run reports on the portal to identify list of attackers instead we would recommend auditing your environment for vulnerable systems and updating them as necessary once you have completed this you could go with option to suppress alerting on these events sincerely ctoc technical details vulnerability exists in magento due to insufficient input validation within the mage adminhtml block widget grid getcsvfile function remote attacker could exploit this vulnerability to conduct sql injection attacks on vulnerable systems magento is an eusa platform vulnerability exists in magento commstorage product edition ce versions through version versions versions through versions and versions and and in magento enterprise edition ee versions prior to due to insufficient input validation user controllable supplied via the popularity field expr paramdntyeter when the popularity from or popularity to paramdntyeter is set is not properly sanitized for illegal or malicious content by the mage adminhtml block widget grid getcsvfile function prior to being stored in fieldname variable and used in an sql query remote administrators could leverage this issue to conduct sql injection attacks by injectncqulao qauighdplicious sql code into an affected input successful exploitation permit an attacker to manipulate sql queries and execute arbitrary sql commands on the underlying database references event data related events event id event summary vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound occurrence count event count host and connection information source ip source port source ip geolocation dallas usa destination ip destination port destination ip geolocation usa usa connection directionality incoming protocol tcp http method post host www company de full url path admin cms wysiwyg directive index device information device ip device name isensplant company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound classification none priority action accept passive impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xf ack xbedac win xe tcplen tcp options nop nop ts pcap ex http uri admin cms wysiwyg directive index ex http hostname www company de security ascii packet pcap ascii pcap ascii hex packet pcap hex c dd e f d ba ae dd d n and pyx be dac f kn cb ac cc f j apost ad ef f min cms wysiwyg e directive index e f http host eb e ce www company da af ad de accept fe dc a content length d fe d content c c fe ype application f d dd x www form urle e da da ncoded filter d dc cgwdwxhcmlevt d e mcmtxtwjnbvchv c syxjpdhlbdgdptm dc mcgwdwxhcmlevt sid c mawvszflehbyxt e wktttrvqgqfnbtfq e ef gpsancnanonfvcb be aueftuyaienptkn f bvchnrduoqoqf d ukcbaufmvcasicd a eb zwwzwsnkerplcb fa af ec dtdqvqojzonlcb d aufmvcapktttrux a fqqgqevyvfjbido c iebwchlehryysk ca c grljptsbhzgpbl a cvyifdirvjfigv c dhjhieltiepvcb df f ovuxmolouvsvcb a jtlrpigbhzgpbl a ee cvyycaoygzpcnn a bmftzwasigbsyxn a bmftzwasygvtywl c sycxgdxnlcmhbwv e glgbwyxnzdyzga a c sygnyzwfzwrglgb a sbdudfrtglgbyzwx e vywrfywnsxzsywd c glgbpchyrpdmv c a glgblehryywasyhj e wxrvavuycxgcnb a c fdgrzwfyjlyxr ca lzfhdgapifzbtfv fa ee fuyaojzpcnnbmf a tzscsjxhcruyw ca a ljywncvjdxjpdhl ea abwfnzwbnvbw de cc de lcmnllmnvbscsjb d vbgljescsqfbbum b d stkxkcksmcwwlde c sqevyvfjblevtew ce siepvygpkttjtln fulqgsuutybgywr d b tawfcmszwagkhb d d hcmvudfpzcxcmv c d e lxxldmvslhnvcnr a ba a fbjkzxisupply chainszv cc exbllhvzzxjfawq d cb supply chainszvuywlksb b wquxvrvmgkdesmiw a d wlcdvjywouvmrun ca uihvzzxjfawqgrlj c ptsbhzgpblcv a yifdirvjfihvzzxj a uywlidgjbvbgl a jescplcdgaxjzdg eb ff hbwunkts and dir ective etibgja b ybexblpufkbwlua a hrtbcyzxbvcnrfc de vhcmnoxdyawqgb c vchvpwdldenzd ba d kzpbgvfq andforw d arded and pcap hex of events not shown due to space constraints take action ticket action i: 4065 dear team pls help to check below issue return dn can not be posted due to bath issue but we can not key in anything in batch blank pls help to handle it thx lot rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 4066 source ip system name whqsm reference company com user name a location dmz sms status field sales user yes no dsw event log see below the ctoc has received at least occurrences of vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound cve alerts from your isensor device isensplant company com for traffic not blocked sourcing from port tcp of dallas usa destined to port tcp of usa usa that occurred on at this indicates that the external host at and possibly other sources are attempting to discover if your public facing servers including is vulnerable to the magento mage adminhtml block widget grid getcsvfile sql injection vulnerability described in cve this ticket will effectively serve as master ticket for any related alerts until we receive feedback from you on how to handle these events going forward please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at we have number of options available for the handling of future alerts such as this one autoresolve these alerts directly to the portal no explicit notification and events will be available for reporting purposes in the portal this is most likely the best choice if you are not running the application being targeted ticket only escalation via medium priority ticket no phone call for each unique source ip address for these alerts this generate relatively large volume of incident tickets full escalation via high priority ticket and phone call for each unique source ip address we would not recommend options and since the exploit code is in the wild and merely identifying the sources of the attack not be very useful and we can always run reports on the portal to identify list of attackers instead we would recommend auditing your environment for vulnerable systems and updating them as necessary once you have completed this you could go with option to suppress alerting on these events sincerely ctoc technical details vulnerability exists in magento due to insufficient input validation within the mage adminhtml block widget grid getcsvfile function remote attacker could exploit this vulnerability to conduct sql injection attacks on vulnerable systems magento is an eusa platform vulnerability exists in magento commstorage product edition ce versions through version versions versions through versions and versions and and in magento enterprise edition ee versions prior to due to insufficient input validation user controllable supplied via the popularity field expr paramdntyeter when the popularity from or popularity to paramdntyeter is set is not properly sanitized for illegal or malicious content by the mage adminhtml block widget grid getcsvfile function prior to being stored in fieldname variable and used in an sql query remote administrators could leverage this issue to conduct sql injection attacks by injectncqulao qauighdplicious sql code into an affected input successful exploitation permit an attacker to manipulate sql queries and execute arbitrary sql commands on the underlying database references event data related events event id event summary vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound occurrence count event count host and connection information source ip source port source ip geolocation dallas usa destination ip destination port destination ip geolocation usa usa connection directionality incoming protocol tcp http method post host www company de full url path admin cms wysiwyg directive index device information device ip device name isensplant company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail vid possible magento mage adminhtml block widget gridgetcsvfile sql injection attempt inbound classification none priority action accept passive impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xf ack xbedac win xe tcplen tcp options nop nop ts pcap ex http uri admin cms wysiwyg directive index ex http hostname www company de security ascii packet pcap ascii pcap ascii hex packet pcap hex c dd e f d ba ae dd d n and pyx be dac f kn cb ac cc f j apost ad ef f min cms wysiwyg e directive index e f http host eb e ce www company da af ad de accept fe dc a content length d fe d content c c fe ype application f d dd x www form urle e da da ncoded filter d dc cgwdwxhcmlevt d e mcmtxtwjnbvchv c syxjpdhlbdgdptm dc mcgwdwxhcmlevt sid c mawvszflehbyxt e wktttrvqgqfnbtfq e ef gpsancnanonfvcb be aueftuyaienptkn f bvchnrduoqoqf d ukcbaufmvcasicd a eb zwwzwsnkerplcb fa af ec dtdqvqojzonlcb d aufmvcapktttrux a fqqgqevyvfjbido c iebwchlehryysk ca c grljptsbhzgpbl a cvyifdirvjfigv c dhjhieltiepvcb df f ovuxmolouvsvcb a jtlrpigbhzgpbl a ee cvyycaoygzpcnn a bmftzwasigbsyxn a bmftzwasygvtywl c sycxgdxnlcmhbwv e glgbwyxnzdyzga a c sygnyzwfzwrglgb a sbdudfrtglgbyzwx e vywrfywnsxzsywd c glgbpchyrpdmv c a glgblehryywasyhj e wxrvavuycxgcnb a c fdgrzwfyjlyxr ca lzfhdgapifzbtfv fa ee fuyaojzpcnnbmf a tzscsjxhcruyw ca a ljywncvjdxjpdhl ea abwfnzwbnvbw de cc de lcmnllmnvbscsjb d vbgljescsqfbbum b d stkxkcksmcwwlde c sqevyvfjblevtew ce siepvygpkttjtln fulqgsuutybgywr d b tawfcmszwagkhb d d hcmvudfpzcxcmv c d e lxxldmvslhnvcnr a ba a fbjkzxisupply chainszv cc exbllhvzzxjfawq d cb supply chainszvuywlksb b wquxvrvmgkdesmiw a d wlcdvjywouvmrun ca uihvzzxjfawqgrlj c ptsbhzgpblcv a yifdirvjfihvzzxj a uywlidgjbvbgl a jescplcdgaxjzdg eb ff hbwunkts and dir ective etibgja b ybexblpufkbwlua a hrtbcyzxbvcnrfc de vhcmnoxdyawqgb c vchvpwdldenzd ba d kzpbgvfq andforw d arded and pcap hex of events not shown due to space constraints take action ticket action i: 4067 ip Translated 4067 : ip i: 4068 sdguo Translated 4068 : sdguo i: 4069 xd job job failed in job scheduler at i: 4070 xd job bwdpmbkp failed in job scheduler at i: 4071 xd job job failed in job scheduler at Translated 4071 : xd job job failed in job scheduler at i: 4072 xd job job failed in job scheduler at i: 4073 xd job job failed in job scheduler at i: 4074 windows account locked i: 4075 xd job job failed in job scheduler at Translated 4075 : xd job job failed in job scheduler at i: 4076 help team today is chinese working day can you open erp system aerp rujpckto lhutkpxm materials manager company apac co ltd i: 4077 hostname hostname hostname hostname hostname alwaysupservice exe is not running i: 4078 xd job job failed in job scheduler at i: 4079 xd job job failed in job scheduler at i: 4080 xd job job failed in job scheduler at Translated 4080 : xd job job failed in job scheduler at i: 4081 xd job job failed in job scheduler at Translated 4081 : xd job job failed in job scheduler at i: 4082 xd job bwdpmbkp failed in job scheduler at i: 4083 xd job job failed in job scheduler at i: 4084 received call music was playing but no one was answering xd xd interaction id i: 4085 xd job job failed in job scheduler at Translated 4085 : xd job job failed in job scheduler at i: 4086 xd job bkwin ms cluster full failed in job scheduler at i: 4087 xd job job failed in job scheduler at i: 4088 password reset password management tool passwordmanager Translated 4088 : password reset password management tool passwordmanager i: 4089 xd job job failed in job scheduler at i: 4090 account of thomafghk is disabled i: 4091 mobile device activation Translated 4091 : mobile device activation i: 4092 mobile device activation company provided i: 4093 xd xd xd bitte um die freischaltung des neuen handy xd xd xd mit freundlichen gr en best Translated 4093 : xd xd xd please activate the new mobile phone xd xd xd. Yours sincerely i: 4094 password reset alert from o Translated 4094 : password reset alert from o i: 4095 xd job job failed in job scheduler at i: 4096 when trying submit engineering tool to system have problem the message error is not connected with company network xd think m already connect with vpn company but if try to submit still get failed please advise i: 4097 not able to submit reports in engineering tool contact i: 4098 hostname volume label sys hostname ab is over space consumed space available xd i: 4099 itjzudor ybtmorxp am ecwtrjnq jpecxuty nwfodmhc exurcwkm sehr wichtig kein internetsignal importance high hallo hartghymutg meine internetleitung geht mal wieder nicht anschluss kein signal eingang kein lan wo kann ich anrufen bzw wer unterst tzt mich danke r deine info mit freundlichen gr en best Translated 4099 : itjzudor ybtmorxp am ecwtrjnq jpecxuty nwfodmhc exurcwkm very important no internet signal importance high hello hartghymutg my internet line doesn't work again connection no signal input no lan where can i call or who will support me thank you for your info with the best i: 4100 xd job job failed in job scheduler at Translated 4100 : xd job job failed in job scheduler at i: 4101 xd job hostname fail failed in job scheduler at i: 4102 xd job job failed in job scheduler at i: 4103 name ganedsght language browser microsoft internet explorer customer number telephone summary skype not working i: 4104 all serves in job scheduler are unlinked xd not responding while trying to reconnect i: 4105 hostname swap space on hostname is or less i: 4106 unable to login to engineering tool i: 4107 production order interface app server down in india not able to release production orders i: 4108 hello while route card release error message appearing and route card not get printed required help in resolving the issue please do not print this email unless it is absolutely necessary spread environmental awareness confidentiality caution this communication including any accompanying documents is intended only for the sole use of the person to whom it is addressed and contain information that is privileged confidential and exempt from disclosure any unauthorised reading dissemination distribution duplication of this communication by someone other than the intended recipient is strictly prohibited if your receipt of this communication is in error please notify the sender and destrtgoy the original communication immediately i: 4109 unable to login to engineering tool i: 4110 hello please refer the screen shot below we are not getting po prints please do the needful thanking you srinifghvahs www company com i: 4111 xd job job failed in job scheduler at i: 4112 xd job sid hoti failed in job scheduler at i: 4113 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 4114 ticket update on inplant i: 4115 password reset on hr tool and mii i: 4116 unable to get the crm add in on excel i: 4117 password reset to login to collaboration platform and check paystub i: 4118 user wants to download software shared with him from collaboration platform xd connected to the user system using teamviewer xd help the user download the software on the local system xd issue resolved i: 4119 so is set up to ship day air which would be however erp is showing delivery date of days xd quote was entered with next day air shipping the delivery date should be but it is xd quote was entered with next day air shipping the delivery date should be but it is i: 4120 xd xd xd have user that decided that she need to have her office turned degrees this means her phone is in another port managed to get it powered by using poe injector but currently her phone won sync her extension is and the mac address is d aa xd xd i: 4121 can you please unlock my erp my password was not working after changed it vyjmlain hvjbmdgi senior technical service rep i: 4122 unable to log in to erp Translated 4122 : unable to log in to erp i: 4123 user olghiveii erro ao acessar programdntya docad unavailable database Translated 4123 : user olghiveii error accessing programdntya docad unavailable database i: 4124 xd xd xd hello xd xd is there way to remove this information from my desktop screen xd xd i: 4125 call from vitalyst opportunities are not editable xd check screen shot xd xd so we are required to use and enter our customer lead and opportstorage product data into crm we understand but when we do this many times the actual data entry fields are locked to us we cannot enter anything also the flow of the screen and the lack of any intuitive input is very much challenging xd this is true on the opportstorage product screens also the lead screens etc i: 4126 dear it team am face problem in my laptop screen there is vertical line strips are coming on screen from today refer below pic earlier also was facing this problem but it was not permanent but from today its continue on screen kindly look into it rohjghit kumghtwar application engineering i: 4127 need the administrator access for user vijghyduhprga yeghrrajghodu to install the dac software i: 4128 the interface ethernet port channel to fluke trueview appliance on company dc nx company com is going down intermittently xd i: 4129 raghyvhdra najuty pm nwfodmhc exurcwkm srinfhyath araghtyu parthyrubhji erathyur hdfvbjoe obvrxtya raghjkavhjkdra rao dan re and vat not tally please refer below mail which mentions that vat does not tally in the inwarehouse tools no dated and inwarehouse tool no dated had raised similar ticket last week for some other inwarehouse tools we are coming across such issues frequently and request you to ensure that this type of error is not repeated i: 4130 dear all xd xd can you please check the bobj account of wohzmlib fxwjhapo he gets the enclosed error message when trying to open bobj report xd xd i: 4131 one note issue file not getting synched xd logged out and trying logging in back no go xd checked if other user are able to sync no issues with other users i: 4132 name ljztkmds ltjkirwy language browser microsoft internet explorer customer number telephone summary cannot access printers in the usa plant acts like need to install driver but then does not give me access to hostname never had issues in the past not sure if permissions changed when changes positions i: 4133 hi team xd xd we need the items related below must be replaced for the new packages filled in the plant bom xd xd current change by xd current change by xd current change by xd current change by xd current change by xd xd i: 4134 unable to get audio on skype meeting Translated 4134 : unable to get audio on skype meeting i: 4135 entering power save mode external monitor i: 4136 hi tim xd xd please stop the attached hr jobs with immediate effect xd hr xd hr xd xd i: 4137 hello spqrtkew vpmnusaf needs authorization to approve expense reports for sqmabtwn fchijage one team is correct with sqmabtwn fchijage reporting to avigtshay the expense side just needs updated below is the error he is getting i: 4138 when trying to login to ethics user gets the following error xd xd welcome to the company business ethics and conduct center xd ethics training site our records indicate that the log in xd credentials you used to access this site from the company xd collaboration platform do not match the records we have on file within the xd active directory please submit ticket to the global support xd center to ensure that your network log in id is correctly entered xd i: 4139 install aiqjxhuv dceghpwn viewer xd xd software available at drive in the temporary aiqjxhuv dceghpwn viewer subdirectory i: 4140 hello xd xd please advise undeliverable mail is this person still with company xd xd i: 4141 xd job job failed in job scheduler at Translated 4141 : xd job job failed in job scheduler at i: 4142 not able to login to collaboration platform using email address xd changes settings in extension attribute editor and asked user to login after some time i: 4143 customermaster pm repyzajo lxfwopyq customermaster nwfodmhc exurcwkm fctmzhyk cznlfbom amar re ship to created not visible in erp importance high it ship to account was created in crm over hrs ago and is still not visible in ecc sid all required fields are completed please advise why this account has not replicated to sid this account is needed for additional actions nkthumgf mwgdenbs ph repyzajo lxfwopyq am customermaster fctmzhyk cznlfbom ship to created not visible in erp importance high hello customer master team we have created new ship to address for the sold to under the account is set up correctly and visible in crm but after few hours it is still not visible in erp could you please help best i: 4144 solicito instala do software adobe acrobat para manuten e cria de documentos diversos como importa e exporta o Translated 4144 : request install of adobe acrobat software for maintenance and creation of various documents such as import and export i: 4145 xd xd xd hello xd xd within the european pricing team we are experiencing for some users troubles in getting the right connection to business explorer hana xd xd you will receive couple of tickets in showing what the error behavior is and hope for you quick resolution from you xd xd user uylvgtfi eovkxgpn germany location xd xd attachment xd set of instruction we are using xd error log xd and screenshot below xd xd setup of the machine has been completed through local it xd xd xd best i: 4146 help desk xd xd in fy the end of month balance in alr is different from the trial balance in xd previous month end of balance is zero in alr xd xd under the same conditions in fy previous month end of balance appear xd and the end of month balance match between alr and xd xd what is the cause xd i: 4147 system sid sid sid sid hrp other sid enter user id of user having the issue arrojhsjd transaction code the user needs or was working with describe the issue if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 4148 wireless is not working Translated 4148 : wireless is not working i: 4149 erp sid account locked i: 4150 i don have the access to update work centers in shop floor app don have access to the system tab in shop floor app it looks like am missing some items i: 4151 virus issue google maps issue Translated 4151 : virus issue google maps issue i: 4152 unable to install engineering tool i: 4153 unable to login to skype Translated 4153 : unable to login to skype i: 4154 johghajknn needed information about passwords i: 4155 name stefyty hipghkinjyt language browser microsoft internet explorer customer number telephone summary engineering tool has failed to load error log available but too large to paste here i: 4156 unlocked account i: 4157 explanation about password manager is required i: 4158 unable to connect to wireless i: 4159 when user adds the above campaign to an opportstorage product and hits save crm delivers the error that he does not have privilages to perform this action log file and screenshot attached xd eva xd i: 4160 install pdfmailer ahlqgjwx wbsfavhg i: 4161 unable to connect to wifi i: 4162 xd xd xd changed my password this morning now cannot open outlook xd this happened last time also it was crm issue that happens when password is changed xd xd high importance xd xd xd xd xkegcqov drctxjqi xd application engineer cmp xd industrial segment xd xd xd xd xd i: 4163 installl bex analysis add in i: 4164 my laptop battery needs to be replaced aerp battery backup is very poor laptop is powering off when remove it from docking station xd service tag ddp xd laptop model dell latitude e i: 4165 there have been no original files created for dir it is fr production is on hold waiting for these files i: 4166 hallo xd xd an der maschine agathon combi funktioniert die netzwerkverbindung nicht xd kannst du bitte einmal nachschauen xd xd danke xd xd gru xd marftgytin xd Translated 4166 : hello xd xd the network connection is not working on the agathon combi machine xd can you please take a look xd xd thank you xd xd gru xd marftgytin xd i: 4167 unable to install engineering tools t i: 4168 inc ticket update i: 4169 other person unable hear my warehouse tool on skype call i: 4170 xd xd xd dear sir madam xd xd the space available in grinding drive is only mb please provide additional space in the drive at the earliest xd xd xd i: 4171 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4172 windows password reset i: 4173 need telephony software to be installed on ebhl xwgnvksi dwijxgob please contact karghyuen via skype for remote installation zmgsfner caltmgoe phone i: 4174 call to check if hybegvwo dbgrtqhs account is disabled i: 4175 hi can we just make sure of these facts please please can you confirm if this customer has valid statement as he is complaining about our service and response to his mail and info forwarded to him please just copy me in with your comments janhytrn ooshstyizen sales manager construction sa new road king bit catalog johan kok mail am jofghan kddok janhytrn ooshstyizen hennidgtydhyue booysen re revised prices local hi did request this before please could you ensure that your mail administrator wherever in the world he sits could fix the below this message was created automatically by mail delivery software message that you sent could not be delivered to one or more of its recipients this is permanent error the following address es failed host company com mail protection outlook com smtp error from remote mail server after rcpt service unavailable client host blocked using customer block list as i: 4176 xd xd xd hello xd xd use microsoft mobile phone and in the outlook for the mobile are no tasks available xd xd can we use wunderlist add in xd xd there is an app for it and an outlook add in but it not starting xd xd best i: 4177 ich sehe meine reisekostenabrechnungen in erp nicht mehr transaktion pr es kommt die meldung infotype for does not exist for pers no xd Translated 4177 : I can no longer see my travel expense reports in erp transaction pr the message infotype for does not exist for pers no xd appears i: 4178 we are not getting communication in to attendance tool system from the following clocks request you to check on priority i: 4179 drucker tauschen we und we gogtyek Translated 4179 : swap printer we and we gogtyek i: 4180 hello someone has disabled the ad account of hybegvwo dbgrtqhs thomafghk days ago could you please reactivate it and tell us why it was disabled has changed the location from switzerland to germany but he is still an employee michghytuael as the manager of hybegvwo dbgrtqhs or mathyuithihyt as the director hr please confirm that is still working for company i: 4181 probleme mit outlook engracia gonzales fernandez Translated 4181 : problems with outlook engracia gonzales fernandez i: 4182 please approve the mailbox of kpobysnc tqvefyui user in following environments xd uacyltoe hxgaycze xd tempdev xd train xd prod xd xd i: 4183 our colleagues have opened ticket about the same issue that spain sales org and portugal sales org have xd xd ticket inc xd xd best i: 4184 xd am error cannot authenticate user xd soap fault detail endpoint xd soap connection is not available connection id hostname company company com xd failed to create nfc download stream nfc path xd job job failed in job scheduler at i: 4185 folder eagcldaten teams gpc access read and write user id weghyndlv i: 4186 xd critical lhqsid company company com time am xd ipc failure reading net message ipc read error xd system error connection reset by peer xd aborting xd xd xd job job failed in job scheduler at i: 4187 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 4188 probleme mit erpgui vsdtxwry ngkcdjye Translated 4188 : problems with erpgui vsdtxwry ngkcdjye i: 4189 we are experiancing slow response times in our location in erp various transactions va va va va md etc am currentlyx on server axhg and mine is ok but others complain as was on server hostname experienced also issues have heard of at least servers with issues hostname and please check network or connection and advise i: 4190 the erp response time especially out of zload takes much too long anfghyudrejy i: 4191 hi we re noticing very slow performance with erp at the uk facility pollaurid phlpiops manager engineering technology i: 4192 erp is slow xd internet is running fine xd other applications outlook etc are running fine xd many users are affected i: 4193 xd xd xd dear it team xd xd my laptop can use audio file and not sound xd xd best i: 4194 erp is slow for few users at poland office xd not all users impacted i: 4195 how did you determine there are network problems all system are very slowly xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow no xd xd are more than one transactions impacted yes xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen apo server eu tool server etc xd xd do other co workers also notice slow response times yes many colleagues in plant xd xd what other applications are running slow eu tool erp print drawings create delivery notes eu tool xd xd i: 4196 xd job job failed in job scheduler at i: 4197 xd xd xd dear it help team xd xd hi xd xd cannot synchronize appointments nor press anything from outlook crm tag like attached picture below xd xd please help me out xd xd xd xd xd i: 4198 inwarehouse tool was blocked in the system for foreign data were missing in item and after first analysis infos were available in mm for both concerned materials inwarehouse tool is now completed but could you check what happened in order to avoid futur issues was material correctly entered in mm any steps missing was there erp incident that leads to this issue i: 4199 hello bobhyb sorry don know more than this am copying this to help team if they could help you further i: 4200 hello team yvhlenaz ptuqhrwk on cc cannot connect to vpn he can access to but once he tries to connect vpn small window below pictures shows up shortly and disconnected second picture says discconect checked device manager but could not find other devices in his pc other network adapters have lauacyltoe hxgaycze drivers please give us your advice xmgptwho fmcxikqz k takheghshi afefsano i: 4201 good morning please can you unblock user nieghjyukea we tried using password management tool id password manager but it does not want to work she cannot get into the system at all kind i: 4202 hello team xd xd user tuzkadxv rxloutpn is trying to use the run report functionality in the opportstorage product opportstorage product report which is page summary of the opportstorage product but it does not return any data for him just blank screen could not find out why it is happening xd could you help me how to troubleshoot in this matheywter xd xd the screenshot is taken by me not the user just to illustrate which functionality am talking about do not have screenshot from the user yet but it is not workng for him on ny of his opportunities xd xd i: 4203 xd job job failed in job scheduler at i: 4204 xd ftp error put zmm bestand stl dat xd xd job job failed in job scheduler at i: 4205 xd xd xd team xd xd am not able access to inq industrial for which we receive enquiries about special products xd from past one week above mentioned shared email box is not functioning for me whereas other members are able to access the same xd so kindly request you to take it upon high priority and confirm back xd xd i: 4206 ship method information is lost when bulk shipment indicator is removed and multiple line delivery can be processed in kis carrier ipd i: 4207 when shutdown the computer yesterday the windows update wasload could not stop the update xd so telephony software must be fixed xd see these informations xd xd all xd we have been identifying the update which is causing the issue xd when updating your computer disable kb from the lists with updates xd xd in case it happened anyway have it to remove it xd xd urvitans laqdwvgo xd cec analyst operational excellence emea xd xd i: 4208 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes no na xd xd backup circuit active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4209 xd xd xd hello xd xd changed my password yesterday xd can open kennconnect and log in but things have changed xd my favorites dierppeared xd it asks to input customer but customer search does not work xd opening favorites it says to call helpdesk xd xd please call aerp so am able to work today xd xd xd gtehdnyushot capture xd xd xd xd xd xd best i: 4210 duplex mismatch duplex mode on interface gigabitethernet uplink to company eu ita milano dmvpn rtr on company eu ita milan core stack sw company com is half check duplex configuration on both end devices of the link and make sure the duplex mode matches xd xd duplex mismatch duplex mode on interface gigabitethernet connection to lan on company eu ita milano dmvpn rtr company com is full check duplex configuration on both end devices of the link and make sure the duplex mode matches xd i: 4211 xd xd xd dear it team xd xd could you please check and advise from where cost on the attached shipping inwarehouse tool is as per standard cost it is only usd per piece but it is deusad on shipping document sgd usd this matheywter effects customer to pay high cost of import duty xd xd best i: 4212 xd xd xd hello company help xd xd could you please check my laptop settings because am getting inconsistent company vpn connection at home xd xd i: 4213 xd job pp eu tool netch ap failed in job scheduler at i: 4214 xd xd xd hello xd xd my erp is locked xd please unlock xd used password management tool password manager to unlock my account xd can use vpn but can not log in erp xd xd i: 4215 not able to connect to the erp i: 4216 xd ftp connection error to system hostname xd xd job job failed in job scheduler at i: 4217 unable to submit reports in engineering tool please refer to the screenshots i: 4218 xd xd xd hello xd xd need your help aerp xd outlook has stopped working in pc xd xd i: 4219 xd xd xd xd best Translated 4219 : xd xd xd xd Best i: 4220 xd job sid hotf failed in job scheduler at i: 4221 dell skype audio not working xd connected to the user system using teamviewer xd updated the bios on the user system xd restarted the system xd skype audio is now working uacyltoe hxgaycze call with user xd will call the user back tomorrow and check on the issue xd xd i: 4222 xd job bk hana sid arc dp failed in job scheduler at i: 4223 xd login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 4224 user unable to login to the pc xd checked ad and infotrmed user account is not locked xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 4225 distributor tool login issue i: 4226 name grtaoivq dwjvfkqe language browser microsoft internet explorer customer number telephone summary what is the collaboration platform link i: 4227 password reset request Translated 4227 : password reset request i: 4228 hi it xd can you please help check why don see any error on our side i: 4229 user is trying to install the software on customer pc connected to the user system using teamviewer user able to login to the distributor tool and go to engineering tool tab to install the software unable to install the software on the user system customer email id c i: 4230 password reset Translated 4230 : password reset i: 4231 jvshydix rzpmnylt general query Translated 4231 : jvshydix rzpmnylt general query i: 4232 when mm is used to change the grade on rqfhiong zkwfqagb logic executes that verifies if the engineering tool is valid for the new grade this is working correctly if save is selected on the catalog id grade screen if save delete is selected the logic is not working and invalid engineering tool values are being left on rqfhiong zkwfqagbs xd xd this is affecting all users not just one logic needs corrected for save delete i: 4233 password reset alert from o i: 4234 user wanted to speak to some one in usa and asked for jashyht contact i: 4235 unable to log in to skype Translated 4235 : unable to log in to skype i: 4236 sto for notion order mm Translated 4236 : stood for notion order mm i: 4237 ticket update on inplant i: 4238 cant connect to erp vpn issue Translated 4238 : cant connect to erp vpn issue i: 4239 erp excel add in issue Translated 4239 : erp excel add in issue i: 4240 the terminate action for mdulwthb sldowapb has completed i: 4241 erp log in issue Translated 4241 : erp log in issue i: 4242 xd xd xd everyone xd the power will be off to the whole usa manufacturing plant on from until the generator should keep the computer room running switches located in remote network closets will drop and turn back on when the power resumes xd xd xd i: 4243 called to unlock ad account for user qcxivzag vyucbagx i: 4244 dell system very slow connected to the user system using teamviewer cleared the cache cookies temp files updated the symantec on the user updated the system bios restarted the pc advised the user to try again and check user launched mscrm and its was working fine issue resolved c i: 4245 unable to submit expense report Translated 4245 : unable to submit expense report i: 4246 change skirtylset percentages effective see list attached i: 4247 id printer setup Translated 4247 : id printer setup i: 4248 printer driver update Translated 4248 : printer driver update i: 4249 blank call i: 4250 outlook not getting connected i: 4251 audio not working driver issue Translated 4251 : audio not working driver issue i: 4252 windows accout lockout i: 4253 can you please do me favor and check the po extract file for po and check which vendor has been assigned xd xd this is because the po is assigned to vendor in erp but rr shows vendor see attachment for screen prints xd i: 4254 reisekosten error Translated 4254 : travel expenses error i: 4255 what type of outage network circuit power please specify what type of outage xd xd top cert site slo yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4256 xd xd xd hi xd xd still cannot access the beec module see message below please correct i: 4257 not able to apply job in company portal in external user i: 4258 i continue to get disconnected from vpn and have to reconnect multiple times day i: 4259 reset password user zigioachstyac sid i: 4260 please create procenter login credential for below new joiners name vijghyduhprga yeghrrajghodu user id yerrav name ulezhxfw kslocjtaaruthapandian user id karhjuyutk i: 4261 how to add members to distribution groups i: 4262 xd xd xd hallo my friends xd xd have changed password today there was no problem message coming out after the password change everything was gtehdnyu and saying ok password successfully changed xd xd now from some reasons am not able to log in to skype for business it is showing me following xd xd please let me know what should do xd xd i: 4263 error no sections to display note that section in group aren supported i: 4264 xd xd xd closed the ticket xd xd xd i: 4265 spam mails coming in to the inbox i: 4266 hello sudghhahjkkar would you please close this ticket at this moment tried to change the ansi and iso no and it worked very well please excuse the inconvenience and i: 4267 xd xd xd dear all xd xd had change from company to company mail seems that this is now creating problems with our ethnics site xd xd welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp xd xd please make sure that can access again xd xd i: 4268 outlook not launching i: 4269 hi team xd xd am unable to submit the time card attached is the screenshot can you please help i: 4270 xd xd xd please see below error my outlook is not updating and it is saying my password is wrong or won connect to server when open the outlook programdnty am asked to enter my credentials but after doing so the server will not connect am currently using the web based version of outlook on internet explorer xd xd xd xd cid abbc efe aeea aa xd xd xd i: 4271 good morning need to be added to couple email boxes so have access can you please assist also muywpnof prtikusy is requesting to be the owner of these email addresses so he can add people to them when needed is this possible i: 4272 vpn query Translated 4272 : vpn query i: 4273 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start at am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4274 unable to log in to windows i: 4275 hello it personnel xd xd have used collaboration platform saved to the local computer drive would like to connect my local collaboration platform to the collaboration platform accessed through the office software on collaboration platform company hub how do connect the two locations xd xd best i: 4276 account locked out i: 4277 hallo herr dwfiykeo argtxmvcumar hallo it help team nnen sie bitte diese beiden netzwerke synchronisieren sie ssen identisch sein aktuell stimmen die daten nicht berein vorab vielen dank mit freundlichen gr en mafghyrina ntner specialist hr shared services company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq Translated 4277 : hello mr dwfiykeo argtxmvcumar hello it help team please synchronize these two networks they must be identical at the moment the data does not match, thank you in advance with kind regards mafghyrina ntner specialist hr shared services company shared services gmbh managing director phvkowml azbtkqwx naruedlk mpvhakdq i: 4278 reset the password for tfsehruw dzrgpkyn on erp produktion erp i: 4279 call for ecwtrjnq jpecxuty Translated 4279 : call for ecwtrjnq jpecxuty i: 4280 interface gigabitethernet mtb gf wirelss ap on company ap ind kirty pu ff stack sw company com is down i: 4281 please open ticket for me have been on few skype calls recently where the quality was very poor these calls were multinational with india or apac with participants in the us the audio quality was so poor that we could not understand each other to the point that the meeting was almost waste of time also the ability to broadcast powerpoint or erp screen images was bas as well were some of the participants of the meeting could not see the content again making the meetings waste of our time mikhghytr wafglhdrhjop sr manager global ethics and compliance programdntys i: 4282 cannot log onto telephony software error message authentication process failed telephone i: 4283 sagfhosh karhtyiio am hgwofcbx tnowikyv gmrkisxy wgtcylir sridthshar herytur ufpzergq zchjbfdehivashankaraiah re it asset hi ghkkytu as discussed please format the laptop this needs to be given to the new joiner vijuryat dgurhtya have assigned inc to your team for the same i: 4284 repeat of same issue that have had in the past not able to connect to outlook also com add in is not staying available on excel file have to reselect it each time open the file i: 4285 sartlgeo lhqksbdx create delivery not allowed sys status exls object vb text need to create delivery xd i: 4286 can log onto skype changed password yesterday won recognize today i: 4287 xd xd xd team xd is not working xd xd please usa access for me xd xd i: 4288 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp xd xd detailed description of the problem reroute rn back erp has been fixed xd xd type of documents not printing email excel word etc xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 4289 user olghiveii xd xd segue link xd xd xd xd Translated 4289 : user olghiveii xd xd xd xd xd xd segue link i: 4290 it germany xd xd skype speakers are required for confernece room an the conference room behind the cantine xd therefore michghytuael cker confirmed to purchase the new two speakers xd xvwchsdg pladjmxt suggested to go with one bigger speaker instead xd please check the prices to allow michghytuael to compare both possibilities xd xd i: 4291 hello could you pls help me and create new password for user id safghghga gabryltka sabhtyhiko she blocked her computer and now she needs to access aerp please contact me when you have done it i: 4292 hi when received lead tried to convert it into an opportstorage product by qualifying it when did that got an error see below please advise vkzwafuh tcjnuswg cmp sr application eng i: 4293 company iphone device activation i: 4294 vip unable to get on the network i: 4295 printer adds to pc fine but when trying to print continuously prints characters and symbols and that it when used on x pc from server hostname it prints fine xd printer is laserjet si mx xd xd tim komar looked at this i: 4296 stock is available in erp but apparently not apo please help to issue deliveries for and to return scrap powder to powder plants i: 4297 the fitness center digital signage pc will not connect to the network to get updates i: 4298 unable to logon to erp Translated 4298 : unable to logon to erp i: 4299 xd job sid hotf failed in job scheduler at i: 4300 reset password user zigioachstyac sid sid i: 4301 von vgsqetbx wpkcbtjl gesendet donnerstag an dnwfhpyl zqbldipk betreff zeichnung hallo ich habe wieder eine zeichnung mit falsch aufgedruckter zeichnungsnummer bitte richtigstellen mit freundlichen gr en vgsqetbx wpkcbtjl production planner company produktions gmbh and co kg gesch ftsf hrer dr jofghyuach fabry harald nnlein rtnzvplq erhmuncq von dnwfhpyl zqbldipk gesendet dienstag an tfhzidnq wqpfdobe vgsqetbx wpkcbtjl ksvqzmre yqnajdwh betreff aw erp plm drawing with different drawing number hallo heighjtyich ich bitte um entschuldigung wegen der falschen gdw drawing ein paar zeichnungen wurden monate vor dem plm go live versehentlich ein zweites mal umbenannt nachdem sie schon konvertiert waren die richtige plm nummer ist immer die rechts oben im druckstempel auch das viele eurer gescannten zeichnungen nictafvwlpz opfigqramdntyatisch nach pdf konvertiert werden konnten tut mir leid es wurden zeichnungen konvertiert und etwa davon machten probleme ein paar hundert davon scheinen von euch zu sein wir reparieren diese wie bisher bei bedarf mit freundlichen gr en best Translated 4301 : from vgsqetbx wpkcbtjl sent thursday to dnwfhpyl zqbldipk subject drawing hello I have another drawing with an incorrectly printed drawing number, please correct it with kind regards vgsqetbx wpkcbtjl production planner company produktions gmbh and co kg gesch ftshmfqn dab rtnhip sent by dq rtnhip ftsmdip dr jofghyuach tuesday an tfhzidnq wqpfdobe vgsqetbx wpkcbtjl ksvqzmre yqnajdwh subject aw erp plm drawing with different drawing number hello heighjtyich I apologize for the wrong gdw drawing a few drawings were accidentally converted a second time months before the plm go live plm number is always the one in the top right of the stamp also that many of your scanned drawings could nictafvwlpz opfigqramdntyatically be converted to pdf I'm sorry drawings were converted and some of them caused problems a few hundred of them seem to be from e We will repair these as before, if necessary, with the best of our best i: 4302 not able to access email xd xd itclukpe aimcfeko is his manager i: 4303 erp sid account unlock and password reset i: 4304 xd job sid arc failed in job scheduler at i: 4305 xd job sid arc failed in job scheduler at i: 4306 xd job sid arc failed in job scheduler at i: 4307 xd job sid arc failed in job scheduler at i: 4308 refer screenshot i: 4309 xd job sid hotf failed in job scheduler at i: 4310 xd xd xd hello xd xd system disk of server hostname is full again please check xd we had the same issue weeks ago ticket inc xd it is the virtual center server xd i: 4311 no reply from panjkytr please create case what we need is possibility to subscribe to dedicated daily sales and orders report and to receive the mti data per email instead of the total industrial results consisting of the combined results of tooling and mti mit freundlichen grugermany best i: 4312 erp sid account unlock and password reset i: 4313 fyi von axesnghb cyzuomxa gesendet donnerstag an ughzilfm cfibdamq tmqfjard qzhgdoua betreff tmqfjard qzhgdoua berechtigung r eu tool module hallo herr bghakch herr tmqfjard qzhgdoua stamm nr ben tigt vollen zugriff auf folgende eu tool module chargenverwaltung pulverleitstand mit freundlichen gr en preu supervisor rod production germany gesch ftsf hrer managing directors phvkowml azbtkqwx naruedlk mpvhakdq sitz registered office germany pers nlich haftende gesellschafterin general partner company gmbh diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung select the following link to view the disclaimer in an alternate language Translated 4313 : fyi from axesnghb cyzuomxa sent thursday to ughzilfm cfibdamq tmqfjard qzhgdoua subject tmqfjard qzhgdoua authorization r eu tool module hello mr bghakch mr tmqfjard qzhgdoua gr en master production department requires full access to the following eu tool module managing directors phvkowml azbtkqwx naruedlk mpvhakdq registered office germany personally liable partner general partner company gmbh this communication is intended solely for the use of the addressee and may contain information that is confidential or is excluded from disclosure under applicable law Distribution or reproduction of this communication by persons who are not the intended recipients is strictly prohibited. If you have received this communication by mistake, please notify the sender and us nd read this message select the following link to view the disclaimer in an alternate language i: 4314 while trying to ship product to usa am not getting put away ticket the system is taking an estorage productly long time to process the transaction and am getting an error stating that the update was terminated site location company usa ohio user id ad lilesfhpk system you are seeing performance problems on please list all g crm erp bw bobj erp sid transactions that are slow g va create an order md area this belongs to g sales finance markhtyeting etc production how can this issue be replicated by the it support group are other users seeing this not sure please attach relevant screenshots and exact times when the issue occurred i: 4315 xd xd xd dear sir xd xd attached is the filled wireless mobility policy sheet with my manager approval xd kindly enable email access to my mobile xd kindly contact me for any information required in this regard xd xd with best i: 4316 xd job job failed in job scheduler at i: 4317 xd xd xd good morning xd xd when trying to log on to erp get this error below xd please help urgently as can not process customer order xd xd xd xd i: 4318 xd xd xd hello xd xd my computer is hot and the fan runs all the time so you can hear it xd xd xd mit freundlichen gr en best i: 4319 kabel vga tauschen jionmpsf wnkpzcmv Translated 4319 : cable vga swap jionmpsf wnkpzcmv i: 4320 hallo xd xd der monitor von ahmet k im materiallager macht probleme xd kannst du dir das bitte anschauen xd Translated 4320 : hello xd xd the monitor of ahmet k in the material warehouse is causing problems xd can you please take a look at xd i: 4321 install pulverleitstand tmqfjard qzhgdoua i: 4322 falsche formatierung in pdf bfqnvezs vwkasnxe Translated 4322 : incorrect formatting in pdf bfqnvezs vwkasnxe i: 4323 install pulverleitstand vaigycet jtgmpdcr Translated 4323 : install pulverleitstand vaigycet jtgmpdcr i: 4324 xd job job failed in job scheduler at i: 4325 xd xd xd hello xd xd please raise it ticket on behalf of me for crm complaint no having error and it not archived to ecc xd xd xd with best i: 4326 xd xd xd good morning team xd xd have problem login into erp please can you assist xd xd kind i: 4327 please reset my password in erp engineering tool dipl ing ba bqapjkcl ljeakcqf company shared services gmbh managing directors gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq i: 4328 hi it team kindly please assist to reset sid password for user vvaghjnthl hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd email i: 4329 xd xd xd good morning xd xd please help few of us the south africa office in south africa cannot log into erp we are all getting log on balancing error it looks like the diginet line is down it is not effecting everyone xd xd kind i: 4330 xd xd xd good morning xd xd am not able to log in erp kindly assist xd xd kind i: 4331 morning please help syghmesa can not lock in to erp did do shutdown on my computer still not please please help us at company south africa i: 4332 xd xd xd good morning xd xd can you please assist as cannot log into erp receive the following error xd xd xd i: 4333 xd xd xd good day xd xd trust you are well xd please can you help cant lock in to erp give me the code xd xd i: 4334 an terminal bei iso k nnen im eu tool keine zeichnungen mehr aufgerufen werden diese funktion wird wegen der auftragsbereitstellung ben tigt Translated 4334 : at the terminal at iso, no more drawings can be called up in the eu tool this function is required to prepare orders i: 4335 issue while refreshing the global spend analytics report in bobj i: 4336 critical lib drive time pm xd device address not found xd xd xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job bkwin tax interface qa daily failed in job scheduler at i: 4337 account locked in ad i: 4338 request you to delete the above charm since it is no longer required i: 4339 xd job pp eu tool netch ap failed in job scheduler at i: 4340 xd major hostname full backup time pm xd lost connection to vbda named hostname company company com xd on host hostname company company com xd ipc subsystem reports ipc read error xd system error connection reset by peer xd xd job bkwin hostname inc failed in job scheduler at i: 4341 see above cell Translated 4341 : see above cell i: 4342 this is the second time this week have had an issue with vpn vpn was my workaround but it is not working for me either this evening pfzxecbo ptygkvzl sr analyst na indirect industrial sales i: 4343 xd xd xd please see attached screenshot of the engineering tool app xd xd am no longer able to check availability as the message unable to connect to availability server xd xd have tried uninstalling and reinstalling but didn fix the problem xd xd is there known issue xd xd it has been like this for few weeks xd xd xd xd xd xd xd i: 4344 cwuospin nbhoxqpe pm othybin graceuyt nwfodmhc exurcwkm facility rakthyesh re elt update call hello help can you please remove quyhn mcgudftigre from usa campus calendars as requested sincerely stanfghyley guhtykes fmp facilities manager usa campus on at am othybin graceuyt wrote hello please check this and see if quyhn meetings can be removed from the calendar i: 4345 error message asks me if trust the printer then tells me need to download driver for it phone number i: 4346 please provide details in the template below if multiple applications are impacted please use the quick ticket template in the operations folder xd site location usa xd user id ad steince xd system you are seeing performance problems on please list all g crm erp bw bobj erp sid xd transactions that are slow g va create an order va xd area this belongs to g sales finance markhtyeting etc order processing xd how can this issue be replicated by the it support group xd are other users seeing this there are remote users xd please attach relevant screenshots and exact times when the issue occurred i: 4347 neither crm or outlook will load have restarted the pc times locked up several times while synchronizing with crm login wghjkftewj image jpg image jpg i: 4348 prospect account contacts came over ok the contacts that came over incorrectly came over through elm i: 4349 xd job sid hotf failed in job scheduler at i: 4350 login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 4351 we needed to reimage the pc of qohfjpna exphkims palghjmal and now the office that comes with the company image from deeghyupak raju is showing that activation is required also it shows that leslie account is not associated to that office product she always had ms office we just needed to reimage the pc could you please check her account to fix that i: 4352 hi it please help remove rujpckto lhutkpxm on themfg grp group i: 4353 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 4354 need to change password and get it synced on system i: 4355 outlook not allowing to open emails in the inbox xd connected to the user system using teamviewer xd sent uacyltoe hxgaycze mail to the user from the user mailbox xd user confirmed he is able to open it xd advised the user to close and reopen the outllok and check xd caller confirmed that he is now able to see the emails on outlook xd issue resolved i: 4356 external monitors not detecting with dell in tablet i: 4357 erp sid account locked i: 4358 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp kd hp color laserjet pcl xd xd detailed description of the problem when try to send document to this printer it says driver update needed next to printer name when click print it starts to download drivers and repeats this several times before displaying error windows cannot print due to problem with the current printer setup have printed on this printer on my machine before xd xd type of documents not printing email excel word etc xd inwarehouse tool delivery note production order etc specifically microsoft word documents but have also tried printing emails and excel documents xd xd what system or application being used at time of the problem ex windows erp kls microsoft word microsoft excel microsoft outlook xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed a xd xd if erp system which system ex sid sid hrp plm a xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily a xd what printer can it be rerouted too a xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 4359 erp sid password reset Translated 4359 : erp sid password reset i: 4360 xd xd xd good afternoon xd xd know it isn only happening to me but get this error when try to print on my normal default printer it says it needs driver installed then get this box when try to get screenshot the now printing box pops up if close snipping tool it goes away but pops back up every time try to use the snipping tool to show you the error xd bzxljkoy rvoiqthl was getting the same error xd xd xd xd i: 4361 setup laptop for new hire mghlisha baranwfhrty i: 4362 wifi is not getting connect i: 4363 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 4364 vmqcyzda kgvrfwcj pm ron port nwfodmhc exurcwkm tjlizqgc ngvwoukp ytqhfmwi itnakpmc billghj dhjuyick lipfnxsy rvjlnpef amar fw summit meeting importance high help desk this email is not legit and it looks like it for the upcoming business practice summit best i: 4365 pc set up for new employee krisyuhnyrtkurtyar kghpanhjuwdian i: 4366 i want software to print documents to pdf i: 4367 configure the new laptop and remove the old pc i: 4368 my account is getting locked frequently worked with gso many times on the same and still the same please check from your end i: 4369 mii uacyltoe hxgaycze from lacw duration is high for loading as and refresh loaded s i: 4370 ess portal expense report approved with wrong date range showing and needs to say need to change dates in order to enter in an expense report for dates ranging i: 4371 nan Translated 4371 : nan i: 4372 unable to host skype meeting from conference room i: 4373 vip printer driver update Translated 4373 : vip printer driver update i: 4374 please unlock user ghjvreicj immediately in erp and extend the account to it is immediately needed tomorrow is our py run von tszvorba wtldpncx mail gesendet mittwoch an nkjtoxwv wqtlzvxu lixwgnto krutnylz betreff in erp gesperrt bitte dringend wieder frei schalten wichtigkeit hoch hallo herr hohgajnn ich wollte mich eben ein weiteres mal anmelden und habe auch sicher die korrekten anmeldedaten eingegeben leider bin ich nun gesperrt in anbetracht der bevorstehenden abrechnung ben tige ich dringend eine freischaltung in erp vielen dank im voraus und viele gr tszvorba wtldpncx teamleitung logo neu final klein personal partner strixner gmbh diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 4374 : please unlock user ghjvreicj immediately in erp and extend the account to it is immediately needed tomorrow is our py run by tszvorba wtldpncx mail sent on wednesday to nkjtoxwv wqtlzvxu lixwgnto krutnylz subject locked in erp please urgently unlock again importance high hello mr hohgajnn i just wanted me log in again and have entered the correct login data unfortunately I am now blocked in view of the imminent billing, I urgently need an activation in erp many thanks in advance and many gr tszvorba wtldpncx team management logo new final klein personal partner strixner gmbh this message is solely intended for use by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly forbidden if you received this message by mistake then please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 4375 password reset from password management tool i: 4376 password reset Translated 4376 : password reset i: 4377 xd xd xd hello xd xd am unable to print to the network printers in my area get pop ups to install the drivers but then there is an error please help xd xd i: 4378 we are unable to change the price on the order number can you please help us fix this issue before the inwarehouse tool is created tonight xd i: 4379 erp sid password reset Translated 4379 : erp sid password reset i: 4380 hello xd could you please reset my password to telephony software supervisor system xd i: 4381 name afplnyxb eiomnuba language browser microsoft internet explorer customer number telephone summary the password for my vpn is blokker again can you please reset teh password username is vanghtydec do have to change the password after you have unlocked it i: 4382 unable to log on to outlook this morning xd xd microsoft crm add in was corrupted i: 4383 name bixsapwu lcamiopz language browser microsoft internet explorer customer number telephone summary is there reason that skype will not call me at conference room in the usa campus i: 4384 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4385 update user to interaction desktop xd ypdhesrq eotjzyxm xd rqll i: 4386 infotype for does not exist for personal no phone i: 4387 name ovxwqybe gevzkrlp email telephone summary need gdandt font installed i: 4388 screen prints are attached to highlight the same fields had listed in the spreadsheet provided this is live sid example that can be reviewed incase you werent aware pfzxecbo ptygkvzl pm raghfhgh gowhjtya re ticket no comments added example attached sid if there are any questions please let me know i: 4389 sid user locked out i: 4390 mii update Translated 4390 : thousand update i: 4391 unable to login to vpn as the page stopped at checking antivirus client i: 4392 locked and unlocked the pc with the new password xd updated password for email access and companysecure on cell phone i: 4393 the files at seems to have missing records later files seems to be complete xd the nightly update for milano runs at too this simplyfies support xd xd please change the values in the field occurs once at and starting at in the attached schedule picture from to xd xd i: 4394 issue speakers are not working xd troubleshooting xd ran hardware troubleshooter got the message that no speaker hehr toolhone connected to device xd checked in device manager realtek audio driver was installed tried updating it but no update available xd tried downloading driver from dell com support but as speaker is not installed in the system unable to install any driver xd checked playing an audio using earphone and it worked fine confirming its an issue with the hardware xd xd conclusion either speaker is not installed or is not working i: 4395 outlook not responding after crm sync i: 4396 please reset my prtgghjk password i: 4397 since the mandatory it reboot on trkwehzg pqjrhsul and have been unable to print to tc tried tc this morning and was also unsuccessful when attempting to print dialogue box pops up and copies some dll files to the drive then an error message pops up saying there was an error when printing started check printer setup in windows control panel tried to update the driver from the control panel and the same dll files are downloaded as when attempt to print ve tried printing from several applications outlook excel adobe reader with no success other users are still able to print to the printer it just spit out an erp order from one of the engineers xd xd i: 4398 skype audio functionality is not working as per expected i: 4399 system sid sid sid sid hrp other xd xd enter user id of user having the issue xd xd transaction code the user needs or was working with xd xd describe the issue xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 4400 microsoft connectivity analyzer software confirms that the software is too old to support xd downloading and installing the service pack fails no supported software found xd repaired ms office installation cleared credentials manager deleted profile and contents of app data local ms outlook restarted pc xd microsoft office version i: 4401 customer service at usa issues sales orders for acct consignment inventory shows stock but there be batch block that prevents them from allocating inventrtgoy for billing purposes there is something odd with mm mb erp this is maghyuigie ghjkzalez ph i: 4402 can open attached inwarehouse tools with opentext at erp see attachment i: 4403 xd xd xd hello xd could you please help me in subjected case xd xd i: 4404 no mail receipt for user jkuaslxe hrodszpl and gezpktrq opkqwevj would you please contact above users as they are currently not receiving mails on their mobile phone jkuaslxe hrodszpl gezpktrq opkqwevj please note that they are currently travelling outside of germany i: 4405 mii is taking more than min to load when it does load everyone is getting br error attached i: 4406 wl scanner not working printer is working fine only the scanner is not working phone i: 4407 the lights at the back of one of the file servers on site is not blinking xd part of the plant does not access to network resources xd xd please help check xd xd local file servers xd xd hostname xd lrrsm xd hostname xd xd contact i: 4408 name deghjick culghjn language browser microsoft internet explorer customer number telephone summary have forgotten my password to shop floor app i: 4409 account unlock i: 4410 the erp mii hostname jstart exe service is showing as critical i: 4411 in usa we are receiving technical error on the mii system and cannot even log off contact number i: 4412 xd xd xd hallo xd xd das file ist unter folgenden link verf gbar xd xd xd seit heute fr ist es nicht mehr glich die datei zu bearbeiten da folgende fehlermeldung beim ffnen der datei eingeblendet wird xd xd xd xd xd mit freundlichen gr ssen best Translated 4412 : xd xd xd hello xd xd the file is available under the following link xd xd xd since today fr it is no longer possible to edit the file because the following error message is displayed when opening the file xd xd xd xd xd best regards i: 4413 mii uacyltoe hxgaycze from lacw duration is high for loading as and refresh loaded s i: 4414 erp mii is not functioning in raonoke rapids employees are unable to use the software to clock out software is locked phone i: 4415 bnsh account unlock in erp sid i: 4416 windows account lockout i: 4417 xd xd xd hello xd xd refer the below screen shot xd xd xd xd xd xd warm Translated 4417 : xd xd xd xd xd hello refer the screen shot below xd xd xd xd xd xd warm i: 4418 xd job pp eu tool netch ap failed in job scheduler at i: 4419 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp tc on hqntn xd xd detailed description of the problem drivers need updated but will not load xd xd type of documents not printing email excel word etc all xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls windows xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed no xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 4420 xd xd xd dear sir madam xd xd am not able to connect to vpn xd xd please address xd xd also install the new apvpn as well xd xd i: 4421 ng ff account unlock in erp sid i: 4422 barcodescanner an eemw defekt bitte austauschen pc befindet sich im anlagenbereich cvd Translated 4422 : barcode scanner on eemw defective please replace pc is located in the cvd area of the system i: 4423 unable to print need driver update i: 4424 unable to print driver not updating Translated 4424 : unable to print driver not updating i: 4425 xd job job failed in job scheduler at i: 4426 xd xd xd dear sir xd please install vlc player in my system am not able to play some products demonstrations in wmp xd xd i: 4427 xd job bkbackup tool sql prod inc failed in job scheduler at i: 4428 service kit r we liefern hcuixqgj mavxgqbs i: 4429 probleme mit office dtlmbcrx mwuateyx i: 4430 probleme mit chargenverwaltung tmqfjard qzhgdoua Translated 4430 : problems with batch management tmqfjard qzhgdoua i: 4431 probleme mit chargenverwaltung howfanzi siavgtby Translated 4431 : problems with batch management howfanzi siavgtby i: 4432 setup new ws uadkqcsj xtmjlari i: 4433 need assistance to transfer elengineering toolonic amb show ticket onto my company iphone i: 4434 xd job job failed in job scheduler at i: 4435 xd xd xd not able to open an excel file with the following error message xd xd xd route of the file xd gru i: 4436 bitte r oben genannten ordner schreib und leserecht freischalten der ordner wird zur glichen arbeit ben tigt Translated 4436 : please enable read and write access for the folder mentioned above. the folder is required for the same work i: 4437 xd xd xd good morning xd xd xd after password change my outlook is not opening any more xd xd can you please help me xd xd xd mit freundlichen gr en kind i: 4438 xd job job failed in job scheduler at Translated 4438 : xd job job failed in job scheduler at i: 4439 hello shikghtyuha per my email it seems that user ukwfgxrl rieqbtnp has deleted some of the opportunities of another user rqfmcjak gcxvtbrz do not have details on those oportunities as they are not visible anymore all can say is that they have been deleted in the period of most likely their opportstorage product name start with ae seibel could you please verify if there is any chance to restore them i: 4440 pls reset the password for tempuser for erp sid erp prodn i: 4441 xd job job failed in job scheduler at i: 4442 team xd xd please check we are having frequent disconnection to the wifi all our connections to erp skype are disconnecting i: 4443 xd job job failed in job scheduler at i: 4444 pc eemw und drucker im abstechprogramdntym aufstellen Translated 4444 : set up pc eemw and printer in parting program dntym i: 4445 xd xd xd hello xd xd please reset my sid erp password xd xd xd i: 4446 xd job hostname fail failed in job scheduler at i: 4447 gso please unlock the erp sid account for id tjtigtyps soon don reset password i: 4448 xd xd xd hello xd xd the image of machine pc zollerfgh genius needs to be restored to the pc from the pen drive please help with this issue on an urgent basis xd xd i: 4449 drucker em bei frau zeilmann defekt das papier wird hrend des druck kopiervorganges geknittert Translated 4449 : printer em at Frau Zeilmann defective the paper is creased during the printing and copying process i: 4450 xd xd xd sir xd xd am facixepyfbga wtqdyoin ware issues in my laptop my monitor plastic portion has come out of the groove and left control key is not working kindly take necessary action xd xd below is details of laptop xd xd xd with warm i: 4451 hi please send me new password for my erp lost mine sorry janhytrn ooshstyizen sales manager construction sa new road king bit catalog i: 4452 the business transaction cannot be carried out i: 4453 computer eagwt xd connected scanner is fujitsu fi xd scanner driver needs also to be installed xd computer and scanner is online and nobody is working on it until scan client is installed so you can take everytime controll over the computer xd open text viewer is already installed xd if you need on site support please let me know xd i: 4454 xd job job failed in job scheduler at Translated 4454 : xd job job failed in job scheduler at i: 4455 vpn symantec Translated 4455 : vpn symantec i: 4456 hello help team xd xd pls see ralf email below xd last month we had some write access issues xd is it possible that all participants of the round tool group can work on this collaboration platform file even if the file name will change xd need to update this file each month and save it under the respective month xd if not do you have any idea how we can handle that xd xd xd xd xd i: 4457 xd xd xd hello xd xd material no can not use in purchasing please replicate xd xd xd best i: 4458 hello team one of company user uxndyfrs vahxnfgl sometimes go error message below think this is erp server connection issue do you have any solution for this error shows an error happened during accessing bw server connection was stopped because of this error xmgptwho fmcxikqz k takeshi asano i: 4459 system sid sid sid sid hrp other sid sid enter user id of user having the issue mathyida transaction code the user needs or was working with unable to logon locked describe the issue please unlock the account and reset the password for both the systems i: 4460 i am unable to update profile details its given unable to update user shighjvnn not found error please assist me i: 4461 xd xd xd my system is virus effected please remove permanently xd xd please find below screen shot xd xd xd xd i: 4462 account is getting locked from hostname i: 4463 vpn Translated 4463 : vpn i: 4464 i am having problems logging into the na vpn am receiving an error message saying that my username or password is incorrect even though know it is correct i: 4465 xd xd xd hi xd please help to create permanent companyguest wifi login pw and user name for our office xd we need this password and user name so that as and when we have guest coming for training or meeting to be able to login xd xd best i: 4466 unable to process order through i shipping system due to the system not registering the existing intercompany billing i: 4467 name cagrty language browser microsoft internet explorer customer number telephone summary cannot log into vpn i: 4468 erp account unlocked i: 4469 xd job sid hotf failed in job scheduler at i: 4470 xd job sid hoti failed in job scheduler at i: 4471 xd job sid hoti failed in job scheduler at i: 4472 timecards are not generating automatically i: 4473 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4474 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4475 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4476 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom ticket xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4477 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4478 xd xd kind Translated 4478 : xd xd Kind i: 4479 inqury does email work on phone without internet connection i: 4480 wallpaper is beshryu need to change to windows theme i: 4481 unable to communicate to savin printer Translated 4481 : unable to communicate to savin printer i: 4482 hostname erp search server server erpstartsrv exe service is down since et on i: 4483 ms excel right click not working xd connected to the user system using teamviewer xd repaired the ms office xd reopned the excel its working fine now xd issue resolved i: 4484 uacyltoe hxgayczeing is available but can get into sid i: 4485 update on inplant Translated 4485 : update on implant i: 4486 mobile device activation Translated 4486 : mobile device activation i: 4487 pos report does not pull the search results connected to the user system using teamviewer when the user tries to run pos report as seen in the scren shot it gives the user error see attachment contact i: 4488 unable to print from tc ps printer i: 4489 unable to connect to printer Translated 4489 : unable to connect to printer i: 4490 unable to print keeps asking to install driver for printer i: 4491 i am not able to print in usa Translated 4491 : i am not able to print in usa i: 4492 i need access to the npr template can load the site but cannot enter customer i: 4493 i am trying to create group under people in collaboration platform get an error message that the ability to create groups has been turned off by the person who manages your email i: 4494 approve primary email of the crm qlhmawgi sgwipoxn called kpobysnc tqvefyui in msd crm production i: 4495 hello it team this afternoon my computer has stopped connecting to printer cl ps when attempt to print document it prompts me to install driver for the printer let it do that and re open the document when try to print again it does the same thing and then tells me it cannot print this is the main printer that have been using since so m not sure why it has suddenly stopped working if you could please assist me when you get moment d appreciate it will print to another nearby printer in the meantime it is allowing me to print to this other network printer if you need to contact me please feel free to call me at or can be reached via skype i: 4496 setup client on from e laptop i: 4497 name lpriokwa bgwneavl language browser microsoft internet explorer customer number telephone summary am having difficulty opening power point won open and says repair when click it cannot open i: 4498 i updated my password using password management tool and now my collaboration platform is asking me to enter credentials if enter my old password collaboration platform says it is incorrect if enter my newly updated password the message contacting the server for information pops up dierppears then it asks me to sign in again this collaboration platform is shared on collaboration platform between my coworkers and i have attached video to show what is happening i: 4499 generirtc issue about msoffice version i: 4500 hello please create standard collaboration platform template site for the german payroll implementation project owners jywvemun qngschtz and lixwgnto krutnylz as backup full update access should also be usaed lixwgnto krutnylz przcxbml vnjdghui tvcdfqgp nrbcqwgj johyue ghjuardt jywvemun qngschtz jfcrdavy sxpotjlu nicrhty edmhihryu we will also require some vendors external to company to have access to certain folders as well please inform as soon as the site have been created many i: 4501 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation hakim belhadjhamida erp password locked as have entered wrong one by the way changed my password this morning rakthyesh ramdntythanjesh hi hakityum i: 4502 erp sid account unlock for laffekr i: 4503 blank call i: 4504 ticket update on inplant i: 4505 ticket update on inplant i: 4506 hello xd xd my nightly erp reports are no longer running each day have reset them and they still will not run xd xd i: 4507 name vfjsubao yihelxgp language browser netscape customer number telephone summary am locked out of crm and need to get in to get shipment out today i: 4508 nwfodmhc exurcwkm pm fmzdkyqv dbrslnhe re sab wg die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird hi michghytuael your device has been successfully activated Translated 4508 : nwfodmhc exurcwkm pm fmzdkyqv dbrslnhe re sab wg the synchronization with exchange activesync is temporarily blocked on your ger until access is granted by the administrator hi michghytuael your device has been successfully activated i: 4509 unable to log in to windows i: 4510 volume label dat lhqsm eead on server lhqsm is over xd space consumed space available g i: 4511 neither my earbuds nor plantronics are working anymore i: 4512 name fbhyeksq caexmols language browser microsoft internet explorer customer number telephone summary unable to print have updated drivers however still saying needs updated i: 4513 outlook does not start Translated 4513 : outlook does not start i: 4514 unlocked and confirmed with user i: 4515 can you please reset my password vfjsubao yihelxgp customer service representative i: 4516 unable to connect to tx and tx i: 4517 outlook does not start Translated 4517 : outlook does not start i: 4518 xd xd fumkcsji sarmtlhyanardhanan xd pm xd bvwepigr ekmarvgd xd vyluaepi dtwfaejr xd inc xd xd hi jashyht xd xd user had called to mention that he needs to be able to get on wireless as he will be travelling xd xd xd i: 4519 name seghyurghei language browser microsoft internet explorer customer number telephone summary can you add rqiw to rqigfgage qlhmawgi sgwipoxn i: 4520 sagfhosh karhtyiio am rabhtui edula ufpzergq zchjbfdehivashankaraiah rkupnshb gsmzfojw inc time cards missing from ticketing tool and change of supervisors name hi rabhtui it looks like timecards for last two weeks in and week of are missing from service now also checked with my team member venkat he is also having same issue and also request you to change the supervisor name from erihyuk baurhty to xabkyoug wdkyiqfx inc is assigned to you please take look please revert for any clarifications i: 4521 pdf files are not getting saved freezes from server Translated 4521 : pdf files are not getting saved freezes from server i: 4522 call disconnected due to vpn disconnection Translated 4522 : call disconnected due to vpn disconnection i: 4523 call disconnected due to vpn disconnection Translated 4523 : call disconnected due to vpn disconnection i: 4524 unable to print from cl i: 4525 german call caller disconnected Translated 4525 : german call caller disconnected i: 4526 microsoft word stopped working unable to open files i: 4527 user wanted to contact hr i: 4528 password expired i: 4529 xd job job failed in job scheduler at Translated 4529 : xd job job failed in job scheduler at i: 4530 frequently getting error in outlook application error message is attached i: 4531 call got disconnected as vpn went off for while i: 4532 auto output for inwarehouse tools siemens cm is set up to auto output inwarehouse tools to however these are not being received in email to trigger on line invoicing on customer website i: 4533 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model all printers xd xd detailed description of the problem says has to install driver won print xd xd type of documents not printing email excel word etc xd all documents xd xd what system or application being used at time of the problem all systems xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed no and yes xd xd if erp system which system all systems xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 4534 zcor variants plant and rodstock not working in erp Translated 4534 : zcor variants plant and rodstock not working in erp i: 4535 unable to create new expense as its showing an infotype error i: 4536 sandir usa pa the interface fc is down since at am et on i: 4537 inwarehouse tools were not included to payment proposal i: 4538 account unlocked i: 4539 ticket update on inplant i: 4540 unable to connect to vpn Translated 4540 : unable to connect to vpn i: 4541 call from private number got disconnected i: 4542 x Translated 4542 : x i: 4543 company na usa usa switch tc access sw company com xd interface fastethernet furnace pc ray jankowski is down i: 4544 maschinen pc von im bereich kentip sst sich nicht mehr starten Translated 4544 : machine pc from in the kentip area can no longer start i: 4545 wenn ich am rechner evh im erp eine zeichnung ffnen will schlie erp dann muss ich mich neu einloggen xd es wurden bereits zwei tickets geschrieben aber das problem wurde bisher nicht behoben Translated 4545 : if I want to open a drawing on the computer evh in the erp schlie erp then I have to log in again xd two tickets have already been written but the problem has not yet been resolved i: 4546 we ve made uacyltoe hxgaycze with xawlkiey demjqrfl in sid inwarehouse tool number xd there is also inwarehouse tool and proforma in sid as examples please note that english sentences are automatic ones and french are manual ones xd on customer master level classification checked no on print export info but it doesn work xd xd i: 4547 personnel number not accepted by travel expense manager in erp i: 4548 hostname average samples disk free on is now i: 4549 hallo nnen sie mir helfen die unten gekennzeichnete datenbank plant stock report daily xlsx auf den zur ckzusetzen danke cflrqoew qbgjwaye process planning company company produktions gmbh and co kg gesch ftsf hrer dr jofghyuach fabry phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 4549 : hello can you help me to reset the database marked below plans stock report daily xlsx to the, thank you cflrqoew qbgjwaye process planning company company produktions gmbh and co kg managing director dr jofghyuach fabry phvkowml azbtkqwx naruedlk mpvhakdq this communication is for the sole use of r The addressee determines and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if this communication is due to an oversight then please notify the sender and send this message company posts select the following link to view the disclaimer in an alternate language i: 4550 probleme mit portal ujtmipzv cwdzunxs Translated 4550 : problems with portal ujtmipzv cwdzunxs i: 4551 zeiterfassung funktioniert nicht we qs qualit tsmanagement xwirzvda okhyipgr Translated 4551 : time recording does not work we qs quality management xwirzvda okhyipgr i: 4552 canner metroligic r rechner we wu defekt zedlet Translated 4552 : canner metroligic r calculator we wu defective zedlet i: 4553 install company barcode r ewew vzqomdgt jwoqbuml i: 4554 xd job job failed in job scheduler at Translated 4554 : xd job job failed in job scheduler at i: 4555 repeat print in tips printer Translated 4555 : repeat print in tips printer i: 4556 hostname label dat hostname ebcd is over space consumed space available g i: 4557 qlhmawgi sgwipoxn we wu unlock Translated 4557 : qlhmawgi sgwipoxn web wu Unlock i: 4558 we are having serious issues with creating shopping cars in purchasing xd buyer group of apac is defaulting and not changeable xd since this buyer group belongs to different purch org it causes an error that cannot be overwritten xd it seems this only happens when creating freetext shopping carts xd we need immediate action on this xd no one can create freetext requisitions at all xd i: 4559 vip outlook not working asking for password no password prompt is coming up i: 4560 we need dn for material pcs plant plant i: 4561 can not access in sid i: 4562 guten morgen wie eben mit hotline besprochen sende ich die fehlermeldung die beim einkaufen in purchasing katalog erscheint cid hardcopy cid contact Translated 4562 : good morning as just discussed with hotline, i send the error message that appears in purchasing catalog when shopping cid hardcopy cid contact i: 4563 need cute pdf installed i: 4564 yuxloigj tzfwjxhe xd am xd nwfodmhc exurcwkm xd re action required please connect to the new vpn url before xd xd hello xd xd my vpn is not working kindly help i: 4565 xd xd xd user tfazwrdv upwonzvd pc name has been changed to atcl old pc name atclx xd user wants this to be updated in telephony software system for updates xd xd xd xd yi date at gmt xd rajyutyi kuttiadi obuwfnkm ufpwmybi tfazwrdv upwonzvd fw computer name change in telephony software xd hello rajyutyi xd could you help to put below stations to company net xd xd user name xd xd new pc name xd xd mac address xd xd tfazwrdv upwonzvd xd xd atcl xd xd b xd xd xd xd xd best i: 4566 xd xd xd guten morgen xd xd leider kann ich den kurs nicht absolvieren da ich keinen zugang bekomme bis hierher geht xd xd xd mit den besten nschen und gr en xd xd gasbfqvp fmvqgjih xd designer product engineering wear solutions xd company shared services gmbh xd xd tel xd fax xd mobil xd xd mail adresse xd www company com xd xd eckersdorfer stra xd germany bayern germany xd xd gesch ftsf hrer managing directors phvkowml azbtkqwx naruedlk mpvhakdq xd xd sitz registered office rth bay registergerirtcht listed in the court register rth bay hra xd pers nlich haftende gesellschafterin general partner company deutschland gmbh xd sitz registered office germany registergerirtcht listed in the court register bad homburg d hrb xd xd i: 4567 i can do purchase requisition at purchasing see attachment xd account requires assignment to co object can select byer i: 4568 xd job job failed in job scheduler at i: 4569 computer can started i: 4570 need to install nvyjtmca xjhpznds applications xd job scheduler xd backup tool xd vmware xd vnc viewer xd xd while trying to install these applications it is asking for administration access i: 4571 we cannot see new fax in to public amssm ricoh fax folder since end of could you please check and fix if there have been any problems xd i: 4572 outloot i: 4573 xd job bkwin search server qa daily failed in job scheduler at i: 4574 extract the file for the request using rscrm bapi i: 4575 please help qskwgjym bsqdaxhf delete paramdntyeters and payment run in code f i: 4576 xd job sid stat failed in job scheduler at i: 4577 xd xd xd dear all xd xd would you please help us out we can complete gr for below xd xd mm qty xd po xd xd xd i: 4578 switch down company ap ind kirty coating access sw located at india kirty is down since pm et on i: 4579 xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job bkwin tax interface dev daily failed in job scheduler at i: 4580 xd xd xd hello it team xd xd we are facing item category issue for zfd free of charge order so now we cannot select item category zkln xd could you please check and resolve the issue xd xd order detail xd sales org xd so xd order type zfd xd mm xd qty pcs xd delivery plant plant xd usage product lost intrans xd xd we cannot select item category zkln without error hence erp cannot identify this open order we cannot see this open order at md screen xd xd xd xd i: 4581 xd major lib drive time pm xd dev rmt xd cannot write to device o error xd xd critical nfsbackup hana sid differential backup time pm xd received abort request from sm aborting xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd job bk hana sid erp dly dp failed in job scheduler at i: 4582 xd major lib drive time pm xd dev rmt xd cannot write to device o error xd xd critical hostname bk hq company com usr erp time pm xd received abort request from sm aborting xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job sid filesys failed in job scheduler at i: 4583 xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd job sid filesys failed in job scheduler at i: 4584 the shop floor app is reporting unreachable status on lnssm please investigate i: 4585 is sid down keep receiving balancing error i: 4586 windows password reset i: 4587 xd xd xd good evening xd xd have lost my vpn login icon can this be reinstated xd xd i: 4588 skype and outlook not launching connected to the user system using teamviewer had the user connectt to the company vpn deleted rsa files and help the user login to the skype tried to reconfigure the mscrm no go tried to repair the ms office reinstalled the ms office caller confirmed that he is now able to see the emails on outlook issue resolved computer lmsl contact i: 4589 hostname status label dat hostname ebcd is now utilized i: 4590 hostname status label sys hostname ab is now utilized i: 4591 static on call i: 4592 changes made for ticket inc have caused issues with delivery printing at plant plant reconditioning facility is now located at the plant facility in illinois usa there were changes made to pick request printing for this group of employees but it has affected the entire facility the plant group used to print delivery notes at the users paramdntyeter now all delivery notes are printing at an office printer that is not near where they are working this is not productive please reach out to omiwzbue auvolfhp and myself to help resolve this as soon as possible i: 4593 so has configuration incompletion for items which is invalid these items are complete and error should not be there i: 4594 if try to use excel word skype outlook have message products disabled to continue to use activate now if tried to do using mail account have the message account is not associated with the product to active the installation please enter the account associated with the product i: 4595 lkwspqce knxaipyj mail xd pm xd nwfodmhc exurcwkm xd amar support in installing archiving tool to allowe me view vendor inwarehouse tools xd xd hello xd xd can please have support in downloading archiving tool software for erp sid to allow me access and view vendor inwarehouse tools xd xd xd i: 4596 see attached workbook required to be refreshed for msc requirement i: 4597 gvderpbx udrzjxkm junior application sales engineer Translated 4597 : gvderpbx udrzjxkm junior application sales engineer i: 4598 name debhyue fhyuiinch language browser microsoft internet explorer customer number telephone summary rma receiving issue with items under lb rma has two items and and when we try to receive items in under mm erp is doing round up value to lbs and lbs is there way to receive exact weight in i: 4599 please help brianna get working again on business manager i: 4600 tnghnha ajuiegrson is in need of having access to the met lab computer to be able to perform her job i: 4601 the following objects search connectors in enterprise search are not returning any results xd material xd material bom xd specification xd xd i: 4602 there is bug in the performance sproc that calculates payout values small modification needs to occur in order to calculate payout values on monthly basis this was missed during uacyltoe hxgayczeing due to uacyltoe hxgayczeing taking place in the first period of financial toolcal year this issue only arises in subsequent periods i: 4603 password reset Translated 4603 : password reset i: 4604 not able to create delivery for sto xd could you please verify apo xd please assing to supply chain group xd i: 4605 skype sound not working xd connected to the user system using teamviewer xd installed the sound drivers xd restarted the pc xd gave uacyltoe hxgaycze call user able to hear sound clearly xd issue resolved i: 4606 xd job job failed in job scheduler at i: 4607 unable to connect to vpn Translated 4607 : unable to connect to vpn i: 4608 raghyvhdra najuty xd pm xd nwfodmhc exurcwkm xd srinfhyath araghtyu parthyrubhji erathyur xd trurthyuft re tax not calculated xd xd hello xd xd please note material has reached along with excise inwarehouse tool without vat r to inwarehouse tools xd xd dt xd dt xd dt xd i: 4609 need to configure emails on the company iphone device i: 4610 erp queries Translated 4610 : erp queries i: 4611 unlocked erp sid Translated 4611 : unlocked erp sid i: 4612 need full control access to hostname teams consigned inventory i: 4613 emailed some steps awaiting uacyltoe hxgayczeing nwfodmhc exurcwkm pm shhkioaprhkuoash ms fw fw fw engineering drawing tool automation hi shiv please see if removing the names from your outlook cache fixes the issue to do this please type the name of the recipient you will find x next to the name click on it to remove from the cache open new email and type out the complete email address and uacyltoe hxgaycze if you are able to send the email i: 4614 i am having issues delivering parts to stock in another plant the rqfhiong zkwfqagb has deliver plant of plant but it will not deliver there ext summary am having issues delivering parts to stock in another plant the rqfhiong zkwfqagb has deliver plant of plant but it will not deliver there i: 4615 could not hear user from other side xd phone issue i: 4616 users are unable to connect to the network drives in hostname the server is also not reachable i: 4617 puxsvfwr cwkjruni xd pm xd nwfodmhc exurcwkm sab wg die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird xd importance high xd xd xd hi can you please activate my mobile devise to recieve emails on my new business iphone xd xd i: 4618 xd job job failed in job scheduler at i: 4619 unable to connect to vpn Translated 4619 : unable to connect to vpn i: 4620 mobile device activation Translated 4620 : mobile device activation i: 4621 unable to connect wireless on the laptop i: 4622 uyjlodhq ymedkatw lghuiezj has mapped the units departments public and teams to hostname incorrectly helped her mapping network drive to correctly inc but after reboot computer is connecting back to kkbsm instead of hostname she should have access drive drive and drive with this server hostname pc name ekxw please help update login script for user sica pez rufo also user requested to process this request as soon as possible as her daily work is getting hampered and its very urgent for her i: 4623 vpn access pc name aidl Translated 4623 : vpn access pc name aidl i: 4624 out of office for at least next months need password reset for the mails i: 4625 outlook not loading i: 4626 no response from other side german call i: 4627 removing another mail box from outlook i: 4628 unable to login to skype Translated 4628 : unable to login to skype i: 4629 xd xd xd hello xd when try to get on to erp search and explorer analytics blank screen comes up below are we having problems xd i: 4630 need to contact keyhtyvin toriaytun i: 4631 unable to launch outlook i: 4632 hoi xd xd view attached examples where the customer ref as entered in erp is not printing on delivery for sales org also printscreen from order wikfnmlwds wmtiruac attached xd xd this might also be the case in other sales org please also check xd xd i: 4633 please set field services collaboration platform page to include collaboration platform meeting section as you had explained i: 4634 my phone Translated 4634 : my phone i: 4635 name frafhyuo ajuyanni language browser microsoft internet explorer customer number telephone summary hello m frafhyuo ajuyanni from company italy when try to create delivery pweaver ship the printout of shipament lable is not working for the italian shipmet works for others countries is not working can you please give me support i: 4636 no response from other side i: 4637 follow up call inplant i: 4638 xd xd xd please investigate and repair the cause of the weak wifi signal in the randd area we used to have full bars and for some reason it is barley bars xd i: 4639 dual monitor issue Translated 4639 : dual monitor issue i: 4640 need interaction password reset phone i: 4641 password management tool password manager password reset help and query i: 4642 beim transport des druckerpapiers treten in regelm igen abst nden einkerbungen auf papiereinzug defekt Translated 4642 : When transporting the printer paper, notches appear at regular intervals. Paper feed is defective i: 4643 unable to log in to the mii system xd xd user authentication failed i: 4644 usa has no functioning ups systems all switches servers are plugged into the wall please ship two aerp shrugott tyhuellis usa facilities mgr i: 4645 the i: 4646 outlook not launching i: 4647 xd xd xd hello xd xd data are dierppearing in bex from productmanagement master xd xd we found the reason anybody has changed the key figure name from sales revenue to total sales revenue xd in addition there is new key figure net value xd xd nobody is informed about the change and the different content of the two key figures xd xd you immediately need to change back all the reports won work now xd xd xd best i: 4648 windows password reset i: 4649 xd xd xd hello guys xd xd please can you help was advised to change passwords on password management tool manager and since have done this have had delay on my mails as per the below screenshot xd xd xd i: 4650 active directory locked i: 4651 mobile device activated Translated 4651 : mobile device activated i: 4652 xd xd xd hello xd xd after implementation of updation of tax rate through system we have come across instances wherein the system is capturing different tax rate for local sales within karnataka other than one recommended xd xd in this connection attaching herewith mail communication from team xd xd request you to look into this aspect as it is resulting into non compliance xd xd xd i: 4653 a student is working on project with vinhytry and has reported that her passwords are no longer working to access data my assumption is that she got her passwords mixed up between ad and hana sid and is locked out of one or both please have look at unlocking her account i: 4654 cannot access skype for business with my login credentials i: 4655 user issue user session instantly kirtyled timeout error as per attached screen xd i: 4656 added user to the employee group ryafbthn will uacyltoe hxgaycze and call in if he has any issues i: 4657 xd xd xd hallo xd xd bitte r wothyehre die passw rter r windows und erp freimachen xd xd danke xd xd mit freundlichen gr en best Translated 4657 : xd xd xd hello xd xd please r wothyehre clear the passwords r windows and erp xd xd thank you xd xd best regards i: 4658 computer starts but keybankrd and mouse don work impossible login cables and connections ok keybankrd and mouse lights on i: 4659 hi team basis team dac xd xd please investigate the bobj explorer services are up and running it is showing blank screen at the moment xd xd have re indexed all the information spaces but it did not help xd xd please assist at an earliest xd xd will create ticket in few minutes and update here xd xd i: 4660 erp sid account unlock i: 4661 account locked i: 4662 xd xd xd hello xd xd erp does not create to automatically because of the following error message xd xd i: 4663 would you please delete the solution so that can upload it again i: 4664 erp sid account unlock i: 4665 xd xd xd hallo xd xd bitte konten erzeugen xd xd referenz user twdyzsfr gjedmfvh xd xd auftraggeber scedxqur pocxqtrl xd xd xd Translated 4665 : xd xd xd hello xd xd please create accounts xd xd reference user twdyzsfr gjedmfvh xd xd client scedxqur pocxqtrl xd xd xd i: 4666 hzptilsw wusdajqv log on balancing error for sid and sid i: 4667 lhbsm disk free on is now which is below warning threshold of i: 4668 guten morgen xd xd bitte die schreib leseberechtigung r ordner staebefertigung einrichten xd xd danke xd xd xd xd xd xd freundliche gr kind Translated 4668 : good morning xd xd please set up the write and read authorization r folder staebefertigung xd xd thank you xd xd xd xd xd xd friendly gr child i: 4669 revert the change done for chg please find the attachment for the issue that users are facing i: 4670 search and explorer analytics issue is blank in bobj can login to search and analytics from ess but no search list is available phone i: 4671 good morning when double click on the tess icon on my desktop starts the initial loading page but after few seconds the application close itself and the programdnty doesn run many i: 4672 xd xd xd dear all xd xd can someone please check and fix the problem xd xd sales reps reported that the reports are not available in bobj xd xd checked too and also get the error message xd xd xd i: 4673 good day xd xd please unlock users windows account i: 4674 local availability and pricing information missing on various obsolete products see screenshot i: 4675 unable to turn on the computer i: 4676 po display by vendor is showing only pending po xd if selection paramdntyeter is selected as we it was showing only pending po xd if selection paramdntyeter is kept as blank it was showing complete po done on that vendor i: 4677 disable private address fields new and edit buttons on employee master crm ui i: 4678 hostname is not responding since at am et on i: 4679 please add new user to company ru and nm nghyuakm install phone and headset as well i: 4680 aqzcisjy raflghneib account disabled Translated 4680 : aqzcisjy raflghneib account disabled i: 4681 xd xd xd hello xd changed my passwords this morning with password manager but am having problems synching my collaboration platform on collaboration platform it keeps asking me to enter the new password again and again xd the rest including office on both the workstation and the mobile are working ok with the new password just collaboration platform is having problem xd any suggestions xd xd many i: 4682 xd xd xd dear sir xd xd have received new laptop dell latitude with which am unable to take printouts and scan from office printer xd kindly help in resolving the issue xd xd best i: 4683 erp sid bw production account password changed failed in password management tool system erp bex can not login now xd user id xighjacj xd xd xd hi xd xd please help on my issue below xd xd xd i: 4684 xd xd xd hi got the below message during password change kindly help xd xd cid bb e eeec xd xd with i: 4685 xd xd xd win bit xd dell xd xd mit freundlichen gr en best Translated 4685 : xd xd xd win bit xd dell xd xd Yours sincerely i: 4686 xd am error vm hostname ref vm is disconnected xd xd job job failed in job scheduler at i: 4687 hallo xd xd der rechner von unseren schichtf hrern gabryltk byczkowski stankewitz ist defekt xd kannst du bitte mal vorbeikommen xd Translated 4687 : hello xd xd the computer of our shift leaders gabryltk byczkowski stankewitz is defective xd can you please come over xd i: 4688 rechner r messvorrichtung steli funktioniert nicht zedlet Translated 4688 : computer r measuring device steli does not work zedlet i: 4689 probleme mit accespoint konferenzraum fande niptbwdq csenjruz Translated 4689 : problems with accespoint conferenzraum fande niptbwdq csenjruz i: 4690 probleme mit ffnen wsb exe we wu pfjwinbg ljtzbdqg Translated 4690 : problems with opening wsb exe we wu pfjwinbg ljtzbdqg i: 4691 account locked i: 4692 datenlogger opus thip wird zur berwachung der raumtemperatur ben tigt findet nach der externen wartung keine netzwerkverbindung zum pc der pm Translated 4692 : data logger opus thip is required to monitor the room temperature and after external maintenance there is no network connection to the pm pc i: 4693 i cannot connect to remote vpn using either of the links below xd probably it has something to do with emea upgrade activity that took place on xd please fix the problem so that can connect to vpn i: 4694 machine details ip address subnet mask physical address a host name mc service engg from the machine supplier from switzerland is with us for training programdntyme we need the internet access in the machine for week request your immediate support kuhgtyjvelu manager reliability engineering i: 4695 forwarded request to the rqfhiong zkwfqagb dl copying tomoe xd xd email xd zsqabokr xbtsaodr xd pm xd nwfodmhc exurcwkm xd can not create inventory list xd xd help desk xd xd about the quantity of mm no we want to change from zero xd xd please find the attached document xd we have problems xd the inventory list cannot show by mb xd the inventory list cannot create by mi xd xd xd best i: 4696 dear team we need to cancel sto pls help to reverse its inwarehouse tool markhtyed in red thx rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 4697 account for aqzcisjy raflghneib vvdghtteij is locked please unlock i: 4698 dear all my password runs out in days am travelling and have no chance to come into the company network please extend my current password until the of i: 4699 unable to set skype meeting in outlook Translated 4699 : unable to set skype meeting in outlook i: 4700 xd job job failed in job scheduler at i: 4701 xd job job failed in job scheduler at i: 4702 the customer group of customer has been defigned as cn and was told price of the products mm have been maitained in system but the order isn with any price on it please check and let me know what wrong in system for it the customer is in urgnet need of the order please solve the problem for us aerp xd please find the detail from the attached xd i: 4703 source ip xd source port xd source ip geolocation lisbon prt xd destination ip xd destination hostname apul xd destination port xd user name xcirqlup zopbiufn xd location asiapac apac apacpuchn computers apul xd sms status not updated xd field sales user yes no no xd dsw event log see below xd xd xd xd event data xd xd related events xd event id xd event summary vid server response with anubis sinkhole cookie set probable infected asset xd occurrence count xd event count xd xd host and connection information xd source ip xd source port xd source ip geolocation lisbon prt xd destination ip xd destination hostname apul xd destination port xd connection directionality incoming xd protocol tcp xd http status code xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid server response with anubis sinkhole cookie set probable infected asset xd classification none priority action accept impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xaad ack xce win xb tcplen xd pcap xd xd xd ex http uri domain newflv sohu ccgslb net xd xd ex http hostname sso anbtr com xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd d b h xd f cde ac ebc ad p xd ce t h http xd e f moved xd f da emporarily serv xd e a er nginx date xd fe mon sep xd d da gmt xd e d content type te xd f cd fe xt html connect xd f ea cf da ion close set xd f fb d cookie anbtr xd acbccb xd b efb xd f sid de ee domain ccgslb xd da cf fe et location ht xd af fe c tp xsso newflv xd f c ee sohu ccgslb net xd aacbcc xd befb xd ad af go xd fe c f sso newflv sohu xd ee ccgslb net aa xd cbccb xd efb xd pcap hex e i: 4704 job name Translated 4704 : job name i: 4705 xd xd xd hello xd xd am unable to open jpg and png files pls do the needful xd xd vivthyek byuihand xd asst manager sales xd company india ltd india xd xd xd xd xd i: 4706 how to recall send message in outlook i: 4707 passwort zur cksetzen Translated 4707 : reset password i: 4708 handscanner am ckmeldeterminal defekt gegen ber kln Translated 4708 : hand scanner at ckmeldeterminal defective against kln i: 4709 folgender fehler microsoft net framdntyework is not installed xd please contact your administrator i: 4710 hello please help me to access the company engineering tool tool data system and crm company engineering tool is asking email and password to open and tried it with my email and password but it is showing incorrect id and password so please do needful thanking you ramdntygy i: 4711 unable to connect to engineering tool i: 4712 name gwptzvxm rhozsfty language browser microsoft internet explorer customer number telephone summary can not log into vpn i: 4713 xd name pradtheyp xd language xd browser microsoft internet explorer xd customer number xd telephone xd summary sorahdyggs ijyuvind sohytganvi his system is locked and he is not able to log in i: 4714 xd xd xd dear it xd xd the o can not be generated for below dn would you pls help to check i: 4715 xd job job failed in job scheduler at i: 4716 windows account locked i: 4717 xd xd xd hello xd forgot the password of old laptop and have to submit the same to india office xd before doing that want to transfer some data especially engineering tools xd could you please help me in resolving the issue xd xd i: 4718 windows account locked i: 4719 xd job hr payroll na failed in job scheduler at i: 4720 xd job hr payroll na failed in job scheduler at i: 4721 xd job hr payroll na failed in job scheduler at i: 4722 battery showing warning status i: 4723 unable to login to erp sid Translated 4723 : unable to login to erp sid i: 4724 unable to connect to vpn vpn Translated 4724 : unable to connect to vpn vpn i: 4725 xd xd xd hello xd please help me unlock erp logon can not logon the erp system input my password xd xd best i: 4726 lhqsm security tool application is down xd component name security tool password manager is down i: 4727 hostname plm conversion production alwaysupservice exe wrong number of instances of process alwaysupservice exe i: 4728 hostname volume label dat hostname deb on server hostname is over xd space consumed space available m i: 4729 lhbsm volume label dat lhbsm ecc on server lhbsm is over xd space consumed space available g i: 4730 xd job snp heu regen failed in job scheduler at i: 4731 xd job snp heu regen failed in job scheduler at i: 4732 xd job sid hoti failed in job scheduler at i: 4733 xd job job failed in job scheduler at i: 4734 xd job sid hoti failed in job scheduler at i: 4735 xd job bk hana sid os wly dp failed in job scheduler at i: 4736 xd job bk hana sid os wly failed in job scheduler at i: 4737 xd xd xd sent from mail xd xd xd xd Translated 4737 : xd xd xd mail sent from xd xd xd xd i: 4738 name cighytol yjurztgd language browser microsoft internet explorer customer number telephone summary hello closing down my laptop and starting vpn again has not solved the issue do not have access to or drives today teams and global can do any work until this access is restored please help i: 4739 unable to connect to outlook i: 4740 ms office installation contact no i: 4741 timnhyt rehtyulds am datacenter dacl re qa cold backups i: 4742 hostname the service is down after the weekend reboot erpstartsrv exe i: 4743 xd job job failed in job scheduler at i: 4744 xd job co val update crosscomp failed in job scheduler at i: 4745 xd job snp heu regen failed in job scheduler at i: 4746 xd job snp heu regen failed in job scheduler at i: 4747 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4748 hostname label sys hostname ab on server hostname is over space consumed space available g i: 4749 restoring ppt i: 4750 xd xd xd hello xd xd facing erp login problem password issue xd xd with best i: 4751 xd job job failed in job scheduler at i: 4752 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 4753 engineering tool installation ms office installation vpn access erp access i: 4754 xd job sid cold failed in job scheduler at i: 4755 xd job sid cold failed in job scheduler at i: 4756 xd job sid cold failed in job scheduler at i: 4757 xd job job failed in job scheduler at Translated 4757 : xd job job failed in job scheduler at i: 4758 hi liuytre xd xd sorry to hear of the issues with ethics and vpn that you re experiencing xd xd you do have access to vpn now and should be able to connect through xd xd also please could you share the error you have when trying to get into ethics understand there was change in your employment status which might be contributing to it but will need to confirm please share when the changes took place and the error message xd xd i: 4759 hi liuytre xd xd sorry to hear of the issues with ethics and vpn that you re experiencing xd xd you do have access to vpn now and should be able to connect through xd xd also please could you share the error you have when trying to get into ethics understand there was change in your employment status which might be contributing to it but will need to confirm please share when the changes took place and the error message xd xd i: 4760 erp sid account locked i: 4761 unable to connect to vpn Translated 4761 : unable to connect to vpn i: 4762 what type of outage network circuit power please specify what type of outage xd xd top cert site na yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4763 observing below alert in monitoring tool since am et on xd xd application dynamics crm url checks on node company crm sp mfg tooltion azurewebsites net is down i: 4764 ap vpn is not getting connected please assist at an earliest i: 4765 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4766 xd job job failed in job scheduler at Translated 4766 : xd job job failed in job scheduler at i: 4767 xd job job failed in job scheduler at i: 4768 unable to print production orders since last hour xd user was doing half day and mentioned that he will contact again on for this issue xd not sure if rest of users in india plant facing same issue xd collated information for issue with screenshot and assigning to concern team xd xd xd connection to system production order interface app bng with destination production order interface vendor connc bng is not okay i: 4769 account locked out i: 4770 xd summary password change is locked need to change all password i: 4771 xd job job failed in job scheduler at i: 4772 xd job job failed in job scheduler at i: 4773 hello greetings of the day please note that the clientless vpn is not working in my system below details are for your kind information only user id sarhytukas system id awyl please find below the snaps am receiving while trying to use vpn please do the needful i: 4774 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4775 xd job sid filesys failed in job scheduler at i: 4776 xd job bk hana sid erp dly dp failed in job scheduler at i: 4777 xd job job failed in job scheduler at i: 4778 skype login issue xd connected to the user system using teamviewer xd help the user login to the skype xd issue resolved xd xd i: 4779 no audio while on skype meeting i: 4780 xd xd xd hello company it help xd xd for some reason the image in the invitations does not show up as you can see below the only think is this oc xd xd is this an issue on my end how outlook is setup or something from the sender side xd xd xd i: 4781 xd job job failed in job scheduler at i: 4782 access can no longer connect to dsn glovia old we need this connection to obtain archived data please assign to keyhtyvin toriaytun i: 4783 emails not updating in outlook i: 4784 xd job job failed in job scheduler at i: 4785 name kvrmnuix yicpojmf language browser microsoft internet explorer customer number telephone summary update office to bit i: 4786 skype error Translated 4786 : skype error i: 4787 unable to submit discount form i: 4788 blank call gso i: 4789 please install project back on the clients pc i: 4790 in engineering tool when try to create new task some of the options are not being displayed xd xd please refer the attachment i: 4791 xd job job failed in job scheduler at i: 4792 supply chian mgmt tool password reset i: 4793 lauacyltoe hxgaycze java to be installed i: 4794 hello everyone users will receive message to logon to afkstcev utbnkyop senior analyst bokrgadu euobrlcn i: 4795 ticket update inplant Translated 4795 : ticket update implant i: 4796 user needs access to the engineering tool i: 4797 unable to add contacts to markhtyeting list to receive catalogs in crm user id kindftyed contact no i: 4798 source ip source hostname dane williuthyr user name dghuane whryuiams wijuiidl location usa pa eh sms status a field sales user yes no no dsw event log see below we are seeing your company internal asa company com device generating ipbl phishing form submit outbound beshryulisted ip alerts for traffic from dane williuthyr to the external ip address of has been beshryulisted by our counter threat unit ctu team due to its association with malware phishing form submit outbound the affected asset should be investigated as traffic to the beshryulisted ip address indicate that the host has been infected by malware we are escalating this incident to you via medium priority ticket and mail only notification per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at full escalation for related events high priority ticket and phone call autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely ctoc event data event id event summary ipbl phishing form submit outbound beshryulisted ip occurrence count event count host and connection information source ip source hostname dane williuthyr source mac address eb db destination ip destination hostname ip ip secureserver net destination ip geolocation schtrtgoyhtsdale usa connection directionality outgoing device information device ip device name company internal asa company com scwx event processing information sherlock rule id sle inspector event id agent id event detail asa built outbound tcp connection for outside to inside correlation data dhcpd dhcpack on to eb db dane williuthyr via eth relay lease duration renew take action ticket action i: 4799 xd job job failed in job scheduler at Translated 4799 : xd job job failed in job scheduler at i: 4800 os recibo gerados em pdf est saindo com caracteres Translated 4800 : the receipts generated in pdf are leaving with characters i: 4801 the geengineering tooloductdata web service calls the design tool service to obtain cad models for engineering tool xd believe this link points to the design tool uacyltoe hxgaycze service xd xd looks like the naming convention has changed in the last few days and files returned by this service are being named with just the materials management number xd g mm in sid see the attached fw engineering tool drills msg for more details xd xd the change is causing issues with models not being returned to engineering tool xd engineering tool will be demoed at imts starting on the xd need an urgent fix to revert any changes that might have been made to the file naming convention for files from the design tool service xd xd below are the original rules uli had implemented for file names for cad files returned by this service xd here are the implemented naming rules xd xd if there is cad catalog iso it taken xd else if there is cad catalog ansi it taken xd else rqfhiong zkwfqagb is taken xd an underscore plus cad graph type is added xd finally the original file extension is added xd xd i: 4802 ticket update on inplant i: 4803 dell tablet cracked after it was accidentally dropped i: 4804 xd am approfghaching you as we have problems with our approval workflow for credit memo requests respectively rmas xd opened several tickets regarding this topic which unfortunately did not lead to final solution xd maybe it is erp language problem for my part xd anyway hope that you can help to get this fixed xd xd the approval levels for our organization are as follows regardless who is the sales person in customer account xd level jwqyxbzs adpvilqu afcbrhqw vudghzcb as subsitute if possible xd level jwqyxbzs adpvilqu afcbrhqw vudghzcb as substitute if possible xd level qsoxltny dzjespml tjnwdauo jkdwbhgs as substitute if possible xd level plus michghytuael nz tjnwdauo jkdwbhgs as substitute if possible xd xd it often happens that these workflows are routed to the wrong person xd lauacyltoe hxgaycze example rma was routed to me at level and approved but then to jmkcewds qkoipbzn at level wo has nothing to do with it xd xd it takes lot of time to gather the wrong routed workflows and to forward them to the responsible person xd xd appreciate your help xd i: 4805 sound not working i: 4806 hi is erp down for vpn users keep getting this error every time try to log on to sid was in erp hrs ago with no troubles please help nkthumgf mwgdenbs ph i: 4807 update on inplant i: 4808 i trying to print to our network printer savin c i: 4809 vpn stopped working but was able to reconnected after few minutes i: 4810 xd job job failed in job scheduler at i: 4811 please see attached error that receive when trying to log in to hana i: 4812 unable to login to sid Translated 4812 : unable to login to sid i: 4813 i am locked out of global view prtgghjk need my password reset this is very urgent as have payroll reports must pull from there this morning i: 4814 windows password reset for tinmuym alrthyu i: 4815 rarty has this old laptop that he needs to login to but cannot when it is connected to the network error security database on the server does not have computer account for this workstation trust relationship he can once its not connected with an old password he needs to play some cds and his new laptop does not have cd drive please see why this laptop cannot be found in ad ph i: 4816 skype audio is not working Translated 4816 : skype audio is not working i: 4817 xd xd xd xd best Translated 4817 : xd xd xd xd Best i: 4818 unable to run reports from etime Translated 4818 : unable to run reports from etime i: 4819 initiated the download of net i: 4820 unlocked the account todd was able to get in successfully i: 4821 unable to launch skype Translated 4821 : unable to launch skype i: 4822 unable to launch outlook i: 4823 xd xd xd hello xd am getting an error trying to log into skype my address is correct log in id is correct and password is correct and have tried few times and get the same error what do need to do be able to log into skype xd i: 4824 trurthyuft xd xd per our converstion and shatryung of my screen on teamviewer this morning below is screen shot of the account issue xd xd if you look at opportstorage product number mdosid it has the correct account number for the customer that opp was created on and there was no problem selecting that correct account number xd xd all of the other opportunities were created more recently after and was only able to choose account number which is not the correct account number xd xd need to close these out today as won xd i: 4825 erp engineering tool locked out i: 4826 xd xd xd hello xd xd bahdqrcs xvgzdtqj was an intern that we hired on full time effective we followed the process of having her old manager transfer her to her new manager in oneteam and then her new manager entered her new job and compensation information like he been instructed to however have to be honest her onbankrding experience has been disaster so far she says that every time she calls hrss to help her out they are not very helpful or resolve her issues hrss will tell her it an it problem and it will tell her that it an hr problem here are some of the issues that she still having xd xd xd no access to benefit information on collaboration tool when she follows the directions that she was given she gets an error message that says needs approval request has been submitted xd xd no ethics access xd xd no expense report access she was able to enter her expense report however when she went to submit it she got an error message and now when she tries to log in she gets an error message it said that this is an it problem xd xd no access to the vpn again it said that hr needs to update the sid m not really sure what that is xd xd incorrect paychecks she did not receive paycheck on told her that depending when her information was processed payroll might not have caught the fact that she salary now and then it should all be corrected on her paycheck sharee emailed her yesterday and made it sound like everything was going to be corrected on her paycheck but then sent follow up email saying that because already ran she was not going to be able to backdate and the effective date for this change was going to have to be she wants liuytre to provide her hours worked from this is not going to work because liuytre stopped tracking her hours since she is now salaried employee she was also at company conference the week of and technically worked way more than hours that week because she was part of meetings dinners and after hours team building activities xd xd can someone from it and shared services be her designated contact and work with her through these issues until everything is figured out if something is an it issue can hrss follow up with it so she not being passed back and forth she is beyond frustrated and only has until next to figure out her benefits before her eligibility timeframdntye is up xd xd i: 4827 password reset erp sid Translated 4827 : password reset erp sid i: 4828 interface fc hostname on sandplant is down since am on et i: 4829 erp sid password reset Translated 4829 : erp sid password reset i: 4830 vpn queries Translated 4830 : vpn queries i: 4831 hello get the following error when try to start vpn also if try to do the install it says need admin rights best i: 4832 please take snapshot of vms manually under hostname i: 4833 skype content not showing up in meeting i: 4834 customer number telephone summary when am away from my computer for length of time or sometimes at start up am getting the following error message the trust relationship between this workstation and the primary domain failed it is pain to keep having to totally reboot my computer when am away from my desk for time i: 4835 dear it lost my skpe button view of colleagues my view nter webfnhtyer manager sourcing company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq i: 4836 outlook not loading i: 4837 finance app time out error Translated 4837 : finance app time out error i: 4838 erp sid password reset Translated 4838 : erp sid password reset i: 4839 account extension for fqiurzas eidtfbqk vvlfbhtyeisd extend the account for another six months i: 4840 xd job bkwin ms cluster inc failed in job scheduler at i: 4841 audio device stoped working after company update show the message no audio output device is installed xd more coworkers have had this trouble xd i: 4842 unable to login to vcenter hostname through vsphere client kindly check the issue i: 4843 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location apac xd xd issue description error message please check attached i: 4844 uyjlodhq ymedkatw lghuiezj has mapped the units departments public and teams to the wrong server she would have these units on hostname xd pc name ekxw xd xd i: 4845 usb ports not detecting devices i: 4846 ewel konto einlegen xd xd assigning it yevirgnl ylhogjct per ughzilfm cfibdamq Translated 4846 : ewel konto einlegen xd xd assigning it yevirgnl ylhogjct per ughzilfm cfibdamq i: 4847 xd xd xd hello xd xd travel expense manager erp transaction pr not working anylonger xd xd can start it below xd xd xd best i: 4848 query from Translated 4848 : query from i: 4849 e mail has been sent to the company quarantine database i: 4850 kabel vga defekt zedlet Translated 4850 : cable vga defective banknote i: 4851 install kis ewew guvgytniak Translated 4851 : install kis ewew guvgytniak i: 4852 install kis ewew zlqfptjx xnklbfua Translated 4852 : install kis ewew zlqfptjx xnklbfua i: 4853 install zebra we wu pfjwinbg ljtzbdqg Translated 4853 : install zebra we wu pfjwinbg ljtzbdqg i: 4854 install company barcode r ewew vzqomdgt jwoqbuml i: 4855 install company barcode r ewew vzqomdgt jwoqbuml i: 4856 xd job job failed in job scheduler at i: 4857 xd xd xd hi all xd move shipping date to dn created pls help to ship out i: 4858 xd job bk bia bobje failed in job scheduler at Translated 4858 : xd job bk bia bobje failed in job scheduler at i: 4859 source ip system name rgtw user name workstation server location usa nvyjtmca xjhpznds traversecitymi sms status field sales user yes no dsw event log incident overview the ctoc has received at least occurrences of vid malware defender fakeav phone home alerts from your isensor device isensor company com for traffic not blocked sourcing from port tcp of rgtw destined to port tcp of wilmington usa that occurred on at the outbound http traffic from the infected device contained the following method data protocol tcp http method post http version http domain tps doubleverify com url path event jpg user agent mozilla windows nt applewebkit khtml like gecko chrome safari content length we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at ticket only escalation for related events medium priority ticket and an mail only notification autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely ctoc event data related events of events not shown due to space constraints i: 4860 efdl need add software installed on my new latitude storch tel xd xd archiving tool viewer xd hardcopy xd reisekosten i: 4861 auf grund das ich ab jetzt einen tag in der woche in germany bin um die azubis die in germany stationiert sind zu betreuen ben tige ich einen arbeitsplatz in germany Translated 4861 : Due to the fact that from now on i am in germany one day a week to look after the trainees who are stationed in germany i need a job in germany i: 4862 xd xd xd dear sir xd please provide the access to below applications xd xd company engineering tool xd xd business client xd xd i: 4863 need to add lxkecjgr fwknxupq to shared mailbox i: 4864 hallo die erp transaktion pr zeigt folgende fehlermeldung mit freundlichen gr en ida financial quality technician email gesch ftsf hrer managing directors phvkowml azbtkqwx naruedlk mpvhakdq Translated 4864 : hello the erp transaction pr shows the following error message with kind regards ida financial quality technician email managing director phvkowml azbtkqwx naruedlk mpvhakdq i: 4865 hi users sonhygg erp sid account password is locked unlock help i: 4866 source ip system name rgtw user name workstation server location usa nvyjtmca xjhpznds traversecitymi sms status field sales user yes no dsw event log incident overview the ctoc has received at least occurrences of vid malware defender fakeav phone home alerts from your isensor device isensor company com for traffic not blocked sourcing from port tcp of rgtw destined to port tcp of wilmington usa that occurred on at the outbound http traffic from the infected device contained the following method data protocol tcp http method post http version http domain tps doubleverify com url path event jpg user agent mozilla windows nt applewebkit khtml like gecko chrome safari content length we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at ticket only escalation for related events medium priority ticket and an mail only notification autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely ctoc event data related events of events not shown due to space constraints i: 4867 hello help team meeting is scheduled at rth on and can you pls arrange wifi guest accounts for the two external trainers for both days names utthku tehrsytu email uwe tryhutehdtui email i: 4868 xd xd xd hello team xd xd is it possible to have exchange active sync for ios unlocked in advance prior to getting the normal email which shall be forwarded xd xd vmthcrkf iceyusnd will be receiving his iphone today and it would be good if he can use it immediately xd xd best i: 4869 bei mp funktioniert das fax nicht mehr Translated 4869 : with mp the fax no longer works i: 4870 xd xd xd hallo helpteam xd xd im departmentlaufwerk von germany steel ist im ordner ehs der unterordner mbs verschwunden bitte wieder herstellen xd xd vielen dank xd xd viele gr best Translated 4870 : xd xd xd hello helpteam xd xd in the department drive of germany steel is in the ehs folder the subfolder mbs disappeared please restore xd xd many thanks xd xd many gr best i: 4871 well have an issue with search tool of my outlook xd whenever m connected to net it works but when working offline it does nt wrk at all i: 4872 die angeh ngten video die ich per mail ber office bekommen lassen sich nicht ffnen xd xd die videos von let talk kann ich nicht ansehen Translated 4872 : the attached videos that I received by mail via office cannot be opened xd xd I cannot watch the videos from let talk i: 4873 ie browser issue Translated 4873 : ie browser issue i: 4874 engineering tool company issue forbidden error i: 4875 summary problem with attendance tool i: 4876 dear sir im facing problem to login in attendance tool portal please help to solve the issue i: 4877 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 4878 xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd job bkwin search server dev daily failed in job scheduler at i: 4879 xd xd xd hi team xd xd please fix problem copy window at monitor i: 4880 xd major lib drive time pm xd dev rmt xd cannot write to device o error xd xd xd backup statistics xd xd session queuing time hours xd xd completed disk agents xd failed disk agents xd aborted disk agents xd xd disk agents total xd xd completed media agents xd failed media agents xd aborted media agents xd xd media agents total xd xd mbytes total mb xd used media total xd disk agent errors total xd xd xd exit status xd system time seconds elapsed time minutes xd user time seconds xd eastern daylight time xd xd xd job sid hotf failed in job scheduler at i: 4881 outlook Translated 4881 : outlook i: 4882 xd job job failed in job scheduler at i: 4883 india company ap ind kirty pu lean stack sw went down on pm gigabitethernet uplink to company ap ind pu lean stack sw on company ap ind pu gf access sw company com is down i: 4884 xd xd xd hello it help xd xd since our territory sales director has been resigned need response for reviewing forecast in future can you please help assign this approval authorization sandop i: 4885 name maghyuigie ghjkzalez language browser microsoft internet explorer customer number telephone summary hi it team have erp issue reversed dn for sales order when went to valn to complete delivery get this message value of modific counter for doc in supply chain is but should be please help i: 4886 skype audio not working xd connected to the user system using teamviewer xd updated the audio drivers after checking the sound settings xd restarted the pc xd audio is now working fine xd issue resolved xd i: 4887 xd job job failed in job scheduler at i: 4888 xd job sid hotf failed in job scheduler at i: 4889 netzwerkkabel des erp druckers em verl ngern ro heiner sponsel Translated 4889 : network cable of the erp printer em extend ro heiner sponsel i: 4890 need to add the pc lvlw to domain i: 4891 name xyjkndus ltcevgap language browser microsoft internet explorer customer number telephone summary erp netweaver business client will not open drawings i: 4892 name slrgconp onukdesq language browser microsoft internet explorer customer number telephone summary what is the easiest way to change all of my passwords i: 4893 ticket update for ticket no Translated 4893 : ticket update for ticket no i: 4894 unable to log in to engineering tool i: 4895 user name for fabxjimdghtyo depfugcy i: 4896 printer hr not printing pdf document connected to the user system using teamviewer deleted the printer and readded the printer able to print word docs not able to print pdf docs user has been having this issue again user needs local it take look aerp computer name lhol contact i: 4897 name mfeyouli ndobtzpw language browser microsoft internet explorer customer number telephone summary please reset windows password and erp password for laffekr i: 4898 hi xd xd please reference inc have another vendor vvnookr involved in the usa carve out project that needs to save files to his local pc can you add vvnookr to the exceptions group nicrhty edmhihryu will approve if necessary xd xd i: 4899 xd xd xd good afternoon xd xd m having some difficulty looking up some top notch drawings keep getting this time out error screen come up m looking these drawings up under the cvn page was directed to do the following to see these top notch drawings m not sure if it a permissions problem or an erp problem any way you all could shed some light on this xd xd xd xd here what get when try to look up those drawings xd xd xd i: 4900 ticket update for inplant i: 4901 unable to connect to vpn Translated 4901 : unable to connect to vpn i: 4902 does company have corporate license for snagit editor qmglkaru qiwhfkdv manager business systems crm news it here with the final release of the fy dynamics crm project the microsoft dynamics crm mobile app is now available for download for all crm users the app can be installed on any ios android or windows phone or tablet including the dell in windows tablet laptop for more details on the app watch the launch video need help with your dynamics crm click here chat with live agent about your dynamics crm now click here i: 4903 name oikhfqyl gcknzthb language browser microsoft internet explorer customer number telephone summary cannot get onto outlook just get the blue screen with the dots moving at the bottom tried cold boot thrgxqsuojr xwbesorfs i: 4904 user harrfgyibs locked out of erp mii system help the user login after unlocking the user account issue resolved i: 4905 xd job job failed in job scheduler at i: 4906 help to configure the dongle on new laptop i: 4907 printer setup Translated 4907 : printer setup i: 4908 id printer not working Translated 4908 : id printer not working i: 4909 user wants this messgage recall aerp urgent i: 4910 erp response time is very long even for simple transactions please check plant vsid is reporting i: 4911 what type of outage network circuit power please specify what type of outage xd xd top cert site yes slo yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor na xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 4912 ticket update on ticket no Translated 4912 : ticket update on ticket no i: 4913 contact me xt if needed no error messages i: 4914 unable to update password on password management tool i: 4915 mapping network drive Translated 4915 : mapping network drive i: 4916 xd xd xd please configure and install cad machine under the av cabinet in the new training room the machine needs the standard cad configuration please also install wireless mouse keybankrd and cad manipulator xd the machine will need to be setup for multiple users to sign on with their credentials per the request of ehs it will also need dvd drive to play safety training videos xd i: 4917 xd xd xd unable to convert planned order for this item also unable to create production order for this item received this error message both times xd xd xd i: 4918 drive is not responding to mount requests for library i: 4919 xd xd xd cannot log into skype it is saying my credentials are bad xd xd i: 4920 the backup tool backup for lhqsm is taking over hours to release the snapshot at the end of the backup can you look at this vm and advise if there is problem with lhqsm i: 4921 ticket update on inc i: 4922 password reset for erp sid account i: 4923 hostname and hostname databases listener is not functioning when ever we try to uacyltoe hxgaycze the connection it doesn connect this is affection production production is not down this is just making the users enter data manually the databases are quantum and glog xd xd ip addresses xd hostname xd proglovia xd xd here is the ip address for the cisco ucs manager console xd ve tried every set of credentials that have access did anyone change the credentials xd xd hostname and hostname have been restarted as requested please check the database listener for databaseslisted below xd xd quantum xd glog xd glogold i: 4924 german call Translated 4924 : german call i: 4925 password reset Translated 4925 : password reset i: 4926 we can create delivery note for sto from plant to plant for all items xd all items in that sto are available in stock in plant but the system does not see it xd please check and generate delivery note xd it is quite urgent as the drum needs to be sent further to apac for the exposition in apac xd i: 4927 xd xd xd am unable to access some network folders when connected to vpn xd xd xd i: 4928 node germany pbx trunk card located at germany is down at pm et on i: 4929 password reset Translated 4929 : password reset i: 4930 contact Translated 4930 : contact i: 4931 i was notified by kuznvase jrxtbuqz that this npc is having an issue apparently the plant was not selected during the execution of the task please investigate and talk to thilo for my specifics i: 4932 xd xd xd dear it helper xd xd please see below message when am trying to process on this complaint it didn allow me to change anything it says this crm is being processed by user sundj and am sundj would you please help me to fix it have reboot my computer but this message is still there xd xd xd xd xd xd i: 4933 hi when signed into crm got and error message the reporting engineering tool didn load see below vkzwafuh tcjnuswg cmp sr application eng i: 4934 error when trying to access sid quality system in erp i: 4935 hello for the next one month will be in bedord usa request to provide access to drive ldbsm engineering application since its taking up too much time to open nx documents from engineering tool with the current drive path hostname engineering application kindly process aerp i: 4936 let talk video kann nicht ge ffnet werden Translated 4936 : let talk video can't be ffnetted i: 4937 usa nc server hostname is not responding no access i: 4938 xd xd xd hello help team xd attached you will find the agreement what do need to do next to get mail push calendar synchronization etc xd xd mit freundlichem gru best i: 4939 sync hr org details to purchasing for dhmfuvgw jralkfcb hufghygh he is getting the following error no data found for employee inform system administration i: 4940 account locked out i: 4941 when work center is changed on machine in erp pm the machine with the old and new work center appear in the machine list in mii i: 4942 xd xd xd kind attn xd xd kindly resolve subject issue at the earliest xd xd best i: 4943 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp hp laserjet xd xd detailed description of the problem papier staut sich es kommt kein ausdruck raus xd xd type of documents not printing email excel word etc erp xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm sid xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 4944 xd xd xd hallo xd xd ich habe ein problem beim bertragen eines berirtchts in das engineering tool system xd xd siehe das gelbe feld unten xd schon mehrere male habe ich die felder ausgef llt und gespeichert xd xd wenn ich den berirtcht in das system bertagen chte gibt es eine fehlermeldung xd xd siehe anhang xd xd xd xd xd mit freundlichen gr en with best Translated 4944 : xd xd xd hello xd xd I have a problem transferring a report to the engineering tool system xd xd see the yellow field below xd I have already filled in the fields several times and saved it xd xd when I want the report to be transferred to the system there is an error message xd xd see appendix xd xd xd xd xd Yours sincerely, with best i: 4945 blank call from germany interaction id i: 4946 md extenral monitor will not stay one it flashes briefly then goes out i: 4947 hi get this information when want to do my travel expenses zero amount but entered the numbers as below uyrpdvoq mbzevtcx sales manager earthworks european served area north company infrastructure gmbh gesch ftsf hrer phvkowml azbtkqwx und naruedlk mpvhakdq www company com i: 4948 this seems to have started after windows update kb got installed on user pc xd please find screenshot in the attached email i: 4949 please have close look on the ale interface in production environment did work through some requests about expense reporting issues and found out that many changes in hrp did not move to sid via ale even when the data was fine on hr side for example the changes in it around stefyty and tom were not reflected in sid it looks like the majority of changes since at least or months were not synced m not sure if nothing went over some did but could be because of manual runs of ale by the hris team i: 4950 hp drucker cp defekt wurde bereits ausgetauscht hp laserjet Translated 4950 : hp printer cp defective has already been replaced hp laserjet i: 4951 the i: 4952 rechner r messvorrichtung steli funktioniert nicht jionmpsf wnkpzcmv Translated 4952 : computer r measuring device steli does not work jionmpsf wnkpzcmv i: 4953 barcode scanner defekt paternoster bur am orde Translated 4953 : barcode scanner defective paternoster bur am orde i: 4954 usb verl ngerungskabel liefern hxwtidja ixahzmvf Translated 4954 : usb verl ngerungskabel liefern hxwtidja ixahzmvf i: 4955 rechner nach update startet nicht ewew cudgevmx waqslrbd Translated 4955 : computer does not start after update ewew cudgevmx waqslrbd i: 4956 xd xd xd good day xd xd please can you advise how can scroll down this screen have to minimize it in order to view all my entries not sure what am doing wrong xd please help xd xd xd xd best i: 4957 the i: 4958 kunde cc erh lt unsere rechnungen per mail rechnungsempf nger cc empfangende mail adresse bis zum hat der kunde problemlos die rechnungen erhalten ab dem nicht mehr dem kunden liegen die rechnungen somit nicht vor und werden deshalb auch nicht bezahlt ich kann keine nderung feststellen und bitte deshalb um kl rung danke xd xd xd translation xd customer cc receive our inwarehouse tools by email inwarehouse tool recipient cc receiving email address until the customer easily get the bills from not the customer therefore not be before the bills and are therefore not paid can not detect any change and therefore ask for clarification i: 4959 do the needful on below mail request xd xd i: 4960 xd xd xd need support for one of our team member ter steinh usser location germany xd xd he already opened already more tickets to get his skype up to speed but he mentioned that is not solved out after two month xd nter has to participate on important hr calls so he should be able to work with our common communication technology xd xd please support and follow up with nter directly german language is necessary xd xd i: 4961 additions are not matching to trial balance and or to settlement list difference is mainly cwip of the last year settled in the current year i: 4962 my powerpoint application crashed everytime after starting file impossible to work xd xd need to work on customer proposal and on internal presentations xd xd no matheywter what pptx file open the application crashes immediateley and need to restart the computer xd xd xd it is absolutely impossible to work with powerpoint on my laptop at present xd xd am in transit home from businesstrip you can reach me as of german time i: 4963 xd xd xd hello colleagues xd xd need your help xd today will start my netweaver business client for start er but unfortunately the netweaver business client is not working xd i: 4964 the i: 4965 der pc ganz alter pc am halbautomaten schaltet sich anscheinend wg hitze ab xd fter vom netzteil dreht nicht xd xd Translated 4965 : the pc very old pc on the semi-automatic machine turns itself off because of the heat xd fter from the power supply does not turn xd xd i: 4966 need help in adding users in Translated 4966 : need help in adding users in i: 4967 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location from plant to plant xd xd issue description error message no sto possible with these combinations i: 4968 hallo marfhtyio mit dem freischalten von srgtycha geht klar rdest du bitte den hr bxgwyamr hjbukvcq personalnr und den hr wjzvabrl bmcfrlyz personalnr ebenfalls freischalten danke im voraus mfg reinhard von yevirgnl ylhogjct gesendet mittwoch an ypladjeu wzfryxav hqyfebtd pkmyrdga betreff wg zugriffsrechte hallo reinhard ich bitte um ein approval ok r den zugriff gruss marfhtyio mit freundlichen gr ssen best Translated 4968 : hello marfhtyio with the activation of srgtycha it is clear, please call the hr bxgwyamr hjbukvcq personalnr and the hr wjzvabrl bmcfrlyz personalnr also unlock thank you in advance mfg reinhard von yevirgnl ylhogjct regarding a purely access rights wednesday p ok for the access, greetings marfhtyio best regards i: 4969 issue with the difference amount in the po approval report zpsr and also kindly remove the programdnty zpsu as this is no longer used i: 4970 guten morgen xd xd bitte die schreib leseberechtigung r ordner scan we einrichten xd xd danke xd xd xd xd xd freundliche gr kind Translated 4970 : good morning xd xd please write read authorization r folder scan we set up xd xd thank you xd xd xd xd xd friendly gr child i: 4971 confirmed email address was typed into the userid field as system was away from the phone called back on mobile pavan confirmed issue was resolved i: 4972 still no synchronize with erp after repair to zip code see ticket no xd xd still showing an error see attached file the zip code is now correct xd xd for all user company in israel i: 4973 to login to impact awards i: 4974 markhty leibdrty called to have the account unlocked unlocked confirmed he was able to login i: 4975 xd xd xd colleagues can enter to this programdntys need it immediately please help aerp xd xd please see below xd xd xd xd xd best i: 4976 error message unable to log on for the following reason bytes read from network stream user ferbfhyunam workstation ekmw see attached picture i: 4977 erp net weaver doesnt work error message microsoft net framdntyework is not installed Translated 4977 : erp net weaver doesnt work error message microsoft net framdntyework is not installed i: 4978 account locked in ad i: 4979 business client logon is not working and throwing error seems issue with my laptop and logon is working fine when tried in other system xd xd i: 4980 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 4981 skype is not working Translated 4981 : skype is not working i: 4982 ylqvitsk bfnackrw xd pm xd nwfodmhc exurcwkm xd rakthyesh wg cost center xd importance high xd xd hello xd xd we need for all participants an access for the guest wifi system in house see the attached excel spread sheet xd xd xd time for access days xd location company rth germany room xd event technical training metal cutting xd xd the different names you will find in the attached excel list xd xd i: 4983 vivbhuek kanjdye am nwfodmhc exurcwkm re action required please connect to the new vpn url before hi we are getting following message system warnings clear system warnings no javascript is installed warning for full functionality enable javascript in your browser otherwise some features especially those related to web applications in new windows not work correctly cache cleaner is failed warning popup blockers can cause the cache cleaner to fail if you use popup blocker you see outdated pages and forms for best functionality disable your popup blocker policy restriction access to network access resource company vpn has been denied by the policy engine the reason is no anti virus or anti virus is not trusted i: 4984 dear find gap between fsn report and asset balance report alr in for cplant cost center we only add two rrc asset in so the depreciation should be rmb increase in but when run fsn find the depreciation only add rmb can you give me some idea about this i: 4985 hi mr hatryupsfshytd user id locked please reset the password and send the new password to his manager mr panghyiraj shthuihog emp no name useid manager aqihfoly xsrkthvf hsh panghyiraj shthuihog fyi with i: 4986 attached the screen shot for the error information i: 4987 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 4988 node down on lhqsm Translated 4988 : node down on lhqsm i: 4989 good afternoon can you please unlock my username for erp have been locked for too many log in attempts vyjmlain hvjbmdgi senior technical service rep i: 4990 xd xd xd hello xd my supervisor ybuvlkjq nwcobvpl has asked me to send an it request am able access documents in some folders on our drive but not all would like permission to access documents that are located in the quality control folder located at quality control xd i: 4991 xd xd xd hello it xd xd yesterday had the telephony software phone and system update done xd today notice that it shows yellow phone icon showing that am on the phone but am not xd am not receiving calls xd can you please assist quickly xd i: 4992 xd job job failed in job scheduler at Translated 4992 : xd job job failed in job scheduler at i: 4993 uninstall google chrome Translated 4993 : uninstall google chrome i: 4994 xd job sid filesys failed in job scheduler at i: 4995 i have closed won opportunities for this customer and active open opportunities for this customer tried to create another opportstorage product for this customer and they are no longer on my list of available customers when try to put their name in the account end user name field get the statement no records found tried several other customers and they work just not this one xd i: 4996 blank call gso loud noise i: 4997 unable to connect to network drives on vpn i: 4998 account locked out i: 4999 account locked on vpn page i: 5000 company email password not working i: 5001 account locked out i: 5002 name stdezpqw bkmeuhfz language browser microsoft internet explorer customer number telephone summary need access to erp hana sid i: 5003 ie issue Translated 5003 : ie issue i: 5004 reset the password for iwtvrhnz rxiumhfk on erp production erp i: 5005 ticket update on inplant i: 5006 unable to login to collaboration platform i: 5007 please manually send expense report to qmglkaru qiwhfkdv for approval its stuck pathuick thgheijmer due to reporting relationship changes i: 5008 xd xd xd dear team xd xd please help to raise ticket with network team as the user slkxgzdj wxpytevu working remotely in erp systems and he keep getting kicked out without able to continue his work xd xd i: 5009 just to let someone now that the dsccache service isn running on hostname i: 5010 unable to connect to dv dv and dv i: 5011 xd xd xd was going to forward emails received but it gives me an alert message see attachments if you need to connect with my terminal let me know moved them both to my delete box xd i: 5012 account locked out need to unlock i: 5013 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5014 hello team xd xd please install analysis office sp in clrgtydia pc since office version is and set up hana sid sid connections xd xd at present xawlkiey demjqrfl pc has ao which is not compatible with office xd xd issue is sev xd xd best i: 5015 xd xd xd hello xd please extend the skype for business access of przcxbml vnjdghui contractor so that she is able to arrange conference calls with external company parties she is working on critical company payroll project for germany that involves significant external vendor contact so her skype permissions should be set the same as mine xd many i: 5016 unable to change password on password management tool password manager i: 5017 konto resetten Translated 5017 : account reset i: 5018 xd xd xd dear sir xd xd please help to reset my password for erp sid and business client xd xd i: 5019 windows password reset i: 5020 account unlock i: 5021 password reset Translated 5021 : password reset i: 5022 unable to launch outlook i: 5023 password reset to hub Translated 5023 : password reset to hub i: 5024 xd xd xd hi xd xd am not able to see more than the below list in va xd xd xd i: 5025 dear help desk d like to know what the meaning of the following warning message when click on engineering tool and after login jdamieul fandyhgg phd us patent agent senior staff engineer i: 5026 name mfeyouli ndobtzpw language browser microsoft internet explorer customer number telephone summary please reset erp sid for boivin i: 5027 constantly receiving usb device not recognized and have to install my default printer driver after every reboot cl i: 5028 unable to log on to distributor tool i: 5029 xd xd xd please reset my supply chain software password xd xd i: 5030 vpn query user wanted to know if he can connect to vpn i: 5031 hi recently changed my password and tried to log into erp but keep receiving message that login is no longer possible and there are too many failed attempts only tried to log in one time when changed my password also received an error message that the password change failed see attached the new password works for all the other applications on my computer except for erp use erp on daily basis and need to access sid erp production my user id is rubyfgty so please let me know if you can help with this issue i: 5032 unable to login to skype Translated 5032 : unable to login to skype i: 5033 unable to launch ethics login credentials invalid error primary smtp address from outlook address book new to company returned after resignation account changed from temp to permanent no taken ethics before received email from ethics to take the ethics course any organizational change yes my email address used to be starting in fy was moved to company any name change email address change email address change my email address used to be starting in fy was moved to company any medial leave leave of absence recently no i: 5034 bhghtyum will need additional time please do not delete this account on also the account needs to be given to davgtgyrh smgnhyleck i: 5035 windows password reset i: 5036 password locked out on erp sid i: 5037 erp sid account unlock Translated 5037 : erp sid account unlock i: 5038 outlook not updating emails i: 5039 ticket update for inplant i: 5040 unter departments hostname unter info freigabe ordner beschichtung mit allen unterordnern Translated 5040 : under departments hostname under info release folder coating with all subfolders i: 5041 please change my screensaver to company xd pc name ekql xd xd i: 5042 how did you determine there are network problems if want ot download lists to vmsliazh ltksxmyv interrogates questioning time out is coming the same with eu tool if we want to print labels the same error is coming xd xd are more than one transactions impacted xd xd what server are you on vmsliazh ltksxmyv xd do other co workers also notice slow response times in erp yes we have problems too in our shipment department xd xd i: 5043 good morning have made several attempts to print to printer cl have also powered the device down then back up and retried printing no print but the printer drivers are refreshed had colleague try and she had the same results deleted the printer cl from my pc and reinstalled it it reinstalled as prtgn when printed to it the print came out successfully how can printer be changed from cl to gn without notification should this printer be known as gn or is this error that requires further investigation mikhghytr wafglhdrhjop i: 5044 erp step interface programdnty is not generating idoc data for all ebom items examples below xd mms and is not sending step all the ebom data we are missing the ebom insert screw also we have the same issue with missing ebom items screws for mm xd xd erp data xd below is list of the bom items for the materials in question do know that both ms and ms are material type raw material thought that you were able to show the data in the bom regardless of the material type but that could be the issue the ebom is showing what is on the drawings and the ebom is created so m not certain why the materials force didn work joe uses the same programdnty that do to force product xd xd material number ansi code position component material ansi of component xd krcscfpry ms xd krcscfpry ms xd krcscfpry ft xd krcscfpry ft xd krcscfpry ms xd krcscfpry ms xd krcscfpry ft xd krcscfpry ft xd krcscfpry ms xd krcscfpry ms xd krcscfpry ft xd krcscfpry ft xd xd step data xd bom bom bom xd krbbscfprc ft torx wrench engineering tool xd krbbscfprc ft torx wrench engineering tool xd krcscfpry ft torx wrench engineering tool ft torx wrench engineering tool xd krcscfpry ft torx wrench engineering tool ft torx wrench engineering tool xd krcscfpry ft torx wrench engineering tool ft torx wrench engineering tool xd xd xd xd xd i: 5045 need to configure printers tc and tc i: 5046 the i: 5047 unable to extend the display on external monitor i: 5048 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start at am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5049 the i: 5050 unable to launch netweaver i: 5051 unable to print from adobe i: 5052 need ability to create skype meetings through outlook i: 5053 immediate need Translated 5053 : immediate need i: 5054 xd job job failed in job scheduler at i: 5055 windows password reset i: 5056 problleme mit eu tool we bejvhsfx dmvsclhp Translated 5056 : problleme mit eu tool we bejvhsfx dmvsclhp i: 5057 battery charging issue i: 5058 need vpn access new employee has company laptop emzlw i: 5059 i just need to reset my password for the interaction desktop telephony software user name is pughjuvirl i: 5060 unlock account lichtyuiwu i: 5061 emea production order grade is partially printed in hebrew please see example attached in en it is printed fully i: 5062 unable to continue the java update i: 5063 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model kd ex hq wy hp xd xd detailed description of the problem can not install driver to use this printer xd xd type of documents not printing email excel word etc any xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem outlook word ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 5064 source ip xd source hostname hostname xd destination hostname lmxl xd user name xd location xd sms status xd field sales user yes no xd dsw event log xd xd we have detected at least occurrences of your firewall att apac asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call xd automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd soc xd xd xd technical details xd xd historically there have been various worms malware that have used ports and to propagate examples include xd blaster worm msblast lovsan xd welchia nachi xd reatle xd xd port microsoft epmap end point mapper also known as dce rpc locator service xd xd port netbios netbios name service xd xd port netbios netbios datagramdnty service xd xd port netbios netbios session service xd xd port microsoft ds smb file shatryung xd xd additional information on these ports and best practices can be found at the following sites xd xd xd xd xd xd xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd xd event data xd xd related events xd event id xd event summary internal outbreak for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd source port xd destination hostname lmxl xd destination port xd connection directionality internal xd protocol tcp xd xd device information xd device ip xd device name att apac asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa inbound tcp connection denied from to flags syn on interface inside xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd xd ascii packet xd no entry xd xd hex packet xd no entry xd xd event id xd event summary internal outbreak for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd source port xd destination hostname no entry xd destination port xd connection directionality internal xd protocol tcp xd xd device information xd device ip xd device name att apac asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside x xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa inbound tcp connection denied from to flags syn on interface inside xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd xd ascii packet xd no entry xd xd hex packet xd no entry xd xd xd these appends contain the same information as the original alert or contain differences in the source destination pair please view updates to this ticket via the portal the security operations team will notify you as further information becomes available xd xd security analysis team xd i: 5065 spam call received from india i: 5066 anleitung fuer password management tool password manager gebraucht Translated 5066 : anleitung fuer password management tool password manager gebraucht i: 5067 observerd fence and limit are for hostname i: 5068 internet explorer update to version i: 5069 erp sid account unlock and password reset i: 5070 owa configured xd explained that outlook is also already installed i: 5071 we wu account unlock i: 5072 i would like to download free software called bizagi but cannot due to some securities set up therefore need your support i: 5073 dear sir madam some zipped folders of around mb are missing from the following paths hostname zollerfgh documents file hostname grinding zollerfgh documents trial data softwares zollerfgh file hostname grinding trial data softwares zollerfgh these had the data backup from zollerfgh genius machine and are required on an urgent basis now because the machine is in breakdown condition please retrieve this data from back up server i: 5074 hallo cisco access point is not working mac address drtbe i: 5075 cisco access point is not working mac address drtbe i: 5076 i discovered that there is an issue with account owner in msd xd below examples of company accounts which have set up owner as company xd xd xd erp customer account account owner account account xd company xd company xd company xd company xd company xd company xd company xd i: 5077 xd xd xd hello help team xd xd can you pls open ticket xd it help might be needed for meeting scheduled at rth room on start at am and xd the meeting will be conducted by two external trainers and they might need help to start their presentations beamer xd xd xd i: 5078 not able to open an xcel file i: 5079 from yesterday we found that some order items can only be confirmed in future not same day with order entry even there are full atp available at delivery plant plant csrs got many calls from customers to have them manually generate dn for their orders xd xd here are some example please check xd xd xd and xd xd xd xd i: 5080 hello m lbxgodfu usperhki from company italy ve vpn profile is not working can you please verify my user is piolfghim i: 5081 xd xd xd hello it team xd please help me to update the netweaver as am receiving the below message xd xd xd i: 5082 xd xd xd please forward to pc support xd it seems that there is policy in place that automatically adds websites to the list of sites that should be viewed in compatibilty mode this is setting in internet explorer xd would like to have this policy to be disabled at least do not automatically add company com company com and company com xd xd xd mit freundlichem gru kind i: 5083 xd xd xd xd viele gr best Translated 5083 : xd xd xd xd many gr best i: 5084 name ilypdtno mkdfetuq xd language xd browser microsoft internet explorer xd customer number xd telephone xd summary outlook is not opening i: 5085 xd job job failed in job scheduler at i: 5086 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5087 xd job job failed in job scheduler at i: 5088 pls unlock and reset windows and erp account for user vvtghjscha i: 5089 install win ewew sgnubadl gpkovbah Translated 5089 : install win ewew sgnubadl gpkovbah i: 5090 install win ewew sgnubadl gpkovbah Translated 5090 : install win ewew sgnubadl gpkovbah i: 5091 install win ewew vzqomdgt jwoqbuml Translated 5091 : install win ewew vzqomdgt jwoqbuml i: 5092 install win ewew vzqomdgt jwoqbuml Translated 5092 : install win ewew vzqomdgt jwoqbuml i: 5093 performance improvement tuning for machine summary and load list i: 5094 account locked out and password reset i: 5095 collaboration platform i: 5096 the well established work orders has been reported with system to standstill it can be assumed then the machine operator no longer contracts normal maintenance jobs without stopping the machine are imported i: 5097 please unlock and reset windows password for dfrt user kreghtmph i: 5098 hostname label dat hostname deb on server hostname is over space consumed space available m i: 5099 xd xd xd please reset my impacts awards password xd xd am not remember even security question also xd xd xd xd xd best i: 5100 what type of outage network circuit power please specify what type of outage xd xd top cert site slo yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5101 xd xd xd dear it xd xd would you pls help to create delivery note for sto for something error we unable to create i: 5102 dear all we have problem that our new sales rep for rbzymfvx lebqthwv kujfgtats personnel can get into the network companysecure can you please check his settings you can call him on mobile i: 5103 system sid sid sid sid hrp other enter user id of user having the issue dofghbmes transaction code the user needs or was working with describe the issue the launcher was not able to connect analysis add in make sure that analysis add in is not disabled by office application if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 5104 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5105 windows account locked i: 5106 xd job hostname fail failed in job scheduler at i: 5107 xd job job failed in job scheduler at i: 5108 ebhsm label dat ebhsm dcc on server ebhsm is over space consumed space available g i: 5109 xd xd xd hi xd xd have dell in laptop the system number is aiul xd when plug in my laptop to the keypad the whole system is shutting down xd and with the screen docked in to the keybankrd am unable to start the computer xd when tried charging it is not doing so with the screen docked in xd am currently using the touch pad of the screen and charging only the screen xd the keypad is totally unresponsive xd please help out xd my user name is rajy xd xd xd i: 5110 only mouse is not working in system i: 5111 xd job job failed in job scheduler at i: 5112 kbyivdfz zwutmehy mail am nwfodmhc exurcwkm rad error while extending mm hello need to extend existing mm from plant plant to plant during processing mm the error message pop up material group should start with or for roh type however the system doesn allow me to change material group the enormity of humanity mankind is being insensitive kbyivdfz zwutmehy purchasing buyer company k i: 5113 unable to login to supply chain software xd please reset the password i: 5114 xd xd xd we are unable to run macro which is used to open an excel word file in solidworks after skype updation since xd this macro is working fine in system where skype is not installed xd xd kindly resolve the issue at the earliest xd xd xd with best i: 5115 xd xd xd my licence for babiluntr will expire in days xd xd please update this to use it more xd xd i: 5116 pls help to reset the password for this id tempuser i: 5117 walkme Translated 5117 : walkme i: 5118 gas station telephone line disconnection i: 5119 name sndaofyw jetcxpda language browser microsoft internet explorer customer number telephone summary im locked out of erp agian i: 5120 user needs help with extended monitor projection xd connected to the user system using teamviewer xd help the user witrh the extended monitor projection xd issue resolved i: 5121 ess login issue xd verified user details employee and manager name xd checked the user name in ad xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 5122 hi not sure where to direct this was told to contact the help desk because my global telecom broadband isn working when trying to use my laptop from remote location am in the right place davidthd rofghach channel partner sales engineer i: 5123 unable to complete forecast jochegtyhu is on vacation can you help me fnqelwpk ahrskvln regional manager latin amerirtca fnqelwpk ahrskvln pm ftnijxup sbltduco help with scm software jochegtyhu how are you what does this mean what can do to complete my forecast fnqelwpk ahrskvln regional manager latin amerirtca i: 5124 name obanjrhg rnafleys language browser microsoft internet explorer customer number telephone summary issues logging in to skype after recently changing my password i: 5125 system sid sid sid sid hrp other sid pi uacyltoe hxgaycze system enter user id of user having the issue vvgtycargvc please restart password its blocked i: 5126 xd job job failed in job scheduler at i: 5127 this happens if log in via public internet as well as internet vpn i: 5128 user having issues login in to the pc with the new password xd connected to the user system using teamviewer xd help the user login using the new password xd help the user login to the company vpn and sync the new password to the company network xd help the user login to both the outlook and skype xd issue resolved i: 5129 ticket update for ticket no Translated 5129 : ticket update for ticket no i: 5130 unable to log in to erp sid Translated 5130 : unable to log in to erp sid i: 5131 hello it please advise the status on the below request hi nafghyncy agbighyail espinosa appears to be an active employee after all she entered bunch of sales orders in erp ecc over the last few days yet there is central block on her employee account in erp crm so that it does not show up in the search results when we search for employee accounts using role is employee unless you already know the reason for this would you please check with hr why her account has central block on it it seems like it could possibly be an error gracias i: 5132 engineering request assignment revise component has been completed but cannot be deleted from my workflow i: 5133 unable to log in to supply chain software i: 5134 good morning xd xd please review and advise on these undeliverable mail addresses xd xd i: 5135 need to activate new iphone i: 5136 bex report is producing report with size instead of proper reporting xsdb db credits is supposed to run on the of each month along with other dashbankrd reports but for the last couple of months the report has been empty this has happened previously but only with the credits and not any of the other reports please correct so it is available for next month this is for global dashbankrd that is used in some areas for compensation i: 5137 unable to access travel site Translated 5137 : unable to access travel site i: 5138 password reset via password management tool password manager Translated 5138 : password reset via password management tool password manager i: 5139 unable to post document to sid using spreadsheet i: 5140 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue vvgtycargvc xd xd xd user account not in validity date i: 5141 xd xd xd hi xd xd please re set mu login password for attendance tool xd xd xd xd xd xd with best i: 5142 material xd location plant xd sto xd product available cannot create delivery i: 5143 my password is invalid can you help me i: 5144 touchpad and usb mouse not working xd xd computer not booting into windows i: 5145 user has new personal device for activation without the approval form xd advised the user to forward the approval form to activate the company email on personal device i: 5146 ticket update for inc i: 5147 ticket update for ticket no Translated 5147 : ticket update for ticket no i: 5148 windows zdsxmcwu thdjzolw Translated 5148 : windows zdsxmcwu thdjzolw i: 5149 unable to login to distributor tool with new password and view saved customers details i: 5150 account unlock i: 5151 the i: 5152 according to oneteam jashyht mkuhtyhui and qjeymnzs wgpelvyn are part of my team now however their exepsne report submissions are not coming to my workflow for approval please look into this and advise i: 5153 terminated user called for access to the hub i: 5154 vip sim card locked for the company provided phone i: 5155 this report was working up until now it shows no data when laurent opens the report within reporting tool browser xd xd report link used is as follows xd site certified content views dailyorderbillingreport mtd ctry iid xd xd output is per attached xd xd i: 5156 observing below alert in monitoring tool since am on et xd xd application dynamics crm url checks on node company crm sp mfg tooltion azurewebsites net is down i: 5157 need adobe flash player installed on the pc i: 5158 hallo unser netzwerkdrucker ag rt nicht mehr auf zu drucken ein gast scheint versehentlich immer neue druckauftr ge zu generieren bzw laut service techniker vom hersteller hp ist wohl ein spool auftrag im netz gespeichert wir nnen die druckauftr ge nicht sehen nachverfolgen oder stoppen alle versuche die druckauftr ge abzubrechen sind fehlgeschlagen auch ein ziehen des steckers oder des lan kabels tzt nichts wer kann helfen laut hp sollte das der administrator nnen danke gabryltke sch tt human resources company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 5158 : hello our network printer ag rt no longer prints a guest accidentally always seems to generate new print jobs or, according to the service technician from the manufacturer hp, a spool job is probably stored in the network, we cannot see the print jobs or stop all attempts to print them abort failed, even pulling the plug or the lan cable tzt nothing who can help, according to hp, the administrator should thank you gabryltke sch tt human resources company shared services gmbh managing director phvkowml azbtkqwx naruedlk mpvhakdq this message is only for use Determined by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if this communication is due to a you accidentally received it then please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 5159 unable to login to pc after changing the password i: 5160 deliver due list ews is multiple times running on daily basis sometimes ddl does not create delivery notes from sto even though material is available and shipping date overdue xd check why ddl did not select sto xd check what sto are overdue xd adjust ddl xd keep user informed about your result xd many i: 5161 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5162 unable to connect to vpn Translated 5162 : unable to connect to vpn i: 5163 tom called in to get the device activated please find the mobility agreement attached i: 5164 windows password reset i: 5165 the battery on the display is charging up to and it works xd the battery with the keybankrd is at plugged in not charging xd he is not sure if he is using the charger for the docking station or the charger supplied with the in device xd we have swapped the power point still no go xd xd updated bios from to still no go xd xd please advise xd i: 5166 this is not resolved per the incident placed earlier need my passwords reset please start with windows then will attempt to update all with password management tool i: 5167 xd job job failed in job scheduler at Translated 5167 : xd job job failed in job scheduler at i: 5168 please reset my password for supply chain software xd i: 5169 ethics login is not being recognized i: 5170 unable to load outlook i: 5171 unable to print from the default printer i: 5172 i am locked out of password management tool id password manager to sync my passwords and my password is not working please reset my password i: 5173 page down to ensure that all required data fields are complete before submitting use this template for consultants temps interns vendors etc please complete all entries first name rita last name baugtymli location germany manager sponsor lkwspqce knxaipyj cost center external company name deloitte and touche what systems do they need access on erp sid mii no if yes is user operator admin or supervisor security note for mii add im shopfloor user to user sid account is company email required for this person no if yes by default k license will be assigned for use of owa and collaboration platform only not outlook client or skype if outlook client or skype are required more costly license must be assigned and can be used only on company computer assign k or license access like who required this is to review copy from person access for approvals create sid with it auditor requires access until date is the computer owned by company no if yes is it laptop or desktop computer name is remote access vpn required lcitrixerpall if yes please provide to which all applications erp systems network servers the user needs access via vpn start date first name maximgbilian last name wilsfrtch location germany manager sponsor lkwspqce knxaipyj cost center external company name deloitte and touche what systems do they need access on erp sid mii no if yes is user operator admin or supervisor security note for mii add im shopfloor user to user sid account is company email required for this person no if yes by default k license will be assigned for use of owa and collaboration platform only not outlook client or skype if outlook client or skype are required more costly license must be assigned and can be used only on company computer assign k or license access like who required this is to review copy from person access for approvals create sid with it auditor requires access until date is the computer owned by company no if yes is it laptop or desktop computer name is remote access vpn required lcitrixerpall if yes please provide to which all applications erp systems network servers the user needs access via vpn start date first name carolutyuin last name votgygel location germany manager sponsor lkwspqce knxaipyj cost center external company name deloitte and touche what systems do they need access on erp sid mii no if yes is user operator admin or supervisor security note for mii add im shopfloor user to user sid account is company email required for this person no if yes by default k license will be assigned for use of owa and collaboration platform only not outlook client or skype if outlook client or skype are required more costly license must be assigned and can be used only on company computer assign k or license access like who required this is to review copy from person access for approvals create sid with it auditor requires access until date is the computer owned by company no if yes is it laptop or desktop computer name is remote access vpn required lcitrixerpall if yes please provide to which all applications erp systems network servers the user needs access via vpn start date i: 5174 hi there can you please add the following account to my crm it is one of my assigned accounts but cannot see it account name powercor erp i: 5175 install zebra we wu pfjwinbg ljtzbdqg Translated 5175 : install zebra we wu pfjwinbg ljtzbdqg i: 5176 dear it team xd xd pl look into below screen shot omfvxjpw htiemzsg is appearing in outlook in my org chart pl remove the same xd xd i: 5177 xd xd xd good morning xd xd have two more travel profiles please see attached xd xd best i: 5178 master cost center missing for person number cost center should be ltu i: 5179 xd xd xd hello xd xd every month we see difference in quantity in inventory between plant stocks and erp stocks xd xd our assumption was that in erp we inward stock without paper customer return with out paper but good for resale but it is not so xd xd in this connection attaching the extraction of plant register as on erp inventory plant and workings which show difference between xd erp and plant register xd xd have highlighted few material code in red color which is the difference between erp and plant and throws light that inward is made with paper also downloaded screen shot of material code for your reference xd xd request you to investigate and revert with reasons for such difference xd xd this is time bound activity and we expect this to be closed by as the same needs to informed to the auditor for xd xd xd i: 5180 infopath issue some rules were not applied i: 5181 blank call i: 5182 what type of outage network circuit power please specify what type of outage xd xd top cert site slo site yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5183 unable to log in to erp sid Translated 5183 : unable to log in to erp sid i: 5184 loaners laptops are currently only available for usa employees in usa pa hq and usa employees in usa ar we apologize for the inconvenience xd xd need laptop on days notice is required for loaner to be ready laptops can be reserved no more than weeks in advance xd xd will return laptop on laptops can be borrowed for maximum of weeks xd xd does user need remote access vpn no xd if yes who is the requester manager approval needed xd xd laptop comes with erp vpn etc xd xd additional software needed xd xd office word excel powerpoint n xd outlook n xd xd the following will be updated by it xd xd dell serial number xd company asset tag xd xd note if the laptop and all parts are not returned as scheduled the requestor department will be charged replacement cost s i: 5185 xd xd xd good morning xd xd m having issues with my company phone and am not sure who to contact to help me correct the issue can please get the contact that can help me solve this problem xd xd i: 5186 unable to print requesting for printer drivers i: 5187 impact award password reset i: 5188 account keeps locking out after the last password change i: 5189 i need to view attachments in er but get an error plug in is not responding and cannot see the attachments without seeing the attachments do not know what changes to make to the drawings and the parts are on hold in manufacturing xd i: 5190 account unlock i: 5191 erp sid account unlock i: 5192 moin marfhtyio xd xd kannst du bitte herr lzuwmhpr riuheqsg r das laufwerk departments hostname distribution formulare zulassen danke xd xd xd kind Translated 5192 : moin marfhtyio xd xd kannst du bitte herr lzuwmhpr riuheqsg r das laufwerk departments hostname distribution formulare zulassen Danke xd xd xd child i: 5193 probleme mit we drucker druckt nicht dknejifu dljvtebc Translated 5193 : problems with we printer does not print dknejifu dljvtebc i: 5194 account locked i: 5195 blank call i: 5196 erp sid account unlock i: 5197 the i: 5198 tastatutur defekt eewhse vzqomdgt jwoqbuml Translated 5198 : tastatutur defective eewhse vzqomdgt jwoqbuml i: 5199 install eu tool und zebra ewew zlqfptjx xnklbfua Translated 5199 : install eu tool und zebra ewew zlqfptjx xnklbfua i: 5200 hello team can you please arrange dock station for my laptop model latitude please let me know if you required further details br aghynil i: 5201 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue dofghbmes xd xd transaction code the user needs or was working with bex xd xd describe the issue xd xd password logon no longer possible too many failed attempts xd xd provide access the same as this other user i: 5202 issues with the computer the user can work there are regular error messages regarding not enough space on the computer the files on the hard drive have been cleaned up but the problem did not dierppear user effeghnk computer name efdw please see the attached screenshots with error messages the user tried contacting the it help via it chat support but it did not work on this computer probably due to recent issues for further questions please contact mizpywld dnrubpis at the tel or via sky business i: 5203 i reset my password tonight and already forgot it can log on to anything i: 5204 dear all can someone please check we do have some new sales employees but the name doesn show in the sales plan vs actual bobj report we have ex mjvfxnka zvjxuahe and wohzmlib fxwjhapo can someone please check and let us know when we will also see the names of the sales people is there no automatic routine i: 5205 xd xd xd dear sir xd am facing issue with login into laptop while starting xd xd the below window is coming screen shot attached due to this am not able to login when am using laptop as an pad keybankrd is not showing so every time have to connect it with keybankrd to enter user id and password xd laptop model dell latitude xd xd xd request you to kindly solve the problem xd xd best i: 5206 probleme mit outlook axesnghb cyzuomxa i: 5207 xd xd xd hi xd visual studio professional in my machine has license issue warning message indicates license trial has been expired xd xd but the coverage period for the existing vs license is till nov xd xd please refer to the attached image for the error description and license validity details xd xd i: 5208 hi it team eonhuwlg sxthcobm cannot receive and send any emails to the external parties via his company email address however his colleague wydorpzi taxcizwv can send and receive emails with no any issues kindly investigate the issue for debaghjsish and you can take sagar user to compare for the difference fyi both of them are our fi outsource from partner and also got company email address in the same for fi operation support to us appreciate if you could prioritise to fix for us i: 5209 hallo marfhtyio xd xd bitte richte mir die lese schreibberechtigung r kbt auftrgasbearb ein xd xd danke anfghyudrejy xd xd xd xd xd freundliche gr kind Translated 5209 : hello marfhtyio xd xd please give me the read write authorization r kbt auftrgasbearb a xd xd thank you Anfghyudrejy xd xd xd xd xd friendly gr child i: 5210 xd job job failed in job scheduler at i: 5211 please review eu tool server in germany hostname eu tool is not working very urgent Translated 5211 : please review eu tool server in germany hostname eu tool is not working very urgent i: 5212 windows account locked i: 5213 reset passwords for pyeothbl agfxelwz using password management tool password reset i: 5214 hostname drive is full i: 5215 please reset password aerp xd Translated 5215 : please reset password aerp xd i: 5216 account is expired i: 5217 to the database team xd the job processor for the engg production system has stopped please restart xd i: 5218 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar rad request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name nihktgsh kurtyar last name kaghjtra consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 5219 hi not able to access sid system user id heghjyder gajthyana hegdergyt manager finance i: 5220 i cannot log or change my erp password ploease help i: 5221 xd job job failed in job scheduler at i: 5222 xd xd xd hello xd xd am not able to connect to vpn xd xd i: 5223 bitte den verantwortlichen des ordners hostname departments ehs arbeitsmedizin ndern von ozphysqw pgcmwqze metghyjznk auf clara der roedfghtec danke please change the owner of this folder to vhebydgs rtmjwyvk roedfghtec i: 5224 computer name aiml Translated 5224 : computer name aiml i: 5225 xd job job failed in job scheduler at i: 5226 excel kmfgfr lpa countermeasures fy total hostname teams business qualitycontrol quality project k weekly layered process audit fy i: 5227 xd xd xd hello xd xd pls do the needful xd xd xd vivthyek byuihand xd asst manager sales xd company india ltd india xd xd xd xd xd Translated 5227 : xd xd xd xd xd hello pls do the needful xd xd xd xd vivthyek byuihand asst manager Sales Company India Ltd India xd xd xd xd xd xd i: 5228 unable to connect to company wi fi i: 5229 xd xd xd hello xd xd need help as forgot my attendance tool login id and password xd xd with best i: 5230 account locked out and password reset i: 5231 not able to add id as printer in my laptop after installing driver system throws up an error can add printer i: 5232 xd job job failed in job scheduler at i: 5233 ctrl alt and delete keys are not working unable to login to pc dell latitude contact no assisted user click on easy to access option and enable type without key bankrd option with help of cursor click on control alt and delete no go delete button is not working i: 5234 we observed that request sid was imported with warnings on has been re imported twice on and can you please check and share the details of why this is happening xd xd this is serious issue as this request is trying to over write the changes that were done post this transport xd i: 5235 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar rad request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name venfgugjhytpal last name nythug consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 5236 hello it team dn was processed in erp kis but its kis record was missed its sf tracking number is could you find the cause and fix it i: 5237 xd xd xd hi xd xd please help to provide access to hostname departments as follows xd financemssg apac partner ctc xd person to access xd lxkecjgr fwknxupq fjzywdpg vkdobexr tnorudbf lauftqmd xd financemssg apac partner rtr xd person to access xd qcjevayr xirwgjks nil madhaw rai uyocgasl ogabwxzv nfdtriwx lriupqct xd level of access full control xd xd i: 5238 unable to login windows i: 5239 system is not booting up i: 5240 windows account locked i: 5241 i have raised request for access in the bank portal but cannot receive mail from them xd kindly assist i: 5242 windows account locked i: 5243 account locked out and password reset i: 5244 xd job job failed in job scheduler at i: 5245 hello xd can not serch for my engineering tool if specify the date xd the error on the bottom of the window shows that do not have the access to it xd please give me the access xd i: 5246 above is the link to the gtehdnyu belt tracker the person who generated this site nicrhty pfgyhtu and wrote the original programdnty had it set up so that the full time oe personnel did not ever receive recertification notices and warnings all of sudden this week we are all receiving those emails am attaching one of the emails the list of oe personnel who should not receive these emails for any gtehdnyu belts clswzxoq higqaepr pattghyuy karcgdwswski dkinobsv wymgzcrh ykolismx kbysnuim yhroaeqj djtyroha phksfqxe wkbovsmu dshferby houtnzdi mikhghytr gerusky jafgty verghjuen am double checking to see if my list is complete these people are full time oe and permanently certified please let me know what else you need i: 5247 user needs help login to the company vpn i: 5248 my telephony software password is getting expired today please reset the password and let me know so that can login user id mukghyuhea contact no i: 5249 collaboration platform application uninstalled i: 5250 hallo frau muejkipler ich hoffe sie sind r diesen fall die richtige ansprechpartnerin bzw wissen wer hier herrn plnvcwuq ikupsjhb noch weiter helfen kann herr voigt ist nicht mehr greifbar und herr gerberghty im urlaub ich rde vermuten dass hier eine direkte kl rung und mithilfe bzgl beurteilung a der telekom notwendig ist allerdings ist mir nicht bekannt wie aktuell der stand im unternehmen company ist bzgl ip umstellung oder ssen wir warten bis herr gerberghty aus dem urlaub ist mit freundlichen gr en with kind Translated 5250 : hello Mrs. muejkipler I hope you are the right contact person for this case or know who can help mr plnvcwuq ikupsjhb mr voigt is no longer available and mr gerberghty on vacation I would assume that this is a direct clarification and with the help of an assessment of the telekom is necessary but I do not know how up-to-date the status of the company is with regard to ip conversion or let's wait until mr. gerberghty is out of vacation with kind regards i: 5251 oracle finance app financial management web tier epmsystem service monitor down i: 5252 nanrfakurtyar pm dba can pl check if server hostname is working fine can pl check if server hostname is working fine also check edmsm i: 5253 password reset login issues Translated 5253 : password reset login issues i: 5254 hallo rdest du bitte diese datei schaem eigene dateien db mdb zur cksetzen es scheint alles nicht mehr zu funktionieren danke cflrqoew qbgjwaye process planning Translated 5254 : hello, would you please reset this file schaem own files db mdb it all seems to no longer work thanks cflrqoew qbgjwaye process planning i: 5255 hallo marfhtyio xd xd xd der ordner schulzgth aus dem laufwerk public hostname ist mir abhandengekommen kannst mir den wieder zur ck holen und ihn dann auf laufwerk departments hostname distribution formulare reinstellen vielen dank im voraus xd xd xd kind Translated 5255 : hello marfhtyio xd xd xd the folder schulzgth from the drive public hostname has been lost I can get it back and then put it in the drive departments hostname distribution forms thank you in advance xd xd xd kind i: 5256 eu tool not run since m we didn have any information about sistem shut down i: 5257 vpn Translated 5257 : vpn i: 5258 hi have been having trouble getting some webpages to load one is on the insurance site to change password when try to log on to the site it says need to update my password when click on the ok all get is blank page see below please advise vkzwafuh tcjnuswg cmp sr application eng i: 5259 account lock release request of kanghytaim i: 5260 am keyence messger monitor ausgetauscht Translated 5260 : exchanged on the keyence messger monitor i: 5261 probleme mit ie dwgliuyt ieqgdpbm Translated 5261 : problems with ie dwgliuyt ieqgdpbm i: 5262 probleme mit ewew wrcktgbd wzrgyunp Translated 5262 : probleme mit ewew wrcktgbd wzgyunp i: 5263 keine r ffnerfunktion bei folgenden zeiterfassungskarten glich xd Translated 5263 : no opener function with the following time attendance cards was like xd i: 5264 xd xd xd hello all xd xd net weaver business client doesn work with the message below it daily required function please fix soon xd xd xd xd i: 5265 xd xd xd dear it team xd xd have run report as below found that balance carry forward is not shown on the report both ap and ar report please advise xd xd xd xd xd xd xd xd xd best i: 5266 it support xd could you please unlocked my account on supply chain software xd best i: 5267 can you please have look to this there seems to be no output in shipping to see this had stopped ecs print it is dhl from apac to japan but other countries also affected xd xd xd i: 5268 xd job job failed in job scheduler at i: 5269 tastatur defekt wcupoaty fqnzwphj Translated 5269 : tastatur defect wcupoaty fqnzwphj i: 5270 hello please unlock my password for erp need to change my password soon user id songhyody i: 5271 xd job job failed in job scheduler at Translated 5271 : xd job job failed in job scheduler at i: 5272 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue all user in plant and plant xd xd transaction code the user needs or was working with zload xd xd describe the issue abap runtime error xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 5273 the i: 5274 archiving tool scanner not working xd xd please upgrade open text imaging scan to xd opentext imaging enterprise scan xd i: 5275 please reseat sid need to uacyltoe hxgaycze something i: 5276 computer can started i: 5277 defekt lwl leitung box defekt vaigycet jtgmpdcr Translated 5277 : defective lwl lead box defective vaigycet jtgmpdcr i: 5278 ie Translated 5278 : ie i: 5279 erp sid account locked i: 5280 xd xd xd good morning xd xd have our coivmhwj opwckbrv here and would like for them to access to guestcompany wifi xd xd there will be of them xd xd they will be here for weeks xd xd do need to create separate accesses for them or can they share login access xd xd please advise xd xd i: 5281 account locked i: 5282 phone changed from milling team csd to holemaking team csd but still several workflow items from old group are visible in new groups workflow too erp substitution was ended by old team as far as was informed i: 5283 xd job job failed in job scheduler at Translated 5283 : xd job job failed in job scheduler at i: 5284 the i: 5285 got forwarded an email regarding erp query zload generating error message xd xd see attachment for further details xd xd m not sure how big of an impact this has so currently opening with sev feel free to raise the priority in case this is known important query xd xd best i: 5286 vendor is creating reports for the usa carve out and is unable to save reports to the local pc she is using the erp gui solution must be provided immediately if not sooner as this will delay the project description form the vendor vvgtybyrn once am running reports where can save them need to save them as unconverted text and then need to open each in excel and make few formatheywting changes before save it and send to the team leads ran uacyltoe hxgaycze using se for the programdnty attached to the transaction and cannot save to my own machine did try thumb drive but that was also unsuccessful is there somewhere on the network where can save them and then someone can send them to me so can format them on my own machine and send them out or if you have another idea on how we can accomplish it that would be great i: 5287 xd xd xd hello team xd abdhtyu account is locked out could you please check xd xd i: 5288 usa tn tm usa att rtr circuit went down at am et on servers also went down but we see comcast circuit is up xd xd usa tn tm usa att rtr interface gigabitet hernet connection to nexusk has state down since pm et on i: 5289 please provide read and write access to mr frseoupk feluybrn and karghytuthik for following network folder hostname grinding i: 5290 xd xd xd Translated 5290 : xd xd xd i: 5291 xd job hr payroll na failed in job scheduler at i: 5292 xd job hr payroll na failed in job scheduler at i: 5293 xd job hr payroll na failed in job scheduler at i: 5294 vpn apvpn vpn unable to connection Translated 5294 : vpn apvpn vpn unable to connection i: 5295 we ve found the pop up error when generating sto as per pr as attached please help fixing this issue aerp i: 5296 xd xd xd hello xd xd please unlock my erp xd xd user id songhyody xd xd i: 5297 xd xd xd hello xd xd could you please organise the mwst tax for on the abovementioned rqfhiong zkwfqagb number xd xd kind i: 5298 xd xd xd dears xd xd forgot my erp password could you help me to reset it i: 5299 original message jobxpkrg klonypzr mail am nwfodmhc exurcwkm the terminate action for nyzxjwud jvtsgmin has completed hello termination for nyzxjwud jvtsgmin effective has been approved click the link to view i: 5300 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5301 please provide details in the template below if multiple applications are impacted please use the quick ticket template in the operations folder xd site location apac apac xd user id ad lia xd system you are seeing performance problems on please list all g crm erp bw bobj erp xd transactions that are slow g va create an order zcor xd area this belongs to g sales finance markhtyeting etc fin xd how can this issue be replicated by the it support group zcor report is used to get shipment data there is variant tj now the data is incorrect for this report would you please help to check what the issue we find the problem on xd the shipment details for is download on as attached this report is running daily to tracking shipment xd if you need other information you can contact me xd are other users seeing this other users in tj xd please attach relevant screenshots and exact times when the issue occurred i: 5302 help to change the windows password using password management tool password tool connected to the user system using teamviewer help the user login to the password manager tool password tool and change the passwords help the user to sync the psswords to the company network caller confirmed that he was able to login issue resolved i: 5303 xd job snp heu regen failed in job scheduler at i: 5304 xd job job failed in job scheduler at Translated 5304 : xd job job failed in job scheduler at i: 5305 xd job bwhrattr failed in job scheduler at i: 5306 xd xd xd hello xd xd want change my password and make mistake xd can you please reject to my old one xd xd i: 5307 xd job snp heu regen failed in job scheduler at i: 5308 davgtgyrh called in for an issue where there was supposed to be firmware upgrade on the phones but davgtgyrh mentioned that the phones are still rebooting and its on loop i: 5309 xd job job failed in job scheduler at Translated 5309 : xd job job failed in job scheduler at i: 5310 xd xd xd hello xd xd xd now days we are getting lot of other regions report in india dump can you please solve this xd every month we get close to engineering tool in to our system xd xd i: 5311 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5312 when vigrtgyne is logging into his laptop the laptop is automatically shutting down he tried doing power shutdown and also kept the pc off for an hour but still the same the moment he logging in pc is shutting down by itself user id ravhdyui pc name aidl service tag dbdhz model latitude non vpro i: 5313 xd job co val update crosscomp failed in job scheduler at i: 5314 what type of outage network circuit power please specify what type of outage xd xd top cert site slo yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5315 xd job sid cold failed in job scheduler at i: 5316 xd job sid cold failed in job scheduler at i: 5317 xd job sid hot failed in job scheduler at i: 5318 xd job sid cold failed in job scheduler at i: 5319 xd job sid cold failed in job scheduler at i: 5320 bridgex from lacw step login failed resource not found i: 5321 xd job sid hot failed in job scheduler at i: 5322 xd job sid cold failed in job scheduler at i: 5323 xd job sid cold failed in job scheduler at i: 5324 xd job sid cold failed in job scheduler at i: 5325 xd job job failed in job scheduler at i: 5326 xd job sid cold failed in job scheduler at i: 5327 xd job sid cold failed in job scheduler at i: 5328 xd job sid cold failed in job scheduler at i: 5329 xd job sid cold failed in job scheduler at i: 5330 xd job sid cold failed in job scheduler at i: 5331 node hostname located at germany is down since pm et i: 5332 node hostname located at emea is down since at pm et i: 5333 xd job job failed in job scheduler at i: 5334 xd job job failed in job scheduler at i: 5335 qpixeudn rjlziysd pm nwfodmhc exurcwkm ifblxjmc dyrgfwbm jayachandran reddy re ee personal address in system hello all bill here on morning battling hurricane in va beach looked back at the mailsi have received on my mail account and see one from callie with hrssc as copy list candice with the same copy list and lynda at hr shared service with again the same copy list hope this helps bb bigtyl bachsmhdyhti eastern zone manager company on at pm nwfodmhc exurcwkm wrote hi candice does this happen when you send an email to specific group or all the groups that bill is part of if it is single group know the group name i: 5336 xd job job failed in job scheduler at i: 5337 no sound Translated 5337 : in the sound i: 5338 kuhgtyjvelu manager reliability engineering Translated 5338 : kuhgtyjvelu manager reliability engineering i: 5339 xd xd xd hello xd xd while using c zz mails we are getting inwarehouse tools in different formats xd please refer enclosed mails xd xd inwarehouse tool not okay xd xd inwarehouse tool is okay xd xd please help us in getting all inwarehouse tools as per format appearing in inwarehouse tool xd xd i: 5340 xd job job failed in job scheduler at i: 5341 xd job job failed in job scheduler at Translated 5341 : xd job job failed in job scheduler at i: 5342 xd xd xd xd Translated 5342 : xd xd xd xd i: 5343 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5344 xd job bk hana sid os dly dp failed in job scheduler at i: 5345 jmfvwrek pqwehmzgagannathan xd am xd nwfodmhc exurcwkm xd notification fw re new order xd xd hello xd xd am forwarding the trailing mail received kindly do the needful xd xd i: 5346 ad account locked i: 5347 unable to connect to web and check download files i: 5348 team am unable to view emails in outlook of and before but can see them in owa its difficult to analyze the old emails in owa compared to outlook could you please help in refreshing the emails in outlook my outlook version is best i: 5349 xd job job failed in job scheduler at i: 5350 name jvpkulxw ovuweygj language browser microsoft internet explorer customer number telephone summary desktop icon size issue i: 5351 xd job sid hoti failed in job scheduler at i: 5352 xd xd xd had this problem earlier xd this was resolved by replacement of hardware xd xd however am experiencing this problem again pl support xd xd i: 5353 xd xd xd for some reason my logon information won work with vpn vpn access tonight could you please investigate the following is the link follow xd xd xd xd i: 5354 xd job job failed in job scheduler at i: 5355 mm can not inwarehouse tool consignment mb acct total piezas i: 5356 report won work Translated 5356 : report won work i: 5357 unable to edit quantities under oppurtunities in crm refer attachment phone i: 5358 unable to launch outlook i: 5359 need email address to login to outlook i: 5360 erp sid account unlock i: 5361 earlier started chat with rakthyesh was pulling report though hana and after selecting the analysis tab and refreshing was thing going to display needed to filter this template to add my plant when would select display all of my boxes were empty see attached he did something and asked me to close and reopen once reopened my analysis tab was gone so wasn able to refresh to then go to display to see if my filters were fixed he then fixed my analysis tab while we were still in chat but after doing this when tried to select display the white boxes that was seeing was no longer showing would hit display and all could see was my spreadsheet no boxes he said he would have to do ticket ve not been copied on ticket buy need to run this report before sending this email went back into hana to see if by chance my report or problem was fixed and the analysis tab is gone again if you can please correct this for me nealxjbc owjduxai customer service supervisor cec infrastructure i: 5362 hello effective please change merthayu and behsnjty accounts from employees to vendors and donot deactivate their accesses based on my conversation with khrtyujuine snhdfihytu and suhtnhdyio opening this ticket i: 5363 interface fastethernet router embertell on company sa bra sao pollaurido switch access sw company com is down since on i: 5364 hostname volume drive on server is over space consumed space available g i: 5365 outlook email font size issue i: 5366 xd job job failed in job scheduler at i: 5367 unable to connect to vpn Translated 5367 : unable to connect to vpn i: 5368 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5369 name qjeymnzs wgpelvyn language browser microsoft internet explorer customer number telephone summary cannot log into skype or vpn this happens every time change my password will need someone to log into my computer and fix some certificates or whatever to make it work again i: 5370 cwuospin nbhoxqpe pm ouaepwnr pqnteriv facility nwfodmhc exurcwkm amar re light indicator help desk please see the request below sincerely stanfghyley guhtykes fmp facilities manager world headquarters i: 5371 outlook not connecting to microsoft exchange i: 5372 vrtx at south amerirtca is showing orange light blinking at front panel xd please see attached file i: 5373 while trying to invoke the method java util list iterator of null object loaded from local variable locallist when try to look at configuration for rqfhiong zkwfqagb get an error while trying to invoke the method java util list iterator of null object loaded from local variable locallist phone i: 5374 erp logon balancing error Translated 5374 : erp logon balancing error i: 5375 newly created emails are not getting sent they are all going into the outbox i: 5376 we have quotes and that gives me the correct unit price but the total of the entire quote is rounding off can this be fixed customers will deny payment if the total doesn match what the unit price is i: 5377 this appears to be an issue with all environments i: 5378 unable to make incoming and outgoing calls from the company phone i: 5379 cyber security phish uacyltoe hxgaycze report i: 5380 unable to connect to companysecure i: 5381 unable to connect to network in usa michigan i: 5382 mapping printers Translated 5382 : mapping printers i: 5383 packet drops in the internet link tcloc i: 5384 the majority of csrs in the usa cec work remote we are currently on vpn company com for vpn due to the upgrade however our outlook is continually freezing and we have had to reboot just to get it back i: 5385 hello please reset password for vvterra qlhmawgi sgwipoxn terralink for russia office koahsriq wdugqatr administrative assistant i: 5386 password reset for fmeozwng pfneutkg i: 5387 name dhkovprf pltndoab language browser microsoft internet explorer customer number telephone summary locked out of erp sid on too many password attempts tried to use what know is my password but it won let me be due to sid access request ticket no i: 5388 infopath issue i: 5389 skype login issue personal certificate error Translated 5389 : skype login issue personal certificate error i: 5390 x summary require jftyff bgtyrant user name brahdthyu to be usaed access to hostname i: 5391 xd xd xd hello xd could you help me on entering the distributor tool company xd d already contacted with rakthyesh and he helped me enter the system with the password he gave but it didn still work ve changed the password after he sent me an email but this problem couldn be solved xd have great day xd xd xd best i: 5392 joining skype meetings through iphone i: 5393 problems with quoting engine refer attachment phone i: 5394 erp sid password reset Translated 5394 : erp sid password reset i: 5395 delegation query owa and checking emails older than months i: 5396 hallo it bitte dringend um hilfe da der lkw bereits hier zur abholung der werkzeuge vor ort steht und dringend ein lieferschein erstellt werden muss bitte um kl rung danke best Translated 5396 : hello it urgently for help as the truck is already here to pick up the tools on site and a delivery note urgently needs to be drawn up please clarification thank you best i: 5397 xd xd xd hello all xd please set the pc name for new laptop windows xd we re in russia office xd i: 5398 email confirmation to login to hub i: 5399 xd xd xd hello help team xd xd how can update below data in outlook my phone and cell phone isn correct xd xd i: 5400 source ip system name rqxl user name qxhdcnmj caflvjrn vefghgarr location usa sms status no updates field sales user yes no no dsw event log see below event data related events event id event summary vid adwind malware ssl certificate detected inbound occurrence count event count host and connection information source ip source hostname foreach rcp enceinjury net source port source ip geolocation barcelona esp destination ip destination hostname rqxl destination port connection directionality incoming protocol tcp device information device ip device name isensor company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector rule id inspector event id ontology id event type id agent id event detail vid adwind malware ssl certificate detected inbound classification none priority action accept passive impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro sartlgeo lhqksbdx tcp ttl tos id iplen dgmlen df seq xefd ack xdaedb win tcplen pcap security ascii packet pcap ascii pcap ascii hex packet pcap hex c c de e e c bf dd ef e da edb cc f cf c w xos d beb ae li ti db eef c df f w f bf cc bf ba f cc c ff b a f bd b a d h b sartlgeo lhqksbdx fr a c assylias e f inc a c ssylias f b u fr c e assylias inc c assyli fd as f dada c bdf cc c ac ee cb eb dea bf ff eaeb bda fd a afe ae fc z b dd aeb ef ea eb c bbb bcb a bf def ca dc aa q c bef aae c bf eb tltz c abca ce df ef p no ea ed cf def zw b cf fb bb ca i def aeb d g b fa e daa ac fe gb bd ef ed deab c ac cc df dca acc r bb ec ef b cfe ae h cfef f cec fb y da db c d bb cy ad ec f wand g cb f bdc cb a g dj acf cc da ab eeb oy c cd cfc c ab ba h d da sid d fcd ad fb s e c ff eed eb f a d d b be eaf u ec ce de f a n f b s ae aff ef ff ad p bc bf aee dd qko be sid fad ef cfec ca to eed cb bbf ef ccf de cc df ba a f ea cb cd cae hn u f bba db dd f ef e fd dc ef ec eae cn fad d ef ebd w c a ed bf d h b fd bf fba eb ac ik h fc ca bfb o a f c fff fdb z g ae e bf dbe ands bb dd de db abb z cac ec da bba v o cd da ef cf bfb e ba fn bb b fd ee r e fb be ede sid g i aa bd cf d be f o b cf bcd e k and ande af c bb fb y m ab ba bc fb ef dca q ac bfda dc ab adc w c b a aa eba ac ca a lcbq f abc ad ddb cb df af j e eba dc dc cfb eb kd c dba cd df cc adc ce f af ba f edb pcap hex e i: 5401 password change i: 5402 xd xd xd team xd xd please send me link to the information on how can set up personal tablet to receive company email through exchange server xd xd have the t ticket completed but understand need to set up the tablet before submit xd xd best i: 5403 is in stock at plant after finishing production at plant why isn there delivery created to ship this item to fill customer backorder there was previously an issue with the system automatically processing shipments as it should xd xd i: 5404 when clicking company vpn on the vpn company website the new window opens to show network access after attempting to connect get error connection to the remote computer could not be established so the port used for this connection was closed i: 5405 wifi not working Translated 5405 : wifi not working i: 5406 i have been given the to many failed attempts for logging into erp have recently changed password checked that it was unlocked in password management tool and when tried new one twice without working tried my old password then after not opening came the message of to many failed attempts need access to erp michghytuael hardman maintenance supervisor i: 5407 password reset alert from for user Translated 5407 : password reset alert from for user i: 5408 crm web access unable to load page i: 5409 skype audio not working Translated 5409 : skype audio not working i: 5410 password reset request from o i: 5411 mobile device activation request Translated 5411 : mobile device activation request i: 5412 not able to login to vpn account locked out i: 5413 ad account locked out i: 5414 printer not working pc in qa office in germany not getting connected to internet xd xd pc name xd olympus sid xd xd contact name xd i: 5415 xd xd xd enterprise search connector for is not working xd xd xd xd xd xd xd mit freundlichen gr en best i: 5416 xd xd xd hi my name is pnabslgh vatpgsxn xd pls help me to use company distributor tool xd xd xd xd company posts xd select the following link to view the disclaimer in an alternate language i: 5417 an pr fen we wu essa presse box blinkt dauerhaft wrcktgbd wzrgyunp Translated 5417 : to check we wu essa press box flashes permanently wrcktgbd wzrgyunp i: 5418 setup rechnerf r infostand instandsetzung niptbwdq csenjruz Translated 5418 : setup computer for information status repair niptbwdq csenjruz i: 5419 problem mit bildschirmschoner an den sinic stationen jionmpsf wnkpzcmv i: 5420 externe festplatte zu verf gung stellen alte nobook festplatte edspmloy fxnkzaqu Translated 5420 : external hard drive for sale alte nobook hard drive edspmloy fxnkzaqu i: 5421 probleme mit portal ghaltiek lsuepvyx Translated 5421 : problems with portal ghaltiek lsuepvyx i: 5422 what type of outage network circuit power please specify what type of outage xd xd top cert site slo site yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active primary is active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5423 interface fastethernet vlan lhqwxsf on company na usa usa switch cl access sw company com is down i: 5424 please check why warehouse toolmails for efbwiadp dicafxhv are getting emailed to me trurthyuft has not received any of the emails please check attachments i: 5425 summary tried use password management tool manager to change password when enter new paasword it prompts me no activex when click install it give me error i: 5426 need to add two mailboxes to outlook still working with outlook and but doesn work i: 5427 skype add in is not showing up in outlook xd also when manually activated i: 5428 mobile device activation company provided i: 5429 volume label dat rqxsm dced on server rqxsm is over space consumed space available gb i: 5430 ethernet not working only wi fi i: 5431 outlook not responding Translated 5431 : outlook not responding i: 5432 summary adoption score card is not visible in crm dynamics user is trying to access crm adoption card for first time i: 5433 sid is not working xd error no connection to server i: 5434 pm mhfjudahdyue rfgrhtdy hi manjgtiry pm dwfiykeo argtxmvcumar hello pm mhfjudahdyue rfgrhtdy na remote is not working can you verify eu remote is working pm dwfiykeo argtxmvcumar ok let me check pm mhfjudahdyue rfgrhtdy ok pm dwfiykeo argtxmvcumar are you getting some error pm mhfjudahdyue rfgrhtdy not able to connect vpn pm dwfiykeo argtxmvcumar ok let me create ticket pm dwfiykeo argtxmvcumar can you try if it is working pm mhfjudahdyue rfgrhtdy eu is working am on eu now pm dwfiykeo argtxmvcumar ok this is new asia vpn remote if you have time just try it pm mhfjudahdyue rfgrhtdy sure pm dwfiykeo argtxmvcumar i: 5435 debbie smhdyhti gets an error message Translated 5435 : debbie smhdyhti gets an error message i: 5436 display an festtelefon der nummer im cvd anlagenbereich defekt telefon bitte erneuern Translated 5436 : display on fixed telephone of the number in the cvd system area defective, please replace the telephone i: 5437 xd xd xd hello xd only till xd xd xd mit freundlichen grugermany with best i: 5438 mobile device activation successfully done Translated 5438 : mobile device activation successfully done i: 5439 hi team basis xd xd please stop delete the job bidengineering tool in sid system xd xd the job was triggered to uacyltoe hxgaycze the value of one of the complaint cube transaction in bw system as the result is found hence please stop the respective job xd xd email is sent to team xd xd best i: 5440 xd not able to connect to out look please see the screen shot and do needful i: 5441 sd sales order jobs abended in job scheduler due to logon of user coferte in client failed when starting step i: 5442 hi kindly usa pagthyuathy afghtyjith userid vvdfgtyuji access to run books dot net and plm solutioning i: 5443 hello christgrytoph xd xd this kind situation came up again m wondering is it good way to run the dn xd please see the screen below i: 5444 now the quantity changed to pcs seems not solved yet rofgtyger liugh judthti zhu pm nwfodmhc exurcwkm rofgtyger liugh material issue dear team we once shipped subcontract order on po rough material pcs movement type but its corresponding end product mm still exists in erp pls help to check the root cause thx rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 5445 xd xd xd hello collegues xd xd jvxtfhkg heptuizns iphone calendar is only synchronizing in one direction xd xd if he does calendar entry in his outlook on the computer it synchs tot he iphone calendar xd if he enters one on the iphone it is not synchronized to the outlook xd xd would you please be so kind and help us regarding this issue xd xd many i: 5446 hi xd xd kindly usa access to pagthyuathy afghtyjith our new intern of dot net team xd her userid is vvdfgtyuji xd xd i: 5447 xd job sid hotf failed in job scheduler at i: 5448 the i: 5449 xd xd xd hello xd xd to prepare for monthly inf mbr report need access to run top customer andend markhtyets in reporting tool it will be put in month inf mbr report it is quite urgent now xd site certified content views mbrreporting engineering tool topcustomersendmarkhtyets iid xd xd i: 5450 xd xd xd hi xd for your information and reference only have requested help from it to set up standard login for spare laptop for company product videos to be display on tv at our office main entrance xd configuration completed by sridhar xd xd i: 5451 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp prtoru on hostname prtor on hostname prtor on hostname xd xd detailed description of the problem will not print because drviers need updated updated the drivers but it states error processing xd xd type of documents not printing email excel word etc all xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls outlook xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed no xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 5452 account locked i: 5453 xd job sid hotf failed in job scheduler at i: 5454 xd job sid hotf failed in job scheduler at i: 5455 ie Translated 5455 : ie i: 5456 xd xd xd riqmdnzs mtlghwex would like to recall the message ticket no need to request access to co change production order in cgo and plant xd xd xd i: 5457 original message xd nwfodmhc exurcwkm xd am xd umzcxfah aoshpjiu xd re new warehouse toolmail from at am xd xd hi marry xd xd it looks like spam mail you can go ahead and delete it xd xd xd xd i: 5458 the users do not have accees to impact award hub parfgtkym leegtysm i: 5459 xd job job failed in job scheduler at i: 5460 noise coming from cpu that sounds like cooling fan or hard drive going bad machine located by the ultra and wendt contact i: 5461 rebate agreements will not create partial settlement with transaction vb xd xd have confirmed with agreement specifically that there were sales during the month of other agreements are working to create the credit without fail please advise what could be the cause and steps to correct please also note this same process worked to generate the documents i: 5462 i picked titanium tial but then materials come up in results along with titanium and materials also had the kcu grade in the grade field as was doing search for drilling i: 5463 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rakthyesh ramdntythanjesh hi craigfgh arjpdohf mrqwdtil hi rakthyesh ramdntythanjesh i: 5464 xd xd xd hi can get an update on this xd xd i: 5465 when trying to refresh report am getting pop up that says hana odbc driver not found i: 5466 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5467 mapping printers Translated 5467 : mapping printers i: 5468 we are seeing your isensor company com device generating vid tor ssl server certificate detected inbound alerts that occurred on at for traffic not blocked from port tcp of to port tcp of indicating that is generating tor traffic xd xd please note that depending on the placement of isensor company com there is possibility that eszl is your nated host if this is the case please examine your nat logs to determine the true destination of this activity if you do not wish to be alerted on these events please let us know and we will automatically resolve these alerts when they re destined to your nated host xd xd tor activity does not immediately indicate malicious activity however the presence of anonymizing software should be investigated to determine if this is authorized or expected activity tor activity indicates possible policy violation which in turn could lead to potential compromise tor is being increasingly used by malware therefore tor activity also indicate malware infection xd xd we are escalating this incident to you via medium priority ticket and no phone call per our default handling policy if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd full escalation for anonymous communication traffic tor etc alerts where the traffic was not blocked explicit notification via high priority ticket and phone call xd automatically resolve anonymous communication traffic tor etc alerts where the traffic was not blocked to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd dell soc i: 5469 we are seeing your company internal asa company com device generating ipbl phishing form submit outbound beshryulisted ip alerts for traffic from dane williuthyr to the external ip address of has been beshryulisted by our counter threat unit ctu team due to its association with malware phishing form submit outbound the affected asset should be investigated as traffic to the beshryulisted ip address indicate that the host has been infected by malware we are escalating this incident to you via medium priority ticket and mail only notification per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at full escalation for related events high priority ticket and phone call autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely ctoc event data event id event summary ipbl phishing form submit outbound beshryulisted ip occurrence count event count host and connection information source ip source hostname dane williuthyr source mac address eb db destination ip destination hostname ip ip secureserver net destination ip geolocation schtrtgoyhtsdale usa connection directionality outgoing device information device ip device name company internal asa company com scwx event processing information sherlock rule id sle inspector event id agent id event detail asa built outbound tcp connection for outside to inside correlation data dhcpd dhcpack on to eb db dane williuthyr via eth relay lease duration renew take action ticket action i: 5470 skype on the curhetyu rack pc is not working not allowing me to connect but seems to work for others i: 5471 dsw in xd xd we are seeing your isensor company com device generating vid openvas vulnerability scanner user agent detected inbound alerts for allowed traffic from port tcp of to port tcp of this traffic indicates that is using the openvas scanner as indicated in the event details against xd xd blocking each source ip address not necessarily be productive due to attackers ability to switch ip addresses through the use of proxies anonymizing software such as tor and vpns please investigate the targeted host to determine whether you are running vulnerable version of the application being targeted xd xd this ticket will effectively serve as master ticket for any related alerts until we receive feedback from you on how to handle these events going forward please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at we have number of options available for the handling of future alerts such as this one xd xd autoresolve these alerts directly to the portal no explicit notification and events will be available for reporting purposes in the portal xd ticket only escalation via medium priority ticket no phone call for each unique source ip address for these alerts xd full escalation via high priority ticket and phone call for each unique source ip address xd xd i: 5472 dsw in xd xd we are seeing your isensplant company com device generating possible scan alerts for traffic not blocked from host indicating that it be performing vulnerability scan xd xd we are escalating this incident to you via high priority ticket and phone call per your prior request if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only for vulnerability scan alerts explicit notification via medium priority ticket and no phone call xd automatically resolve vulnerability scan alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd xd event data xd xd related events xd event id xd event summary possible scan xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname host my tss com xd source port xd source ip geolocation tarzana usa xd destination port xd destination ip geolocation usa usa xd connection directionality incoming xd http method get xd host xd full url path global asa xd xd device information xd device ip xd device name isensplant company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd vendor reference vid xd xd scwx event processing information xd sherlock rule id sle xd observation rule id ile xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd this event indicates single source generating or more event summaries with total of or more occurrences in minute window xd occ time source destination summary xd vid fx scanner global asa sourcecode access attempt inbound xd vid fx scanner global asa sourcecode access attempt inbound xd visid http post with phpinfo inbound xd visid http post with phpinfo inbound xd vid generirtc http header xss inbound xd vid generirtc http header xss inbound xd xd i: 5473 nmpworvu upgtrvnj monitor display issue i: 5474 password chaning for window company i: 5475 can you look in to getting the pc on to the network in the inspection room off of dept it would be nice to be able to share some images from the pc i: 5476 ess password reset Translated 5476 : ess password reset i: 5477 inquiry for hr tool site single sign on i: 5478 please give high priority since user is traveling from service tag qp ph i: 5479 need keybankrd in system tray and need picture of keybankrd too helped user enabling keybankrd at system tray with preferred language but couldn set up picture for it hence as per user request assigning it to local it contact i: 5480 internal power supply on company eu deu germany b new office access sw is showing faulty xd xd company eu deu germany b new sh env all xd fan is ok xd temperature is ok xd power is faulty xd rps is not present xd i: 5481 unable to log in to hub ess portal i: 5482 engineering tool issue Translated 5482 : engineering tool issue i: 5483 erp account for haunm keeps locking up can you unlock please sid i: 5484 engineering tool issue and zdsxmcwu thdjzolwronization i: 5485 jertyur hanna xd pm xd efbwiadp dicafxhv xd re company email address request from sqmabtwn fchijage xd xd approved xd xd xd i: 5486 blank call gso i: 5487 xd xd xd reset my password to daypay sid xd xd i: 5488 xd xd xd hello xd seem to have lost my access to hanna reports when in go in to analysis for excel it takes me into the general excel menu and when choose new sheet the analysis tab is missing do need to do something to get access to this back xd xd i: 5489 summary on internet pop up with reported microsoft registry failure of operating system i: 5490 die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird Translated 5490 : the synchronization with exchange activesync is temporarily blocked on your ger until access is granted by the administrator i: 5491 erp sid password reset Translated 5491 : erp sid password reset i: 5492 skype audio does not work Translated 5492 : skype audio does not work i: 5493 inc ticket update i: 5494 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5495 contact summary when sending emails from corp ebusiness service the sent emails show up in my personal sent folder and not in the ebusiness sent folder it does this for all users in the company ebusiness email box i: 5496 xd xd xd please provide it support for the uacyltoe hxgayczeing on the new av system in the main training room in usa we need to uacyltoe hxgaycze the system to complete the finial sign off for the vendor xd xd xd xd i: 5497 ie not working Translated 5497 : ie not working i: 5498 hard disk failure on esxi host atjsv Translated 5498 : hard disk failure on esxi host atjsv i: 5499 unable to login to skype Translated 5499 : unable to login to skype i: 5500 hostname kirty plm conversion production disk free on is now i: 5501 log on balancing error even after connecting to vpn i: 5502 desktop email will not open wxnetroc yecbmliq sent from my ipad i: 5503 ms office upgrade from to i: 5504 outlook running slow Translated 5504 : outlook running slow i: 5505 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5506 name rohntyub dfhtyuison language browser microsoft internet explorer customer number telephone summary hello am having issues printing to my regular printer get an error saying no pages selected and sometimes am prompted to download new driver i: 5507 hello it xd xd there are item linked with the finished materials but only one time is showed in po please help check it i: 5508 the transaction report zcor when ran is producing no data this is sa report this is critical to the financial close xd i: 5509 aorthyme rnsuipbk pm ndkrcxjb hpormqtx ugyothfz ugrmkdhx password reset does not work in iehs ticket no hello mr roesshnktler is having trouble to reset his password in whenever he is trying to reset the password it says that your password has been sent to the provided email address but he does not receive any password in his mail we have checked and rightly put the email address please help i: 5510 unable to connect to vpn Translated 5510 : unable to connect to vpn i: 5511 wifi not working Translated 5511 : wifi not working i: 5512 hallo r unsere neuen azubis hspgxeit prwiqjto diehfhyumj und hdmwolxq xqbevoic bhdikthyu wird noch die plm berechtigung ben tigt mit freundlichen gr en with best Translated 5512 : hello r our new trainees hspgxeit prwiqjto diehfhyumj and hdmwolxq xqbevoic bhdikthyu, the plm authorization is still required i: 5513 please reactivate account for user vvsimpj till st i: 5514 erp sid password reset Translated 5514 : erp sid password reset i: 5515 z file can be opened i: 5516 erirtc wants to see an archived mail from particular date i: 5517 i cannot start the business client anymore see screenshot attached i: 5518 one team update i: 5519 user issue user is not able to import data to portal please find attached mail i: 5520 erp sid and sid unlock and password reset i: 5521 licwu unlock Translated 5521 : licwu unlock i: 5522 dnc unlock Translated 5522 : dnc unlock i: 5523 user called to reset password account is disabled in ad i: 5524 erp password reset erp sid Translated 5524 : erp password reset erp sid i: 5525 hi there changed to large monitor but the screen resolution is not right want to change to but got error message like this the current input timing is not supported by the monitor display please change your input timing to or any other monitor listed timing as per the monitor specifications can you help me out please i: 5526 xd xd xd hi there xd xd xd tried to use my email but it still shows loading after mins have use the web based office to check email xd xd can you help to fix that i: 5527 i cannot sign in alexgnhtjunder best Translated 5527 : i can not sign in alexgnhtjunder best i: 5528 gvderpbx udrzjxkm junior application sales engineer Translated 5528 : gvderpbx udrzjxkm junior application sales engineer i: 5529 gvderpbx udrzjxkm junior application sales engineer Translated 5529 : gvderpbx udrzjxkm junior application sales engineer i: 5530 ad locked out password reset through password management tool password manager i: 5531 quality certificate abode form over lapping in one page can rectify it in page and page xd have attached one example form for your reference i: 5532 what type of outage network circuit power please specify what type of outage xd xd top cert site slo site yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5533 xd xd xd hi dear sir madam xd xd ask your help for the erp pr process xd xd went to erp inbox from workflow system keep pop up the screen below even just accessed sec xd please kindly check and fix xd xd i: 5534 hi changed the password through password management tool and now unable to lonin to engineering tool pls help jayhrt bhatyr extn i: 5535 probleme mit erpgui ewewx vzqomdgt jwoqbuml Translated 5535 : probleme mit erpgui ewewx vzqomdgt jwoqbuml i: 5536 probleme mit erpgui ewewx vzqomdgt jwoqbuml Translated 5536 : probleme mit erpgui ewewx vzqomdgt jwoqbuml i: 5537 when connected the laptop to doc station its not charging battery i: 5538 outlook is continuously asking for password i: 5539 printer configuration summary need to configure printer in region kindly help to do the same ricoh aficio mp pcl ii i: 5540 ewew optiplex lager hr darda xd ewew optiplex lager hr darda xd Translated 5540 : ewew optiplex optiplex lager lager ewew xd darda hr hr darda xd i: 5541 telefonanlage nebenstelle auf wild marfhtyio umprogramdntymieren Translated 5541 : reprogramdntymieren telephone system extension to wild marfhtyio i: 5542 password reset request Translated 5542 : password reset request i: 5543 erp gui has be installed Translated 5543 : erp gui has been installed i: 5544 had firewall warning and software stopped working i: 5545 outlook Translated 5545 : outlook i: 5546 hello my system is facing an issues while connecting engineering tool and engineering tool software below is the erro message engineering tool for engineering tool please support cugjzqlf djwbyact executive sales company india ltd mob mail i: 5547 probleme mit etiketten drucken laser we wu pfjwinbg ljtzbdqg Translated 5547 : problems with labels printing laser we wu pfjwinbg ljtzbdqg i: 5548 probleme mit etiketten drucken laser we wu pfjwinbg ljtzbdqg Translated 5548 : problems with labels printing laser we wu pfjwinbg ljtzbdqg i: 5549 setup new ws rechner instandsetzung qnigujek kopqcjdh Translated 5549 : setup new ws computer repair qnigujek kopqcjdh i: 5550 hello xd didn see my customers at webshop distributor tool also cann chose any salesorg xd have unlocked all my accounts and change the password but the problem remains xd i: 5551 hi team am experiencing some error in erp sid application firstly am not certain whether am accessing sid system or not have logged into netweaver in my system is this the correct application should be using please find attachment that can give glimpse of the error feel free to chat or email or phone call with me to understand more on this i: 5552 xd job hr toolmforrun failed in job scheduler at i: 5553 please reset users password to daypay i: 5554 install new optiplex as eagw fy company image i: 5555 erp sid account locked i: 5556 xd xd xd hi xd xd will you please help me to logon to erp xd xd it doesn want to accept my password xd xd think need to put in new password xd xd kind i: 5557 xd job job failed in job scheduler at i: 5558 hello gso team can you forward us the list of it team members grouped by their function example team members it function solution competrhyrncy support erp supply chain srinfhyath vijeghtyundra shwhdbthyuiethadri sanhjtyhru kurtyar windows server active directory security erp security non erp i: 5559 xd xd xd hi xd xd engineering drawing tool is not working in my system please give me solution in this issue xd xd i: 5560 xd xd xd dear it xd xd please help to check and post the outstanding miro entries company we have created and customer inwarehouse tools yesterday but the miro entries for interco ap have not been posted yet xd xd please help to post the entries immediately before today xd xd xd best i: 5561 unable to take print out from engineering drawing tool i: 5562 xd job hr payroll na failed in job scheduler at i: 5563 xd job job failed in job scheduler at i: 5564 xd job hr payroll na failed in job scheduler at i: 5565 xd job hr payroll na failed in job scheduler at i: 5566 mii uacyltoe hxgaycze from lacw step refresh page failed element span was not found since pm et on i: 5567 mii is not working error user authentication failed xd xd erp is working internet is working xd xd whole plant is not able to access the system i: 5568 cannot view the drawings attached to material in sid checked and the version of the nxd drawing is this material also exists in sid with the same value i: 5569 xd xd xd request assistance with our shop floor system all users are unable to log in an scan orders on the floor previous call was placed to open trouble ticket xd xd i: 5570 xd job job failed in job scheduler at i: 5571 not able to scan orders in the usa plant i: 5572 hello please unlock my password for erp and net weaver user id kimufghtyry i: 5573 configair server responds with internal server error in case of any other logon language then en and the model mill model is used the issue exists in erp erp system sid as well as on distributor tool company center production environment xd further error message text is error while trying to invoke the method java util list iterator of null object loaded from local variable locallist xd logon language en is ok if our csscdrill model is used all language seem to be working fine but once the user changes to any other language g de or it and uses the model mill model the configig air system responses with the error message during starting process of configair configurator i: 5574 hostname reporting engineering tooling production windows disk space utilization alert on free space less than and under gb free i: 5575 please install analysis for microsoft excel on xrqnyzhb oblghuyf and kvwrbfet jrhoqdix computer ashley employee number is vic lonn employee number is best i: 5576 xd job job failed in job scheduler at Translated 5576 : xd job job failed in job scheduler at i: 5577 ess site sales and markhtyeting tab missing Translated 5577 : ess site sales and markhtyeting tab missing i: 5578 interface fastethernet vlan lhqwxsf on company na usa usa switch cl access sw company com is down i: 5579 name todghtyud usa language browser microsoft internet explorer customer number telephone summary wifi not working stuck on yet no networks shown wont turn off ony mobile broadband works i: 5580 hello gso team please assign any critical warehouse tool tickets to network team after my office hours and inform them network ops team should be able to resolve the issues and if they need any support intern they will contact me with best i: 5581 unable to open outlook i: 5582 in the work center to do list production orders with crtd are showing up they should not please look at work center in plant xd stefdgthyo kahrthyeui and vinhytry discussed the hana model is not filtering this information out we need to add filter in mii i: 5583 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rakthyesh ramdntythanjesh hi danghtnuell fbhyeksq caexmols hello rakthyesh rakthyesh ramdntythanjesh i: 5584 the global telecom numbers that are not work are calls to these numbers get recording stating if you like to make call please hang up and try again i: 5585 need to configure printers Translated 5585 : need to configure printers i: 5586 ticket update on inplant i: 5587 time format needs to be changed to hours computer name awyw awyw plant awyw bnsh awyw awysinic connected to the user system using teamviewer contact connected to the pc using rdp added the user to the admin group restarted all the pc help the user change the time zone on all the pc issue resolved i: 5588 note from omufjcxr ahypftjx xd xd do you know if the data in the activity column of the work center efficiency report is accurate for it is showing very high efficiency then when check an order the cost isn very far off xd xd activity also looks strange in the report for the tipset work center it isn pulling the correct planned pieces everything in erp looks good when pull up the orders just the report seems to have bad data i: 5589 windows password reset for jogt harrhntyl i: 5590 xd job job failed in job scheduler at i: 5591 fax machine with phone number is not working and does not have dial tone i: 5592 i can find mti certificate tracking form on collaboration platform and need to make sure it wasn deleted i: 5593 please reset password to telephony software i: 5594 xd xd xd dear it help desk am unable to navigate out via internet explorer to places like collaboration platform or purchasing also skype will not open for me and can see other people availability on outlook or skype please help xd yes ve tried logging off and on and removing the battery xd no haven recently changed my homepage but yes did recently change my password using password management tool let me know of any questions i: 5595 unable to connect to knowledge center in commstorage product tab i: 5596 i have tried accessing several bookmarkhtys have within the iscl realm of collaboration platform looks like cannot access anything there other people from our team are having the same issues i: 5597 unable to upload file on collaboration platform i: 5598 domain account locked out i: 5599 xd xd xd hi xd receive the following error message when trying to log into the current ethics module might have to do with chaof primarily used mail to please check and correct i: 5600 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd rakthyesh ramdntythanjesh xd hi robhyertyj xd i: 5601 ticket update on ticket no Translated 5601 : ticket update on ticket no i: 5602 call from vitalyst ms crm dynamics issue contact i: 5603 trying to sign on to purchasing system but the website will not even load i: 5604 soflex dnc is not working unable to connect to datenbank server hostname should be restarted phone i: 5605 bad monitor lbdw near rob ripple i: 5606 bad monitor lbdw near braze line i: 5607 xd job job failed in job scheduler at i: 5608 my password is not working please reset my password username matghyuthdw i: 5609 bad monitor lbdw i: 5610 i am unable to connect to my printer and print things xd when try to print it says drivers need updated but if go to install the drivers get an error anyways i: 5611 unable to connect to vpn Translated 5611 : unable to connect to vpn i: 5612 i can log into bex via the web but it is asking for id and password would need access to usa plant usa plant usa plant i: 5613 erp sid account unlock and password reset i: 5614 hostname volume consumed on is more than i: 5615 consultant ycimqxdn wtubpdsz requires collaboration platform access the same as nkqafhod xbvghozp both users are from schneider downs xd xd please refer to inc submitted on and ticket ticket no xd xd this is needed as soon as possible as ycimqxdn wtubpdsz has started his engagement if he already has access please provide the credentials he should use for his license xd xd please contact me with any questions xd xd i: 5616 the hr tool portal for finance returns an error when trying to run reports i: 5617 byclpwmv esafrtbh is unable to login to ticketing tool i: 5618 problem with badge printer i: 5619 logging into mii supervisor dashbankrd results in error pop up internal server error user is member of mii operator and mii supervisor group in ad phone i: 5620 rechner ewew ewew neu erzeugen Translated 5620 : computer generate new ewew ewew i: 5621 vip printer not working xd xd driver update prompt Translated 5621 : vip printer not working xd xd driver update prompt i: 5622 issues with mic and screen shatryung on skype i: 5623 when connected to telekom mobile broadband the vpn does not work xd error page can not be displayed xd vpn works fine with wlan xd i: 5624 user mexkspfc nocpyxaz her old email address is no longer valid it has to stay valid autoforward it to her new one her old one is i: 5625 ebhsm volume consumed on is more than i: 5626 analysis for office is not working i: 5627 xd xd xd hi there xd xd cannot sign into skype and have an important meeting need to get on to this morning xd xd i: 5628 when try to call telephony software number of germany former germany location ex or we could not hear each others can her them they can hear me but we cannot communicate each others did uacyltoe hxgaycze with other locations ex france or uk and it works normally i: 5629 ughzilfm cfibdamq called to check if the account are active i: 5630 outlook not working freezing Translated 5630 : outlook not working freezing i: 5631 xd xd xd hi xd xd erp is running estorage productly slow am at the usa il reconditioning plant with today being the last day of the month it is imperative that we enter as many orders as possible can you please look at this xd xd i: 5632 no connection between the workstation and the server uxhq normal printing works unable to print labels xd xd works fine on win systems issue is only with xp systems xd xd printer wezeb it is barcode printer i: 5633 please review the attached document in order to view the error message can be reached on my cell at or my office i: 5634 pm hi matheywt rovfghesntine or me are unable to share the global recruiting team site with anyone please advise i: 5635 mm has an average customer net price vk ztfn for of per pc in the price was per pak why did the price switch from per pak to per pc would think that the price of this material should be per pak and per pc since it is pack of it is imperative that we fix this issue immediately as we have short time framdntye to fix the transfer price and avoid overpaying customs duties please advise i: 5636 cisco access point is not working xd mac address dbe i: 5637 could you please changes the license of the following employees from to luifdsts olhryhira cost center pam cordrtegd hlcrbuqa qznjshwm costarra vtdygauw wqxcrzhj santodde tlvwusmh dbwuyxoq santossdm ojtmnpxc klacwufr coutidfrc cesarrogerio coutinho santosdfd delsonpereira santrtos santoes kgyboafv tlzsrvgw serravdsa vagnerlrtopes eeserra i: 5638 phone when open up erp analysis for microsoft excel get error the error shows following message the launcher is exited with error see log file for more detail the analysis add in is not registered correctly i: 5639 issues with company ebusiness mailbox i: 5640 xd xd xd good morning xd am unable to run any reports in hr tool today it worked fine yesterday xd xd please advise xd i: 5641 skype personal certificate issue Translated 5641 : skype personal certificate issue i: 5642 hello team m writing to you as request to change the date for couple of citrix users from eastern time usandcanada to eet eastern european time users for which the date should be changed from eastern time usandcanada to eet eastern european time vrtvpopc vvrnrtacri vvrtgffada vvrurtgsur vvrtyjakaa vvrtymitrd vvdeftmea vvbgrtyeleb vvcodgtjud vvggrthhibg could you please be so kind to perform the changes and let us know is additional information is required from our side i: 5643 no audio during meetings also mic doesn work i: 5644 missing folder in outlook i: 5645 unable to get the skype add in i: 5646 hello xd xd please see attached document and mail with mynfoicj riuvxdas xd when we print out the certificate via vln still the company logo is on the document xd xd we got repeat trouble with custom deliveries are stopped etc xd xd i: 5647 ticket update on inc from dslamtcb ezbmonjr i: 5648 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5649 printer co is not printing server hostname error update driver contact i: 5650 unable to launch outlook i: 5651 query from qdapolnv jlcavxgi Translated 5651 : query from qdapolnv jlcavxgi i: 5652 favor verificar lentid da minha quina est fora do normal mesmo sendo final de s Translated 5652 : Please check the slowness of my corner is out of the normal even though it is late s i: 5653 xd xd xd team xd xd please find basis weekend weekday night on call schedule and shift schedule as per attachment this excel is in the below location in the collaboration platform you can save the below link so that you can use this link to find on call shift persons and will keep updating the excel with the details as and when required xd xd xd xd i: 5654 please provide full access to hostname rtr kcompany i: 5655 unable to connect to vpn Translated 5655 : unable to connect to vpn i: 5656 hello venkbghksh no login id sv is locked pl arrange to unlock the same immediately pghjkanijkraj s i: 5657 i cannot access company collaboration platform to sign into hr tool i: 5658 xd xd xd hello xd during to start netweaver system require net framdntywork xd could you please add that on my pc xd xd xd xd xd mit freundlichen grugermany with best i: 5659 mobile device activation Translated 5659 : mobile device activation i: 5660 xd xd xd we ve raised afe for new spindle uacyltoe hxgayczerig wherein this cpu and monitors are to be installed we are sending the same to you for necessary installation of programdntymes like windows operating system xd request you to do the same by tomorrow xd best i: 5661 dear it team xd my colleague cannot send herself pdf out of erp via zz mails xd the problem already exists since some days xd she already looged off an on from erp and windows but it stil does not work xd can you please have look xd i: 5662 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model ex hq wy hp hr plus hr xd xd detailed description of the problem am receiving an error message window box that states install driver when click to install it appears that it is working however then get another message that states the document could not be printed xd xd type of documents not printing email excel word etc all xd inwarehouse tool delivery note production order etc xd xd what system or application being used at time of the problem ex windows erp kls xd xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed xd xd if erp system which system ex sid sid hrp plm xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 5663 please help unlock the accounts of the following employees they are currently unable to log into mii and record production value add keghn zanegtyla clock pfxwuvce hcbmiqdp clock i: 5664 xd xd xd hallo it team xd xd wie verbinde ich mich zu meinen netzlaufwerk apptc xd der zugang ist seit gestern weg xd xd danke und gru xd ybhazlqp zfghsxiw xd xd xd xd Translated 5664 : xd xd xd hello it team xd xd how do I connect to my network drive apptc xd the access is gone since yesterday xd xd thanks and gru xd ybhazlqp zfghsxiw xd xd xd xd i: 5665 sales organisation address phone number and fax number need to be reversed to original phone fax number from rth xd plant address plant phone fax numbers need to be adjusted to show germany central phone numbers fax xd company code address of need to be reverted back address is in rth not in germany xd xd details are attached to the ticket i: 5666 setup outlook wareneingang vzqomdgt jwoqbuml Translated 5666 : setup outlook wareneingang vzqomdgt jwoqbuml i: 5667 outlook not accepting password outlook i: 5668 rar file query Translated 5668 : rar file query i: 5669 ad password reset Translated 5669 : ad password reset i: 5670 user ripfghscp has accidently added one customer to her personal value list now the customer shows up in every sales document as default not allowing to search for different customers please check and provide short tutorial how to solve this problem daily work is heavily influenced i: 5671 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5672 edit user hangs forever in the user admin management screen and unable to submit the user assignments i: 5673 the i: 5674 xd xd xd pl provided access to folder with all rights hostname mtdesign company machine manuals file hostname mtdesign company machine manuals xd xd with best i: 5675 xd xd xd dear sir xd my system is cant able remote access so me look into that awyw xd xd with i: 5676 xd xd xd kindly provide the solid work viewer in wrench engineering tool to my computer xd comp name awyw xd xd i: 5677 call from third party to talk to it head to present themselves i: 5678 help desk please provide the windows user id to below user user id gbytu name bfghabu i: 5679 wifi is not working Translated 5679 : wifi is not working i: 5680 windows account locked i: 5681 contact phone or can not access to skpye for business user name or password wrong i: 5682 reaktivieren alte laptop hr mghllenbecfnfk bctypmjw cbhnxafz Translated 5682 : reaktivieren alte laptop hr mghllenbecfnfk bctypmjw cbhnxafz i: 5683 xd job job failed in job scheduler at Translated 5683 : xd job job failed in job scheduler at i: 5684 xd xd xd hello xd xd please look in to the below screenshot and help to resolve the issue xd xd xd xd i: 5685 reinstall office bctypmjw cbhnxafz i: 5686 probleme mit eu tool we wu xaqzisrk ahbgjrqz Translated 5686 : probleme mit EU tool mus Wu xaqzisrk ahbgjrqz i: 5687 this is last call meeting that was set up by fhtyulvio and all of them have to participate if you are not able to do it and maybe it is even easier then please remove any abandon that take place during these mins i: 5688 xd xd xd good day xd xd please assist xd xd please can you check when who was the last login was on company laptop ekpl xd xd i: 5689 xd xd xd dear sir mam xd xd kindly refer the below screenshot my engineering tool is not opening and showing the below error xd request you to resolve the issue immediately xd xd xd best i: 5690 xd xd xd hello xd xd settings in erp sid system of printing inwarehouse tool g are wrong plant to plant shipments xd xd please change setting to printer jc due to no requirement to continue printing these paper in rth protect the planet xd xd many i: 5691 please change password and pin for the eu tool i: 5692 xd xd xd hello it xd xd please help check the issue below there are pcs stock under plant but in code zmeo there is stock so can run the dn i: 5693 xd xd xd hello xd xd am not able to log on to above network with me windows login credentials xd xd xd please check and resolve as my work is getting hampered xd xd xd i: 5694 hello am owner of the common mailbox company have created new folder xxxxx under the folder inbox for uacyltoe hxgayczeing all other members of this shared mailbox can not see the folder xxxxx and can not delete it anymore can click on delete folder and get no error message but the folder is still there also other members have created folders under the folder inbox g soedjitv wvprteja scherfgpd has created the folder uacyltoe hxgaycze the folder uacyltoe hxgaycze is only visible for her also for me as the owner the folder is not visible something is wrong with this mailbox could you please check i: 5695 dear it team xd xd checked this morning vfx unfortunately there are still entries where do not know what to do xd can you please check xd inwarehouse tool pricing error xd inwarehouse tools and completed the foreign trade data but the error is still coming xd xd as we have months end we need to fix this today xd xd i: 5696 hello team erp office tuqrvowp fxmzkvqo human resources i: 5697 xd xd xd hello xd xd am puxiomgy ndjorwab from india branch xd am facing issue of wi fi network disconnecting every mins when seated at floor admin building xd request you to arrange to resolve at the earliest xd xd i: 5698 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5699 mii password reset and unlock account i: 5700 unable to login to erp Translated 5700 : unable to login to erp i: 5701 please process the billing accounting in erp i: 5702 xd xd xd dear sir xd xd have received new system but there is no data card along with that xd kindly arrange to send me data card xd xd best i: 5703 xd xd xd dear sir xd xd had received new system last week there was no engineering tool downloaded engineering tool but unable to see my old uploaded reports kindly resolve xd xd best i: 5704 xd xd xd dear it team xd xd found that dn number has not been shown on assignment field for edi posting transaction as below what is the changes or error on this please confirm xd we need to use dn number to do intercompany reconciliation on the month end process xd xd xd xd xd best i: 5705 kindly replace the mouse as it is not working i: 5706 windows account locked i: 5707 vpn xd Translated 5707 : vpn xd i: 5708 erp sid account locked i: 5709 xd xd xd help desk xd xd following issue is faced when was trying to login in sid erp uacyltoe hxgaycze please go through below screen shot and do the needful xd xd xd since used this system long back would like to request you to do password reset please do the needful at the earliest xd xd i: 5710 windows password reset i: 5711 erp sid account locked i: 5712 job name job failed in job scheduler Translated 5712 : job name job failed in job scheduler i: 5713 mii password reset and unlock account i: 5714 xd job job failed in job scheduler at i: 5715 xd job sid filesys failed in job scheduler at i: 5716 when create recurring appointment in mds get an error record is unavailable this occurred in uacyltoe hxgaycze see attachment xd i: 5717 i paid to vendor in but don clear this vendor in code erp show no open items were found but it has item in code fbln i: 5718 name callie pollaurid language browser microsoft internet explorer customer number telephone summary my outlook and skype does not work when am at home it only works in the office i: 5719 skype Translated 5719 : skype i: 5720 system not responding Translated 5720 : system not responding i: 5721 xd xd xd hello xd xd m putting up this it ticket on behalf of nzuofeam exszgtwd whose notebook cannot boot up due to hardware failure xd xd please assist immediately i: 5722 multiple display not working i: 5723 erp account unlock Translated 5723 : erp account unlock i: 5724 tablet not booting i: 5725 name etlfrucw ziewxqof language browser microsoft internet explorer customer number telephone summary log in permissions not working need to change password also please call me ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rakthyesh ramdntythanjesh hi dartvis i: 5726 outlook ppt Translated 5726 : outlook ppt i: 5727 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5728 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5729 login to mii issue Translated 5729 : login to mii issue i: 5730 xd xd xd just received replacement of my company supplied phone have set it up but need for it to be given access to my email contacts and calendar if this is not the right place to make this request please let me know i: 5731 my expense report will not submit to my manager it only saves please submit this has happened on all my expense reports michjnfyele jenhntyns plant manager i: 5732 nwfodmhc exurcwkm xd am xd naruedlk mpvhakdq xd jywvemun qngschtz weszfyok fbadnjhu xd re wg br reporting juni und juli zahlen r zeitkonten und urlaubsst nde fehlen xd xd hi simfghon xd xd kindly note that there are multiple folders under eagcldaten teams br reporting xd xd please mention which specific folder access has to be given xd xd i: 5733 password reset for xhaomnjl ctusaqpr Translated 5733 : password reset for xhaomnjl ctusaqpr i: 5734 password reset request Translated 5734 : password reset request i: 5735 ticket update on inplant i: 5736 can add note to an account on the mobile wanted to be able to demonstrate this in meeting tomorrow but this error is blocking the ability to add note i: 5737 they reversed the intercompany shipment but the intercompany inwarehouse tool did not reverse ran the billing document tables and do not see the reversal there either xd see attached email i: 5738 unable to print from dv i: 5739 account unlock i: 5740 mikhghytr wafglhdrhjop sr manager global ethics and compliance programdntys i: 5741 login script pop up query Translated 5741 : login script pop up query i: 5742 ticket update on inplant i: 5743 xd job job failed in job scheduler at i: 5744 install project for petrhyr i: 5745 vip printer setup Translated 5745 : vip printer setup i: 5746 erp sid account locked i: 5747 outlook not connected to server and having queries on connecting to external monitors i: 5748 name kaguhxwo uoyipxqg language browser microsoft internet explorer customer number telephone summary printer new driver update needed i: 5749 hello changed my passwords and tried to log onto engineering tool and it says too many failed attempted see attached screenshot stefyty hunt prototype tech product engineering i: 5750 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd rakthyesh ramdntythanjesh xd hi robhyertyj xd i: 5751 please complete all required questions below xd if not it will be returned back to the gsc requester to provide required information xd xd gsc to review ticket if not able to resolve then please assign to appropriate group per your printer problem assignment flowchart xd xd printer name make model all printers even local xd xd detailed description of the problem windows needs to download and install software driver from the hostname computer to print to cl same message for all printers xd xd type of documents not printing email excel word etc xd inwarehouse tool delivery note production order etc all documents will not print from any source xd xd what system or application being used at time of the problem outlook excel erp all of them xd if not printing at all does it respond to ping command on the network and has power cycle of the printer been completed shutdown computer and printer same error message xd xd if erp system which system ex sid sid hrp plm all xd xd if it an erp printer problem can the erp output be rerouted to another erp printer temporarily xd what printer can it be rerouted too xd xd if document is not printing correctly please scan copy of the document and attach to the ticketing tool ticket i: 5752 office activation on corporate phone i: 5753 request to reset microsoft online services password for i: 5754 delete print jobs on prtqc Translated 5754 : delete print jobs on prtqc i: 5755 name mikhghytr language browser microsoft internet explorer customer number telephone summary changed my password and now cant sign into skype i: 5756 eror message on refreshing the bex analysis error atached phone i: 5757 hr tool queries for former employee hanghdyle i: 5758 xd xd xd hi xd xd this is approved xd xd i: 5759 ticket update for inplant i: 5760 xd xd xd hello need to request week temporary access to in erp sid to correct duplicate payments in erp i: 5761 problem with erp not updating orders after getting picked through warehouse tool i: 5762 ticket update for inplant i: 5763 outlook not launching xd connected to the user system using teamviewer xd reconfigured the mscrm xd caller confirmed that he is now able to see the emails on outlook xd issue resolved i: 5764 ticket update regarding ticket no from tqvpohwj tbkywpqz i: 5765 need to map add network printer i: 5766 jerghjemiah brock your windows password is expiring soon need assistance resetting my password i: 5767 unable to send email to hrscc team from external email address i: 5768 all permissions for discounts has been removed for znq zno znr zns need to be restored for the whole mti team i: 5769 unable to launch erp logon balancing error Translated 5769 : unable to launch erp logon balancing error i: 5770 ticket update on ticket no Translated 5770 : ticket update on ticket no i: 5771 ugyothfz ugrmkdhx pm zkevitua nesbfirjeerabhadrappa hnynhsth jsuyhwssad rjtnlocs fclswxkz tanrgty hello aghynil request your assistance in identifying the source user who processed the deletion of the terminated user in subject let me know if you need sn ticket to be created i: 5772 hostname volume consumed on disk is more than i: 5773 email delegation Translated 5773 : email delegation i: 5774 rqxmaindept ad account keeps getting locked please unlock i: 5775 summary unable to log into skype after password change yesterday i: 5776 unable to connect to vpn Translated 5776 : unable to connect to vpn i: 5777 outlook issue Translated 5777 : outlook issue i: 5778 konto scghhnell reaktivieren laptop ewel Translated 5778 : konto scghhnell reaktivieren laptop ewel i: 5779 xd xd xd it xd mhtyike szumyhtulas is receiving the attached emails xd these employees do not report to him please advise why he is receiving these xd i: 5780 need to configure printer Translated 5780 : need to configure printer i: 5781 erp sid password reset Translated 5781 : erp sid password reset i: 5782 erp sid password reset Translated 5782 : erp sid password reset i: 5783 wifi guest account i: 5784 unable to boot laptop i: 5785 erp sid password reset done confirmed with user i: 5786 xd job job failed in job scheduler at i: 5787 need to setup exchange on corporate iphone i: 5788 erp sid password reset done confirmed with user i: 5789 inc ticket update i: 5790 unable to launch engineering tool i: 5791 hello rubiargty need access same as karghyuen best i: 5792 as imagens o alteramdnty quando solicitadas dificultando assim cota de ferramdntyentas especiais Translated 5792 : the images altermdnty when requested thus making it difficult to quota special tools i: 5793 mapping network Translated 5793 : network mapping i: 5794 qohfjpna exphkims palghjmal is not able to run softland client through citrix it shows an error when loading the application xd please see attached error have uacyltoe hxgayczeed from other pc and got same problem i: 5795 install shop floor app on my machine i: 5796 outlook cache email query Translated 5796 : outlook cache email query i: 5797 cphlme xd Translated 5797 : cphlme xd i: 5798 hello cathytyma update the position title as per request regarding access please provide copy access person name i: 5799 xd xd xd hello xd xd m still waiting for problem resolve please advise who approval you still need or when can have access xd xd i: 5800 whenever open an email with jpg attachement always get security warning i: 5801 all of the presentations posted for drive this week are not appearing on the approval page tomashtgd mchectg likes to use the approval page to navigate around the presentations so m sure he will notice it is not working correctly xd xd see attached file for details and urls i: 5802 i can not print it is asking me to install print driver xd xd can not print it is asking me to install print driver xd did with nothing happened i: 5803 the i: 5804 my lauacyltoe hxgaycze salary statement was on am continuing to get paychecks just unable to see salary statement in erp have been going through the hub xd xd i: 5805 could you please reset my password uyrpdvoq mbzevtcx sales manager earthworks european served area north company infrastructure gmbh gesch ftsf hrer phvkowml azbtkqwx und naruedlk mpvhakdq www company com i: 5806 ess access for user ghaltiek lsuepvyx please find error message attached phone i: 5807 user id dalgtylam place in quarantine xd xd we are seeing your company european asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from edml to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at full escalation for windows login failure alerts explicit notification via high priority ticket and phone call automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal i: 5808 printer driver update Translated 5808 : printer driver update i: 5809 erp training queries Translated 5809 : erp training queries i: 5810 dear help desk my office always gives me blank page see below for screen shot please help jdamieul fandyhgg phd us senior staff engineer i: 5811 user zhengdr placed in palo virus quarantine xd xd incident overview xd xd we are seeing your att apac asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from aenl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal i: 5812 printer configuration Translated 5812 : printer configuration i: 5813 erp sid password reset done confirmed with user i: 5814 xd job job failed in job scheduler at i: 5815 logon error in erp sid Translated 5815 : logon error in erp sid i: 5816 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5817 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5818 xd xd xd please add user vvkatts to ticketing tool erp finance group xd xd let me know if you have any questions xd xd xd i: 5819 outlook not loading Translated 5819 : outlook not loading i: 5820 when trying to enter the expense reporting tab to create new expense report window pops up and says critical runtime error and can access the expense reporting page other aspects of my expense reporting page in employee self service don work as well i: 5821 windows printing issues need driver installed on every printer but it does not complete successfully xd print server hostname i: 5822 hostname volume comsumed on dev hd is more than i: 5823 erp sid password reset Translated 5823 : erp sid password reset i: 5824 emails are not working i: 5825 impact award password reset i: 5826 password reset request Translated 5826 : password reset request i: 5827 password reset through password management tool password manager i: 5828 ad account lock out i: 5829 account locked out in ad i: 5830 xd xd xd hello all xd how are you xd xd telephony software please can you reset and release my password xd xd sinc res salutations best i: 5831 after change the password using password management tool outlook not work we ve deleted the profiles and reconfigured outlook again but is asking the password continuously user bhqvklgc vscdzjhg mail user id marrthyu computer name ekbl i: 5832 ad account locked out i: 5833 outlook fails to open i: 5834 circuit outage company eu gbr united kingdom dmvpn rtr lookup located at united kingdom went down at am et on i: 5835 hostname erpstartsrv exe service is down i: 5836 erp sid password reset and unlock account request i: 5837 xd xd xd hello xd xd could you please provide me new password for bex xd xd i: 5838 xd xd xd hello xd xd during my holidays my password expires and couldn change this xd i: 5839 xd job hostname fail vig uacyltoe hxgaycze failed in job scheduler at i: 5840 erp printers ng and ng are printing on both sides erp documents needs to be changed to single side printing xd users xd mxwibrtg qbsmonwv xd cwfzldts dlmukhyn xd uxpytsdk kyamilds xd xd i: 5841 erp sid account unlock i: 5842 setup new ws strahlraum xaqzisrk ahbgjrqz Translated 5842 : setup new ws beam space xaqzisrk ahbgjrqz i: 5843 setup new ws strahlraum ujtmipzv cwdzunxs Translated 5843 : setup new ws strahlraum ujtmipzv cwdzunxs i: 5844 setup new ws strahlraum fyedqgzt jdqvuhlr i: 5845 error no number range number has been recorded for billing document xxx xd xd inwarehouse tools all sales org xd xd xd xd xd xd i: 5846 der drucker druckt nicht hp rfvmeyho qgtxjsdc Translated 5846 : the printer does not print hp rfvmeyho qgtxjsdc i: 5847 setup new ws rechner alte schmiede nfayqjhg kyswcpei Translated 5847 : setup new ws computer old forge nfayqjhg kyswcpei i: 5848 the i: 5849 xd xd xd hi it team xd xd kindly please assist as we unable to print company label xd no error message prompted nothing print out from zebra label printer i: 5850 windows account locked i: 5851 please provide details of the issue xd skype i: 5852 name shathyra language browser microsoft internet explorer customer number telephone summary please reset password erp sid production user grargtzzt i: 5853 label printer network lost i: 5854 iphone skype Translated 5854 : iphone skype i: 5855 vpn Translated 5855 : vpn i: 5856 see attached screenshot i: 5857 xd xd xd hallo xd xd weil unser erp drucker rn defekt ist nutzen wir bergangsweise den rn xd rden sie bitte deshalb alle disponenten im werk plant die momentan dem rn zugordnet sind auf rn ndern xd xd xd xd mit freundlichen gr en kind Translated 5857 : xd xd xd hello xd xd because our erp printer rn is defective, we are temporarily using the rn xd, so please plan all the dispatchers in the plant who are currently assigned to the rn to change xd xd xd xd with the best of yours i: 5858 xd job hostname fail failed in job scheduler at i: 5859 xd xd xd hello xd am receiving some mails from is that spam mail if not why am receiving this mails please provide the details xd xd xd best i: 5860 xd job bkwin hostname inc failed in job scheduler at i: 5861 kann anmeldetaten eingeben aber fenster kommt immer wieder anmeldung gelingt nicht xd heute nochmal passwort ge ndert gleiches problem xd kann outlook nicht nutzen und keine mails bearbeiten xd xd xd xd xd Translated 5861 : I can enter login data but the window keeps coming back login does not work xd changed password again today same problem xd cannot use outlook and cannot process mails xd xd xd xd xd i: 5862 unable to login to shop floor system xd xd error authentication failed i: 5863 xd job pp eu tool netch ap failed in job scheduler at i: 5864 account locked in erp sid i: 5865 i not able to login to skype communicator Translated 5865 : i not able to login to skype communicator i: 5866 name nthryitin language browser netscape customer number telephone summary please help me to set up skype conference calling feature on my company smart phone phone i: 5867 engineering tool quick search is not working it taking too much time to load the data please sort out the issue aerp i: 5868 the hostname connection lost at am the connection has been going on minutes could you check the reason i: 5869 unable to open engineering tool all user in india plant people no error message contact no i: 5870 erp sid account locked i: 5871 xd job job failed in job scheduler at i: 5872 xd job job failed in job scheduler at Translated 5872 : xd job job failed in job scheduler at i: 5873 xd job pp eu tool netch keheu failed in job scheduler at i: 5874 laptop Translated 5874 : laptop i: 5875 ana pethrywrs call conference to hr support i: 5876 xd xd xd hello xd xd wireless companysecure outage of taiwan xd please help xd xd i: 5877 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rakthyesh ramdntythanjesh hi vhihrty sndaofyw jetcxpda hello rakthyesh ramdntythanjesh i: 5878 xd job bk hana sid os dly dp failed in job scheduler at i: 5879 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd agent did not answer reassigning your interaction to another agent xd interaction alerting agent xd website visitor has joined the conversation xd rakthyesh ramdntythanjesh xd hi shaungtyr xd gwptzvxm rhozsfty xd hi xd rakthyesh ramdntythanjesh xd i: 5880 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd upcgxthj lnsvemxy xd hi cant send emails xd rakthyesh ramdntythanjesh xd hi johthryu xd i: 5881 xd job bk hana sid erp wky dp failed in job scheduler at i: 5882 s to license i: 5883 guest wifi access for lefrte eafrtkin i: 5884 unable to hear any audio from bluetooth headset through skype call i: 5885 pc restarting randomly appears to be possble os issue and or virus i: 5886 ticket update on inplant i: 5887 good afternoon field sales terminated employees doug bise and lance kappel returned their company computer and phone to me at the usx office they are sitting in boxes next to my desk please arrange to pick them up or let me know how to return them owhuxbnf sxbgyrou phr hr manager infrastructure i: 5888 i was receiving job hra every morning up through and including see attached did not receive report on nor today today co worker advised that report hr is now being issued hr is needed to maintain usage of the purchasing contract management system not sure why was not added to the new job when it replaced hra it was suggested open this ticket to get on the distribution list for job hr xd i: 5889 user wants to update passwords using password manager link i: 5890 ticket update on inplant i: 5891 ticket update on inplant i: 5892 unable to connect to vpn Translated 5892 : unable to connect to vpn i: 5893 map network drives Translated 5893 : map network drives i: 5894 outlook freezes when trying to open new email templet i: 5895 printer driver installation Translated 5895 : printer driver installation i: 5896 name tmyeqika hfudpeot language browser microsoft internet explorer customer number telephone summary msc not communicating with erp i: 5897 unable to login to collaboration platform site from home i: 5898 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 5899 orders picking confirmed in msc are not confirming as picked in erp all orders are showing on erp as not confirmed yet i: 5900 please activate maintenance employee vdklzxqg jpaftdul email address he is part of the maintenance group and will need email communications if be of further assistance please feel free to contact me at any time wvngzrca sfmrzdth phr human resources manager i: 5901 ad password reset Translated 5901 : ad password reset i: 5902 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5903 unable to open outlook after changing the password i: 5904 outlook not working Translated 5904 : outlook not working i: 5905 unable to open ess page from home pc win i: 5906 tried entering into hr tool site but cannot enter because of email address it did not change but windows version upgrade from to i: 5907 xszoedmc gmhkdsnw hr tool etime blank screen comes up when trying to access screen shot attached i: 5908 blank call gso i: 5909 unable to open engineering engineering tools from online files which were zipped i: 5910 when trying to create an expense report in ess get the following error infortype for does not exist for pers no ve unlocked my personnel number and nothing changes i: 5911 caller wanted to speak to email server admin as one of his email his company email is blocked by company xd helped user with it email address company com and asked to send email with screenshot i: 5912 xd xd xd hello xd would like to put ribbon on the bottom of some my mail with the attached information who can go to for help xd would like to make an extra signature with my name below and then add the information between my mail address and company address xd xd xd best i: 5913 blank call did not receive any response from other side i: 5914 office is not licensed i: 5915 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5916 need to map printer i: 5917 grund mit neueinstellung outlock geht vieles nicht mehr mit freundlichen gr ssen uwe schr ck technische beratung und verkauf company deutschland gmbh gesch ftsf hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq sitz der gesellschaft germany hgermany registergerirtcht bad homburg hgermany hrb diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 5917 : Reason with new hiring outlock, a lot of things are no longer possible. Yours sincerely, uwe schr ck technical advice and sales company deutschland gmbh managing director rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq registered office of the company germany hgermany registergerirtcht bad homburg hgermany the only use is and this information is only used by hrb Determined by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if this communication is due to a you accidentally received it then please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 5918 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue kundegty xd xd transaction code the user needs or was working with xd xd describe the issue id got locked please release xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 5919 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5920 please deactivate userid kroetzer in engineering tool database Translated 5920 : please deactivate userid kroetzer in engineering tool database i: 5921 proygkjt mwetuhqf pm nwfodmhc exurcwkm ifblxjmc dyrgfwbm callie pollaurid re expense report has been submitted jeffrghryeytyf strigtyet submitted his expenses below but it did not show up as task for me to approve in the ess portal ve approved three other employees two before jeffrghryey submitted his and one after please identify why jeffrghryey expense submittal did not show up in my system to approve received the workflow email that he did submit original message workflow system mail pm proygkjt mwetuhqf expense report has been submitted the following expense report has been submitted for your approval personnel no jeffrghryeyrghryey strgrtyiet expense report no start date end date total costs usd reimbursement amount usd to review this expense report in full please log into your universal worklist on manager self service i: 5922 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5923 zdsxmcwu thdjzolwronization issue i: 5924 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5925 outlook crashing msd crm outlook issue i: 5926 user called in for an issue where his outlook was freezing frequently i: 5927 add im mfg planner reference to the miiadmin erp sid and sid ids this is needed so the system will automatically backflush and close the production order i: 5928 hi need access to sid could you please help me saludos jorghge ramdntyfon abrurto tsantamaria supervisor credit and ar finance i: 5929 name phil schoenfeld language browser microsoft internet explorer customer number telephone summary can not open outlook and can not sign into skype for business i: 5930 unable to log in to mii Translated 5930 : unable to log in to mii i: 5931 xd xd xd could please have new keybankrd my letters are worn off the one have xd xd xd i: 5932 nicrhty pfgyhtu vice president indirect sales industrial business segment i: 5933 account unlock i: 5934 name erirtc language browser microsoft internet explorer email dabhruji customer number telephone summary hi erirtc wifi access for the following is not working dtbycsgf vfdglqnp saztolpx xqgovpik i: 5935 xd job sid uacyltoe hxgaycze failed in job scheduler at i: 5936 outlook freezes i: 5937 aorthyme rnsuipbk pm badgknqs xwelumfz company iphone hi pollaurid this is regarding your mobile phone that needs to changed please call vendor at this number this should be the best choice to get the issue fixed i: 5938 account information updated from uperform spam queries i: 5939 unable to load crm add in on outlook i: 5940 account information updated from uperform spam queries i: 5941 mobile device activation company device i: 5942 send function is not working outlook i: 5943 outlook is not working Translated 5943 : outlook is not working i: 5944 password reset request by ughzilfm cfibdamq i: 5945 von gogtyekhan merdivan gesendet montag an ughzilfm cfibdamq betreff accounts erstellen bitte hallo bitte accounts erstellen r mitarbeiter ujtmipzv cwdzunxs xaqzisrk ahbgjrqz fyedqgzt jdqvuhlr diese mitarbeiter haben noch kein anmeldeaccount mit freundlichen gr en eng qidgvtwa qvbutayx leitung strahlen supervisor blasting gesch ftsf hrer managing directors phvkowml azbtkqwx naruedlk mpvhakdq sitz registered office germany registergerirtcht listed in the court register pers nlich haftende gesellschafterin general partner company company beteiligungs gmbh sitz registered office rth bay registergerirtcht listed in the court regster diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung select the following link to view the disclaimer in an alternate language Translated 5945 : sent by gogtyekhan merdivan to ughzilfm cfibdamq on monday to create accounts please hello please create accounts r employee ujtmipzv cwdzunxs xaqzisrk ahbgjrqz fyedqgzt jdqvuhlr these employees have no registration account yet registered office Germany registered office listed in the court register personally liable partner general partner company company Beteiligungs gmbh registered office rth bay registered registered office registered in the court regster The distribution or reproduction of this communication by persons who are not the intended recipients is strictly confidential or exempt from disclosure under applicable law g prohibited if you received this message due to a mistake then please notify the sender and send this message select the following link to view the disclaimer in an alternate language i: 5946 need the bex analysis add in i: 5947 unable to launch outlook i: 5948 unable to connect to vpn Translated 5948 : unable to connect to vpn i: 5949 xd xd xd dear it xd tried to join sandop forecasting training session today but could not see the presenter screen below is the link the training has been rescheduled for this coming is there anything can check before to insure don have this problem again xd i: 5950 adding members to the shared mailbox group i: 5951 unable to login to prtgghjk and sid systems i: 5952 account unlock i: 5953 wifi not working Translated 5953 : wifi not working i: 5954 need initial password reset for erp prtgghjk hr tool module i: 5955 unable to login to erp sid Translated 5955 : unable to login to erp sid i: 5956 laptop will not turn on either docked or un docked while connected to ac or just on battery i: 5957 once external monitor is not working and the other is flickering i: 5958 erp sid password reset Translated 5958 : erp sid password reset i: 5959 folgender fehler ist bei der erstellung der zeitnachweise aufgetreten siehe anhang alle ferienarbeiter bzw randstad mitarbeiter sind nur bis einschlie lich donnerstag den im system Translated 5959 : The following error occurred when creating the time sheets see appendix all holiday workers or randstad employees are only in the system up to and including Thursday i: 5960 outlook hangs Translated 5960 : outlook hangs i: 5961 users in usa plant code plant northgate are unable to see companyguest network this is on phone as well as laptop phone i: 5962 dmitazhw kxbifzoh lock out xd mii system Translated 5962 : dmitazhw kxbifzoh lock out xd mii system i: 5963 ticket update on inplant i: 5964 we don able to insert money value in crm authorization return i: 5965 unable to connect to vpn Translated 5965 : unable to connect to vpn i: 5966 summary need help gaining access to query in sid can get into sid can get into be analyzer can find the query name am looking for csr quote count but when try to open it get error message that reads critical programdnty error has occurred the programdnty will now terminate need access this week for training that have scheduled i: 5967 login help to hub i: 5968 please remove security role comp sales rep from user matghyuthdw dthyan matheywtyuews action needs to be taken immediately as it causing security breach please assign ticket to sudghhahjkkar reddy i: 5969 reset the password for btelgpcx nrlfhbmu on erp production erp i: 5970 search serverrfcserver xd search serverindexserver xd search servernameserver xd trx erpsid trx i: 5971 new password not updating in the windows i: 5972 system frozen on startup Translated 5972 : system frozen on startup i: 5973 unable to view hr tool global view and crm on collaboration platform i: 5974 hello team just to inform that skype is not working from my pc yzugpdco nsyapewg director sales company europe i: 5975 hello team please arrange the hdmi cable to all the meeting room to connect the projector since most of the new laptop are hdmi dependent where we are unable to connect via the current cable and we always depend it sometime it might be onsite in that case it very difficult inxsupmy zhwmifvx team lead ssl sourcing and logistics i: 5976 hello please usa access to the eu vpn for user xfuqovkd efsdciut seefgrtybum and atydjkwl sotmfcga vvrtgwildj i: 5977 xd job job failed in job scheduler at Translated 5977 : xd job job failed in job scheduler at i: 5978 unable to open opportunities in crm online user was able to do it week back but now its showing access is denied i: 5979 password reset password management tool password manager Translated 5979 : password reset password management tool password manager i: 5980 hallo ruchitgrr hallo frau haug leider enth lt dieser report nur meine tsk positionen entsprechend der beschreibung sollte mein gesamtes verkaufsgebiet alle ad abgebildet sein gru anivdcor rbmfhiox sales manager sales germany company deutschland gmbh urspr ngliche nachricht von mail gesendet montag an anivdcor rbmfhiox betreff open order schedule lines hello this report is your weekly open order schedule lines report it lists all scheduled delivery dates for open orders for your customers it is expected that you will use this report to effectively manage your sales territory if you have any questions with regard to the report please contact your regional sales operational excellence lead how to read this report all scheduled order items are listed on the report the columns with the purple field names show total values for that line on the order and should not be added together these total values will appear on every scheduled line in the example below line item has total quantity ordered pieces and three scheduled deliveries of and pieces the report will repeat the total quantity ordered on every schedule line order nbr item nbr create date qty sched value sched date sched unit price qty order blue blue blue blue blue blue blue purple please do not reply directly to the sender of this mail i: 5981 hello since this morning outlook is updating my inbox see image of message bad thing it is sucking out my bandwidth and slow my connection also when went in pasue for lunch it was at gb left after returned it started again from gb xfdkwusj gyklresa sales manager earthworks european served area south please note our new telephone number and company address effective company infrastructure gmbh gesch ftsf hrer phvkowml azbtkqwx und naruedlk mpvhakdq i: 5982 ad locked out i: 5983 user wants to log in to infonet i: 5984 when try to connect with netweaver these messages appears xd access way not found xd this don treat properties of register library i: 5985 when accessing dashbankrd created for ap management team on mobile app the above error code is encountered see attached screenshots i: 5986 hi team please check the router wifi sao pollaurido mercedes ap the site company south amerirtca o pollaurido o bernardo campo no is possible connect network wifi companysecure this network no is visible to users local if you need connect remotely or has more doubts please return me i: 5987 account locked in ad i: 5988 xd job bkwin hostname inc failed in job scheduler at i: 5989 hi please unlock the password for userid venkthrysh the laptop is locked due to entering wrong password i: 5990 bitte die letzten umfangsschleifmaschinen in plant ce iso an den computer bzw an server anschlie en damit man sich den usb stick sparen and die programdntyme direkt auf die maschine ziehen kann Translated 5990 : please connect the last peripheral grinding machine in plant ce iso to the computer or to the server so that you can save yourself the usb stick and pull the programdntyme directly onto the machine i: 5991 summary want to configure printer to my laptop which is available in i: 5992 when login to kas company com and try to start the tess app receive the error message xd have contacted by our designes in scandinavia from the company fortive that they receive the same error message xd please do the needful i: 5993 xd xd xd hello help team xd xd can you pls open ticket to be assigned to rth xd need help with excel and hardcopy xd xd xd i: 5994 dear it team have sent ticket to erp fico as below since last but have not received ticket number yet till now please advise best i: 5995 please change my telephony software interaction desktop password get message that the request to change password has failed pls see the attached screenshot i: 5996 hello it xd xd please can you block this email address in company email server xd xd xd xd best i: 5997 fya xd xd best Translated 5997 : Best fya xd xd i: 5998 erp sid password reset Translated 5998 : erp sid password reset i: 5999 xd job job failed in job scheduler at Translated 5999 : xd job job failed in job scheduler at i: 6000 the i: 6001 xd xd xd hallo helpteam xd xd das display meines telefons ist teilweise unsichtbar und somit ganz schlecht abzulesen xd xd vielen dank xd xd viele gr best Translated 6001 : xd xd xd helpteam xd xd the display of my phone is partially invisible and therefore very difficult to read xd xd many thanks xd xd many gr best i: 6002 summary need netweaver to check drawing documents when opening follwing error message microsoft net framdntyework not installed please contact administrator i: 6003 hello can pick up the pone this is the error message could you help me please id best i: 6004 delievery item category determination for rl has to be assigned i: 6005 xd xd xd hello xd xd am the owner of the following common mail box xd xd xd xd my concern today is that am able to view but unable to view pl see below the screenshot request pl resolve the same xd xd xd best i: 6006 hi please reset the password and send the new password to his manager mr sbfhydeep kurtyar emp no name useid manager saoltrmy xyuscbkn kurtyar khty nrbgctwm kfwdhrmt with i: 6007 hi mr aetwpiox eijzadco is unable to login ess portal please reset the password and send the new password to his manager mr shynhjundar emp no name useid manager aetwpiox eijzadco vvttraja shynhjundar with i: 6008 vpn router company eu deu germany dmvpn rtr down xd erp is working ok xd everything else is very slow i: 6009 hello wohtyugang and ethryju we have critical situation with shipping on distributor tool this customer has complained before and researched but couldn determine problem we had another customer bill north with atnh call for time yesterday they are saying when they choose the nda shipping the orders are changing to ups ground thought originally they might be setting the carrier and then selecting the ship to but as you can see if the screenshot this is not the case will continue to uacyltoe hxgaycze and try to determine the problem but wanted to get this reported as quickly as possible i: 6010 i create complaint xd the complaint ist not in the workflow to approval xd please help me i: 6011 am oben genannten pc muss der anmeldename mp ek freigegeben werden wie mit crishtyutian pryes besprochen Translated 6011 : the login name mp ek must be released on the above-mentioned pc as discussed with crishtyutian pryes i: 6012 monitor tauschen htvepyua izgulrcf i: 6013 name rekmqxfn jctgwmyi language browser microsoft internet explorer customer number telephone summary customer name hronovsky does not listed in engineering tool erp id please check and add this customer i: 6014 netzwerk r scan nicht verf gbar bitte pr fen we und we vzqomdgt jwoqbuml Translated 6014 : network r scan not available please check we and we vzqomdgt jwoqbuml i: 6015 seit uhr morgens sind r werk germany keine zeitbuchungen vorhanden bitte den fehler beheben dringend xd xd hello xd xd the reason of this ticket is that for germany plant and also for germany plants xd we do not get any time account data from eu tool transferred to erp hrp xd the problem exists since xd xd it has nothing to do with today network problems at germany xd xd this is serious because of month end closing on thursday xd xd i: 6016 probleme mit we wu xwirzvda okhyipgr Translated 6016 : probleme mit we wu xwirzvda okhyipgr i: 6017 probleme mit kiosk ompeztak ilkpqtjh bur am orde Translated 6017 : problems with kiosk ompeztak ilkpqtjh bur am orde i: 6018 sql software installation i: 6019 hallo xd xd unser drucker we scannt nicht mehr richtig ein es kommt immer die meldung auftrag wurde nicht abgeschlossen wenn man dann auf detail geht steht dort anmelde fehler kannst du das bitte mal berpr fen xd am freitag ging es noch samstag trat dann dieser fehler auf xd Translated 6019 : hello xd xd our printer we no longer scans correctly it always comes up with the message order was not completed when you then go to detail it says registration error can you please check that xd on friday it was still saturday then this error appeared on xd i: 6020 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue rethtyuzkd xd xd transaction code the user needs or was working with fb xd xd describe the issue xd please remove xd fi gl accountant ch xd fi gl accountant we xd as per voprdmae ivrgdmao and ltnivuhw zbudwnfr user should not be able to post accounting documents xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 6021 the i: 6022 xd xd xd hai xd xd can you reset my passwords for all logins xd xd kind i: 6023 hostname is down since am et on the server is rebooted at daily but for today after reboot the server is still down srirgrtyam has been informed i: 6024 xd xd xd dear it xd xd would you pls help to create delivery note for sto it urgent for plant for something error we unable to create i: 6025 good morning we cannot login to sid due the following error logon balancing error could not connect to message server rc do you want to see detailed error information can you please check and let me know he error exists at least for fleisrgtyk and me leibdrty i: 6026 hi user id zhrgtangs account is being locked again when the computer went into screensaver i: 6027 detailed description of the problem including shopfloor machine name xd xd sogo engineering tool or other app using vlan location xd xd source ip from traffic generated xd xd destination ip xd xd type of application eg rdp ping teamviewer xd xd any specific port traffic alone been blocked xd xd when did it work last xd xd is the issue specific to only the location mention or for other sogo engineering tool location xd xd additionally attach the screenshot of the ping tracert traffic xd i: 6028 verehrte damen und herren aktuell funktioniert das einskannen von unterlagen nicht kein zugriff drucker mp pc nr empw bitte um abhilfe mit freundlichem gru jctnelqs lansuiwe quality assurance pers nlich haftende gesellschafterin company gmbh sitz der gesellschaft rth registergerirtcht rth hrb Translated 6028 : dear ladies and gentlemen, the canning of documents does not currently work no access to the printer mp pc no i: 6029 office installation wird nicht abgeschlossen Translated 6029 : office installation is not completed i: 6030 xd xd xd hello all xd it a spam do not have any account in ingdirect and if would have one wouldn related to my company email xd xd sinc res salutations best i: 6031 scannen auf publik beim drucker mp funktioniert nicht Translated 6031 : scanning for the public with the printer mp does not work i: 6032 xd xd xd mit freundlichen gr en best Translated 6032 : xd xd xd Yours sincerely i: 6033 account locked out and password reset i: 6034 xd xd xd hi xd xd please unblock the erp password xd xd userid hegdthy gnasmtvx cwxtsvkm xd xd i: 6035 for your information ngprt the printer name i: 6036 xd job job failed in job scheduler at i: 6037 please do the needful for company athjyul dixhtyuit athjyul dixhtyuit pm laptop key bankrd not working my laptop key bankrd not working please depute dell person to attend the problem laptop model is latitude asset code is service tag dcgw for company athjyul dixhtyuit senior manager sales north msg companytm i: 6038 not able to print on id i: 6039 scannen vom scanner vh geht nicht mit dem hinweise laufwerk nicht bekannt Translated 6039 : Scanning from the scanner vh does not work with the notes drive not known i: 6040 hello xd our printer rn at plant for production papers doesn work xd we need it support s p xd i: 6041 beim scannen von auftr gen kommt die meldung das der pfad nicht existiert Translated 6041 : When scanning jobs, a message appears that the path does not exist i: 6042 name megfgthyhana language browser microsoft internet explorer customer number telephone summary nx is not opening through extr but nx power drafting is opening i: 6043 xd xd xd hi xd xd am unable to login to erp please do the needful xd xd xd xd i: 6044 hi xd xd could you please confirm whether this is genuine mail xd xd xd xd i: 6045 dear team good morning we observe lot of wi fi connectivity issues in kirgtyan training room pu ground floor taranga pu floor pu floor office area emerald conference room admin floor kind request you to look into that i: 6046 telecom vendor card is not working Translated 6046 : telecom vendor card is not working i: 6047 computer wont turn on xd power is not working i: 6048 account locked out and password reset i: 6049 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar rad request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name nehtjuavathi last name patirjy consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 6050 hzudxyqb qsmrwvle xd am xd nwfodmhc exurcwkm xd rad fw your mobile device is temporarily blocked from synchronizing using exchange activesync until your administrator usas it access xd importance high xd xd please restore my mobile settings to enable access emails on mobile xd xd thanking you xd xd best i: 6051 name vivian kurtyar language browser microsoft internet explorer customer number telephone summary outlook not working i: 6052 xd xd xd dear sir xd following message is coming while clicking erp icon xd xd emp code xd user id schyhty xd xd xd xd xd with best i: 6053 error while changing password in password management tool password manager please see attached snapshot and do the needful i: 6054 xd xd xd hi xd we tried to unlock from password management tool site but failed please help to unlock for user zhrgtangs xd i: 6055 xd job hr payroll na failed in job scheduler at i: 6056 xd job hr payroll na failed in job scheduler at i: 6057 xd job hr payroll na failed in job scheduler at i: 6058 windows account locked i: 6059 i am not able to login attendance tool application my user id is i: 6060 apac chinaand dc have ip phone issue one line phone number range xxxx can dial out exterior line if you dial out exterior line we always received busy tone but we can dial in called pbx vendor siemens engineer and isp to check their devices the feedback is all devices working fine so they let us to check our audiocodes devices cause all line connect to audiocodes please contact related person to contact me and help me solve the problem i: 6061 north service am nwfodmhc exurcwkm hrlwizav elyamqro rad shipping notice hello guys pls kindly set shipping notice under plant for below customer to i: 6062 skype could not work can not hear anything i: 6063 laptop slowness while using multiple apps at time i: 6064 wgq dc Translated 6064 : wgq dc i: 6065 xd xd xd hello xd xd wireless companysecure outage of taiwan xd please help xd xd i: 6066 request to reset microsoft online services password for i: 6067 xd job bk hana sid erp wly dp failed in job scheduler at i: 6068 engineering tool access requested i: 6069 broken client anti virus Translated 6069 : broken client anti virus i: 6070 xd job job failed in job scheduler at Translated 6070 : xd job job failed in job scheduler at i: 6071 xd job job failed in job scheduler at i: 6072 xd job job failed in job scheduler at Translated 6072 : xd job job failed in job scheduler at i: 6073 xd job snp heu regen failed in job scheduler at i: 6074 xd job bk hana sid erp wly dp failed in job scheduler at i: 6075 hostname volume consumed on dev mksysbalv is more than xd i: 6076 proygkjt mwetuhqf pm nwfodmhc exurcwkm ifblxjmc dyrgfwbm callie pollaurid re expense report has been submitted jeffrghryeytyf strigtyet submitted his expenses below but it did not show up as task for me to approve in the ess portal ve approved three other employees two before jeffrghryey submitted his and one after please identify why jeffrghryey expense submittal did not show up in my system to approve received the workflow email that he did submit original message workflow system mail pm proygkjt mwetuhqf expense report has been submitted the following expense report has been submitted for your approval personnel no jeffrghryeyrghryey strgrtyiet expense report no start date end date total costs usd reimbursement amount usd to review this expense report in full please log into your universal worklist on manager self service i: 6077 xd job job failed in job scheduler at Translated 6077 : xd job job failed in job scheduler at i: 6078 xd job job failed in job scheduler at Translated 6078 : xd job job failed in job scheduler at i: 6079 xd job job failed in job scheduler at i: 6080 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6081 dsw xd xd inincident overview xd xd we have detected at least occurrences of your firewall company european asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call xd automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal i: 6082 xd job snp heu regen failed in job scheduler at i: 6083 in hostname hostname hostname service alwaysupservice exe is not running i: 6084 xd job job failed in job scheduler at Translated 6084 : xd job job failed in job scheduler at i: 6085 please reset telephony software password name full name cajdwtgq breqgycv username pogredrty extension site israel i: 6086 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 6087 xd job job failed in job scheduler at i: 6088 the error message is skype for business has stopped working and there is an icon to click that says close the programdnty i: 6089 india switch company ap ind pu stack sw is down since pm on et i: 6090 xd job job failed in job scheduler at i: 6091 xd job job failed in job scheduler at i: 6092 xd job sid hotf failed in job scheduler at i: 6093 xd job sid hotf failed in job scheduler at i: 6094 xd job job failed in job scheduler at Translated 6094 : xd job job failed in job scheduler at i: 6095 xd job sid apps failed in job scheduler at i: 6096 reporting system hq dev mme snabf machine type model serial mme abf problem number error description platform firmware reported an error last occurred am current status opened pmr number details remote support call generated on pwrhmc completed successfully by server pwrhmc i: 6097 company na usa usa eh media access sw switch is down at usa company location since et on i: 6098 xd job job failed in job scheduler at i: 6099 xd xd xd hello xd cannot connect to any internet site via explorer although my wifi is connected pls help urgently am supposed to run uacyltoe hxgayczeing and am already an hour behind xd i: 6100 xd job job failed in job scheduler at Translated 6100 : xd job job failed in job scheduler at i: 6101 xd job job failed in job scheduler at i: 6102 xd job job failed in job scheduler at i: 6103 xd job job failed in job scheduler at i: 6104 xd job job failed in job scheduler at i: 6105 xd job job failed in job scheduler at i: 6106 hostname volume label dat hostname deb on server is over space consumed space available gb i: 6107 dsw in xd xd we are seeing your company european asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from awyl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd soc i: 6108 dsw in xd xd incident overview xd xd we are seeing your company internal asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from lhql to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd soc i: 6109 dsw in xd xd received alert for summary vid bare http get executable from ip address possible downloader trojan from the device with ip address the source of this traffic is from ip axcl and the destination is ip details of an example event are shown below please investigate this activity and remediate as necessary xd xd as always if you have any questions or concerns please call the counter threat operations center at opt to discuss or submit response in the open ticket with an action of respond to soc xd xd i: 6110 dsw in xd xd we are seeing your att apac asa company com device generating at least internal outbreak for tcp alerts within minutes for traffic blocked from aidl to port tcp of several internal hosts this indicate unauthorized reconnaissance scanning misconfiguration or authorized internal discovery being blocked by the firewall xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for internal reconnaissance alerts explicit notification via medium priority ticket no phone call xd automatically resolve internal reconnaissance alerts to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd soc xd i: 6111 xd job job failed in job scheduler at i: 6112 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6113 emails not updating Translated 6113 : emails not updating i: 6114 xd job job failed in job scheduler at i: 6115 hostname sid volume consumed on dev erplv is more than i: 6116 xd job pp eu tool netch ap failed in job scheduler at i: 6117 ms outlook not accepting password i: 6118 xd job job failed in job scheduler at Translated 6118 : xd job job failed in job scheduler at i: 6119 hi please unblock the erp password userid hegdthy gnasmtvx cwxtsvkm i: 6120 name jvpkulxw ovuweygj language browser microsoft internet explorer customer number telephone summary how to access drwgs from net weaver i: 6121 xd job hostname fail uacyltoe hxgaycze failed in job scheduler at i: 6122 xd job job failed in job scheduler at i: 6123 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor na xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 6124 unable to sync with one note files i: 6125 xd xd xd hello all xd xd can transfer my weekly report to the system xd xd don know what the problem xd xd see the atache as well xd xd need your support xd xd i: 6126 xd xd xd hello need some assistance updating part of the collaboration platform page for my department specifically there is link on our page that directs to document need to ensure that more up to date version of the document is linked xd xd i: 6127 any skype meeting used must be entered with call me at and don join audio the use skype for business full audio and video experience only freezes skype it takes really long time to open again xd i: 6128 xd job hostname failagain emb failed in job scheduler at i: 6129 xd job hostname fail emb failed in job scheduler at i: 6130 connecting to vpn i: 6131 unable to scan from the hp all in one printer i: 6132 unable to submit expense report Translated 6132 : unable to submit expense report i: 6133 reset the password for ljpgedia bzqcwsgf on erp production erp i: 6134 updating password on password management tool i: 6135 xd xd xd not able to log into vpn need some assistance please xd xd xd i: 6136 bex addin is not showing all environment sid sid etc and unable to add sid xd installed bex patch and bex addin but same issue it happened to erp logon also but later manually added different environment xd xd can you please check how it got dierppeared without making any changes xd xd please refer to screenshot xd xd xd computer name lhql i: 6137 ie settings Translated 6137 : ie settings i: 6138 unable to install draftsight on the pc i: 6139 unable to connect to skype i: 6140 employee took vsp therefore remove ukxtqfda qvtaykbg from telephony software workgroups and company directory i: 6141 xd xd xd hallo xd xd bitte um behebung von folgendem problem xd bei aktiver vpn verbindung kann der weekly report nicht hochgeladen werden xd xd xd mit freundlichen gr en best Translated 6141 : xd xd xd hello xd xd please solve the following problem xd with an active vpn connection the weekly report cannot be uploaded xd xd xd Yours sincerely i: 6142 outlook is not opening Translated 6142 : outlook is not opening i: 6143 erp password reset account got locked out i: 6144 unable to login to skype Translated 6144 : unable to login to skype i: 6145 need two analog lines turned back on immediately and we have no emergency notification system right now i: 6146 password has expired i: 6147 the agents are not receiving the correct amount of revenue please look at the procedure that is assigning revenue based on direct and pos rules i: 6148 both locations have work center defined in erp which is causing orders for both locations to appear in the to do list change the query to check for both the plant and work center i: 6149 xd xd xd cannot create deliveries and also erp is really slow its hard to even get through an order this is huge priority as our shipments suffer xd xd i: 6150 engineering tool error Translated 6150 : engineering tool error i: 6151 reset ess password Translated 6151 : reset ess password i: 6152 delivery customer itens co account assignments have different profit centers xd message bk xd delivery customer itens co account assignments have different profit centers xd message bk xd delivery customer itens co account assignments have different profit centers xd message bk xd delivery customer item co account assignments have different profit centers xd message bk xd i: 6153 unable to remove add repair email account from windows phone xd trying to repair the account and its showing that repair not possible xd its not even letting user to remove and re add the account xd unable to check emails doesn sync account settings are outdated xd i: 6154 query attendance tool account i: 6155 ticket update on ticket no Translated 6155 : ticket update on ticket no i: 6156 xd xd xd hello xd xd am having issues forcing deliveries in erp xd xd xd i: 6157 nicrhty wanted to set ooo from ofwxjriq rwcxkflq mailbox i: 6158 xd xd xd hi xd xd would like to use crm on my android mobile phone xd kindly let me know the procedure xd xd with best i: 6159 ng azubi locked Translated 6159 : ng azubi locked i: 6160 ng azubi locked Translated 6160 : ng azubi locked i: 6161 hello xd xd can you please help me on trailing email on mailbox full warning xd xd i: 6162 erp sid account locked i: 6163 xd xd xd hello xd am having issues with incoming outgoing call on my company mobile device was unable to access the global support center on the hub will likely need new device as this issue is impact related do contact vendor mobile directly or i: 6164 support r umbau ewew xwirzvda okhyipgr Translated 6164 : support r umbau ewew xwirzvda okhyipgr i: 6165 password expired i: 6166 hi xd please close line item on order number because it has already been delivered but remains open in md xd i: 6167 xd job job failed in job scheduler at i: 6168 unable to change password on password management tool password manager i: 6169 dear sir xd xd please help to download software of engineering tool and engineering tool on my laptop xd our details are as below have dealer of company india ltd xd dist name ramdntya enterprises aurangabad maharashtra xd dist code xd xd i: 6170 account getting locked frequently user changed the password today itself i: 6171 team since yesterday we noticed that the commited date on order confirmation is wrong it should be days if tool is available in germany for transit plus days for customer pick up as matheywter of fact the dates are too long in the future g order opened today and available in plant gives committed date of all mms confirmed only for november i: 6172 xd xd xd am trying to access point of sales data in bex and it tells me am not authorized can you please authorize and give me access to that cube xd xd attached is the files am opening and once connect to bex it gives me the following message xd xd xd xd i: 6173 laptop charge network cable not working in our docks i: 6174 xd xd xd hello xd xd drawing was saved under the wrong plm number xd please delete nxd xd xd mit freundlichen gr en best i: 6175 hi team xd xd am requesting for dock station and add on monitor preferably bigger in size please consider this request and assist xd beneficial to me while auditing inwarehouse tools that will have average sized fonts could view the same in bigger screen very clearly xd helps me with my various work related activities like inwarehouse tool comparison so can do it in much more effective way with add on monitor xd also helps me in email activities xd last but not the least don have to carry my laptop charger to office everyday and can make my laptop big bit more lighter xd i: 6176 support r umbau ewew lpfzasmv cleoprzq Translated 6176 : support r umbau ewew lpfzasmv cleoprzq i: 6177 probleme mit rechner ewewx howfanzi siavgtby i: 6178 probleme mit infostand ewew i: 6179 support r st hrmann xosdfhbu gtbfkisl Translated 6179 : support r st hrmann xosdfhbu gtbfkisl i: 6180 hello pl assign read write authorisation to guru prasath his user id prarttsagj folder qa iso iso sid warm i: 6181 xd xd xd xd xd mit freundlichen gr en with best Translated 6181 : xd xd xd xd xd Yours sincerely, with best i: 6182 xd job hostname fail failed in job scheduler at i: 6183 xd job hostname fail failed in job scheduler at i: 6184 pls install ms outlook at pc of trainee yqwuhzkv icvgkxnt pls assign to qbnsrzlv gyqxkbae i: 6185 xd job hostname fail failed in job scheduler at i: 6186 xd xd xd hello it team xd xd what am supposed to do with that issue xd xd i: 6187 xd xd xd trotz benutzung des password management tool passwortmanagers funktioniert die entsperrung nicht xd ich konnte mich nicht in erp sid einloggen xd password management tool entsperrung verwendet kein erfolg xd anruf bei it cksetzung pw auf daypay zugang zu sid dann glich xd musste aber ber password management tool wieder alle pw angleichen auf das neue pw xd nach telefonat erneutes einloggen im erp versucht geht wieder nicht xd xd tut mir leid leute ich kann nicht den ganzen tag damit verbringen mir neue passw rter zu berlegen xd bringt password management tool mit erp pw endlich zum laufen damit diese firma effizienter wird xd xd r den aktuellen fall bitte ich um erneute cksetzung es sid passworts auf daypay damit ich weiterarbeiten kann xd xd xd xd xd mit freundlichen grugermany best Translated 6187 : xd xd xd despite using the password management tool password manager the unlocking does not work xd i could not log into erp sid xd password management tool unlocking not used xd call at it ckseting pw on daypay access to sid then equal xd but had to use password management tool again adjust all pw to the new pw xd after phone call again log in to erp tried again does not work xd xd I'm sorry people I can't spend the whole day thinking about new passwords xd finally brings password management tool with erp pw to run so that this company becomes more efficient xd xd r in the current case I ask you to reset the password on daypay so that I can continue working xd xd xd xd xd with kind grugermany best i: 6188 hi please reset the password of mr pradtheyp and share the new password to his manager mr navbrtheen gogtr emp no name useid manager yaxmwdth xsfgitmq vvdortddp navbrtheen gogtr with i: 6189 no acces to the network with pc in departement qa tha access is urgent necessary for hardness measuring software yevirgnl ylhogjct and ughzilfm cfibdamq are the responsible person i: 6190 hostname kt transition applications portal pi java web pi training full access guprgttas i: 6191 manually constructed have new numbers in the mm mm if want to extend the rqfhiong zkwfqagb the system does not find any iso ansi code when use the code manually night rage comes the message ansi catalog and grades already used by material xd xd please check attachment i: 6192 sehr geehrte damen und herren ich bin share owner des laufwerks departments betriebsrat im werk germany und ben tige eine bersicht wer alles zugriff auf den oben stehenden ordner hat bitte lassen sie mir diese aufstellung unmittelbar zukommen mit freundlichen gr en wtxvqngf nxjivlmr betriebsratsvorsitzender company produktions gmbh and co kg altweiherstra company produktions gmbh and co kg gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 6192 : Dear Sir or Madam, I am the share owner of the drive department in the works council in Germany and need an overview of who has access to the above folder, please send me this list immediately kg altweiherstra company produktions gmbh and co kg managing director phvkowml azbtkqwx naruedlk mpvhakdq this communication is intended solely for the use of the addressee and may contain information that is confidential or is excluded from disclosure under applicable law, distribution or reproduction Approval of this message by people who are not the intended recipients is strictly forbidden. If you have received this message by mistake, please notify the sender and send this message to company posts select the followin g link to view the disclaimer in an alternate language i: 6193 pulvermetalogy ee xd staeberoth fertigung ee xd sk hartbearbeitung ee xd xd user cannot stamp in and out time in eu tool xd xd data is not transferred to erp from yesterday he does not know which employee was present yesterday and who was absent i: 6194 issue with erp sid xd page is not loading i: 6195 xd xd xd hi xd please usa outlook access email and calendar for below staff on his iphone xd xd dept randd xd xd i: 6196 xd xd xd hi xd dibesh laptop cannot boot up need to resolve the issue xd xd i: 6197 dear team we once shipped subcontract order on po rough material pcs movement type but its corresponding end product mm still exists in erp pls help to check the root cause thx rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 6198 please provide details of the issue xd i: 6199 dear team pls help to check return delivery it required to enter batch but we can not key in anything in the blank rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 6200 laptop doesn access with network i: 6201 vpn login issue account lock out i: 6202 mobile device activation company provided i: 6203 there are are more than dumps in with sql error i: 6204 printer cartridge replacement on the printer i: 6205 ie not launching xd xd tried opening in safe mode no go xd reset no go xd tried disabling ie windows features failed to disable xd reboot system xd it worked fine xd i: 6206 ad account lock out and password reset through password management tool password manager i: 6207 delete of history cache in seocompanyxv syxewkji for ess uacyltoe hxgayczeing xd xd i: 6208 kopierer ausbildungswerkstatt defekt fehlermeldung einzug fehlerhaft servicedienst notwendig Translated 6208 : copier training workshop defective error message collection defective service required i: 6209 ad account locked out summary am locked out of my computer i: 6210 unable to make or receive calls in skype most of the times the warehouse tool thru hehr toolhones is not audible but can be heard thru speake i: 6211 r drucker defekt Translated 6211 : r printer defective i: 6212 xd job job failed in job scheduler at i: 6213 xd job job failed in job scheduler at i: 6214 job failed there is no datasource with these attributes please check attachment i: 6215 account lock out issue i: 6216 user wanted to report about some one working on his system without his awareness checked with changes happened in computer it was erp went back to default settings checked in programdntys and features it was erp patch installed during that time appreciated user and asked to inform if he sees this activity again i: 6217 user name yinnrty user id system dvw contact phone error message ora integrity constraint gdwowner fk sbscrptn tblusers violated parent key not found production specifications application server lhqsid database server name oracle gdwp i: 6218 account lock out issue xd remote into user computer and removed all old password xd cleared temp and prefetch file xd signed in to outlook and checked with skype xd ran lock out status and informed user to update password in all mobile device xd xd i: 6219 xd job job failed in job scheduler at i: 6220 xd job job failed in job scheduler at Translated 6220 : xd job job failed in job scheduler at i: 6221 bios einstellen das rechner bei netz reset selbstst ndig startet xd bitte um erledigung durch himghtmelreich Translated 6221 : set bios the computer starts automatically when the network is reset, xd please to be dealt with by himghtmelreich i: 6222 unable to print from erp Translated 6222 : unable to print from erp i: 6223 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company maint yes no provider maint ticket xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6224 xd job pp eu tool netch ap failed in job scheduler at i: 6225 xd job pp eu tool netch ap failed in job scheduler at i: 6226 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6227 unable to connect to the printers dv and dv also need help with the scanner tried to download the driver from the fujitsu website but when tried to run it need to have administrator access i: 6228 latpop will not startup without ac power cord connected so suspect bad battery i: 6229 what type of outage network circuit power please specify what type of outage xd xd top cert site slo site yes no na xd xd when did it start pm et on xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6230 unable to log in to erp sid Translated 6230 : unable to log in to erp sid i: 6231 unable to log in to erp sid Translated 6231 : unable to log in to erp sid i: 6232 intermittent internet connection Translated 6232 : intermittent internet connection i: 6233 delivery notes from other users coming to the printer i: 6234 system slow on start up i: 6235 hi team please check the router wifi the site company south amerirtca o pollaurido o bernardo campo no is possible connect network wifi companysecure this network no is visible to users local if you need connect remotely or has more doubts please return me i: 6236 usa print issue Translated 6236 : use print issue i: 6237 name mikhghytr karaffa language browser microsoft internet explorer customer number telephone summary hello my single sign on is not working i: 6238 hallo folgende funktionen und programdntyme laufen nicht mehr weekly report t sich nicht bertragen meldet falscher serverpfad collaboration platform findet die biblotheken nicht mehr keine synchronisation mit collaboration platform mehr lte verbindung nicht glich mit freundlichen gr en eluvxqhw gpbfkqeu anwendungstechnik application engineer transportation central europe mail company deutschland gmbh www company com gesch ftsf hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 6238 : hello the following functions and programs are no longer running weekly report t cannot be transferred reports wrong server path collaboration platform no longer finds the libraries no longer synchronized with collaboration platform lte connection not equal with kind regards eluvxqhw gpbfkqeu application engineering application engineer transportation central europe mail company deutschland gmbh www company com managing director rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq this communication is intended solely for the use of the addressee and may contain information that is confidential or, in accordance with applicable law, is excluded from disclosure or distribution by persons who are not the intended recipients is strictly forbidden if you have received this message due to an error, please notify the sender and send it message company posts select the following link to view the disclaimer in an alternate language i: 6239 unable to load engineering tool i: 6240 infopath installation i: 6241 half the icons on my desktop are gone after reboot and updates were applied i: 6242 unable to get on skype audio meeting with outside vendors i: 6243 usa oh operators are locked out of mii and not able to scan in production tortm hortl howthrelte happened twice in one week dmitazhw kxbifzoh i: 6244 fjtrnslb ejzkrchq account has expired i: 6245 users in chicago wants to update bank details i: 6246 bios update Translated 6246 : bios update i: 6247 i am stuck has lines lines and have been inwarehouse toold line we cannot pgi so it has not inwarehouse toold any ideas on how we can get line inwarehouse toold xd xd xd xd xd xd i: 6248 device type changes for usa i: 6249 ticket update on inplant i: 6250 ticket update on inplant i: 6251 device not running dell ml tape library xd xd backup device not running error say open door xd xd i: 6252 license inquiry about license Translated 6252 : license inquiry about license i: 6253 adobe reader on my pc suddenly will not work immediate crash adobe has stopped working i: 6254 need access to znqcljxt azvoespk emails i: 6255 outlook is not responding error need password Translated 6255 : outlook is not responding error need password i: 6256 connections problems with microsoft collaboration platform and my company account i: 6257 name erirtc language browser microsoft internet explorer customer number telephone summary following up on ctc code application incident ticket no can we please get the folks access aerp i: 6258 cti network wireless guest guest first name jeffrghryey guest last name adrhtykins guest email id contact no location company sponsor email id duration duration for guest access today until pm est i: 6259 account locked i: 6260 intermittent shutdown on this computer i: 6261 inwarehouse tools and issued for ic should be ic xd i: 6262 cannot make or recieve calls on iphone i: 6263 got call transferred from vitalyst user needs this account as mentioned in the screenshot to be an active account so that he can add new opportstorage product i: 6264 set up and new laptop and remove the old one i: 6265 project collaboration platform site is no longer creating project id when new project is added xd xd xd examples xd xd xd i: 6266 blank call with noise i: 6267 mm and i: 6268 same incident as the past two days cannot access to email or km collaboration platform it fixed the issue but it is occurring again i: 6269 please display monthly information on the sales approve screen in the compensation programdnty since the performance calculation was changed to monthly calculation the screen has become little confusing i: 6270 aghynil dirttwan mail am nwfodmhc exurcwkm sabrthy engineering tool respected sir madam please guidge me how to install engineering tool we have tried on web but its not done download please reply mr aghynil dirttwan perfect sales and services mohgrtyan arcade i: 6271 when try to re create with ansi iso tbbuyhexstandoffmm erp says it already exists xd xd xd i: 6272 query who is the owner of shared mailbox mws distributor discounts i: 6273 password reset request Translated 6273 : password reset request i: 6274 bitte ewew konto wieder aktivieren Translated 6274 : please reactivate ewew account i: 6275 engineering tool password reset Translated 6275 : engineering tool password reset i: 6276 unable to change the password from password management tool i: 6277 unable to log in to email erp and collaboration platform i: 6278 display kaum noch lesbar verbindung bei telefonaten wird mittendrin unterbrochen Translated 6278 : display barely legible connection during calls is interrupted in the middle i: 6279 outlook will not connect when working from home office i: 6280 xd job job failed in job scheduler at Translated 6280 : xd job job failed in job scheduler at i: 6281 xd job job failed in job scheduler at Translated 6281 : xd job job failed in job scheduler at i: 6282 unable to submit discount form from collaboration platform i: 6283 xd job job failed in job scheduler at i: 6284 xd job job failed in job scheduler at Translated 6284 : xd job job failed in job scheduler at i: 6285 the rebate was not calculated correctly in the inwarehouse tools xd it was too little rebate i: 6286 xd job job failed in job scheduler at Translated 6286 : xd job job failed in job scheduler at i: 6287 xd job job failed in job scheduler at i: 6288 please reset my password for hr tool globalview sid i: 6289 need help to reset password Translated 6289 : need help to reset password i: 6290 can you help me reset password for microsoft lync please i: 6291 i keep getting zearn report for xd mail title fw job hr step xd how do get the correct report i: 6292 xd xd xd hello help xd xd as instructed by ecwtrjnq jpecxuty please change permanently all default printing jobs outputs on the erp printer fd to the printer fd xd also please repeat all jobs sent to the printer fd between until now on the new printer fd xd xd xd best i: 6293 xd xd xd dear all xd xd please urgently advise how to proceed with this xd am asked to review price discounts obviously managed by this ms tool xd xd xd xd xd best i: 6294 unable to connect to hub Translated 6294 : unable to connect to hub i: 6295 please se my comments in red xd xd viele gr best i: 6296 xd xd xd dear all xd xd please unblock web pages which do urgently need to access for my technical research xd xd g xd xd mit freundlichen gr en best i: 6297 cisco access point is not working xd mac address dbe i: 6298 laptop and profile setup for new joiner nikitha upadhyaya lqnoifve wvhelqxu i: 6299 system sid sid sid sid hrp other sid and sid enter user id of user having the issue gthydanp transaction code the user needs or was working with dscsag conv rule describe the issue need access to the code if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket attached provide access the same as this other user phillpd i: 6300 probleme mit erpgui vsdtxwry ngkcdjye Translated 6300 : problems with erpgui vsdtxwry ngkcdjye i: 6301 die suchfunktion des skype verzeichnisses funktioniert immer noch nicht Translated 6301 : the search function of the skype directory still does not work i: 6302 akku def openstage sl bitte neuen besorgen Translated 6302 : akku def openstage sl bitte neuen besorgen i: 6303 dear team pls help to check below user account which account has been locked for several times thx lot user yubtgy rgds judthtihty zhuyhts company hardpoint apac wgq dc i: 6304 hallo zusammen bitte um hilfe mit weekly report und engineering tool angebotserstellung bin heute bis uhr telefonisch erreichbar vielen dank gru rkyjnbqh kfshormi eng anwendungstechnik application engineer company deutschland gmbh gesch ftsf hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq Translated 6304 : hello everyone please for help with weekly report and engineering tool offer preparation am available by phone today until noon many thanks gru rkyjnbqh kfshormi eng application engineering application engineer company deutschland gmbh managing director rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq i: 6305 xd xd xd hi pradtheyp xd xd partner team will support myself and jintana to run eando report going forward can you provide the access usaed to debaghjsish based on his email xd xd below is the eando access path required the access usaed to him xd xd site certified content views eoreport finance timegraphfilters iid xd xd let me know once done appreciate if you provide the access preferably by next friday xd xd i: 6306 qlhmawgi sgwipoxn mp fb locked i: 6307 ich habe gestern ber den passwortmanager mein passwort ge ndert seitdem funktioniert die skype anmeldung nicht mehr weder mit dem neuen noch mit dem alten passwort fehlermeldung der benutzername das kennwort oder die dom ne scheint falsch zu sein Translated 6307 : yesterday i changed my password via the password manager since then the skype registration no longer works neither with the new nor with the old password error message the username the password or the domain seems to be wrong i: 6308 hi helpdesk please give access to igurwxhv ughynofq from partner outsouring company to i: 6309 as per attached email we see an issue with cache server logging and also caching server working as well xd please also look at the erp reply who raised questions on cache server accessibility i: 6310 iwazgesl ydgqtpbo mail xd pm xd nwfodmhc exurcwkm xd nkiopevt gufwhdky eh xd tru goods movement mb from plant to plant xd xd hello xd xd xd could you please advise us how to conduct goods movement with erp transaction mb from plant to plant we are not able to do this xd xd i: 6311 password reset alert from o i: 6312 now he get the right document type but he has several other problems xd the wrong material group is shown mendmre istead of xd default should be select xd in accounting there should be costcenter as default for him is order and the gl account does not come up automatically xd ve got the information that all requisitioners of this plant had the problems will get mail for colleague with the person who has solved this issue will add it as soon as have the mail xd xd i: 6313 latitude does not properly boot up get blue empty screen with no log on mask i: 6314 latitude does not boot up properly got blue empty screen eagl i: 6315 support r umbau we port niptbwdq csenjruz Translated 6315 : support r umbau we port niptbwdq csenjruz i: 6316 umbau rechner ewew port niptbwdq csenjruz Translated 6316 : conversion computer ewew port niptbwdq csenjruz i: 6317 setup new ws instandsetzung nfayqjhg kyswcpei Translated 6317 : setup new ws repair nfayqjhg kyswcpei i: 6318 ms office outlook issue i: 6319 cannot use copy to option in engineering tool getting error message xd it never worked for user xd anticipating access issue i: 6320 support r umzug qwynjdbk eamnvwyh Translated 6320 : support r umzug qwynjdbk eamnvwyh i: 6321 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am est xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor na xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 6322 please set up new computer changed to user parrfgyksm i: 6323 password reset alert from o Translated 6323 : password reset alert from o i: 6324 keine anmeldung glich Translated 6324 : no registration was alike i: 6325 eemw keine netzwerkverbindung nnen hergestellt werden Translated 6325 : eemw no network connection can be established i: 6326 email queries Translated 6326 : email queries i: 6327 erp sid lock out issue and password reset user id bhergtyemm i: 6328 sehr geehrter hr souzarft noch immer kein zugriff freundliche gr best Translated 6328 : dear hr souzarft still no access friendly gr best i: 6329 application used to work till user was able to copy save pdf from business client since user wasn able anymore i: 6330 meldung fehler bei der erneuten verbindungsherstellung von mit hostname Translated 6330 : error message when reconnecting with hostname i: 6331 xd xd Translated 6331 : xd xd i: 6332 unable to open outlook client i: 6333 nein funktioniert noch nicht efjzbtcm mdpviqbf company productions gmbh and co kg versand logistik ff wear email company produktions gmbh and co kg gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq von global it ticketing tool mail gesendet mittwoch an efjzbtcm mdpviqbf betreff please take this survey related to ticket no please do not reply to or forward this email use ticketing tool to open new ticket we value your input please help us by taking the time to fill out this short survey click here to take the survey number ticket no resolved by olckhmvx pcqobjnd short description beim ffnen oder speichern kommt immer wieder eine meldung click here to view link comments edt olckhmvx pcqobjndadditional comments hallo frau maier bitte probieren sie jetzt und geben sie bescheid ob sie zugriff haben oder nicht mfg dan gso i: 6334 xd xd xd collaboration platform for business dose not take my credentials to sync xd xd best i: 6335 xd xd xd hi xd xd xd cannot receive mail from bank of amrice cashpro online mr wanrtyg is partner member but other partner staffs receive mails from bank please resolve xd xd i: 6336 ghkkytu xd configure user login for below mail details i: 6337 os reinstall Translated 6337 : reinstall them i: 6338 reimage the laptop i: 6339 os reinstallation on laptop Translated 6339 : os reinstallation on laptop i: 6340 job name job abended Translated 6340 : job name job abended i: 6341 xd xd xd hi team xd xd delivery is not creating an inwarehouse tool and cannot see any reason why it is not creating can you please resolve this issue i: 6342 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 6343 login issue xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 6344 name lertfty zuothryrt language browser microsoft internet explorer customer number telephone summary my global telecom two in one can be connected there is signal but limited i: 6345 permission write and read xd xd location germany i: 6346 mii password reset for wiggrtgyis i: 6347 hostname erp search server server erpstartsrv exe service is down i: 6348 good afternoon noticed that rtgyon title is incorrect in skype who can correct it he is not chairman of company just president and ceo i: 6349 what is this trailing mail i: 6350 all my collaboration platform notebooks are shared with people don know did not share my notebook with them and cannot remove their shared status how is this possible i: 6351 error on erp Translated 6351 : error on erp i: 6352 ess password reset i: 6353 need to see all unread emails i: 6354 do not have access to bobj i: 6355 multiple pages print while printing single email checked the driver settings and updated the printer drivers abl eto print single word excel pdf documents when the user tries to print any email from the outlook it shows multiple pages see attachment i: 6356 xd xd xd dear all xd xd please can you explain how to delay email sending this was possible with my earlier outlook version xd xd xd with my current version outlook the delayed sending does not work if my computer and outlook are shut down email will be sent only when will restart outlook xd xd xd is there any chance to fix this xd xd i: 6357 hi please also add er rcf recruiter role to imzctxhr odmawbij and jusfrttin gtehdnyuerrf also i: 6358 hello have been unable to sign into skype for several days best debgrtybie savgrtyuille sr corporate paralegal i: 6359 hostname volume dev software on server hostname is over space consumed remaining only i: 6360 hostname oracle finance app financial management web tier epmsystem service monitor down xd hostname oracle finance app financial management java server epmsystem service monitor i: 6361 an mail from it training has email hints and tips under create signature it has link company formatheywting standard that am forbidden to see i: 6362 there were undeliverable mails returned with ethics mail request xd xd hello xd xd there were undeliverable mails returned with ethics mail request xd xd please advise xd xd i: 6363 we entered so total of order should be but erp is rounding it off to it is creating cent difference this order is one of few and is causing quite bit of re invoicing and payment rejections i: 6364 two issues xd mii asks for reason code when scrap quantity is entered as zero most operator put zero to be sure that they re not entering any scrap intended behavior is that if scrap field is blank or has zero system shouldn ask for scrap reason code xd if we enter invalid reason code the save button is disabled after warning message so operator can fix invalid data but has to close the confirmation window type information again and then enter can we fix this i: 6365 gentileza instalar guardi do banco hsbc para utiliza de transa es pela internet Translated 6365 : kindly install guardi do bank hsbc for use of transa es pela internet i: 6366 user called to know if there was an outage in usa i: 6367 xd job jobuacyltoe hxgaycze failed in job scheduler at i: 6368 xd job jobuacyltoe hxgaycze failed in job scheduler at i: 6369 xd job hostname failagain failed in job scheduler at i: 6370 xd svc now ticket found doing nothing i: 6371 xd svc now ticket found doing nothing i: 6372 xd svc now ticket found doing nothing i: 6373 unlocked all accounts on password manager i: 6374 when opening originals from engineering tool below error occurs xd xd process xd fetch originals from erp system xd xd jco error i: 6375 same issue as yesterday it called and fixed the issue but back to work today and still cannot get into email i: 6376 unable to log in to netweaver i: 6377 request to reset microsoft online services password for i: 6378 ticket update on ticket no Translated 6378 : ticket update on ticket no i: 6379 ticket update on inplant i: 6380 hello xd xd please reset password for user duffym as she has forgotten it and therefore cannot log into her interaction desktop please provide magdalena with the new password xd xd i: 6381 ticket update inplant Translated 6381 : ticket update implant i: 6382 request to reset microsoft online services password for i: 6383 we are currently unable to post inwarehouse tool doc for po please advice how to proceed i: 6384 xd job hostname failagain failed in job scheduler at i: 6385 xd job hostname fail failed in job scheduler at i: 6386 ticket update on ticket no Translated 6386 : ticket update on ticket no i: 6387 good afternoon am writing to ask about few things regarding my new mailbox the name in the email address sylvthryia is incorrect can it be amended to sylvthryia with is it possible to change my password tried to do this online in the application but it states that it is impossible would like to be able to access my mailbox using software ms office if it is possible what would be the configuration data to be used would like to update my signature could you please advise where this can be done i: 6388 userid hntubjela name nivqoxyt ivrhjmnx user is unable to create ticketing tool tickets i: 6389 nwfodmhc exurcwkm pm srujan enterprises nwfodmhc exurcwkm avsbdhyu sahryu sihtvocw yspnqxgw re engineering tool hi please go through the attachment and configure accordingly please contact us back if you still face any issue i: 6390 xd job hostname fail failed in job scheduler at i: 6391 user bghrbie crhyley has this issue excel isn working properly it keeps going to not responding have restarted several times to correct that now if work on spreadsheet save it and minimize it can open it back up have had to restart the computer and open excel again to get to the worksheet this has happened twice do you have any ideas could try i: 6392 nwfodmhc exurcwkm xd pm xd tiyhum kuyiomar xd request to reset microsoft online services password for xd hi xd xd please change your password in xd xd xd xd i: 6393 usa print check Translated 6393 : use print check i: 6394 only the highlighted attachment are showing up in my active accounts in crm phone i: 6395 hostname erp sid volume dev hd on server is over space consumed space available mb i: 6396 xd job job failed in job scheduler at i: 6397 outlook is continuously asking for password i: 6398 unable to attach document in erp Translated 6398 : unable to attach document in erp i: 6399 netweaver is locked out i: 6400 account unlock i: 6401 telephony software software not configured i: 6402 ticket update on ticket no Translated 6402 : ticket update on ticket no i: 6403 cleared skype cache files i: 6404 hello xd had never used the guest wireless access system before today when entered saw an entry in pending accounts which m not familiar with please check the attached screenshot can this be security threat can you please investigate xd i: 6405 please review sto user is receiving the error message below to please enter net price there is no average customer net price for this material vk ztfn so erp should be simulating transfer price for the material but it does not appear to be doing so xd xd xd sender reciever material created quantity requsted quantity sto number error code xd plant plant please enter net price xd i: 6406 install engineering tool Translated 6406 : install engineering tool i: 6407 der netweaver business client kann nicht gestartet werden Translated 6407 : the netweaver business client cannot be started i: 6408 currently it is impossible to enter data of cycles of the following the furnaces ald and ald xd xd same as ticket no i: 6409 erp sid account unlock and password reset i: 6410 account getting locked on windows i: 6411 supply chain software password reset i: 6412 the employee computer in mfg lunch rm is down i: 6413 deliveries mentioned below are not invoicing try to do it manual under vf errors were the billing type could not be determined block for billing the item is not relevant for billing xd xd xd xd xd xd xd xd xd need resolved before month end any questions please contact ibtvlfah dtlwscma i: 6414 hostname plm conversion server kirty alwaysupservice exe process count service is down i: 6415 unable to access drive Translated 6415 : unable to access drive i: 6416 xd job job failed in job scheduler at i: 6417 sa reports that are scheduled to run as background job show up in the erp inbox they allow you to open them and show the data is transmitted however excell hangs up and no data shows this did not occur until the upgrade occurred have already logged totally out of erp and logged in again to see if that correct the situation with no success i: 6418 attendance tool intouch clocks shows as down in application i: 6419 keine verbindung zum server kein zugriff auf laufwerke in germany Translated 6419 : no connection to the server no access to drives in germany i: 6420 laptop crash i: 6421 emea israel company company eu isr mainswitch access sw is down since at am et on i: 6422 hostname public is not available xd is there are new server name for germany or just an network issue xd when could this be solved i: 6423 tengigabitethernet connection to tech a is down on top msfc i: 6424 hello xd there is completed order form for vw visible on md mm please see attachments i: 6425 computer name agvl service tag jgqbt phone i: 6426 collaboration platform is not openning i: 6427 hi please get tghrloks jbgcvlmf user id nuerthytzg access to below folder location hostname teams globalengservices tcb nc file hostname teams globalengservices tcb nc with warm i: 6428 favor reparar pdf creator quando vou imprimir recibo da gia sp em pdf est saindo somente caracteres Translated 6428 : please repair pdf creator when i print gia sp receipt in pdf it is leaving characters only i: 6429 wrong address on kis inwarehouse tools for salsed org xd importance high xd xd kis commercial inwarehouse tools for sales org print wrong sender address which cause legal compliance error with german customs xd revers sales org address to company infrastruture gmbh wehlauerstr germany today xd xd please confrim estimated time of change in sid system aspap xd i: 6430 xd job sid arc failed in job scheduler at i: 6431 xd job sid arc failed in job scheduler at i: 6432 not able to save files on hostname there were reporting reports to be saved i: 6433 xd job sid arc failed in job scheduler at i: 6434 xd job job failed in job scheduler at i: 6435 xd xd xd hello xd xd am unable to login vpn xd it showing user name and password not matching it is not accepting my current password xd xd checked the password and it is okay xd xd please help me to resolve the issue xd xd with i: 6436 xd job job failed in job scheduler at Translated 6436 : xd job job failed in job scheduler at i: 6437 xd job job failed in job scheduler at i: 6438 hostname alwaysupservice exe wrong number of instances of process alwaysupservice exe expected instances gte but found i: 6439 xd job sid arc failed in job scheduler at i: 6440 xd job sid arc failed in job scheduler at i: 6441 what is the issue unplanned network outage at germany site formerly germany all network resources including telephony software services and the phone number for gso emea are unavailable at the moment fiber cut in the vicinity of the site has caused the issue german telekom has been contacted after the fault was identified and services are expected to be restored at am edt when did it start am edt what is the estimated time to recovery unknown at this time who and what are affected all intranet and internet resources including telephone services at the site are affected are there any known workarounds no workarounds available at the moment what is the cause suspected fiber cut questions global service organization leadership bridge line has been established in order to provide more timely updates to you this line is open to all business unit representatives as well as it management leadership bridge line will be open at am edt leadership bridge line i: 6442 xd job job failed in job scheduler at i: 6443 xd job sid arc failed in job scheduler at i: 6444 xd job sid arc failed in job scheduler at i: 6445 xd job sid arc failed in job scheduler at i: 6446 xd xd xd hello have no accesss to bobj xd xd need help xd xd i: 6447 interface fastethernet vlan lhqwxsf on company na usa usa switch cl access sw is down i: 6448 xd xd xd hallo xd xd seit dem ich mein passwort ge ndert habe habe ich keinen zugriff auf die netzlaufwerke xd vpn funktioniert glaube ich nicht richtig xd xd danke r ihre unterst tzung xd xd xd mit freundlichen gr en best Translated 6448 : xd xd xd hello xd xd since i changed my password i have no access to the network drives xd vpn doesn't work properly xd xd thank you for your support xd xd xd best regards i: 6449 xd xd xd hallo zusammen xd xd beim einloggen mit dem password management tool password manager wurde mir das konto erneut gesperrt xd bitte erneut freischalten and ein ltiges password zur anmeldung xd mir war nicht klar welches password ich verwenden soll xd xd mit freundlichen gr en best Translated 6449 : xd xd xd hello xd xd when logging in with the password management tool password manager my account was blocked again xd please activate again and an old password to log in xd I was not sure which password I should use xd xd best regards i: 6450 ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd zheqafyo bqirpxag xd hi xd ayrhcfxi zartupsw xd hello paneer xd i: 6451 we need to change the title for cuibfgna cbmqufoa in outlook to production manager can you do this i: 6452 hallo xd danke r ihre antwort xd ich habe gerade versucht aber es funktioniert nicht xd ich habe versucht mit demselben benutz namen und password das ich r sid benutz xd ich habe auch mit password daypay versucht wie hbmwlprq ilfvyodx vorgeschlafen hat xd welches passwort sollte ich benutzen xd xd xd distinti saluti mit freundlichen gr en best Translated 6452 : hello xd thank you r your answer xd i just tried but it doesn't work xd i tried with the same username and password that i use xd i also tried password daypay as hbmwlprq ilfvyodx suggested xd which password should i use xd xd xd distinti saluti, best regards i: 6453 xd xd xd hi xd xd am not able to login into attendance tool website and also it is not available on the hub for me xd xd i: 6454 we are having an issue with materials from complaints coming from other locations to plant xd very often they are in but go to normal bin as the is not printed on the transfer order xd the receivers place them into our normal bin locations xd xd examples are delivery for complaint xd xd could you pls check why the material does not go to q bin location automatically xd xd pls assign to les team i: 6455 exel file is not openning as the default programdntym to open with is changed i: 6456 installing cutview i: 6457 probleme mit vpn st hrmann niptbwdq csenjruz Translated 6457 : problem mit vpn st hrmann niptbwdq csenjruz i: 6458 add user nuksytoh whovmtez sbcheyu to ad group eagcutview i: 6459 xd xd xd hello xd xd yesterday installed the new windows update on my lumia and now the emails are not synchronized xd xd will be available in the afternoon just in case you need me xd xd best i: 6460 probleme mit schichtplanung xpugntjv zcaermdt Translated 6460 : problems with shift planning xpugntjv zcaermdt i: 6461 hello it xd xd please check why the system allows sundaycommitted date xd xd i: 6462 wie kann ich die ste freischalten xd xd mit freundlichen gr en kind Translated 6462 : how can i unlock the ste xd xd with kind regards child i: 6463 xd job job failed in job scheduler at i: 6464 xd xd xd hi it helpdesk xd xd am not able to open powerpoint slides when asked to repair there is an error message after clicking on repair please help xd xd xd xd xd i: 6465 probleme mit archiving tool bfqnvezs vwkasnxe i: 6466 probleme mit erpgui sqlmtixr urhbvfgd Translated 6466 : problems with erpgui sqlmtixr urhbvfgd i: 6467 probleme mit java xmlbfjpg yegzbvru Translated 6467 : problems with java xmlbfjpg yegzbvru i: 6468 xd xd xd hello xd can not log in on vpn server please reset my password xd xd xd i: 6469 with respect to ticket no have received an access from security team but when open data designer application receiving an error as attached to this incident have checked with mohgrtyan rds session for dev bods and the data designer is working fine in his session hence request assist at an earliest as this access is required for my kt to our upcoming project could you please help on this request i: 6470 ticket update on ticket no from wqfzjycu omleknjd i: 6471 please move stock from sales order to unrestricted stock mm pcs due to csr is not allowed to do stock movement kindly help and advise back to us aerp i: 6472 messsgeraete alkoana pdf datein kann nicht gedureckt warden pdf datei kann nicht erstellt werden Translated 6472 : messsgeraete alkoana pdf file cannot be printed pdf file cannot be created i: 6473 account lock out ad i: 6474 engineering tool business client vpn and engineering tool issue i: 6475 engineering tool loin Translated 6475 : engineering tool loin i: 6476 outlook is prompting for passwords again and again i: 6477 hello material no can not use in purchasing please help ehfvwltg eakjbtoi analyst supply planning mail select the following link to view the disclaimer in an alternate language select the following link to view the disclaimer in an alternate language i: 6478 it xd xd please kindly help resolve this ticket again wifi for company guest very slowly please advise the solution to fix it xd by the way please find attached wifi package in apac office that domestic mbps international mbps users about pax in office xd please kindly suggestion if need package change for can check other packages with local internet provider vendor xd xd i: 6479 received call hold music was playing on other side and disconnected i: 6480 xd job job failed in job scheduler at i: 6481 xd job job failed in job scheduler at i: 6482 xd job job failed in job scheduler at i: 6483 xd job job failed in job scheduler at i: 6484 xd job job failed in job scheduler at i: 6485 xd xd xd dear team xd xd in erp sid module we have two errors between goods receipt and po for po no xd po no xd xd po net price xd xd po quantity xd xd po price xd xd goods receipt price xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd usually po price and goods receipt price are the same price but these two cases is not xd please help to have check the reason i: 6486 account locked out password expired i: 6487 no response from other side i: 6488 requesting to unlock erp login account i: 6489 xd job job failed in job scheduler at Translated 6489 : xd job job failed in job scheduler at i: 6490 email address not picking up automatic i: 6491 north service am nwfodmhc exurcwkm tru hello help would you please help change the email of shipping notification for customer to yandy pan customer experience apac north team i: 6492 unable to login to erp sid Translated 6492 : unable to login to erp sid i: 6493 xd xd xd dear it xd xd would you pls help to create delivery note for sto for something error we unable to create it urgent for plant i: 6494 xd xd xd tried opening discount on my phone and it appears to want me to download this ap on my phone is that ok xd xd i: 6495 ms excel file not opening error procted view file hangs xd connected to the user system using teamviewer xd unchecked the proctected view option xd caller confirmed that he was able to ope the excel files now xd issue resolved xd i: 6496 this morning could not log in to my computer so please lock out my computer xd id omokam xd ps mizumoto xd i: 6497 user unable to hotel wi fi xd advised the user to shut down the pc for sec and restart the device xd opened network and shatryung center and enabled the wi fi connection xd caller confirmed that he was able to login xd issue resolved i: 6498 xd xd xd hello don believe my computer has downloaded the new symantec endpoint encryption see agent should be concerned yet the received the email about it almost month ago xd xd xd i: 6499 i had marftgytins emails being filtered to myself and it was removed still have emails being sent to marftgytin instead of myself and need his emails reset up in my outlook dthyan matheywtyuews sales manager gl i: 6500 xd job job failed in job scheduler at i: 6501 erp login sid missing xd connected to the user system using teamviewer xd configured the erp sid on the user pc xd caller confirmed that he was able to login xd issue resolved i: 6502 erp sid account unlock i: 6503 hi xd xd we request you to provide the details support to beacon india who is providing technical support for solidworks usage at msg design xd xd xd i: 6504 unable to access sales and markhtyeting tab i: 6505 when shatryung my screen the other person is only seeing my mouse error and beshryu screen whenever give them access to my machine the view appears please advise how to correct as do not want to give everyone access to my pc in order to have screen share i: 6506 my inbox is being overwhelmed with notification of write error these appear to be related to south amerirtca fe my userid is affiliated with an fe transaction see attached screenshot i: 6507 xd xd xd hi there get the following error when trying to submit this request can you please look into this for me markhty xd xd xd xd xd i: 6508 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6509 unable to load outlook i: 6510 request to reset microsoft online services password for i: 6511 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 6512 blank call no number no warehouse tool i: 6513 please change in mass the mm below at plant xd xd from to xd xd xd xd xd xd i: 6514 received reporting tool alert at pm on et xd xd hostname company com is connected is not connected i: 6515 xd xd xd hello need help getting my phone linked with email and skype please see the attached xd xd xd xd i: 6516 user is attempting to create stock transfer order in erp for the following situations and is receiving the errors below xd xd sender reciever material created quantity requsted quantity sto number error code xd plant plant error in net price calculation item please correct xd plant plant please enter net price xd xd could someone please review the rqfhiong zkwfqagbs and pricing to see why the errors are being received by the analyst creating the sto an average customer net price vk zttf exists for so there should be no error no average customer net price exists for so the system should automatically simulate price xd xd i: 6517 error message states the specified path does not exist i: 6518 ext since yesterday m unable to get on microsoft email usually go on the km home page then go to my bookmarkhty to where the email page is it keeps loading and doesn go to the email page i: 6519 import device type settings from to and system i: 6520 ess login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 6521 erp sid account unlock i: 6522 sometimes we need to send some material to the vendors for manufacturing different kind of new itens to company in this case when we sent the mm to the external vendor the system make two different moviments one at plant plant and another at plant plant because of this problem we cannot create nota financial toolcal and we cannot reverse the moviment i: 6523 xd job sid hotf failed in job scheduler at i: 6524 unlocked erp password i: 6525 xd job sid hotf failed in job scheduler at i: 6526 xd job sid hotf failed in job scheduler at i: 6527 xd job sid hotf failed in job scheduler at i: 6528 user called in for an update i: 6529 xd xd xd hello xd xd would like login and password for our partner from dp technology for tomorrow xd xd is it possible to create it aerp xd xd i: 6530 when creating the delivery note it reflects the correct quantities but when saving it defaults to full quantities attached is listing of what line items and quantities are needed shipment needs to be made to day customer is in need i: 6531 i have just discovered the lead forms for both road king and beyond evolution are not working both pages can be found by clicking the banners on the english homepage then try clicking the call to action buttons see attached also there is page in qa used for uacyltoe hxgayczeing it is also not working xd xd content company en recs uacyltoe hxgaycze responsive recs html xd xd i: 6532 computer loading temp profile whenever user is logging in with his id and password xd xd user id bhergtyemm i: 6533 post login screen receiving attached error xd xd reinstalled java to the recommended version and bit xd deleted engineering tool install from programdnty data folder and retried install still no go xd xd verified login ability to sid system with same id and password xd xd please contact ertnhxkf gwjibhxm to get access to this new pc i: 6534 xd xd xd hi xd xd work at the usa il plant when we enter orders in erp they would always kick out the delivery note for some reason they have stopped printing raifstow gfeymtql and both are not receiving the delivery notes for the reconditioning orders have screen shot below that shows that am set up for printer output device qv can you help to make our delivery notes automatic like previously xd xd i: 6535 unable to launch hr tool etime i: 6536 i cannot open pptx file that was attached to an email gives repair error i: 6537 unable to see fioghtna wightygins emails i: 6538 vip unable to login to the hub i: 6539 frequent account lockout Translated 6539 : frequent account lockout i: 6540 xd xd xd help xd xd plaese create delivery note for material to be shipped to plant xd xd please also advice why apo does not work correct and what corrective actions are required xd xd franhtyu xd xd fyi what reason caused this error did you investigate xd xd kind i: 6541 ticket update inplant Translated 6541 : ticket update implant i: 6542 unable to login to dell tablet Translated 6542 : unable to login to dell tablet i: 6543 xd xd xd hello xd xd always get the error of limited connectivity even after having good network of telecom vendor xd xd xd xd xd xd xd xd i: 6544 unable to download software i: 6545 name mikhghytr karaffa language browser microsoft internet explorer customer number telephone summary requesting drawing access in erp modeling majetkm i: 6546 nwfodmhc exurcwkm xd pm xd mkjubdti fbusqrlt xd tiyhum kuyiomar xd request to reset microsoft online services password for xd hi rodny xd xd please change your password in xd xd xd xd i: 6547 ticket update on inplant i: 6548 xd xd xd has this been remapped xd xd i: 6549 delivery notes has generated delivery with wrong delivery pieces xd xd one of the colleague generated dn with actuall pieces pcs with mm xd but when the delivery note was printed we notices that it shows the deliverable pieces as pcs instead of pcs xd erp should not allow this xd there was earlier kind of issue reference ticket inc xd i: 6550 unable to log in to skype Translated 6550 : unable to log in to skype i: 6551 german call caller disconnected after hearing english i: 6552 outlook not responding Translated 6552 : outlook not responding i: 6553 software installation i: 6554 cwuospin nbhoxqpe pm chukhyt mcnerny facility nwfodmhc exurcwkm amar re desk phone help desk please see chukhyt request sincerely stanfghyley guhtykes fmp facilities manager world headquarters i: 6555 need to add additional mailboxes i: 6556 ticket no ticket update Translated 6556 : ticket no ticket update i: 6557 xd job job failed in job scheduler at i: 6558 erp connections issue Translated 6558 : erp connections issue i: 6559 on erp sid sid want to reset my password Translated 6559 : on erp sid sid want to reset my password i: 6560 kiosk user account expired onjzqptl kgxmisbj i: 6561 account unlock i: 6562 cannot open attachments in owa shows white screen when opening i: 6563 cannot access crm my contact info is i: 6564 logon balancing error on erp Translated 6564 : logon balancing error on erp i: 6565 performance improvement for supervisor dashbankrd xd xd i: 6566 please unlock my erp account know the password i: 6567 skype will not let me sign in says the address you typed is not valid i: 6568 erp sid password reset Translated 6568 : erp sid password reset i: 6569 xd job sid arc failed in job scheduler at i: 6570 xd xd xd hello xd xd could you please unlock user id teufeae upiyobvj lwohuizr xd xd our it hotline cannot be reached xd xd i: 6571 xd job sid arc failed in job scheduler at i: 6572 guten tag ganz wichtig meine kompletten daten sind gel scht selbst in der cloud wurde der ordner vw team komplett gel scht bitte den vw ordner wiederherstellen mit datum von gestern wenn das geht ganz wichtig mit freundlichen gr en uwncfovt vxjbunfi sales engineer mail company deutschland gmbh gesch ftsf hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 6572 : hello, very important, all my data has been deleted even in the cloud the vw team folder has been completely deleted please restore the vw folder with the date of yesterday if that works very important, best regards uwncfovt vxjbunfi sales engineer mail company deutschland gmbh business hrer rfwlsoej yvtjzkaw phvkowml azbtkqwx naruedlk mpvhakdq this communication is intended solely for the use of the addressee and may contain information that is confidential or, in accordance with applicable law, the distribution or duplication of this communication by persons is excluded The recipient is not the intended recipient is strictly forbidden. If you received this message by mistake, please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 6573 xd job sid arc failed in job scheduler at i: 6574 xd job job failed in job scheduler at i: 6575 xd job job failed in job scheduler at i: 6576 xd job sid arc failed in job scheduler at i: 6577 system sid sid sid sid hrp other sid and sid xd xd enter user id of user having the issue vv xd xd transaction code the user needs or was working with plm general plm change coordinator spro xd xd describe the issue can you please create an user account for the erp incident in sid and sid please set the user type to dialog since erp will need business client access to create er please open the wts and http connection also they would need an active directory account and please give access to roles plm general plm change coordinator spro xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket external erp user xd xd provide access the same as this other user gthydanp i: 6578 xd job job failed in job scheduler at i: 6579 hello xd xd could you please run the job jb cust db file xd xd i: 6580 on transactions and user can no longer process transactions please assist in restoring this i: 6581 hello it service my manager serthyei needs to forward the pthsqroz moedyanvess all the quote drawings are being created and linked to the mms as our standard procedure for un known reason this mm is not showing the linked drawing moreover serthyei was not able to add the document number manually please fix this we need to forward the npc towards successful manufacturing crtgyerine serthyei i: 6582 erp team we need to update the report zpd upload time for erp hcm because of the new digits employee numbers please see below srgtycha von jfcrdavy sxpotjlu gesendet dienstag an weszfyok fbadnjhu jywvemun qngschtz pesylifc wnyierbu lixwgnto krutnylz puxsvfwr cwkjruni betreff aw inc comments added hallo zusammen im erp upload programdntym zpd upload time muss die pernr ebenfalls von stellen auf die max nge von stellen angepasst werden bitte entsprechend veranlassen mit freundlichen gr en jfcrdavy sxpotjlu diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 6582 : erp team we need to update the report zpd upload time for erp hcm because of the new digits employee numbers please see below srgtycha from jfcrdavy sxpotjlu sent Tuesday to weszfyok fbadnjhu jywvemun qngschtz pesylifc wnyierbu lixwgnto krutnylz puxsvf together upload programdntym zpd upload time, the pernr must also be adjusted by places to the maximum number of places According to the applicable law, the distribution or reproduction of this communication by persons who are not the intended recipients is strictly prohibited. If you have received this communication by mistake, please notify the sender and file this message company posts select the following link to view the disclaimer in an alternate language i: 6583 account locked i: 6584 xd job job failed in job scheduler at i: 6585 datenbanken lassen sich noch nicht ffnen xd habe pc zuvor neugestartet Translated 6585 : databases cannot yet be opened xd restarted pc beforehand i: 6586 zugriff auf betriebsmittedatenbank ce cs funktioniert nicht Translated 6586 : access to operating center database ce cs does not work i: 6587 can posting in code miro error message is inwarehouse tool document still contains message about po i: 6588 xd job job failed in job scheduler at Translated 6588 : xd job job failed in job scheduler at i: 6589 bitte den def monitor von der ftungssteuerung im heizraum tauschen xd kontakt ssler christgrytian Translated 6589 : please replace the def monitor of the ventilation control in the boiler room xd contact ssler christgrytian i: 6590 xd xd xd good morning xd xd please can you usa access to myself and gydtvnlw miepcwzf to enable us to do the post goods issues for return deliveries nieghjyukea for angelique and coetzk for myself xd xd kind i: 6591 outlook hangs does not open Translated 6591 : outlook hangs does not open i: 6592 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am est xd xd scheduled maintenance power no yes no na company power yes provider power xd xd scheduled maintenance network no yes no na company maint no yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in yes yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor na xd xd notified gsc yes yes no na cert started na yes no na xd xd additional diagnostics i: 6593 xd job job failed in job scheduler at i: 6594 xd job job failed in job scheduler at i: 6595 r maus defekt Translated 6595 : r mouse defective i: 6596 pc an reinecker wzs wahrscheinlich defekt maschine steht Translated 6596 : pc on reinecker wzs probably defective machine is i: 6597 erp sid account locked i: 6598 outlook is prompting for password i: 6599 drucker geht nach tonerwechsel nicht mehr Translated 6599 : printer does not work after a toner change i: 6600 xd job job failed in job scheduler at i: 6601 l fter defekt rechner r video berwachung Translated 6601 : l fter defective computer r video surveillance i: 6602 requested for usb keybankrd and external monitor for new desk space Translated 6602 : requested for usb keybankrd and external monitor for new desk space i: 6603 he get the error documenttype no available for backend system see attached error messages in purchasing xd for other users it works seems to be something in his usersettings i: 6604 setup rechner ewew wrcktgbd wzrgyunp Translated 6604 : setup computer ewew wrcktgbd wzrgyunp i: 6605 hallo herr bghakch xd ich ben tige netzwerkkabel r den teleservice bei roboworker xd ben tigt werden und die dauerhaft angeschlossen bleiben xd xd Translated 6605 : hello mr bghakch xd i need network cables for the teleservice at roboworker xd and which remain permanently connected xd xd i: 6606 probleme mit lan beschprechungsraum puxsvfwr cwkjruni Translated 6606 : problems with lan meeting room puxsvfwr cwkjruni i: 6607 i have issue when try to create oppurtunities on crm didn see any account name normally it working on connect and engineering tool please help to solve this issue i: 6608 only pdf got converted and accessible model and dxf are not accesible xd xd i: 6609 xd xd xd dear sir mam xd xd am facing issue with attendance tool the following message is showing and it is not showing in single sign in portal also xd xd kindly help me to resolve the issue xd xd xd i: 6610 account locked in ad i: 6611 name wnorzsyv mdflqwxg language browser microsoft internet explorer customer number telephone summary after changing my login id password in password management tool password manger which was successful restarted my system outlook skype is popping up with password request but not logging in i: 6612 unable to send or receive email i: 6613 windows account locked i: 6614 i am unable to login to attendance tool using single logon portal link Translated 6614 : i am unable to login to attendance tool using single logon portal link i: 6615 xd job job failed in job scheduler at i: 6616 xd job job failed in job scheduler at Translated 6616 : xd job job failed in job scheduler at i: 6617 xd job job failed in job scheduler at i: 6618 xd job hr tooldplcmmaninp failed in job scheduler at i: 6619 windows account locked i: 6620 unable to login to engineering tool i: 6621 unable to open outlook i: 6622 unable to login to engineering tool i: 6623 please attend the below mentioned problem at the earliest system name awyw user name talagrtymr problem display not coming on monitor system is getting on and off continiously best i: 6624 contact phone system windows error messages please refer to attachment i: 6625 xd xd xd hi it help xd would you please help set the email of shipping notification for customer i: 6626 what type of outage network circuit power please specify what type of outage xd xd top cert site na yes no na xd xd when did it start pm est xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in no yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor swisscom xd xd notified gsc yes yes no na cert started naa yes no na xd xd additional diagnostics i: 6627 xd job job failed in job scheduler at Translated 6627 : xd job job failed in job scheduler at i: 6628 pc defekt ist selbstst ndig runter gefahren und sst sich nicht mehr starten xd bitte um erledigung durch himghtmelreich Translated 6628 : pc defective shut down by itself and can no longer start xd please get it done by himghtmelreich i: 6629 the same set of results is returned regardless if leaving the field blank or selecting any material i: 6630 xd xd xd hello xd xd am not able to open jpg image files on my pc xd pl help xd xd i: 6631 lorwsf usa robot outlook did not complete on time had to be kirtyled alert in reporting tool since pm et i: 6632 xd job job failed in job scheduler at i: 6633 xd job job failed in job scheduler at Translated 6633 : xd job job failed in job scheduler at i: 6634 hi all we had occurences where people got user authentication failed error tortm hortl howthrelte yqxlbswt eimhxowu tnhymatj unresolved ligsnzur smcxerwk grargtfl unresolved could you please check the root cause and unlock the operators passwords so they can log into mii and report production for lee we were able to get through to password management tool and unlock the password he will try in mins to see if it works for the others got failed to verify password on active directory error when we tried to get into password management tool it helped unlock tony password but we got the same error after minutes was only able to resolve tortm hortl password issue before the end of the shift i: 6635 xd job hr tooldplcmmaninp failed in job scheduler at i: 6636 dell blue screen error user has tried to recover and safe mode and restart all the opetions done help service tag sjv asset tag os win c i: 6637 unable to launch outlook i: 6638 distributor tool page error Translated 6638 : distributor tool page error i: 6639 name stefdgthyo language browser microsoft internet explorer customer number telephone summary did we send out automatic erp gui upgrade i: 6640 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm on et xd xd scheduled maintenance power na yes no na company power provider power xd xd scheduled maintenance network na yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email na yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc na yes no na cert started yes no na xd xd additional diagnostics i: 6641 vpn connection issues xd connected to the user system using teamviewer xd changed the default browser xd advised the caller to logon to the company vpn xd caller confirmed that he was able to login xd issue resolved xd i: 6642 xd job hostname fail failed in job scheduler at i: 6643 mobile device activation for the new iphone i: 6644 usa plant work center preeco showing in mentioned field xd xd for reference xd xd collaboration platform decimal values in daily qty confirmed andsection id bcc ab bc deae andpage id fccee bcf a caf andend i: 6645 in supervisor dashbankrd the otd to frozen date alert is not populating correctly xd xd for reference xd xd collaboration platform re otd to frozen date alertandsection id bcc ab bc deae andpage id aaplant de ac dacafb andend i: 6646 email from kanchi usa on how confirmation times are calculated in mii xd xd in one example kahrthyeui found out that mii was using work center or factory calendar excluding weekend time from calculation but in other cases it was not xd xd more details on page xd xd xd collaboration platform re time calculations in erp miiandsection id bcc ab bc deae andpage id ec e fa andend i: 6647 global erp crm please investigate why agbighyail espinosa employee account in erp crm is not recognized as an employee please refer to the screenshots in the attached email wdkaoneh unqlarpk is an employee but her employee account in erp crm is not displayed if you search using role is employee you can only find her employee account in erp crm if you don specify role is employee i: 6648 erp mii xd xd we can search machine numbers by typing work center numbers in the pop up box of machine field this works in time event and normal confirmation but does not work in collective header level i: 6649 xd job hostname fail failed in job scheduler at i: 6650 xd xd xd hello xd it appears don have access to change any values in the conditions tab please review for the issue as need to complete this quote and convert to usd kg instead of rub kg xd xd xd xd i: 6651 the i: 6652 ticket update on ticket no Translated 6652 : ticket update on ticket no i: 6653 quadra chek pc in the eaymvrzj bumzwtco will not start power is connected but nthing when button is pressed i: 6654 xd xd xd hello it help xd xd since the owner has left the company please reallocate the ownership of this subsite to my name i: 6655 stdezpqw bkmeuhfz has never been able to open any kind of files from collaboration platform it keeps on asking her for email address and password and even after entering it keeps coming back i: 6656 xd xd xd dear it xd either cannot access to company collaboration platform or after the company collaboration platform page stuck at blank page of outlook office com as shown below xd xd xd xd xd xd i: 6657 xd xd xd hello xd xd please review the quantity on the attached order acknowledgement xd in the quantity column the weight of kg is correct xd in the description field the qty is kg this is incorrect xd correct the quantity value to be kg in both areas xd xd i: 6658 unable to load collaboration platform i: 6659 intermittent flap in tcl link tcloc i: 6660 please review the approver level for stefyty ross director of sales at times am having to approve the same credit memo to times in workflow this should not be happening i: 6661 unable to login to the replacement laptop as its showing no connection to server i: 6662 xd job job failed in job scheduler at Translated 6662 : xd job job failed in job scheduler at i: 6663 account locked i: 6664 network team xd xd kindly look into the below issue xd xd skype connectivity is flickering automatically sign out and signing in back no sfb online outage from office server end xd xd issue is with multiple user kindly keep the ticket priority as sev till the issue is resolved xd i: 6665 xd xd xd hello xd xd am unable to access the below kindly do the needful xd xd xd xd i: 6666 the tam sproc is incorrectly inner joining previous ytd revenue when it should be left joining so that it wont result in an empty result set if there is no previous revenue aka the first period of financial toolcal year i: 6667 hello xd xepcsrvh tbsokfyl for several days cannot log into her workstation because telephony software says it is used but does not specify by whom screenshot in the attachment the station she wants to log into is hers and she had always used please advise i: 6668 when send the input to download drawing always get reply email not sent but still get the email for example below input xd xd xd mail inputs xd xd sales doc xd delivery doc xd billing doc xd purchasing doc xd pur sch agr xd mat drawing xd doc num xd language xd download flag xd xd xd xd the document number has special material in it which has pdf drawing when send the above input expect it sends email and it definitely sends the email fine however the reply get from erp always is email not sent which does not make sense as do get the email xd important the downloading of file to ftp site works fine it is just not returning valid message even when it successfully send the email xd i: 6669 unable to login to erp sid Translated 6669 : unable to login to erp sid i: 6670 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6671 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6672 hello need email account tabs removed from my main email and then new ones added needs to be removed hntl usa grind hntl usa grind na westcoast rrc na westcoast rrc ones to be added i: 6673 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 6674 the features on the road king page are not expanding on click there is div container that is supposed to open up and show additional content this is no longer working xd xd page xd xd xd xd see screenshot attached i: 6675 erp sid password reset Translated 6675 : erp sid password reset i: 6676 xd xd xd hallo meine herren xd xd ich kann unsere vpn nicht benutzen xd folgende fehlermeldungen habe ich bekommen xd xd mal kommt diese xd xd bei dritte probieren xd xd benutzername und kennwort war in ordnung xd bitte es kontrollieren und sen xd xd danke xd xd dv zlettel mit freundlichen gr en best Translated 6676 : xd xd xd hello my gentlemen xd xd i can't use our vpn xd i got the following error messages xd xd times this xd xd try third xd xd username and password was ok xd please check it and send xd xd thank you xd xd dv Note with kind regards i: 6677 unable to log in to erp sid Translated 6677 : unable to log in to erp sid i: 6678 wznkpjis rantlypb sc tsrp sr ehs analyst i: 6679 user not able to connect to drive i: 6680 xd xd nwfodmhc exurcwkm xd pm xd bmhxwvys tdmgolwn xd tiyhum kuyiomar xd re sabrthy request to reset microsoft online services password for xd hi suhrhtyju xd xd please reset your password in xd xd xd i: 6681 collaboration platform issue i: 6682 erp sid account unlock and password reset i: 6683 xd xd nwfodmhc exurcwkm xd pm xd bmhxwvys tdmgolwn xd tiyhum kuyiomar xd re sabrthy request to reset microsoft online services password for xd hi suhrhtyju xd xd please reset your password in xd xd xd i: 6684 xd xd xd can make skype call through my pc can hear them and they can hear me xd xd i: 6685 name mitctdrh whaley language browser microsoft internet explorer customer number telephone summary erp issue cant login login not available i: 6686 xd xd xd hi xd please see attached symantec message keep getting every time switch my lap top on xd xd i: 6687 windows account lockout i: 6688 unable to boot system to windows i: 6689 netweaver password is not working Translated 6689 : netweaver password is not working i: 6690 bluetooth mouse is not working i: 6691 unable to login past see Translated 6691 : unable to login past see i: 6692 incident overview we have detected at least occurrences of your firewall company internal asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following an infection on this host misconfigured firewall misconfigured host port scan authorized or unauthorized we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely secureworks soc technical details historically there have been various worms malware that have used ports and to propagate examples include blaster worm msblast lovsan welchia nachi reatle port microsoft epmap end point mapper also known as dce rpc locator service port netbios netbios name service port netbios netbios datagramdnty service port netbios netbios session service port microsoft ds smb file sharing additional information on these ports and best practices can be found at the following sites references event data related events event id event summary internal outbreak for tcp occurrence count event count host and connection information source ip source hostname hostname source port destination hostname apusm destination port connection directionality internal protocol tcp device information device ip device name company internal asa company com log time at utc action blocked cvss score scwx event processing information sherlock rule id sle inspector rule id inspector event id ontology id event type id agent id event detail asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside i: 6693 downgrade to ie Translated 6693 : downgrade to ie i: 6694 ess password reset Translated 6694 : ess password reset i: 6695 warehouse tool quality issues when high link utilization at usa i: 6696 account locked out i: 6697 blank call gso i: 6698 unable to connect to wifi i: 6699 monitor orientation error Translated 6699 : monitor orientation error i: 6700 company owned iphone stolen i: 6701 microsoft password reset i: 6702 name inhekdol anvqzdif language browser microsoft internet explorer customer number telephone summary please call aerp spengineering toolometer computer is down no foundry posrt floor samples can be analyzed will have to shut down posrting floor critical i: 6703 please get some ramdnty for me Translated 6703 : please get some ramdnty for me i: 6704 etime is not working Translated 6704 : etime is not working i: 6705 please check josh in the phones i: 6706 setup access for ethics i: 6707 server migration germany we are not able to access any files in folder ce cs at the new server i: 6708 source ip source hostname ch center com destination ip destination hostname android dedcea system name user name pethrywr sahl sghtyhlp location koenigsee sms status no updates field sales user yes no no dsw event log see below event data related events event id event summary denied icmp trafficdenied icmp type code occurrence count event count host and connection information source ip source hostname internetsurvey erratasec com source ip geolocation atlanta usa connection directionality incoming protocol icmp device information device ip device name company internal asa company com log time at utc action blocked cvss score scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail asa denied icmp type code from on interface outside i: 6709 no access to data on the server can proceed customer orders i: 6710 when trying to attach tax exemption forms to the customer account in erp am not able to access the network drive they are stored on and am receiving an error message have attached the message to this incident am trying to access the drive i: 6711 user has questions on the use of password management tool password manager i: 6712 at the header get this pop up erp gui security that says the system is trying to create the file xd xd erp erp gui confirmationofhpcpo msg xd xd in the directory xd xd erp erp gui xd xd do you want to usa the permission to modify the parent directory and all its subdirectories xd xd and gives me choice of allow deny or help xd xd cannot open the attachment xd i: 6713 thomklmas is replacing current laptop i: 6714 not showixepyfbga wtqdyoin drive at all i: 6715 xd xd xd kind Translated 6715 : xd xd xd Kind i: 6716 ticket update on inplant i: 6717 hello xd xd my password is locked when log in company network have to sign in i: 6718 audio not working Translated 6718 : audio not working i: 6719 erp blank screen Translated 6719 : erp blank screen i: 6720 unable to start the computer its showing startup repair i: 6721 xd job job failed in job scheduler at Translated 6721 : xd job job failed in job scheduler at i: 6722 the i: 6723 erp sid password reset requested by ughzilfm cfibdamq i: 6724 the is file attached to crm am trying to work on and it has rar as the extension cannot open this file and do not know what rar file is i: 6725 hi please provide read and write access of following folders in drive pu coating data base database production data day wise pu coating data base database production data month wise pu coating data base database pu production database computer name and user id details are as per the below list slno system number user d access read write awyw awysinic sbfhydeep kurtyar pu coating and grinding operations i: 6726 unable to outlook i: 6727 i need my password set for the quality assurance area sid i: 6728 bitte einen arbeitszeitplan erstellen r die mitarbeiterin rnibmcve xukajlvg pers nr sollarbeitszeit woche stunden arbeitstage dienstag donnerstag samstag start Translated 6728 : please create a work schedule for the employee rnibmcve xukajlvg pers no target working time week hours working days tuesday thursday saturday start i: 6729 account locked in ad i: 6730 ticket update on ticket no Translated 6730 : ticket update on ticket no i: 6731 xd job job failed in job scheduler at Translated 6731 : xd job job failed in job scheduler at i: 6732 skype disconnecting of skype calls more then times in minutes from koenigsee to germany during conference call xd also internetconnection is very slow i: 6733 account getting locked each i: 6734 preciso entregar as declara es o programdntya ted o est funcionando Translated 6734 : precise deliver as stated is either programdnt already or is working i: 6735 vip symantec login does not synch passwords through hitacni password system how to update and synch symantec password i: 6736 account locked in ad i: 6737 xd job job failed in job scheduler at i: 6738 freigabe durch hr grergtger Translated 6738 : Approval by hr grergtger i: 6739 t please set back this document to status dispo avfertigungszeiten arbeitsplaner arbeitssteuerer te beschichtung te r schneidplatten te sk pvd beschichten auf metaplasanlage xls Translated 6739 : t please set back this document to status dispo avproduction times work planner work controller te coating te r cutting plates te sk pvd coating on metaplas system xls i: 6740 sid erp production account locked out i: 6741 xd job job failed in job scheduler at i: 6742 hello team could you please reset my password for the erp user vvkthyiska by mistake blocked my account entered times the wrong password i: 6743 could you please advise what steps should take to allow the attached spreadsheet to refresh data from crm below is the error message that get when open and enable content mictbdhryhle burnhntyham regional key account manager msc east coast i: 6744 xd xd xd hello xd xd don have archive emails the lauacyltoe hxgaycze can found is from and should be able to see emails from xd my local pc support ojrplsmx wslifbzc already checked it and he can find it as well xd xd urgently need emails from xd please advise xd xd xd xd best i: 6745 xd job job failed in job scheduler at Translated 6745 : xd job job failed in job scheduler at i: 6746 password misplaced i: 6747 sehr geehrte damen und herren xd xd nnen sie mich bitte zu den edi bestellungen der ksb ag kurz anrufen xd xd xd freundliche gr kind Translated 6747 : dear ladies and gentlemen xd xd please give me a short call about edi orders from ksb ag xd xd xd friendly gr child i: 6748 xd xd xd hi can we run the deployment once for the german language for the former germany location xd for the following targets xd xd efdl xd efdl xd efdw xd efdw xd efdl xd efdl xd edfl xd edfl xd edfw xd edfl xd edfw xd edfw xd edfw xd edfl xd efdw xd xd please let me know when we can plan this xd xd as the location is just moved this weekend we can do it manually right now xd xd i: 6749 xd xd xd dear it team xd xd please help reset password for user karnos xd xd i: 6750 ic xd welcome our next available agent will be with you shortly xd all agents are busy assisting other customers xd interaction alerting agent xd website visitor has joined the conversation xd gxuvbcpr libcktnm xd hello xd dwfiykeo argtxmvcumar xd hello xd gxuvbcpr libcktnm xd m sorry to disturb you for such an issue but m no more able to find folder in my outlook xd don think deleted it but can see it anymore xd dwfiykeo argtxmvcumar xd can have access to your system please xd xd gxuvbcpr libcktnm xd sure what way xd teamviewer or skype xd dwfiykeo argtxmvcumar xd team viewer please xd gxuvbcpr libcktnm xd id xd pw xd gxuvbcpr libcktnm xd hello xd gxuvbcpr libcktnm xd the folder can find anymore is named transportation markhtyet and it was just below transportation on xd one xd dwfiykeo argtxmvcumar xd he xd ic xd website visitor has left the conversation xd i: 6751 delete the charm as the configuration is done already and it was issue in the bex report i: 6752 xd job job failed in job scheduler at i: 6753 unable to login to citrix Translated 6753 : unable to login to citrix i: 6754 probleme mit login ypladjeu wzfryxav Translated 6754 : probleme mit login ypladjeu wzfryxav i: 6755 probleme mit outlook dtlmbcrx mwuateyx i: 6756 drucker funktioniert nicht puxsvfwr cwkjruni Translated 6756 : printer does not work puxsvfwr cwkjruni i: 6757 location germany coating department cvd xd xd example batch it happens regularly xd xd every order of miss the confirmation packing fhurakgsl mldufqov in eu tool german packen zum beschichten however it was confirmed in bls usually confirmations done in bls are transfered automatically into eu tool production planner need to close these gaps now by manually confirming missing process steps the incident has also impact on our performance indicators as time for packing is not credited in the system xd xd batch is current example the issue arised already in the past xd xd i: 6758 xd xd xd please find the snap shot of the screen xd xd am unable to open the url xd xd xd i: 6759 erp sid account locked i: 6760 xd xd xd hello xd xd system disk of server hostname is full please check xd it is the virtual center server xd i: 6761 bitte scghhnellstm glich pers nliches laufwerk adelhmk wiederherstellen xd xd personal drive adelhmk unavailable after server migration Translated 6761 : please restore personal drive adelhmk as soon as possible xd xd personal drive adelhmk unavailable after server migration i: 6762 xd job job failed in job scheduler at Translated 6762 : xd job job failed in job scheduler at i: 6763 xd xd xd good day all xd xd am having problems with crm the system does not open and does not prompt for password xd seemor current month outlook does not appear on the screen xd xd kind i: 6764 i have no where to insert an amount to allow me to ship can be reached at i: 6765 xd xd xd hallo xd xd beim scannen findet der drucker em die voreingestellte adresse nicht xd xd mit freundlichen gr en best Translated 6765 : xd xd xd hello xd xd when scanning the printer em does not find the preset address xd xd Yours sincerely i: 6766 the attachements are each of the pos error message shown in miro they cannot be posed in erp for same problem please help settle them i: 6767 sound not working i: 6768 hello we ran report with sales person name as atuldhy gurpthy however we got below reports which are not matching to the user searched kindly check best i: 6769 since telephony software software upgrading if input number or letter it get double the show is two duplicate numbers for example enter shows as pls find attachment for printerscreen please help to solve as soon as possible i: 6770 xd xd xd hallo xd xd ich kann keinen exel anhang ffnen auch nicht wenn ich diesen speicher und dann ffne xd xd mit freundlichen gr en best Translated 6770 : xd xd xd hello xd xd I can't open an Excel attachment even if I save this and then open it xd xd with best regards i: 6771 hello it various of our users are linked to the network but cannot log into erp or get onto the local network drive to access the files do to however are linked on the network they can use internet explorer like users andthyerh cvdebrc vvmathkag with username vanthyrdys can access every system without any issues best i: 6772 xd job job failed in job scheduler at i: 6773 hours punched on task are not visible in kpm i: 6774 e label dat ebhsm dcc on server ebhsm is over xd space consumed space available g i: 6775 f label dat rqxsm dced on server rqxsm is over xd space consumed space available g i: 6776 g label wsp ecaa on server hostname is over xd space consumed space available g i: 6777 the i: 6778 xd job job failed in job scheduler at i: 6779 setup new laptop r roboworker qidgvtwa qvbutayx i: 6780 hello we use our printer rn germany fm for printing of production papers and drawings in one step at the moment we have very bad quality on the drawings and production papers we changed the toner the toner is the original hp same as the printer our it tewgersy tgryudf checked the printer also regarding his checking the printer works correct we did uacyltoe hxgaycze print from word good quality uacyltoe hxgaycze print form erp bad quality regarding his suggestions should we check the print paramdntyeters of erp could you recheck this please was there change i: 6781 setup new ws sqlmtixr urhbvfgd i: 6782 xd users virakv ping awysv xd xd pinging awysv company com with bytes of data xd request timed out xd request timed out xd request timed out xd request timed out xd xd ping statistics for xd packets sent received lost loss xd i: 6783 xd xd xd hello xd had construct with mbb in erp layout display options with the name mbb richthammer since today can choose this layout anymore only one layout could collect but it not one had created xd xd xd the layout should look like this xd xd but at the moment it look like this xd xd can you please help me to get the layout mbb richthammer back xd i: 6784 xd job job failed in job scheduler at i: 6785 help to update the profile and data backup from old pc to new pc i: 6786 bildschirm im ckmeldeterminal gegen ber kln reinigungsanlage defekt Translated 6786 : The screen in the ckm reporting terminal across from the cleaning system is defective i: 6787 xd xd xd hello help xd xd customer master india is not getting updated with lauacyltoe hxgaycze mail since morning xd xd xd i: 6788 xd job hostname fail failed in job scheduler at i: 6789 xd xd xd hello xd xd when use the login xd would you be so kind to help me xd xd xd best i: 6790 please provide details of the issue xd windows i: 6791 xd xd xd dear sir xd xd please add the office printer which is connected with company vpn in my new laptop xd xd i: 6792 hi mr ofuhdesi rhbsawmf is not able to login ess portal please reset the password and share it with his manager emp no name useid manager ofuhdesi rhbsawmf vvthuenka ebkfwhgt flapokym with i: 6793 hr tool java doesn work Translated 6793 : hr tool java doesn work i: 6794 wegen file server austausch kein zugriff auf datenbank glich eemw eemw eemw bitte hr sudghnthdra mit kontaktieren eilig Translated 6794 : due to file server exchange no access to database like eemw eemw eemw please contact hr sudghnthdra with hurry i: 6795 kein zugriff von abteilung ce abstech eemw auf datenbanken betap profil betapdachform betapfasen kontakt sudghnthdra Translated 6795 : no access from department ce parting eemw to databases betap profile betap roof shape betapfasen contact sudghnthdra i: 6796 xd xd xd hello xd could you please help me on unlocking the erp it is blocked for entering wrong password xd xd xd xd best i: 6797 xd job job failed in job scheduler at i: 6798 am not able to open any dash bankrd and hr tool site through link web link can you kindly check i: 6799 windows account locked i: 6800 unable to open permission protected mails i: 6801 employee id Translated 6801 : employee id i: 6802 as the two attachment shown when pose this two po items erp give the error message says the profit center is different so can pose ir in miro now please help settle them i: 6803 xd xd xd dear it xd xd we use chk want to confirm mm but erp shows below error pls help to check and fix i: 6804 xd xd xd hi help xd xd have changed the password today except for the below xd please help me change for sid too xd xd xd i: 6805 i used to be able to create pr for cost center xzn and xzs but now it does not worl could you pls help to find out why it shows purchaising accross comapny is not allowed i: 6806 my engineering tool shows error message as dataservices taskmgr getassignments transaction process id was deadlocked on lock communication buffer resources with another process and has been chosen as the deadlock victim rerun the transaction xd xd please help i: 6807 windows password expired i: 6808 windows account locked i: 6809 xd job job failed in job scheduler at i: 6810 xd xd xd hello what apps should we be using on out phone iphone xd skype or business skype collaboration platform or business collaboration platform and should back our phone on icloud collaboration platform or our computer xd xd best i: 6811 xd job job failed in job scheduler at i: 6812 please provide details of the issue xd windows i: 6813 ess login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 6814 login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 6815 xd job job failed in job scheduler at i: 6816 xd job job failed in job scheduler at i: 6817 usa dnb vpn rtr is down since pm on et router went down during the sup engine replacement activity as per chg xd i: 6818 gigabitethernet on company eu deu ds germany edksw stack sw company com connected to ap company de germany asid is flapping xd attached monitoring engineering tool i: 6819 hostname plm wwi uacyltoe hxgaycze wwisvc exe wrong number of instances of process wwisvc exe expected instances gte but found i: 6820 xd job snp heu regen failed in job scheduler at i: 6821 xd job bwhrattr failed in job scheduler at i: 6822 xd job job failed in job scheduler at i: 6823 xd job job failed in job scheduler at Translated 6823 : xd job job failed in job scheduler at i: 6824 xd job job failed in job scheduler at i: 6825 emea israel company company eu isr mainswitch access sw is down since at am et on i: 6826 xd job snp heu regen failed in job scheduler at i: 6827 india india kirty interface gigabitethernet uplink to core admin switch on company ap ind kirty pu stack sw is down i: 6828 xd job mm zscr wkly rollfgyuej failed in job scheduler at i: 6829 dear it is there any issue with the drive in na cannot get any connection other drives in eu are running well nter webfnhtyer manager sourcing company shared services gmbh gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq i: 6830 weekly reboot of csqe prod servers xd xd hostname xd hostname xd i: 6831 after the monthly reboot of hostname chkdsk is running from around pm on et xd currently chkdsk is verifying files stage of with percent complete i: 6832 company ap chn apac company psf access sw company com is down since pm on et i: 6833 ess login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 6834 user unable to login to erp Translated 6834 : user unable to login to erp i: 6835 observing below alert in monitoring tool since pm on et monitoring engineering tool attached xd volume label wsp ecaa on server hostname is over space consumed space available g i: 6836 xd xd xd dear colleagues xd xd all virtual servers in germany germany are down after the move of hostname vrtx system xd xd we are urgently missing the virtual servers hostname fileserver and efdsm printserver xd xd server team would you please be so kind and start the virtual servers on hostname and hostname xd xd many i: 6837 dear it here is another report view often and there have been changes made and they do not reflect my territory the report his missing several of my distributors and is off by or so please see the screen shot qwijaspo ukynmfig sales manager west coast i: 6838 observing these alerts since am on et xd xd severity warning category environment director df numerirtc code xd event code ac line interrupted description symmetrix power subsystem ac line interruption was detected xd severity warning category environment director df numerirtc code xd event code ac line interrupted description symmetrix power subsystem ac line interruption was detected xd severity warning category environment director df numerirtc code xd event code ac line interrupted description symmetrix power subsystem ac line interruption was detected xd severity warning category environment director df numerirtc code xd event code ac line interrupted description symmetrix power subsystem ac line interruption was detected xd i: 6839 user mentioned that the internet gets disconnected once she tries to open the ppt xd had the user power cycle the pc and the modem xd user able to conenct to the inter xd connected to the user system using teamviewer xd tried to check the network settings all fine xd lost internet connection again conection stays on for just mins xd user mentioned that the connection at home is intermittent xd conferenced the call with comcas isp xd they disconnected the call were not able to provide support to the user xd user mentioned that she will try and connect from local hotspot xd user mentioned she will check the connection again later i: 6840 xd job job failed in job scheduler at i: 6841 volume label dat ebhsm dcc on server ebhsm is over xd space consumed space available g i: 6842 hostname oracle finance app financial management web tier epmsystem service monitor down i: 6843 name uprmwlgb kirvecja language browser microsoft internet explorer customer number telephone summary outlook problems outlook doesn start i: 6844 xd xd xd hi xd xd my outlook is not opening in my laptop can you look into this urgently abd help xd xd i: 6845 xd job job failed in job scheduler at Translated 6845 : xd job job failed in job scheduler at i: 6846 incident overview we are seeing your att singapore asa company com device generating denied icmp trafficdenied icmp type code alerts alerts for traffic from port no entry icmp of to port no entry icmp of your device these alerts are indicative of possible vulnerability scanning activity sourcing from the errata ip address errata has page where you can request to be excluded from their scanning we are escalating this incident to you via medium priority ticket and no phone call per our default handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at full escalation for errata vulnerability scanning activity explicit notification via high priority ticket and phone call automatically resolve errata vulnerability scanning activity to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely secureworks soc technical details vulnerabilities that exist across your systems and applications can create path for cyber attackers to gain access to and exploit your environment these scans are used to identify and quantify specific security vulnerabilities in your environment based on database of known flaws if sourcing from an unauthorized host knowledge of your vulnerabilities could later be exploited to potentially interfere with service availability execute code or usa an attacker with unauthorized access references event data related events event id event summary denied icmp trafficdenied icmp type code occurrence count event count host and connection information source ip source hostname internetsurvey erratasec com source ip geolocation atlanta usa connection directionality incoming protocol icmp device information device ip device name att singapore asa company com log time at utc action blocked cvss score scwx event processing information sherlock rule id sle inspector event id ontology id event type id agent id event detail asa denied icmp type code from on interface outside i: 6847 xd job job failed in job scheduler at i: 6848 xd job job failed in job scheduler at i: 6849 xd job job failed in job scheduler at Translated 6849 : xd job job failed in job scheduler at i: 6850 xd xd xd hello xd xd pl refer the below screen shot of error xd xd xd xd xd xd warm i: 6851 hi m using personal android mobile phone and would like to use owa outlook on it but access denied rejected any one can help i: 6852 abend batch job job Translated 6852 : abend batch job job i: 6853 xd job bwhrertran failed in job scheduler at i: 6854 interface fastethernet vlan lhqwxsf on company na usa usa switch cl access sw company com is down i: 6855 extended monitor in the cube nvyjtmca xjhpznds is not working i: 6856 job job failed in job scheduler at edt Translated 6856 : job job failed in job scheduler at edt i: 6857 ebhsm volume label dat ebhsm dcc on server ebhsm is over space consumed space available g i: 6858 monitoring tool alerts and activity page was not working in between pm to pm et on et we logged off and logged in to monitoring tool but the issues was still there it was just showing as loading but nothing was displaying when we click on my dashbankrd home button no issues it was working fine only the issue observed with alerts and activity page i: 6859 xd job job failed in job scheduler at i: 6860 unable to login to company engineering tool i: 6861 ms crm app on desktop Translated 6861 : ms crm app on desktop i: 6862 xd xd xd when attempt to view sales data on erp the rows will not go beyond it was limited to that number with some filters still on when removed the filters to show more information it was still limited to rows is there fix to this xd xd i: 6863 hi when try to open the configurator from company center or engineering tool get this error please advise vkzwafuh tcjnuswg cmp sr application eng i: 6864 china apac interface gigabitethernet mp on company ap chn china access sw company com is down since et on i: 6865 collaboration platform query i: 6866 access to engineering tool i: 6867 xd job job failed in job scheduler at Translated 6867 : xd job job failed in job scheduler at i: 6868 unable to login to the switch company eu deu germany vhsw access sw as the it is experiencing with the memory issue i: 6869 call from external user i: 6870 bokrgadu euobrlcn think this is spam fyi hghtyther drop box mail am qfcxbpht oiykfzlr you have new pdf document shared via drop box image removed by sender dear dropbox user sent you some new document through dropbox view here i: 6871 xd xd xd hi we have computer on the shop floor that will not boot up the power button has an orange flashing light the only thing can tell you about the computer is the user name cobrgtool xd xd xd i: 6872 want to check the email if it is spam i: 6873 name callie pollaurid language browser microsoft internet explorer customer number telephone summary quick question an intern has moved from the markhtyeting group to company who owns her computer and can she take it with her in her new position i: 6874 i apologize when updated the paramdntyeters earlier failed to look if the right roles were added to the users they weren i have now updated the users to mktgen roles bc alluser crm bc basis view it tcode crm ui erp crm uiu analtyicspro ui erp crm uiu framdntyework erp crm uiu mkt gen erp crm uiu sls all erp crm uiu srv gen afkstcev utbnkyop senior analyst bokrgadu euobrlcn kathght shfhyw pm aoyrspjv hctgfeal eqxyvfpi gbaljypo riqmdnzs mtlghwex gergryth mgndhtillen kxvwsatr nmywsqrg re ticket no comments added send updated screenshot please if you are logging in from out of the office please be sure that you are logged into vpn then try accessing afkstcev utbnkyop senior analyst bokrgadu euobrlcn aoyrspjv hctgfeal pm kathght shfhyw eqxyvfpi gbaljypo riqmdnzs mtlghwex gergryth mgndhtillen aoyrspjv hctgfeal kxvwsatr nmywsqrg fw ticket no comments added hi khrtyujuine would you please help with this problem i: 6875 send updated screenshot please if you are logging in from out of the office please be sure that you are logged into vpn then try accessing afkstcev utbnkyop senior analyst bokrgadu euobrlcn aoyrspjv hctgfeal pm kathght shfhyw eqxyvfpi gbaljypo riqmdnzs mtlghwex gergryth mgndhtillen aoyrspjv hctgfeal kxvwsatr nmywsqrg fw ticket no comments added hi khrtyujuine would you please help with this problem i: 6876 ticket update on this ticket no i: 6877 xd xd xd it team xd xd please help to enable access to crm system xd xd i: 6878 xd xd xd hello xd could you help me on entering distributor tool company with my erp account xd xd get outlook for ios xd xd xd xd i: 6879 password reset Translated 6879 : password reset i: 6880 xd xd xd hello we are experiencing an issue when updating the following fields in vv partner and lang we have to update this field multiple times before it works in erp this is causing problems with customers receiving inwarehouse tools so please markhty as high priority had to update the record below at least times before the partner and lang saved i: 6881 vip pls usa access to russ hall to site referenced below xd xd the aero collaboration platform can be found at xd xd xd xd i: 6882 account lock out and password reset instructions i: 6883 dear support team xd xd can you give me an status about my issue xd must start me work on at the company site in rth xd further is my web access office not on going xd xd best i: 6884 can open outlook same problem twice this week already i: 6885 collaboration platform on phone does not sync i: 6886 update to office i: 6887 spam email queries Translated 6887 : spam email queries i: 6888 xd job job failed in job scheduler at i: 6889 dsw in incident overview we are seeing vid microsoft windows httpsys rce vulnerability exploit attempt ms cve mapp alerts being generated by your isensplant company com device indicating that one or more hosts including are attempting to exploit the microsoft windows http sys remote code execution vulnerability cve ms on one or more of your internet facing hosts including successful exploitation of this vulnerability result in denial of service condition or remote code execution on vulnerable systems we are escalating this incident to you via high severity full escalation master ticket for all unblocked events related to this vulnerability e we are creating singular ticket for all inbound threats related to this vulnerability this ticket will effectively serve as master ticket for any related events until we receive feedback from you on how to handle these events going forward it should be noted that blocking each source ip address not necessarily be productive due to attackers ability to switch ip addresses through the use of proxies anonymizing software such as tor and vpns please investigate your environment to determine whether you are running vulnerable version of the application being targeted and ensure that you are running the most recent non vulnerable version of windows and that your devices are patched and properly hardened against attacks if you would like these events handled differently please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at we have number of options available for the handling of future alerts such as this one autoresolve any events related to attacks against the microsoft windows http sys kernel driver directly to the portal no explicit notification and events will be available for reporting purposes in the portal this is most likely the best choice if you are not running the application being targeted or if you are running non vulnerable version of the application ticket only escalation via medium priority ticket no phone call for each unique source ip address for attacks against the microsoft windows http sys kernel driver this generate relatively large volume of incident tickets full escalation via high priority ticket and phone call for each unique source ip address for attacks against the microsoft windows http sys kernel driver this generate relatively large volume of incident tickets i: 6890 dsw in xd xd incident overview xd xd we are seeing your att singapore asa company com device generating at least internal outbreak for udp alerts within minutes for traffic blocked from ewll to port udp of several internal hosts this indicate unauthorized reconnaissance scanning misconfiguration or authorized internal discovery being blocked by the firewall xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for internal reconnaissance alerts explicit notification via medium priority ticket no phone call xd automatically resolve internal reconnaissance alerts to the portal no explicit notification but events will be available for reporting purposes in the portal i: 6891 dsw in xd xd we are seeing your company internal asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from apul to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc i: 6892 dsw in xd xd incident overview xd xd we are seeing your company internal asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from rqvl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal i: 6893 dsw in xd xd xd incident overview xd xd we have detected at least occurrences of your firewall company european asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call xd automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal i: 6894 recently got new computer and ever since have not been able to load the hr tool etime application i: 6895 dsw in xd xd related events xd event id xd event summary hw filesystem near capacity xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd connection directionality internal xd xd device information xd device ip xd device name hostname company company com xd log time at utc xd vendor classification none xd vendor priority xd windows event id xd type warning xd username a xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd agent id xd xd event detail xd note by default this alert is generated when capacity reaches xd mswineventlog system srv a a warning hostname company company com none the disk is at or near capacity you need to delete some files i: 6896 xd xd xd good afternoon xd am unable to open my drive here is screen shot of the error am unaware of any password as am able to open up all other drives assume it has something to do with an email received late yesterday see screen shot below which was unable to login to see third screen shot xd please advise or correct xd xd xd xd xd xd i: 6897 connected the default printer i: 6898 xd job job failed in job scheduler at i: 6899 the issue is have created some new prospect accounts within the crm system after days it still hasn allocated them erp contact i: 6900 call came and got disconnected i: 6901 blue screen error Translated 6901 : blue screen error i: 6902 outlook not responding due to crm error i: 6903 nwfodmhc exurcwkm pm johthryu ko nwfodmhc exurcwkm re sab fw account information updated hello johthryu this is mail from company you can click on the link to access it aorthyme rnsuipbk global service organization gso did you know ticketing tool has an extensive self help knowledgebase with easy to use troubleshooting and how to articles these have been contributed by it teams as well as by our customers every time they open request or an incident with it so go ahead and follow the rabbit click on the image to open the knowledgebase to explore how you can help yourself with your it issue we appreciate your feedback please leave comment on the article you visit or write to the gso global service organization original message johthryu ko pm nwfodmhc exurcwkm sab fw account information updated hi it experts pla see below not sure what it is and therefore not using it best i: 6904 user locked out of erp sid erp i: 6905 your user account has been updated in ancile uperform you can log on here i: 6906 erp sid account lockout i: 6907 new user id i: 6908 erp sid account locked i: 6909 shhkioaprhkuoash ms xd pm xd nwfodmhc exurcwkm xd amar fw your mobile device is temporarily blocked from synchronizing using exchange activesync until your administrator usas it access xd importance high xd xd hello xd xd request you to configure outlook to my new iphone received today xd xd with i: 6910 e license activated office has to be upgraded to i: 6911 contact number pc service tag hgv summary m not hearing sound from my laptop when planning video use bluetooth earbud i: 6912 query regarding leaves i: 6913 unable to scroll down ie pages i: 6914 xd job pp eu tool netch ap failed in job scheduler at i: 6915 engineering tool does not open xd error log attached Translated 6915 : engineering tool does not open xd error log attached i: 6916 outlook not responding Translated 6916 : outlook not responding i: 6917 ticket update inplant Translated 6917 : ticket update implant i: 6918 see attachment Translated 6918 : see attachment i: 6919 skype does not open Translated 6919 : skype does not open i: 6920 since the new telephony software update am now missing the icon on my desktop can have it put back on i: 6921 the i: 6922 company ap chn apac access sw at apac mandc new plant location are down sicne am et on i: 6923 need telephony software to log into phone system to take calls i: 6924 new password does not work after password change Translated 6924 : new password does not work after password change i: 6925 ticket update on inplant i: 6926 xd xd xd am checking up on the status of completion for it ticket inc please provide an update and expected completion date xd xd xd i: 6927 password reset request Translated 6927 : password reset request i: 6928 khspqlnj npgxuzeq called for engineering tool issue i: 6929 email spam query Translated 6929 : email spam query i: 6930 calling from plant plant in erp md for it show delivery note deleted this yesterday and vln confirms the deletion yet the delivery note still shows open in md with pieces will you please remove so the pieces are return to stock i: 6931 password reset alert from o Translated 6931 : password reset alert from o i: 6932 i am getting frequent notification of power surge on hub port as attached screenshot in my laptop kindly check and let me know any action needed to be done to resolve this i: 6933 mobile device activation company provided i: 6934 xd xd xd good day xd xd please can you do erp log in update so that can get access to the erp quality management system sid xd xd xd i: 6935 i am entering this ticket to confirm that emails are not routing in from telephony software for the cas team in north amerirtca xd there are already two tickets open for other regions with the same issue xd incident inc xd incident inc xd xd there is also ticket with open so they investigate from their side ticked i: 6936 support r osterwalder niptbwdq csenjruz Translated 6936 : support r osterwalder niptbwdq csenjruz i: 6937 ess login issue password issue Translated 6937 : ess login issue password issue i: 6938 hello team xd xd could you please unlock account email in cell phone the users xd xd xd i: 6939 xd xd xd hi xd xd please run the below commands with administrator privilege on the computer of the users impacted and whom its working well and send me the results for further analysis xd xd gpresult log txt xd gpresult loghtml html xd xd best i: 6940 vpn is not connecting i: 6941 switch company eu deu germany b gf access sw at germany is down since et i: 6942 xd xd xd is this legitimate email xd did not want to click on it without knowing xd i: 6943 outlook email update issue Translated 6943 : outlook email update issue i: 6944 spam email query Translated 6944 : spam email query i: 6945 userid cccplant cannot reset password please look at the screenshot i: 6946 xd xd xd hi xd xd please find the attached screen shot suddenly the hub business client is going blank when close all the tab and restarts it works again xd xd could you please fix this xd xd xd i: 6947 cannot open the item text formatheywting command is not available i: 6948 collaboration platform not synching i: 6949 system sid xd xd production employee pevokgiu hdywstbl idrizj from switzerland switzerland needs password reset xd xd many i: 6950 probleme mit erpgui tmqfjard qzhgdoua Translated 6950 : problems with erpgui tmqfjard qzhgdoua i: 6951 alte it equipment abholen qvncizuf ueiybanz Translated 6951 : alte it equipment abholen qvncizuf ueiybanz i: 6952 monitor defekt ewew pvd bur am orde Translated 6952 : monitor defekt ewew pvd bur am orde i: 6953 please have look at po the terms and conditions page should only be printing as the last page to the order not after each page i: 6954 hostname wrong number of instances of process wrapper exe expected instances gte but found i: 6955 although there are emails in outlook mailbox they do not appear in telephony software i: 6956 received new laptop need outlook configuration help i: 6957 i need to approve travel expense the following expense report has been submitted for your approval personnel no mahtyurch kutgynka expense report no start date end date total costs usd reimbursement amount usd to review this expense report in full please log into your universal worklist on manager self service but have no rights to view please help i: 6958 xd job job failed in job scheduler at i: 6959 xd job job failed in job scheduler at i: 6960 xd xd xd hello it team xd xd please usa me access to imts folder on server hostname xd xd i: 6961 tel pr fen Translated 6961 : tel pr fen i: 6962 hi it team xd xd xd we have problem picking request print in plant xd below sale order red so cannot print picking request from aug xd other so have same problem xd xd csr person print picking request print manual operate xd not automatic print it xd xd please help us aerp xd xd xd best i: 6963 hi xd xd it is screen of the sales order xd please change to the japanese xd there is also when the ship to is displayed in japanese xd domestic customers want to display in japanese xd xd best i: 6964 hi xd xd one more spam mail please check xd xd i: 6965 gnasmtvx cwxtsvkm am pradyhtueep yyufs nathyresh gayhtjula lakhsynrhty raghyvhdra najuty re automatic payment through bank ksp ng we request you to please disable the mail functionality of payment advice for the time being until we find the solutions for both printing and mail functionality i: 6966 i can not change the qty in crm syatem would you help me change the qty as below xd pcs xd pcs i: 6967 job hangs at step this step waits for files from erp in edksm eu tool daten coming in ziped file please check whether the relazed erp jobs are running properly phone email skype buissness external conact i: 6968 credit component is not working in prod author we are getting the following error in the console xd xd programdnty uncaught referenceerror xiframdntye is not definedsubmitform programdnty anonymous function programdnty dispatch jquery min js jquery min js xd xd i: 6969 hello team xd xd my laptop monitor screen flickers more often when start my laptop i: 6970 hi can find documents in engineering tool sid but not in business client sid search server is not working request you to check for indexing and do the needful as we need to do some uacyltoe hxgayczeing in business client sid i: 6971 xd job bkbackup tool reporting tool prod inc failed in job scheduler at i: 6972 xd job bkbackup tool hostname prod full failed in job scheduler at i: 6973 xd xd xd dear it xd xd please create ticket to update the emea vendor master file from to xd move the ticket to nahytua or another available colleague xd xd only accounting view xd xd should be done today very urgent xd xd i: 6974 help to install the loan switch and lan cable on newly created cubicle i: 6975 windows key and key is not working and also there is accidental damage on hinge i: 6976 unable to download files from gpts i: 6977 emails of australia team not polling into telephony software so far they have to work via outlook xd engineer need to do ewseditor uacyltoe hxgaycze and ask us to provide the username and password for the qlhmawgi sgwipoxn and i: 6978 hi following user id winows is locked pl help user id dsilvfgj i: 6979 the finance app hfm server is reporting down status on hostname since pm est i: 6980 we met the weight problem when make shipment to order shipping plant complained the weight in n for some of mms still remain dummy weight for new mm but actually the weight of the mm has already be updated at mm to the real weight before dn created so why system cannot carry out the new weight to the sales order see samples mm in this o xd the mm changes recorded said the weight was updated from to on however the o still keep so when plant run n on the weight in n still shown thus warehouse have to manual update the weight in n xd please verify what the problem i: 6981 hello it team can we add receiving address contact person and tel number on return form letgyo jiftg logistics manager johthryugftyson hu letgyo jiftg east service simfghon wanrtyg re external complaints status assigned leo please check with it if it possible to add the warehouse person for receiving return for plant judthti zhu and her office tel to the return form attached i: 6982 xd xd xd as have been asked to put together traiyctrhbkm plvnuxmrterial for the imts show will need access to the global drive hostname teams imts pre show product training file hostname teams imts pre show product training which do not currently have xd xd best i: 6983 rakthyesh ramdntythanjesh am vksfrhdx njhaqket ctzykflo evzbhgru hadfiunr vupglewt wvdxnkhf jirecvta anftgup nftgyair re bobj access dear marftgytin yes request is processed completed and closed by anup reference ticket no ticket no kind i: 6984 rakthyesh ramdntythanjesh am ed bigdrtyh re account information updated dear ed hope you are doing good please note that this is phishing uacyltoe hxgaycze email sent out by it to uacyltoe hxgaycze our preparedness for actual scenarios congratuldhyation on detecting and highlighting the issue i: 6985 rakthyesh ramdntythanjesh xd am xd sunil gavasane xd re account information updated xd xd dear sunil xd xd xd hope you are doing good xd xd please note that this is phishing uacyltoe hxgaycze email sent out by it to uacyltoe hxgaycze our preparedness for actual scenarios xd xd congratuldhyation on detecting and highlighting the issue i: 6986 the discription shows correctly for mmaster but not for me i: 6987 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 6988 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 6989 end users are submitting security requests but the approvers are not receiving emails from the systemaccess application to approve them i: 6990 per odo das de at de Translated 6990 : period from until to i: 6991 unable to log in to skype Translated 6991 : unable to log in to skype i: 6992 blank call i: 6993 printer driver update Translated 6993 : printer driver update i: 6994 usa interfacetengigabitethernet dr connection to top on tech stack company com is down since et on i: 6995 engineering tool icon on the desktop i: 6996 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar amar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name aparecido last name trhsyvdur consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 6997 i trying to access crm through ess but getting message password has expired tried password management tool password manager and unlocked all accounts rebooted pc tried password manager again i: 6998 hostname volume label sys hostname ceea on server hostname is over space consumed space available g i: 6999 unable to get the sales org in distributor tool i: 7000 when try to look at configuration for rqfhiong zkwfqagb get an error while trying to invoke the method java util list iterator of null object loaded from local variable locallist phone i: 7001 two users have problem with logging into telephony software system qlzgbjck yzwnvbjt login staszk and djskrgae dnckipwh login yakimp print screens attached will you be able to assist i: 7002 team sproc is not converting direct team revenue to employee currency code i: 7003 unlock erp sid account i: 7004 unable to login to collaboration platform Translated 7004 : unable to login to collaboration platform i: 7005 unable to login to the pc i: 7006 businessobjects cms cms server watcher server named hostname i: 7007 my erp login appears not to be working username wolfthry password kasphryer i: 7008 summary telephony software update did not work i: 7009 hello team could you please unlock account email in cell phone the users qasdhyzm yuglsrwx id nasftgcijj and rspqvzgu vroanwhu id silvgtyar i: 7010 sales org tab does not show up the field i: 7011 xd job job failed in job scheduler at Translated 7011 : xd job job failed in job scheduler at i: 7012 ms crm online dash bankrd opportunities issue i: 7013 unable to open attachments in erp Translated 7013 : unable to open attachments in erp i: 7014 hi it xd xd please assist to create dn as am not able to xd i: 7015 hello danghtnuell is having connection problem would you please get in touch with him office phone number i: 7016 account is locked i: 7017 xd job job failed in job scheduler at i: 7018 i would like to reset my caas applications remote and desktop connection password itylnjqw kqiurhbt and thomklmas brrgtyant handles these request in our office it is apart of the customer interaction phone system i: 7019 ms outlook issue ms crm dynamics issue i: 7020 summary don think am receiving my email i: 7021 dev software file system on hostname has consumed of space i: 7022 virus detected on pc please see attachment i: 7023 erp ecs tracking is not working resp computer crashes immediately when trying to get proof of delivery for ups shipments xd xd del note header ecs tracking and when clicking on proof of delivery erp stops tried several times always the same i: 7024 account unlock request from herr schmidt dnc i: 7025 email renyhtuee meayhtger pm nwfodmhc exurcwkm fw renyhtuee meayhtger wants to access lunch menus can someone check on why can access lunch menus did something change in collaboration platform this should be available to everyone best i: 7026 not able to login to hub xd xd helped with email address and asked her to user after some time i: 7027 windows password reset i: 7028 error access denied screenshot attached xd confirmed that gso and security admin team members are unable to access possibly others as well xd xd informed gvxfymjk euioadyf and khadfhty who are currently investigating xd xd we are able to access other sites including cor relations finance markhtyeting and the gso subsite as well when accessed directly through url i: 7029 sid error item category is not defined message no vl can do the pgi for i: 7030 snipping tool shortcut i: 7031 welcome our next available agent will be with you shortly xd interaction alerting agent xd aytjedki rucfxpla uacyltoe hxgaycze xd aytjedki rucfxpla this is sabrthy xd website visitor has joined the conversation xd efbwiadp dicafxhv hello sabrthy xd efbwiadp dicafxhv its working fine xd i: 7032 xd job hostname fail failed in job scheduler at i: 7033 unable to login to skype Translated 7033 : unable to login to skype i: 7034 xd job hostname fail failed in job scheduler at i: 7035 xd xd xd job hostname fail failed in job scheduler at i: 7036 hostname erp sid average samples disk free on home is now which is below the warning threshold out of total size gb i: 7037 a couple of users nmzfdlar whzbrusx uwdqtrnx uhntgvyj have reported the attached error when using the transaction code zwwirep i: 7038 qlhmawgi sgwipoxn unlock request nk prod i: 7039 dsw in xd xd we are seeing vid possible bash command injection attempt bash in http header incoming alerts being generated by your isensor company com device indicating that one or more hosts including are attempting to discover whether one of your internet facing devices including clhqsm is vulnerable to bash shell remote code execution vulnerability cve successful exploitation of these vulnerabilities result in information disclosure or remote code execution as the traffic in these alerts indicates an attempt to exploit said application we are escalating this matheywter to you via medium priority ticket xd xd blocking each source ip address not be productive due to attackers ability to switch ip addresses through the use of proxies anonymizing software such as tor and vpns please investigate your environment to determine whether you are running vulnerable version of the application being targeted i: 7040 dsw in xd xd incident overview xd xd we are seeing your att singapore asa company com device generating at least internal outbreak for udp alerts within minutes for traffic blocked from awyl to port udp of several internal hosts this indicate unauthorized reconnaissance scanning misconfiguration or authorized internal discovery being blocked by the firewall xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at i: 7041 dsw in xd xd incident overview xd xd we are seeing your company internal asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from ldgl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal i: 7042 machine stuck on welcome screen i: 7043 billing inwarehouse tool xd customer return not processed correctly xd when input billing the material isn copied from the reference i: 7044 user vvspecmfrt please reactivate account xd xd from till it should be active i: 7045 monitor on rqxw is out i: 7046 good day htnvbwxs gwfrzuex has already issued ticket for this please address aerp please reset windows password for rhgteini i: 7047 skype does not open Translated 7047 : skype does not open i: 7048 outlook does not open Translated 7048 : outlook does not open i: 7049 xd xd xd dear all xd could you please help me to fix it xd xd xd best i: 7050 tess installation i: 7051 hi have forgotten the attendance tool password my user id is with best i: 7052 xd xd xd hello team xd xd am facing issue in opening business client xd xd getting following error msg xd xd pl help on this xd i: 7053 mitarbeiter reichenberg philipp ben tigt berechtigung r den ordner file ce leiter Translated 7053 : employee reichberg philipp needs authorization for the folder file ce manager i: 7054 printer not working Translated 7054 : printer not working i: 7055 please reset users windows password to welcome as she is having issues logging in i: 7056 drucker an messmaschine in halle hat st ndig papierstau Translated 7056 : The printer at the measuring machine in hall has a constant paper jam i: 7057 xd xd xd hi xd xd have been having an issue with being able to gain access to make approvals for our new payroll site xd xd they have advised the issue is with my browser xd xd below is the email trail on the issue xd xd can get some assistance to rectify the problem don want to download the wrong browser xd xd xd to all xd xd who should contact to resolve this issue xd xd i: 7058 not able to view download tool drawings over business client summary business client refer call by mr dwfiykeo argtxmvcumar i: 7059 xd xd xd please can you help me am experiencing nearly min delay on my incoming mails as per below screenshot xd xd xd xd i: 7060 good day all we need to rebuild win laptop and new with win image could you please download actual images on our ftp credential below usually romftguald helping us with this kind of downloading but now he is unavailable ftp ftp terralink ru login company password koahsriq wdugqatr administrative assistant i: 7061 xd xd xd hi xd xd provide me the mail access for mobile encl the details xd xd xd i: 7062 per subject have changed the status to director approved but cannot release error message enter channel manager but in account details the cm is available can you please solve i: 7063 xd xd xd hello xd xd iam getting the below error while trying to login kindly help xd xd xd best i: 7064 whenn accessing the catalog the company logon data are missing userid and password are not given xd in sid it works in sid not please check i: 7065 xd xd xd dear concern xd xd please install all related apps to my laptop as got new laptop xd xd with best i: 7066 as of this morning the routing for sippprs to demand planners seems to be broken i: 7067 netzteil an der docking station ohne funktion xd xd ext xd Translated 7067 : power supply at the docking station without function xd xd ext xd i: 7068 guten tag the hub sst sich an meinem rechner nicht ffnen der bildschirm baut sich nicht auf einige wenige male funktioniert es auf anderen rechnern funktioniert es browserproblem mit freundlichen gr en mnakehrf mvunqihf analyst payroll gesch ftsf hrer phvkowml azbtkqwx naruedlk mpvhakdq Translated 7068 : hello the hub does not open on my computer the screen does not expand a few times it works on other computers it works browser problem best regards mnakehrf mvunqihf analyst payroll managing director phvkowml azbtkqwx naruedlk mpvhakdq i: 7069 that didn work we re sorry but can be found in the company collaboration platform com directory please try again later while we try to automatically fix this for you here are few ideas click here to sign in with different account to this site javascript loginasanother uf layouts ufcloseconnection aspx loginasanotheruser true usource uf this will sign you out of all other office services that you re signed into at this time if you re using this account on another site and don want to sign out start your browser in private browsing mode for this site show me how if that doesn help contact your support team and include these technical details correlation id ecad ceffcf date and time am url user issue type user not in directory for company athjyul dixhtyuit senior manager sales north msg companytm i: 7070 telephony software software upgrade funktioniert nicht pc empl xd vor dem start des upgrades wurden alle programdntyme geschlossen xd nach dem start des upgrades erschien folgende fehlermeldung wusa exe anwendungsfehler siehe datei xd nach der best tigung mit ok wurde anwendung geschlossen und der upgrade nicht durchgef hrt xd xd translation xd telephony software software upgrade does not work pc empl xd before starting the upgrade all programdntys have been closed xd after starting the upgrade following error message appeared wusa exe application error see file xd after confirming with ok application is closed and the upgrade is not performed xd i: 7071 xd abended job in job scheduler job at Translated 7071 : xd abended job in job scheduler job at i: 7072 xd abended job in job scheduler job at Translated 7072 : xd abended job in job scheduler job at i: 7073 xd xd xd dear sir mam xd xd am facing issue with tess software kindly help me to resolve the issue xd xd xd i: 7074 xd abended job in job scheduler job at Translated 7074 : xd abended job in job scheduler job at i: 7075 xd xd xd hi xd xd please help to resolve the below issue while opening engineering tool will be available in office for next hour xd xd xd i: 7076 wireless access point pr fen geb geb und konferenzraum geb xmlbfjpg yegzbvru Translated 7076 : wireless access point check geb geb and conference room geb xmlbfjpg yegzbvru i: 7077 xd xd xd hello xd xd am getting below error when open business client xd xd xd xd xd with i: 7078 probleme mit lan ewew xwirzvda okhyipgr Translated 7078 : probleme mit lan ewew xwirzvda okhyipgr i: 7079 probleme mit lan ewew xwirzvda okhyipgr Translated 7079 : problems with lan ewew xwirzvda okhyipgr i: 7080 wireless access point funktioniert nicht jxphgfmb gjbtuwek i: 7081 fehlermeldung failed to connect to server lt kollegen in der sk presserei ist die pc nummer aber richtig und der pc wurde auch nicht ausgetauscht oder erneuert danke Translated 7081 : error message failed to connect to server lt colleagues in the sk press shop the pc number is correct and the pc was not replaced or renewed thank you i: 7082 hello please let me know how to conduct goods movement with mb for mm which are not accepted iwazgesl ydgqtpbo project engineer and supply chain logistics company k mail i: 7083 xd xd xd dear it xd xd due to the goods delivery issue by plant please help to reverse the migo entry material doc accounting doc also need you help to reverse the good issue doc the n has been cancelled xd xd xd xd xd best i: 7084 when print oa in erp and choose the fe fe doesn work but it work when print excel word pdf files my erp id wrtyuh the matheywter is also happened with erp id fufrtal i: 7085 xd abended job in job scheduler job at Translated 7085 : xd abended job in job scheduler job at i: 7086 xd xd xd please add connect the below mail id to my outlook xd need access to send and receive the emails it should work with both mine and gslpdhey ksiyurvlir outlook xd xd xd action request urgent xd xd thanking you xd i: 7087 interface down bottom msfc switch since pm est xd xd switch description xd xd gigabitethernet infoblox trinzic dns node ha vip i: 7088 the i: 7089 the i: 7090 xd abended job in job scheduler job at i: 7091 help to install the network printer on the laptop i: 7092 telephony software prtpu i: 7093 account locked in erp sid i: 7094 inquiry for adding digital signature in pdf i: 7095 unable to sign in to skype i: 7096 unable to launch business client getting microsoft net error i: 7097 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7098 hostname average samples total cpu is now which is above the error threshold i: 7099 lhqsm hrsync sync failed no sync detected in the last hours please investigate i: 7100 email contacts issue xd connected to the user system using teamviewer xd deleted the ms crm and reconfigured the mscrm xd restarted the pc and reconfigured the outlook xd caller confirmed that he is now able to see the emails on outlook xd issue resolved i: 7101 dell monitor display issue Translated 7101 : dell monitor display issue i: 7102 xd abended job in job scheduler job at Translated 7102 : xd abended job in job scheduler job at i: 7103 xd xd xd am trying to do my expense report thru ess and it not working blank screen pop up after click oon the expense report link xd xd i: 7104 name tfgtodd panelfgt language browser microsoft internet explorer customer number telephone summary hello cannot receive calls through telephony software the call comes through and rings one time then goes to warehouse toolmail closed telephony software and rebooted my phone and it is still doing this i: 7105 please reset your security to the collaboration platform lagp area i: 7106 the link to see receipts and reimbursement form submitted by team member is broken in mss i: 7107 unable to access drawings in erp need access to net weaver i: 7108 related events xd xd event id xd event summary hw service icmp icmp is down xd source ip xd source hostname ap xd destination hostname xd device ip xd device name ap company com xd event extra data xd inspectorruleid xd sherlockruleid xd ileatdatacenter true xd srchostname ap xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd irreceivedtime xd foreseeconndirection internal xd inspectoreventid xd xd xd occurrence count xd event count xd xd event detail xd from for device summary service icmp icmp is down xd detail service check failed failures xd icmp echo unable to ping i: 7109 ic welcome our next available agent will be with you shortly interaction alerting agent website visitor has joined the conversation rakthyesh ramdntythanjesh hi kylfgte kylfgte hello how are you today rakthyesh ramdntythanjesh am doing great how about you kylfgte good i: 7110 erp sid password locked Translated 7110 : erp sid password locked i: 7111 source ip destination ip system name edml user name ptczqbdw ybaoluck dalgtylam location milano ds sms status no updates field sales user yes no no dsw event log see below event data related events event id event summary repeat outbound connection for tcp log time at source ip source hostname edml destination ip destination hostname host static business telecomitalia it device ip device name company european asa company com event extra data inspectorruleid cvss sherlockruleid ctainstanceid irreceivedtime inspectoreventid eventtypepriority foreseeinternalip logtimestamp foreseeconndirection outgoing srcassetofinterest foreseeexternalip ontologyid srchostname edml eventtypeid proto tcp dstport action blocked ileatdatacenter true foreseemaliciouscomment null or empty model found evaluationmodels ngm foreseedstipgeo rome ita agentid srcmacaddress f d srcport occurrence count event count event detail asa deny tcp src inside dst noris by access group acl inside xedbf correlation data dhcpd dhcpack on to f d edml via eth relay lease duration i: 7112 erp sid account unlock i: 7113 name schtrtgoyht language browser microsoft internet explorer customer number telephone ext summary our server is getting full again have found that can erase but that won last too long can you help server ldsm i: 7114 can open outlook had same issues earlier this week i: 7115 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7116 xd xd xd it xd xd currently cannot access the lagp form hyperlink in collaboration platform suomfxpj izcwuvgo stated need to contact it for usaed access xd xd click xd xd xd and receive xd xd xd xd i: 7117 hi team xd xd with the new functionality and features that monitoring tool provides us we have started monitorixepyfbga wtqdyoinware sensors we started receiving alerts for the hostname blade chassis the iom sensor and in turn the chassis is reporting some non critical alerts could you please investigate and advise xd i: 7118 blade chassis hostname ip reporting non critical hardware issues xd xd xd hi team xd xd with the new functionality and features that monitoring tool provides us we have started monitorixepyfbga wtqdyoinware sensors we started receiving alerts for the hostname blade chassis the iom sensor and in turn the chassis is reporting some non critical alerts could you please investigate and advise xd i: 7119 abended job in job scheduler archive idocs daily sid at i: 7120 dear folks would like to thank all the site administrators whoever took part in this see agent pilot uacyltoe hxgayczeing and helped us through giving the honest feedbacks on the installation behavior time to time this overall helped us to complete the full fledge uacyltoe hxgayczeing and promote this package to the production rollout we have planned to deploy the see agent on the enclosed list of sales pc across europe starting from and would presume that the site admins of sales location are in acceptance of starting this deployment from the above mentioned date since this particular time framdntye has been announced month back by scot trask as global communication in regard to this see agent rollout would request you all to keep your respective location users informed about the deployment schedule and also please ensure that all the users are familiar with the package installation steps type of package installation duration importance of the package mode of the installation times of reboot and installation behavior through referring the below details deployment date time am in the morning as per the respective location time zone deployment tool patching antivirus sw package type prompted user will be prompted with prior notification to save all the work before proceeding the installation through clicking the continue button duration minutes restart required yes automatic restart after the installation of see agent package behavior please ask the sales users to go through the below provided bill bankrd and understand the importance of the package deployment we have uacyltoe hxgayczeed validated and finalized the see agent deployment for our production environment if any of the pc from our deployment target list is not associated to the sales pc or got replaced or removed from the network please do let us know via providing the comment on the separate column of the same enclosed target list crm sales pc see europe targetlist bit xlsx and crm sales pc see europe targetlist bit xlsx will exclude those pc completely from this deployment all vip and critical machine pc should be done manually by the respective it site contact for the manual installation both site admin and the users must have the local admin privileges on the respective pc to complete the see agent installation without any issue please access the following server share for manual installation user must be either on office lan or vpn network to access the server share as provided hostname see agent deploy file hostname see agent deploy to install on windows bit systems please execute the exe file which is under bit folder of the above server share to install on windows bit systems please execute the exe file which is under bit folder of the above server share i: 7121 xd abended job in job scheduler job at i: 7122 pc fails to restore from hibernation after re imaging to bit os after running on battery backup for hours the pc automatically goes into hibernation causing massive data loss please treat this on priority pc details pc name aidl windows os windows sp bit ramdnty gb contact i: 7123 unable to execute job scheduler jobs post client upgrades on hostname hostname hostname and hostname i: 7124 error message welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp i: 7125 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 7126 the i: 7127 account is locked i: 7128 order zkea was created and erp generated fill orders zkb orders order and see screenshot in email attached erp should have created only fill kb order customer receive duplicate fills and will be returning the product i: 7129 o drive missing Translated 7129 : or drive missing i: 7130 unable to log in to ess Translated 7130 : unable to log in to ess i: 7131 prarthyr jha pm nwfodmhc exurcwkm amar fw gtz jhapg issue hi please refer attached photo laptop damaged due to fall in flight at present system in working condition with no issues with repeated use hinges and seating might become problematic please help latitude computer name aiml user jhapg system id gtz employee code i: 7132 lhqsl and hostname needs to be added to the log on account for bdclient name mikhghytr language browser microsoft internet explorer customer number telephone summary is there an active directory setting that allows an user id to access the company access points companysecure i: 7133 xd abended job in job scheduler job at i: 7134 password reset Translated 7134 : password reset i: 7135 problem with wlan in germany germany for the attached device contact yevirgnl ylhogjct for further info xd xd mac address ebdf i: 7136 usa robot server cabinet pc lhnw is down since on i: 7137 approved ragini davidthd wgtyills vice president i: 7138 manually reset erp password as the password from the previous reset through password management tool did not work i: 7139 have new phone my exchange server is blocked can you release it so that mail come in i: 7140 problem with wlan in germany germany for the attached device contact yevirgnl ylhogjct for further info i: 7141 outlook freezing while opeyctrhbkm plvnuxmrils i: 7142 erp error mesg order does not exist when trying to run apo and create delivery for order and order getting error mesg value of modific counter for doc in supply chain is but should be see attachments xd i: 7143 email access to mobile device Translated 7143 : email access to mobile device i: 7144 physical backup server hostname is down xd we found that physical disks and have failed attached screenshot xd hostname backup server offline missing virtual drives xd drac ip xd i: 7145 dsw in xd xd incident overview xd xd we have detected at least occurrences of your firewall company internal asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized i: 7146 chat transfer i: 7147 update my erp favorites Translated 7147 : update my erp favorites i: 7148 company screensaver not on the computer i: 7149 unable to load webpage i: 7150 xd abended job in job scheduler job at Translated 7150 : xd abended job in job scheduler job at i: 7151 xd abended job in job scheduler job at i: 7152 xd abended job in job scheduler job at Translated 7152 : xd abended job in job scheduler job at i: 7153 xd abended job in job scheduler job at i: 7154 unable to change quotation Translated 7154 : unable to change quotation i: 7155 kis bug fixes and corrections i: 7156 error insufficient access xd xd please check attached email for error screenshot and contact details xd xd believe licenses were recently provided xd i: 7157 not able to login to windows i: 7158 erp sid account unlock i: 7159 hello xd xd can you please support here xd xd we are unable to clear this inwarehouse tool from vfx xd xd we need help as this is high value inwarehouse tool which we cannot clear xd xd i: 7160 account unlock i: 7161 connected at vpn after saw main screen of netviewer wrote usrr name and password after see error screen attached this screen i: 7162 xd abended job in job scheduler job at Translated 7162 : xd abended job in job scheduler job at i: 7163 xd abended job in job scheduler hrp sid chg point at i: 7164 dear global helpdesk team we wanted to request you for the access right for rfvchzmp picjthkd as same of the user bagtylleg zsluxctw ptirhcwv in erp logon sid system davidthd can you kindly approve the request so that it can provide the access to stefdgthy warm i: 7165 xd xd xd please open an it ticket and assign to rzucjgvp ioqjgmah xd xd i: 7166 email queries Translated 7166 : email queries i: 7167 no response on call Translated 7167 : no response on call i: 7168 cyndy emailed requesting for password reset for jose xd emailed her the password i: 7169 hi team my mss access is missing and need to have the access for raising job requisition please help to fix it tiffrtany tafgtyng manager hr shared services asia pacific select the following link to view the disclaimer in an alternate language i: 7170 thomklmas contacted us during the outage when core switch in the usa nvyjtmca xjhpznds went down xd he was able to confirm access was restored once the switch came back up i: 7171 please delete calendar meetings in kurtyar suzjhmfa swmiynoz outlook employee has left the company and request you to kindly delete following meetings from his calendar xd xd and xd xd xd and dec xd xd i: 7172 account locked in ad i: 7173 hello xd xd can accede to my ethics training my user is unrecognized could you please check it please see the attached screen xd i: 7174 colin was unable to access some sql databases advised of the outage xd he was able to confirm that issue was resolved once the core switch came back up i: 7175 outlook is not opening Translated 7175 : outlook is not opening i: 7176 xd xd xd please unlock the sid user at sar xd xd i: 7177 new windows pc lpgw cannot connect to the rfid reader via rs port i: 7178 zdsxmcwu thdjzolwronization issue i: 7179 account locked i: 7180 bitte die maschine precimat nr wieder freischalten xd ja unter azm Translated 7180 : please activate the machine precimat no. xd yes under azm i: 7181 password reset to login to erp hcm to be able to use or apply jobs in company i: 7182 inc cert opened xd work around i: 7183 inc cert opened xd work around i: 7184 inc cert opened xd work around i: 7185 xd abended job in job scheduler sid arc at i: 7186 india cec are having issues with erp sid production system is logging out automatically and happened more than times as of now i: 7187 xd abended job in job scheduler job at i: 7188 please reset password for sid user old erp is locked now xd i: 7189 xd xd xd hello helpline xd xd need erp very urgent today but cannot connect from my computer xd xd xd the user itself is not blocked tried it from colleagues pc xd xd please advice xd xd i: 7190 erp down internet down in usa pa location contact i: 7191 e error reading object details the process has been canceled error at execute transaction dscsag obj get multidetail connect to message server host failed connection paramdntyeters type dest nogui mshost sid db rname sid group erp production pcs phone i: 7192 xd abended job in job scheduler job at i: 7193 xd xd xd hallo xd xd die server verbindung in lic ist gest rt es kann nicht in erp gebucht werden nnen sie sich des problems annehmen danke xd xd mit freundlichen gr en best Translated 7193 : xd xd xd hello xd xd the server connection in lic is faulty it cannot be booked in erp you can take care of the problem, thank you xd xd with the best of you i: 7194 contact Translated 7194 : contact i: 7195 erp is not working Translated 7195 : erp is not working i: 7196 hello xd xd we have no connection to the erp system xd xd no connection to the message server rc xd xd i: 7197 xd xd xd hello xd xd we need your help s p xd connecting with erp is not possible xd we receive this error message xd xd xd xd mit freundlichen gr en best i: 7198 xd abended job in job scheduler pp eu tool netch keheu at i: 7199 erp not working erp outage aeophctw nvjyhizu united kingdom i: 7200 xd xd xd please see error message from erp xd xd xd xd xd mit freundlichen gr en best Translated 7200 : xd xd xd please see error message from erp xd xd xd xd xd with friendly gr en best i: 7201 xd abended job in job scheduler mm zscr dly uschow at i: 7202 erp not connecting Translated 7202 : erp not connecting i: 7203 plant germany can not log in i: 7204 please see the error message attached i: 7205 xd bei frau dde ist der drucker nicht o xd xd wenn sie etwas scannt ist der scan gr xd sie kann nichts ausdrucken der drucker springt zwar an aber es kommt nichts raus xd Translated 7205 : xd at mrs dde the printer is not o xd xd if she scans something the scan gr xd she cannot print anything the printer starts but nothing comes out xd i: 7206 probleme mit office girnda i: 7207 setup new ws gonzales Translated 7207 : setup new ws gonzales i: 7208 summary actually the emails from hp alm triggered not shown up in inbox i: 7209 i want to print out erp documents as pdf file from zz mails function tried to do it since today noon for sales document delivery document and billing document but nothing comes until now i: 7210 alte it equipment abholen wxstfouy isjzcotm i: 7211 leider kann ich mich nicht an meinem rechner anmelden xd xd fehlermeldung die verstrauensstellung zwischen dieser arbeitsstation und der prim ren dom ne konnte nicht hergestellt werden xd Translated 7211 : unfortunately I cannot log into my computer xd xd error message the trust relationship between this workstation and the primary domain could not be established xd i: 7212 network outage at usa pa intranet and internet both are affected erp outlook contact i: 7213 phone lines were down too but now its working fine outlook says connecting to server contact i: 7214 engineering drawing tool dt keine zeichnungsrahmen es kommt die meldung aus dem anhang Translated 7214 : engineering drawing tool dt no drawing frame the message from the appendix appears i: 7215 laptop not starting Translated 7215 : laptop not starting i: 7216 getting warning messages in outloo while sending out emails via macro function how can disable the warning messages i: 7217 xd xd xd hellp it help xd please refer to the below delivery note number xd we are not able to return pgi please help on this xd xd i: 7218 erp hana studio sidecar software is not working i: 7219 dear it team xd xd can you please be so kind and reset franhtyu password to daypay xd i: 7220 xd xd xd hello team xd xd we are unable to send any quotations to customer or sales through zz mails xd xd please check and resolve immediately xd xd example was sent to but not received xd xd warm i: 7221 meeting inivation no skype i: 7222 xd xd xd hi xd have been trying but couldn set my erp logon to same window login password please help to reset my erp login and configure to the same as per my window login pw xd xd i: 7223 windows disk space utilization alert hostname i: 7224 qwvpgayb amniujsh pm nwfodmhc exurcwkm gaiopkun bvcdpxrt qamyesuv npmzxbek fw sab gaiopkun bvcdpxrt password issue importance high hi team rubiargty changed the password few times already but the issue remains the same julgttie cannot log in can you please investigate aerp because our new sales engineer needs to work on customers immediately i: 7225 xd abended job in job scheduler pp eu tool netch ap at i: 7226 windows disk space utilization alert lhbsm i: 7227 firewall company internal pix company com at ltrobe is down since et on i: 7228 windows disk space utilization alert for hostname xd i: 7229 server ip no reply to ping smtp server error communication error contact server name not known server location usa i: 7230 i made uacyltoe hxgaycze as sent document to my own email address via zz mails at pm apac time but mins later it still has not been received i: 7231 password reset Translated 7231 : password reset i: 7232 dear it team xd today our zz mails is not working can you please check what happened xd i: 7233 mobile device activation Translated 7233 : mobile device activation i: 7234 xd xd xd need common place for online storage of complete machine assembly models at one place presently the drawings are in individual designer pcs and retrieval is difficult xd day by day as more and more machines are designed in the data handling is going out of control xd xd common place separate drive under administrative control to save and view these complete machine assembly models xd xd periodic back up and archiving of data stored at this place xd xd xd xd with i: 7235 im eu tool lassen sich keine azm meldungen eintragen xd xd in eu tool azm messages can not be registered Translated 7235 : no azm messages can be entered in the eu tool xd xd in eu tool azm messages can not be registered i: 7236 the interface gi te gi and gi in bottom msfc switch at usa is down since et on i: 7237 good day dear all xd please help me aerp so that the erp output sending with email will work as well as yesterday xd i: 7238 ordering from purchasing catalogue not working unable to order please see the attachments i: 7239 hi please assist had to change my windows password as it was about to expire now can log in on erp username bragtydlc employee nr please assist aerp i: 7240 please help to look into the issues got in attachment i: 7241 all users in poland encounter issue with erp outputs see the error message attached i: 7242 i have just changed my laptop recently and after the change every time used microsoft excel dealing with huge information my screen would beshryu out momentarily with the following message display driver stopped responding and has recovered this beshryu out could happen as often as every minutes when am using excel xd xd twice it was so bad that the screen turn blue with some information on crash dump and have to force re start my laptop i: 7243 robot lhqwsf at usa is inactive since et on i: 7244 xd xd xd hello xd xd when the operator print plant label he click made in plant there is no information as below correct screenshot xd could you help to solve the error please i: 7245 please restart the server aerp and check if it works again eu tool is not working for germany plant our it partner is on vacation i: 7246 connection to admin datacenter switch ping failed ip profile admin datacenter switch xd connection to admin datacenter switch ping failed ip profile admin datacenter switch xd connection to admin datacenter switch ping failed ip profile admin datacenter switch i: 7247 we jsut had new company marocm apac cost cneter cplant pls help to change the internal order number from cost center cnn to cplant i: 7248 not able to find folder in outlook i: 7249 unable to send mail with forward restriction i: 7250 hi deeghyupak was on vacation when your mail was sent last week and only managed to see it on my return minutes before the automatically deployment on general note unless there is critical security risk deployment these updates should be limited to once month so far this month this is the third deployment you not realize the impact this has on our users especially the unannounced updates in addition with users similarly to csr who are working directly with our customers do not think it is the best practice to deploy automatically updates especially to all users all at the same time the impact of yesterday deployment was that our csr phones were not operating for over hours during the morning i: 7251 verehrte damen und herren an meinem festnetztelefon ist seit geraumer zeit die anzeige im display nur noch unvollst ndig erkennbar mehrere waagerechte linien machen die anzeige unlesbar meine telefonnummer lautet bitte um abhilfe mit freundlichem gru jctnelqs lansuiwe quality assurance Translated 7251 : Ladies and gentlemen, on my landline phone, the display has only been incompletely recognizable for some time. Several horizontal lines make the display illegible i: 7252 xd abended job in job scheduler job at Translated 7252 : xd abended job in job scheduler job at i: 7253 dear sir please advise damage dell laptop lit only minute in see attachment thank for the response and cooperation best i: 7254 dear sir apologize do not know lot about the mechanics lap top the power button surely die sorry just users in indonesia my time is very limited for customer visits and evaluation of the data and provide engineering solutions so if possible ask laptop in exchange please help if you can bring to mr abhay mr abhay have plan date will come to indonesia i: 7255 erp sid account locked i: 7256 need adobe reader to download i: 7257 good morning please reactivate the account of my colleague mr xrfcjkdl dtnzgkby vvsfgtyrinv best i: 7258 xd xd xd following virus has been found in my laptop please rectify the same xd xd xd xd xd xd best i: 7259 skype Translated 7259 : skype i: 7260 xd xd xd hello xd attendance tool password forgot please reset xd xd i: 7261 reboot of lhqsm hostname hostname lhqsm and hostname sql uacyltoe hxgaycze i: 7262 xd xd xd hello xd xd for the multiple cost center why the gr amount is xd xd xd xd xd xd xd xd xd with best i: 7263 name pfzxecbo ptygkvzl xd language xd browser microsoft internet explorer xd customer number xd telephone xd summary can not connect to vpn i: 7264 office i: 7265 lcow shows down since pm est xd location new albaney xd engineering tool aggergrythator production server i: 7266 hello it team could you please add mail box to my outlook my id is jilgtyq i: 7267 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7268 login issue i: 7269 company login issue i: 7270 skype for business Translated 7270 : skype for business i: 7271 hostname ora internal error code arguments kggsmgetstring xad Translated 7271 : hostname ora internal error code arguments kggsmgetstring xad i: 7272 unable to submit discount form i: 7273 reset erp sid password for user soemec Translated 7273 : reset erp sid password for user soemec i: 7274 xd abended job in job scheduler hr tooldcvcgenratn at i: 7275 user got pop up that displayed virus on the browser xd advised the user to restart the pc as he was unable to open anyother window xd issue resolved i: 7276 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 7277 consultant vmhfteqo jpsfikow from schneider downs needs wireless account extended to the end of the year xd xd it is due to expire on per ticket no xd xd i: 7278 lcosm conformaclad shop floor app server sqlagent exe and sqlservr exe are showing down since pm on et i: 7279 unable to login to her microsoft email account i: 7280 what type of outage network circuit power please specify what type of outage xd xd top cert site slo site yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7281 unable to access to forecast to plan in crm i: 7282 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 7283 xd abended job in job scheduler job at Translated 7283 : xd abended job in job scheduler job at i: 7284 source ip system name evhl user name companypzyre mqlsfkre ldnfgt location germany sms status no updated field sales user yes no no dsw event log see below incident overview we are seeing your company european asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from evhl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code full escalation for windows login failure alerts explicit notification via high priority ticket and phone call automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely secureworks soc technical details remote procedure call rpc also known as the loovexfbjy lmcaqfkz loc srv is microsoft windows protocol that allows an application to to execute code in another address space commonly on another computer on shared network without the programdntymer explicitly coding the details for this remote interaction that is the programdntymer writes germanytially the same code whether the subroutine is local to the executing programdnty or remote an rpc is initiated by the client which sends request message to known remote server to execute specified procedure with supplied paramdntyeters the remote server sends response to the client and the application continues its process rpc runs on port and is used in client server applications such as microsoft exchange clients mgermanyger service dhcp server dns server wins as well as other windows applications vulnerabilities in rpc have also been leveraged by several worms as means for propagation examples include blaster worm msblast lovsan welchia nachi reatle references event data related events event id event summary repeat outbound connection for tcp occurrence count event count host and connection information source ip source hostname evhl source port destination ip destination port destination ip geolocation ulm deu connection directionality outgoing protocol tcp device information device ip device name company european asa company com log time at utc action blocked cvss score scwx event processing information sherlock rule id sle inspector rule id inspector event id ontology id event type id agent id event detail asa deny tcp src inside dst noris by access group acl inside xedbf event id event summary repeat outbound connection for tcp occurrence count event count host and connection information source ip source hostname evhl source port destination ip destination port destination ip geolocation ulm deu connection directionality outgoing protocol tcp device information device ip device name company european asa company com log time at utc action blocked cvss score scwx event processing information sherlock rule id sle inspector rule id inspector event id ontology id event type id agent id event detail asa deny tcp src inside dst noris by access group acl inside xedbf x i: 7285 name mikhghytr karaffa language browser microsoft internet explorer customer number telephone summary hello can you please advise on my crm password to start i: 7286 update on crm access ticket no i: 7287 ticket update on ticket no Translated 7287 : ticket update on ticket no i: 7288 ticket update on inplant i: 7289 ticket update on inplant i: 7290 ticket update on inplant i: 7291 source ip xd system name evhl xd user name companypzyre mqlsfkre ldnfgt xd location germany xd sms status no updated xd field sales user yes no no xd dsw event log see below xd xd xd incident overview xd xd we are seeing your company european asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from evhl to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc xd xd xd technical details xd xd remote procedure call rpc also known as the loovexfbjy lmcaqfkz loc srv is microsoft windows protocol that allows an application to to execute code in another address space commonly on another computer on shared network without the programdntymer explicitly coding the details for this remote interaction that is the programdntymer writes germanytially the same code whether the subroutine is local to the executing programdnty or remote xd xd an rpc is initiated by the client which sends request message to known remote server to execute specified procedure with supplied paramdntyeters the remote server sends response to the client and the application continues its process rpc runs on port and is used in client server applications such as microsoft exchange clients mgermanyger service dhcp server dns server wins as well as other windows applications vulnerabilities in rpc have also been leveraged by several worms as means for propagation examples include xd blaster worm msblast lovsan xd welchia nachi xd reatle xd xd xd xd references xd xd xd xd xd xd xd xd xd event data xd xd related events xd event id xd event summary repeat outbound connection for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname evhl xd source port xd destination ip xd destination port xd destination ip geolocation ulm deu xd connection directionality outgoing xd protocol tcp xd xd device information xd device ip xd device name company european asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa deny tcp src inside dst noris by access group acl inside xedbf xd xd xd xd event id xd event summary repeat outbound connection for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname evhl xd source port xd destination ip xd destination port xd destination ip geolocation ulm deu xd connection directionality outgoing xd protocol tcp xd xd device information xd device ip xd device name company european asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd asa deny tcp src inside dst noris by access group acl inside xedbf x i: 7292 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7293 unable to access site Translated 7293 : unable to access site i: 7294 xd xd xd hello xd could you please help set up erp my user name and password do not work xd i: 7295 zmmdata currency error when trying to extend to plant assign to vaghjmskee krisyuhnyrt am getting the following error when trying to extend to plant example mm currency amount jpy in field moving pr could not be converted i: 7296 unable to connect to dv Translated 7296 : unable to connect to dv i: 7297 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 7298 we are seeing activity indicating the host at is conducting vulnerability scan these scans are used to identify specific vulnerabilities on remote host that could be exploited to potentially interfere with service availability execute code or usa an attacker with unauthorized access the results of this scan could be used for future attacks or exploitation of the targeted host xd xd based on our internet visibility we are detecting this as non targeted broadscan similar activity from this source has been detected across our client base please consider blocking this ip address and investigating the host for any malicious scrip xd xd we are escalating this incident to you via medium priority ticket as per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for broadscanning alerts explicit notification via high priority ticket and phone call xd autoresolve for broadscanning alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc xd xd xd event data xd xd related events xd event id xd event summary vid suspicious executable file upload php http incoming xd occurrence count xd event count xd xd host and connection information xd source ip xd source port xd source ip geolocation st pethrywrsburg rus xd destination ip xd destination port xd connection directionality incoming xd protocol tcp xd http method post xd http status code xd user agent mozilla windows nt rv gecko firefox xd host www companyipg com xd full url path wp content plugins inboundio markhtyeting admin partials csv uploader php xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd vendor reference vid xd file name wp setup php xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid suspicious executable file upload php http incoming xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd xref vid xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xc ack xec win tcplen xd tcp options nop nop ts xd pcap xd xd xd ex http uri wp content plugins inboundio markhtyeting admin partials csv uploader php xd xd ex http hostname www companyipg com xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd cd ae ca wz xd ca ca d ea ac ce f pi xd ec a sk xd eeec b f post wp xd fe f e content plugins xd e e dd inboundio markhtye xd f e ting admin parti xd f cf als csv uploader xd f d php http xd f eb e ost www companyme xd c fd da e talipg com cont xd e c d ent length xd d f accept encoding xd a c gzip deflate xd a fa da accept us xd sid df cc er agent mozill xd e f a windows xd b e rv xd ff gecko xd f d fe irefox con xd f ea d nection keep al xd fe d ive content typ xd d f e multipart for xd dd f m data boundary xd baafd xd cebef xd d ad ad baa xd fdceb xd d fe ef content xd d fe disposition fo xd d b d rm data name xd b e d ile filename xd e wp setup php xd fe d ontent type tex xd c ed ad ac t plain php xd if isset re xd d quest ee xd e header http xd f e not found xd f f f f b dc quest ee xd b fe da dd ba xd afdceb xd dd da ef xd pcap hex xd xd event id xd event summary vid suspicious executable file upload php http incoming xd occurrence count xd event count xd xd host and connection information xd source ip xd source port xd source ip geolocation st pethrywrsburg rus xd destination ip xd destination port xd connection directionality incoming xd protocol tcp xd http method post xd http status code xd user agent mozilla windows nt rv gecko firefox xd host www companyipg com xd full url path wp content plugins inboundio markhtyeting admin partials csv uploader php xd xd device information xd device ip xd device name isensplant company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd vendor reference vid xd file name wp setup php xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid suspicious executable file upload php http incoming xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd xref vid xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xff ack xdefb win tcplen xd tcp options nop nop ts xd pcap xd xd xd ex http uri wp content plugins inboundio markhtyeting admin partials csv uploader php xd xd ex http hostname www companyipg com xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd cd bf ca xd ca ca a ea dd ce ff pc xd def f s xd eeec b f post wp xd fe f e content plugins xd e e dd inboundio markhtye xd f e ting admin parti xd f cf als csv uploader xd f d php http xd f eb e ost www companyme xd c fd da e talipg com cont xd e c d ent length xd d f accept encoding xd a c gzip deflate xd a fa da accept us xd sid df cc er agent mozill xd e f a windows xd b e rv xd ff gecko xd f d fe irefox con xd f ea d nection keep al xd fe d ive content typ xd d f e multipart for xd dd f m data boundary xd baafd xd cebef xd d ad ad baa xd fdceb xd d fe ef content xd d fe disposition fo xd d b d rm data name xd b e d ile filename xd e wp setup php xd fe d ontent type tex xd c ed ad ac t plain php xd if isset re xd d quest ee xd e header http xd f e not found xd f f f f b dc quest ee xd b fe da dd ba xd afdceb xd dd da ef xd pcap hex e i: 7299 unable to connect to network printer dv i: 7300 i am being blocked from exchange activesync and need access to it just received new company xd xd i: 7301 dsw in xd xd event id xd event summary hw filesystem near capacity xd source ip xd destination ip xd device ip xd device name xd event extra data xd inspectorruleid xd vendorclassification none xd sherlockruleid xd logformat mswineventlog xd windowseventid xd srchostname hostname xd ctainstanceid xd username a xd vendorpriority xd logsource system xd hostname hostname company company com xd type warning xd inspectoreventid xd ileatdatacenter true xd ontologystring ms system srv xd foreseemaliciouscomment null or empty model found xd foreseeinternalip xd group mswineventlog xd logtimestamp xd agentid xd foreseeconndirection internal xd xd i: 7302 daghyunny had sent deployment notification last week with the target list deployment was scheduled at am in the morning please find the attached email copy for your reference if you would have had any concerns in i: 7303 tastatur an und defekt bitte austauschen einzelne tasten funktionieren nicht mehr Translated 7303 : keyboard on and defective please replace individual keys no longer work i: 7304 dsw ticket in xd xd we are seeing your company european asa company com device generating high volume of repeat outbound connection for tcp alerts for traffic blocked from edml to port tcp remote procedure call rpc of external host this indicate misconfiguration where the firewall is blocking traffic to legitimate server application this also indicate compromised host reaching out to malicious host or propagating worm code xd xd we are escalating this incident to you via medium priority ticket and email per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd full escalation for windows login failure alerts explicit notification via high priority ticket and phone call xd automatically resolve windows login failure alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd i: 7305 dsw ticket in xd xd event id xd event summary hw service icmp icmp is down xd source ip xd source hostname ap xd destination hostname xd device ip xd device name ap company com xd event extra data xd inspectorruleid xd sherlockruleid xd ileatdatacenter true xd srchostname ap xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd irreceivedtime xd foreseeconndirection internal xd inspectoreventid xd xd xd occurrence count xd event count xd xd event detail xd from for device summary service icmp icmp is down xd detail service check failed failures xd icmp echo unable to ping i: 7306 xd abended job in job scheduler job at Translated 7306 : xd abended job in job scheduler job at i: 7307 dsw ticket in xd xd related events xd event id xd event summary hw service icmp icmp is down xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd connection directionality internal xd xd device information xd device ip xd device name hostname company company com xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd xd event detail xd from for device summary service icmp icmp is down xd detail service check failed failures xd icmp echo unable to ping i: 7308 dsw ticket number in xd xd related events xd event id xd event summary hw service icmp icmp is down xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd connection directionality internal xd xd device information xd device ip xd device name hostname company company com xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd xd event detail xd from for device summary service icmp icmp is down xd detail service check failed failures xd icmp echo unable to ping i: 7309 dsw ticket in xd xd related events xd event id xd event summary hw filesystem near capacity xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd connection directionality internal xd xd device information xd device ip xd device name hostname company company com xd log time at utc xd vendor classification none xd vendor priority xd windows event id xd type warning xd username a xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd agent id xd xd event detail xd note by default this alert is generated when capacity reaches xd mswineventlog system srv a a warning hostname company company com none the disk is at or near capacity you need to delete some files i: 7310 summary sound not working on pc i: 7311 encryption set up Translated 7311 : encryption set up i: 7312 need to change the drive name of the network drives i: 7313 system performance issue i: 7314 tzrekwqf homwadbs mail xd pm xd nwfodmhc exurcwkm xd amar fw company email accounts xd xd dear support team xd xd get my company mail adress today for the rpo project betwenn company and ibm xd xd xd it was mis typing my last name is zihrtyud can you change this please xd xd many i: 7315 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7316 account to locked i: 7317 unable to access ess Translated 7317 : unable to access ess i: 7318 we have some consultants from ca technologies visiting this week and used the following website to provide them access to the companyguest wifi network xd xd xd see certificate error for this site in ie and chrome see attached screenshot xd xd ignored the error and logged in to create couple of accounts yesterday xd given that account credentials are limited to max of day went in today and tried to edit the accounts to change the date for today xd everything looked okay in the web app but users were not able to login xd xd even tried to reset the password for one of the users but that didn help either xd xd it is cumbersome to re type the same info and create new accounts for each day xd it would be great if the certificate issues are taken care of and accounts could be created for multiple days or it is easier to renew passwords xd i: 7319 hi when try to open hana now get the follow error please help nkthumgf mwgdenbs ph i: 7320 crm mobile app queries Translated 7320 : crm mobile app queries i: 7321 xd xd xd hi deeghyupak xd xd it seems that there has been lack of knowledge regarding this deployment of telephony software in israel xd xd from the very beginning all our users apart from rabin have been working with the software in hebrew xd xd also am not sure deployment on telephony software pc all at the same time should occur in the middle of the working day xd xd please let us know when you have hebrew version available and then we can discuss the deployment xd xd many i: 7322 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7323 password reset Translated 7323 : password reset i: 7324 engineering tool not work correctly and affect multiple user for pre process area xd at the moment is not possible make review cam programdntys visualize the dwgs to make the routings and bom and we needs review some cam files to shop floor and those issues causing stop production xd the system work sometimes and other is not possible to connect xd users affected navarcm collemc geronca furlaf pintog i: 7325 summary receiving following message cannot start microsoft outlook cannot open the outlook window the set of folders cannot be opened the information store could not be opened have restared computer several times same result help please i: 7326 when working in outlook cannot edit the subject line of an email have been able to do this until today i: 7327 xd xd xd hi daghyunny xd xd there was no issue with respect to new telephony software application and it was deployed successfully through patching antivirus sw deployment was scheduled based on the os language which in this case was english xd since we were not supporting hebrew language in the past we deployed english language telephony software in israel pcs xd csr team in israel had raised concern that they can work without hebrew language pack as confirmed by aofnvyzt eqiyskhm same english package of new telephony software application is deployed successfully for the aofnvyzt eqiyskhm and he is able to work without any issues dyxrpmwo hcljzivn local it from poland uninstalled new version of telephony software and installed old telephony software on their pcs without informing us xd xd to fulfill local csr team requirement we can reschedule the new telephony software application through remote deployment and hebrew language pack can be installed manually on their pcs xd xd i: 7328 wvdxnkhf jirecvta has issues to connect company wifi network in rth and in the past two days his windows access gets suddenly locked could someone please get in contact with him per cell phone i: 7329 system sid sid sid sid hrp other sid enter user id of user having the issue kowfthyuale transaction code the user needs or was working with vln describe the issue during pgi goods receipt eva is getting an error m attaching the su screenshot the sales order was manually moved to plant if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 7330 erp sid lock out i: 7331 password reset Translated 7331 : password reset i: 7332 outlook not working crm issue Translated 7332 : outlook not working crm issue i: 7333 skype personal certificate issue Translated 7333 : skype personal certificate issue i: 7334 erp sid account unlock and password reset i: 7335 xd xd xd it xd connecting drives to my computer is done by it or is there function to connect that you can do yourself xd xd ierfgayt alwjivqg needs drive teams hostname file hostname connection xd i: 7336 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7337 name obanjrhg rnafleys language browser microsoft internet explorer customer number telephone summary access to the engineering tool system i: 7338 xd abended job in job scheduler sid hotf at i: 7339 microsoft outlook mail xd pm xd vhzxkjet lkufgrhq xd notification fw outstanding inwarehouse tool payment xd xd this message was sent to the company quarantine database please contact company it help desk for more information xd i: 7340 contact no one at the site is able to connect to companysecure i: 7341 during the pgi transaction for rma delivery customer robhyertyjo tadeu and delivery customer robhyertyjo tadeu we are facing error cost center company par blocked against direct postings on cost center par controlling area company is locked for primary postings on the erp system automatically determined controlling area company from the company code and business area xd xd xd xd i: 7342 issues with attachments on outlook i: 7343 password reset Translated 7343 : password reset i: 7344 vpn queries Translated 7344 : vpn queries i: 7345 erp sid password reset Translated 7345 : erp sid password reset i: 7346 summary job transfer back into markhtyeting and am requesting access to the engineering tool tool performance reporting system i: 7347 call transferred to dan Translated 7347 : call transferred to dan i: 7348 unable to connect to the hp printer at home i: 7349 user called in stating that she needs the benefit solver app in single sign on portal checked in ad and didn find that particular group added to user id please help check and do the needful contact no user id reddfgymos i: 7350 xd Translated 7350 : xd i: 7351 i cannot access hr tool globalview for my pay check each time go to the sso get this message when open the hr tool icon xd sorry your access is denied please contact your system administrator xd i: 7352 install ie ahlqgjwx wbsfavhg Translated 7352 : install ie ahlqgjwx wbsfavhg i: 7353 probleme mit lan wxstfouy isjzcotm i: 7354 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant xd xd issue description error message nothing happens no message i: 7355 after upgrade telephony software has dierppeared from the screen i: 7356 access to forecast to plan i: 7357 probleme mit ffnen von dokumenten im intranet mit internet explorer xmlbfjpg yegzbvru Translated 7357 : problems finding documents on the intranet with internet explorer xmlbfjpg yegzbvru i: 7358 please add the purchasing production and purchasing uacyltoe hxgaycze app to qiyujevw ogadikxv single sign on portal she is unable to view and enter purchasing this way she is member of purchasing and should have access to it i: 7359 summary can you please help me with the company guest wifi logon info i: 7360 password reset Translated 7360 : password reset i: 7361 i logged onto to company centre xd then searched for part xd then clicked on the configure button xd this would normally start the quote engine xd xd instead receiving the following error attached i: 7362 unable to update password on password management tool password manager i: 7363 xd xd xd dear all xd pls give me authority to reset my erp pw i: 7364 unable to generate inwarehouse tool as per delivery we ve got the error message ie bapi po create fail material auto extend failed please help fix this error and advise back to us then we will generate tax inwarehouse tool at our end i: 7365 reporting tool alert average samples disk free on is now which is below the warning threshold out of total size gb i: 7366 erp sid account lock out issue i: 7367 phone issues Translated 7367 : phone issues i: 7368 danke diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung company posts select the following link to view the disclaimer in an alternate language Translated 7368 : thank you this communication is intended solely for the use of the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, distribution or reproduction of this communication by people who are not the intended recipients It is strictly forbidden to act if you have received this message by mistake, please notify the sender and send this message to company posts select the following link to view the disclaimer in an alternate language i: 7369 outlook is giving stack guard error Translated 7369 : outlook is giving stack guard error i: 7370 see email attached for more details and contacts check if the excel version or such can be adjusted or if there is an oss note xd worse case we have to push mobile uers to use the reporting tool version of open orders however opening the excel file is most likely more convenient for them i: 7371 hallo herr busse xd xd rden sie dies bitte via ticket an die it schicken bzw an xd xd xd xd xd mit freundlichen gr en best Translated 7371 : hello mr busses xd xd please send this to IT via a ticket or to xd xd xd xd xd with best regards i: 7372 company eu deu germany b press buero access sw switch is down since on i: 7373 xd xd xd am unable to add lean event in to collaboration platform lean tracker getting below error message xd request you to resolve xd xd xd xd best i: 7374 please note ess portal access for the below specified detail is locked again employee name raghu mg employee id user name mgr the issue with this user id is it getting locked again and again previously also we were facing the same issue then the user id and password has been changed and it had worked for few months now the issue has occurred again the employee is getting error message user authentication failed seek support to resolve the issue i: 7375 xd xd xd mit freundlichen gr en with best Translated 7375 : xd xd xd Yours sincerely, gr en with best i: 7376 xd xd xd hello xd please find below the snap of the error which am receiving while accessing the adoption scorecard xd xd xd please do the needful xd xd xd xd xd i: 7377 xd xd xd hi deeghyupak xd xd re our phone call just now please can you stop immediately the update for telephony software our pc are unable to run telephony software after the update xd xd please see your list below xd xd aghl xd xd israel xd xd israel xd xd nazarr xd xd windows professional xd xd ic user applications xd xd english xd xd aghw xd xd israel xd xd israel xd xd israey xd xd windows professional xd xd ic user applications bit xd xd english xd xd aghw xd xd israel xd xd israel xd xd nahumo xd xd windows professional xd xd ic user applications bit xd xd english xd xd aghw xd xd israel xd xd israel xd xd tevkia xd xd windows professional xd xd ic user applications xd xd english xd xd aghw xd xd israel xd xd israel xd xd pogredrty xd xd windows professional xd xd ic user applications xd xd english xd xd xd these are the affected pc with issues xd xd many i: 7378 attendance tool password reset request i: 7379 xd xd xd hi daghyunny xd xd please find the below pcs which are installed with old telephony software applications when we pulled report from patching antivirus sw xd xd name xd xd location xd xd country xd xd user xd xd os name xd xd name xd xd install primary language xd xd os architecture xd xd deployment xd xd aghl xd xd israel xd xd israel xd xd nazarr xd xd windows professional xd xd ic user applications xd xd english xd xd bit xd xd patching antivirus sw xd xd aghw xd xd israel xd xd israel xd xd israey xd xd windows professional xd xd ic user applications bit xd xd english xd xd bit xd xd patching antivirus sw xd xd aghw xd xd israel xd xd israel xd xd nahumo xd xd windows professional xd xd ic user applications bit xd xd english xd xd bit xd xd patching antivirus sw xd xd aghw xd xd israel xd xd israel xd xd tevkia xd xd windows professional xd xd ic user applications xd xd english xd xd bit xd xd patching antivirus sw xd xd aghw xd xd israel xd xd israel xd xd pogredrty xd xd windows professional xd xd ic user applications xd xd english xd xd bit xd xd patching antivirus sw xd xd agvw xd xd xd xd israel xd xd sokdelfgty xd xd windows professional xd xd ic user applications xd xd english xd xd bit xd xd patching antivirus sw xd xd xd we have scheduled the new version upgrade for the pcs which are installed with old telephony software application xd xd i: 7380 ad account lock out i: 7381 crysyhtal xithya xd pm xd nwfodmhc exurcwkm xd cindy wanrtyg marftgytin xia xd tfw new order mm dmhpm mm mb xd importance high xd xd hi xd xd can you please advise why the group costs for mm and from plant and plant are different xd taking mm for example group costs is while group costs is why xd xd xd xd xd xd i: 7382 hi team we can not generate intercompany for delivery note the following error message appears can you please have look mit freundlichen grugermany best i: 7383 need help in installing tess Translated 7383 : need help in installing tess i: 7384 xd xd xd xd xd leider ist das feld von abhanden gekommen xd xd xd xd xd danke viele gr xd trgqbeax hfyzudql xd xd mit freundlichen gr en best Translated 7384 : xd xd xd xd xd unfortunately the field has been lost xd xd xd xd xd thank you very much gr xd trgqbeax hfyzudql xd xd with best regards i: 7385 not able to login to ess portal Translated 7385 : not able to login to ess portal i: 7386 xd hello chandruhdty ebi xd xd ve created an example in sid for debugging an fixing production order to receive is mm xd the issue does not only appear in case the user tries to ship against planned order but also when trying to ship against production order xd xd shipping against planned orders xd xd it looks like zpdist programdnty does only allow to ship against planned orders in case the planned order finish date is due or past due purple example in the screenshot in case the planned order finish date is not due red example zpdist programdnty does not allow to ship against the planned order xd xd the following things need to be changed xd xd zpdist programdnty should allow to force the shipment against planned orders even though the planned order is not due just like zpdist programdnty does for stock transfer orders xd zpdist programdnty should use the planned order start date rather than the planned order finish date to determine whether the planned order is due xd xd shipping against production orders xd xd it looks like zpdist programdnty does only allow to ship against production orders in case the basic finish date of the production order is due or past due blue example in case the basic finish date of the production order is not due yellow example zpdist programdnty does not allow to ship against the production order xd xd the following things need to be changed xd xd zpdist programdnty should allow to force the shipment against production orders even though the production order is not due just like zpdist programdnty does for stock transfer orders xd zpdist programdnty should use the basic start date which is already shown in the transaction rather than the basic finish date to determine whether the production order is due i: 7387 windows system doesn start Translated 7387 : windows system doesn start i: 7388 if we have meeting at switzerland with lot of participants like today the wifi is not stable the users will get interrupts frequently do not have the possibility to check how much users are connected to which ap for analyzing the problem i: 7389 siehe beigef gte mail Translated 7389 : see attached mail i: 7390 erp sid account lock out issue i: 7391 laptop is not getting on Translated 7391 : laptop is not getting on i: 7392 xd xd xd dears xd how about the status now xd this shipment is urgent required xd i: 7393 hi all would need two edits to be made to the volunteer tracker form wa wsignin please add two fields beneath facilitator contact person which should be named name of organization organization address and please add at the very end please send the non profit verification document to please note that the volunteer tracker should be accessible to all employees set the permissions accordingly i: 7394 xd xd xd dear it team xd xd would please need loaner laptops for our consultant from bank for the below period xd xd hzptilsw wusdajqv bank consultant xd xd jrilgbqu kbspjrod bank consultant xd xd hzptilsw wusdajqv bank consultant xd wpakylnj wdtsyuxg bank consultant xd xd all three consultant should still have valid erp and microsoft log in password fyi our bank consultant will do xd huge update in and for our erp payment management and autobank tool xd xd could you please prepare the laptops accordingly and confirm if we will get the loaner laptops please xd would pick them up on the mentioned dates above by steffen del xd xd if there is any problem please let me know xd xd many i: 7395 xd xd xd hi deeghyupak xd xd why are you running telephony software upgrade on pc agvw when it is not used for telephony software xd xd with i: 7396 hello it xd xd cannot login to sid anymore see attachment xd please fix it for user id hannas and meixni xd xd i: 7397 support r umzug qvncizuf ueiybanz Translated 7397 : support r umzug qvncizuf ueiybanz i: 7398 probleme mit eu tool obqridjk ugelctsz Translated 7398 : problems with eu tool obqridjk ugelctsz i: 7399 xd xd xd hi it team xd xd pls see how this can be removed happened for the last days xd xd xd xd best i: 7400 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant to plant xd xd issue description error message no message i: 7401 windows account lockout i: 7402 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar ragsbdhryu request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name jagthyin bhughjdra last name babanlal consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 7403 xd xd xd hallo xd xd kann auf rechner outlook nicht starten und crm synchronisiert stundenlang xd dadurch werden auch andere dinge geblockt engineering tool b xd xd bitte um hilfe sitze am rechner xd xd xd xd mit freundlichen gr ssen xd uwe schr ck xd technische beratung und verkauf xd mobil tel xd xd company deutschland gmbh max planck stra d germany www company com xd xd company deutschland gmbh xd gesch ftsf hrer rfwlsoej yvtjzkaw harald nnlein xd sitz der gesellschaft germany hgermany registergerirtcht bad homburg hgermany hrb xd xd xd xd xd diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung xd company posts xd select the following link to view the disclaimer in an alternate language Translated 7403 : xd xd xd hello xd xd cannot start on the outlook computer and crm synchronizes for hours xd this also blocks other things engineering tool b xd xd please for help sit at the computer xd xd xd xd best regards xd uwe schr ck xd technical advice and sale xd mobil tel xd xd company deutschland gmbh max planck stra d germany www company com xd xd company deutschland gmbh xd managing director rfwlsoej yvtjzkaw harald nnlein xd headquarters of the company germany hgermany registergerirtcht bad homburg hgermany hrb xd xd xd xd xd this communication is unique and solely intended for use by the addressee and may contain information that is confidential or is exempt from disclosure under applicable law, the distribution or reproduction of this communication by people who are not the intended recipients is strictly prohibited if you received this notification due to an oversight d ann please notify the sender and send this message xd company posts xd select the following link to view the disclaimer in an alternate language i: 7404 xd xd xd hello xd could you please help to check the reason of po error language xd xd xd xd xd with best i: 7405 i am not able to find the interaction desktop icon in my pc after installation even the old version got deleted please assist i: 7406 xd xd xd xd xd warm Translated 7406 : xd xd xd xd xd warm i: 7407 xd abended job in job scheduler job at Translated 7407 : xd abended job in job scheduler job at i: 7408 xd abended job in job scheduler job at Translated 7408 : xd abended job in job scheduler job at i: 7409 xd abended job in job scheduler job at Translated 7409 : xd abended job in job scheduler job at i: 7410 account locked in ad i: 7411 windows account locked i: 7412 account locked in ad i: 7413 unable to login to erp sid Translated 7413 : unable to login to erp sid i: 7414 narefgttndra shigthyuva would like to recall the message re ticket no please reopen i: 7415 xd xd xd hi xd xd my laptop dell precision volume has stopped working not sure whether the problem is with any drivers please help as have to attend few skype sessions this week xd xd best i: 7416 xd xd xd hello xd xd pl find the spell check error in the outlook xd this is repeated error time and again observed xd xd need your attention and permanent solution xd xd xd xd warm i: 7417 kds sw services i: 7418 kds sw services xd am xd nwfodmhc exurcwkm xd rxoynvgi ntgdsehl kds sw services johthryugftyson hu xd fw mm xd xd hi it team xd xd xd please assist to create dn for the above mentioned mm i: 7419 windows account locked i: 7420 unable connect to engineering tool i: 7421 xd abended job in job scheduler pp eu tool netch ap at i: 7422 warehouse vendor export service on hostname is showing down in monitoring tool monitoring tool i: 7423 dear it sipppr pdf adobe reader best i: 7424 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 7425 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 7426 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 7427 programdntyme lassen sich teilweise nicht ffnen mal nach der festplatte schauen xd bitte um erledigung durch himghtmelreich eu tool rep nr Translated 7427 : some programdntyme cannot be opened take a look at the hard drive xd please have it done by himghtmelreich eu tool rep no i: 7428 user needed help to login to erp sid xd connected to the user system using teamviewer xd help the user login to the erp sid xd issue resolved i: 7429 xd abended job in job scheduler hr tooldcvcgenratn at i: 7430 help to change the windows password using password management tool password tool xd connected to the user system using teamviewer xd help the user login to the password manager tool password tool and change the passwords xd help the user to sync the psswords to the company network xd caller confirmed that he was able to login xd issue resolved i: 7431 xd abended job in job scheduler job at i: 7432 my expense report will not submit this is the expense report that have not been able to submit has required erp person help desk to submit each time michjnfyele jenhntyns plant manager i: 7433 vnhaycfo smkpfjzv is not with earthworks usa customer order is being up held due to credit involved with this return return has been received on xd i: 7434 ron bell has health savings acct deduction coming out of his paycheck yet he has elected zero can you please let me know why this is before the next pay run i: 7435 dell the system keeps going in to loop of shutting down advised the user to restart the pc not happening service tag contact os win i: 7436 please add kigthuym whjtyulen whjtlkn and cqlehowf aosqelnr shrghyadja to the purchasingupstreamsso active directory ad group including samaccountname in ad as all lowercase i: 7437 xd xd xd who do need to contact xd having battery life issues on my phone loosing charge fast throughout the day is it something that can have the battery replaced on or get new phone xd xd i: 7438 name aytjedki rucfxpla language browser microsoft internet explorer customer number telephone summary how can send video to someone outside of company it is to large to attach to an email i: 7439 meeting acceptance notification i: 7440 unable to open tif files Translated 7440 : unable to open tif files i: 7441 unable to login to the switch due to the memory issue as per syslog alarms i: 7442 i would like to reassign accounts and contacts from myself to thomklmas mitctdrh ervin phone i: 7443 name mitgckqf ewourgcx language browser microsoft internet explorer customer number telephone summary telephony software phone system interaction desktop authentication process failure i: 7444 fund id and budget postings affected are below xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd Translated 7444 : id fund budget and postings are affected below xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd i: 7445 name mikhghytr karaffa language browser microsoft internet explorer customer number telephone summary please usa me access to the dunham and bradstreet data base i: 7446 drive encryption attention needed i: 7447 received reporting tool alert at pm on et hostname company com is connected is not connected i: 7448 password reset on ess portal i: 7449 expense report not reaching manager i: 7450 pc will not boot rqxw beshryu screen no post has been slow to start for while i: 7451 xerox copier in usa office prtsid has paper feeder fault will not copy i: 7452 jghjimdghty bfhjtuiwell pm nwfodmhc exurcwkm amar re jghjimdghty bfhjtuiwell your windows password is expiring soon importance high hi it changed my vpn password this morning when prompted and then in erp and outlook but when go to change it per the password management tool pw software below the password management tool pw won accept my self service login passwords old and new or my email address i: 7453 account locked out and password reset request i: 7454 unable to launch outlook i: 7455 unable to connect to any network from laptop i: 7456 hi xd xd please create wi fi passwords for all the tem members below who will be in usa pa from to i: 7457 collaboration platform issue i: 7458 unable to open outlook and ess due to bad password i: 7459 unable to access emails Translated 7459 : unable to access emails i: 7460 zdsxmcwu thdjzolwronization issue i: 7461 account locked out on erp sid i: 7462 access to engineering tool i: 7463 hello dear all xd have tried to print the csi in the erp vln for time xd the message what have got was oops internet explorer could not connect to hostname company company com if anybody could help me that would be very great wbr petrghada i: 7464 hostname hr tool tax interface app qa average samples total cpu is now which is above the error threshold i: 7465 hallo frthdyui xd passwort nderung in der as hat nicht geklappt bitte um deine hilfe lieben dank im voraus gru petrghada Translated 7465 : hello frthdyui xd password change in the as did not work please for your help thanks in advance gru petrghada i: 7466 xd xd xd hi there xd xd can you please give me access to erp cannot log on to it xd xd i: 7467 xd abended job in job scheduler job at Translated 7467 : xd abended job in job scheduler job at i: 7468 vip battery seems to be dead latitude summary dell laptop battery light flashing orange laptop will not work without connection to power cord battery seems to be dead i: 7469 restart service on the lhqsid server phone i: 7470 password issue Translated 7470 : password issue i: 7471 windows password reset i: 7472 erp sid password reset and unlock request i: 7473 unable to access hostname i: 7474 unable to launch skype Translated 7474 : unable to launch skype i: 7475 ticket update query on ticket inc urgqkinl zpcokgbj i: 7476 unable to connect to company secure i: 7477 operator reinaldo albrecht second shift machine ewag rs grinding process pcd cell cannot record correctly his work data on shop floor app there is few days the records of day are extended to the next as if they had not been closed i: 7478 xd xd xd hello it xd xd when tried to download engineering tool to my desktop it is showing me this error xd please fix this issue xd xd xd xd best i: 7479 not possible to login due to locked account i: 7480 cant complete quote number xd get error massage xd line item xd entered brand is not listed enter valid brand for line item Translated 7480 : cant complete quote number xd get error massage xd line item xd entered brand is not listed enter valid brand for line item i: 7481 unable to launch netweaver i: 7482 netweaver bussiness client does not open i: 7483 hr tool portal is not working i: 7484 vip telephone summary still trying to get an issue resolved with outlook am tomashtgd mchectg new assistant he gave me editor permission for his email calendar etc when try to view his email in outlook get this error message cannot display the folder microsoft outlook cannot access the specified folder location have to manually open his email account each time which is not going to work seem to be able to view his email in owa but want to use outlook i: 7485 i tried in both ie and mozilla i: 7486 hi m having problem with the speaker on my laptop can hear on my headset but not my earbuds or speakers please advise vkzwafuh tcjnuswg cmp sr application eng i: 7487 unable to reset the password xd xd i: 7488 call from debgrtybie savgrtyuille inc to cancel ticket i: 7489 hello hostname teams corporate governance and hostname teams proxy these folders were deleted by an it helpdesk employee over the weekend we need immediate restoration back to so these folders and all of the files contained within are restored this is priority request please respond within the hour best debgrtybie savgrtyuille sr corporate paralegal company inc i: 7490 christgrytoph called to check if account has been disabled i: 7491 need help in resetting erp password and unlocking all accounts i: 7492 account expired for cyxieuwk rekwlqmu informed user that we need email from hr that account needs to be enabled account disabled i: 7493 hi uidgt jean xd xd we are observing one of the switch sao palo switch is down since am on et please check for the power status cable connections for this switch and revert xd xd note all devices came active after the planned power maintenance as per chg xd xd i: 7494 password management tool password manager brings an error while password change attempts i: 7495 collaboration platform online is not opening xd xd error diese seite kann nicht angezeigt warden Translated 7495 : collaboration platform online is not opening xd xd error diese seite kann nicht angezeigt warden i: 7496 xd xd xd hallo help xd xd ms office produkte zeigen folgende fehlermeldung xd xd gru Translated 7496 : xd xd xd hello help xd xd ms office products show the following error message xd xd gru i: 7497 please reset my password i: 7498 user id owenghyga he was locked out while using wifi at rth location i: 7499 unable to boot up computer earlier there was issue with blue screen xd xd xd xd computer name xd service tag fgvv xd xd ruf nummer sartlgeo lhqksbdx i: 7500 account locked in ad i: 7501 skype issue ms office crashing i: 7502 after pw update ve tried to lo log on to crm received the following pop up soll google chrome ihr passwort r diese webside speichern skotthyutc ve skiped that message than went to sales and markhtyeting after clicking on crm english languague left the save web went is that the side we would like to use received the following pop up soll google chrome ihr passwort r diese webside speichern do we want google to save our pws i: 7503 one note issue i: 7504 unlock ad account i: 7505 xd xd xd hello team xd abdhtyu user account is blocked can you please help xd xd i: 7506 it team please kindly check internet for us right now unable to work ip data as below copyright microsoft corporation all rights reserved users vvghychamc tracert trghwyng route to google public dns google com over maximum of hops ms ms ms company ap tha apac dmvpn rtr company com ms ms ms att singapore vpn rtr company com ms ms ms ms ms ms ms ms ms mdfcr tge sng attens net ms ms ms ms ms ms ms ms ms as ix jpix ad jp ms ms ms ms ms ms ms ms ms google public dns google com trace complete users vvghychamc przndfbo pldqbhtn pm pichayapuk gdhyrts muggftyali izwtdnfq xptuoaid wifi slow speed company apac dear pichayapuk please kindly check wi fi speed for our company it very slow speed and impacted our work this time we have more users in office about persons and some guests visit sometime please advise suitable package for our company dear nagfghtyudra attached currently internet package in apac office please advise if we need to up speed for international gate i: 7507 setup new ws stwpzxbf bjehirkx i: 7508 aenderungsantrag kann nicht geloescht werden Translated 7508 : Change request cannot be deleted i: 7509 probleme mit purchasing xmlbfjpg yegzbvru i: 7510 setup new ws ghaltiek lsuepvyx Translated 7510 : setup new ws ghaltiek lsuepvyx i: 7511 net weaver business client does not work xd error ms net framdntyework i: 7512 mobile device company owned successfully activated i: 7513 engineering tool is not working Translated 7513 : engineering tool is not working i: 7514 authorisation error in outlook nicht lizeciertes produkt i: 7515 moin xd xd kannst du bitte das passwort freischalten benutzer we wurde das passwort xd gesperrt bitte das passwort auf welcome setzen xd xd Translated 7515 : moin xd xd can you please activate the password user we was the password xd blocked please set the password to welcome xd xd i: 7516 erp sid password reset request for user beckes Translated 7516 : erp sid password reset request for user beckes i: 7517 probleme mit datenbank in eu tool hgrvubzo wgyhktic Translated 7517 : probleme mit datenbank in eu tool hgrvubzo wgyhktic i: 7518 xd xd xd in ticketing tool is for user cytohwau qfunricw no email available see picture xd xd xd xd mit freundlichen gr en best i: 7519 xd xd xd dear sir xd xd had tried to open crm please see here the attachment for the message while opening the same xd xd xd xd i: 7520 xd abended job in job scheduler job at i: 7521 business client brings error when launched i: 7522 programdnty zmmtaxupd updates tax classification for all the sales organization irrespective of selection criteria programdnty exection impacts apo jobs for india sales org there are two tax classifications fields which were updated with incorrect values last week i: 7523 windows account locked in ad i: 7524 user is getting unlicensed error in office i: 7525 xd xd xd hello xd xd xd xd xd xd xd best Translated 7525 : hello xd xd xd xd xd xd xd xd xd xd Best i: 7526 not able to view attachments from outlook i: 7527 von cytohwau qfunricw gesendet donnerstag an nwfodmhc exurcwkm betreff pc ewkw qdxyifhj zbwtunpy pc ewkw funktioniert nicht pc sst sich anschalten danach ist kein arbeiten am pc glich auch mit anderer tastatur versucht keine nderung mit freundlichen gr en cytohwau qfunricw grinding service germany Translated 7527 : from cytohwau qfunricw sent thursday to nwfodmhc exurcwkm concerning pc ewkw qdxyifhj zbwtunpy pc ewkw does not work pc has to switch on after that no work on pc is possible even with a different keyboard tried no change with kind regards cytohwau qfunricw grinding service germany i: 7528 xd abended job in job scheduler job at i: 7529 xd xd xd hi all xd am having an issue posting news to the hub xd xd when uploading new pictures for the news carousel to the site below xd the links which are created have no jpg ending and therefore when inserting xd to the news carousel the pictures don show up correctly xd xd xd would need this fixed within today as there are several news that should go out xd i: 7530 please provide details of the issue xd wifi ap i: 7531 xd xd xd hi xd xd please assist vnglqiht sebxvtdj to access his account as he forgot his password xd xd we need this urgent please xd xd kind i: 7532 it please kindly set up mobile link company mail user fbmugzrl ahyiuqev model iphone gb i: 7533 oa inwarehouse tool was created but no accounting document please double check and help to solve this problem i: 7534 vpn Translated 7534 : vpn i: 7535 fe Translated 7535 : it i: 7536 erp can not print by fe please help me switch to fe print it is urgent i: 7537 hi ti team need your assistant on the attached issue hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd asia regional distribution centre email i: 7538 zrpemyab xvzwcbha am nwfodmhc exurcwkm bmhxwvys tdmgolwn bmhxwvys tdmgolwn rad fw damaged laptop dear it help please help suhrhtyju to sort out issue with his laptop he is based in indonesia his contact details are as mentioned below suhrhtyju application engineer i: 7539 windows Translated 7539 : windows i: 7540 when tried to submit the describe what you need it shows no data found for employee inform system administration please help with it have several orders to send out this problem has been existed for week and no one contact me to solve it i: 7541 vpn connection issue xd connected to the user system using teamviewer xd installed the company vpn drivers xd caller confirmed that he was able to login xd issue resolved i: 7542 xd abended job in job scheduler job at Translated 7542 : xd abended job in job scheduler job at i: 7543 xd abended job in job scheduler job at i: 7544 observing below alert in reporting tool since am on et after reporting tool reboot xd xd queue dmz all failed to connect to hub lhqsmdom hostname hostname hub i: 7545 sao palo switch is down since am on et i: 7546 error login on to the sid system xd verified user details employee and manager name xd unlocked and reset the erp id to daypay xd caller confirmed that he was able to login xd issue resolved i: 7547 xd abended job in job scheduler snp heu regen at Translated 7547 : xd abended job in job scheduler snp heu regen at i: 7548 hi m having problem with sending discount requests get the below error when hit submit request had this problem last week but when connected to vpn it sent the request thought the problem was solved but it is still happening please advise vkzwafuh tcjnuswg cmp sr application eng i: 7549 xd xd xd assign to pi team files not transferred as per schedule even last week we had the same problem xd xd xd xd i: 7550 hallo ist es glich das ich office von englisch auf deutsch umstelle wenn ja wo finde ich diese einstellung xd xd wenn ich die videos von lets talk in deutsch ansehen chte und diese ber den link in der email anklicke sagt er mir xd xd office video isn available xd xd office video is not enabled by your organization for you xd xd hier ein link xd xd vielen dank r ihre hilfe Translated 7550 : hello it was equal that I switch office from english to german if so where can i find this setting xd xd if i want to watch the videos of lets talk in german and click on the link in the email it tells me xd xd office video isn’t available xd xd office video is not enabled by your organization for you xd xd here is a link xd xd many thanks for your help i: 7551 xd abended job in job scheduler snp heu regen at Translated 7551 : xd abended job in job scheduler snp heu regen at i: 7552 xd abended job in job scheduler bk hana sid erp wly dp at i: 7553 xd abended job in job scheduler sid hoti at i: 7554 hostname erp sid aprtgghjk production average samples disk free on home is now which is below the warning threshold out of total size gb i: 7555 hostname erp sid app production average samples disk free on home is now which is below the warning threshold out of total size gb i: 7556 hostname corporate file server teams production server is inactive i: 7557 xd abended job in job scheduler job at i: 7558 xd abended job in job scheduler sid cold at i: 7559 xd abended job in job scheduler sid cold at i: 7560 unable to connect to drive Translated 7560 : unable to connect to drive i: 7561 xd abended job in job scheduler sid cold at i: 7562 xd abended job in job scheduler sid cold at i: 7563 xd abended job in job scheduler job at Translated 7563 : xd abended job in job scheduler job at i: 7564 hostname south amerirtca br plm dsc file production dsccache exe wrong number of instances of process dsccache exe expected instances gte but found xd xd note there was planned power maintenance at south amerirtca as per chg service did not come up after the maintenance xd i: 7565 xd abended job in job scheduler job at i: 7566 xd abended job in job scheduler sid cold at i: 7567 xd abended job in job scheduler job at Translated 7567 : xd abended job in job scheduler job at i: 7568 xd abended job in job scheduler sid cold at i: 7569 xd abended job in job scheduler sid cold at i: 7570 xd abended job in job scheduler sid cold at i: 7571 xd abended job in job scheduler job at Translated 7571 : xd abended job in job scheduler job at i: 7572 xd abended job in job scheduler sid cold at i: 7573 xd abended job in job scheduler sid hot at i: 7574 mii login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 7575 xd abended job in job scheduler sid cold at i: 7576 name htsnaodb adjtmlzn language browser microsoft internet explorer customer number telephone summary am getting the following message when trying to log in to sid logon balancing error could not connect to message server is erp down right now i: 7577 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7578 xd abended job in job scheduler job was running longer min kirtyled and restarted i: 7579 xd abended job in job scheduler job at i: 7580 xd abended job in job scheduler job at i: 7581 xd abended job in job scheduler job at Translated 7581 : xd abended job in job scheduler job at i: 7582 the i: 7583 microsoft on behalf of company inc mail am nwfodmhc exurcwkm tiyhum kuyiomar rad request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name rolghtyuando last name santolgiy consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 7584 xd xd xd hello xd xd unable to connect to vpn xd xd get the below message xd xd xd xd xd xd xd Translated 7584 : xd xd xd xd xd later hello to Connect VPN to get the below message xd xd xd xd xd xd xd xd xd i: 7585 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am est xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in no yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor no xd xd notified gsc yes yes no na cert started na yes no na xd xd additional diagnostics i: 7586 xd abended job in job scheduler job at Translated 7586 : xd abended job in job scheduler job at i: 7587 xd abended job in job scheduler job at i: 7588 erp sid account locked i: 7589 idelcia almeida nascimento mail xd pm xd nwfodmhc exurcwkm xd rakthyesh the terminate action for carlos patino has completed xd xd hello xd xd termination for carlos patino effective has been approved xd xd click the link to view xd xd i: 7590 user is unable to view adoption scorecard manager in microsoft crm dynamics please check screenshot i: 7591 hi was wondering if should be able to see all my activities in crm what created in outlook example emails task appointments right now can only see my appointment as you can see below uvrwikmy yusexirn sr application technician i: 7592 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes no na xd xd backup circuit active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7593 unable to sign in to collaboration platform i: 7594 xd abended job in job scheduler hr tooldcvcgenratn at i: 7595 xd xd xd this has been happening every time try to filter by customer number in bex or hana am using both systems primarily hana otc billings all but think the issue is regarding the client xd xd have tried filtering by copying and pasting and also by importing text file with the same result xd xd any idea how to fix this error can find the log file it references i: 7596 judi elituytt xd am xd nmzfdlar whzbrusx facility nwfodmhc exurcwkm xd amar re phone display xd xd hi johthryu we are forwarding your request to the help desk it help desk is the contact for any phone issues i: 7597 hello xd xd termination for cyxieuwk rekwlqmu effective has been approved xd xd click the link to view xd xd i: 7598 hostname account is locked please unlock the account xd username hqnopr i: 7599 source ip xd system name xd user name xd location xd sms status xd field sales user yes no xd dsw event log see below xd xd xd xd incident overview xd xd we have detected at least occurrences of your firewall att singapore asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call xd automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc xd xd xd technical details xd xd historically there have been various worms malware that have used ports and to propagate examples include xd blaster worm msblast lovsan xd welchia nachi xd reatle xd xd port microsoft epmap end point mapper also known as dce rpc locator service xd xd port netbios netbios name service xd xd port netbios netbios datagramdnty service xd xd port netbios netbios session service xd xd port microsoft ds smb file sharing xd xd additional information on these ports and best practices can be found at the following sites xd xd xd xd xd xd xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd xd event data xd xd related events xd event id xd event summary internal outbreak for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd source port xd destination port xd connection directionality internal xd xd device information xd device ip xd device name att singapore asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd xd xd xd event id xd event summary internal outbreak for tcp xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname hostname xd source port xd destination port xd connection directionality internal xd xd device information xd device ip xd device name att singapore asa company com xd log time at utc xd action blocked xd cvss score xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside x i: 7600 hello team could you please unlock account email in cell phone the users cfgxpvzi dvpnfbrc recsynqt byoezmla and alexandfrre pintfgtyo id vertiayhtu id russoddfac id pintoddsa i: 7601 unable to submit timecard today i: 7602 olifgtmpio gargtcia blagtnco does not working for company anymore since do not know why there is still active ad account for him please delete that account as soon as possible as well any other system accounts for blancog olifgtmpio gargtcia blagtnco i: 7603 hostname average samples disk free on is now which is below the warning threshold out of total size gb since et on xd hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7604 hostname internal error unable to find any processes i: 7605 hostname robot hostname is inactive xd hostname average samples swap memory usage is now which is above the error threshold xd hostname average samples memory usage is now which is above the error threshold xd hostname internal error unable to find any processes xd hostname probe processes failed to start command processes exe error insufficient system resources exist to complete the requested service i: 7606 unable to connect to wireless i: 7607 account unlock i: 7608 xd abended job in job scheduler job at Translated 7608 : xd abended job in job scheduler job at i: 7609 ticket update on ticket no Translated 7609 : ticket update on ticket no i: 7610 unable to log into my reporting engineering tools i: 7611 rakthyesh ramdntythanjesh pm bxtqducs zuhoylts pvbomqht smfkuhwi inc telephony software is missing from pc dear cegtcil danghtnuell contacted service desk for assistance on telephony software issue kindly assist user on same kind i: 7612 unable to view desktop items or folders Translated 7612 : unable to view desktop items or folders i: 7613 this is company account with sales office fmw on the shipping conditions was updated to ground and the default carrier to tupsgrnd xd xd bob lewicki requested that entered ticket his comments believe that some logic for restricting sales offices was added so that infrastructure would not try to use flat rate but usa should definitely not be on there have copied prishry and rabhtui for input in the meantime can you please enter ticket to get it corrected believe that it should be able to be adjusted in table i: 7614 need urgent help see attached document example order says shipping receiving pt missing erp is not recognizing these plants getting error when trying to add plant as ship rec plant have checked plant and plant also same problem i: 7615 please help me log into my phone system using my changed laptop i: 7616 enable access to erp code cvn to view the drawing i: 7617 hello do not have access to the forcast to plan dashbankrd in crm see attached screenshot markhty dale sales engineer illinois nc i: 7618 access request to engineering tools i: 7619 xd xd xd good morning xd requesting access to the above file xd xd i: 7620 unable to access emails from company ipad Translated 7620 : unable to access emails from company ipad i: 7621 user unable to log in to outlook i: 7622 unable to login to collaboration platform Translated 7622 : unable to login to collaboration platform i: 7623 dear it continue to have skype audio issues am unable to hear skype calls through my tablet when call in specifically when dial into my directors call in number hear every third word have had this issue before and had an it tech fix the issue will need this done again why does this continue to be an issue qwijaspo ukynmfig sales manager west coast i: 7624 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7625 engineering tool doesn work Translated 7625 : engineering tool doesn work i: 7626 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7627 the pc projector in einstein conf room is not working it is on but getting no video on the screen i: 7628 please assign to erp supply chain team apo and ecc systems require synchronization so that delivery can be created material is needed to ship today i: 7629 xd xd xd hello xd pl let me know the process to install and start the access of official mail in my smart phone xd phone details as below xd xd make oppo xd build number xex xd imei xd imei xd xd duel sim mobile xd xd pl let me know any other details needed xd xd xd i: 7630 impact awards password reset i: 7631 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit na yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7632 replace internal speakers on due to crackling issue i: 7633 in switzerland cc we post material consumption on po mat post number the material has been discounted in stock and batch but not posten on the production order does not show up in the bill of materials there are several orders suffering this problem we need it solved aerp contact brjkmwvo odxwcpie i: 7634 xd xd xd am having problems submitting discount xd xd here is the screen shots im getting xd xd xd xd xd xd xd xd xd xd i: 7635 dell in device has not been booting despite multiple attempts for reset or reboot xd xd i: 7636 unable to view credit card statement on ess i: 7637 erp newweaver business client locked out i: 7638 erp sid password reset Translated 7638 : erp sid password reset i: 7639 erp sid account unlock and password reset i: 7640 the computer for mii has got thrown out of company domain xd xd please contact ms dpuifqeo eglwsfkn for further info i: 7641 at about am eastern daylight time was on conference call with usa the call started dropping out and the only reason can come up with is network bottleneck want to prove or disprove by finding out about the network traffic levels between usa and usa and between usa and the internet during the time the call was made i: 7642 erp sid locked out i: 7643 ticket update for an account lockout i: 7644 unable to load outlook i: 7645 need access to all the accounts in iowa minnesotta south dakota within crm i: 7646 account locked i: 7647 xd xd xd hello xd xd have issue when m working on vpn form home xd m not able to run mass programdntys in erp when m on vpn last weekend had to run mass programdnty to add partners in erp but was not able thought it was security issue but checked that with security erp team xd made uacyltoe hxgaycze when was in the office and it is working but can do the same at home working on vpn xd xd xd please check with high priority xd i: 7648 xd xd xd xd best Translated 7648 : xd xd xd xd Best i: 7649 while trying to log the erp part of erp fro the first time it would not accept my password and locked me out of the system i: 7650 update cutview to lauacyltoe hxgaycze version and adjust to current ms office installation i: 7651 xd xd xd it help desk xd xd we are unable to connect to wi fi at msg sales since last two three weeks xd xd please note when this was in lotus discussion room it was working fine and we could connect the same however now after it has been shifted to msg sales about month back we are unable to connect xd please check and restore at the earliest xd xd with best i: 7652 when launch collaboration platform my internet browser ie will not launch others around me are experiencing the same thing i: 7653 update cutview to lauacyltoe hxgaycze version and adjust to current ms office installation i: 7654 hello team xd xd could you please unlock account email in cell phone the user luciano amadeu and zpfitlyu cemvwyso xd xd id eulalla xd xd id silvaes xd xd xd xd i: 7655 csscdrill model on configair server not working in sid production xd when starting the csscdrill model from standard reference product the server responses internal server error error while trying to invoke the method java util list iterator of null object loaded from local variable locallist xd when starting the csscdrill model from scratch o selecting standard reference product configair comes up but it does not allow me to complete good configuration xd the same csscdrill model is working fine in sid uacyltoe hxgaycze environment xd xd the mill model model is working fine in sid and sid i: 7656 average samples disk free on is now which is below the warning threshold out of total size gb i: 7657 xd xd xd hello xd xd since some days when the regional news moved to first page of hub again and again news appear with out more to open it or link in the heading xd xd this screen print is just before wrote this email xd xd xd xd xd best i: 7658 replace button is missing on dialog box in shopping basket when you click on status indicator and msg displays there is replacement replace button is missing needs to be same as on other grid pages i: 7659 outlook is not functioning i: 7660 xd xd xd dear sir xd xd we do not have sufficient space of following drives in server request you to enhance the storage capacity of these drives xd xd xd mtbu ele hostname file hostname xd xd eplan vault hostname file hostname xd xd xd i: 7661 mouse is not working Translated 7661 : mouse is not working i: 7662 dac gso team please note the on call primary secondary details only for today between ist to ist primary krisyuhnyrt juvfghtla secondary thomklmas kahtuithra i: 7663 could you please check what is wrong with customer master we can create delivery because there are incomplete log pricing error mandatory condition mwst is missing xd we check with pricing department and mwst is defined for this customer corretly xd xd there should be tax like for turkey tr tax free trade zone because customer is from azerbaijan maybe has to be added some condition for this country also xd xd we have to ship the tools today because it is new order form new distributor with big potential so priority xd xd i: 7664 xd abended job in job scheduler job at i: 7665 setup new ws svuxjkpg tpurnjvi Translated 7665 : setup new ws svuxjkpg tpurnjvi i: 7666 setup new ws xovczlad fkicawph i: 7667 hello can you please help me to solve the following issue whenever want to start outlook then get this microsoft dynamics crm message in order to proceed further have to click storno cancel severeal times or then the outlook is opened but there is no connection with crm which need pofgtzdravem kind i: 7668 setup new ws bzekndcu ivhnpdbu i: 7669 setuplaptop r sandstrahlger und roboworker qidgvtwa qvbutayx i: 7670 durchwahl xd mobilteil gigaset sl xd lautsprecher mikrofon kratzen bzw setzten zeitweise aus Translated 7670 : extension xd handset gigaset sl xd loudspeaker microphone scratch or stop at times i: 7671 xd xd xd hi xd xd want to know how to run the report from finance app regarding the report of allocation key for cost centers being allocated to different bu can you please help xd xd i: 7672 xd xd xd dear sir xd xd am unable to upload engineering tools the error is showing not connected to the server but application shows connected status please see the screen shot for your ref xd xd xd xd xd best i: 7673 password does not work it says account is disabled i: 7674 xd abended job in job scheduler job at Translated 7674 : xd abended job in job scheduler job at i: 7675 hi pradtheyp nathyresh with effect from tuesday ie we propose make all vendor payments through bank in order to facilitate this process you are requested to make the following changes in the vendor master for all domestic vendors list is enclosed house bank id to be changed from itelephony softwarei bank to bank of amerirtca method of payments should be w and e mail address to be updated in correspondence internet id once the changes are made please confirm so that we can initiate the first payment to vendors through bank i: 7676 xd abended job in job scheduler job at i: 7677 dear sir am facing problems while individual calling as well as attending meetings on skype whenever am trying to connect it is coming not responding and skype app is getting closed and signed out request to pl resolve the same for company ftgvlneh aitsgqwo asst mngr sales north msg i: 7678 pls add the below data in the zsd and determine the logic through region xd xd apac csd ap xz custom solution earth cutting xd germany csd na bdc bdc usa custom solutions xd australia csd aus drum drum jobs australia xd poland eng emea pz poland quotes orders eng programdnty eng xd amerirtcas csd na bdc bdc usa custom solutions xd south africa csd emea sa south africa purchasing xd xd i: 7679 hello xd xd we understand from order booking team that while booking order since yesterday they have come across many mm with tax rate xd xd material country jivp jivc csr name prod hierarchy xd in chandmt tswwah xd in chandmt tpsshru xd in chandmt tswwah xd in chandmt tpsshru xd xd list of few items which has tax rate is given above xd xd at present they are booking order with correct tax rate in oa xd xd request your assistance in resolving this on top priority as we have put on hold all invoicing xd xd xd i: 7680 need help in reset password in password management tool password manager Translated 7680 : need help in reset password in password management tool password manager i: 7681 xd abended job in job scheduler bkbackup tool reporting tool prod inc at i: 7682 xd abended job in job scheduler bkbackup tool hostname prod full at i: 7683 account lokced in erp sid i: 7684 xd xd xd franhtyu liu would like to recall the message ticket no comments added xd xd xd xd xd select the following link to view the disclaimer in an alternate language i: 7685 xd abended job in job scheduler sid hotf at Translated 7685 : xd abended job in job scheduler sid hotf at i: 7686 xd xd xd dear sir madam xd xd am not able to access bex as well as business client xd xd pl rectify immediately its urgent xd xd i: 7687 account locked in ad i: 7688 required gb additional memory in drive for server hostname please check attachment i: 7689 not able to login to skype i: 7690 hi team have lost access to the drive on my computer please see the screenshots below this same issue is occurring for walfgtkek and tagsyrhu can you please arrange for this access to be reinstated i: 7691 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7692 xd abended job in job scheduler job at i: 7693 xd abended job in job scheduler job at Translated 7693 : xd abended job in job scheduler job at i: 7694 xd abended job in job scheduler job at i: 7695 xd abended job in job scheduler job at Translated 7695 : xd abended job in job scheduler job at i: 7696 xd abended job in job scheduler job at Translated 7696 : xd abended job in job scheduler job at i: 7697 unable to access emails Translated 7697 : unable to access emails i: 7698 xd abended job in job scheduler hr tooldcvcgenratn at i: 7699 xd abended job in job scheduler job at i: 7700 please provide the following xd xd what order number xd xd what material or item number xd xd what warehouse location plant xd xd issue description error message value of modific counter for document in supply chain is but should be i: 7701 erp is down distributor tool company center customers are not able to place transactions customer service is not able to place transactions in ecc i: 7702 the window is locked up can do screenshots just spinning circle i: 7703 user id vaugtyghtl issue erp down location usa no of users affected system erp sid erp production issue just clocking contact no server name hostname transaction md i: 7704 mobile device activation name mikhghytr karaffa language browser microsoft internet explorer customer number telephone summary requesting email to my personal iphone i: 7705 ot auftr ge funktionieren ot auftr ge lassen sich nicht bearbeiten beim ausliefern Translated 7705 : ot jobs work ot jobs cannot be processed during delivery i: 7706 xd abended job in job scheduler job at Translated 7706 : xd abended job in job scheduler job at i: 7707 outage on erp sid Translated 7707 : outage on erp sid i: 7708 german call Translated 7708 : german call i: 7709 totalteamsales sproc is not assigning direct team revenue to employees i: 7710 i have noticed that received by email some messages of skype for business even when am off line did uacyltoe hxgaycze have turned off my pc and smartphone and from the pc of my colleagues it shows am inactive or away then people send me message i: 7711 programdnty zmm stock transfer is not processing it been on an eternal circle franhtyu rebalancing not completing dqplrwoy cutpwjie supply chain planner i: 7712 install printer in maintenance area i: 7713 how did you determine there are network problems erp sid xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow yes erp slow xd xd are more than one transactions impacted yes xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen hostname xd xd do other co workers also notice slow response times in erp yes four users at usa xd xd what other applications are running slow erp sid xd xd can you access your data files on the server xd xd any other comments or issues with other systems i: 7714 please provide details in the template below if multiple applications are impacted please use the quick ticket template in the operations folder site location usa user id ad dinkifgtrl system you are seeing performance problems on please list all g crm erp bw bobj sid erp production server name hostname transactions that are slow g va create an order quotes and orders va va area this belongs to g sales finance markhtyeting etc sales as per robhyertyj how can this issue be replicated by the it support group are other users seeing this yes please attach relevant screenshots and exact times when the issue occurred attached user name robhyertyj dinfgrtyukins contact no i: 7715 hi please check my security for the ethics collaboration platform page am trying to upload file to the procedures category folder was able to upload to the noname category but for some reason cannot upload into procedures suspect security setting mikhghytr wafglhdrhjop sr manager global ethics and compliance programdntys i: 7716 hi when try to submit discount form get the below error please advise vkzwafuh tcjnuswg cmp sr application eng i: 7717 xd abended job in job scheduler job at Translated 7717 : xd abended job in job scheduler job at i: 7718 santiago south amerirtca has reported that today between and minutes the dmvpn was not working they have contacted the local isp which confirmed that the internet circuit was working fine xd could you please investigate the logs of the router and let us know your findings xd am surprised that datacenter team did not contacted us about that issue xd i: 7719 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7720 hi xd am unable to login to sid today and see the error shown in the screenshots xd request your help at the earliest since m trying to uacyltoe hxgaycze something related to engineering tool xd i: 7721 password reset Translated 7721 : password reset i: 7722 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7723 programdnty in erp not loading Translated 7723 : programdnty in erp not loading i: 7724 blank call loud noise Translated 7724 : blank call loud noise i: 7725 hello xd please arrange that mrs de gracia fernandez ghjkzalez k access to your payroll gets approval xd i: 7726 lhqsm kas hfyujqti jdcbiezx average samples disk free on is now which is below the warning threshold out of total size gb i: 7727 npc mrp type incorrect error i: 7728 please provide details in the template below if multiple applications are impacted please use the quick ticket template in the operations folder site location corporate user id ad prohgtyarb system you are seeing performance problems on please list all g crm erp bw bobj workflow transactions that are slow g va create an order quote area this belongs to g sales finance markhtyeting etc sales how can this issue be replicated by the it support group are other users seeing this please attach relevant screenshots and exact times when the issue occurred is stuck in my workflow when try to go in it says am in it and cannot save it out i: 7729 the needs to be sev because it heavily limits the amount of production can put out on the floor also multiple people and departments are affected not just me this includes many additional man hours xd xd xd am having an issue with the oracle powder charging system automatically issuing material to production orders in erp we are having to use many extra man hours manually entering in the data in erp also this problem dramdntyatically decreases the efficiency and accuracy or issuing production orders xd xd i: 7730 unable to log in to windows i: 7731 usa ar pbx rqxaudix company com is down since on i: 7732 summary please add me to the gshn mail group i: 7733 plug in not responding error in erp Translated 7733 : plug in not responding error in erp i: 7734 erp pthsqroz moedyanvess error message object notification business operation not entered in your user master i: 7735 outlook goes to not responding Translated 7735 : outlook goes to not responding i: 7736 user wanted to reset internet explorer i: 7737 account locked out i: 7738 erp sid erp production account locked i: 7739 transfer information from old to new laptop i: 7740 color printer not working i: 7741 i unable to reach the destination server is it offline i: 7742 zpress does not save data for material pl check for order no i: 7743 can not join skype meeting Translated 7743 : can not join Skype meeting i: 7744 bitte an smpijawb eawkpgqf weiterleiten xd nachdem das alicona messger umgestellt wurde muss der pc r sdnemlwy dsbmgonk aufgebaut werden apl vor juchaomy gaxrulwo av abstechprogramdntym xd soll termin bis august xd mitarbeiterin kommt am zur ck Translated 7744 : please forward to smpijawb eawkpgqf xd after the alicona messger has been converted, the pc r sdnemlwy dsbmgonk must be set up apl before juchaomy gaxrulwo av abstechprogramdntym xd should date by august xd employee comes back on i: 7745 bitte an smpijawb eawkpgqf weiterleiten xd alicona messger muss von av abstechprogramdntym in halle ehem ventilst el kontrolle umgestellt werden xd soll termin in kw Translated 7745 : please forward to smpijawb eawkpgqf xd alicona messger must be changed from av abstechprogramdntym in hall former valve el control xd should be in kw i: 7746 unable to launch outlook and skype i: 7747 xd xd hello xd xd can you help to put in ticket for access to the quality assurance drive for employee uqjbkydr bsqofdlx username whalep aerp xd xd have copied the owner of the drive eozqgims rbmosifh quality manager for permission reasons xd xd i: 7748 flash player incompatibility i: 7749 no audio device installed Translated 7749 : no audio device installed i: 7750 wifi not working Translated 7750 : wifi not working i: 7751 need help in connecting skype meeting that is coming up with an error i: 7752 unable to open pdf files in user system i: 7753 xd xd xd hello xd xd am not able to use command field by default it is taking mc xd pl help xd xd xd xd i: 7754 xd xd xd dear all xd please open ticket and address shortly xd i: 7755 i receive an error message when trying to start business client microsoft net framdntyework is not installed upgraded my knovel software last night and now am receiving this message ext ldil i: 7756 please send me link for password management tool password manager i: 7757 zlnxswvp ptmzsbhk xd am xd nwfodmhc exurcwkm xd sab wg skype sst sich nicht starten xd xd bitte um unterst tzung xd xd freundliche gruesse kind Translated 7757 : zlnxswvp ptmzsbhk xd am xd nwfodmhc exurcwkm xd sab wg skype does not start xd xd please for support xd xd kind regards, child i: 7758 connecting the plantronic headset beshryuwire with thecomputer the speaker of the computer is turned on too xd how can it be turned off xd xd note the issue already was solved i: 7759 xd xd xd hallo xd xd es gibt anscheinend probleme bei der bertragung von stempelzeiten eu tool erp bei stelligen personalnummern siehe unten xd xd freundliche gr xd weszfyok fbadnjhu xd xd xd von axesnghb cyzuomxa xd gesendet donnerstag juli xd an zslugaxq dtwlrofu laeusvjo fvaihgpx xd weszfyok fbadnjhu xd betreff leihmitarbeiter lochthowe andre xd xd xd hallo zusammen xd xd seit dem stempelt herr lochthowe mit seiner karte in eu tool xd xd seit dem zeitpunkt werden die daten nicht an erp bertragen xd xd hier stimmt etwas nicht mit der karten nr oder der stammnummer xd xd wir haben hier den ersten mitarbeiter mit einer achtstelligen stammnummer xd xd kann es daran liegen xd xd bitte mal pr fen xd xd xd xd mit freundlichen gr en xd best Translated 7759 : xd xd xd hello xd xd there are apparently problems with the transfer of stamping times eu tool erp for digit personnel numbers see below xd xd friendly gr xd weszfyok fbadnjhu xd xd xd from axesnghb cyzuomxa xd sent thursday july xd to zslugaxq dtwlrofu xdjjgpxd to zslugaxq dtwwlrofu Regarding temporary employee lochthowe andre xd xd xd hello everyone xd xd since then, mr lochthowe has been stamping his card in eu tool xd xd since that time the data has not been transferred to erp xd xd here something is wrong with the card no or the master number xd xd us if you have the first employee here with an eight-digit master number xd xd it may be because xd xd please check xd xd xd xd with kind regards xd best i: 7760 bobj webi jobs are not running please investigate at the earliest i: 7761 xd von pradyhtueep yyufs xd gesendet xd an ubiqcrvy mxjcnqfs nathyresh gayhtjula erp fico ebusaar munnangi xd iszaguwe bdfzamjs pkjhmfgc zuvjqgwa joacrhfz ctrbjusz maryhtutina bauuyternfeyt xd betreff re zahllauf nicht ausgef hrt international payments rejected xd xd jartnine xd xd we are looking into the development changes which were implemented recently we will get back to you by tomorrow xd xd sorry for any inconvenience xd xd i: 7762 xd laptop doesnt stay on power light stays on for minute only and goes off xd xd xd bmhxwvys tdmgolwn xd pm xd nwfodmhc exurcwkm xd zrpemyab xvzwcbha xd tru fw damaged laptop xd xd xd dear sir xd xd damage dell laptop lit only minute in see attachment xd thank for the response and cooperation xd xd best i: 7763 erp password reset in sid Translated 7763 : erp password reset in sid i: 7764 xd xd xd hello team xd xd can not log on erp with my password xd xd could you help me for this issue xd xd i: 7765 password reset alert from o i: 7766 hr tool portal access through single sign on not working i: 7767 hello team can you please arrange business card for me please find the details below and let me know the protocol for the same zqbmxdgy stuwbacm analyst apps dev maintenance and ebus warm i: 7768 this was supposed to be removed immediately after uat however we missed removing this assignment shipment from plant was assigned only for uacyltoe hxgayczeing purposes business requirement come in future i: 7769 hello team can you please arrange business card for me please find the details below and let me know the protocol for the same zqbmxdgy stuwbacm analyst apps dev maintenance and ebus erp sd warm i: 7770 wegen ein sicherheitsupdate kb sind keine netzwerkverbindung moeglich xd xd fehlermeldung keine netzwerk verbinung Translated 7770 : due to a security update kb no network connection possible xd xd error message no network connection i: 7771 could you please changes the license of the following employees from to luifdsts olhryhira cost center pam maertosv krsxguty odqpwsgi soarewer uzavdmoj wrpkolzq alvesdss kgcw isyfngdz machasssg puxqyesm xqathyuz peredrfifj flavio pereira schidrftas maihdlne xodeqlsv vieiresddr dfjbnrem vabqwxlm albussdqp imeytghj lyrikzep larsffar rafaelm lara ribewddwic fhkebpyx tqpermnu carmsswot uvyjpixc kbfcrauw garcisdwr rodrigo fernansdes garcia olivesswc gcbrdkzl oamkcufr placisddwd douglas placido grateful i: 7772 hostname kisp iis app server production disk free on is now which is below the warning threshold i: 7773 es kann keine auftrag gedruckt werden ziehe fehler Translated 7773 : no order can be printed draw errors i: 7774 change erp logon language from german to english i: 7775 erp sid password reset for user mertut Translated 7775 : erp sid password reset for user mertut i: 7776 account locked xd i: 7777 xd xd xd dv zlettel mit freundlichen gr en best Translated 7777 : xd xd xd dv note with kind regards i: 7778 xd xd xd hello all xd xd do you have any news about the issue of printing of drawings and production papers xd when is the issue solved xd i: 7779 plant sid Translated 7779 : plant sid i: 7780 account locked i: 7781 error xd verbindung zu system production order interface app fu mit destination xd production order interface vendor connc fu fehlerhaft xd fehler beim ffnen einer rfc verbindung cpic call xd Translated 7781 : error xd connection to system production order interface app fu with destination xd production order interface vendor connc fu incorrect xd error when opening an rfc connection cpic call xd i: 7782 xd xd xd hello xd path to the folder xd hostname departments lean lean projekte lean projekte geplant fy file hostname departments lean lean projekte lean projekte geplant fy xd xd xd xd mit freundlichen gr en best i: 7783 xd abended job in job scheduler sid hotf at i: 7784 wir haben hier in koenigsee probleme mit dem druck aus erp es kommt ein production order interface app fehler xd Translated 7784 : here in koenigsee we have problems with printing from erp there is a production order interface app error xd i: 7785 xd xd xd es wird nichts mehr ausgedruckt xd fehlermeldung xd xd mit freundlichen gr en best Translated 7785 : xd xd xd nothing is printed anymore xd error message xd xd Yours sincerely i: 7786 setup new ws chkzbeav ykeilmog i: 7787 hello xd xd we have no connection to the plsseald fu server think the server is down xd we can print production orders in germany xd xd xd no connection to the production order interface app fu production order interface vendor connc fu xd error rfc connection cpic call i: 7788 probleme mit erpgui tmqfjard qzhgdoua Translated 7788 : problems with erpgui tmqfjard qzhgdoua i: 7789 setup new ws ylhptzmd owslfzqi i: 7790 setup new ws wphqnxly htvrbxmd i: 7791 barcode scanner defekt pifyudbo tagsfbny Translated 7791 : barcode scanner defective pifyudbo tagsfbny i: 7792 search material code are unavailable that seraching result is via specification xd i: 7793 xd xd xd hello team xd good morning xd xd please your help to add ethics training course to my csr member cajdwtgq breqgycv xd xd daria is working in company since and despite all our requests since she joined company xd she never received the training course invitation as required to be completed by all employees xd xd we ve answered the below questions by your request xd if further info is required please let us know xd xd i: 7794 outlook issues yesterday my outlook took about hours to load afterit was very very slow today can not open outlook anymore xd please check i: 7795 dell in adapter not working Translated 7795 : dell in adapter not working i: 7796 pc is not booting up user has already spoken to steffen xd xd computer name eagw xd ext i: 7797 xd xd xd hello help team xd xd can you pls arrange read and write access for dveuglzp mqetjxwp to the following oe drive on teams eagcldaten teams xd xd xd xd xd xd xd i: 7798 specification searching in sid is not returning any results works okay in sid i: 7799 we have agreed price with many of the distributors for given period and skus this is specified through pricing condition zcnc in erp in distributor tool it is order through sold to and ship to combination xd till flat rate deployment we did not have any issues xd today when the distributor tried to book the order with zcnc pricing condition the initial screen shows the correct price but when the item is selected and quick order is clicked on the price is getting changed to list price less standard discount instead of retaining the zcnc price i: 7800 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes phone warehouse tool mail yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit no yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes yes no na cert started yes no na xd xd additional diagnostics i: 7801 desktop connected to the phone system in server room at company is not working please could you troubleshoot and fix the problem xd xd i: 7802 xd abended job in job scheduler job at Translated 7802 : xd abended job in job scheduler job at i: 7803 if connect my laptop to docking station and try to power on encounter the attached message have confirmed that the message does not appear if use external adaptor or another docking station serial number of docking station is qad location k i: 7804 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7805 i can login skype after change password but other application is ok i: 7806 the temperature of the switch has reached red threshold i: 7807 request to reset microsoft online services password for i: 7808 xd xd xd hi team xd xd my outlook is failing to bring up emails in my search function xd xd xd have tried to rebuild the indexing but it fails this has been happening all week xd xd need to be able to use this function xd xd i: 7809 hi team need your help to reinstall antivirus symantec in computer lpaw the symantec don working xd xd if you have more doubts please contact me i: 7810 dell pc boot up failure had to try restart the pc multiple times the system reboots automatically in loop finally got the pc up and running seems to be issue with the pc again the pc shut down computer name lmsl os win contact i: 7811 xd abended job in job scheduler job at Translated 7811 : xd abended job in job scheduler job at i: 7812 new employee mikhghytr karaffa needs new desk phone phone i: 7813 global erp crm it appears that erp crm is trying to send the review by sales email to the customer contact the review by sales email was originally configured so that it would only get sent to the sales employee the review by sales email should never get sent to the customer contact examples refer to the attached screen shots did someone change something please investigate and advise aerp i: 7814 mobile device activation Translated 7814 : mobile device activation i: 7815 unable to install engineering tool i: 7816 password reset for bsopzxhi irfhcgzq i: 7817 xd xd xd hi xd please reset my password and sending the password to log in xd well i: 7818 create purchasingupstreamsso ad group for qiyujevw ogadikxv wanrtygm the samaccountname in ad is to be all lower case i: 7819 hello team could you please unlock account email in cell phone the user michthey olivgtyera id olivgtyemc i: 7820 xd abended job in job scheduler job at Translated 7820 : xd abended job in job scheduler job at i: 7821 the ribbon in advanced find is displaced making it difficult to query the system create views see attached i: 7822 my cell phone is other people at jc have complained about the same thing i: 7823 vpn link Translated 7823 : vpn link i: 7824 unable to login to skype Translated 7824 : unable to login to skype i: 7825 error in accessing reporting engineering tool xd xd bill this would need to be ticket gso please assign to the analytics technical team might be that the account for magda is locked out can republish using an analytics account xd xd i: 7826 i need have access on engineering tool however when tried do logon engineering tool show me te message that had permission please include my user id on cad user list let me know if you need more information contact phone i: 7827 the i: 7828 error login on to the sid system xd verified user details employee and manager name xd user has tried the password management tool pwd manager xd unlocked the erp id xd caller confirmed that he was able to login xd issue resolved i: 7829 reporting tool web link in crm not opening up i: 7830 infopath cannot submit the form xd an error occurred while the form was being submitted xd the form cannot be submitted to the following location xd the site be offline read only or otherwise unavailable xd access denied before opening files in this location you must first add the web site to your trusted sites list browse to the web site and select the option to login automatically xd xd i: 7831 name nxloukai cpbzkrel language browser microsoft internet explorer customer number telephone summary need an update on my it ticket ticket no this needs to be resolved aerp i: 7832 unable to launch outlook i: 7833 company center page does not load Translated 7833 : company center page does not load i: 7834 login issue xd verified user details employee and manager name xd checked the user name in ad and unlocked the account xd advised the user to login and check xd caller confirmed that she was able to login xd issue resolved i: 7835 netweaver not working name iauqlrjk nijdaukz language browser microsoft internet explorer customer number telephone summary am not able to open net weaver business client receive an error that microsoft net framdntyework is not installed and to contact my administrator i: 7836 category task owner xd documentation see attached server profile forms nvyjtmca xjhpznds xd global security create global groups and add the appropriate users security group xd local security implement local users groups security tool kathght shfhyw xd monitoring add to reporting tool monitoring dac inventory erirtc baurhty hoavdlwc ungksotp xd add server to management server akisjtzm uvbmysgcbenezer kishore nikam xd sms patching antivirus sw add server to sms patching antivirus sw shahid nawab xd security run qualsys scan gzhapcld fdigznbk ugyothfz ugrmkdhx xd backup configure backup local remote timnhyt rehtyulds gdhyrts muggftyali xd i: 7837 vldwtjgr vtzakpol xd pm xd nwfodmhc exurcwkm xd dctvfjrn oypnxftq xd amar re shop floor app problems xd xd help desk xd xd we are experiencing problems widtqkwzup vtkzuqly in the tinning cell please assign the shop floor app support group to work on this issue the operators are reporting that not all the production orders they are badging are posting please let me know what further info you need from me xd xd xd i: 7838 engineering tool error Translated 7838 : engineering tool error i: 7839 name ivxybewh ykhsqvnu language browser microsoft internet explorer customer number telephone summary need all of my passwords reset so can log into my computer and into erp i: 7840 unable to launch outlook i: 7841 vitalyst transfer service unavailable on crm online i: 7842 windows password reset i: 7843 when user is trying to use separate computer install software he getting message stating that windows cannot connect to the domain either because the domain controller is down or otherwise unavailable or because your computer account was not found this computer needs to replace dead pc in the shop floor and user need to install software to make it up and running i: 7844 call transferred to amfgtyartya for password i: 7845 i trying to access this collaboration platform site believe it was managed by bill gofgrthyuetz who left the company requested access on and haven received response i: 7846 password reset Translated 7846 : password reset i: 7847 hi team my laptop random shut down problem still exists lose important unsaved data because of it it now shows no battery detected please replace battery or laptop or please rectify the issue as soon as possible i: 7848 tfrbwoua aegpkruc unable to print from pdf i: 7849 hi could you please usa me full access permissions for maintaining py data in erp for all german locations reference id can be mnakehrf mvunqihf or hess kagthrl heyinz approval can be provided by jywvemun qngschtz i: 7850 increase the ramdnty from gb to gb ramdnty for hostname server i: 7851 hello please reset my password for bobj in sid my user name is mcfgtydonn i: 7852 hello xd account zip code was updated in erp sid however it does not move to msd crm the error says the post code is not valid do we know in what format the postal code should be entered for israel can you elogic share the rules regarding postal code formats with lucinda team please xd xd i: 7853 zmgsfner caltmgoe xd xd sadghryioshkurtyar hiremath mfyivqes cpihaxbs hostname old xd xd hi xd xd you can remove the old hostname from the domain now xd xd have not needed to access it recently xd xd let me know when you are done and will power it down and move into storage xd xd i: 7854 password reset request from o i: 7855 vwaliogd dviwuzhm pm gdhyrts muggftyali sadghryioshkurtyar hiremath stefyty parkeyhrt wyjsbzda yfeuhtib low disk space on lhqsid drive hi nagfghtyudra sadghryiosh was checking my access to lhqsid for tomorrow dot net application deployment and realized is running out of space with only kb free space is this ok if not request your help to clear off any temporary files to free up some space adding stefyty parkeyhrt in cc if you need approvals to move over files between drives if required i: 7856 zugriff auf verzeichnis angefragt folder access requested benutzer id user id karagtfma benutzer die position titel user position title manager commodities amerirtcas verzeichnis folder hostname all items under purchasing art des zugriffs type of access read only or full control full control name des vorgesetzten manager name i: 7857 unable to launch outlook i: 7858 eu tool funktioniert nicht xd meldung unbekannten fehler system distributor tool fehler Translated 7858 : eu tool does not work xd message unknown error system distributor tool error i: 7859 the terms of payment are not in line between crm and erp xd xd customer fredi stury ag ruemlang xd xd sales org xd crm entry days net days xd erp entry days net days xd xd suggested that both systems should reflect the same data xd xd according to the information received from repyzajo lxfwopyq it was requested by sales and approved by finance xd could you please change it back to i: 7860 outlook is not opening Translated 7860 : outlook is not opening i: 7861 account locked i: 7862 password reset request for kiosk users Translated 7862 : password reset request for kiosk users i: 7863 oprbatch extending plant views on fert items with missing incorrect settings mm extended to plant missing abc spt incorrect and mrptype incorrect mm extended to plant missing abc spt incorrect mrp type incorrect delivery plant incorrect for sales org mm extended to plant missing abc spt incorrect mrp type incorrect in addition when oprbatch extends price control is defaulted to depending on source it should be and this always needs corrected manually i: 7864 mmaster sales org extensions created by oprbatch are creating errors in matgrp and material statistics examples extended on which we had to correct this morning sales org sales org we had today that were blank and needed corrected if we manually extended these the system doesn allow us to save with blank we need oprbatch to populate these fields xd mmaster sales org extensions created by oprbatch are creating errors in matgrp and material statistics examples extended on which we had to correct this morning sales org sales org we had today that were blank and needed corrected if we manually extended these the system doesn allow us to save with blank we need oprbatch to populate these fields i: 7865 xd xd xd dear sir xd cannot use net weaver business client please support for this issue xd xd xd xd with warm i: 7866 device replacement setup new hp laserjet mfp replaces old ag tel i: 7867 xd xd xd dear folks xd we have planned to deploy the dotnetframdntyework and business client sid on the enclosed list of engineering tool application installed pc of amerirtcas region from th aug and also please ensure that all these users as enclosed are familiar with the package installation steps type of package installation duration importance of the package mode of the installation times of reboot and installation behavior through referring the below details xd xd note this is to deploy only on pc of amerirtcas that has engineering tool application installed identified by engineering tool application team prioritized list xd xd package details xd xd xd deployment date thursday xd xd xd xd time am in the morning as per the respective location time zone xd xd xd xd deployment tool patching antivirus sw xd xd xd xd package type prompted user will be prompted with prior notification to save all the work before proceeding the installation through clicking the continue button xd xd duration minutes xd xd restart required yes prompt to restart after the installation of netframdntyework and business client sid xd xd xd xd package behavior please go through the below provided bill bankrd and understand the importance of the package deployment xd xd xd xd xd xd xd xd xd xd xd xd i: 7868 laptop is having blue screen i: 7869 xd xd xd hello xd xd after updating the erp am facing problem in oppening the attachments in erp quotes xd xd please resolve immidiately as this is causing problem for my regular activity xd xd xd xd warm i: 7870 cannot access discounts through collaboration platform i: 7871 engineering tool is getting locked out frequently i: 7872 someone has deleted all of the holiday entries from the holiday list on the hub there should be backup in metavis that can be restored please restore the list i: 7873 xd summary unable to login to outlook i: 7874 please refer attachments to this ticket for more informations i: 7875 erp password reset request Translated 7875 : erp password reset request i: 7876 setup new ws thnsguzj utwijzag Translated 7876 : setup new ws thnsguzj utwijzag i: 7877 setup new ws yucgfmiq jamgpnqe i: 7878 setun new ws michghytuael luesebrink i: 7879 setup new ws uhammet kuluz Translated 7879 : setup new ws uhammet kuluz i: 7880 install bit version von ms office r pc im ro rohlings fertigung njdrcagt shourxyp i: 7881 i tried to run the report dscsag dms kpro contv clean in sid through background job with the following inputs but it resulted in abap runtime error shown below xd xd input variant ugi clean xd application ugi xd quantity of inactive content versions xd xd have attached the screen shots of the same in the document xd xd we are working on this ticket inc plm content versions being generated without configuration this report refers to this ticket i: 7882 forgot attendance tool password i: 7883 xd xd xd hallo help team xd xd ich habe das problem dass wenn ich nach versendeten emails suche ber die suche nach namen kommt folgende fehlermeldung xd es kommen immer nur vorschl ge bis zum xd bitte pr fen und ckinfo xd vielen dank xd xd mit freundlichen gr en kind Translated 7883 : xd xd xd hello help team xd xd I have the problem that when I search for emails that have been sent, searching for a name comes up with the following error message xd there are always only suggestions up to xd please check and ckinfo xd many thanks xd xd with kind gr en child i: 7884 xd abended job in job scheduler job at i: 7885 outlook is not working Translated 7885 : outlook is not working i: 7886 reset password for erp sid Translated 7886 : reset password for erp sid i: 7887 xd abended job in job scheduler job at Translated 7887 : xd abended job in job scheduler job at i: 7888 microsoft outlook is not working for pdujfybc bvfdnale pls check pc edww xd i: 7889 help to configure the wireless device id printer and install the visio on the reimaged laptop i: 7890 user called to give information regarding ticket no i: 7891 my account changed new password get many error in passwordmanage system erp system password could not changed my distributor tool system i: 7892 how do change the message server when connecting to sid xd xd believe that it should be lhqx i: 7893 hello xd xd below mail is definitely spam mail kindly take note of the same xd xd also if it is ok than forward this mail to all the employees to warn everyone xd xd xd xd i: 7894 hello xd xd have two specific cases where newly created prospect account in crm modern construction and sandfield engineering does not get an erp number even after some days after having run an advanced find search found we have such cases please see attached file that describes the issue and the unique steps xd xd if prospects do not get an erp id it results in the fact that they do not show up in the users my active prospects view because it filters on prospects with erp id users think that the account was not created and create the over and over again we should review if we want to change the logic behind this view assume the filter was put in to exlude non complete accounts xd xd another issue found during this troubleshooting process is deactivated such duplicate prospect and the audit log shows that minutes later the account got activated again and got the erp number too please investigate this one too xd xd i: 7895 quotation with configured new simple special items remains incomplete in sid xd quotes were created in distributor tool xd quote alternate mill model item gets not replaced with material of initial item xd quote and pricing remains incomplete cannot identify what is actually incomplete but erp shows the status incomplete and therefore the quote cannot be printed and sent to customer over web i: 7896 germany patching antivirus sw server hostname shows down since am est xd kindly check i: 7897 hostname hr tool tax interface app qa average samples total cpu is now which is above the error threshold i: 7898 system sid sid sid sid hrp other sid enter user id of user having the issue chopamghy transaction code the user needs or was working with spro describe the issue need the access of spro transaction in sid if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user milyhyakrp i: 7899 das passwort wurde meinerseits falsch eingegeben bitte passwort zur cksetzen engineering tool und erp danke xd Translated 7899 : the password was entered incorrectly on my part, please reset the password engineering tool and erp thanks xd i: 7900 erp sid account locked i: 7901 rabhtui and all xd xd it looks like me still have web issue the folks at the warehouse have seen some instances where the carrier has been carrier tcode but the inco and sc were cip and so kis is trying to change it to ups ground in one case it looks like the inco and sc are pulling from the sold to and the carrier is coming from the ship to and in another it looks like the customer changed the carrier but was flat rate already because didn see that carrier option listed as default on either the sold to or ship to xd xd here are the two examples from the warehouse xd xd delivery sales order xd came over as cip tfedpnd sold to is cip tupsgrnd ship to is fca tfedground acct xd came over as cip tfedground sold to is cip tupsgrnd ship to is fca tups acct xd xd i: 7902 erp sid account locked i: 7903 xd abended job in job scheduler bkbackup tool reporting tool prod inc at i: 7904 enterprise scanner not working Translated 7904 : enterprise scanner not working i: 7905 grhryueg dewicrth xd am xd nwfodmhc exurcwkm xd rad fwd your mobile device is temporarily blocked from synchronizing using exchange activesync until your administrator usas it access xd importance high xd xd can you please unblock and usa access to my new phone xd xd i: 7906 name kargthythik language browser microsoft internet explorer customer number telephone summary am not getting any old mails in my outlook kindly do the needful to restore the same and help me store it in separate location i: 7907 unable to login to vpn and reset password i: 7908 name zcqnuawo zxdtskpw language browser microsoft internet explorer customer number telephone summary bex password was locked due to wrong typing please reset the password i: 7909 xd xd xd hi xd xd am not getting any old mails in my outlook kindly do the needful to restore the same and help me store it in separate location xd xd xd xd i: 7910 xd xd xd dear sir xd xd pc number awyw should be made as stand by own it should not be connected to network as we are using it for cmm machine it require separate pc kindly do the needful xd xd i: 7911 xd abended job in job scheduler job at Translated 7911 : xd abended job in job scheduler job at i: 7912 xd xd xd hello it xd when try to open engineering tool get this so delete engineering tool off my computer and then reinstalled it and still get this xd i: 7913 xd abended job in job scheduler sid hoti at Translated 7913 : xd abended job in job scheduler sid hoti at i: 7914 xd abended job in job scheduler sid hotf at i: 7915 xd abended job in job scheduler bk hana sid erp dly dp at Translated 7915 : xd abended job in job scheduler bk hana sid erp dly dp at i: 7916 bex cannot convert to excel sheet i: 7917 domain account unlock Translated 7917 : domain account unlock i: 7918 xd ic xd welcome our next available agent will be with you shortly xd interaction alerting agent xd website visitor has joined the conversation xd rakthyesh ramdntythanjesh xd hello christgry i: 7919 unable to view screen on monitor when lid is closed i: 7920 xd abended job in job scheduler job at Translated 7920 : xd abended job in job scheduler job at i: 7921 we have facing problems with the inwarehouse tools the price into the order is correct but the inwarehouse tool has another price xd example order confirmed delivery inwarehouse tool xd example order confirmed delivery inwarehouse tool xd must issue the inwarehouse tools hours after the import payment in this moment we stopped the process i: 7922 xd xd xd hello xd xd each time select oracle enterprise from my bar get the following error xd xd xd xd xd kind i: 7923 employee last name peghyurozich employee first name jpsgeghtyui employee number employee location usa manager name bwfhtumx japznrvb employee cost center bdf employee self service ess user only employee last day of work special instructions i: 7924 globalview prtgghjk reset please Translated 7924 : globalview prtgghjk reset please i: 7925 the snmp agent at is not responding infoblox usa datacenter primary dns i: 7926 xd abended job in job scheduler job at i: 7927 hello team could you please unlock account email in cell phone the users rabkypet zocjdutp id fothrmijm and ltmoubvy utrimobs gomeshthyru i: 7928 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit yes yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 7929 error messages excel cannot complete the task with available resources choose less data or close other applications also excel has stopped working and have beshryued out areas of my screen or distorted screens that don refresh the excel view no pivot tables or complex macros in use only excel with outlook skype and powerpoint open laptop fan runs constantly in dock with excel in use i: 7930 update dns on printer xd xd model hp laser jet dn xd dynamic ip address xd fqdn prtqi xd short name sid xd print server hostname i: 7931 gzhapcld fdigznbk am jenfrgryui lu sam wanrtyg stefytyn shi cothyshy wu qfrntose ivnhumzjalakrisyuhnyrtn nyrjkctu tbhkenlo ugyothfz ugrmkdhx suhtnhdyio psfshytd kathght shfhyw bhayhtrathramdnty mamilujli inc security incidents in possible trojan infection host hello jenfrgryui we are getting alerts possible downloader trojan from your user id lughjm device sourcing from and destined to host indicating that host be infected with malware due to the nature of this threat it be difficult to detect the compromise because of the detection difficulty and severity of the threat dell secureworks recommends that we remove the pc off the network at the earliest format the hard drive and install new system it is not reliable to attempt to clean the virus in the meantime as this is high severity issue we are moving the corresponding account user id lughjm to palo virus quarantine group no internet access common ways that computers become infected are listed below please inform our team if you know how your pc have become infected using portable usb drive also known as pen drive or thumb drive clicking phishing email link visiting websites that have been compromised by hacker hello apac pc services after the pc has been re imaged with immediate effect please let us know we have created ticketing tool ticket and assigned it to europe pc services inc i: 7932 source ip system name hostname santiago south amerirtca backup exec server user name uidgt olibercsu olvidley location santiago south amerirtca sms status see below field sales user yes no no dsw event log see below content versions fmxcnwpu tcwrdqboinition version sequence host integrity content not available reputation settings ap portal list intrusion prevention signature power eraser definitions revocation content eraser engine sonar content extended file attributes and signatures symantec permitted applications list incident overview we have detected at least occurrences of your firewall company internal asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following an infection on this host misconfigured firewall misconfigured host port scan authorized or unauthorized we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely dell secureworks soc technical details historically there have been various worms malware that have used ports and to propagate examples include blaster worm msblast lovsan welchia nachi reatle port microsoft epmap end point mapper also known as dce rpc locator service port netbios netbios name service port netbios netbios datagramdnty service port netbios netbios session service port microsoft ds smb file sharing additional information on these ports and best practices can be found at the following sites references event data related events event id event summary internal outbreak for tcp log time at source ip source hostname hostname destination hostname device ip device name company internal asa company com event extra data inspectorruleid sherlockruleid cvss ontologyid srchostname hostname eventtypeid ctainstanceid foreseeglobalmodelassessmt unknown irreceivedtime foreseemalprobglobalmodel inspectoreventid eventtypepriority proto tcp dstport action blocked ileatdatacenter true foreseemaliciouscomment globalmodelversion null or empty model found foreseeinternalip logtimestamp agentid foreseeconndirection internal srcassetofinterest srcport occurrence count event count event detail asa inbound tcp connection denied from to flags syn on interface inside asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf asa inbound tcp connection denied from to flags syn on interface inside asa deny tcp src inside dst outside by access group acl inside xedbf sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf asa inbound tcp connection denied from to flags syn on interface inside asa deny tcp src inside dst outside by access group acl inside xedbf sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xedbf asa inbound tcp connection denied from to flags syn on interface inside asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf asa deny tcp src inside dst outside by access group acl inside xedbf event id event summary internal outbreak for tcp log time at source ip source hostname hostname destination hostname device ip device name company internal asa company com event extra data inspectorruleid sherlockruleid cvss ontologyid srchostname hostname eventtypeid ctainstanceid foreseeglobalmodelassessmt unknown irreceivedtime foreseemalprobglobalmodel inspectoreventid eventtypepriority proto tcp dstport action blocked ileatdatacenter true foreseemaliciouscomment globalmodelversion null or empty model found foreseeinternalip logtimestamp agentid foreseeconndirection internal srcassetofinterest srcport occurrence count event count event detail asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa inbound tcp connection denied from to flags syn on interface inside asa inbound tcp connection denied from to flags syn on interface inside asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa inbound tcp connection denied from to flags syn on interface inside sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa deny tcp src inside dst outside by access group acl inside xacbc asa inbound tcp connection denied from to flags syn on interface inside i: 7933 observing below alert in reporting tool since pm on et note that we have opened ticket inc earlier for the same issue but looks like that time issue was resolved epmsystem exe wrong number of instances of process epmsystem exe expected found i: 7934 source ip xd system name hostname santiago south amerirtca backup exec server xd user name uidgt olibercsu olvidley xd location santiago south amerirtca xd sms status see below xd field sales user yes no no xd dsw event log see below xd xd xd xd content versions xd fmxcnwpu tcwrdqboinition version xd sequence xd host integrity content not available xd reputation settings xd ap portal list xd intrusion prevention signature xd power eraser definitions xd revocation content xd eraser engine xd sonar content xd extended file attributes and signatures xd symantec permitted applications list xd xd xd incident overview xd xd we have detected at least occurrences of your firewall company internal asa company com dropping traffic sourcing from hostname and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd xd ticket only escalation for these alerts where the traffic was blocked explicit notification via medium priority ticket no phone call xd automatically resolve these alerts where the traffic was blocked to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd dell secureworks soc xd xd xd technical details xd xd historically there have been various worms malware that have used ports and to propagate examples include xd blaster worm msblast lovsan xd welchia nachi xd reatle xd xd port microsoft epmap end point mapper also known as dce rpc locator service xd xd port netbios netbios name service xd xd port netbios netbios datagramdnty service xd xd port netbios netbios session service xd xd port microsoft ds smb file sharing xd xd additional information on these ports and best practices can be found at the following sites xd xd xd xd xd xd xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd xd event data xd xd related events xd xd event id xd event summary internal outbreak for tcp xd log time at xd source ip xd source hostname hostname xd destination hostname xd device ip xd device name company internal asa company com xd event extra data xd inspectorruleid xd sherlockruleid xd cvss xd ontologyid xd srchostname hostname xd eventtypeid xd ctainstanceid xd foreseeglobalmodelassessmt unknown xd irreceivedtime xd foreseemalprobglobalmodel xd inspectoreventid xd eventtypepriority xd proto tcp xd dstport xd action blocked xd ileatdatacenter true xd foreseemaliciouscomment globalmodelversion null or empty model found xd foreseeinternalip xd logtimestamp xd agentid xd foreseeconndirection internal xd srcassetofinterest xd srcport xd xd xd occurrence count xd event count xd xd event detail xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside xedbf xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside xedbf xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xedbf xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd asa deny tcp src inside dst outside by access group acl inside xedbf xd xd xd xd xd event id xd event summary internal outbreak for tcp xd log time at xd source ip xd source hostname hostname xd destination hostname xd device ip xd device name company internal asa company com xd event extra data xd inspectorruleid xd sherlockruleid xd cvss xd ontologyid xd srchostname hostname xd eventtypeid xd ctainstanceid xd foreseeglobalmodelassessmt unknown xd irreceivedtime xd foreseemalprobglobalmodel xd inspectoreventid xd eventtypepriority xd proto tcp xd dstport xd action blocked xd ileatdatacenter true xd foreseemaliciouscomment globalmodelversion null or empty model found xd foreseeinternalip xd logtimestamp xd agentid xd foreseeconndirection internal xd srcassetofinterest xd srcport xd xd xd occurrence count xd event count xd xd event detail xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa inbound tcp connection denied from to flags syn on interface inside xd asa inbound tcp connection denied from to flags syn on interface inside xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa inbound tcp connection denied from to flags syn on interface inside xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd sartlgeo lhqksbdx asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa deny tcp src inside dst outside by access group acl inside xacbc xd asa inbound tcp connection denied from to flags syn on interface inside i: 7935 ess password reset i: 7936 add printer prtqi on hostname with and bit drivers xd xd model hp laser jet dn xd dynamic ip address xd fqdn prtqi xd short name sid xd print server hostname i: 7937 source ip xd dest ip xd system name apul xd user name jenfrgryui lu xd location singapore xd sms status given below xd field sales user yes no no xd dsw event log see below xd xd xd event details xd xd event detail xd xd event id xd vid bare http get executable from ip address possible downloader trojan xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd xref vid xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xebc ack xece win xb tcplen xd pcap xd pro pz dn ie sogou com sogou explorer exe http aconnection keep alive acache control no cache ahost a a xd pcap xd xd xd ex http uri pro pz dn ie sogou com sogou explorer exe xd xd ex http hostname xd xd security xd xd correlation data xd dhcpd dhcpack on to b apul via eth relay lease duration xd xd refererproxycorrelationurl null xd ileatdatacenter true xd host xd cvss xd foreseeconndirection outgoing xd foreseeexternalip xd eventtypeid xd netacuity destination isp no jin rong street xd srchostname apul xd logtimestamp xd urlhost xd proto tcp xd urlfullpath pro pz dn ie sogou com sogou explorer exe xd unique event hash xd device network type internal xd srcport xd urlcorrelation pro pz dn ie sogou com sogou explorer exe xd dstip xd httpversion http xd url pro pz dn ie sogou com sogou explorer exe xd vendorpriority xd httpmethod get xd ontologyid xd vendorreference vid xd eventtypepriority xd devip xd source network type internal xd inspectorruleid xd lowercaseurlcorrelation pro pz dn ie sogou com sogou explorer exe xd sherlockruleid xd inlineaction xd urlpath pro pz dn ie sogou com sogou explorer exe xd srcmacaddress b xd inspectoreventid xd srcip xd globalproxycorrelationurl explorer xd tcpflags ap xd vendoreventid xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd foreseedstipgeo hong kong hkg xd dstport xd device id xd action not blocked xd event summary vid bare http get executable from ip address possible downloader trojan xd irreceivedtime xd vendorversion xd netacuity destination organization apacnet hongkong region network xd agentid xd ctainstanceid i: 7938 name seghyurghei language browser microsoft internet explorer customer number telephone summary trying to connect printer i: 7939 source ip xd system name lpawxsf xd user name a xd location indaituba xd sms status a xd field sales user yes no no xd dsw event log see below xd xd xd xd xd incident overview xd xd we are seeing your isensor company com device generating vid server response with anubis sinkhole cookies set probable infected asset alerts for traffic not blocked from port tcp of to port tcp of your lpawxsf device indicating that the host is most likely infected with malware xd xd this return traffic indicates that lpawxsf has most likely attempted to visit domain name which is being sinkholed dns sinkholes are dns servers that give out false information in order to prevent the use of the domain for which ip address resolution has been requested sinkhole traffic is possible indicator of an infected computer that is reaching out to controller that has been taken over by law enforcement or research organization as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole however are clear indication of malware infection xd xd we are escalating this incident to you via high priority ticket per our default escalation policies if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd ticket only escalation for sinkhole domain alerts explicit notification via medium priority ticket no phone call xd auto resolve sinkhole domain alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc xd xd xd xd technical details xd xd the domain name system dns is hierarchical naming system for any resource connected to the internet or private network which has the primary purpose of associating various information with domain names assigned to each of the participating entities it is primarily used for translating domain names to the numerirtcal ip addresses for the purpose of locating service and devices on network xd xd the domain name system distributes the responsibility of assigning domain names and mapping those names to ip addresses by designating authoritative name servers for each domain authoritative name servers are assigned to be responsible for their supported domains and delegate authority over subdomains to other name servers the domain name system also specifies the technical functionality of this database service it defines the dns protocol detailed specification of the data structures and data communication exchanges used in dns as part of the internet protocol suite xd xd dns sinkholes are dns servers that give out incorrect information in order to prevent the use of the domain name for which ip address resolution is being attempted when client requests to resolve the address of sinkholed hole or domain the sinkhole returns non routable address or any address except for the real address this germanytially denies the client connection to the target host using this method compromised clients can easily be found using sinkhole logs another method of detecting compromised hosts is during operations in which servers being used for command and control purposes are taken over by law enforcement as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole are clear indication of infection by trojan of some sort xd xd connections to sinkholes seem somewhat benign but the ramdntyifications certainly include information leakage to some extent although sinkhole operators are unlikely to use any personally identifiable information they capture from trojan communication it become public knowledge that company is infected with which lead to reputational damage xd xd additionally some sinkholes are feeding ip addresses of victims to beshryulists which impede access to certain services like sending email finally some trojans connect to multiple controller domains hostnames and even though some of them be sinkholed there be others that are not leading to the possibility of remote code execution or information leakage to malicious parties in some cases xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd event data xd xd related events xd xd event id xd event summary vid server response with anubis sinkhole cookies set probable infected asset xd log time at xd source ip xd destination ip xd destination hostname lpawxsf xd device ip xd device name isensor company com xd event extra data xd sherlockruleid xd cvss xd ctainstanceid xd irreceivedtime xd httpstatuscode xd inspectoreventid xd eventtypepriority xd dstassetofinterest xd globalproxycorrelationurl null xd foreseeinternalip xd logtimestamp xd foreseeconndirection incoming xd foreseeexternalip xd inlineaction xd ontologyid xd foreseesrcipgeo franhtyufurt am main deu xd eventtypeid xd dsthostname lpawxsf xd vendoreventid xd vendorpriority xd tcpflags ap xd proto tcp xd dstport xd action not blocked xd ileatdatacenter true xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd httpcontenttype text html xd vendorversion xd refererproxycorrelationurl null xd agentid xd srcport xd xd xd occurrence count xd event count xd xd event detail xd vid server response with anubis sinkhole cookies set probable infected asset xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xfbe ack xcc win xf tcplen xd pcap xd xd xd ex http uri xd xd ex http hostname futureinterest org xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd a ccb xd ce dc ac f be and j r xd cc e p http xd e f moved xd f da emporarily serv xd e a er nginx date xd thu aug xd d da gmt xd e d content type te xd f cd xt html transfe xd d f e encoding chun xd b fe f ea ked connection xd cf da cf fe close location xd af f e xd e fd fd ef tr com domain fu xd ef tureinterest org xd da f fb set cookie bt xd st feaeff xd defecbfe xd e e xd c xd c d xd ff a eb ad et cookie snkz xd e d ad xd da da xd pcap hex e i: 7940 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 7941 xd gzhapcld fdigznbk xd am xd bev loughner ghiklyop nikszpeu thoyhts brthyrtiv tiyhum kuyiomar xd gdhyrts muggftyali qfrntose ivnhumzjalakrisyuhnyrtn nyrjkctu tbhkenlo ugyothfz ugrmkdhx kathght shfhyw suhtnhdyio psfshytd bhayhtrathramdnty mamilujli xd inc security incidents in suspicious ms rpc ms ds netbios activity hostname new xd xd hello amerirtcas pc support xd xd we have detected at least occurrences of your firewall att singapore asa company com dropping traffic sourcing from hostname new and destined to port of one or more destination devices this activity indicate one of the following xd an infection on this host xd misconfigured firewall xd misconfigured host xd port scan authorized or unauthorized xd xd we have created ticketing tool ticket and assigned it to amerirtcas pc services inc xd xd technical details xd xd historically there have been various worms malware that have used ports and to propagate examples include xd blaster worm msblast lovsan xd welchia nachi xd reatle xd xd port microsoft epmap end point mapper also known as dce rpc locator service xd xd port netbios netbios name service xd xd port netbios netbios datagramdnty service xd xd port netbios netbios session service xd xd port microsoft ds smb file sharing xd xd xd event data xd xd related events xd xd event id xd event summary internal outbreak for tcp xd log time at xd source ip xd source hostname hostname new xd destination hostname lmxl xd device ip xd device name att singapore asa company com xd event extra data xd inspectorruleid xd sherlockruleid xd cvss xd ontologyid xd srchostname hostname new xd eventtypeid xd dsthostname lmxl xd ctainstanceid xd irreceivedtime xd inspectoreventid xd proto tcp xd eventtypepriority xd dstport xd action blocked xd ileatdatacenter true xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd logtimestamp xd agentid xd foreseeconndirection internal xd srcassetofinterest xd srcport xd xd xd occurrence count xd event count xd xd event detail xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd xd xd i: 7942 client is unable to view screens when tablet is docked i: 7943 clients pc is making buzzing noise and wont turn on i: 7944 activation not valid for microsoft projects i: 7945 source ip xd system name lpawxsf xd user name a xd location indaituba xd sms status a xd field sales user yes no no xd dsw event log see below xd xd xd xd xd incident overview xd xd we are seeing your isensor company com device generating vid server response with anubis sinkhole cookies set probable infected asset alerts for traffic not blocked from port tcp of to port tcp of your lpawxsf device indicating that the host is most likely infected with malware xd xd this return traffic indicates that lpawxsf has most likely attempted to visit domain name which is being sinkholed dns sinkholes are dns servers that give out false information in order to prevent the use of the domain for which ip address resolution has been requested sinkhole traffic is possible indicator of an infected computer that is reaching out to controller that has been taken over by law enforcement or research organization as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole however are clear indication of malware infection xd xd we are escalating this incident to you via high priority ticket per our default escalation policies if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the soc or by calling us at xd ticket only escalation for sinkhole domain alerts explicit notification via medium priority ticket no phone call xd auto resolve sinkhole domain alerts directly to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks soc xd xd xd xd technical details xd xd the domain name system dns is hierarchical naming system for any resource connected to the internet or private network which has the primary purpose of associating various information with domain names assigned to each of the participating entities it is primarily used for translating domain names to the numerirtcal ip addresses for the purpose of locating service and devices on network xd xd the domain name system distributes the responsibility of assigning domain names and mapping those names to ip addresses by designating authoritative name servers for each domain authoritative name servers are assigned to be responsible for their supported domains and delegate authority over subdomains to other name servers the domain name system also specifies the technical functionality of this database service it defines the dns protocol detailed specification of the data structures and data communication exchanges used in dns as part of the internet protocol suite xd xd dns sinkholes are dns servers that give out incorrect information in order to prevent the use of the domain name for which ip address resolution is being attempted when client requests to resolve the address of sinkholed hole or domain the sinkhole returns non routable address or any address except for the real address this germanytially denies the client connection to the target host using this method compromised clients can easily be found using sinkhole logs another method of detecting compromised hosts is during operations in which servers being used for command and control purposes are taken over by law enforcement as part of malware mitigation effort traffic to sinkhole should be examined for characteristics of automated activity in some cases an administrator be curious about particular domain and browse to it triggering the signature repeated automated requests to sinkhole are clear indication of infection by trojan of some sort xd xd connections to sinkholes seem somewhat benign but the ramdntyifications certainly include information leakage to some extent although sinkhole operators are unlikely to use any personally identifiable information they capture from trojan communication it become public knowledge that company is infected with which lead to reputational damage xd xd additionally some sinkholes are feeding ip addresses of victims to beshryulists which impede access to certain services like sending email finally some trojans connect to multiple controller domains hostnames and even though some of them be sinkholed there be others that are not leading to the possibility of remote code execution or information leakage to malicious parties in some cases xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd event data xd xd related events xd xd event id xd event summary vid server response with anubis sinkhole cookies set probable infected asset xd log time at xd source ip xd destination ip xd destination hostname lpawxsf xd device ip xd device name isensor company com xd event extra data xd sherlockruleid xd cvss xd ctainstanceid xd irreceivedtime xd httpstatuscode xd inspectoreventid xd eventtypepriority xd dstassetofinterest xd globalproxycorrelationurl null xd foreseeinternalip xd logtimestamp xd foreseeconndirection incoming xd foreseeexternalip xd inlineaction xd ontologyid xd foreseesrcipgeo franhtyufurt am main deu xd eventtypeid xd dsthostname lpawxsf xd vendoreventid xd vendorpriority xd tcpflags ap xd proto tcp xd dstport xd action not blocked xd ileatdatacenter true xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd httpcontenttype text html xd vendorversion xd refererproxycorrelationurl null xd agentid xd srcport xd xd xd occurrence count xd event count xd xd event detail xd vid server response with anubis sinkhole cookies set probable infected asset xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xfbe ack xcc win xf tcplen xd pcap xd xd xd ex http uri xd xd ex http hostname futureinterest org xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd a ccb xd ce dc ac f be and j r xd cc e p http xd e f moved xd f da emporarily serv xd e a er nginx date xd thu aug xd d da gmt xd e d content type te xd f cd xt html transfe xd d f e encoding chun xd b fe f ea ked connection xd cf da cf fe close location xd af f e xd e fd fd ef tr com domain fu xd ef tureinterest org xd da f fb set cookie bt xd st feaeff xd defecbfe xd e e xd c xd c d xd ff a eb ad et cookie snkz xd e d ad xd da da xd pcap hex e i: 7946 source ip xd system name hostname new xd destination hostname lmxl xd device ip xd username ztnfhiwq njpwxmdi iba ez xd location mexico xd sms status no updates xd field sales user yes no no xd dsw event log see below xd xd xd event data xd xd related events xd xd event id xd event summary internal outbreak for tcp xd log time at xd source ip xd source hostname hostname new xd destination hostname lmxl xd device ip xd device name att singapore asa company com xd event extra data xd inspectorruleid xd sherlockruleid xd cvss xd ontologyid xd srchostname hostname new xd eventtypeid xd dsthostname lmxl xd ctainstanceid xd irreceivedtime xd inspectoreventid xd proto tcp xd eventtypepriority xd dstport xd action blocked xd ileatdatacenter true xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd logtimestamp xd agentid xd foreseeconndirection internal xd srcassetofinterest xd srcport xd xd xd occurrence count xd event count xd xd event detail xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd xd xd xd xd event id xd event summary internal outbreak for tcp xd log time at xd source ip xd source hostname hostname new xd destination hostname lmxl xd device ip xd device name att singapore asa company com xd event extra data xd inspectorruleid xd sherlockruleid xd cvss xd ontologyid xd srchostname hostname new xd eventtypeid xd dsthostname lmxl xd ctainstanceid xd irreceivedtime xd inspectoreventid xd proto tcp xd eventtypepriority xd dstport xd action blocked xd ileatdatacenter true xd foreseemaliciouscomment null or empty model found evaluationmodels ngm xd foreseeinternalip xd logtimestamp xd agentid xd foreseeconndirection internal xd srcassetofinterest xd srcport xd xd xd occurrence count xd event count xd xd event detail xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x xd asa deny tcp src inside dst outside by access group acl inside x i: 7947 source ip system name lpal user name sbinuxja vtbegcho nicolmghyu location centralsamerirtca south amerirtca fieldsales vpn pcs sms status see below field sales user yes no no dsw event log see below content versions fmxcnwpu tcwrdqboinition version sequence host integrity content reputation settings ap portal list intrusion prevention signature power eraser definitions revocation content eraser engine sonar content extended file attributes and signatures symantec permitted applications list sonar and risk logs risk information downloaded or created by programdnty files java jre bin javaw exe file or path users nicolmghyu bbcc bddbf efa exe application efa exe application type not applicable category set malware category type heuristic virus version file size hash cfcabfafdfaffddfeefbfd hash algorithm sha risk reputation first seen symantec has known about this file approximately days reputation this file is untrustworthy prevalence this file has been seen by fewer than symantec users sonar risk level high sensitivity low detection score sonar engine version submit not recommended to submit incident overview the ctoc has received an alert for vid locky ransomware communication outbound from your isensor device isensor company com for traffic sourcing from port tcp of lpal destined to port tcp of geffen nld that occurred on at this activity indicates that lpal has likely been infected with the locky ransomware the outbound http traffic from the infected device contained the following method data protocol tcp http method post http version http domain url path comercial cadastra php user agent mozilla compatible msie windows nt sv content length we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at ticket only escalation for related events medium priority ticket and an mail only notification autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal sincerely secureworks ctoc technical details locky is new ransomware that encrypts your data using aes encryption and then demands form of digital currency to decrypt your files locky is distributed by malicious attachments to spam emails and recently seen in massive phishing campaigns with microsoft word document attachments ctu researchers have observed attachments for example inwarehouse tool doc with embedded macro code used to download the locky payload filenames seem to be constructed by using eight random numbers following inwarehouse tool a potential victim receiving the attachment needs to open it and enable the macro which will then initiate the payload download over http once locky is running on the compromised system it drops copy of itself in the temp directory under the affected user profile and sets registry run key to ensure persistence across reboots the dropped file has used the filenames ladybi exe and svchost exe locky also sets the hkcu software locky registry key and creates the values listed in the ctu tips article provided in the references section locky also checks for the following registry keys which indicate the presence of security related software software kasperskylab software eset software avast software the victim is notified of the infection when the desktop background image changes see figure in ctu tips locky places the same instructions in text file and bitmap image on the desktop and displays both of these files to the victim there is unconfirmed speculation that the operators of the botnet distributing the locky malware are also responsible for the bugat dridex banking trojan the spam emanates from the same botnet that distributes bugat and other threats such as the shiz shifu malware but this finding is not conclusive because the botnet is used by various affiliates at different times locky also have the capability to locate network resources and encrypt files in those locations ctu researchers are analysing block of code that be used to enumerate network based locations locky attempts encryption on the following files and file types qcow vmdk tar bz jpeg sqlite ppsm potm xlsx docm wallet dat xlsm xlsb dotm dotx docx djvu pptx pptm xltx xltm ppsx ppam docb potx lay msid sldm sldx tiff class java sqlitedb references event data event id event summary vid locky ransomware communication outbound occurrence count event count host and connection information source ip source hostname lpal source port destination ip destination hostname ha ru destination port destination ip geolocation geffen nld connection directionality outgoing http method post user agent mozilla compatible msie windows nt sv host full url path comercial cadastra php device information device ip device name isensor company com log time at utc action not blocked vendor eventid cvss score vendor priority vendor version scwx event processing information sherlock rule id sle inspector rule id inspector event id ontology id event type id agent id event detail vid locky ransomware communication outbound classification none priority action accept passive impact flag impact blocked vlan mpls label pad sensor id event id time src ip dst ip sport itype dport icode pro tcp ttl tos id iplen dgmlen df ap seq xadbff ack xbff win tcplen pcap ex http uri comercial cadastra php ex http hostname security ascii packet pcap ascii pcap ascii hex packet pcap hex c a ae c ce ac af cf ff dbff q p b ff f p post f cf comercial cada f stra php http f e host d ab c keep aliv da ee connecti fe sid da on keep alive sid df user agent mozi cc e fd lla compati c d b ble msie d f e indows nt e fe d content typ a fe e application d f dd e www form urlenc da e d oded content le d ad ae fd ngth nom c f lpalandso e f winanddata a and fd f vs andidioma port ea ugu south amerirtca anda d e d nti windows andp ed d lugin itandidcx a b d xl pcap hex e i: 7948 xd xd xd dear sir xd xd am trying to connect with virtual private network through xd xd please do the need full tomorrow at hrs will be free by hrs to hrs will be inside govt factory and laptop and mobile is not allowed xd xd xd with best i: 7949 xceliron process not working inwarehouse tools are blocking due to missing goods receipt vendor is routinely not getting paid because of no goods receipt asuenpyg vzmneycx created process whereby the goods receipts were to be done via the system this process is not working i: 7950 xd abended job in job scheduler bkbackup tool hostname prod inc at i: 7951 lhqwsf usa nologin collaboration platform script returned unexpected value i: 7952 source ip xd system name lpal xd user name sbinuxja vtbegcho nicolmghyu xd location centralsamerirtca south amerirtca fieldsales vpn pcs xd sms status see below xd field sales user yes no no xd dsw event log see below xd xd xd xd content versions xd fmxcnwpu tcwrdqboinition version xd sequence xd host integrity content xd reputation settings xd ap portal list xd intrusion prevention signature xd power eraser definitions xd revocation content xd eraser engine xd sonar content xd extended file attributes and signatures xd symantec permitted applications list xd xd xd xd sonar and risk logs xd xd risk information xd downloaded or created by programdnty files java jre bin javaw exe xd file or path users nicolmghyu bbcc bddbf efa exe xd application efa exe xd application type not applicable xd category set malware xd category type heuristic virus xd version xd file size xd hash cfcabfafdfaffddfeefbfd xd hash algorithm sha xd xd risk reputation xd first seen symantec has known about this file approximately days xd reputation this file is untrustworthy xd prevalence this file has been seen by fewer than symantec users xd sonar risk level high xd sensitivity low xd detection score xd sonar engine version xd submit not recommended to submit xd xd xd xd xd incident overview xd xd the ctoc has received an alert for vid locky ransomware communication outbound from your isensor device isensor company com for traffic sourcing from port tcp of lpal destined to port tcp of geffen nld that occurred on at this activity indicates that lpal has likely been infected with the locky ransomware xd xd xd the outbound http traffic from the infected device contained the following method data xd protocol tcp xd http method post xd http version http xd domain xd url path comercial cadastra php xd user agent mozilla compatible msie windows nt sv xd content length xd xd xd we are escalating this incident to you via high priority ticket and phone call per our default event handling procedures if you would like us to handle these incidents differently in the future see below for handling options or if you have any further questions or concerns please let us know either by corresponding to us via this ticket and delegating the ticket back to the ctoc or by calling us at xd ticket only escalation for related events medium priority ticket and an mail only notification xd autoresolve events to the portal no explicit notification but events will be available for reporting purposes in the portal xd xd sincerely xd secureworks ctoc xd xd xd xd technical details xd xd locky is new ransomware that encrypts your data using aes encryption and then demands form of digital currency to decrypt your files locky is distributed by malicious attachments to spam emails and recently seen in massive phishing campaigns with microsoft word document attachments ctu researchers have observed attachments for example inwarehouse tool doc with embedded macro code used to download the locky payload filenames seem to be constructed by using eight random numbers following inwarehouse tool a potential victim receiving the attachment needs to open it and enable the macro which will then initiate the payload download over http xd xd once locky is running on the compromised system it drops copy of itself in the temp directory under the affected user profile and sets registry run key to ensure persistence across reboots the dropped file has used the filenames ladybi exe and svchost exe locky also sets the hkcu software locky registry key and creates the values listed in the ctu tips article provided in the references section xd xd locky also checks for the following registry keys which indicate the presence of security related software xd software kasperskylab xd software eset xd software avast software xd xd the victim is notified of the infection when the desktop background image changes see figure in ctu tips locky places the same instructions in text file and bitmap image on the desktop and displays both of these files to the victim xd xd there is unconfirmed speculation that the operators of the botnet distributing the locky malware are also responsible for the bugat dridex banking trojan the spam emanates from the same botnet that distributes bugat and other threats such as the shiz shifu malware but this finding is not conclusive because the botnet is used by various affiliates at different times xd xd locky also have the capability to locate network resources and encrypt files in those locations ctu researchers are analysing block of code that be used to enumerate network based locations xd xd locky attempts encryption on the following files and file types xd xd qcow xd vmdk xd tar xd bz xd jpeg xd sqlite xd ppsm xd potm xd xlsx xd docm xd wallet dat xd xlsm xd xlsb xd dotm xd dotx xd docx xd djvu xd pptx xd pptm xd xltx xd xltm xd ppsx xd ppam xd docb xd potx xd lay xd msid xd sldm xd sldx xd tiff xd class xd java xd sqlitedb xd xd xd xd references xd xd xd xd xd xd xd xd xd xd xd event data xd xd xd event id xd event summary vid locky ransomware communication outbound xd occurrence count xd event count xd xd host and connection information xd source ip xd source hostname lpal xd source port xd destination ip xd destination hostname ha ru xd destination port xd destination ip geolocation geffen nld xd connection directionality outgoing xd http method post xd user agent mozilla compatible msie windows nt sv xd host xd full url path comercial cadastra php xd xd device information xd device ip xd device name isensor company com xd log time at utc xd action not blocked xd vendor eventid xd cvss score xd vendor priority xd vendor version xd xd scwx event processing information xd sherlock rule id sle xd inspector rule id xd inspector event id xd ontology id xd event type id xd agent id xd xd event detail xd vid locky ransomware communication outbound xd classification none priority action accept passive impact flag impact blocked vlan mpls label pad xd sensor id event id time xd src ip dst ip sport itype dport icode pro xd xd tcp ttl tos id iplen dgmlen df xd ap seq xadbff ack xbff win tcplen xd pcap xd xd xd ex http uri comercial cadastra php xd xd ex http hostname xd xd security xd xd ascii packet xd pcap ascii xd pcap ascii xd xd hex packet xd pcap hex xd d ae c ce ac af cf ff dbff q p xd ff f p post xd f cf comercial cada xd f stra php http xd f e host xd d ab c keep aliv xd da ee connecti xd fe sid da on keep alive xd sid df user agent mozi xd cc e fd lla compati xd c d b ble msie xd e e b indows nt xd d fe d content typ xd a fe e application xd d dd e www form urlenc xd da e d oded content le xd d ad ae fd ngth nom xd c f lpalandso xd e f winanddata xd a and xd fd f vs andidioma port xd ea ugu south amerirtca anda xd d e d nti windows andp xd ed d lugin itandidcx xd c d d xl xd pcap hex e i: 7953 engineering tool stops working several times day falls without apparent reason and works slow when it succeeds stay running xd please see attached print screen of the error xd i: 7954 job name bkbackup tool hostname prod inc Translated 7954 : job name bkbackup tool hostname prod inc i: 7955 please move client from office to per sdxjiwlq ynowzqfh i: 7956 password reset Translated 7956 : password reset i: 7957 ticket no ticket update Translated 7957 : ticket no ticket update i: 7958 please instal printer pa at these laptop i: 7959 xd xd xd hello help xd xd please restore the excel file sc drill catalog xd from my home drive solid carbide drills file eagclhome martif solid carbide drills xd from yesterday xd xd i: 7960 unable to connect to wifi from hotel dell i: 7961 xd xd xd who would contact at corporate to get access for ldpequhm nqclatbw and alex campbell to the following servers xd xd xd xd teams hostname tech center grade specifications ceramdntyic specs xd xd access is needed to support manufacturing and technology xd xd i: 7962 audio not working on dell tablet i: 7963 i am unable to create save new reports in ticketing tool i: 7964 unable to boot up the laptop i: 7965 unable to sign in to skype and outlook i: 7966 hostname epmsystem exe wrong number of instances of process epmsystem exe expected found i: 7967 password reset Translated 7967 : password reset i: 7968 xd xd xd good morning xd xd the customer must to include the next data xd dana manufacturing luxembourg xd division enco immex xd vat reg no lu xd dmcc xd xd but know we have these one xd dana de mexico corporacion mexico srl xd de cv division enco immex xd vat reg no lu xd dmcc xd and these data is wrong xd xd xd what can do to get the real information xd xd this information is in the customer xd xd xd please let me know if you can help me xd xd i: 7969 account locked out i: 7970 see att Translated 7970 : see att i: 7971 xd xd xd Translated 7971 : xd xd xd i: 7972 need erp password reset am getting the error when logging into engineering tool that have attempted to many times with the wrong password old password i: 7973 koiapqbg teyldpkw matheywt kaufsfthyman phone system warehouse toolmail i: 7974 when accessing my warehouse toolmail receive busy signal the red warehouse toolmail light is activated on my phone when push the button busy signal is received xd xd others are having the same issues i: 7975 erp sid account locked i: 7976 date of email have attached both email the one sent and was not delivered and the other have received with the delivery error message xd sender name uidgt olibercsu recipient if not caller jgnxyahz cixzwuyf delivery failure code xf xf xd delivery failure text sua mensagem o foi recebida por um ou mais dos destinat rios xd xd assun enc curso customer logistics services cls xd enviada em xd xd o poss vel encontrar os seguintes destinat rios xd xd jgnxyahz cixzwuyf em xd esta mensagem o de ser enviada tente enviar mensagem novamente mais tarde ou contate administrador da rede erro opera do cliente falhou xf xf xd i: 7977 access database error attached Translated 7977 : access database error attached i: 7978 erp sid password reset Translated 7978 : erp sid password reset i: 7979 hostname average samples memory usage is now which is above the error threshold xd swap memory usage is now which is above the warning threshold i: 7980 my telephone does not have dial tone and cannot pick up warehouse tool mail messages i: 7981 account lockout i: 7982 i am having issues with being disconnected every few minutes from outlook cannot send or receive email or search when it disconnects i: 7983 xd xd xd please restore from xd xd westes hostname file hostname betriebliche regelungen und bv bv anlage bv bonus im ad fy docx xd xd xd xd xd danke viele gr xd trgqbeax hfyzudql xd xd mit freundlichen gr en best i: 7984 mensagem de erro infelizmente outlook encontrou um erro que est impedindo de funcionar corretamente como resultado outlook dever ser fechado gostaria que fiz ssemos reparo agora com tr bot es que o reparar agora fechar ajuda Translated 7984 : error message unfortunately outlook has encountered an error which is preventing it from working properly as a result outlook should be closed i would like me to do s repair now with three bots and repair now close help i: 7985 my warehouse toolmail does not seem to be picking up incoming calls my number is attempted to uacyltoe hxgaycze this by calling from my cell phone after rings the warehouse toolmail still did not pick up i: 7986 setting of ooo for another mail box summary need out off office for an employee who does not work in company any longer i: 7987 i have changed my passwords using password management tool password manager after the passwords change am unable to connect via vpn xd my user id is hajghtdul i: 7988 warehouse toolmail not possible on phone set i: 7989 my site does not show the grouping by the first level and at the second level is continuous xd further the expand arrows are not responsive xd i: 7990 erp sid unlock request Translated 7990 : erp sid unlock request i: 7991 update on inplant i: 7992 ldism usa village claapdico robot is inactive since am et on i: 7993 setup new ws xaqzisrk ahbgjrqz Translated 7993 : setup new ws xaqzisrk ahbgjrqz i: 7994 the warehouse toolmail associated with my office phone is not functioning properly when trying to access warehouse toolmail from my office phone receive not possible message on my phone have also tried to access warehouse toolmail from the number and receive message that states that my call cannot be completed at this time i: 7995 handheld wireless device activation iphone i: 7996 need file restored on network nt drive xd xd what is the file full pathname techcenter projects xd xd what server drive is it on hostname xd xd xd from what backup date or last modified date do you want the file restored if unsure the most recent backup date will be used xd xd do you want the entire folder restored if not you must provide the specific filename to restore yes xd xd if the backup tape is not onsite is it ok to allow business days to retrieve the offsite tape extra charges apply for emergency delivery xd xd do you want this filename and or folder restored to its original place and with its original name in other words an overwrite will be done xd if not then you need to supply the new name and location to restore it to xd xd note day maximum backup is available this is for file restores exception only being hostname and hostname as they are kept for year i: 7997 xd xd xd hi there xd xd we want give utislgov fetaqndw the same access as have for hostname departments drive xd xd i: 7998 unlock erp sid erp production account i: 7999 usar microsoft update xd atualizar adobe acrobat adobe flash java xd revisar grupos xd revisar atualizar sep xd revisar patching antivirus sw xd revisar erp client xd executar check disk defrag scan do sep xd atualizar drivers dell xd verificar se atualiza nova vers do pacote office no xd xd uacyltoe hxgayczear acessos ao itau caixa hsbc uacyltoe hxgayczear abertura de plaghynilhas do ita Translated 7999 : use microsoft update xd update adobe acrobat adobe flash java xd review groups xd review update sep xd review patching antivirus sw xd review erp client xd run check disk defrag scan of sep xd update drivers dell xd check if new version of office package in xd xd uacyltoe hxgayczear itau accesses hsbc box uacyltoe hxgayczear ita plaghynilhas opening i: 8000 seep installation i: 8001 we have agreed price with many of the distributors for given period and skus this is specified through pricing condition zcnc in erp in distributor tool it is order through sold to and ship to combination xd till flat rate deployment we did not have any issues xd today when the distributor tried to book the order with zcnc pricing condition the initial screen shows the correct price but when the item is selected and quick order is clicked on the price is getting changed to list price less standard discount instead of retaining the zcnc price i: 8002 outlook issue Translated 8002 : outlook issue i: 8003 xd xd xd please enable bahbrgy account aerp he is not leaving company until this do not know why his account was disabled today xd xd i: 8004 erp sid password reset Translated 8004 : erp sid password reset i: 8005 account disabled for user vvfrtgarnb i: 8006 unable to connect to wifi i: 8007 hi xd would you please close telephony software for turkey between and local time due to kick off dinner it was approved by djpwfxzt cfkwxlmq xd i: 8008 distributor tool company issue and engineering tool issue i: 8009 the i: 8010 xd xd xd dear sir madam xd xd am unable to access vpn xd xd please refer below message xd xd xd xd xd Translated 8010 : xd xd xd xd xd Dear Sir or madam later to access VPN Please refer below message xd xd xd xd xd xd xd i: 8011 my symantec management agent is disabled i: 8012 npc information from jimdghty beshryu have tried to complete the task recruited the help of the usa planners who usually do that step they tell me that all of the tasks they do are complete with this item product engineering was able to complete their task that cannot be done based on what have been told until the planners finish their task i: 8013 display setting issue i: 8014 idg password reset not possible xd Translated 8014 : idg password reset not possible xd i: 8015 when attempting to print from eu locations missing sheet page is being printed xd xd my guess is that although the drawing is in fr status all originals still reside in cadb storage i: 8016 i connected to the vpn but can not log into erp keep getting the error message that seems to imply that am not connected to the vpn any help is appreciated i: 8017 attached mail is saved on desktop as template with text and signature but when sent nothing is to be seen i: 8018 hi xd xd kindly help me out on access drawing search to view and download in business client utility xd xd i: 8019 hostname hr tool tax interface app qa total cpu is now which is above the error threshold i: 8020 bitte austauschen Translated 8020 : please change i: 8021 setup new ws rxpjomyf hvolsgqn i: 8022 setup new ws pnwbkitv phbnwmkl i: 8023 setup new ws wyighrjl xcwavhyu i: 8024 setup new ws beosjgxt mdevcqjk Translated 8024 : setup new ws beosjgxt mdevcqjk i: 8025 my erp gui got updated today after that am not able to save any data to desktop please help i: 8026 lhqsm fim production miiserver exe wrong number of instances of process miiserver exe expected instances gte but found xd at time am est i: 8027 erp sid password reset request Translated 8027 : erp sid password reset request i: 8028 company guest account not working which was created yesterday i: 8029 unable to login windows i: 8030 not able to hear any thing i: 8031 xd xd xd dear friends xd xd please find below enclosed request xd xd i: 8032 erp sid password reset request Translated 8032 : erp sid password reset request i: 8033 i cannot connect the network printer vh i: 8034 hello antivirus team xd xd my win uacyltoe hxgaycze machine eaglt has automatically updated to the recent win anniversary update mp is no longer working xd this is an official company it win uacyltoe hxgaycze machine xd xd as per symantec technical support forum windows anniversary update requires at least version mp or higher please download and provide the software on the following share xd xd eagcldaten public roedel symantec endpoint protection xd xd i: 8035 mobile device activation personal device Translated 8035 : mobile device activation personal device i: 8036 restore the data files from external hard disk to reimaged laptop i: 8037 polycom software installation on desktop i: 8038 ad locked out i: 8039 eagw shows defective system files reinstall with lauacyltoe hxgaycze fy win image i: 8040 jusfrttin gtehdnyuerrf mail xd pm xd nwfodmhc exurcwkm xd rad the terminate action for suzjhmfa swmiynoz has completed xd xd hello xd xd termination for suzjhmfa swmiynoz effective has been approved xd xd click the link to view xd xd i: 8041 request you to reset my password of password management tool as soon as possible xd could not login and reset my password i: 8042 the i: 8043 the i: 8044 jusfrttin gtehdnyuerrf mail xd am xd nwfodmhc exurcwkm xd rad the terminate action for kjtqxroc taqekwrd has completed xd xd hello xd xd termination for kjtqxroc taqekwrd effective has been approved xd xd click the link to view xd xd i: 8045 logon to server hostname not possible server is in loop at the welcome screen i: 8046 xd xd xd hello xd xd while forwarding lean event updation find the mail is not being forwarded and some message is displayed xd xd please check and advise xd xd xd xd i: 8047 xd xd xd mit freundlichen gr en with kind Translated 8047 : xd xd xd Yours sincerely, gr en with kind i: 8048 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am edt on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in na yes no na xd xd equipment reset na yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes yes no na cert started na yes no na xd xd additional diagnostics i: 8049 hi pradtheyp xd xd we have not received the production feed files for emea today please check from your end and re send the files to us xd xd also we would like to know whether it will be possible that an automatic notification is sent to the concerned people in case the extraction programdnty fails xd xd xd i: 8050 mapping was not possible anymore i: 8051 issue after erp update on system prompt to fix the issue of sid and sid log on am unable to open view sales order outlook email attachments refer attachment download error in va va and as per error if out look is closed and try to open the attachment system is prompting to install outlook refer outlook installation prompt xd xd issue excel file downloaded after running abap query am unable to save or save to computer xd xd issue unable to view files saved on desktops to attach them to sales order in va va i: 8052 unable to send or receive email i: 8053 xd xd xd hallo zusammen xd xd siehe nachstehenden email schriftverkehr bitte scghhnellstens beheben xd danke xd xd xd xd mit freundlichen gr en best Translated 8053 : xd xd xd hello everyone xd xd see the following email correspondence, please fix it as soon as possible xd thank you xd xd xd xd best regards i: 8054 name aryndruh language browser microsoft internet explorer customer number telephone summary not able to access attendance tool application ticket reference ticket no i: 8055 bitte an wzs wza bios so ndern das nach netz reset der rechner selbstst ndig startet bitte um erledigung durch himghtmelreich Translated 8055 : please change at wzs wza bios so that after a network reset the computer starts automatically, please let himghtmelreich do it i: 8056 xd xd xd dear ms ragsbdhryu xd xd in line with our telephonic conversation please find below the following details xd xd xd there are two computers machine pc and laptop xd xd these two are connected using lan cable xd xd the name of the laptop is visible in the my networks page of machine pc xd xd but the name of the machine pc is not visible in the network of the laptop xd xd we are unable to set the domain name and workgroup in settings of control panel xd xd xd please sort this out on priority xd xd i: 8057 call routing to german support agents was fixed once the workgroup was added and percent allocated i: 8058 frequent account lockouts contact no chg ctask i: 8059 windows account locked i: 8060 xd abended job in job scheduler job at i: 8061 xd xd xd need help installing the lauacyltoe hxgaycze internet explorer xd xd xd i: 8062 system sid sid sid sid hrp other sid enter user id of user having the issue user hghjnlabel in locked we needs to release user or reset password transaction code the user needs or was working with describe the issue if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket provide access the same as this other user i: 8063 xd abended job in job scheduler job at i: 8064 xd abended job in job scheduler bkwin search server prod daily at i: 8065 xd abended job in job scheduler sid filesys at i: 8066 xd abended job in job scheduler job at Translated 8066 : xd abended job in job scheduler job at i: 8067 unable to login to skype i: 8068 name dehnfyru language browser microsoft internet explorer customer number telephone summary need to upgrade the outlook i: 8069 multiple computers use the same log in company orshop floor app locked out i: 8070 xd abended job in job scheduler job at i: 8071 johthryugftyson hu xd am xd nwfodmhc exurcwkm xd qgrbnjiu hidzlfma xd fw delete sto and xd xd it help xd xd we need delete both sto and but get same error message as screen below xd xd now we block them to avoid unnessary dn to be created xd xd please help check how we can delete them i: 8072 rakthyesh ramdntythanjesh am ugyothfz ugrmkdhx pmqansex nvihmbwc ticket no create email account for employee gzwasqoc gadisyxr good morning safrgyynjit user called to service desk and requested to expedite the issue kindly take this request on priority and assist user kind i: 8073 inquiry on etime login Translated 8073 : inquiry on etime login i: 8074 shop floor pc locked coshopfloor i: 8075 symantec endpoint encryption page unable to login Translated 8075 : symantec endpoint encryption page unable to login i: 8076 xd abended job in job scheduler job at i: 8077 xd abended job in job scheduler bkwin hostname inc at i: 8078 multiple processes are showing down on hostname hana sid since pm on et xd process hdbnameserver is not running xd process hdbxsengine is not running xd process hdbpreprocessor is not running xd process hdbcompileserve is not running xd process hdbindexserver is not running xd process hdb erpsid hdb is not running xd i: 8079 zdis discounts are not applying and should be zdis isn even showing as condition and should be this is causing incorrect sales orders and orders to be placed on hold xd please see the following sales orders xd xd items and xd quote items and i: 8080 please add the appropriate options for the following hourly employees who have dedicated computers to clock in and out with hr tool at their desks and laptops us zjihgovn cqxahony us dpuifqeo eglwsfkn us ihlsmzdn cnhqgzwt us ewgihcnz vdjqoeip us moxnqszg zgdckste us bghrbie crhyley if be of further assistance please feel free to contact me at any time wvngzrca sfmrzdth phr human resources manager us plant usa nc i: 8081 user debtgyrur had access to the us plant vmsliazh ltksxmyv hostname to do downloads fzwxitmen jwvuasft daily today that access seems to be broken please restore aerp am usaing whatever approvals are required to restore this connection immediately it is causing shutdown to the production process and needs to be immediately addressed i: 8082 windows password reset i: 8083 user wanted to check if there are discounts on microsoft products i: 8084 hr tool time issue name wvngzrca sfmrzdth language browser microsoft internet explorer customer number telephone summary do request time computer access from it for team members who are assigned computer i: 8085 xd abended job in job scheduler job at Translated 8085 : xd abended job in job scheduler job at i: 8086 contract management employee publication p Translated 8086 : contract management employee publication p i: 8087 please assist with keeping my account logged in i: 8088 hostname the status on hostname company com status is not as expected red i: 8089 xp pc in lab hooked to microscope gets bsod on login i: 8090 rlgmiuwt dfpqxbgm mail pm nwfodmhc exurcwkm amar the terminate action for johthryu chmielewski has completed hello termination for johthryu chmielewski effective has been approved click the link to view i: 8091 unable to map printer Translated 8091 : unable to map printer i: 8092 reset password for i: 8093 erp powder interface not working Translated 8093 : erp powder interface not working i: 8094 please change my erp printer hrp hcm production to usa fm xd i: 8095 unable to see crm add in in outlook i: 8096 name upajtkbn wzyspovl language browser microsoft internet explorer customer number telephone summary having trouble with my password accessing the portal i: 8097 microsoft outlook all morning it shows either trying to connect or gives me an error about not being able to connect to the server have emails from this morning still sitting in my outbox that cannot get to send and no new emails coming in have rebooted outlook twice and my whole system once with no success i: 8098 xd xd xd hello xd xd my outlook calendar shows no information when someone tries to schedule meeting with me using the scheduling assistant how can fix that xd xd xd xd xd xd i: 8099 unable to save attachments from business client i: 8100 windows password reset i: 8101 name wvngzrca sfmrzdth language browser microsoft internet explorer customer number telephone summary have had and still have issues with sf loading it is just white page can you advise i: 8102 the monitor is the disk failed on df c localhost is outside expected limits true true i: 8103 znet should not be applied to zcnc zcnp or manual condition for i: 8104 account locked out trust relationship issue i: 8105 not able to enter customer details in engineering tool system i: 8106 unable to hear any audio from skype i: 8107 there was technical error br please try again br if the problem persists please notify an administrator br error the following error occured while processing the request object object status error error internal server error xd xd operator have rebooted computer multiple times karghyuen i: 8108 password reset and login issues in collaboration platform i: 8109 please issue new password for etime access for employee gyweclbt oahmgpfy ee aerp i: 8110 xd xd xd please release this device from quarantine xd xd microsoft outlook xd am xd qpixeudn rjlziysd your mobile device is temporarily blocked from synchronizing using exchange activesync until your administrator usas it access xd xd xd your mobile device is temporarily blocked from accessing content via exchange activesync because the mobile device has been quarantined you don need to take any action content will automatically be downloaded as soon as access is usaed by your administrator xd xd please ignore the above paragraph we cannot change it or delete it xd xd special note jan the microsoft outlook app for ios and android released yesterday is not currently approved software for accessing company mail until it is uacyltoe hxgayczeed and approved please consider using one of the other the embedded mail software in your mobile device the browser on your mobile device or the microsoft owa app published for your mobile device platform xd xd beginning employees with supervisor approval use personally owned mobile devices to access outlook email company is moving forward and providing the opportstorage product for our employees to use specified personally owned devices to allow for productivity improvement and enable work life balance this is an addition to the policy for company owned devices xd xd currently approved handheld devices can be found in this policy xd xd wireless mobility technical document xd xd the above policy will be updated as other devices are approved for use xd xd if you own an approved device and would like to take advantage of this opportstorage product you can submit ticketing tool ticket https company ticketing tool com incident do sysparm stack incident list doandsys id andsysparm query incident do sys id andsysparm template mobile to the it global support center gsc if it is personally owned device you need to attach the agreement form found in the wireless mobility standard procedure this agreement must be signed by you and your next level supervisor and provided to the gsc prior to ticket being entered you can attach the signed form to the ticket or send the signed form to the gsc and they will attach it xd xd any ticket without the signed form will be cancelled you have weeks to process and submit the form before your device will be denied deleted from quarantine xd xd wireless mobility standard procedure xd xd information about your mobile device xd device model xd xd iphonec xd xd device type xd xd iphone xd xd device id xd xd rufpmvsdusid tlgfkk xd xd device os xd xd ios xd xd device user agent xd xd apple iphonec xd xd device imei xd xd exchange activesync version xd xd xd xd device access state xd xd quarantined xd xd device access state reason xd xd global xd xd xd sent at pm to xd xd i: 8111 unable to login to outlook and skype i: 8112 system sid sid sid sid hrp other sid xd xd enter user id of user having the issue mitctdrhb xd xd transaction code the user needs or was working with logon xd xd describe the issue changed password using password manager unable to log into erp xd xd if you are getting not authorized message recreate the condition then do nsu and attach result to the ticketing tool ticket xd xd provide access the same as this other user i: 8113 misplaced password ad password reset needed i: 8114 hello team xd xd could you please unlock account email in cell phone the user id noggtyuerp xd xd i: 8115 stuck at logging in xd personal certificate error Translated 8115 : stuck at logging in xd personal certificate error i: 8116 xd xd xd hello xd xd am facing an issue while connecting telecom vendor gprs network xd pl look into the same xd xd i: 8117 locked out of erp sid not set up in password management tool getting an error unable to find account for user ginemkl when logging into password management tool xd xd please notify wptbgchj jutpdcqf once account is unlocked xd xd xd xd i: 8118 the i: 8119 hello on po the po was created for rolls of paper with price of each this price has not been changed in the purchase order but the goods receipt has been booked in for total amount of have asked about this with the uk warehouse and they are not sure it possible to goods receipt at different value can you see what has caused this i: 8120 xd abended job in job scheduler job at Translated 8120 : xd abended job in job scheduler job at i: 8121 the job qeue processor of the engg stopped and needs to be restarted please forward to the engg group i: 8122 windows account locked out i: 8123 i ve checked all the plugs and it still not charging my computer i: 8124 issues with lean tracker i: 8125 password reset Translated 8125 : password reset i: 8126 unable to launch outlook after changing the password i: 8127 unlock csvlijud jzhnkclo pc name rrsp contact name user id administrator i: 8128 unable to login to windows account locked i: 8129 i get directed to hr tool logon page instead of directly getting authenticated with sso xd see attachments xd xd xd xd xd i: 8130 i cannot make skype meeting every time it errors out stating that skype is not running i: 8131 shagfferon called to reset password for user bregtnnl i: 8132 i have not used this in quite awhile and it will not let me in with my current password i: 8133 browser issue collaboration platform not loading i: 8134 erp sid password reset Translated 8134 : erp sid password reset i: 8135 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am et on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active yes yes no na xd xd site contact notified phone email yes yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 8136 computer name lehl xd access to vpn i: 8137 unable to login to skype Translated 8137 : unable to login to skype i: 8138 bex patch installation i: 8139 supply chain software login issue i: 8140 no puedo ingresar business client con mi contrase a Translated 8140 : no puedo ingresar business client con me contrase a i: 8141 need replacement monitor for coatncqulao qauighdpchine i: 8142 item numbers issue with the inwarehouse tool forms for israel i: 8143 please call bqdlegnp lnphmsco at to update his password he cannot login to anything i: 8144 general enquiry Translated 8144 : general inquiry i: 8145 eu tool unable to connect to server time recording in eu tool does not work eu tool is installed on the user pc telefon i: 8146 my home location is usa whenever come to us plant and connect to the network my pc runs estorage productly slow all programdntys are slow xd xd how did you determine there are network problems xd xd is only erp slow please use the quick ticket within the erp folder if only erp is running slow xd xd are more than one transactions impacted xd xd what erp server are you on server name is located in the status bar at the bottom xd right of your screen xd xd do other co workers also notice slow response times in erp xd xd what other applications are running slow xd xd can you access your data files on the server xd xd any other comments or issues with other systems i: 8147 i unable to log in to hr tool oneteam through the sso portal on the hub whenever click on the oneteam link in the portal m taken to login screen instead of being logged directly into the system have tried clearing my browser cache and ve tried logging in using both ie and firefox i: 8148 i just changed my password and now my company center account does not show the option to choose in the sales org login info bfrgtonersp augdec i: 8149 hostname disk free on nfsbackup is now which is below the error threshold out of total size gb i: 8150 install pdf mailer kebogxzp difnjlkp Translated 8150 : install pdf mailer kebogxzp difnjlkp i: 8151 hi please unlock sebfghkasthian account couskjgd uzojtkmh wirftejas i: 8152 hi xd please unlock sebfghkasthian wiejas account xd i: 8153 probleme mit rechner ewew defekte fp sektoren xosdfhbu gtbfkisl Translated 8153 : problems with computer ewew defective fp sectors xosdfhbu gtbfkisl i: 8154 xd xd xd hi suraj can you put usa shop sw port on the vlan m trying to get machine on the network xd xd xd xd i: 8155 name betshdy language browser microsoft internet explorer customer number telephone summary cannot get collaboration platform to open it just sits and spins i: 8156 i received emails attached for taking over collaboration platform for an employee who is no longer working at company xd message was in german the other is portuguese think i: 8157 email delegation issues with mailbox i: 8158 all machines in roanoke have been changed to user login roaghyunokepc full access please add this user to all lrrsm departments aerp production is down umzcxfah aoshpjiu plant controller us plant i: 8159 xd xd xd hi xd xd kindly look into below snap erp output screen enable to show details in proper arrangement is there any issue in erp network xd xd xd best i: 8160 after reboot of the serverteam my thinclients are not able to connect to the rds server hostname i: 8161 xd xd xd single sign on for hr tool oneteam is not working xd please see screen below xd xd xd xd i: 8162 erp sid zdsxmcwu thdjzolwronization issue i: 8163 xd xd xd team xd would like to complete ethics xd ask you to usa access xd xd xd xd xd i: 8164 hello altogether xd xd we have problems with our eu tool xd please open zuteillisten plant hartbearbeitung kantenverrunden sammelarbpl xd xd then you see this window xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd in the past when we do doubleklick on eps we could see in new window our point of measurement for this inserts but now this function is out of service xd xd xd xd mit freundlichen gr en best i: 8165 password reset request Translated 8165 : password reset request i: 8166 xd xd xd hello altogether xd xd we have problems with our eu tool xd please open zuteillisten plant hartbearbeitung kantenverrunden sammelarbpl xd xd then you see this window xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd in the past when we do doubleklick on eps we could see in new window our point of measurement for this inserts but now this function is out of service xd xd xd xd xd mit freundlichen gr en best i: 8167 hi following are the details of guest visiting company india from tomorrow and request you to provigjtyswkb dpvaymxrest wifi access sl no guest first name guest last name guest email id location company sponsor email id access required till date sadiertpta palffs india rohitdrf stahyru india vikrhtyas kurtyar gurpthy vikrhtyaskurtyar vikrhtyaskurtyar india with i: 8168 xd xd xd hello help xd xd my access to sid seems to be not working xd xd please enable and confirm i: 8169 in the distributor tool production system the oprn carts are not displaying any carrier information xd xd please check and fix the issue urgently i: 8170 mii at usa is estorage productly slow and errors out i: 8171 hello xd would you please support xd welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp i: 8172 no boot i: 8173 summary ticketing tool change have changed the status to closed cancelled instead of closed complete how to revert the change i: 8174 the dob report xd site certified content views dailyorderbillingreport day iid xd needs to have subscribe option xd cannot see it on the screen xd i: 8175 please reset my attendance tool password as forgot username gurhyqsath india met i: 8176 hi ramdnty xd as discussed we send emails also called subscriptions out of reporting tool application on daily basis xd the smtp server has remained the same for last years xd since the users are receiving duplicate emails for example see attached the duplicate emails have been receiving daily xd one more thing to note is that reporting tool maintains count of emails sent per day but the count has not doubled indicating that smtp server seems to be processing it twice instead of reporting tool sending them multiple times xd smtp server hqap company com xd the issue has been escalate to higher management xd greatly appreciate if you could look into this as the earliest let me know if you need more details xd xd i: 8177 hi below mentioned employee is unable to login ess portal please reset the password emp no name useid yaxmwdth xsfgitmq vvdortddp fyi with i: 8178 audio not working xd computer model dell precision xd name awyl xd i: 8179 vendor access isn working external website no vendor can access drawings or model situation get critical and causes delays in customer orders all vendors are affected xd error message unable to read document information from erp see attachment i: 8180 xd xd xd team anbei ein investmentantrag r einen neuen rechner laptop r mnakehrf mvunqihf xd xd mit freundlichen gr en best Translated 8180 : xd xd xd team attached an investment application r a new computer laptop r mnakehrf mvunqihf xd xd Yours sincerely i: 8181 xd abended job in job scheduler job at Translated 8181 : xd abended job in job scheduler job at i: 8182 stepfhryhan needs access to below collaboration platform links urlaubsplanung file efdl users linnes collaboration platform company inc fy teamordner linnemann urlaubsplanung pl ne file efdl users linnes collaboration platform company inc fy teamordner linnemann pl ene allgemeines file efdl users linnes collaboration platform company inc fy teamordner linnemann allgemeines berirtchtswesen gebiet nord file efdl users linnes collaboration platform company inc fy teamordner linnemann berirtchtswesen gebiet nord crm teamordner file efdl users linnes collaboration platform company inc fy teamordner linnemann crm teamordner teamcall teammeeting file efdl users linnes collaboration platform company inc fy teamordner linnemann teamcall teammeeting top projekte file efdl users linnes collaboration platform company inc fy teamordner linnemann top projekte hallo sabrthy wie weit sind wir in diesem thema habe noch kein ticket erhalten mit freundlichen gr en nizholae bjnqikym anwendungstechniker application engineer company deutschland gmbh diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung select the following link to view the disclaimer in an alternate language von nizholae bjnqikym gesendet donnerstag juli an aorthyme rnsuipbk betreff aw no access to netweaver danke sabrthy mit freundlichen gr en nizholae bjnqikym anwendungstechniker application engineer diese mitteilung ist einzig und allein r die nutzung durch den adressaten bestimmt und kann informationen enthalten die schutzw rdig vertraulich oder nach geltendem recht von der offenlegung ausgenommen sind die verbreitung verteilung oder vervielf ltigung dieser mitteilung durch personen bei denen es sich nicht um die beabsichtigten empf nger handelt ist streng verboten wenn diese mitteilung aufgrund eines versehens bei ihnen eingegangen ist dann benachrichtigen sie bitte den absender und schen sie diese mitteilung select the following link to view the disclaimer in an alternate language von aorthyme rnsuipbk gesendet donnerstag juli an nizholae bjnqikym betreff re no access to netweaver hallo stepfhryhan das nimmt ein bisschen zeit ich erfasse ein ticket dazu warm Translated 8182 : stepfhryhan needs access to below collaboration platform links vacation planning file efdl users linnes collaboration platform company inc fy team folder linnemann vacation planning pl ne file efdl users linnes collaboration platform company inc fy team folder linnemann pl ene general file efdl users linnes collaboration platform company inc fy team folder linnemann general reporting area north file efdl users linnes collaboration platform company inc fy team folder linnemann berirtchtwesen area north crm team folder file efdl users linnes collaboration platform company inc fy team folder linnemann crm team folder teamcall teammeeting file efdl users linnes collaboration platform company inc fy team folder linnemann teamcall team meeting top projects file efdl users linnes collaboration platform company inc fy team folder linnemann top projects hello sabrthy how far are we in this topic have not yet received a ticket with kind regards nizholae bjnqikym application technician ap plication engineer company deutschland gmbh this communication is intended solely for the use of the addressee and may contain information that is confidential or is excluded from disclosure under applicable law, distribution or reproduction of this communication by people who are not dealing with the intended recipient is strictly prohibited if you have received this notification due to a mistake then please notify the sender and send this message select the following link to view the disclaimer in an alternate language by nizholae bjnqikym sent thursday july to aorthyme rnsuipbk regarding aw no access to netweaver thanks sabrthy best regards nizholae bjnqikym application engineer this communication is intended solely for the use of the addressee and may contain information that is confidential or applicable The right of disclosure excludes the distribution or reproduction of this communication by persons who are not the intended recipients is strictly prohibited.If you have received this communication by mistake, please notify the sender and mail it this message select the following link to view the disclaimer in an alternate language by aorthyme rnsuipbk sent thursday july to nizholae bjnqikym subject re no access to netweaver hello stepfhryhan that takes a little time i collect a ticket to warm i: 8183 unable to select my course when select language there is an error and unable to go further i: 8184 data backup und restore ahlqgjwx wbsfavhg i: 8185 setup new ws aqstdryv flbnyqzc i: 8186 hello xd xd cannot log in to telephony software see error message attached in the meantime tried so many times that my password is surely locked too xd xd i: 8187 rxoynvgi ntgdsehl pm nwfodmhc exurcwkm johthryugftyson hu kaguhxwo uoyipxqg kds sw services rad fw order hi it team kindly please assist as we unable to create dn for po hydstheud mddwwyleh operation supervisor company distribution services of asia pte ltd asia regional distribution centre email johthryugftyson hu pm kds mmaster rxoynvgi ntgdsehl kds sw services kaguhxwo uoyipxqg re order din please create ticket to it for help juhu jojfufn ap logistics manager kds mmaster pm rxoynvgi ntgdsehl kds sw services johthryugftyson hu kaguhxwo uoyipxqg re order hi zadnryuinudin rqfhiong zkwfqagb team can only create sto we are not authorized to create dn plant warehouse persons can create dn for the sto i: 8188 probleme mit drucker in we uacyltoe hxgayczeraum reinhard kr ger Translated 8188 : problems with printer in we uacyltoe hxgayczeraum reinhard kr ger i: 8189 xd abended job in job scheduler job at Translated 8189 : xd abended job in job scheduler job at i: 8190 outlook is not taking password Translated 8190 : outlook is not taking password i: 8191 xd abended job in job scheduler job at Translated 8191 : xd abended job in job scheduler job at i: 8192 einlasten bei it plant germany Translated 8192 : invited to it plant germany i: 8193 hi xd xd this link is not opening xd xd mail xd pm xd qfwijzbd gmkiatjs xd an ethical moment from the office of ethics and compliance xd xd dear team xd xd the office of ethics and compliance provides company employees with periodic ethical moments to remind you of your responsibility in practicing good ethical habits xd xd click here to access the current ethical moment xd xd sethdyr hdtyr xd the office of ethics and compliance xd i: 8194 xd xd xd fyi xd now access to the internet webside allways offline xd xd till this weekend xd xd am located in rth germany xd xd i: 8195 i am not able to open the ethical moment link either in the mail nor from the collaboration platform site tried both the german and english language button i: 8196 for further using of the software cutview it is need to install upgrade to an bit office system xd pls untinstall the current office bit version and install the or bit version i: 8197 computer network connection lost i: 8198 windows account locked and reset password i: 8199 not able to set resolution x Translated 8199 : not able to set resolution x i: 8200 windows need to be repair i: 8201 unable to open net weaver i: 8202 xd abended job in job scheduler job at i: 8203 name srinfhyath language browser microsoft internet explorer customer number telephone summary hi the calendar on my iphone is not showing any meetings i: 8204 erp sid account locked i: 8205 xd abended job in job scheduler job at i: 8206 my sid system password has been locked due to too many failed attempts please unlock my user id gortyhlia and password pls find attached error screenshot for your reference i: 8207 bobj repository issue pls see the attachment for more details i: 8208 help crm is stuck pls help to solve i: 8209 account locked in erp sid i: 8210 erp sid account lokced i: 8211 not able to login to ethics i: 8212 laptop is over heating left side usb and audio output plug also not working system is slow i: 8213 noscwdpm akiowsmp mail xd am xd nwfodmhc exurcwkm xd rad the terminate action for kgarnzdo vkrqojyt has completed xd xd hello xd xd termination for kgarnzdo vkrqojyt effective has been approved xd xd click the link to view xd xd i: 8214 skype for business software can be used i: 8215 unable to login to engineering tool i: 8216 windows account locked i: 8217 windows account locked i: 8218 nkiopevt gufwhdky mail xd am xd nwfodmhc exurcwkm xd wgpimkle kijhcwur eh xd rad windows log in password reset xd importance high xd xd hi it team xd xd cannot log in to windows xd please reset windows password reset xd xd best i: 8219 outlook Translated 8219 : outlook i: 8220 please reset my erp password i: 8221 login issue xd verified user details employee and manager name xd checked the user name in ad and reset the password xd advised the user to login and check xd caller confirmed that he was able to login xd issue resolved i: 8222 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 8223 xd abended job in job scheduler job at Translated 8223 : xd abended job in job scheduler job at i: 8224 what type of outage network circuit power please specify what type of outage xd xd top cert site yes yes no na xd xd when did it start pm et on xd xd scheduled maintenance power yes no na company power provider power xd xd scheduled maintenance network yes no na company maint yes no provider maint ticket xd xd does site have backup circuit yes yes no na xd xd backup circuit active no yes no na xd xd site contact notified phone email yes no na xd xd remote dial in yes no na xd xd equipment reset yes no na xd xd verified site working on backup circuit yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 8225 xd abended job in job scheduler job at i: 8226 xd abended job in job scheduler snp heu regen at Translated 8226 : xd abended job in job scheduler snp heu regen at i: 8227 xd abended job in job scheduler bk hana sid erp wly dp at i: 8228 lhqsm kashfyujqti jdcbiezx disk free on is now which is below the warning threshold out of total size gb i: 8229 xd abended job in job scheduler bwhrattr at i: 8230 hostname south amerirtca br plm dsc file production dsccache exe wrong number of instances of process dsccache exe expected instances gte but found i: 8231 hostname usa va plm web file cache production dsccache exe service is down since est on i: 8232 hostname plm conversion production alwaysupservice exe wrong number of instances of process alwaysupservice exe expected instances gte but found i: 8233 xd abended job in job scheduler snp heu regen at Translated 8233 : xd abended job in job scheduler snp heu regen at i: 8234 hostname bobj ds app and web prod al engine exe service is down al engine exe wrong number of instances of process al engine exe expected found i: 8235 xd xd xd dear helpdesk xd was on vacation and briefly before left changed my password as required xd now it seems that my main windows log in is still with the old password while outlook sype etc is already on the new password xd xd also the company main log on is not right xd usually log in with my company com account which is not appearing any more xd xd what needs to be done xd xd am not and will not be at company site network for another week xd xd i: 8236 bw jobs are failing because of the server issue could you please check and confirm please refer the screen shot sent in an email i: 8237 xd abended job in job scheduler job at Translated 8237 : xd abended job in job scheduler job at i: 8238 reboot tax interface dev servers hostname and hostname at am i: 8239 xd abended job in job scheduler job at Translated 8239 : xd abended job in job scheduler job at i: 8240 xd abended job in job scheduler bk hana sid erp wly dp at i: 8241 xd abended job in job scheduler job at Translated 8241 : xd abended job in job scheduler job at i: 8242 xd abended job in job scheduler job at Translated 8242 : xd abended job in job scheduler job at i: 8243 job name sid stat Translated 8243 : job name sid stat i: 8244 xd abended job in job scheduler sid start hana slt at i: 8245 xd abended job in job scheduler sid cold at i: 8246 xd xd xd vkezwolt fgnqzeai would like to recall the message re chg approve xd xd xd i: 8247 xd abended job in job scheduler sid start at i: 8248 xd abended job in job scheduler sid cold at i: 8249 i connected through vpn to look up information and erp will not connect was able to connect to our local drive plant departments drive but not erp i: 8250 xd abended job in job scheduler sid cold at i: 8251 xd abended job in job scheduler sid hot at i: 8252 xd abended job in job scheduler sid cold at i: 8253 xd abended job in job scheduler sid cold at i: 8254 xd abended job in job scheduler sid cold at i: 8255 xd abended job in job scheduler job at i: 8256 xd abended job in job scheduler sid stop at i: 8257 xd abended job in job scheduler job at Translated 8257 : xd abended job in job scheduler job at i: 8258 xd abended job in job scheduler sid stop hana slt at i: 8259 xd abended job in job scheduler job at i: 8260 xd abended job in job scheduler job at Translated 8260 : xd abended job in job scheduler job at i: 8261 erp is locked out need to unlock it i: 8262 a recently created variable fails to get opened in bobj analyser due to attached error message i: 8263 reporting tool alert the monitor is the disk failed on df d localhost is outside expected limits true true i: 8264 xd abended job in job scheduler bkwin hostname inc at i: 8265 what type of outage network circuit power please specify what type of outage xd xd top cert site no yes no na xd xd when did it start am on xd xd scheduled maintenance power no yes no na company power provider power xd xd scheduled maintenance network no yes no na company maint yes no provider maint ticket xd xd does site have backup circuit no yes no na xd xd backup circuit active na yes no na xd xd site contact notified phone email no yes no na xd xd remote dial in na yes no na xd xd equipment reset no yes no na xd xd verified site working on backup circuit na yes no na xd xd vendor ticket global telecom verizon telecom vendor telecom vendor global telecom xd xd notified gsc yes no na cert started yes no na xd xd additional diagnostics i: 8266 xd abended job in job scheduler apo cif pds am at i: 8267 xd abended job in job scheduler apo cif pds eu at i: 8268 xd abended job in job scheduler job at i: 8269 xd xd xd dear sir xd xd am unable to download my mails out of india office even if am connected with internet xd kindly help in resolving the issue xd xd best i: 8270 xd abended job in job scheduler job at Translated 8270 : xd abended job in job scheduler job at i: 8271 xd original message xd bvlcarfe aztlkeifowndararajan xd date gmt xd sridthshar herytur xd gopi designation change required in outlook xd xd dear sir xd xd recently have been elevated as area manager sales from assistant manager sales xd xd kindly help me out to make the change in outlook contact details and collaboration platform contact details xd xd i: 8272 noticed the alarm in reporting tool xd which is below the warning threshold xd need to check i: 8273 xd abended job in job scheduler bk hana sid erp dly dp at i: 8274 inquiry on transfer of contacts from phone to system i: 8275 erp password reset Translated 8275 : erp password reset i: 8276 erp crm password reset Translated 8276 : erp crm password reset i: 8277 need password reset Translated 8277 : need password reset i: 8278 kirty india two switches are down at pm et on i: 8279 inquiry about lotus notes Translated 8279 : inquiry about lotus notes i: 8280 apac company ap chn apac company access sw and sw are down at pm et on i: 8281 apac robot hostname is inactive i: 8282 xd xd xd changed my password today but not all access locations were updated need to update all sites xd xd i: 8283 change to new password alabama i: 8284 update on inplant Translated 8284 : update on implant i: 8285 rushethryli jacfgtykson mail am nwfodmhc exurcwkm po tax code field auto populate hello please see the highlighted field below tax code this field is auto populating and is inconsistent is it possible to prevent from auto populating where do the po pull this information from i: 8286 unable to connect to wireless i: 8287 efgoawct vwniefok xd am xd nwfodmhc exurcwkm xd smxoklny hbecskgl xd rak can you look at this tried to receive line only and it received the kg on line xd xd can you look and see why this received on line and not line xd xd efgoawct vwniefok xd pm xd smxoklny hbecskgl xd can you look at this tried to receive line only and it received the kg on line xd xd i: 8288 hello team could you please unlock account emails in cell phone the all users below gifpuwtb aykegsvr id bigrtdfatta jlzsardp kumtcnwi id bactelephony softwarea sbinuxja vtbegcho id nicolmghyu rudfgbens rtwjunior juniowsrr jgnxyahz cixzwuyf id zigioachstyac alexansxcddre olovxcdeira olivesadia pollaurido robhyertyjo id robsdgerp note changed the cell phones the user to new wifi and data plan from your service provider is required to setup email on your mobile device is this device company owned is this replacement of your old device if yes please ensure company data has been removed from the old device delete exchange setup from settings mail contacts calendar for personal device please attach approval form signed by manager to the ticketing tool ticket please ensure the device is company approved for email setup if it is not company approved device please contact the gsc for help with exchange setup on personal device please contact the device vendor you also refer to the faq section for steps has the exchange setup been completed on your device n you will receive an email stating the device has been quarantined when this is completed this step needs to be completed for your device to register with company i: 8289 hostname average samples disk free on is now which is below the warning threshold out of total size gb i: 8290 qekdgaim wagshrzl xd am xd nwfodmhc exurcwkm xd amar help with mss worklist since manager left company xd xd hi xd xd m writing on behalf of jdlxkygf wlzqaivr and mikhghytr ramdntysey xd xd jdlxkygf wlzqaivr davidthd former manager and expense report approver gergrythg bigleman is no longer with the company davidthd has an expense report in gergrythg queue xd how does mikhghytr ramdntysey get access to that to approve and or forward to the correct manager xd how can we ensure there are no other requests in gergrythg universal worklist xd xd note our office will be closed for the labor day holiday xd xd best i: 8291 provide access to hnynhsth jsuyhwssad user id pragtyhusas to the below network folder folder access hostname kt transition infrastructure security operations i: 8292 unable to start dell stuck on welcome screen i: 8293 erp sid bex password Translated 8293 : erp sid bex password i: 8294 update contact number in ad i: 8295 crm configuration issue Translated 8295 : crm configuration issue i: 8296 blank call loud noise Translated 8296 : blank call loud noise i: 8297 please reset erp password for beahleb i: 8298 sid model is not working in machine service tag gowzv asset tag error attached xd need to produce some uacyltoe hxgayczes in sid enviroment i: 8299 updated passwords and email on mobile device i: 8300 password management tool password manager password reset link Translated 8300 : password management tool password manager password reset link i: 8301 xd xd xd m getting an error when m trying to run my bex report it won allow me to log in to sid this is something have run with no issues in the past need this to run my daily reports xd xd i: 8302 unable to login to ethics Translated 8302 : unable to login to ethics i: 8303 my cost center changed on from ltm to ltm started an expense account for changed the cost assignment to ltm but the expense account will still not submit receive this error message whenever try to submit the expense account cost center company ltm blocked against direct postings on i: 8304 name gncpezhx hopqcvza language browser microsoft internet explorer customer number telephone summary tool access report i: 8305 xd abended job in job scheduler job at Translated 8305 : xd abended job in job scheduler job at i: 8306 screensaver of company center i: 8307 xd abended job in job scheduler job at i: 8308 company screen saver was changed to company screen saver during the last it update on my pc please change back to company and fix the programdnty so all company screen savers don get changed i: 8309 it is also beeping and the led is flashing i: 8310 hello helpdesk xd xd can you help myhzrtsi rwnhqiyv to download the vitalyst icon to his desktop please xd xd i: 8311 outlook keeps prompting for password i: 8312 unable to login to collaboration platform i: 8313 xd xd xd please could someone check if is allowed to send smtp via xd we need to have this possibility to send out inwarehouse tool approvals via mail xd xd this functionality works in the past and it very important for our finance department xd please let me know why this has been stopped xd xd i: 8314 hello team could you please unlock account email in cell phone the user urgapyzt tnxiuramdnty id vaghyliort i: 8315 blank call loud noise Translated 8315 : blank call loud noise i: 8316 account locked i: 8317 wesley tomlin wilsfgtjl verboncouer markhty verboma current manager tgewaniq yepifgbl does this need change in mapping chefgtnp mason bengtjamin masonb current manager tgewaniq yepifgbl does this need change in mapping chefgtnp i: 8318 mys ptmjvysi vkrepcybwa please confirm to change to itslpwra vybdkuoa wilsfgtjl mikhghytr rushethryli wilsfgtjl talryhtir michghytuael tayloml current manager andrdgrtew mohnrysu does this need change in mapping mondhrbaz i: 8319 wiksufty jimdghty manager so believe this user id does not need changes zazrtulds carmer craigfgh cardfrmeca please confirm to change to itslpwra vybdkuoa wilsfgtjl povich trtgoy mgr povictcfgt current manager andrdgrtew mohnrysu does this need change in mapping mondhrbaz mohnrysu andrdgrtew current manager johthryu marftgytin does this need change in mapping magtyrtijc i: 8320 microsoft on behalf of company inc mail pm nwfodmhc exurcwkm tiyhum kuyiomar amar request to reset microsoft online services password for importance high request to reset user password the following user in your organization has requested password reset be performed for their account first name santrhyat last name jagthyin consider contacting this user to validate this request is authentic before continuing if you have determined that this is valid request use your service admin portal office windows intune windows azure etc to reset the password for this user want to let you users reset their own passwords check out how you can enable password reset for users in your organization with just few clicks sincerely company inc this message was sent from an unmonitored email address please do not reply to this message i: 8321 xwlcqfsr lbcqfnie phone having problem with purchasing access email attached addressing the issue please contract keith to resolve i: 8322 locked out on the caas application i: 8323 insert option not working in excel i: 8324 vlinspectkiosk qlhmawgi sgwipoxn locked Translated 8324 : vlinspectkiosk qlhmawgi sgwipoxn locked i: 8325 cant access to network drive i: 8326 please turn off eligibility for ethics for user wqinjkxs azoyklqe i: 8327 just found out that the eccqa certificate is not valid below is the error we got when talking to one of the apis on ecc qa xd xd build http worker exception xd error message error while silently connecting org wc www protocol http httpexception peer certificate rejected by chainverifier xd detailed error message error while silently connecting org wc www protocol http httpexception peer certificate rejected by chainverifier xd web service xd input paramdntys xd property class value class com company connect bb dataconnectors io customer customersearchinputtype xd property commoninput value commoninputs brand kd distchannel division language maxrows salesorg soldto xd property customerattributes value customerattributes attributecode attributetext attributetype xd property customersearch value customersearch customeraddress customeraddress city country countrylong district email fax houseno name name name state statelong street street telephone zipcode customername customername customerno customertype xd property partnerrole value xd webserviceclient execute generirtc exception xd xd please get this fixed soon as we have lot of uacyltoe hxgayczeing going on in qa and we need the qa system back on line soon our vendors are also about to demo the new project that they completed for company to the business and since we have certificate issue they had to postpone it hence please treat this as urgent and fix as soon as possible xd i: 8328 please change email address of user gncpezhx hopqcvza from to i: 8329 xd abended job in job scheduler bk hana sid os dly dp at i: 8330 inc please turn off eligibility for ethics for user wqinjkxs azoyklqe xd inc please change email address of user gncpezhx hopqcvza from to i: 8331 hello team xd could you please support with mdm issue via citrix xd the application mdm data manager and mdm import manager does not work when trying to upload catalogs xd xd you can find the error print screen attached xd xd i: 8332 benefits issue Translated 8332 : benefits issue i: 8333 unable to login to skype certificate error Translated 8333 : unable to login to skype certificate error i: 8334 xerox copier prtqx will not scan to email i: 8335 ticket update on inplant i: 8336 ticket ticket no update to anftgup nftgyair i: 8337 outlook issue crm giving error message i: 8338 my outlook will not open it is stuck with screen showing processing i: 8339 mobile broad band issue i: 8340 xd xd xd alarm ap usa training room disassociated from controller controller name company wlc xd timestamp am edt xd device usa training room e xd severity critical xd xd xd i: 8341 please reset my password did find out why it can log on after hours time period because when reset my pass word was on wi fi i: 8342 xd xd xd am locked out of password management tool password change because of too many attempts my password wouldn work could you please re set me xd xd i: 8343 ugyothfz ugrmkdhx pm ed pasgryowski rxuobtjg grcmqaxd tiyhum kuyiomar hqbxstoy mdjftxli dfupksnr drnqjzph epilwzux qjhitbcr zarlgjes nxjvzcta kzishqfu bmdawzoi kathght shfhyw sadmin hnynhsth jsuyhwssad qfrntose ivnhumzjalakrisyuhnyrtn spoof email issue hello all Translated 8343 : ugyothfz ugrmkdhx pm ed pasgryowski rxuobtjg grcmqaxd tiyhum kuyiomar hqbxstoy mdjftxli dfupksnr drnqjzph epilwzux qjhitbcr zarlgjes nxjvzcta kzishqfu bmdawzoi sad i: 8344 we are attempting to login into our tax interface software to apply updates and server hostname is not responding this is the second time within two weeks that we are having an issue with this server please advise when issue has been corrected xd i: 8345 formatar micro Translated 8345 : micro format i: 8346 security error in reisekosten abrechnungs programdnty Translated 8346 : security error in travel expense accounting programdnty i: 8347 xd xd xd hello xd xd please give full access to hmovlkyq kinawsdv and iechuoxb zcejmwsq to the following folder xd xd hostname teams finance global bank bals fy file hostname teams finance global bank bals fy xd xd xd kind i: 8348 xd xd xd hello xd am unable to access supply chain software it will not recognize my password xd i: 8349 internal error unable to find any processes xd probe processes failed to start command processes exe error insufficient system resources exist to complete the requested service i: 8350 company screensaver i: 8351 password management tool problem look at the unlock accounts log this happens to each and every user i: 8352 welcome screen in the germany lobby is not working any more please check i: 8353 xd xd xd was looking for pathryu etasthon on skype type in his name in the search bar and his picture shows up with robdyhr hhnght name beside it xd nvamcrpq gkrlmxne does not show up at all robdyhr hhnght is no longer with company perhaps communications intended and sent to robdyhr hhnght are being forwarded to pat and the settings are incorrect xd xd in any event can you have someone look into this and correct xd i: 8354 unable to launch outlook i: 8355 ms crm dynamics for outlook xd error an error occurred prompting this item to ms dynamics crm i: 8356 x welcome to the company business ethics and conduct center ethics training site our records indicate that the log in credentials you used to access this site from the company collaboration platform do not match the records we have on file within the active directory please submit ticket to the global support center to ensure that your network log in id is correctly entered into erp xd xd i: 8357 ticket update on ticket no i: 8358 supply chain software password reset i: 8359 chat disconnected i: 8360 password reset for supply chain software user id ludwidjfft i: 8361 good morning am unable to log into supply chain software can you please reset my password ryafbthn mijhmijhmiles leader of sales msc i: 8362 pobleme mit we combi jionmpsf wnkpzcmv i: 8363 langsamer rechner berpr fung niptbwdq csenjruz Translated 8363 : slow computer review niptbwdq csenjruz i: 8364 attendance tool is not loading in internet explorer missing adobe flash player i: 8365 setup new ws kebogxzp difnjlkp Translated 8365 : setup new ws kebogxzp difnjlkp i: 8366 bluetooth keybankrd defekt dardabthyr Translated 8366 : bluetooth keybankrd defective dardabthyr i: 8367 xd xd xd good morning xd xd can you please reset my erp login as it tells me my password is incorrect xd xd i: 8368 probleme mit bildschirmschoner we jionmpsf wnkpzcmv Translated 8368 : problems with screensaver we jionmpsf wnkpzcmv i: 8369 mobiltelefon gigaset professional mit der durchwahl xd akku defekt lt nicht mehr nger wie tag xd display kann man kaum noch was erkennen xd clip defekt xd Translated 8369 : mobile phone gigaset professional with extension xd battery defective lt no longer like tag xd display you can hardly see anything xd clip defective xd i: 8370 i am not able to login my account must have the wrong password matghyuthdw is my username dan welcome to sandop ve created your user account please use following logn credentials dthyan matheywtyuews sales manager gl t i: 8371 xd xd xd hello team xd xd can you please update the drive and graphic card for my laptop dell let me know if you required further details xd xd i: 8372 xd summary need acces to run bex reports showing margins it should be the same access as qkmgtnla buraxcij and pqkthilr uitfqsen xd xd also xd xd xd also had erp business objects loaded onto my machine however it does not work get the following message the launcher is exited with error see log file for more details the analysis add in is not registered correctly i: 8373 windows account lockout i: 8374 ich wei mein erp passwort nicht mehr und habe fehlversuche eingegeben bitte zur cksetzen Translated 8374 : I no longer know my erp password and have entered unsuccessful attempts please reset i: 8375 vmware tools are not running on the server hostname which is resided on host hostname because of this backup job is failing i: 8376 user id vvrtgwildj name johghajknnes wildschuetz user logging in for the first time and getting error die sicherheisdatenbank auf dem server enth lt kein computerkonto r diese arbeitsstationsvertrauensstellung error the security database on the server does not contain computer account for this workstation trust relationship computer name efdl contact i: 8377 lhqsm fim production miiserver exe wrong number of instances of process miiserver exe expected instances gte but found i: 8378 new email problem Translated 8378 : new email problem i: 8379 m wilfert does not find three customers that are included in his sales plan in ms crm on the my active accounts view also he thinks he has some in the list that do not belong to him attached his email to this ticket i: 8380 xd xd xd dear sir xd keybankrd of laptop is not working please do the need full xd xd laptop details xd xd dell latitude win bit xd service tag xd computer name ainl xd india branch xd xd xd with best i: 8381 xd abended job in job scheduler job at i: 8382 telephony software automated status update user zjcsqtdn jikyworg activated the screen saver by pressing windows gabryltkla maier germany warehouse were calling her the phone was ringing and christgryta status was changed to acd agent not answering automatically by loging on again the status was remaining at acd agent not answering call id as we facing that gap occationally would you please let us know if we could have the status changing back again to available automatically i: 8383 distributor tool not loading i: 8384 xd abended job in job scheduler job at Translated 8384 : xd abended job in job scheduler job at i: 8385 error message laufzeitfehler ung ltige verwendung von null xd xd prompted at step auftragsausgang von revision freigegeben pressing okay results in programdnty crash xd xd error occured first time this morning am cet xd xd there is one batch at this step von revision freigegeben at the moment batches after that stage in the workflow can be processed as usual however workflow is interrupted and batches directly before critical stage can be further processed happens only for pvd cvd is running without any issues xd xd i: 8386 sold to account is extended to null empty division it can happened that sold to account is saved without mandatory fields this is big issue xd this issue is generating failed queue items in crm msd please investigate how the system allowed the user to save it xd xd i: 8387 qwsjptlo hnlasbed erp sid printed to jc spool no userid lynerwjgthy if the plant code is set at plant label print is successful when plant code is set to plant error message and no output i: 8388 der drucker steht am platz von wckrxovs aunsgzmd Translated 8388 : the printer is at wckrxovs aunsgzmd's place i: 8389 dock station is not working i: 8390 password reset request through password management tool password i: 8391 xd abended job in job scheduler job at i: 8392 i got the new laptop recently and cursor jumps or moves on its own automatically randomly while typing in windows laptop i: 8393 i am unable to login the url i: 8394 turn off telephony software for turkey between local time due to meeting xd approved by djpwfxzt cfkwxlmq i: 8395 config air server runs into internal server error xd message error while trying to invoke the method java util list iterator of null object loaded from local variable locallist xd this error happens with the csscdrill model xd xd with the mill model model configair is coming up but the model is not working xd xd this has directly business impact for quotations i: 8396 please reset my erp password sid Translated 8396 : please reset my erp password sid i: 8397 xd abended job in job scheduler job at Translated 8397 : xd abended job in job scheduler job at i: 8398 please reset password for user catgyhilp ess kiosk user please email change information to coatea or whatlgp i: 8399 unable to connect to wifi i: 8400 password reset erp sid Translated 8400 : password reset erp sid i: 8401 xd xd xd hello xd unable to sign in after java update see the message xd xd xd best i: 8402 xd xd xd hello sandrgru xd xd please check your gui settings for sid should be xd xd xd i: 8403 asfgthok topefd am nwfodmhc exurcwkm rad fw erp and business client password blocked importance high hello again am facing the issue while opening the erp password has been blocked let us do needful best i: 8404 need teamviewer full version and visio application i: 8405 uxndyfrs vahxnfgl mail xd am xd nwfodmhc exurcwkm xd rad fw calculation of the claim amount will make mistake xd xd hi xd xd calculation of the claim amount will make mistake xd please fix this xd xd the total amount of money usd xd xd best i: 8406 java Translated 8406 : Java i: 8407 windows account locked i: 8408 when we update the complaint with assigned status and employee responsible system is sending duplicate emails to sales employee and employee responsible i: 8409 xd abended job in job scheduler job at Translated 8409 : xd abended job in job scheduler job at i: 8410 reboot lhqsm patent web uacyltoe hxgaycze server server at pm et on Translated 8410 : reboot lhqsm patent web uacyltoe hxgaycze server server at pm et on i: 8411 xd abended job in job scheduler job at Translated 8411 : xd abended job in job scheduler job at i: 8412 hello snhdfihytu kindly refer mail renew account for visfgthal vvjodav goptijdtnsya vsbhyrt extn jayhrt bhatyr i: 8413 xd xd xd could log on to sid uacyltoe hxgaycze system xd xd xd xd warm Translated 8413 : xd xd xd Could log on to the system as uacyltoe hxgaycze warm xd xd xd xd i: 8414 vpn Translated 8414 : vpn i: 8415 xd abended job in job scheduler bkwin hostname inc at i: 8416 ntydihzo aeptfbgs xd am xd nwfodmhc exurcwkm xd wg die synchronisierung mit exchange activesync ist auf ihrem ger vor bergehend blockiert bis der zugriff vom administrator gew hrt wird xd importance high xd xd hi it help team xd xd please unblock my new company device xd xd i: 8417 nwfodmhc exurcwkm am prishry budhtya re rak re your mobile device has been denied access to the server via exchange activesync because of server policies dear prishry i: 8418 request to phase in additional vas customers file attached with customer accounts xd add pick day in supply chain for the customers in attached list for plant only i: 8419 mikhghytr wafglhdrhjop pm nwfodmhc exurcwkm rak fw ethics collaboration platform site please review your recent ticketing tool tickets and let me know who modified the ethics collaboration platform site few weeks ago had requested change that placed third column of selections not sure who or why this was undone mikhghytr wafglhdrhjop sr manager global ethics and compliance programdntys kzbuhixt zjdmoahr am mikhghytr wafglhdrhjop re ethics collaboration platform site oh sethdyr hdtyr assistant general counsel compliance and real estate global director of ethics and compliance ccep i: 8420 rakthyesh ramdntythanjesh xd am xd ugyothfz ugrmkdhx xd mikhghytr rhoades xd ticket no no acces to paystub and etime xd xd good morning safrgyynjit xd xd user called to service desk and requested to expedite the case requesting you to own the issue on priority and assist user on same xd xd xd xd kind i: 8421 outlook freezing because of crm addin i: 8422 inquiry about employee shesyhur posrt i: 8423 etime time card update information Translated 8423 : etime time card update information i: 8424 supply chain software account unlock and password reset i: 8425 xd xd xd xd best Translated 8425 : xd xd xd xd Best i: 8426 yesterday it helped me access some additional information on oneteam but still do not have link showing for my benefits tried to search and nothing pulls up tgbtyim dgtalone key account manager i: 8427 stehdgty jfhying called in for an issue where he and his supervisor was not able to connect to network drive which is hostname they re doing the third shift and as per stehdgty there only two of them who are working but in another hour there would be more people coming i: 8428 xd xd xd hello xd xd business decision has recently been made to view mfg tooltion customer classification ik as indirect sales going forward currently in the bex system they are classified as direct xd xd can you please modify the cust grp enhanced field cust sales zcustgrp to show mfg tooltion customer classification ik customers as indirect xd xd this field is used in several bex and hana reports sales plan product management otc billings etc let me know if you have any questions xd xd best i: 8429 hi team was going into the ess file and checking some things for the ytd and this is the screen that shows up this is on my report tab when am logged into vpn please assist in getting this to english eagvusbr nguqityl sales engineer i: 8430 robot hostname is inactive i: 8431 pacvbetl yptglhoe xd pm xd nwfodmhc exurcwkm xd amar fw case id ref case ref others xd xd please see the forwarded email below this looks suspicious to me and be some sort of phishing or spamming email please review it and let me know if it looks legitimate and is from legitimate individuals at company did not open or view any of the attachments xd xd have no idea why accounts payable would be sending me an email xd xd best i: 8432 please remove user hugcadrn ixhlwdgt ralfteimp from palo alto quarantine user pc has been replaced i: 8433 ticket update on inc to user hbmwlprq ilfvyodx i: 8434 ticket update on ticket no Translated 8434 : ticket update on ticket no i: 8435 pc received multiple windows security updates earlier and now the telephony software software is missing from the screen xd ran requirements check software to see that dotnet framdntyework is installed on the pc xd telephony software fails to install in the absence of dotnet xd used dotnet uninstaller to remove all versions restarted pc dotnet still fails to install xd ran repair tool to see that the pc still has dot net installed xd xd need help to setup the compatible version of dotnet on the pc and help re install telephony software xd xd checked previous cases tickets log cptl xd contact number xd pc name lmsl xd os version windows bit xd sop exists n xd steps followed na xd next assignment amerirtcas pc services xd reason for reassignment need to downgrade dot net to to install crm client xd cost center na xd i: 8436 name mfeyouli ndobtzpw language browser microsoft internet explorer customer number telephone summary unlock erp account for gadbpfrz unvdyask user name boivin i: 8437 account locked i: 8438 please contact ed pasgryowski pasgryo about his purchasing check status each time he tries to view his carts the view changes and he can see his carts told him to click in change query and the show my team carts box but it seems to reset each time i: 8439 i need vpn for my new laptop name llv knethyen grechduy engineer product engineering company i: 8440 hr tool etime option not visitble i: 8441 i am sorry have another two accounts that need to be added and please copy from the problem is that the error only comes up if someone tries to clear open items for these accounts xd xd this incident has been created against to ticket no i: 8442 tablet needs reimaged due to multiple issues with crm wifi etc i: 8443 xd xd xd good afternoon xd am not receiving the emails that sent from zz mail xd please advise xd xd i: 8444 telephony software issue i: 8445 vip windows password reset for tifpdchb pedxruyf i: 8446 i am unable to access the machine utilities to finish the drawers adjustment settings xd is no network i: 8447 an mehreren pc lassen sich verschiedene prgramdntyme nicht ffnen bereich cnc Translated 8447 : Different program types cannot be opened on more than one pc. cnc area
np.unique(detected_lang)
array(['af', 'ca', 'cs', 'cy', 'da', 'de', 'es', 'et', 'fi', 'fr', 'hr',
'id', 'it', 'lt', 'lv', 'nl', 'no', 'pl', 'pt', 'ro', 'sk', 'sl',
'so', 'sq', 'sv', 'tl'], dtype='<U2')
def remove_non_dictionary_words(text):
text=text.lower()
#text = re.sub(r"\s+[a-zA-Z]\s+", ' ', text)
text = re.sub('xd', '', text)
text = text.strip()
return text
for i in range(len(Datafinal['Short description'])):
try:
Datafinal['Short description'][i] =remove_non_dictionary_words(str(Datafinal['Short description'][i]))
Datafinal['Description'][i] =remove_non_dictionary_words(str(Datafinal['Description'][i]))
except Exception as e:
print(str(e))
1081 1178 1452 1568 1700 1701 1704 1710 1711 1836 1954 1955 2004 2975 3010 3120 3137 3303 3315 3738 3903 4028 4046 4098 4501 4502 4503 5013 5143 5147 5149 5303 5311 5464 5491 5761 5913 6098 6106 6253 6534 6535 7126 7309 7314 7316 7317 7588 7941 7969 8266
Observation: There are 1 entire entry in "Short description" and 57 entries in "Description" which are being removed because of which the row count is decreasing which is causing issue while updating the dataframe with original rowcount - Shown in the snapshots below
To address this we should merge both the columns which would also help in NLP model building in the due course

#Datafinal["Short description"] = Datafinal["Short description"].astype(str)
#Datafinal["merged"] = Datafinal.apply(lambda col : [col["Short description"],col["Description"]],axis =1)
Datafinal["merged"] = Datafinal["Short description"]+" "+Datafinal["Description"]
Datafinal=Datafinal.reset_index() ## Resetting the index
Datafinal.drop('index',axis=1,inplace=True)
Datafinal.head()
| Short description | Description | Assignment group | merged | |
|---|---|---|---|---|
| 0 | login issue | verified user details employee and manager nam... | GRP_0 | login issue verified user details employee and... |
| 1 | outlook | hello team my meetings skype meetings etc ar... | GRP_0 | outlook hello team my meetings skype meeting... |
| 2 | cant log in to a vpn | hi ne can log on to a vpn best | GRP_0 | cant log in to a vpn hi ne can log on to a vpn... |
| 3 | unable to access hr tool page | unable to access hr tool page | GRP_0 | unable to access hr tool page unable to access... |
| 4 | skype error | skype error | GRP_0 | skype error skype error |
len(Datafinal) # Checking length of the merged column
8448
Datafinal1=Datafinal # Creating a backup of the Dataset before processing
Datafinal.head(10)
| Short description | Description | Assignment group | merged | |
|---|---|---|---|---|
| 0 | login issue | verified user details employee and manager nam... | GRP_0 | login issue verified user details employee and... |
| 1 | outlook | hello team my meetings skype meetings etc ar... | GRP_0 | outlook hello team my meetings skype meeting... |
| 2 | cant log in to a vpn | hi ne can log on to a vpn best | GRP_0 | cant log in to a vpn hi ne can log on to a vpn... |
| 3 | unable to access hr tool page | unable to access hr tool page | GRP_0 | unable to access hr tool page unable to access... |
| 4 | skype error | skype error | GRP_0 | skype error skype error |
| 5 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | GRP_0 | unable to log in to engineering tool and skype... |
| 6 | event critical hostname company com the value ... | event critical hostname company com the value ... | GRP_1 | event critical hostname company com the value ... |
| 7 | ticket no employment status new non employee e... | ticket no employment status new non employee e... | GRP_0 | ticket no employment status new non employee e... |
| 8 | unable to disable add ins on outlook | unable to disable add ins on outlook | GRP_0 | unable to disable add ins on outlook unable to... |
| 9 | ticket update on inplant | ticket update on inplant | GRP_0 | ticket update on inplant ticket update on inplant |
import nltk
nltk.download('words')
[nltk_data] Downloading package words to [nltk_data] C:\Users\p0s041d\AppData\Roaming\nltk_data... [nltk_data] Package words is already up-to-date!
True
english_vocab = set(w.lower() for w in nltk.corpus.words.words())
text_vocab = set(w.lower() for w in Datafinal['merged'] if w.lower().isalpha())
unusual = text_vocab.difference(english_vocab)
# pip install langdetect
from langdetect import detect
from langdetect import detect_langs
Datafinal['merged'][1]
'outlook hello team my meetings skype meetings etc are not appearing in my outlook calendar can somebody please advise how to correct this kind'
len(Datafinal['merged'])
8448
pip install langid
Requirement already satisfied: langid in c:\users\p0s041d\anaconda3\lib\site-packages (1.1.6) Requirement already satisfied: numpy in c:\users\p0s041d\anaconda3\lib\site-packages (from langid) (1.21.3) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
import langid
data_lang = []
for i in range(len(Datafinal['merged'])):
try:
data_lang.append(langid.classify(str((Datafinal['merged'][i])))[0])
except Exception as e:
print(str(e))
not_en = []
for i in range(len(data_lang)):
if data_lang[i] != 'en':
not_en.append(i)
not_en
[4, 7, 18, 19, 20, 25, 30, 33, 35, 40, 48, 52, 66, 81, 109, 118, 123, 124, 153, 154, 157, 169, 183, 208, 213, 217, 255, 274, 280, 286, 296, 302, 305, 306, 309, 311, 312, 316, 336, 339, 342, 349, 370, 388, 402, 423, 426, 427, 430, 435, 454, 463, 469, 488, 496, 506, 515, 527, 547, 559, 571, 575, 578, 580, 588, 595, 596, 597, 616, 621, 662, 678, 698, 704, 726, 740, 744, 748, 757, 761, 769, 775, 782, 814, 817, 823, 825, 828, 837, 852, 863, 867, 886, 887, 894, 900, 904, 913, 938, 942, 963, 965, 966, 985, 995, 996, 997, 1011, 1021, 1034, 1051, 1053, 1103, 1122, 1125, 1136, 1138, 1151, 1153, 1155, 1156, 1157, 1167, 1170, 1189, 1213, 1215, 1225, 1230, 1234, 1242, 1243, 1251, 1253, 1270, 1280, 1352, 1371, 1389, 1390, 1427, 1432, 1438, 1439, 1440, 1447, 1455, 1499, 1519, 1522, 1523, 1530, 1531, 1535, 1549, 1603, 1622, 1625, 1640, 1641, 1652, 1661, 1662, 1669, 1670, 1713, 1720, 1727, 1743, 1759, 1760, 1761, 1762, 1771, 1784, 1785, 1796, 1798, 1799, 1813, 1815, 1818, 1820, 1829, 1843, 1847, 1848, 1854, 1862, 1880, 1903, 1963, 1966, 1973, 1976, 2013, 2014, 2022, 2025, 2026, 2029, 2032, 2033, 2034, 2035, 2036, 2038, 2049, 2051, 2057, 2063, 2068, 2087, 2090, 2106, 2110, 2114, 2118, 2121, 2143, 2156, 2159, 2169, 2170, 2173, 2179, 2189, 2235, 2247, 2265, 2272, 2277, 2288, 2289, 2322, 2326, 2327, 2335, 2341, 2347, 2355, 2359, 2360, 2369, 2372, 2374, 2381, 2384, 2401, 2402, 2411, 2453, 2460, 2466, 2467, 2468, 2480, 2483, 2489, 2554, 2604, 2627, 2645, 2650, 2666, 2670, 2674, 2675, 2688, 2697, 2702, 2705, 2707, 2723, 2757, 2761, 2772, 2774, 2780, 2791, 2793, 2801, 2802, 2807, 2819, 2827, 2835, 2838, 2847, 2864, 2887, 2906, 2909, 2914, 2920, 2930, 2956, 2963, 2966, 2967, 2980, 3024, 3035, 3037, 3044, 3047, 3054, 3059, 3060, 3086, 3092, 3112, 3113, 3117, 3127, 3136, 3154, 3161, 3166, 3174, 3189, 3192, 3196, 3211, 3218, 3242, 3245, 3262, 3282, 3289, 3305, 3333, 3365, 3373, 3377, 3379, 3380, 3381, 3389, 3392, 3400, 3411, 3413, 3419, 3438, 3451, 3477, 3480, 3486, 3488, 3509, 3516, 3533, 3540, 3545, 3548, 3551, 3565, 3605, 3607, 3621, 3636, 3640, 3644, 3648, 3652, 3653, 3658, 3659, 3661, 3678, 3680, 3696, 3702, 3705, 3706, 3712, 3719, 3731, 3733, 3752, 3758, 3780, 3789, 3802, 3811, 3824, 3825, 3826, 3828, 3838, 3839, 3843, 3845, 3850, 3854, 3855, 3859, 3871, 3872, 3878, 3884, 3887, 3888, 3892, 3893, 3897, 3899, 3911, 3930, 3932, 3954, 3978, 3979, 3985, 4004, 4012, 4015, 4024, 4031, 4074, 4088, 4091, 4123, 4149, 4246, 4248, 4254, 4259, 4272, 4289, 4293, 4300, 4319, 4322, 4323, 4357, 4359, 4362, 4373, 4379, 4409, 4415, 4421, 4423, 4428, 4468, 4486, 4499, 4502, 4525, 4538, 4550, 4552, 4557, 4566, 4610, 4611, 4617, 4620, 4631, 4639, 4651, 4660, 4661, 4664, 4688, 4691, 4716, 4718, 4760, 4786, 4795, 4814, 4822, 4827, 4829, 4830, 4837, 4838, 4845, 4846, 4850, 4853, 4873, 4895, 4900, 4915, 4922, 4924, 4953, 4954, 4958, 4977, 4981, 5003, 5017, 5020, 5022, 5037, 5039, 5050, 5056, 5060, 5066, 5068, 5071, 5095, 5105, 5118, 5137, 5138, 5148, 5150, 5175, 5190, 5191, 5194, 5196, 5198, 5199, 5206, 5211, 5212, 5223, 5240, 5242, 5249, 5253, 5262, 5277, 5278, 5279, 5281, 5294, 5346, 5358, 5360, 5374, 5379, 5389, 5394, 5401, 5411, 5420, 5421, 5452, 5455, 5476, 5491, 5497, 5514, 5521, 5522, 5524, 5535, 5536, 5540, 5555, 5589, 5605, 5606, 5609, 5620, 5621, 5650, 5659, 5666, 5668, 5680, 5682, 5706, 5708, 5711, 5719, 5722, 5723, 5733, 5739, 5746, 5757, 5759, 5762, 5773, 5778, 5781, 5782, 5783, 5793, 5796, 5808, 5809, 5815, 5823, 5828, 5841, 5843, 5844, 5850, 5853, 5854, 5870, 5895, 5923, 5933, 5941, 5947, 5952, 5954, 5958, 5960, 5962, 5979, 5998, 6012, 6016, 6018, 6035, 6058, 6064, 6069, 6137, 6150, 6151, 6154, 6160, 6162, 6164, 6173, 6176, 6179, 6208, 6211, 6232, 6240, 6246, 6248, 6259, 6302, 6306, 6315, 6316, 6317, 6320, 6326, 6331, 6339, 6346, 6351, 6352, 6381, 6393, 6400, 6456, 6457, 6473, 6475, 6502, 6521, 6524, 6535, 6539, 6541, 6542, 6544, 6553, 6555, 6556, 6561, 6564, 6565, 6568, 6583, 6595, 6597, 6601, 6613, 6619, 6637, 6638, 6658, 6663, 6675, 6693, 6694, 6699, 6701, 6719, 6754, 6755, 6759, 6779, 6793, 6799, 6808, 6861, 6865, 6887, 6901, 6906, 6907, 6908, 6912, 6917, 6929, 6936, 6944, 6951, 6952, 6961, 6993, 7003, 7038, 7070, 7076, 7078, 7079, 7080, 7094, 7096, 7101, 7110, 7112, 7129, 7147, 7149, 7154, 7158, 7160, 7166, 7178, 7179, 7198, 7210, 7223, 7226, 7233, 7235, 7255, 7259, 7271, 7273, 7320, 7330, 7344, 7345, 7353, 7369, 7378, 7380, 7387, 7397, 7411, 7419, 7454, 7460, 7481, 7495, 7504, 7509, 7514, 7517, 7547, 7551, 7588, 7607, 7625, 7630, 7638, 7643, 7646, 7648, 7665, 7668, 7708, 7738, 7749, 7775, 7776, 7780, 7791, 7814, 7823, 7832, 7838, 7840, 7841, 7856, 7857, 7861, 7866, 7875, 7877, 7878, 7879, 7880, 7886, 7900, 7902, 7917, 7935, 7957, 7975, 7977, 7978, 7981, 7990, 7998, 8000, 8004, 8027, 8032, 8035, 8059, 8074, 8091, 8127, 8134, 8138, 8140, 8141, 8150, 8172, 8192, 8197, 8204, 8216, 8217, 8226, 8233, 8275, 8276, 8294, 8300, 8316, 8323, 8337, 8345, 8354, 8359, 8362, 8363, 8366, 8378, 8400, 8407, 8410, 8416, 8423, 8436, 8437, 8439, 8445]
len(not_en)
853
As shown above, there were around 852 rows for which the langauge was not English. Such non english langages were: af', 'ca', 'cs', 'cy', 'da', 'de', 'es', 'et', 'fi', 'fr', 'hr', 'id', 'it', 'lt', 'lv', 'nl', 'no', 'pl', 'pt', 'ro', 'sk', 'sl', 'so', 'sq', 'sv' and 'tl
import re
import nltk
nltk.download('stopwords')
nltk.download('wordnet')
from nltk.corpus import stopwords
from nltk.stem.porter import PorterStemmer
from nltk.tokenize import RegexpTokenizer
from nltk.stem.wordnet import WordNetLemmatizer
[nltk_data] Downloading package stopwords to [nltk_data] C:\Users\p0s041d\AppData\Roaming\nltk_data... [nltk_data] Package stopwords is already up-to-date! [nltk_data] Downloading package wordnet to [nltk_data] C:\Users\p0s041d\AppData\Roaming\nltk_data... [nltk_data] Package wordnet is already up-to-date!
corpus = [] # Creating an array "corpus" to store all the processed data
Datafinal['word_count']=Datafinal['merged'].apply(lambda x: len(str(x).split(" ")))
print(Datafinal.word_count.head)
ds_count=len(Datafinal.word_count)
print(ds_count)
for i in range(ds_count):
txt = Datafinal.iloc[i]['merged']
txt = txt.lower()
txt=txt.split()
ps=PorterStemmer()
lem=WordNetLemmatizer()
txt = [lem.lemmatize(word) for word in txt if not word in stopwords.words('english')]
#txt=" ".join(txt)
corpus.append(txt)
<bound method NDFrame.head of 0 40
1 28
2 17
3 12
4 4
..
8443 28
8444 6
8445 14
8446 22
8447 21
Name: word_count, Length: 8448, dtype: int64>
8448
Datafinal['processed_text']=corpus # Storing the cleansed values as a column 'processed_text'
Datafinal.head()
| Short description | Description | Assignment group | merged | word_count | processed_text | |
|---|---|---|---|---|---|---|
| 0 | login issue | verified user details employee and manager nam... | GRP_0 | login issue verified user details employee and... | 40 | [login, issue, verified, user, detail, employe... |
| 1 | outlook | hello team my meetings skype meetings etc ar... | GRP_0 | outlook hello team my meetings skype meeting... | 28 | [outlook, hello, team, meeting, skype, meeting... |
| 2 | cant log in to a vpn | hi ne can log on to a vpn best | GRP_0 | cant log in to a vpn hi ne can log on to a vpn... | 17 | [cant, log, vpn, hi, ne, log, vpn, best] |
| 3 | unable to access hr tool page | unable to access hr tool page | GRP_0 | unable to access hr tool page unable to access... | 12 | [unable, access, hr, tool, page, unable, acces... |
| 4 | skype error | skype error | GRP_0 | skype error skype error | 4 | [skype, error, skype, error] |
pip install spacy
Requirement already satisfied: spacy in c:\users\p0s041d\anaconda3\lib\site-packages (3.1.4) Requirement already satisfied: wasabi<1.1.0,>=0.8.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (0.8.2) Requirement already satisfied: setuptools in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (50.3.1.post20201107) Requirement already satisfied: requests<3.0.0,>=2.13.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (2.24.0) Requirement already satisfied: spacy-legacy<3.1.0,>=3.0.8 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (3.0.8) Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (1.0.6) Requirement already satisfied: catalogue<2.1.0,>=2.0.6 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (2.0.6) Requirement already satisfied: typer<0.5.0,>=0.3.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (0.4.0) Requirement already satisfied: srsly<3.0.0,>=2.4.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (2.4.2) Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (4.50.2) Requirement already satisfied: numpy>=1.15.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (1.21.3) Requirement already satisfied: thinc<8.1.0,>=8.0.12 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (8.0.12) Requirement already satisfied: pydantic!=1.8,!=1.8.1,<1.9.0,>=1.7.4 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (1.8.2) Requirement already satisfied: packaging>=20.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (20.4) Requirement already satisfied: pathy>=0.3.5 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (0.6.1) Requirement already satisfied: blis<0.8.0,>=0.4.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (0.7.5) Requirement already satisfied: cymem<2.1.0,>=2.0.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (2.0.6) Requirement already satisfied: jinja2 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (2.11.2) Requirement already satisfied: preshed<3.1.0,>=3.0.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from spacy) (3.0.6) Requirement already satisfied: six in c:\users\p0s041d\anaconda3\lib\site-packages (from packaging>=20.0->spacy) (1.15.0) Requirement already satisfied: pyparsing>=2.0.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from packaging>=20.0->spacy) (2.4.7) Requirement already satisfied: smart-open<6.0.0,>=5.0.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from pathy>=0.3.5->spacy) (5.2.1) Requirement already satisfied: typing-extensions>=3.7.4.3 in c:\users\p0s041d\anaconda3\lib\site-packages (from pydantic!=1.8,!=1.8.1,<1.9.0,>=1.7.4->spacy) (3.7.4.3) Requirement already satisfied: certifi>=2017.4.17 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy) (2020.6.20) Requirement already satisfied: chardet<4,>=3.0.2 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy) (3.0.4) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy) (1.25.11) Requirement already satisfied: idna<3,>=2.5 in c:\users\p0s041d\anaconda3\lib\site-packages (from requests<3.0.0,>=2.13.0->spacy) (2.10) Requirement already satisfied: click<9.0.0,>=7.1.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from typer<0.5.0,>=0.3.0->spacy) (8.0.3) Requirement already satisfied: colorama in c:\users\p0s041d\anaconda3\lib\site-packages (from click<9.0.0,>=7.1.1->typer<0.5.0,>=0.3.0->spacy) (0.4.4) Requirement already satisfied: MarkupSafe>=0.23 in c:\users\p0s041d\anaconda3\lib\site-packages (from jinja2->spacy) (1.1.1) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
pip install pyLDAvis --user
Requirement already satisfied: pyLDAvis in c:\users\p0s041d\appdata\roaming\python\python38\site-packages (3.3.1) Requirement already satisfied: numpy>=1.20.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (1.21.3) Requirement already satisfied: sklearn in c:\users\p0s041d\appdata\roaming\python\python38\site-packages (from pyLDAvis) (0.0) Requirement already satisfied: jinja2 in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (2.11.2) Requirement already satisfied: scikit-learn in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (0.23.2) Requirement already satisfied: joblib in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (0.17.0) Requirement already satisfied: future in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (0.18.2) Requirement already satisfied: setuptools in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (50.3.1.post20201107) Requirement already satisfied: numexpr in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (2.7.1) Requirement already satisfied: pandas>=1.2.0 in c:\users\p0s041d\appdata\roaming\python\python38\site-packages (from pyLDAvis) (1.3.4) Requirement already satisfied: funcy in c:\users\p0s041d\appdata\roaming\python\python38\site-packages (from pyLDAvis) (1.16) Requirement already satisfied: scipy in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (1.5.2) Requirement already satisfied: gensim in c:\users\p0s041d\anaconda3\lib\site-packages (from pyLDAvis) (4.0.1) Requirement already satisfied: python-dateutil>=2.7.3 in c:\users\p0s041d\anaconda3\lib\site-packages (from pandas>=1.2.0->pyLDAvis) (2.8.1) Requirement already satisfied: pytz>=2017.3 in c:\users\p0s041d\anaconda3\lib\site-packages (from pandas>=1.2.0->pyLDAvis) (2020.1) Requirement already satisfied: six>=1.5 in c:\users\p0s041d\anaconda3\lib\site-packages (from python-dateutil>=2.7.3->pandas>=1.2.0->pyLDAvis) (1.15.0) Requirement already satisfied: smart-open>=1.8.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from gensim->pyLDAvis) (5.2.1) Requirement already satisfied: Cython==0.29.21 in c:\users\p0s041d\anaconda3\lib\site-packages (from gensim->pyLDAvis) (0.29.21) Requirement already satisfied: MarkupSafe>=0.23 in c:\users\p0s041d\anaconda3\lib\site-packages (from jinja2->pyLDAvis) (1.1.1) Requirement already satisfied: threadpoolctl>=2.0.0 in c:\users\p0s041d\anaconda3\lib\site-packages (from scikit-learn->pyLDAvis) (2.1.0) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
# Gensim
import gensim
import gensim.corpora as corpora
#Remove stemming(snowball stemming) add lemmatistaion using simple_process from gensim
from gensim.utils import simple_preprocess
from gensim.models.ldamodel import LdaModel
from gensim.models import CoherenceModel
# spacy for lemmatization
import spacy
# Plotting tools
#import pyLDAvis
#import pyLDAvis.gensim # don't skip this
warnings.filterwarnings("ignore",category=DeprecationWarning)
#to process the simple_process gensim package as input needed as string
combined_text=Datafinal.merged.values.tolist()
#Convert Combined text from each sentense to the words. use of simple_process as it tokenize() internally
#https://radimrehurek.com/gensim/utils.html#gensim.utils.simple_preprocess
def sent_to_words(sentences):
for sentence in sentences:
yield(gensim.utils.simple_preprocess(str(sentence), deacc=True)) # deacc=True removes punctuations
data_words = list(sent_to_words(combined_text))
print(data_words[1])
['outlook', 'hello', 'team', 'my', 'meetings', 'skype', 'meetings', 'etc', 'are', 'not', 'appearing', 'in', 'my', 'outlook', 'calendar', 'can', 'somebody', 'please', 'advise', 'how', 'to', 'correct', 'this', 'kind']
# Build the bigram and trigram models
#https://radimrehurek.com/gensim/models/phrases.html
bigram = gensim.models.Phrases(data_words, min_count=5, threshold=100) # higher threshold fewer phrases.
trigram = gensim.models.Phrases(bigram[data_words], threshold=100)
# Faster way to get a sentence clubbed as a trigram/bigram
bigram_mod = gensim.models.phrases.Phraser(bigram)
trigram_mod = gensim.models.phrases.Phraser(trigram)
print(bigram_mod[data_words[1]])
['outlook', 'hello', 'team', 'my', 'meetings', 'skype', 'meetings', 'etc', 'are', 'not', 'appearing', 'in', 'my', 'outlook', 'calendar', 'can', 'somebody', 'please', 'advise', 'how', 'to', 'correct', 'this', 'kind']
# See trigram example
print(trigram_mod[bigram_mod[data_words[1]]])
['outlook', 'hello', 'team', 'my', 'meetings', 'skype', 'meetings', 'etc', 'are', 'not', 'appearing', 'in', 'my', 'outlook', 'calendar', 'can', 'somebody', 'please', 'advise', 'how', 'to', 'correct', 'this', 'kind']
def make_bigrams(texts):
return [bigram_mod[doc] for doc in texts]
def make_trigrams(texts):
return [trigram_mod[bigram_mod[doc]] for doc in texts]
# Form Bigrams
data_words_bigrams = make_bigrams(data_words)
print(data_words_bigrams[1])
['outlook', 'hello', 'team', 'my', 'meetings', 'skype', 'meetings', 'etc', 'are', 'not', 'appearing', 'in', 'my', 'outlook', 'calendar', 'can', 'somebody', 'please', 'advise', 'how', 'to', 'correct', 'this', 'kind']
pip install wordcloud
Requirement already satisfied: wordcloud in c:\users\p0s041d\anaconda3\lib\site-packages (1.8.1)Note: you may need to restart the kernel to use updated packages. Requirement already satisfied: pillow in c:\users\p0s041d\anaconda3\lib\site-packages (from wordcloud) (8.0.1) Requirement already satisfied: numpy>=1.6.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from wordcloud) (1.21.3) Requirement already satisfied: matplotlib in c:\users\p0s041d\anaconda3\lib\site-packages (from wordcloud) (3.3.2) Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in c:\users\p0s041d\anaconda3\lib\site-packages (from matplotlib->wordcloud) (2.4.7)
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
Requirement already satisfied: certifi>=2020.06.20 in c:\users\p0s041d\anaconda3\lib\site-packages (from matplotlib->wordcloud) (2020.6.20) Requirement already satisfied: cycler>=0.10 in c:\users\p0s041d\anaconda3\lib\site-packages (from matplotlib->wordcloud) (0.10.0) Requirement already satisfied: python-dateutil>=2.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from matplotlib->wordcloud) (2.8.1) Requirement already satisfied: kiwisolver>=1.0.1 in c:\users\p0s041d\anaconda3\lib\site-packages (from matplotlib->wordcloud) (1.3.0) Requirement already satisfied: six in c:\users\p0s041d\anaconda3\lib\site-packages (from cycler>=0.10->matplotlib->wordcloud) (1.15.0)
from wordcloud import WordCloud
import matplotlib.pyplot as plt
wordclouds=' '.join(map(str, data_words_bigrams))
wordcloud = WordCloud(width=480, height=480, max_font_size=20, min_font_size=10).generate(wordclouds)
plt.figure(figsize=(20,10))
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.margins(x=0, y=0)
plt.show()
#check for the word count 100)
wordcloud_2 = WordCloud(width=480, height=480, max_words=100).generate(wordclouds)
plt.figure(figsize=(10,10))
plt.imshow(wordcloud_2, interpolation="bilinear")
plt.axis("off")
plt.margins(x=0, y=0)
plt.show()
#Copying to new dataframe to create wordclouds on target class
new_df = Datafinal.copy()
new_df['words'] = data_words_bigrams
new_df
| Short description | Description | Assignment group | merged | word_count | processed_text | words | |
|---|---|---|---|---|---|---|---|
| 0 | login issue | verified user details employee and manager nam... | GRP_0 | login issue verified user details employee and... | 40 | [login, issue, verified, user, detail, employe... | [login, issue, verified, user, details, employ... |
| 1 | outlook | hello team my meetings skype meetings etc ar... | GRP_0 | outlook hello team my meetings skype meeting... | 28 | [outlook, hello, team, meeting, skype, meeting... | [outlook, hello, team, my, meetings, skype, me... |
| 2 | cant log in to a vpn | hi ne can log on to a vpn best | GRP_0 | cant log in to a vpn hi ne can log on to a vpn... | 17 | [cant, log, vpn, hi, ne, log, vpn, best] | [cant, log, in, to, vpn, hi, ne, can, log, on,... |
| 3 | unable to access hr tool page | unable to access hr tool page | GRP_0 | unable to access hr tool page unable to access... | 12 | [unable, access, hr, tool, page, unable, acces... | [unable, to, access, hr, tool, page, unable, t... |
| 4 | skype error | skype error | GRP_0 | skype error skype error | 4 | [skype, error, skype, error] | [skype, error, skype, error] |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 8443 | emails not coming in from zz mail | xd xd xd good afternoon xd am not receiving th... | GRP_29 | emails not coming in from zz mail xd xd xd goo... | 28 | [email, coming, zz, mail, xd, xd, xd, good, af... | [emails, not, coming, in, from, zz, mail, xd_x... |
| 8444 | telephony software issue | telephony software issue | GRP_0 | telephony software issue telephony software issue | 6 | [telephony, software, issue, telephony, softwa... | [telephony_software, issue, telephony_software... |
| 8445 | vip windows password reset for tifpdchb pedxruyf | vip windows password reset for tifpdchb pedxruyf | GRP_0 | vip windows password reset for tifpdchb pedxru... | 14 | [vip, window, password, reset, tifpdchb, pedxr... | [vip, windows, password, reset, for, tifpdchb,... |
| 8446 | machine o est funcionando | i am unable to access the machine utilities to... | GRP_62 | machine o est funcionando i am unable to acces... | 22 | [machine, est, funcionando, unable, access, ma... | [machine, est, funcionando, am, unable, to, ac... |
| 8447 | Different programs cannot be opened on several... | Different program types cannot be opened on mo... | GRP_49 | Different programs cannot be opened on several... | 21 | [different, program, cannot, opened, several, ... | [different, programs, cannot, be, opened, on, ... |
8448 rows × 7 columns
#Sorting based on frequency of target class Assignment group
value = new_df['Assignment group'].value_counts().sort_values(ascending=False).index
value
Index(['GRP_0', 'GRP_8', 'GRP_24', 'GRP_12', 'GRP_9', 'GRP_2', 'GRP_19',
'GRP_3', 'GRP_6', 'GRP_13', 'GRP_10', 'GRP_5', 'GRP_14', 'GRP_25',
'GRP_33', 'GRP_4', 'GRP_29', 'GRP_18', 'GRP_16', 'GRP_17', 'GRP_7',
'GRP_34', 'GRP_31', 'GRP_26', 'GRP_40', 'GRP_28', 'GRP_41', 'GRP_15',
'GRP_42', 'GRP_20', 'GRP_45', 'GRP_22', 'GRP_1', 'GRP_11', 'GRP_21',
'GRP_47', 'GRP_23', 'GRP_62', 'GRP_30', 'GRP_60', 'GRP_39', 'GRP_27',
'GRP_37', 'GRP_36', 'GRP_44', 'GRP_50', 'GRP_53', 'GRP_65', 'GRP_52',
'GRP_55', 'GRP_51', 'GRP_49', 'GRP_48', 'GRP_46', 'GRP_59', 'GRP_43',
'GRP_32', 'GRP_66', 'GRP_63', 'GRP_68', 'GRP_38', 'GRP_58', 'GRP_56',
'GRP_72', 'GRP_71', 'GRP_69', 'GRP_54', 'GRP_57', 'GRP_61', 'GRP_64',
'GRP_67', 'GRP_35', 'GRP_70', 'GRP_73'],
dtype='object')
# Creating a function for wordcloud
def wordcloud_grp(f, x):
wordclouds_0=' '.join(map(str, f))
wc = WordCloud(width=480, height=480, max_font_size=20, min_font_size=10, max_words=50).generate(wordclouds_0)
plt.figure(figsize=(20,10))
plt.imshow(wc, interpolation="bilinear")
plt.axis("off")
plt.title("Most common 50 words of {}".format(x))
plt.margins(x=0, y=0)
plt.show()
#for loop to pass the top 50 Assignment groups
for i in range(50):
Grp = new_df[new_df ['Assignment group'] == value[i]]
Grp = Grp['words']
wordcloud_grp(Grp,value[i])
!pip install glove-python-binary
Requirement already satisfied: glove-python-binary in c:\users\p0s041d\anaconda3\lib\site-packages (0.2.0) Requirement already satisfied: scipy in c:\users\p0s041d\anaconda3\lib\site-packages (from glove-python-binary) (1.5.2) Requirement already satisfied: numpy in c:\users\p0s041d\anaconda3\lib\site-packages (from glove-python-binary) (1.21.3)
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'c:\users\p0s041d\anaconda3\python.exe -m pip install --upgrade pip' command.
len(corpus)
8448
Datafinal['list_processed_text']=''
for k in range(len(Datafinal['processed_text'])):
new_list=[]
print("k:",k)
print("len:",type(Datafinal['processed_text'][k]))
print("Data:",Datafinal['processed_text'][k])
for i in range(len(Datafinal['processed_text'][k])):
new_list.append([Datafinal['processed_text'][k][i]])
#Datafinal.iloc[[k],['list_processed_text']]=new_list
print("processed_text:",Datafinal.iloc[k]['processed_text'])
Datafinal.at[k, 'list_processed_text'] = new_list
print("list_processed_text:",Datafinal.iloc[k]['list_processed_text'])
k: 0 len: <class 'list'> Data: ['login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1 len: <class 'list'> Data: ['outlook', 'hello', 'team', 'meeting', 'skype', 'meeting', 'etc', 'appearing', 'outlook', 'calendar', 'somebody', 'please', 'advise', 'correct', 'kind'] processed_text: ['outlook', 'hello', 'team', 'meeting', 'skype', 'meeting', 'etc', 'appearing', 'outlook', 'calendar', 'somebody', 'please', 'advise', 'correct', 'kind'] list_processed_text: [['outlook'], ['hello'], ['team'], ['meeting'], ['skype'], ['meeting'], ['etc'], ['appearing'], ['outlook'], ['calendar'], ['somebody'], ['please'], ['advise'], ['correct'], ['kind']] k: 2 len: <class 'list'> Data: ['cant', 'log', 'vpn', 'hi', 'ne', 'log', 'vpn', 'best'] processed_text: ['cant', 'log', 'vpn', 'hi', 'ne', 'log', 'vpn', 'best'] list_processed_text: [['cant'], ['log'], ['vpn'], ['hi'], ['ne'], ['log'], ['vpn'], ['best']] k: 3 len: <class 'list'> Data: ['unable', 'access', 'hr', 'tool', 'page', 'unable', 'access', 'hr', 'tool', 'page'] processed_text: ['unable', 'access', 'hr', 'tool', 'page', 'unable', 'access', 'hr', 'tool', 'page'] list_processed_text: [['unable'], ['access'], ['hr'], ['tool'], ['page'], ['unable'], ['access'], ['hr'], ['tool'], ['page']] k: 4 len: <class 'list'> Data: ['skype', 'error', 'skype', 'error'] processed_text: ['skype', 'error', 'skype', 'error'] list_processed_text: [['skype'], ['error'], ['skype'], ['error']] k: 5 len: <class 'list'> Data: ['unable', 'log', 'engineering', 'tool', 'skype', 'unable', 'log', 'engineering', 'tool', 'skype'] processed_text: ['unable', 'log', 'engineering', 'tool', 'skype', 'unable', 'log', 'engineering', 'tool', 'skype'] list_processed_text: [['unable'], ['log'], ['engineering'], ['tool'], ['skype'], ['unable'], ['log'], ['engineering'], ['tool'], ['skype']] k: 6 len: <class 'list'> Data: ['event', 'critical', 'hostname', 'company', 'com', 'value', 'mountpoint', 'threshold', 'oracle', 'sid', 'erpdata', 'event', 'critical', 'hostname', 'company', 'com', 'value', 'mountpoint', 'threshold', 'oracle', 'sid', 'erpdata', 'srpsad', 'srpsad', 'data', 'perpsrpsad'] processed_text: ['event', 'critical', 'hostname', 'company', 'com', 'value', 'mountpoint', 'threshold', 'oracle', 'sid', 'erpdata', 'event', 'critical', 'hostname', 'company', 'com', 'value', 'mountpoint', 'threshold', 'oracle', 'sid', 'erpdata', 'srpsad', 'srpsad', 'data', 'perpsrpsad'] list_processed_text: [['event'], ['critical'], ['hostname'], ['company'], ['com'], ['value'], ['mountpoint'], ['threshold'], ['oracle'], ['sid'], ['erpdata'], ['event'], ['critical'], ['hostname'], ['company'], ['com'], ['value'], ['mountpoint'], ['threshold'], ['oracle'], ['sid'], ['erpdata'], ['srpsad'], ['srpsad'], ['data'], ['perpsrpsad']] k: 7 len: <class 'list'> Data: ['ticket', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name', 'ticket', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name'] processed_text: ['ticket', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name', 'ticket', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name'] list_processed_text: [['ticket'], ['employment'], ['status'], ['new'], ['non'], ['employee'], ['enter'], ['user'], ['name'], ['ticket'], ['employment'], ['status'], ['new'], ['non'], ['employee'], ['enter'], ['user'], ['name']] k: 8 len: <class 'list'> Data: ['unable', 'disable', 'add', 'in', 'outlook', 'unable', 'disable', 'add', 'in', 'outlook'] processed_text: ['unable', 'disable', 'add', 'in', 'outlook', 'unable', 'disable', 'add', 'in', 'outlook'] list_processed_text: [['unable'], ['disable'], ['add'], ['in'], ['outlook'], ['unable'], ['disable'], ['add'], ['in'], ['outlook']] k: 9 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 10 len: <class 'list'> Data: ['engineering', 'tool', 'say', 'connected', 'unable', 'submit', 'report', 'engineering', 'tool', 'say', 'connected', 'unable', 'submit', 'report'] processed_text: ['engineering', 'tool', 'say', 'connected', 'unable', 'submit', 'report', 'engineering', 'tool', 'say', 'connected', 'unable', 'submit', 'report'] list_processed_text: [['engineering'], ['tool'], ['say'], ['connected'], ['unable'], ['submit'], ['report'], ['engineering'], ['tool'], ['say'], ['connected'], ['unable'], ['submit'], ['report']] k: 11 len: <class 'list'> Data: ['hr', 'tool', 'site', 'loading', 'page', 'correctly', 'hr', 'tool', 'site', 'loading', 'page', 'correctly'] processed_text: ['hr', 'tool', 'site', 'loading', 'page', 'correctly', 'hr', 'tool', 'site', 'loading', 'page', 'correctly'] list_processed_text: [['hr'], ['tool'], ['site'], ['loading'], ['page'], ['correctly'], ['hr'], ['tool'], ['site'], ['loading'], ['page'], ['correctly']] k: 12 len: <class 'list'> Data: ['unable', 'login', 'hr', 'tool', 'sgxqsuojr', 'xwbesorf', 'card', 'unable', 'login', 'hr', 'tool', 'sgxqsuojr', 'xwbesorf', 'card'] processed_text: ['unable', 'login', 'hr', 'tool', 'sgxqsuojr', 'xwbesorf', 'card', 'unable', 'login', 'hr', 'tool', 'sgxqsuojr', 'xwbesorf', 'card'] list_processed_text: [['unable'], ['login'], ['hr'], ['tool'], ['sgxqsuojr'], ['xwbesorf'], ['card'], ['unable'], ['login'], ['hr'], ['tool'], ['sgxqsuojr'], ['xwbesorf'], ['card']] k: 13 len: <class 'list'> Data: ['user', 'want', 'reset', 'password', 'user', 'want', 'reset', 'password'] processed_text: ['user', 'want', 'reset', 'password', 'user', 'want', 'reset', 'password'] list_processed_text: [['user'], ['want'], ['reset'], ['password'], ['user'], ['want'], ['reset'], ['password']] k: 14 len: <class 'list'> Data: ['unable', 'open', 'payslip', 'unable', 'open', 'payslip'] processed_text: ['unable', 'open', 'payslip', 'unable', 'open', 'payslip'] list_processed_text: [['unable'], ['open'], ['payslip'], ['unable'], ['open'], ['payslip']] k: 15 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 16 len: <class 'list'> Data: ['unable', 'login', 'company', 'vpn', 'hi', 'unable', 'login', 'company', 'vpn', 'website', 'trying', 'open', 'new', 'session', 'using', 'link', 'able', 'get', 'pls', 'help', 'urgently', 'working', 'home', 'tomorrow', 'due', 'month', 'end', 'closing'] processed_text: ['unable', 'login', 'company', 'vpn', 'hi', 'unable', 'login', 'company', 'vpn', 'website', 'trying', 'open', 'new', 'session', 'using', 'link', 'able', 'get', 'pls', 'help', 'urgently', 'working', 'home', 'tomorrow', 'due', 'month', 'end', 'closing'] list_processed_text: [['unable'], ['login'], ['company'], ['vpn'], ['hi'], ['unable'], ['login'], ['company'], ['vpn'], ['website'], ['trying'], ['open'], ['new'], ['session'], ['using'], ['link'], ['able'], ['get'], ['pls'], ['help'], ['urgently'], ['working'], ['home'], ['tomorrow'], ['due'], ['month'], ['end'], ['closing']] k: 17 len: <class 'list'> Data: ['undocking', 'pc', 'screen', 'come', 'back', 'undocking', 'pc', 'screen', 'come', 'back'] processed_text: ['undocking', 'pc', 'screen', 'come', 'back', 'undocking', 'pc', 'screen', 'come', 'back'] list_processed_text: [['undocking'], ['pc'], ['screen'], ['come'], ['back'], ['undocking'], ['pc'], ['screen'], ['come'], ['back']] k: 18 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 19 len: <class 'list'> Data: ['unable', 'sign', 'vpn', 'unable', 'sign', 'vpn'] processed_text: ['unable', 'sign', 'vpn', 'unable', 'sign', 'vpn'] list_processed_text: [['unable'], ['sign'], ['vpn'], ['unable'], ['sign'], ['vpn']] k: 20 len: <class 'list'> Data: ['unable', 'check', 'payslip', 'unable', 'check', 'payslip'] processed_text: ['unable', 'check', 'payslip', 'unable', 'check', 'payslip'] list_processed_text: [['unable'], ['check'], ['payslip'], ['unable'], ['check'], ['payslip']] k: 21 len: <class 'list'> Data: ['vpn', 'issue', 'hello', 'helpdesk', 'able', 'connect', 'vpn', 'home', 'office', 'couple', 'hour', 'ago', 'connected', 'working', 'anymore', 'getting', 'message', 'session', 'expired', 'click', 'link', 'nothing', 'happens', 'need', 'help', 'dynamic', 'crm', 'click', 'chat', 'live', 'agent', 'regarding', 'dynamic', 'crm', 'question', 'click', 'best'] processed_text: ['vpn', 'issue', 'hello', 'helpdesk', 'able', 'connect', 'vpn', 'home', 'office', 'couple', 'hour', 'ago', 'connected', 'working', 'anymore', 'getting', 'message', 'session', 'expired', 'click', 'link', 'nothing', 'happens', 'need', 'help', 'dynamic', 'crm', 'click', 'chat', 'live', 'agent', 'regarding', 'dynamic', 'crm', 'question', 'click', 'best'] list_processed_text: [['vpn'], ['issue'], ['hello'], ['helpdesk'], ['able'], ['connect'], ['vpn'], ['home'], ['office'], ['couple'], ['hour'], ['ago'], ['connected'], ['working'], ['anymore'], ['getting'], ['message'], ['session'], ['expired'], ['click'], ['link'], ['nothing'], ['happens'], ['need'], ['help'], ['dynamic'], ['crm'], ['click'], ['chat'], ['live'], ['agent'], ['regarding'], ['dynamic'], ['crm'], ['question'], ['click'], ['best']] k: 22 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 23 len: <class 'list'> Data: ['user', 'called', 'vendor', 'phone', 'number', 'user', 'called', 'vendor', 'phone', 'number'] processed_text: ['user', 'called', 'vendor', 'phone', 'number', 'user', 'called', 'vendor', 'phone', 'number'] list_processed_text: [['user'], ['called'], ['vendor'], ['phone'], ['number'], ['user'], ['called'], ['vendor'], ['phone'], ['number']] k: 24 len: <class 'list'> Data: ['vpn', 'working', 'hello', 'able', 'connect', 'company', 'network', 'vpn', 'pls', 'check', 'sir', 'able', 'upload', 'result', 'company', 'network'] processed_text: ['vpn', 'working', 'hello', 'able', 'connect', 'company', 'network', 'vpn', 'pls', 'check', 'sir', 'able', 'upload', 'result', 'company', 'network'] list_processed_text: [['vpn'], ['working'], ['hello'], ['able'], ['connect'], ['company'], ['network'], ['vpn'], ['pls'], ['check'], ['sir'], ['able'], ['upload'], ['result'], ['company'], ['network']] k: 25 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 26 len: <class 'list'> Data: ['unable', 'login', 'hr', 'tool', 'check', 'payslip', 'unable', 'login', 'hr', 'tool', 'check', 'payslip'] processed_text: ['unable', 'login', 'hr', 'tool', 'check', 'payslip', 'unable', 'login', 'hr', 'tool', 'check', 'payslip'] list_processed_text: [['unable'], ['login'], ['hr'], ['tool'], ['check'], ['payslip'], ['unable'], ['login'], ['hr'], ['tool'], ['check'], ['payslip']] k: 27 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 28 len: <class 'list'> Data: ['unable', 'login', 'hr', 'tool', 'unable', 'login', 'hr', 'tool'] processed_text: ['unable', 'login', 'hr', 'tool', 'unable', 'login', 'hr', 'tool'] list_processed_text: [['unable'], ['login'], ['hr'], ['tool'], ['unable'], ['login'], ['hr'], ['tool']] k: 29 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 30 len: <class 'list'> Data: ['password', 'reset', 'collaboration', 'platform', 'password', 'reset', 'collaboration', 'platform'] processed_text: ['password', 'reset', 'collaboration', 'platform', 'password', 'reset', 'collaboration', 'platform'] list_processed_text: [['password'], ['reset'], ['collaboration'], ['platform'], ['password'], ['reset'], ['collaboration'], ['platform']] k: 31 len: <class 'list'> Data: ['reset', 'user', 'hi', 'please', 'reset', 'user', 'password', 'client', 'id', 'username', 'xyz'] processed_text: ['reset', 'user', 'hi', 'please', 'reset', 'user', 'password', 'client', 'id', 'username', 'xyz'] list_processed_text: [['reset'], ['user'], ['hi'], ['please'], ['reset'], ['user'], ['password'], ['client'], ['id'], ['username'], ['xyz']] k: 32 len: <class 'list'> Data: ['duplication', 'network', 'address', 'gentles', 'two', 'device', 'trying', 'share', 'ip', 'address', 'trying', 'share', 'one', 'printer', 'hostname', 'prtjc', 'new', 'display', 'erp', 'display', 'using', 'dhcp', 'get', 'address', 'assigned', 'printer', 'hard', 'coded', 'guess', 'address', 'get', 'set', 'static', 'address', 'dhcp', 'need', 'corrected', 'display', 'pick', 'another', 'address'] processed_text: ['duplication', 'network', 'address', 'gentles', 'two', 'device', 'trying', 'share', 'ip', 'address', 'trying', 'share', 'one', 'printer', 'hostname', 'prtjc', 'new', 'display', 'erp', 'display', 'using', 'dhcp', 'get', 'address', 'assigned', 'printer', 'hard', 'coded', 'guess', 'address', 'get', 'set', 'static', 'address', 'dhcp', 'need', 'corrected', 'display', 'pick', 'another', 'address'] list_processed_text: [['duplication'], ['network'], ['address'], ['gentles'], ['two'], ['device'], ['trying'], ['share'], ['ip'], ['address'], ['trying'], ['share'], ['one'], ['printer'], ['hostname'], ['prtjc'], ['new'], ['display'], ['erp'], ['display'], ['using'], ['dhcp'], ['get'], ['address'], ['assigned'], ['printer'], ['hard'], ['coded'], ['guess'], ['address'], ['get'], ['set'], ['static'], ['address'], ['dhcp'], ['need'], ['corrected'], ['display'], ['pick'], ['another'], ['address']] k: 33 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 34 len: <class 'list'> Data: ['unable', 'install', 'flash', 'player', 'unable', 'install', 'flash', 'player'] processed_text: ['unable', 'install', 'flash', 'player', 'unable', 'install', 'flash', 'player'] list_processed_text: [['unable'], ['install'], ['flash'], ['player'], ['unable'], ['install'], ['flash'], ['player']] k: 35 len: <class 'list'> Data: ['ticket', 'employment', 'status', 'new', 'non', 'employee', 'ticket', 'employment', 'status', 'new', 'non', 'employee'] processed_text: ['ticket', 'employment', 'status', 'new', 'non', 'employee', 'ticket', 'employment', 'status', 'new', 'non', 'employee'] list_processed_text: [['ticket'], ['employment'], ['status'], ['new'], ['non'], ['employee'], ['ticket'], ['employment'], ['status'], ['new'], ['non'], ['employee']] k: 36 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 37 len: <class 'list'> Data: ['unable', 'resolve', 'ticket', 'assigned', 'self', 'status', 'button', 'dierppearing', 'second'] processed_text: ['unable', 'resolve', 'ticket', 'assigned', 'self', 'status', 'button', 'dierppearing', 'second'] list_processed_text: [['unable'], ['resolve'], ['ticket'], ['assigned'], ['self'], ['status'], ['button'], ['dierppearing'], ['second']] k: 38 len: <class 'list'> Data: ['installing', 'engineering', 'tool', 'need', 'install', 'engineering', 'tool', 'pc'] processed_text: ['installing', 'engineering', 'tool', 'need', 'install', 'engineering', 'tool', 'pc'] list_processed_text: [['installing'], ['engineering'], ['tool'], ['need'], ['install'], ['engineering'], ['tool'], ['pc']] k: 39 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 40 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 41 len: <class 'list'> Data: ['tablet', 'sound', 'working', 'tablet', 'sound', 'working'] processed_text: ['tablet', 'sound', 'working', 'tablet', 'sound', 'working'] list_processed_text: [['tablet'], ['sound'], ['working'], ['tablet'], ['sound'], ['working']] k: 42 len: <class 'list'> Data: ['unable', 'login', 'system', 'unable', 'login', 'system'] processed_text: ['unable', 'login', 'system', 'unable', 'login', 'system'] list_processed_text: [['unable'], ['login'], ['system'], ['unable'], ['login'], ['system']] k: 43 len: <class 'list'> Data: ['please', 'reroute', 'job', 'printer', 'printer', 'issue', 'need', 'resolved', 'today', 'hi', 'printer', 'printer', 'working', 'need', 'part', 'replaced', 'reroute', 'job', 'queue', 'printer', 'printer', 'wihuyjdo', 'qpogfwkb', 'indicated', 'prqos', 'need', 'new', 'part', 'deliver', 'day', 'inwarehouse', 'tool', 'need', 'print', 'printer', 'need', 'taken', 'care', 'today', 'since', 'inwarehouse', 'tool', 'printed', 'picked', 'outside', 'vendor', 'pm', 'usa', 'daily', 'basis', 'please', 'contact', 'dkmcfreg', 'anwmfvlgenkataramdntyana', 'question', 'job', 'queue', 'today'] processed_text: ['please', 'reroute', 'job', 'printer', 'printer', 'issue', 'need', 'resolved', 'today', 'hi', 'printer', 'printer', 'working', 'need', 'part', 'replaced', 'reroute', 'job', 'queue', 'printer', 'printer', 'wihuyjdo', 'qpogfwkb', 'indicated', 'prqos', 'need', 'new', 'part', 'deliver', 'day', 'inwarehouse', 'tool', 'need', 'print', 'printer', 'need', 'taken', 'care', 'today', 'since', 'inwarehouse', 'tool', 'printed', 'picked', 'outside', 'vendor', 'pm', 'usa', 'daily', 'basis', 'please', 'contact', 'dkmcfreg', 'anwmfvlgenkataramdntyana', 'question', 'job', 'queue', 'today'] list_processed_text: [['please'], ['reroute'], ['job'], ['printer'], ['printer'], ['issue'], ['need'], ['resolved'], ['today'], ['hi'], ['printer'], ['printer'], ['working'], ['need'], ['part'], ['replaced'], ['reroute'], ['job'], ['queue'], ['printer'], ['printer'], ['wihuyjdo'], ['qpogfwkb'], ['indicated'], ['prqos'], ['need'], ['new'], ['part'], ['deliver'], ['day'], ['inwarehouse'], ['tool'], ['need'], ['print'], ['printer'], ['need'], ['taken'], ['care'], ['today'], ['since'], ['inwarehouse'], ['tool'], ['printed'], ['picked'], ['outside'], ['vendor'], ['pm'], ['usa'], ['daily'], ['basis'], ['please'], ['contact'], ['dkmcfreg'], ['anwmfvlgenkataramdntyana'], ['question'], ['job'], ['queue'], ['today']] k: 44 len: <class 'list'> Data: ['unable', 'login', 'hr', 'tool', 'etime', 'unable', 'login', 'hr', 'tool', 'etime'] processed_text: ['unable', 'login', 'hr', 'tool', 'etime', 'unable', 'login', 'hr', 'tool', 'etime'] list_processed_text: [['unable'], ['login'], ['hr'], ['tool'], ['etime'], ['unable'], ['login'], ['hr'], ['tool'], ['etime']] k: 45 len: <class 'list'> Data: ['log', 'hr', 'tool', 'etime', 'single', 'sign', 'portal', 'log', 'hr', 'tool', 'etime', 'single', 'sign', 'portal'] processed_text: ['log', 'hr', 'tool', 'etime', 'single', 'sign', 'portal', 'log', 'hr', 'tool', 'etime', 'single', 'sign', 'portal'] list_processed_text: [['log'], ['hr'], ['tool'], ['etime'], ['single'], ['sign'], ['portal'], ['log'], ['hr'], ['tool'], ['etime'], ['single'], ['sign'], ['portal']] k: 46 len: <class 'list'> Data: ['password', 'changed', 'password', 'management', 'tool', 'didnt', 'update', 'erp', 'account', 'password', 'changed', 'password', 'management', 'tool', 'didnt', 'update', 'erp', 'account'] processed_text: ['password', 'changed', 'password', 'management', 'tool', 'didnt', 'update', 'erp', 'account', 'password', 'changed', 'password', 'management', 'tool', 'didnt', 'update', 'erp', 'account'] list_processed_text: [['password'], ['changed'], ['password'], ['management'], ['tool'], ['didnt'], ['update'], ['erp'], ['account'], ['password'], ['changed'], ['password'], ['management'], ['tool'], ['didnt'], ['update'], ['erp'], ['account']] k: 47 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 48 len: <class 'list'> Data: ['window', 'password', 'change', 'via', 'password', 'management', 'tool', 'window', 'password', 'change', 'via', 'password', 'management', 'tool'] processed_text: ['window', 'password', 'change', 'via', 'password', 'management', 'tool', 'window', 'password', 'change', 'via', 'password', 'management', 'tool'] list_processed_text: [['window'], ['password'], ['change'], ['via'], ['password'], ['management'], ['tool'], ['window'], ['password'], ['change'], ['via'], ['password'], ['management'], ['tool']] k: 49 len: <class 'list'> Data: ['status', 'change', 'telephony', 'software', 'closing', 'call', 'agent', 'keep', 'acd', 'call', 'status'] processed_text: ['status', 'change', 'telephony', 'software', 'closing', 'call', 'agent', 'keep', 'acd', 'call', 'status'] list_processed_text: [['status'], ['change'], ['telephony'], ['software'], ['closing'], ['call'], ['agent'], ['keep'], ['acd'], ['call'], ['status']] k: 50 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['dly'], ['merktc'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['dly'], ['merktc'], ['failed'], ['job'], ['scheduler']] k: 51 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 52 len: <class 'list'> Data: ['vip', 'need', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'need', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset'] processed_text: ['vip', 'need', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'need', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset'] list_processed_text: [['vip'], ['need'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['need'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset']] k: 53 len: <class 'list'> Data: ['reset', 'scm', 'software', 'password', 'hello', 'please', 'reset', 'scm', 'software', 'password', 'cdbaoqts', 'wqbsodni', 'global', 'product', 'manager', 'markhtyeting', 'initiative'] processed_text: ['reset', 'scm', 'software', 'password', 'hello', 'please', 'reset', 'scm', 'software', 'password', 'cdbaoqts', 'wqbsodni', 'global', 'product', 'manager', 'markhtyeting', 'initiative'] list_processed_text: [['reset'], ['scm'], ['software'], ['password'], ['hello'], ['please'], ['reset'], ['scm'], ['software'], ['password'], ['cdbaoqts'], ['wqbsodni'], ['global'], ['product'], ['manager'], ['markhtyeting'], ['initiative']] k: 54 len: <class 'list'> Data: ['account', 'locked', 'office', 'account', 'kept', 'locking', 'possible', 'reason', 'companysecure', 'mobile', 'device', 'email', 'setup', 'incorrect', 'password', 'stored', 'window', 'network', 'password', 'match'] processed_text: ['account', 'locked', 'office', 'account', 'kept', 'locking', 'possible', 'reason', 'companysecure', 'mobile', 'device', 'email', 'setup', 'incorrect', 'password', 'stored', 'window', 'network', 'password', 'match'] list_processed_text: [['account'], ['locked'], ['office'], ['account'], ['kept'], ['locking'], ['possible'], ['reason'], ['companysecure'], ['mobile'], ['device'], ['email'], ['setup'], ['incorrect'], ['password'], ['stored'], ['window'], ['network'], ['password'], ['match']] k: 55 len: <class 'list'> Data: ['skype', 'meeting', 'good', 'morning', 'reset', 'password', 'lost', 'option', 'setting', 'skype', 'meeting', 'please', 'help', 'recall', 'able', 'bring', 'back', 'last', 'time'] processed_text: ['skype', 'meeting', 'good', 'morning', 'reset', 'password', 'lost', 'option', 'setting', 'skype', 'meeting', 'please', 'help', 'recall', 'able', 'bring', 'back', 'last', 'time'] list_processed_text: [['skype'], ['meeting'], ['good'], ['morning'], ['reset'], ['password'], ['lost'], ['option'], ['setting'], ['skype'], ['meeting'], ['please'], ['help'], ['recall'], ['able'], ['bring'], ['back'], ['last'], ['time']] k: 56 len: <class 'list'> Data: ['enquiry', 'impact', 'reward', 'enquiry', 'impact', 'reward', 'get', 'password', 'reset'] processed_text: ['enquiry', 'impact', 'reward', 'enquiry', 'impact', 'reward', 'get', 'password', 'reset'] list_processed_text: [['enquiry'], ['impact'], ['reward'], ['enquiry'], ['impact'], ['reward'], ['get'], ['password'], ['reset']] k: 57 len: <class 'list'> Data: ['need', 'dn', 'material', 'plant', 'plant', 'pc', 'thanks', 'need', 'dn', 'material', 'plant', 'plant', 'pc'] processed_text: ['need', 'dn', 'material', 'plant', 'plant', 'pc', 'thanks', 'need', 'dn', 'material', 'plant', 'plant', 'pc'] list_processed_text: [['need'], ['dn'], ['material'], ['plant'], ['plant'], ['pc'], ['thanks'], ['need'], ['dn'], ['material'], ['plant'], ['plant'], ['pc']] k: 58 len: <class 'list'> Data: ['unlock', 'logon', 'password', 'hello', 'please', 'help', 'unlock', 'company', 'net', 'log', 'password', 'urgent'] processed_text: ['unlock', 'logon', 'password', 'hello', 'please', 'help', 'unlock', 'company', 'net', 'log', 'password', 'urgent'] list_processed_text: [['unlock'], ['logon'], ['password'], ['hello'], ['please'], ['help'], ['unlock'], ['company'], ['net'], ['log'], ['password'], ['urgent']] k: 59 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['dly'], ['merktc'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['dly'], ['merktc'], ['failed'], ['job'], ['scheduler']] k: 60 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 61 len: <class 'list'> Data: ['password', 'changed', 'required', 'user', 'abc', 'password', 'changed', 'required', 'user', 'abc'] processed_text: ['password', 'changed', 'required', 'user', 'abc', 'password', 'changed', 'required', 'user', 'abc'] list_processed_text: [['password'], ['changed'], ['required'], ['user'], ['abc'], ['password'], ['changed'], ['required'], ['user'], ['abc']] k: 62 len: <class 'list'> Data: ['issue', 'outlook', 'best'] processed_text: ['issue', 'outlook', 'best'] list_processed_text: [['issue'], ['outlook'], ['best']] k: 63 len: <class 'list'> Data: ['urgent', 'create', 'dlv', 'please', 'help', 'try', 'create', 'dlv', 'mm', 'sto', 'sto', 'sto', 'plant', 'plant'] processed_text: ['urgent', 'create', 'dlv', 'please', 'help', 'try', 'create', 'dlv', 'mm', 'sto', 'sto', 'sto', 'plant', 'plant'] list_processed_text: [['urgent'], ['create'], ['dlv'], ['please'], ['help'], ['try'], ['create'], ['dlv'], ['mm'], ['sto'], ['sto'], ['sto'], ['plant'], ['plant']] k: 64 len: <class 'list'> Data: ['apac', 'company', 'two', 'switch', 'since', 'et', 'apac', 'company', 'two', 'switch', 'since', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw'] processed_text: ['apac', 'company', 'two', 'switch', 'since', 'et', 'apac', 'company', 'two', 'switch', 'since', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw'] list_processed_text: [['apac'], ['company'], ['two'], ['switch'], ['since'], ['et'], ['apac'], ['company'], ['two'], ['switch'], ['since'], ['et'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['access'], ['sw'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['access'], ['sw']] k: 65 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 66 len: <class 'list'> Data: ['delivery', 'note', 'post', 'good', 'issue', 'plant', 'plant', 'plant', 'issue', 'display', 'ekpo', 'sobkz', 'ekpo', 'umsok', 'ekpo', 'kzbws', 'ekpo', 'kzvbr', 'note', 'supported', 'check', 'entry'] processed_text: ['delivery', 'note', 'post', 'good', 'issue', 'plant', 'plant', 'plant', 'issue', 'display', 'ekpo', 'sobkz', 'ekpo', 'umsok', 'ekpo', 'kzbws', 'ekpo', 'kzvbr', 'note', 'supported', 'check', 'entry'] list_processed_text: [['delivery'], ['note'], ['post'], ['good'], ['issue'], ['plant'], ['plant'], ['plant'], ['issue'], ['display'], ['ekpo'], ['sobkz'], ['ekpo'], ['umsok'], ['ekpo'], ['kzbws'], ['ekpo'], ['kzvbr'], ['note'], ['supported'], ['check'], ['entry']] k: 67 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 68 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 69 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 70 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 71 len: <class 'list'> Data: ['user', 'locked', 'user', 'xyz', 'team', 'please', 'kindly', 'release', 'locked', 'computer', 'user', 'xyz', 'user', 'name', 'fbmugzrl', 'ahyiuqev'] processed_text: ['user', 'locked', 'user', 'xyz', 'team', 'please', 'kindly', 'release', 'locked', 'computer', 'user', 'xyz', 'user', 'name', 'fbmugzrl', 'ahyiuqev'] list_processed_text: [['user'], ['locked'], ['user'], ['xyz'], ['team'], ['please'], ['kindly'], ['release'], ['locked'], ['computer'], ['user'], ['xyz'], ['user'], ['name'], ['fbmugzrl'], ['ahyiuqev']] k: 72 len: <class 'list'> Data: ['dell', 'laptop', 'speaker', 'working', 'requires', 'urgent', 'help', 'laptop', 'speaker', 'working', 'requires', 'urgent', 'help'] processed_text: ['dell', 'laptop', 'speaker', 'working', 'requires', 'urgent', 'help', 'laptop', 'speaker', 'working', 'requires', 'urgent', 'help'] list_processed_text: [['dell'], ['laptop'], ['speaker'], ['working'], ['requires'], ['urgent'], ['help'], ['laptop'], ['speaker'], ['working'], ['requires'], ['urgent'], ['help']] k: 73 len: <class 'list'> Data: ['user', 'need', 'help', 'connect', 'wireless', 'connection', 'home', 'user', 'need', 'help', 'connect', 'wireless', 'connection', 'home', 'user', 'connect', 'lan', 'home', 'connected', 'user', 'system', 'using', 'teamviewer', 'checked', 'network', 'setting', 'help', 'user', 'login', 'home', 'wireless', 'disconnected', 'home', 'lan', 'user', 'confirmed', 'able', 'login', 'home', 'wireless', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'connect', 'wireless', 'connection', 'home', 'user', 'need', 'help', 'connect', 'wireless', 'connection', 'home', 'user', 'connect', 'lan', 'home', 'connected', 'user', 'system', 'using', 'teamviewer', 'checked', 'network', 'setting', 'help', 'user', 'login', 'home', 'wireless', 'disconnected', 'home', 'lan', 'user', 'confirmed', 'able', 'login', 'home', 'wireless', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['connect'], ['wireless'], ['connection'], ['home'], ['user'], ['need'], ['help'], ['connect'], ['wireless'], ['connection'], ['home'], ['user'], ['connect'], ['lan'], ['home'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['checked'], ['network'], ['setting'], ['help'], ['user'], ['login'], ['home'], ['wireless'], ['disconnected'], ['home'], ['lan'], ['user'], ['confirmed'], ['able'], ['login'], ['home'], ['wireless'], ['issue'], ['resolved']] k: 74 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 75 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 76 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 77 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 78 len: <class 'list'> Data: ['power', 'outage', 'uk', 'al', 'ave', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yno', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'uk', 'al', 'ave', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yno', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['uk'], ['al'], ['ave'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yno'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 79 len: <class 'list'> Data: ['power', 'outage', 'germany', 'mx', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'germany', 'mx', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['germany'], ['mx'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 80 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 81 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 82 len: <class 'list'> Data: ['user', 'yhmwxsqj', 'ugnthxky', 'issue', 'logging', 'outlook', 'user', 'yhmwxsqj', 'ugnthxky', 'issue', 'logging', 'outlook', 'rgtry', 'available', 'tomorrow', 'around', 'work', 'company', 'campus', 'request', 'reach', 'fix', 'issue'] processed_text: ['user', 'yhmwxsqj', 'ugnthxky', 'issue', 'logging', 'outlook', 'user', 'yhmwxsqj', 'ugnthxky', 'issue', 'logging', 'outlook', 'rgtry', 'available', 'tomorrow', 'around', 'work', 'company', 'campus', 'request', 'reach', 'fix', 'issue'] list_processed_text: [['user'], ['yhmwxsqj'], ['ugnthxky'], ['issue'], ['logging'], ['outlook'], ['user'], ['yhmwxsqj'], ['ugnthxky'], ['issue'], ['logging'], ['outlook'], ['rgtry'], ['available'], ['tomorrow'], ['around'], ['work'], ['company'], ['campus'], ['request'], ['reach'], ['fix'], ['issue']] k: 83 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 84 len: <class 'list'> Data: ['engineering', 'tool', 'drawing', 'original', 'pdf', 'format', 'shown', 'hello', 'service', 'need', 'monitor', 'manufacturing', 'drawing', 'approve', 'manufacturing', 'engineering', 'tool', 'stopped', 'showing', 'pdf', 'original', 'process', 'erp', 'production', 'order', 'interface', 'vendor', 'ba', 'cr', 'rfc', 'destination', 'production', 'order', 'interface', 'vendor', 'view', 'accessible', 'file', 'cannot', 'stamped', 'bapireturnederrorexception', 'stack', 'trace', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructureorreturntableline', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructure', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'generirtcfunction', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'objmod', 'plmfile', 'checkoutview', 'plmfile', 'java', 'id', 'plmfile', 'java', 'aju', 'plm', 'omf', 'omforiginalsexport', 'checkoutbapi', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'plm', 'omf', 'omforiginalsexport', 'downloaddocumentoriginals', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'plm', 'omf', 'omforiginalsexport', 'actionperformed', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'cadagent', 'gui', 'obr', 'obrfunctioneventqueue', 'run', 'obrfunctioneventqueue', 'java', 'id', 'obrfunctioneventqueue', 'java', 'bda', 'api', 'bapi', 'document', 'checkoutview', 'known', 'problem', 'fixed'] processed_text: ['engineering', 'tool', 'drawing', 'original', 'pdf', 'format', 'shown', 'hello', 'service', 'need', 'monitor', 'manufacturing', 'drawing', 'approve', 'manufacturing', 'engineering', 'tool', 'stopped', 'showing', 'pdf', 'original', 'process', 'erp', 'production', 'order', 'interface', 'vendor', 'ba', 'cr', 'rfc', 'destination', 'production', 'order', 'interface', 'vendor', 'view', 'accessible', 'file', 'cannot', 'stamped', 'bapireturnederrorexception', 'stack', 'trace', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructureorreturntableline', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructure', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'generirtcfunction', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', 'cadagent', 'objmod', 'plmfile', 'checkoutview', 'plmfile', 'java', 'id', 'plmfile', 'java', 'aju', 'plm', 'omf', 'omforiginalsexport', 'checkoutbapi', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'plm', 'omf', 'omforiginalsexport', 'downloaddocumentoriginals', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'plm', 'omf', 'omforiginalsexport', 'actionperformed', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', 'cadagent', 'gui', 'obr', 'obrfunctioneventqueue', 'run', 'obrfunctioneventqueue', 'java', 'id', 'obrfunctioneventqueue', 'java', 'bda', 'api', 'bapi', 'document', 'checkoutview', 'known', 'problem', 'fixed'] list_processed_text: [['engineering'], ['tool'], ['drawing'], ['original'], ['pdf'], ['format'], ['shown'], ['hello'], ['service'], ['need'], ['monitor'], ['manufacturing'], ['drawing'], ['approve'], ['manufacturing'], ['engineering'], ['tool'], ['stopped'], ['showing'], ['pdf'], ['original'], ['process'], ['erp'], ['production'], ['order'], ['interface'], ['vendor'], ['ba'], ['cr'], ['rfc'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['view'], ['accessible'], ['file'], ['cannot'], ['stamped'], ['bapireturnederrorexception'], ['stack'], ['trace'], ['cadagent'], ['erp'], ['conn'], ['jco'], ['tm'], ['jcoerpmanager'], ['handlereturnstructureorreturntableline'], ['jcoerpmanager'], ['java'], ['id'], ['jcoerpmanager'], ['java'], ['wt'], ['cadagent'], ['erp'], ['conn'], ['jco'], ['tm'], ['jcoerpmanager'], ['handlereturnstructure'], ['jcoerpmanager'], ['java'], ['id'], ['jcoerpmanager'], ['java'], ['wt'], ['cadagent'], ['erp'], ['conn'], ['jco'], ['tm'], ['jcoerpmanager'], ['generirtcfunction'], ['jcoerpmanager'], ['java'], ['id'], ['jcoerpmanager'], ['java'], ['wt'], ['cadagent'], ['objmod'], ['plmfile'], ['checkoutview'], ['plmfile'], ['java'], ['id'], ['plmfile'], ['java'], ['aju'], ['plm'], ['omf'], ['omforiginalsexport'], ['checkoutbapi'], ['omforiginalsexport'], ['java'], ['id'], ['omforiginalsexport'], ['java'], ['rb'], ['plm'], ['omf'], ['omforiginalsexport'], ['downloaddocumentoriginals'], ['omforiginalsexport'], ['java'], ['id'], ['omforiginalsexport'], ['java'], ['rb'], ['plm'], ['omf'], ['omforiginalsexport'], ['actionperformed'], ['omforiginalsexport'], ['java'], ['id'], ['omforiginalsexport'], ['java'], ['rb'], ['cadagent'], ['gui'], ['obr'], ['obrfunctioneventqueue'], ['run'], ['obrfunctioneventqueue'], ['java'], ['id'], ['obrfunctioneventqueue'], ['java'], ['bda'], ['api'], ['bapi'], ['document'], ['checkoutview'], ['known'], ['problem'], ['fixed']] k: 85 len: <class 'list'> Data: ['job', 'apo', 'bop', 'plant', 'failed', 'job', 'scheduler', 'job', 'apo', 'bop', 'plant', 'failed', 'job', 'scheduler'] processed_text: ['job', 'apo', 'bop', 'plant', 'failed', 'job', 'scheduler', 'job', 'apo', 'bop', 'plant', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['apo'], ['bop'], ['plant'], ['failed'], ['job'], ['scheduler'], ['job'], ['apo'], ['bop'], ['plant'], ['failed'], ['job'], ['scheduler']] k: 86 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 87 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 88 len: <class 'list'> Data: ['unable', 'open', 'ie', 'unable', 'open', 'ie'] processed_text: ['unable', 'open', 'ie', 'unable', 'open', 'ie'] list_processed_text: [['unable'], ['open'], ['ie'], ['unable'], ['open'], ['ie']] k: 89 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 90 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 91 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 92 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 93 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 94 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 95 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 96 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 97 len: <class 'list'> Data: ['amssm', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g', 'amssm', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['amssm', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g', 'amssm', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['amssm'], ['label'], ['sys'], ['amssm'], ['ef'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['amssm'], ['label'], ['sys'], ['amssm'], ['ef'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 98 len: <class 'list'> Data: ['unable', 'view', 'payslip', 'hr', 'tool', 'time', 'unable', 'view', 'payslip', 'hr', 'tool', 'time'] processed_text: ['unable', 'view', 'payslip', 'hr', 'tool', 'time', 'unable', 'view', 'payslip', 'hr', 'tool', 'time'] list_processed_text: [['unable'], ['view'], ['payslip'], ['hr'], ['tool'], ['time'], ['unable'], ['view'], ['payslip'], ['hr'], ['tool'], ['time']] k: 99 len: <class 'list'> Data: ['password', 'expiry', 'tomorrow', 'system', 'say', 'password', 'expires', 'tomorrow', 'want', 'change', 'new', 'password', 'allow', 'new', 'password', 'accepting', 'say', 'server', 'authorize', 'kindly', 'check', 'needful', 'password', 'expiring', 'tomorrow'] processed_text: ['password', 'expiry', 'tomorrow', 'system', 'say', 'password', 'expires', 'tomorrow', 'want', 'change', 'new', 'password', 'allow', 'new', 'password', 'accepting', 'say', 'server', 'authorize', 'kindly', 'check', 'needful', 'password', 'expiring', 'tomorrow'] list_processed_text: [['password'], ['expiry'], ['tomorrow'], ['system'], ['say'], ['password'], ['expires'], ['tomorrow'], ['want'], ['change'], ['new'], ['password'], ['allow'], ['new'], ['password'], ['accepting'], ['say'], ['server'], ['authorize'], ['kindly'], ['check'], ['needful'], ['password'], ['expiring'], ['tomorrow']] k: 100 len: <class 'list'> Data: ['es', 'portal', 'access', 'issue', 'hello', 'kiosk', 'user', 'please', 'reset', 'password', 'confirm', 'noscwdpm', 'akiowsmp', 'ihkolepb', 'ozhnjyef', 'es', 'portal', 'access', 'issue', 'hi', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'user', 'id', 'sv', 'able', 'login', 'es', 'portal', 'access', 'pay', 'slip', 'related', 'content', 'attendance', 'tool', 'user', 'please', 'reset', 'user', 'id', 'password', 'revert', 'back'] processed_text: ['es', 'portal', 'access', 'issue', 'hello', 'kiosk', 'user', 'please', 'reset', 'password', 'confirm', 'noscwdpm', 'akiowsmp', 'ihkolepb', 'ozhnjyef', 'es', 'portal', 'access', 'issue', 'hi', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'user', 'id', 'sv', 'able', 'login', 'es', 'portal', 'access', 'pay', 'slip', 'related', 'content', 'attendance', 'tool', 'user', 'please', 'reset', 'user', 'id', 'password', 'revert', 'back'] list_processed_text: [['es'], ['portal'], ['access'], ['issue'], ['hello'], ['kiosk'], ['user'], ['please'], ['reset'], ['password'], ['confirm'], ['noscwdpm'], ['akiowsmp'], ['ihkolepb'], ['ozhnjyef'], ['es'], ['portal'], ['access'], ['issue'], ['hi'], ['mentioned'], ['employee'], ['krlszbqo'], ['spimolgz'], ['user'], ['id'], ['sv'], ['able'], ['login'], ['es'], ['portal'], ['access'], ['pay'], ['slip'], ['related'], ['content'], ['attendance'], ['tool'], ['user'], ['please'], ['reset'], ['user'], ['id'], ['password'], ['revert'], ['back']] k: 101 len: <class 'list'> Data: ['es', 'portal', 'access', 'issue', 'hi', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'user', 'id', 'sv', 'able', 'login', 'es', 'portal', 'access', 'pay', 'slip', 'related', 'content', 'attendance', 'tool', 'user', 'please', 'reset', 'user', 'id', 'password', 'revert', 'back'] processed_text: ['es', 'portal', 'access', 'issue', 'hi', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'user', 'id', 'sv', 'able', 'login', 'es', 'portal', 'access', 'pay', 'slip', 'related', 'content', 'attendance', 'tool', 'user', 'please', 'reset', 'user', 'id', 'password', 'revert', 'back'] list_processed_text: [['es'], ['portal'], ['access'], ['issue'], ['hi'], ['mentioned'], ['employee'], ['krlszbqo'], ['spimolgz'], ['user'], ['id'], ['sv'], ['able'], ['login'], ['es'], ['portal'], ['access'], ['pay'], ['slip'], ['related'], ['content'], ['attendance'], ['tool'], ['user'], ['please'], ['reset'], ['user'], ['id'], ['password'], ['revert'], ['back']] k: 102 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 103 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 104 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 105 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 106 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 107 len: <class 'list'> Data: ['attendance', 'tool', 'system', 'log', 'error', 'hello', 'good', 'morning', 'experiencing', 'issue', 'attendance', 'tool', 'log', 'every', 'time', 'try', 'log', 'single', 'sign', 'portal', 'following', 'screen', 'get', 'displayed', 'stay', 'appreciate', 'support', 'fix', 'issue'] processed_text: ['attendance', 'tool', 'system', 'log', 'error', 'hello', 'good', 'morning', 'experiencing', 'issue', 'attendance', 'tool', 'log', 'every', 'time', 'try', 'log', 'single', 'sign', 'portal', 'following', 'screen', 'get', 'displayed', 'stay', 'appreciate', 'support', 'fix', 'issue'] list_processed_text: [['attendance'], ['tool'], ['system'], ['log'], ['error'], ['hello'], ['good'], ['morning'], ['experiencing'], ['issue'], ['attendance'], ['tool'], ['log'], ['every'], ['time'], ['try'], ['log'], ['single'], ['sign'], ['portal'], ['following'], ['screen'], ['get'], ['displayed'], ['stay'], ['appreciate'], ['support'], ['fix'], ['issue']] k: 108 len: <class 'list'> Data: ['excel', 'freezing', 'issue', 'excel', 'freezing', 'issue'] processed_text: ['excel', 'freezing', 'issue', 'excel', 'freezing', 'issue'] list_processed_text: [['excel'], ['freezing'], ['issue'], ['excel'], ['freezing'], ['issue']] k: 109 len: <class 'list'> Data: ['unable', 'sync', 'file', 'collaboration', 'platform', 'unable', 'sync', 'file', 'collaboration', 'platform'] processed_text: ['unable', 'sync', 'file', 'collaboration', 'platform', 'unable', 'sync', 'file', 'collaboration', 'platform'] list_processed_text: [['unable'], ['sync'], ['file'], ['collaboration'], ['platform'], ['unable'], ['sync'], ['file'], ['collaboration'], ['platform']] k: 110 len: <class 'list'> Data: ['unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 111 len: <class 'list'> Data: ['vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query', 'vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query'] processed_text: ['vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query', 'vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query'] list_processed_text: [['vitalyst'], ['transfer'], ['reporting'], ['tool'], ['access'], ['query'], ['vitalyst'], ['transfer'], ['reporting'], ['tool'], ['access'], ['query']] k: 112 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 113 len: <class 'list'> Data: ['user', 'said', 'callback', 'user', 'said', 'callback'] processed_text: ['user', 'said', 'callback', 'user', 'said', 'callback'] list_processed_text: [['user'], ['said'], ['callback'], ['user'], ['said'], ['callback']] k: 114 len: <class 'list'> Data: ['unable', 'update', 'password', 'password', 'management', 'tool', 'unable', 'update', 'password', 'password', 'management', 'tool'] processed_text: ['unable', 'update', 'password', 'password', 'management', 'tool', 'unable', 'update', 'password', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['update'], ['password'], ['password'], ['management'], ['tool']] k: 115 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'locked', 'erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'locked'] processed_text: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'locked', 'erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset'], ['account'], ['locked'], ['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset'], ['account'], ['locked']] k: 116 len: <class 'list'> Data: ['server', 'issue', 'hello', 'trying', 'gain', 'access', 'pay', 'roll', 'information', 'hub', 'specifically', 'hr', 'tool', 'etime', 'portal', 'information', 'portal', 'come', 'without', 'problem', 'pay', 'stub', 'continuously', 'show', 'search', 'ring'] processed_text: ['server', 'issue', 'hello', 'trying', 'gain', 'access', 'pay', 'roll', 'information', 'hub', 'specifically', 'hr', 'tool', 'etime', 'portal', 'information', 'portal', 'come', 'without', 'problem', 'pay', 'stub', 'continuously', 'show', 'search', 'ring'] list_processed_text: [['server'], ['issue'], ['hello'], ['trying'], ['gain'], ['access'], ['pay'], ['roll'], ['information'], ['hub'], ['specifically'], ['hr'], ['tool'], ['etime'], ['portal'], ['information'], ['portal'], ['come'], ['without'], ['problem'], ['pay'], ['stub'], ['continuously'], ['show'], ['search'], ['ring']] k: 117 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 118 len: <class 'list'> Data: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] processed_text: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] list_processed_text: [['unable'], ['display'], ['expense'], ['report'], ['unable'], ['display'], ['expense'], ['report']] k: 119 len: <class 'list'> Data: ['password', 'reset', 'upitdmhz', 'owupktcg', 'cruzjc', 'password', 'reset', 'upitdmhz', 'owupktcg', 'cruzjc'] processed_text: ['password', 'reset', 'upitdmhz', 'owupktcg', 'cruzjc', 'password', 'reset', 'upitdmhz', 'owupktcg', 'cruzjc'] list_processed_text: [['password'], ['reset'], ['upitdmhz'], ['owupktcg'], ['cruzjc'], ['password'], ['reset'], ['upitdmhz'], ['owupktcg'], ['cruzjc']] k: 120 len: <class 'list'> Data: ['unable', 'login', 'benefit', 'tab', 'unable', 'login', 'benefit', 'tab'] processed_text: ['unable', 'login', 'benefit', 'tab', 'unable', 'login', 'benefit', 'tab'] list_processed_text: [['unable'], ['login'], ['benefit'], ['tab'], ['unable'], ['login'], ['benefit'], ['tab']] k: 121 len: <class 'list'> Data: ['hello', 'issue', 'outlook', 'view', 'call', 'let', 'share', 'screen', 'hello', 'issue', 'outlook', 'view', 'call', 'let', 'share', 'screen'] processed_text: ['hello', 'issue', 'outlook', 'view', 'call', 'let', 'share', 'screen', 'hello', 'issue', 'outlook', 'view', 'call', 'let', 'share', 'screen'] list_processed_text: [['hello'], ['issue'], ['outlook'], ['view'], ['call'], ['let'], ['share'], ['screen'], ['hello'], ['issue'], ['outlook'], ['view'], ['call'], ['let'], ['share'], ['screen']] k: 122 len: <class 'list'> Data: ['unable', 'access', 'mail', 'unable', 'access', 'mail'] processed_text: ['unable', 'access', 'mail', 'unable', 'access', 'mail'] list_processed_text: [['unable'], ['access'], ['mail'], ['unable'], ['access'], ['mail']] k: 123 len: <class 'list'> Data: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] processed_text: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] list_processed_text: [['unable'], ['display'], ['expense'], ['report'], ['unable'], ['display'], ['expense'], ['report']] k: 124 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'tvcdfqgp', 'nrbcqwgj', 'pm', 'nwfodmhc', 'exurcwkm', 'se', 'ha', 'bloqueado', 'en', 'forma', 'temporal', 'la', 'sincronizaci', 'de', 'su', 'dispositivo', 'vil', 'mediante', 'exchange', 'activesync', 'hasta', 'que', 'su', 'administrador', 'autorice', 'el', 'acceso', 'hi', 'received', 'message', 'local', 'expert', 'told', 'open', 'ticket'] processed_text: ['mobile', 'device', 'activation', 'tvcdfqgp', 'nrbcqwgj', 'pm', 'nwfodmhc', 'exurcwkm', 'se', 'ha', 'bloqueado', 'en', 'forma', 'temporal', 'la', 'sincronizaci', 'de', 'su', 'dispositivo', 'vil', 'mediante', 'exchange', 'activesync', 'hasta', 'que', 'su', 'administrador', 'autorice', 'el', 'acceso', 'hi', 'received', 'message', 'local', 'expert', 'told', 'open', 'ticket'] list_processed_text: [['mobile'], ['device'], ['activation'], ['tvcdfqgp'], ['nrbcqwgj'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['se'], ['ha'], ['bloqueado'], ['en'], ['forma'], ['temporal'], ['la'], ['sincronizaci'], ['de'], ['su'], ['dispositivo'], ['vil'], ['mediante'], ['exchange'], ['activesync'], ['hasta'], ['que'], ['su'], ['administrador'], ['autorice'], ['el'], ['acceso'], ['hi'], ['received'], ['message'], ['local'], ['expert'], ['told'], ['open'], ['ticket']] k: 125 len: <class 'list'> Data: ['internal', 'keybankrd', 'work', 'c', 'external', 'usb', 'keybankrd', 'internal', 'keybankrd', 'work', 'c', 'external', 'usb', 'keybankrd'] processed_text: ['internal', 'keybankrd', 'work', 'c', 'external', 'usb', 'keybankrd', 'internal', 'keybankrd', 'work', 'c', 'external', 'usb', 'keybankrd'] list_processed_text: [['internal'], ['keybankrd'], ['work'], ['c'], ['external'], ['usb'], ['keybankrd'], ['internal'], ['keybankrd'], ['work'], ['c'], ['external'], ['usb'], ['keybankrd']] k: 126 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 127 len: <class 'list'> Data: ['update', 'inplant', 'update', 'inplant'] processed_text: ['update', 'inplant', 'update', 'inplant'] list_processed_text: [['update'], ['inplant'], ['update'], ['inplant']] k: 128 len: <class 'list'> Data: ['password', 'change', 'thru', 'password', 'management', 'tool', 'password', 'manager', 'hello', 'sir', 'tried', 'change', 'password', 'thru', 'got', 'error', 'pl', 'help', 'know', 'action', 'taken', 'ensure', 'password', 'everywhere', 'since', 'belo', 'wmsg', 'say', 'password', 'changed'] processed_text: ['password', 'change', 'thru', 'password', 'management', 'tool', 'password', 'manager', 'hello', 'sir', 'tried', 'change', 'password', 'thru', 'got', 'error', 'pl', 'help', 'know', 'action', 'taken', 'ensure', 'password', 'everywhere', 'since', 'belo', 'wmsg', 'say', 'password', 'changed'] list_processed_text: [['password'], ['change'], ['thru'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['hello'], ['sir'], ['tried'], ['change'], ['password'], ['thru'], ['got'], ['error'], ['pl'], ['help'], ['know'], ['action'], ['taken'], ['ensure'], ['password'], ['everywhere'], ['since'], ['belo'], ['wmsg'], ['say'], ['password'], ['changed']] k: 129 len: <class 'list'> Data: ['unlock', 'personal', 'number', 'es', 'unlock', 'personal', 'number', 'es'] processed_text: ['unlock', 'personal', 'number', 'es', 'unlock', 'personal', 'number', 'es'] list_processed_text: [['unlock'], ['personal'], ['number'], ['es'], ['unlock'], ['personal'], ['number'], ['es']] k: 130 len: <class 'list'> Data: ['intermittent', 'service', 'configair', 'server', 'sid', 'requires', 'probably', 'restart', 'production', 'server', 'intermittent', 'service', 'configair', 'server', 'sid', 'requires', 'probably', 'restart', 'production', 'server', 'error', 'occurs', 'production', 'show', 'internal', 'serrver', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'local', 'list', 'issue', 'reproduced', 'production', 'g', 'company', 'customer', 'g', 'base', 'material', 'mm', 'hs', 'pm', 'finishing', 'company', 'customer', 'g', 'starting', 'scratch', 'select', 'product', 'platform', 'g', 'hp', 'hs', 'pm', 'roughing', 'screen', 'freeze', 'log', 'language', 'different', 'en', 'g', 'de', 'company', 'customer', 'g', 'base', 'material', 'g', 'issue', 'already', 'several', 'time', 'needed', 'always', 'restart', 'server', 'thryeu', 'good', 'contact', 'person', 'issue', 'already', 'working', 'root', 'cause', 'external', 'vendor', 'configair'] processed_text: ['intermittent', 'service', 'configair', 'server', 'sid', 'requires', 'probably', 'restart', 'production', 'server', 'intermittent', 'service', 'configair', 'server', 'sid', 'requires', 'probably', 'restart', 'production', 'server', 'error', 'occurs', 'production', 'show', 'internal', 'serrver', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'local', 'list', 'issue', 'reproduced', 'production', 'g', 'company', 'customer', 'g', 'base', 'material', 'mm', 'hs', 'pm', 'finishing', 'company', 'customer', 'g', 'starting', 'scratch', 'select', 'product', 'platform', 'g', 'hp', 'hs', 'pm', 'roughing', 'screen', 'freeze', 'log', 'language', 'different', 'en', 'g', 'de', 'company', 'customer', 'g', 'base', 'material', 'g', 'issue', 'already', 'several', 'time', 'needed', 'always', 'restart', 'server', 'thryeu', 'good', 'contact', 'person', 'issue', 'already', 'working', 'root', 'cause', 'external', 'vendor', 'configair'] list_processed_text: [['intermittent'], ['service'], ['configair'], ['server'], ['sid'], ['requires'], ['probably'], ['restart'], ['production'], ['server'], ['intermittent'], ['service'], ['configair'], ['server'], ['sid'], ['requires'], ['probably'], ['restart'], ['production'], ['server'], ['error'], ['occurs'], ['production'], ['show'], ['internal'], ['serrver'], ['error'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['local'], ['list'], ['issue'], ['reproduced'], ['production'], ['g'], ['company'], ['customer'], ['g'], ['base'], ['material'], ['mm'], ['hs'], ['pm'], ['finishing'], ['company'], ['customer'], ['g'], ['starting'], ['scratch'], ['select'], ['product'], ['platform'], ['g'], ['hp'], ['hs'], ['pm'], ['roughing'], ['screen'], ['freeze'], ['log'], ['language'], ['different'], ['en'], ['g'], ['de'], ['company'], ['customer'], ['g'], ['base'], ['material'], ['g'], ['issue'], ['already'], ['several'], ['time'], ['needed'], ['always'], ['restart'], ['server'], ['thryeu'], ['good'], ['contact'], ['person'], ['issue'], ['already'], ['working'], ['root'], ['cause'], ['external'], ['vendor'], ['configair']] k: 131 len: <class 'list'> Data: ['unable', 'access', 'vpn', 'unable', 'access', 'vpn'] processed_text: ['unable', 'access', 'vpn', 'unable', 'access', 'vpn'] list_processed_text: [['unable'], ['access'], ['vpn'], ['unable'], ['access'], ['vpn']] k: 132 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 133 len: <class 'list'> Data: ['install', 'driver', 'printer', 'hr', 'hostname', 'install', 'driver', 'printer', 'hr', 'hostname'] processed_text: ['install', 'driver', 'printer', 'hr', 'hostname', 'install', 'driver', 'printer', 'hr', 'hostname'] list_processed_text: [['install'], ['driver'], ['printer'], ['hr'], ['hostname'], ['install'], ['driver'], ['printer'], ['hr'], ['hostname']] k: 134 len: <class 'list'> Data: ['unable', 'send', 'email', 'outbox', 'unable', 'send', 'email', 'outbox'] processed_text: ['unable', 'send', 'email', 'outbox', 'unable', 'send', 'email', 'outbox'] list_processed_text: [['unable'], ['send'], ['email'], ['outbox'], ['unable'], ['send'], ['email'], ['outbox']] k: 135 len: <class 'list'> Data: ['access', 'business', 'client', 'drawing', 'name', 'xvgftyr', 'tryfuh', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'cannot', 'seem', 'access', 'drawing', 'netweaver', 'application', 'installed', 'computer', 'take', 'page', 'colleague'] processed_text: ['access', 'business', 'client', 'drawing', 'name', 'xvgftyr', 'tryfuh', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'cannot', 'seem', 'access', 'drawing', 'netweaver', 'application', 'installed', 'computer', 'take', 'page', 'colleague'] list_processed_text: [['access'], ['business'], ['client'], ['drawing'], ['name'], ['xvgftyr'], ['tryfuh'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['cannot'], ['seem'], ['access'], ['drawing'], ['netweaver'], ['application'], ['installed'], ['computer'], ['take'], ['page'], ['colleague']] k: 136 len: <class 'list'> Data: ['taking', 'email', 'permission', 'personal', 'phone', 'name', 'vdhfy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'scrapped', 'old', 'phone', 'mail', 'configured', 'take', 'permission', 'set', 'view', 'mail', 'phone'] processed_text: ['taking', 'email', 'permission', 'personal', 'phone', 'name', 'vdhfy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'scrapped', 'old', 'phone', 'mail', 'configured', 'take', 'permission', 'set', 'view', 'mail', 'phone'] list_processed_text: [['taking'], ['email'], ['permission'], ['personal'], ['phone'], ['name'], ['vdhfy'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['scrapped'], ['old'], ['phone'], ['mail'], ['configured'], ['take'], ['permission'], ['set'], ['view'], ['mail'], ['phone']] k: 137 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 138 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 139 len: <class 'list'> Data: ['unable', 'view', 'payslip', 'ie', 'unable', 'view', 'payslip', 'ie'] processed_text: ['unable', 'view', 'payslip', 'ie', 'unable', 'view', 'payslip', 'ie'] list_processed_text: [['unable'], ['view'], ['payslip'], ['ie'], ['unable'], ['view'], ['payslip'], ['ie']] k: 140 len: <class 'list'> Data: ['prtgghjk', 'password', 'reset', 'please', 'reset', 'hr', 'tool', 'gv', 'password', 'reset'] processed_text: ['prtgghjk', 'password', 'reset', 'please', 'reset', 'hr', 'tool', 'gv', 'password', 'reset'] list_processed_text: [['prtgghjk'], ['password'], ['reset'], ['please'], ['reset'], ['hr'], ['tool'], ['gv'], ['password'], ['reset']] k: 141 len: <class 'list'> Data: ['channel', 'partner', 'receiving', 'multiple', 'email', 'erp', 'urgent', 'hi', 'channel', 'partner', 'email', 'address', 'received', 'email', 'regarding', 'po', 'error', 'matheywter', 'millisecond', 'angry', 'need', 'fixed', 'aerp', 'attached', 'file', 'extracted', 'erp', 'documenting', 'email'] processed_text: ['channel', 'partner', 'receiving', 'multiple', 'email', 'erp', 'urgent', 'hi', 'channel', 'partner', 'email', 'address', 'received', 'email', 'regarding', 'po', 'error', 'matheywter', 'millisecond', 'angry', 'need', 'fixed', 'aerp', 'attached', 'file', 'extracted', 'erp', 'documenting', 'email'] list_processed_text: [['channel'], ['partner'], ['receiving'], ['multiple'], ['email'], ['erp'], ['urgent'], ['hi'], ['channel'], ['partner'], ['email'], ['address'], ['received'], ['email'], ['regarding'], ['po'], ['error'], ['matheywter'], ['millisecond'], ['angry'], ['need'], ['fixed'], ['aerp'], ['attached'], ['file'], ['extracted'], ['erp'], ['documenting'], ['email']] k: 142 len: <class 'list'> Data: ['usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et', 'usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et'] processed_text: ['usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et', 'usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et'] list_processed_text: [['usa'], ['company'], ['interface'], ['fastethernet'], ['gigabitethernet'], ['since'], ['pm'], ['et'], ['usa'], ['company'], ['interface'], ['fastethernet'], ['gigabitethernet'], ['since'], ['pm'], ['et']] k: 143 len: <class 'list'> Data: ['password', 'reset', 'good', 'morning', 'forgotten', 'password', 'erp', 'sid', 'made', 'attempt', 'failed', 'could', 'please', 'reset', 'user', 'id', 'dgrtrkjs'] processed_text: ['password', 'reset', 'good', 'morning', 'forgotten', 'password', 'erp', 'sid', 'made', 'attempt', 'failed', 'could', 'please', 'reset', 'user', 'id', 'dgrtrkjs'] list_processed_text: [['password'], ['reset'], ['good'], ['morning'], ['forgotten'], ['password'], ['erp'], ['sid'], ['made'], ['attempt'], ['failed'], ['could'], ['please'], ['reset'], ['user'], ['id'], ['dgrtrkjs']] k: 144 len: <class 'list'> Data: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['es'], ['login'], ['issue'], ['es'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 145 len: <class 'list'> Data: ['unable', 'start', 'dell', 'device', 'qifzkoej', 'etbmgjvo', 'unable', 'start', 'dell', 'tablet', 'device'] processed_text: ['unable', 'start', 'dell', 'device', 'qifzkoej', 'etbmgjvo', 'unable', 'start', 'dell', 'tablet', 'device'] list_processed_text: [['unable'], ['start'], ['dell'], ['device'], ['qifzkoej'], ['etbmgjvo'], ['unable'], ['start'], ['dell'], ['tablet'], ['device']] k: 146 len: <class 'list'> Data: ['erp', 'print', 'tool', 'install', 'erp', 'print', 'tool', 'install'] processed_text: ['erp', 'print', 'tool', 'install', 'erp', 'print', 'tool', 'install'] list_processed_text: [['erp'], ['print'], ['tool'], ['install'], ['erp'], ['print'], ['tool'], ['install']] k: 147 len: <class 'list'> Data: ['good', 'morning', 'trouble', 'getting', 'vpn', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'good', 'morning', 'trouble', 'getting', 'vpn', 'assist'] processed_text: ['good', 'morning', 'trouble', 'getting', 'vpn', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'good', 'morning', 'trouble', 'getting', 'vpn', 'assist'] list_processed_text: [['good'], ['morning'], ['trouble'], ['getting'], ['vpn'], ['name'], ['wvngzrca'], ['sfmrzdth'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['good'], ['morning'], ['trouble'], ['getting'], ['vpn'], ['assist']] k: 148 len: <class 'list'> Data: ['install', 'standard', 'acrobat', 'install', 'standard', 'acrobat'] processed_text: ['install', 'standard', 'acrobat', 'install', 'standard', 'acrobat'] list_processed_text: [['install'], ['standard'], ['acrobat'], ['install'], ['standard'], ['acrobat']] k: 149 len: <class 'list'> Data: ['password', 'reset', 'ad', 'password', 'reset', 'ad'] processed_text: ['password', 'reset', 'ad', 'password', 'reset', 'ad'] list_processed_text: [['password'], ['reset'], ['ad'], ['password'], ['reset'], ['ad']] k: 150 len: <class 'list'> Data: ['reset', 'password', 'wseacnvi', 'azvixyqg', 'erp', 'qa', 'erp', 'please', 'reset', 'password', 'sid', 'blocked', 'login', 'jdhdw'] processed_text: ['reset', 'password', 'wseacnvi', 'azvixyqg', 'erp', 'qa', 'erp', 'please', 'reset', 'password', 'sid', 'blocked', 'login', 'jdhdw'] list_processed_text: [['reset'], ['password'], ['wseacnvi'], ['azvixyqg'], ['erp'], ['qa'], ['erp'], ['please'], ['reset'], ['password'], ['sid'], ['blocked'], ['login'], ['jdhdw']] k: 151 len: <class 'list'> Data: ['used', 'acces', 'location', 'collaboration', 'platform', 'need', 'access', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] processed_text: ['used', 'acces', 'location', 'collaboration', 'platform', 'need', 'access', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] list_processed_text: [['used'], ['acces'], ['location'], ['collaboration'], ['platform'], ['need'], ['access'], ['bwfhtumx'], ['japznrvb'], ['regional'], ['controller']] k: 152 len: <class 'list'> Data: ['crm', 'add', 'getting', 'disabled', 'outlook', 'crm', 'add', 'getting', 'disabled', 'outlook'] processed_text: ['crm', 'add', 'getting', 'disabled', 'outlook', 'crm', 'add', 'getting', 'disabled', 'outlook'] list_processed_text: [['crm'], ['add'], ['getting'], ['disabled'], ['outlook'], ['crm'], ['add'], ['getting'], ['disabled'], ['outlook']] k: 153 len: <class 'list'> Data: ['outlook', 'hang', 'outlook', 'hang'] processed_text: ['outlook', 'hang', 'outlook', 'hang'] list_processed_text: [['outlook'], ['hang'], ['outlook'], ['hang']] k: 154 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'working'] processed_text: ['vpn', 'working', 'vpn', 'working'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['working']] k: 155 len: <class 'list'> Data: ['reset', 'password', 'hckvpary', 'emxbpkwy', 'using', 'password', 'management', 'tool', 'password', 'reset', 'employee', 'getting', 'error', 'user', 'authentication', 'failed', 'trying', 'log', 'es', 'portal', 'able', 'access', 'erp', 'able', 'access', 'hub', 'tried', 'reset', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'got', 'error', 'cannot', 'find', 'account', 'woodscf', 'target', 'active', 'directory', 'user', 'id', 'hdjdkt'] processed_text: ['reset', 'password', 'hckvpary', 'emxbpkwy', 'using', 'password', 'management', 'tool', 'password', 'reset', 'employee', 'getting', 'error', 'user', 'authentication', 'failed', 'trying', 'log', 'es', 'portal', 'able', 'access', 'erp', 'able', 'access', 'hub', 'tried', 'reset', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'got', 'error', 'cannot', 'find', 'account', 'woodscf', 'target', 'active', 'directory', 'user', 'id', 'hdjdkt'] list_processed_text: [['reset'], ['password'], ['hckvpary'], ['emxbpkwy'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['employee'], ['getting'], ['error'], ['user'], ['authentication'], ['failed'], ['trying'], ['log'], ['es'], ['portal'], ['able'], ['access'], ['erp'], ['able'], ['access'], ['hub'], ['tried'], ['reset'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['got'], ['error'], ['cannot'], ['find'], ['account'], ['woodscf'], ['target'], ['active'], ['directory'], ['user'], ['id'], ['hdjdkt']] k: 156 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 157 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 158 len: <class 'list'> Data: ['wy', 'printer', 'please', 'note', 'continuous', 'erp', 'printing', 'happening', 'printer', 'wy', 'print', 'given', 'locally', 'please', 'arrange', 'cancel', 'immediately', 'lot', 'paper', 'getting', 'wasted'] processed_text: ['wy', 'printer', 'please', 'note', 'continuous', 'erp', 'printing', 'happening', 'printer', 'wy', 'print', 'given', 'locally', 'please', 'arrange', 'cancel', 'immediately', 'lot', 'paper', 'getting', 'wasted'] list_processed_text: [['wy'], ['printer'], ['please'], ['note'], ['continuous'], ['erp'], ['printing'], ['happening'], ['printer'], ['wy'], ['print'], ['given'], ['locally'], ['please'], ['arrange'], ['cancel'], ['immediately'], ['lot'], ['paper'], ['getting'], ['wasted']] k: 159 len: <class 'list'> Data: ['update', 'java', 'viewer', 'dear', 'java', 'viewer', 'working', 'need', 'access', 'view', 'scanned', 'inwarehouse', 'tool', 'erp', 'assume', 'java', 'update', 'required', 'best'] processed_text: ['update', 'java', 'viewer', 'dear', 'java', 'viewer', 'working', 'need', 'access', 'view', 'scanned', 'inwarehouse', 'tool', 'erp', 'assume', 'java', 'update', 'required', 'best'] list_processed_text: [['update'], ['java'], ['viewer'], ['dear'], ['java'], ['viewer'], ['working'], ['need'], ['access'], ['view'], ['scanned'], ['inwarehouse'], ['tool'], ['erp'], ['assume'], ['java'], ['update'], ['required'], ['best']] k: 160 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 161 len: <class 'list'> Data: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] processed_text: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] list_processed_text: [['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate']] k: 162 len: <class 'list'> Data: ['access', 'bex', 'hello', 'till', 'last', 'week', 'accessing', 'bex', 'report', 'using', 'mm', 'portal', 'issue', 'starting', 'week', 'system', 'incredibly', 'slow', 'log', 'finally', 'allow', 'access', 'report', 'issue', 'maintenance', 'access', 'right', 'rather', 'try', 'access', 'bex', 'using', 'different', 'way', 'print', 'screen', 'see', 'log', 'also', 'able', 'get', 'finance', 'report', 'see', 'however', 'click', 'profitability', 'analysis', 'always', 'separate', 'window', 'open', 'however', 'apart', 'rom', 'screen', 'blank', 'appreciate', 'support', 'great', 'day', 'robhyertyj', 'yfqoaepn', 'xnezhsit', 'managing', 'director', 'finance', 'manager', 'cee', 'tel', 'mob', 'company', 'polska', 'sp', 'ul', 'krzywoustego', 'pozna', 'www', 'company', 'com', 'company', 'polska', 'sp', 'z', 'siedzib', 'polandiu', 'pozna', 'ul', 'krzywoustego', 'sp', 'ka', 'zarejestrowana', 'dzie', 'rejonowym', 'pozna', 'nowe', 'miasto', 'wilda', 'polandiu', 'wydzia', 'viii', 'gospodarczy', 'kr', 'pod', 'numerem', 'kapita', 'zak', 'adowy', 'pln', 'nip'] processed_text: ['access', 'bex', 'hello', 'till', 'last', 'week', 'accessing', 'bex', 'report', 'using', 'mm', 'portal', 'issue', 'starting', 'week', 'system', 'incredibly', 'slow', 'log', 'finally', 'allow', 'access', 'report', 'issue', 'maintenance', 'access', 'right', 'rather', 'try', 'access', 'bex', 'using', 'different', 'way', 'print', 'screen', 'see', 'log', 'also', 'able', 'get', 'finance', 'report', 'see', 'however', 'click', 'profitability', 'analysis', 'always', 'separate', 'window', 'open', 'however', 'apart', 'rom', 'screen', 'blank', 'appreciate', 'support', 'great', 'day', 'robhyertyj', 'yfqoaepn', 'xnezhsit', 'managing', 'director', 'finance', 'manager', 'cee', 'tel', 'mob', 'company', 'polska', 'sp', 'ul', 'krzywoustego', 'pozna', 'www', 'company', 'com', 'company', 'polska', 'sp', 'z', 'siedzib', 'polandiu', 'pozna', 'ul', 'krzywoustego', 'sp', 'ka', 'zarejestrowana', 'dzie', 'rejonowym', 'pozna', 'nowe', 'miasto', 'wilda', 'polandiu', 'wydzia', 'viii', 'gospodarczy', 'kr', 'pod', 'numerem', 'kapita', 'zak', 'adowy', 'pln', 'nip'] list_processed_text: [['access'], ['bex'], ['hello'], ['till'], ['last'], ['week'], ['accessing'], ['bex'], ['report'], ['using'], ['mm'], ['portal'], ['issue'], ['starting'], ['week'], ['system'], ['incredibly'], ['slow'], ['log'], ['finally'], ['allow'], ['access'], ['report'], ['issue'], ['maintenance'], ['access'], ['right'], ['rather'], ['try'], ['access'], ['bex'], ['using'], ['different'], ['way'], ['print'], ['screen'], ['see'], ['log'], ['also'], ['able'], ['get'], ['finance'], ['report'], ['see'], ['however'], ['click'], ['profitability'], ['analysis'], ['always'], ['separate'], ['window'], ['open'], ['however'], ['apart'], ['rom'], ['screen'], ['blank'], ['appreciate'], ['support'], ['great'], ['day'], ['robhyertyj'], ['yfqoaepn'], ['xnezhsit'], ['managing'], ['director'], ['finance'], ['manager'], ['cee'], ['tel'], ['mob'], ['company'], ['polska'], ['sp'], ['ul'], ['krzywoustego'], ['pozna'], ['www'], ['company'], ['com'], ['company'], ['polska'], ['sp'], ['z'], ['siedzib'], ['polandiu'], ['pozna'], ['ul'], ['krzywoustego'], ['sp'], ['ka'], ['zarejestrowana'], ['dzie'], ['rejonowym'], ['pozna'], ['nowe'], ['miasto'], ['wilda'], ['polandiu'], ['wydzia'], ['viii'], ['gospodarczy'], ['kr'], ['pod'], ['numerem'], ['kapita'], ['zak'], ['adowy'], ['pln'], ['nip']] k: 163 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 164 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'windy', 'shi', 'ticket', 'comment', 'added', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['ticket', 'comment', 'added', 'windy', 'shi', 'ticket', 'comment', 'added', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['ticket'], ['comment'], ['added'], ['windy'], ['shi'], ['ticket'], ['comment'], ['added'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 165 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 166 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 167 len: <class 'list'> Data: ['user', 'need', 'training', 'use', 'engineering', 'tool', 'view', 'drawing', 'user', 'need', 'training', 'use', 'engineering', 'tool', 'view', 'drawing', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'educated', 'user', 'login', 'business', 'client', 'view', 'drawing', 'issue', 'resolved'] processed_text: ['user', 'need', 'training', 'use', 'engineering', 'tool', 'view', 'drawing', 'user', 'need', 'training', 'use', 'engineering', 'tool', 'view', 'drawing', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'educated', 'user', 'login', 'business', 'client', 'view', 'drawing', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['training'], ['use'], ['engineering'], ['tool'], ['view'], ['drawing'], ['user'], ['need'], ['training'], ['use'], ['engineering'], ['tool'], ['view'], ['drawing'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['educated'], ['user'], ['login'], ['business'], ['client'], ['view'], ['drawing'], ['issue'], ['resolved']] k: 168 len: <class 'list'> Data: ['skype', 'working', 'hello', 'unable', 'access', 'skype', 'password', 'showing', 'error'] processed_text: ['skype', 'working', 'hello', 'unable', 'access', 'skype', 'password', 'showing', 'error'] list_processed_text: [['skype'], ['working'], ['hello'], ['unable'], ['access'], ['skype'], ['password'], ['showing'], ['error']] k: 169 len: <class 'list'> Data: ['account', 'unlock', 'request', 'account', 'unlock', 'request'] processed_text: ['account', 'unlock', 'request', 'account', 'unlock', 'request'] list_processed_text: [['account'], ['unlock'], ['request'], ['account'], ['unlock'], ['request']] k: 170 len: <class 'list'> Data: ['urgent', 'delivery', 'note', 'creation', 'request', 'hello', 'team', 'could', 'please', 'generate', 'delivery', 'note', 'order', 'cannot', 'issue', 'dn', 'despite', 'enough', 'stock', 'item', 'shipping', 'plant', 'sale', 'org', 'delivery', 'plant', 'plant', 'shipping', 'point', 'tys', 'mm', 'pc', 'mm', 'pc', 'mm', 'pc'] processed_text: ['urgent', 'delivery', 'note', 'creation', 'request', 'hello', 'team', 'could', 'please', 'generate', 'delivery', 'note', 'order', 'cannot', 'issue', 'dn', 'despite', 'enough', 'stock', 'item', 'shipping', 'plant', 'sale', 'org', 'delivery', 'plant', 'plant', 'shipping', 'point', 'tys', 'mm', 'pc', 'mm', 'pc', 'mm', 'pc'] list_processed_text: [['urgent'], ['delivery'], ['note'], ['creation'], ['request'], ['hello'], ['team'], ['could'], ['please'], ['generate'], ['delivery'], ['note'], ['order'], ['cannot'], ['issue'], ['dn'], ['despite'], ['enough'], ['stock'], ['item'], ['shipping'], ['plant'], ['sale'], ['org'], ['delivery'], ['plant'], ['plant'], ['shipping'], ['point'], ['tys'], ['mm'], ['pc'], ['mm'], ['pc'], ['mm'], ['pc']] k: 171 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 172 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 173 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system']] k: 174 len: <class 'list'> Data: ['unable', 'take', 'print', 'wy', 'unable', 'take', 'print', 'wy'] processed_text: ['unable', 'take', 'print', 'wy', 'unable', 'take', 'print', 'wy'] list_processed_text: [['unable'], ['take'], ['print'], ['wy'], ['unable'], ['take'], ['print'], ['wy']] k: 175 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 176 len: <class 'list'> Data: ['unlock', 'supply', 'chain', 'software', 'account', 'hi', 'would', 'please', 'help', 'unlock', 'supply', 'chain', 'software', 'account', 'reset', 'supply', 'chain', 'software', 'password'] processed_text: ['unlock', 'supply', 'chain', 'software', 'account', 'hi', 'would', 'please', 'help', 'unlock', 'supply', 'chain', 'software', 'account', 'reset', 'supply', 'chain', 'software', 'password'] list_processed_text: [['unlock'], ['supply'], ['chain'], ['software'], ['account'], ['hi'], ['would'], ['please'], ['help'], ['unlock'], ['supply'], ['chain'], ['software'], ['account'], ['reset'], ['supply'], ['chain'], ['software'], ['password']] k: 177 len: <class 'list'> Data: ['unable', 'access', 'password', 'management', 'tool', 'id', 'password', 'manager', 'ijeqpkrz', 'nwtehsyx', 'grauw', 'try', 'change', 'password', 'acc', 'attached', 'mail', 'work', 'office', 'vacation', 'time', 'password', 'management', 'tool', 'link', 'work', 'please', 'help', 'password', 'expires', 'day', 'requirement', 'change', 'password', 'every', 'day', 'enhances', 'data', 'security', 'within', 'company', 'please', 'login', 'step', 'step', 'guide', 'using', 'self', 'service', 'tool', 'available', 'please', 'reply', 'email', 'require', 'assistance', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'via', 'mode', 'ticketing', 'tool', 'email', 'kind'] processed_text: ['unable', 'access', 'password', 'management', 'tool', 'id', 'password', 'manager', 'ijeqpkrz', 'nwtehsyx', 'grauw', 'try', 'change', 'password', 'acc', 'attached', 'mail', 'work', 'office', 'vacation', 'time', 'password', 'management', 'tool', 'link', 'work', 'please', 'help', 'password', 'expires', 'day', 'requirement', 'change', 'password', 'every', 'day', 'enhances', 'data', 'security', 'within', 'company', 'please', 'login', 'step', 'step', 'guide', 'using', 'self', 'service', 'tool', 'available', 'please', 'reply', 'email', 'require', 'assistance', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'via', 'mode', 'ticketing', 'tool', 'email', 'kind'] list_processed_text: [['unable'], ['access'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['ijeqpkrz'], ['nwtehsyx'], ['grauw'], ['try'], ['change'], ['password'], ['acc'], ['attached'], ['mail'], ['work'], ['office'], ['vacation'], ['time'], ['password'], ['management'], ['tool'], ['link'], ['work'], ['please'], ['help'], ['password'], ['expires'], ['day'], ['requirement'], ['change'], ['password'], ['every'], ['day'], ['enhances'], ['data'], ['security'], ['within'], ['company'], ['please'], ['login'], ['step'], ['step'], ['guide'], ['using'], ['self'], ['service'], ['tool'], ['available'], ['please'], ['reply'], ['email'], ['require'], ['assistance'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['via'], ['mode'], ['ticketing'], ['tool'], ['email'], ['kind']] k: 178 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 179 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 180 len: <class 'list'> Data: ['crm', 'license', 'user', 'dfgry', 'vwitpm', 'zscxqdhoalaramdntyan', 'xyculgav', 'cuqptoah', 'fw', 'crm', 'license', 'dfgry', 'hello', 'crm', 'installed', 'laptop', 'please', 'support'] processed_text: ['crm', 'license', 'user', 'dfgry', 'vwitpm', 'zscxqdhoalaramdntyan', 'xyculgav', 'cuqptoah', 'fw', 'crm', 'license', 'dfgry', 'hello', 'crm', 'installed', 'laptop', 'please', 'support'] list_processed_text: [['crm'], ['license'], ['user'], ['dfgry'], ['vwitpm'], ['zscxqdhoalaramdntyan'], ['xyculgav'], ['cuqptoah'], ['fw'], ['crm'], ['license'], ['dfgry'], ['hello'], ['crm'], ['installed'], ['laptop'], ['please'], ['support']] k: 181 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 182 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 183 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 184 len: <class 'list'> Data: ['apply', 'mobile', 'phone', 'access', 'mail', 'box', 'apply', 'mobile', 'phone', 'access', 'mail', 'box'] processed_text: ['apply', 'mobile', 'phone', 'access', 'mail', 'box', 'apply', 'mobile', 'phone', 'access', 'mail', 'box'] list_processed_text: [['apply'], ['mobile'], ['phone'], ['access'], ['mail'], ['box'], ['apply'], ['mobile'], ['phone'], ['access'], ['mail'], ['box']] k: 185 len: <class 'list'> Data: ['data', 'correctly', 'pulled', 'employee', 'travel', 'tool', 'attendee', 'interface', 'data', 'correctly', 'pulled', 'employee', 'travel', 'tool', 'attendee', 'interface'] processed_text: ['data', 'correctly', 'pulled', 'employee', 'travel', 'tool', 'attendee', 'interface', 'data', 'correctly', 'pulled', 'employee', 'travel', 'tool', 'attendee', 'interface'] list_processed_text: [['data'], ['correctly'], ['pulled'], ['employee'], ['travel'], ['tool'], ['attendee'], ['interface'], ['data'], ['correctly'], ['pulled'], ['employee'], ['travel'], ['tool'], ['attendee'], ['interface']] k: 186 len: <class 'list'> Data: ['shipment', 'notification', 'nwfodmhc', 'exurcwkm', 'shipment', 'notification', 'dear', 'pls', 'help', 'update', 'customer', 'shipment', 'notification', 'email', 'address', 'b'] processed_text: ['shipment', 'notification', 'nwfodmhc', 'exurcwkm', 'shipment', 'notification', 'dear', 'pls', 'help', 'update', 'customer', 'shipment', 'notification', 'email', 'address', 'b'] list_processed_text: [['shipment'], ['notification'], ['nwfodmhc'], ['exurcwkm'], ['shipment'], ['notification'], ['dear'], ['pls'], ['help'], ['update'], ['customer'], ['shipment'], ['notification'], ['email'], ['address'], ['b']] k: 187 len: <class 'list'> Data: ['recover', 'folder', 'mistake', 'copied', 'drive', 'want', 'recover', 'folder'] processed_text: ['recover', 'folder', 'mistake', 'copied', 'drive', 'want', 'recover', 'folder'] list_processed_text: [['recover'], ['folder'], ['mistake'], ['copied'], ['drive'], ['want'], ['recover'], ['folder']] k: 188 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 189 len: <class 'list'> Data: ['network', 'outage', 'india', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 190 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 191 len: <class 'list'> Data: ['user', 'able', 'see', 'text', 'mail', 'iphone', 'user', 'able', 'see', 'text', 'mail', 'iphone'] processed_text: ['user', 'able', 'see', 'text', 'mail', 'iphone', 'user', 'able', 'see', 'text', 'mail', 'iphone'] list_processed_text: [['user'], ['able'], ['see'], ['text'], ['mail'], ['iphone'], ['user'], ['able'], ['see'], ['text'], ['mail'], ['iphone']] k: 192 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 193 len: <class 'list'> Data: ['unable', 'sync', 'mail', 'outlook', 'wifi', 'unable', 'sync', 'mail', 'outlook', 'wifi'] processed_text: ['unable', 'sync', 'mail', 'outlook', 'wifi', 'unable', 'sync', 'mail', 'outlook', 'wifi'] list_processed_text: [['unable'], ['sync'], ['mail'], ['outlook'], ['wifi'], ['unable'], ['sync'], ['mail'], ['outlook'], ['wifi']] k: 194 len: <class 'list'> Data: ['crm', 'tab', 'appear', 'outlook', 'crm', 'tab', 'appear', 'outlook'] processed_text: ['crm', 'tab', 'appear', 'outlook', 'crm', 'tab', 'appear', 'outlook'] list_processed_text: [['crm'], ['tab'], ['appear'], ['outlook'], ['crm'], ['tab'], ['appear'], ['outlook']] k: 195 len: <class 'list'> Data: ['unable', 'submit', 'expense', 'report', 'locked', 'user', 'unable', 'submit', 'expense', 'report', 'locked', 'user'] processed_text: ['unable', 'submit', 'expense', 'report', 'locked', 'user', 'unable', 'submit', 'expense', 'report', 'locked', 'user'] list_processed_text: [['unable'], ['submit'], ['expense'], ['report'], ['locked'], ['user'], ['unable'], ['submit'], ['expense'], ['report'], ['locked'], ['user']] k: 196 len: <class 'list'> Data: ['titcket', 'update', 'inplant', 'titcket', 'update', 'inplant'] processed_text: ['titcket', 'update', 'inplant', 'titcket', 'update', 'inplant'] list_processed_text: [['titcket'], ['update'], ['inplant'], ['titcket'], ['update'], ['inplant']] k: 197 len: <class 'list'> Data: ['need', 'approve', 'new', 'product', 'request', 'need', 'approve', 'new', 'product', 'request'] processed_text: ['need', 'approve', 'new', 'product', 'request', 'need', 'approve', 'new', 'product', 'request'] list_processed_text: [['need'], ['approve'], ['new'], ['product'], ['request'], ['need'], ['approve'], ['new'], ['product'], ['request']] k: 198 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 199 len: <class 'list'> Data: ['changed', 'desktop', 'wallpaper', 'changed', 'desktop', 'wallpaper'] processed_text: ['changed', 'desktop', 'wallpaper', 'changed', 'desktop', 'wallpaper'] list_processed_text: [['changed'], ['desktop'], ['wallpaper'], ['changed'], ['desktop'], ['wallpaper']] k: 200 len: <class 'list'> Data: ['unable', 'open', 'website', 'name', 'xbdht', 'yrjhd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'benefit', 'advisor', 'run', 'browser'] processed_text: ['unable', 'open', 'website', 'name', 'xbdht', 'yrjhd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'benefit', 'advisor', 'run', 'browser'] list_processed_text: [['unable'], ['open'], ['website'], ['name'], ['xbdht'], ['yrjhd'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['benefit'], ['advisor'], ['run'], ['browser']] k: 201 len: <class 'list'> Data: ['msd', 'crm', 'assign', 'crm', 'license', 'nyrjkctu', 'tbhkenlo', 'use', 'profile', 'like', 'qmglkaru', 'qiwhfkdv'] processed_text: ['msd', 'crm', 'assign', 'crm', 'license', 'nyrjkctu', 'tbhkenlo', 'use', 'profile', 'like', 'qmglkaru', 'qiwhfkdv'] list_processed_text: [['msd'], ['crm'], ['assign'], ['crm'], ['license'], ['nyrjkctu'], ['tbhkenlo'], ['use'], ['profile'], ['like'], ['qmglkaru'], ['qiwhfkdv']] k: 202 len: <class 'list'> Data: ['sound', 'good', 'afternoon', 'issue', 'notebook', 'cannot', 'get', 'sound', 'cannot', 'participate', 'skype', 'call'] processed_text: ['sound', 'good', 'afternoon', 'issue', 'notebook', 'cannot', 'get', 'sound', 'cannot', 'participate', 'skype', 'call'] list_processed_text: [['sound'], ['good'], ['afternoon'], ['issue'], ['notebook'], ['cannot'], ['get'], ['sound'], ['cannot'], ['participate'], ['skype'], ['call']] k: 203 len: <class 'list'> Data: ['need', 'username', 'submit', 'insurance', 'need', 'username', 'submit', 'insurance'] processed_text: ['need', 'username', 'submit', 'insurance', 'need', 'username', 'submit', 'insurance'] list_processed_text: [['need'], ['username'], ['submit'], ['insurance'], ['need'], ['username'], ['submit'], ['insurance']] k: 204 len: <class 'list'> Data: ['query', 'external', 'browser', 'query', 'external', 'browser'] processed_text: ['query', 'external', 'browser', 'query', 'external', 'browser'] list_processed_text: [['query'], ['external'], ['browser'], ['query'], ['external'], ['browser']] k: 205 len: <class 'list'> Data: ['unable', 'access', 'benefit', 'apps', 'hr', 'tool', 'one', 'time', 'unable', 'access', 'benefit', 'apps', 'hr', 'tool', 'one', 'time', 'access', 'denied'] processed_text: ['unable', 'access', 'benefit', 'apps', 'hr', 'tool', 'one', 'time', 'unable', 'access', 'benefit', 'apps', 'hr', 'tool', 'one', 'time', 'access', 'denied'] list_processed_text: [['unable'], ['access'], ['benefit'], ['apps'], ['hr'], ['tool'], ['one'], ['time'], ['unable'], ['access'], ['benefit'], ['apps'], ['hr'], ['tool'], ['one'], ['time'], ['access'], ['denied']] k: 206 len: <class 'list'> Data: ['unable', 'see', 'current', 'course', 'ethic', 'unable', 'see', 'current', 'course', 'ethic', 'user', 'id', 'bdtryh'] processed_text: ['unable', 'see', 'current', 'course', 'ethic', 'unable', 'see', 'current', 'course', 'ethic', 'user', 'id', 'bdtryh'] list_processed_text: [['unable'], ['see'], ['current'], ['course'], ['ethic'], ['unable'], ['see'], ['current'], ['course'], ['ethic'], ['user'], ['id'], ['bdtryh']] k: 207 len: <class 'list'> Data: ['user', 'clicked', 'driver', 'update', 'manually', 'restarting', 'machine', 'receivng', 'error', 'user', 'clicked', 'driver', 'update', 'manually', 'restarting', 'machine', 'received', 'error', 'stating', 'pnp', 'detected', 'fatal', 'error'] processed_text: ['user', 'clicked', 'driver', 'update', 'manually', 'restarting', 'machine', 'receivng', 'error', 'user', 'clicked', 'driver', 'update', 'manually', 'restarting', 'machine', 'received', 'error', 'stating', 'pnp', 'detected', 'fatal', 'error'] list_processed_text: [['user'], ['clicked'], ['driver'], ['update'], ['manually'], ['restarting'], ['machine'], ['receivng'], ['error'], ['user'], ['clicked'], ['driver'], ['update'], ['manually'], ['restarting'], ['machine'], ['received'], ['error'], ['stating'], ['pnp'], ['detected'], ['fatal'], ['error']] k: 208 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 209 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 210 len: <class 'list'> Data: ['telephone', 'number', 'update', 'telephone', 'number', 'update'] processed_text: ['telephone', 'number', 'update', 'telephone', 'number', 'update'] list_processed_text: [['telephone'], ['number'], ['update'], ['telephone'], ['number'], ['update']] k: 211 len: <class 'list'> Data: ['insurance', 'information', 'insurance', 'information'] processed_text: ['insurance', 'information', 'insurance', 'information'] list_processed_text: [['insurance'], ['information'], ['insurance'], ['information']] k: 212 len: <class 'list'> Data: ['please', 'give', 'chrtyad', 'access', 'reporting', 'tool', 'ltaballotcsalesemp', 'map', 'thrdy', 'tgyu', 'team', 'ae', 'virtual', 'table', 'please', 'give', 'chrtyad', 'access', 'reporting', 'tool', 'ltaballotcsalesemp', 'map', 'thrdy', 'tgyu', 'team', 'ae', 'virtual', 'table'] processed_text: ['please', 'give', 'chrtyad', 'access', 'reporting', 'tool', 'ltaballotcsalesemp', 'map', 'thrdy', 'tgyu', 'team', 'ae', 'virtual', 'table', 'please', 'give', 'chrtyad', 'access', 'reporting', 'tool', 'ltaballotcsalesemp', 'map', 'thrdy', 'tgyu', 'team', 'ae', 'virtual', 'table'] list_processed_text: [['please'], ['give'], ['chrtyad'], ['access'], ['reporting'], ['tool'], ['ltaballotcsalesemp'], ['map'], ['thrdy'], ['tgyu'], ['team'], ['ae'], ['virtual'], ['table'], ['please'], ['give'], ['chrtyad'], ['access'], ['reporting'], ['tool'], ['ltaballotcsalesemp'], ['map'], ['thrdy'], ['tgyu'], ['team'], ['ae'], ['virtual'], ['table']] k: 213 len: <class 'list'> Data: ['loud', 'noise', 'gso', 'loud', 'noise', 'gso'] processed_text: ['loud', 'noise', 'gso', 'loud', 'noise', 'gso'] list_processed_text: [['loud'], ['noise'], ['gso'], ['loud'], ['noise'], ['gso']] k: 214 len: <class 'list'> Data: ['es', 'kiosk', 'user', 'password', 'reset', 'es', 'kiosk', 'user', 'password', 'reset'] processed_text: ['es', 'kiosk', 'user', 'password', 'reset', 'es', 'kiosk', 'user', 'password', 'reset'] list_processed_text: [['es'], ['kiosk'], ['user'], ['password'], ['reset'], ['es'], ['kiosk'], ['user'], ['password'], ['reset']] k: 215 len: <class 'list'> Data: ['network', 'outage', 'warehouse', 'node', 'company', 'ups', 'vpn', 'rtr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'warehouse', 'node', 'company', 'ups', 'vpn', 'rtr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['warehouse'], ['node'], ['company'], ['ups'], ['vpn'], ['rtr'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 216 len: <class 'list'> Data: ['aw', 'ticket', 'comment', 'added', 'hi', 'uacyltoe', 'hxgayczeed', 'sid', 'work', 'correctly', 'accounting', 'document', 'generated', 'automatically', 'without', 'error', 'approving', 'change', 'best'] processed_text: ['aw', 'ticket', 'comment', 'added', 'hi', 'uacyltoe', 'hxgayczeed', 'sid', 'work', 'correctly', 'accounting', 'document', 'generated', 'automatically', 'without', 'error', 'approving', 'change', 'best'] list_processed_text: [['aw'], ['ticket'], ['comment'], ['added'], ['hi'], ['uacyltoe'], ['hxgayczeed'], ['sid'], ['work'], ['correctly'], ['accounting'], ['document'], ['generated'], ['automatically'], ['without'], ['error'], ['approving'], ['change'], ['best']] k: 217 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 218 len: <class 'list'> Data: ['export', 'shipment', 'grinding', 'mahcine', 'khdgd', 'apac', 'advance', 'information', 'hdytrkfiu', 'pm', 'xjzcbgnp', 'vfkwscao', 'export', 'shipment', 'grinding', 'mahcine', 'khdgd', 'apac', 'advance', 'information', 'pushixepyfbga', 'wtqdyoin', 'dispatching', 'grinding', 'machine', 'khdgd', 'apac', 'tomorrow', 'advance', 'information', 'everything', 'place', 'seek', 'support', 'area', 'help', 'u', 'clearing', 'consignment', 'tomorrow'] processed_text: ['export', 'shipment', 'grinding', 'mahcine', 'khdgd', 'apac', 'advance', 'information', 'hdytrkfiu', 'pm', 'xjzcbgnp', 'vfkwscao', 'export', 'shipment', 'grinding', 'mahcine', 'khdgd', 'apac', 'advance', 'information', 'pushixepyfbga', 'wtqdyoin', 'dispatching', 'grinding', 'machine', 'khdgd', 'apac', 'tomorrow', 'advance', 'information', 'everything', 'place', 'seek', 'support', 'area', 'help', 'u', 'clearing', 'consignment', 'tomorrow'] list_processed_text: [['export'], ['shipment'], ['grinding'], ['mahcine'], ['khdgd'], ['apac'], ['advance'], ['information'], ['hdytrkfiu'], ['pm'], ['xjzcbgnp'], ['vfkwscao'], ['export'], ['shipment'], ['grinding'], ['mahcine'], ['khdgd'], ['apac'], ['advance'], ['information'], ['pushixepyfbga'], ['wtqdyoin'], ['dispatching'], ['grinding'], ['machine'], ['khdgd'], ['apac'], ['tomorrow'], ['advance'], ['information'], ['everything'], ['place'], ['seek'], ['support'], ['area'], ['help'], ['u'], ['clearing'], ['consignment'], ['tomorrow']] k: 219 len: <class 'list'> Data: ['please', 'add', 'work', 'phone', 'number', 'profile', 'contact', 'phone'] processed_text: ['please', 'add', 'work', 'phone', 'number', 'profile', 'contact', 'phone'] list_processed_text: [['please'], ['add'], ['work'], ['phone'], ['number'], ['profile'], ['contact'], ['phone']] k: 220 len: <class 'list'> Data: ['adding', 'member', 'dl', 'adding', 'member', 'dl'] processed_text: ['adding', 'member', 'dl', 'adding', 'member', 'dl'] list_processed_text: [['adding'], ['member'], ['dl'], ['adding'], ['member'], ['dl']] k: 221 len: <class 'list'> Data: ['java', 'issue', 'uacyltoe', 'hxgaycze', 'laptop', 'java', 'issue', 'uacyltoe', 'hxgaycze', 'laptop'] processed_text: ['java', 'issue', 'uacyltoe', 'hxgaycze', 'laptop', 'java', 'issue', 'uacyltoe', 'hxgaycze', 'laptop'] list_processed_text: [['java'], ['issue'], ['uacyltoe'], ['hxgaycze'], ['laptop'], ['java'], ['issue'], ['uacyltoe'], ['hxgaycze'], ['laptop']] k: 222 len: <class 'list'> Data: ['support', 'r', 'fa', 'gstry', 'arexjftu', 'ohwngl', 'support', 'r', 'fa', 'konnica', 'arexjftu', 'ohwngl'] processed_text: ['support', 'r', 'fa', 'gstry', 'arexjftu', 'ohwngl', 'support', 'r', 'fa', 'konnica', 'arexjftu', 'ohwngl'] list_processed_text: [['support'], ['r'], ['fa'], ['gstry'], ['arexjftu'], ['ohwngl'], ['support'], ['r'], ['fa'], ['konnica'], ['arexjftu'], ['ohwngl']] k: 223 len: <class 'list'> Data: ['problem', 'bluescreen', 'hello', 'happened', 'pc', 'hung', 'presented', 'blue', 'screen', 'white', 'writing'] processed_text: ['problem', 'bluescreen', 'hello', 'happened', 'pc', 'hung', 'presented', 'blue', 'screen', 'white', 'writing'] list_processed_text: [['problem'], ['bluescreen'], ['hello'], ['happened'], ['pc'], ['hung'], ['presented'], ['blue'], ['screen'], ['white'], ['writing']] k: 224 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 225 len: <class 'list'> Data: ['eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp', 'eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp'] processed_text: ['eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp', 'eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp'] list_processed_text: [['eu'], ['tool'], ['crash'], ['confirmation'], ['deleted'], ['able'], ['remove'], ['scrap'], ['confirmation'], ['rectified'], ['erp'], ['eu'], ['tool'], ['crash'], ['confirmation'], ['deleted'], ['able'], ['remove'], ['scrap'], ['confirmation'], ['rectified'], ['erp']] k: 226 len: <class 'list'> Data: ['enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'name', 'fdgrty', 'summary', 'need', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enabled'] processed_text: ['enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'name', 'fdgrty', 'summary', 'need', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enabled'] list_processed_text: [['enable'], ['bgdxitwu'], ['dhcopwxa'], ['active'], ['directory'], ['account'], ['enable'], ['bgdxitwu'], ['dhcopwxa'], ['active'], ['directory'], ['account'], ['name'], ['fdgrty'], ['summary'], ['need'], ['bgdxitwu'], ['dhcopwxa'], ['active'], ['directory'], ['account'], ['enabled']] k: 227 len: <class 'list'> Data: ['sync', 'email', 'issue', 'sync', 'email', 'issue'] processed_text: ['sync', 'email', 'issue', 'sync', 'email', 'issue'] list_processed_text: [['sync'], ['email'], ['issue'], ['sync'], ['email'], ['issue']] k: 228 len: <class 'list'> Data: ['internet', 'explorer', 'issue', 'user', 'issue', 'internet', 'explorer', 'page', 'keep', 'refreshing', 'end', 'dll', 'error'] processed_text: ['internet', 'explorer', 'issue', 'user', 'issue', 'internet', 'explorer', 'page', 'keep', 'refreshing', 'end', 'dll', 'error'] list_processed_text: [['internet'], ['explorer'], ['issue'], ['user'], ['issue'], ['internet'], ['explorer'], ['page'], ['keep'], ['refreshing'], ['end'], ['dll'], ['error']] k: 229 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 230 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 231 len: <class 'list'> Data: ['unable', 'view', 'payslip', 'unable', 'view', 'payslip'] processed_text: ['unable', 'view', 'payslip', 'unable', 'view', 'payslip'] list_processed_text: [['unable'], ['view'], ['payslip'], ['unable'], ['view'], ['payslip']] k: 232 len: <class 'list'> Data: ['customer', 'getting', 'order', 'acknowledgement', 'automatically', 'two', 'customer', 'account', 'getting', 'order', 'acknowledgement', 'automatically', 'like', 'past', 'year', 'top', 'parent', 'accts', 'automatically', 'sending', 'acknowledgement', 'since', 'getting', 'someone', 'look', 'affecting', 'customer', 'paying', 'bill', 'use', 'acknowledgement', 'receiver', 'pay', 'bill', 'senior', 'sale', 'engineer', 'company', 'inc'] processed_text: ['customer', 'getting', 'order', 'acknowledgement', 'automatically', 'two', 'customer', 'account', 'getting', 'order', 'acknowledgement', 'automatically', 'like', 'past', 'year', 'top', 'parent', 'accts', 'automatically', 'sending', 'acknowledgement', 'since', 'getting', 'someone', 'look', 'affecting', 'customer', 'paying', 'bill', 'use', 'acknowledgement', 'receiver', 'pay', 'bill', 'senior', 'sale', 'engineer', 'company', 'inc'] list_processed_text: [['customer'], ['getting'], ['order'], ['acknowledgement'], ['automatically'], ['two'], ['customer'], ['account'], ['getting'], ['order'], ['acknowledgement'], ['automatically'], ['like'], ['past'], ['year'], ['top'], ['parent'], ['accts'], ['automatically'], ['sending'], ['acknowledgement'], ['since'], ['getting'], ['someone'], ['look'], ['affecting'], ['customer'], ['paying'], ['bill'], ['use'], ['acknowledgement'], ['receiver'], ['pay'], ['bill'], ['senior'], ['sale'], ['engineer'], ['company'], ['inc']] k: 233 len: <class 'list'> Data: ['production', 'order', 'locked', 'production', 'order', 'locked', 'user', 'gtxuamif', 'pamxszek', 'one', 'able', 'unlock', 'order', 'unlocked', 'inspection', 'lot', 'processed', 'gtxuamif', 'pamxszek'] processed_text: ['production', 'order', 'locked', 'production', 'order', 'locked', 'user', 'gtxuamif', 'pamxszek', 'one', 'able', 'unlock', 'order', 'unlocked', 'inspection', 'lot', 'processed', 'gtxuamif', 'pamxszek'] list_processed_text: [['production'], ['order'], ['locked'], ['production'], ['order'], ['locked'], ['user'], ['gtxuamif'], ['pamxszek'], ['one'], ['able'], ['unlock'], ['order'], ['unlocked'], ['inspection'], ['lot'], ['processed'], ['gtxuamif'], ['pamxszek']] k: 234 len: <class 'list'> Data: ['need', 'access', 'finance', 'section', 'hub', 'could', 'always', 'get', 'finance', 'section', 'need', 'access', 'please', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] processed_text: ['need', 'access', 'finance', 'section', 'hub', 'could', 'always', 'get', 'finance', 'section', 'need', 'access', 'please', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] list_processed_text: [['need'], ['access'], ['finance'], ['section'], ['hub'], ['could'], ['always'], ['get'], ['finance'], ['section'], ['need'], ['access'], ['please'], ['bwfhtumx'], ['japznrvb'], ['regional'], ['controller']] k: 235 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 236 len: <class 'list'> Data: ['received', 'message', 'tell', 'email', 'mentioned', 'sent', 'received', 'message', 'tell', 'email', 'mentioned', 'sent'] processed_text: ['received', 'message', 'tell', 'email', 'mentioned', 'sent', 'received', 'message', 'tell', 'email', 'mentioned', 'sent'] list_processed_text: [['received'], ['message'], ['tell'], ['email'], ['mentioned'], ['sent'], ['received'], ['message'], ['tell'], ['email'], ['mentioned'], ['sent']] k: 237 len: <class 'list'> Data: ['email', 'address', 'confirmation', 'email', 'address', 'confirmation'] processed_text: ['email', 'address', 'confirmation', 'email', 'address', 'confirmation'] list_processed_text: [['email'], ['address'], ['confirmation'], ['email'], ['address'], ['confirmation']] k: 238 len: <class 'list'> Data: ['erp', 'pi', 'msd', 'crm', 'connectivity', 'issue', 'serirtce', 'certificate', 'renewal', 'hi', 'connectivity', 'issue', 'erp', 'pi', 'msd', 'crm', 'due', 'certificate', 'renewal', 'azure', 'website', 'certificate', 'yet', 'updated', 'erp', 'pi', 'side', 'issue', 'change', 'data', 'record', 'account', 'sale', 'area', 'data', 'partner', 'function', 'contact', 'lead', 'processed', 'erp', 'pi', 'worked', 'msd', 'crm', 'vice', 'versa', 'environment', 'prod', 'qa', 'dev', 'issue', 'start', 'time', 'pm', 'troubleshooting', 'step', 'tryhdty', 'customer', 'master', 'team', 'reported', 'issue', 'prospect', 'account', 'created', 'erp', 'come', 'msd', 'yet', 'erp', 'pi', 'team', 'observed', 'record', 'still', 'awaiting', 'acknowledgement', 'status', 'basically', 'mean', 'yet', 'delivered', 'received', 'target', 'system', 'upon', 'log', 'analysis', 'trying', 'identify', 'root', 'cause', 'erp', 'pi', 'basis', 'msd', 'team', 'observed', 'issue', 'started', 'production', 'environment', 'since', 'around', 'est', 'observed', 'behavior', 'azure', 'mfg', 'tool', 'erp', 'pi', 'log', 'non', 'production', 'environment', 'well', 'find', 'error', 'screenshots', 'erp', 'pi', 'system', 'mail', 'chain', 'root', 'cause', 'appears', 'certificate', 'azure', 'webapps', 'updated', 'nearing', 'expiration', 'date', 'th', 'new', 'certificate', 'updated', 'erp', 'pi', 'even', 'aware', 'change', 'production', 'azure', 'webapp', 'company', 'crm', 'sp', 'mfg', 'toolt', 'azurewebsites', 'net', 'got', 'restarted', 'around', 'connectivity', 'appears', 'broken', 'next', 'step', 'need', 'azure', 'webapp', 'certificate', 'chain', 'sent', 'erp', 'basis', 'team', 'update', 'erp', 'pi', 'system', 'reach', 'receiving', 'certificate', 'detail', 'azure', 'admin', 'house', 'want', 'open', 'case', 'microsoft', 'certificate', 'received', 'maybe', 'first', 'qa', 'system', 'upon', 'confirmation', 'work', 'apply', 'production', 'environment'] processed_text: ['erp', 'pi', 'msd', 'crm', 'connectivity', 'issue', 'serirtce', 'certificate', 'renewal', 'hi', 'connectivity', 'issue', 'erp', 'pi', 'msd', 'crm', 'due', 'certificate', 'renewal', 'azure', 'website', 'certificate', 'yet', 'updated', 'erp', 'pi', 'side', 'issue', 'change', 'data', 'record', 'account', 'sale', 'area', 'data', 'partner', 'function', 'contact', 'lead', 'processed', 'erp', 'pi', 'worked', 'msd', 'crm', 'vice', 'versa', 'environment', 'prod', 'qa', 'dev', 'issue', 'start', 'time', 'pm', 'troubleshooting', 'step', 'tryhdty', 'customer', 'master', 'team', 'reported', 'issue', 'prospect', 'account', 'created', 'erp', 'come', 'msd', 'yet', 'erp', 'pi', 'team', 'observed', 'record', 'still', 'awaiting', 'acknowledgement', 'status', 'basically', 'mean', 'yet', 'delivered', 'received', 'target', 'system', 'upon', 'log', 'analysis', 'trying', 'identify', 'root', 'cause', 'erp', 'pi', 'basis', 'msd', 'team', 'observed', 'issue', 'started', 'production', 'environment', 'since', 'around', 'est', 'observed', 'behavior', 'azure', 'mfg', 'tool', 'erp', 'pi', 'log', 'non', 'production', 'environment', 'well', 'find', 'error', 'screenshots', 'erp', 'pi', 'system', 'mail', 'chain', 'root', 'cause', 'appears', 'certificate', 'azure', 'webapps', 'updated', 'nearing', 'expiration', 'date', 'th', 'new', 'certificate', 'updated', 'erp', 'pi', 'even', 'aware', 'change', 'production', 'azure', 'webapp', 'company', 'crm', 'sp', 'mfg', 'toolt', 'azurewebsites', 'net', 'got', 'restarted', 'around', 'connectivity', 'appears', 'broken', 'next', 'step', 'need', 'azure', 'webapp', 'certificate', 'chain', 'sent', 'erp', 'basis', 'team', 'update', 'erp', 'pi', 'system', 'reach', 'receiving', 'certificate', 'detail', 'azure', 'admin', 'house', 'want', 'open', 'case', 'microsoft', 'certificate', 'received', 'maybe', 'first', 'qa', 'system', 'upon', 'confirmation', 'work', 'apply', 'production', 'environment'] list_processed_text: [['erp'], ['pi'], ['msd'], ['crm'], ['connectivity'], ['issue'], ['serirtce'], ['certificate'], ['renewal'], ['hi'], ['connectivity'], ['issue'], ['erp'], ['pi'], ['msd'], ['crm'], ['due'], ['certificate'], ['renewal'], ['azure'], ['website'], ['certificate'], ['yet'], ['updated'], ['erp'], ['pi'], ['side'], ['issue'], ['change'], ['data'], ['record'], ['account'], ['sale'], ['area'], ['data'], ['partner'], ['function'], ['contact'], ['lead'], ['processed'], ['erp'], ['pi'], ['worked'], ['msd'], ['crm'], ['vice'], ['versa'], ['environment'], ['prod'], ['qa'], ['dev'], ['issue'], ['start'], ['time'], ['pm'], ['troubleshooting'], ['step'], ['tryhdty'], ['customer'], ['master'], ['team'], ['reported'], ['issue'], ['prospect'], ['account'], ['created'], ['erp'], ['come'], ['msd'], ['yet'], ['erp'], ['pi'], ['team'], ['observed'], ['record'], ['still'], ['awaiting'], ['acknowledgement'], ['status'], ['basically'], ['mean'], ['yet'], ['delivered'], ['received'], ['target'], ['system'], ['upon'], ['log'], ['analysis'], ['trying'], ['identify'], ['root'], ['cause'], ['erp'], ['pi'], ['basis'], ['msd'], ['team'], ['observed'], ['issue'], ['started'], ['production'], ['environment'], ['since'], ['around'], ['est'], ['observed'], ['behavior'], ['azure'], ['mfg'], ['tool'], ['erp'], ['pi'], ['log'], ['non'], ['production'], ['environment'], ['well'], ['find'], ['error'], ['screenshots'], ['erp'], ['pi'], ['system'], ['mail'], ['chain'], ['root'], ['cause'], ['appears'], ['certificate'], ['azure'], ['webapps'], ['updated'], ['nearing'], ['expiration'], ['date'], ['th'], ['new'], ['certificate'], ['updated'], ['erp'], ['pi'], ['even'], ['aware'], ['change'], ['production'], ['azure'], ['webapp'], ['company'], ['crm'], ['sp'], ['mfg'], ['toolt'], ['azurewebsites'], ['net'], ['got'], ['restarted'], ['around'], ['connectivity'], ['appears'], ['broken'], ['next'], ['step'], ['need'], ['azure'], ['webapp'], ['certificate'], ['chain'], ['sent'], ['erp'], ['basis'], ['team'], ['update'], ['erp'], ['pi'], ['system'], ['reach'], ['receiving'], ['certificate'], ['detail'], ['azure'], ['admin'], ['house'], ['want'], ['open'], ['case'], ['microsoft'], ['certificate'], ['received'], ['maybe'], ['first'], ['qa'], ['system'], ['upon'], ['confirmation'], ['work'], ['apply'], ['production'], ['environment']] k: 239 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'kd', 'detailed', 'description', 'problem', 'error', 'say', 'need', 'download', 'install', 'software', 'driver', 'hostname', 'computer', 'print', 'kd', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'word', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'sure', 'mean', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'erp', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'kd', 'detailed', 'description', 'problem', 'error', 'say', 'need', 'download', 'install', 'software', 'driver', 'hostname', 'computer', 'print', 'kd', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'word', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'sure', 'mean', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'erp', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['kd'], ['detailed'], ['description'], ['problem'], ['error'], ['say'], ['need'], ['download'], ['install'], ['software'], ['driver'], ['hostname'], ['computer'], ['print'], ['kd'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['word'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['window'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['sure'], ['mean'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['erp'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 240 len: <class 'list'> Data: ['power', 'outage', 'australia', 'australia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'australia', 'australia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['australia'], ['australia'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 241 len: <class 'list'> Data: ['unable', 'log', 'erp', 'hello', 'team', 'unable', 'log', 'erp', 'account', 'even', 'correct', 'password', 'id', 'accepted', 'need', 'resolution', 'urgent', 'basis'] processed_text: ['unable', 'log', 'erp', 'hello', 'team', 'unable', 'log', 'erp', 'account', 'even', 'correct', 'password', 'id', 'accepted', 'need', 'resolution', 'urgent', 'basis'] list_processed_text: [['unable'], ['log'], ['erp'], ['hello'], ['team'], ['unable'], ['log'], ['erp'], ['account'], ['even'], ['correct'], ['password'], ['id'], ['accepted'], ['need'], ['resolution'], ['urgent'], ['basis']] k: 242 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 243 len: <class 'list'> Data: ['activate', 'iphone', 'iygsxftl', 'hysrbgad', 'set', 'spare', 'company', 'owned', 'iphone', 'cause', 'old', 'one', 'broken', 'agreement', 'supervisor', 'appoval', 'attached', 'account', 'quarantined', 'could', 'please', 'activate', 'new', 'device'] processed_text: ['activate', 'iphone', 'iygsxftl', 'hysrbgad', 'set', 'spare', 'company', 'owned', 'iphone', 'cause', 'old', 'one', 'broken', 'agreement', 'supervisor', 'appoval', 'attached', 'account', 'quarantined', 'could', 'please', 'activate', 'new', 'device'] list_processed_text: [['activate'], ['iphone'], ['iygsxftl'], ['hysrbgad'], ['set'], ['spare'], ['company'], ['owned'], ['iphone'], ['cause'], ['old'], ['one'], ['broken'], ['agreement'], ['supervisor'], ['appoval'], ['attached'], ['account'], ['quarantined'], ['could'], ['please'], ['activate'], ['new'], ['device']] k: 244 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 245 len: <class 'list'> Data: ['unable', 'print', 'printer', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'] processed_text: ['unable', 'print', 'printer', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'] list_processed_text: [['unable'], ['print'], ['printer'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['ayrhcfxi'], ['zartupsw'], ['hi'], ['ayrhcfxi'], ['zartupsw']] k: 246 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 247 len: <class 'list'> Data: ['outlook', 'crashing', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hello', 'gstdy', 'yrada', 'hi', 'ayrhcfxi', 'zartupsw', 'hello'] processed_text: ['outlook', 'crashing', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hello', 'gstdy', 'yrada', 'hi', 'ayrhcfxi', 'zartupsw', 'hello'] list_processed_text: [['outlook'], ['crashing'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['ayrhcfxi'], ['zartupsw'], ['hello'], ['gstdy'], ['yrada'], ['hi'], ['ayrhcfxi'], ['zartupsw'], ['hello']] k: 248 len: <class 'list'> Data: ['need', 'file', 'restored', 'drive', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hello'] processed_text: ['need', 'file', 'restored', 'drive', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'ayrhcfxi', 'zartupsw', 'hello'] list_processed_text: [['need'], ['file'], ['restored'], ['drive'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['ayrhcfxi'], ['zartupsw'], ['hello']] k: 249 len: <class 'list'> Data: ['sid', 'logon', 'balancing', 'error', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'tyss', 'ashdtyf', 'greeting', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'] processed_text: ['sid', 'logon', 'balancing', 'error', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'tyss', 'ashdtyf', 'greeting', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'] list_processed_text: [['sid'], ['logon'], ['balancing'], ['error'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['tyss'], ['ashdtyf'], ['greeting'], ['ayrhcfxi'], ['zartupsw'], ['hi'], ['ayrhcfxi'], ['zartupsw']] k: 250 len: <class 'list'> Data: ['unable', 'login', 'sfb', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'hello', 'problem', 'signing', 'skype'] processed_text: ['unable', 'login', 'sfb', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'hello', 'problem', 'signing', 'skype'] list_processed_text: [['unable'], ['login'], ['sfb'], ['name'], ['obanjrhg'], ['rnafleys'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['hello'], ['problem'], ['signing'], ['skype']] k: 251 len: <class 'list'> Data: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'mail', 'please', 'password', 'r', 'fygrwuna', 'gomcekzi', 'mail', 'reset', 'please', 'new', 'password', 'manager'] processed_text: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'mail', 'please', 'password', 'r', 'fygrwuna', 'gomcekzi', 'mail', 'reset', 'please', 'new', 'password', 'manager'] list_processed_text: [['reset'], ['password'], ['fygrwuna'], ['gomcekzi'], ['mail'], ['please'], ['password'], ['r'], ['fygrwuna'], ['gomcekzi'], ['mail'], ['reset'], ['please'], ['new'], ['password'], ['manager']] k: 252 len: <class 'list'> Data: ['password', 'resetfor', 'sid', 'hello', 'please', 'unlock', 'reset', 'password', 'sid', 'system'] processed_text: ['password', 'resetfor', 'sid', 'hello', 'please', 'unlock', 'reset', 'password', 'sid', 'system'] list_processed_text: [['password'], ['resetfor'], ['sid'], ['hello'], ['please'], ['unlock'], ['reset'], ['password'], ['sid'], ['system']] k: 253 len: <class 'list'> Data: ['babiluntr', 'client', 'license', 'expired', 'client', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel', 'babiluntr', 'client', 'license', 'expired', 'client', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel'] processed_text: ['babiluntr', 'client', 'license', 'expired', 'client', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel', 'babiluntr', 'client', 'license', 'expired', 'client', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel'] list_processed_text: [['babiluntr'], ['client'], ['license'], ['expired'], ['client'], ['uacyltoe'], ['hxgaycze'], ['mode'], ['eagl'], ['tel'], ['babiluntr'], ['client'], ['license'], ['expired'], ['client'], ['uacyltoe'], ['hxgaycze'], ['mode'], ['eagl'], ['tel']] k: 254 len: <class 'list'> Data: ['outbound', 'call', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'call', 'working', 'fine', 'please', 'check', 'outbound', 'call', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'call', 'working', 'fine', 'please', 'check'] processed_text: ['outbound', 'call', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'call', 'working', 'fine', 'please', 'check', 'outbound', 'call', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'call', 'working', 'fine', 'please', 'check'] list_processed_text: [['outbound'], ['call'], ['possible'], ['via'], ['germany'], ['pbx'], ['system'], ['inbound'], ['call'], ['working'], ['fine'], ['please'], ['check'], ['outbound'], ['call'], ['possible'], ['via'], ['germany'], ['pbx'], ['system'], ['inbound'], ['call'], ['working'], ['fine'], ['please'], ['check']] k: 255 len: <class 'list'> Data: ['problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx', 'problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx'] processed_text: ['problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx', 'problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx'] list_processed_text: [['problem'], ['mit'], ['laufwerk'], ['laeusvjo'], ['fvaihgpx'], ['problem'], ['mit'], ['laufwerk'], ['laeusvjo'], ['fvaihgpx']] k: 256 len: <class 'list'> Data: ['pls', 'also', 'extend', 'mm', 'purchasing', 'user', 'account', 'need', 'create', 'pr', 'mm', 'pls', 'also', 'extend', 'mm', 'purchasing', 'user', 'account', 'need', 'create', 'pr', 'mm'] processed_text: ['pls', 'also', 'extend', 'mm', 'purchasing', 'user', 'account', 'need', 'create', 'pr', 'mm', 'pls', 'also', 'extend', 'mm', 'purchasing', 'user', 'account', 'need', 'create', 'pr', 'mm'] list_processed_text: [['pls'], ['also'], ['extend'], ['mm'], ['purchasing'], ['user'], ['account'], ['need'], ['create'], ['pr'], ['mm'], ['pls'], ['also'], ['extend'], ['mm'], ['purchasing'], ['user'], ['account'], ['need'], ['create'], ['pr'], ['mm']] k: 257 len: <class 'list'> Data: ['generated', 'dn', 'dear', 'would', 'pls', 'help', 'check', 'dn', 'generated', 'dn'] processed_text: ['generated', 'dn', 'dear', 'would', 'pls', 'help', 'check', 'dn', 'generated', 'dn'] list_processed_text: [['generated'], ['dn'], ['dear'], ['would'], ['pls'], ['help'], ['check'], ['dn'], ['generated'], ['dn']] k: 258 len: <class 'list'> Data: ['itry', 'open', 'excel', 'file', 'microsoft', 'online', 'work', 'name', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'itry', 'open', 'excel', 'file', 'microsoft', 'online', 'work'] processed_text: ['itry', 'open', 'excel', 'file', 'microsoft', 'online', 'work', 'name', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'itry', 'open', 'excel', 'file', 'microsoft', 'online', 'work'] list_processed_text: [['itry'], ['open'], ['excel'], ['file'], ['microsoft'], ['online'], ['work'], ['name'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['itry'], ['open'], ['excel'], ['file'], ['microsoft'], ['online'], ['work']] k: 259 len: <class 'list'> Data: ['unable', 'login', 'hr', 'tool', 'unable', 'login', 'hr', 'tool'] processed_text: ['unable', 'login', 'hr', 'tool', 'unable', 'login', 'hr', 'tool'] list_processed_text: [['unable'], ['login'], ['hr'], ['tool'], ['unable'], ['login'], ['hr'], ['tool']] k: 260 len: <class 'list'> Data: ['vip', 'unable', 'access', 'payandtaxes', 'tab', 'several', 'day', 'hang', 'time', 'clock', 'need', 'reso', 'gstdy', 'tehdy', 'vkjdgtxb', 'pkinmjqs', 'fw', 'access', 'time', 'dear'] processed_text: ['vip', 'unable', 'access', 'payandtaxes', 'tab', 'several', 'day', 'hang', 'time', 'clock', 'need', 'reso', 'gstdy', 'tehdy', 'vkjdgtxb', 'pkinmjqs', 'fw', 'access', 'time', 'dear'] list_processed_text: [['vip'], ['unable'], ['access'], ['payandtaxes'], ['tab'], ['several'], ['day'], ['hang'], ['time'], ['clock'], ['need'], ['reso'], ['gstdy'], ['tehdy'], ['vkjdgtxb'], ['pkinmjqs'], ['fw'], ['access'], ['time'], ['dear']] k: 261 len: <class 'list'> Data: ['business', 'client', 'working', 'business', 'client', 'working'] processed_text: ['business', 'client', 'working', 'business', 'client', 'working'] list_processed_text: [['business'], ['client'], ['working'], ['business'], ['client'], ['working']] k: 262 len: <class 'list'> Data: ['reporting', 'tool', 'erp', 'hana', 'error', 'hi', 'everytime', 'want', 'set', 'filter', 'reporting', 'tool', 'data', 'source', 'pk', 'publish', 'pk', 'otc', 'billing', 'otc', 'billing', 'getting', 'error', 'message'] processed_text: ['reporting', 'tool', 'erp', 'hana', 'error', 'hi', 'everytime', 'want', 'set', 'filter', 'reporting', 'tool', 'data', 'source', 'pk', 'publish', 'pk', 'otc', 'billing', 'otc', 'billing', 'getting', 'error', 'message'] list_processed_text: [['reporting'], ['tool'], ['erp'], ['hana'], ['error'], ['hi'], ['everytime'], ['want'], ['set'], ['filter'], ['reporting'], ['tool'], ['data'], ['source'], ['pk'], ['publish'], ['pk'], ['otc'], ['billing'], ['otc'], ['billing'], ['getting'], ['error'], ['message']] k: 263 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 264 len: <class 'list'> Data: ['please', 'reset', 'erp', 'bex', 'password', 'seem', 'synchronized', 'thanks', 'fmzdkyqv', 'dbrslnhe', 'director', 'finance', 'business', 'company'] processed_text: ['please', 'reset', 'erp', 'bex', 'password', 'seem', 'synchronized', 'thanks', 'fmzdkyqv', 'dbrslnhe', 'director', 'finance', 'business', 'company'] list_processed_text: [['please'], ['reset'], ['erp'], ['bex'], ['password'], ['seem'], ['synchronized'], ['thanks'], ['fmzdkyqv'], ['dbrslnhe'], ['director'], ['finance'], ['business'], ['company']] k: 265 len: <class 'list'> Data: ['netweaver', 'longer', 'work', 'hello', 'netweaver', 'longer', 'work', 'longer', 'open', 'best', 'regard'] processed_text: ['netweaver', 'longer', 'work', 'hello', 'netweaver', 'longer', 'work', 'longer', 'open', 'best', 'regard'] list_processed_text: [['netweaver'], ['longer'], ['work'], ['hello'], ['netweaver'], ['longer'], ['work'], ['longer'], ['open'], ['best'], ['regard']] k: 266 len: <class 'list'> Data: ['ndigung', 'fgxprnub', 'hlanwgqj', 'effective', 'approved', 'ndigung', 'fgxprnub', 'hlanwgqj', 'effective', 'approved'] processed_text: ['ndigung', 'fgxprnub', 'hlanwgqj', 'effective', 'approved', 'ndigung', 'fgxprnub', 'hlanwgqj', 'effective', 'approved'] list_processed_text: [['ndigung'], ['fgxprnub'], ['hlanwgqj'], ['effective'], ['approved'], ['ndigung'], ['fgxprnub'], ['hlanwgqj'], ['effective'], ['approved']] k: 267 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 268 len: <class 'list'> Data: ['outlook', 'setting', 'changed', 'outlook', 'setting', 'changed'] processed_text: ['outlook', 'setting', 'changed', 'outlook', 'setting', 'changed'] list_processed_text: [['outlook'], ['setting'], ['changed'], ['outlook'], ['setting'], ['changed']] k: 269 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 270 len: <class 'list'> Data: ['new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'password', 'r', 'account', 'longer', 'work', 'employee', 'present', 'kw', 'early', 'shift'] processed_text: ['new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'password', 'r', 'account', 'longer', 'work', 'employee', 'present', 'kw', 'early', 'shift'] list_processed_text: [['new'], ['password'], ['r'], ['account'], ['name'], ['tgryhu'], ['hgygrtui'], ['new'], ['password'], ['r'], ['account'], ['name'], ['tgryhu'], ['hgygrtui'], ['password'], ['r'], ['account'], ['longer'], ['work'], ['employee'], ['present'], ['kw'], ['early'], ['shift']] k: 271 len: <class 'list'> Data: ['check', 'status', 'tab', 'appearing', 'purchasing', 'screen', 'check', 'status', 'button', 'seen', 'purchasing', 'screen'] processed_text: ['check', 'status', 'tab', 'appearing', 'purchasing', 'screen', 'check', 'status', 'button', 'seen', 'purchasing', 'screen'] list_processed_text: [['check'], ['status'], ['tab'], ['appearing'], ['purchasing'], ['screen'], ['check'], ['status'], ['button'], ['seen'], ['purchasing'], ['screen']] k: 272 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'printer', 'scanner', 'em', 'scanner', 'longer', 'find', 'path'] processed_text: ['printer', 'problem', 'issue', 'information', 'printer', 'scanner', 'em', 'scanner', 'longer', 'find', 'path'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['printer'], ['scanner'], ['em'], ['scanner'], ['longer'], ['find'], ['path']] k: 273 len: <class 'list'> Data: ['unable', 'open', 'erp', 'sid', 'office', 'without', 'logging', 'vpn', 'remote', 'unable', 'login', 'erp', 'throw', 'balancing', 'error'] processed_text: ['unable', 'open', 'erp', 'sid', 'office', 'without', 'logging', 'vpn', 'remote', 'unable', 'login', 'erp', 'throw', 'balancing', 'error'] list_processed_text: [['unable'], ['open'], ['erp'], ['sid'], ['office'], ['without'], ['logging'], ['vpn'], ['remote'], ['unable'], ['login'], ['erp'], ['throw'], ['balancing'], ['error']] k: 274 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 275 len: <class 'list'> Data: ['skype', 'meeting', 'hello', 'provide', 'immediately', 'skype', 'meeting', 'option', 'presently', 'enabled', 'best'] processed_text: ['skype', 'meeting', 'hello', 'provide', 'immediately', 'skype', 'meeting', 'option', 'presently', 'enabled', 'best'] list_processed_text: [['skype'], ['meeting'], ['hello'], ['provide'], ['immediately'], ['skype'], ['meeting'], ['option'], ['presently'], ['enabled'], ['best']] k: 276 len: <class 'list'> Data: ['outlook', 'folder', 'folder', 'office', 'outlook', 'folder', 'folder', 'office'] processed_text: ['outlook', 'folder', 'folder', 'office', 'outlook', 'folder', 'folder', 'office'] list_processed_text: [['outlook'], ['folder'], ['folder'], ['office'], ['outlook'], ['folder'], ['folder'], ['office']] k: 277 len: <class 'list'> Data: ['login', 'skype', 'dear', 'login', 'skype', 'would', 'pls', 'help', 'check'] processed_text: ['login', 'skype', 'dear', 'login', 'skype', 'would', 'pls', 'help', 'check'] list_processed_text: [['login'], ['skype'], ['dear'], ['login'], ['skype'], ['would'], ['pls'], ['help'], ['check']] k: 278 len: <class 'list'> Data: ['sn', 'o', 'identified', 'unavailable', 'via', 'esr', 'monitoring', 'service', 'esr', 'connectivity', 'sn', 'o', 'identified', 'unavailable', 'via', 'esr', 'monitoring', 'service', 'esr', 'connectivity'] processed_text: ['sn', 'o', 'identified', 'unavailable', 'via', 'esr', 'monitoring', 'service', 'esr', 'connectivity', 'sn', 'o', 'identified', 'unavailable', 'via', 'esr', 'monitoring', 'service', 'esr', 'connectivity'] list_processed_text: [['sn'], ['o'], ['identified'], ['unavailable'], ['via'], ['esr'], ['monitoring'], ['service'], ['esr'], ['connectivity'], ['sn'], ['o'], ['identified'], ['unavailable'], ['via'], ['esr'], ['monitoring'], ['service'], ['esr'], ['connectivity']] k: 279 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'mm', 'print', 'n', 'post', 'detail', 'information', 'see', 'attachment', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'mm', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'see', 'attachment'] processed_text: ['unable', 'create', 'delivery', 'mm', 'print', 'n', 'post', 'detail', 'information', 'see', 'attachment', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'mm', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'see', 'attachment'] list_processed_text: [['unable'], ['create'], ['delivery'], ['mm'], ['print'], ['n'], ['post'], ['detail'], ['information'], ['see'], ['attachment'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['mm'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['see'], ['attachment']] k: 280 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 281 len: <class 'list'> Data: ['unable', 'load', 'ethic', 'module', 'brdhdd', 'dhwduw', 'nwfodmhc', 'exurcwkm', 'fwd', 'unable', 'load', 'ethic', 'module', 'begin', 'forwarded', 'message', 'unable', 'load', 'ethic', 'module', 'hi', 'trust', 'well', 'unable', 'load', 'getting', 'msg', 'reset', 'resolution', 'however', 'still', 'issue', 'persist', 'please', 'help', 'director', 'sale', 'company', 'indirect', 'channel', 'asia'] processed_text: ['unable', 'load', 'ethic', 'module', 'brdhdd', 'dhwduw', 'nwfodmhc', 'exurcwkm', 'fwd', 'unable', 'load', 'ethic', 'module', 'begin', 'forwarded', 'message', 'unable', 'load', 'ethic', 'module', 'hi', 'trust', 'well', 'unable', 'load', 'getting', 'msg', 'reset', 'resolution', 'however', 'still', 'issue', 'persist', 'please', 'help', 'director', 'sale', 'company', 'indirect', 'channel', 'asia'] list_processed_text: [['unable'], ['load'], ['ethic'], ['module'], ['brdhdd'], ['dhwduw'], ['nwfodmhc'], ['exurcwkm'], ['fwd'], ['unable'], ['load'], ['ethic'], ['module'], ['begin'], ['forwarded'], ['message'], ['unable'], ['load'], ['ethic'], ['module'], ['hi'], ['trust'], ['well'], ['unable'], ['load'], ['getting'], ['msg'], ['reset'], ['resolution'], ['however'], ['still'], ['issue'], ['persist'], ['please'], ['help'], ['director'], ['sale'], ['company'], ['indirect'], ['channel'], ['asia']] k: 282 len: <class 'list'> Data: ['company', 'email', 'private', 'phone', 'hprdlbxf', 'nozjtgwi', 'please', 'help', 'set', 'email', 'access', 'private', 'cell', 'phone', 'best'] processed_text: ['company', 'email', 'private', 'phone', 'hprdlbxf', 'nozjtgwi', 'please', 'help', 'set', 'email', 'access', 'private', 'cell', 'phone', 'best'] list_processed_text: [['company'], ['email'], ['private'], ['phone'], ['hprdlbxf'], ['nozjtgwi'], ['please'], ['help'], ['set'], ['email'], ['access'], ['private'], ['cell'], ['phone'], ['best']] k: 283 len: <class 'list'> Data: ['network', 'outage', 'india', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 284 len: <class 'list'> Data: ['unable', 'log', 'es', 'unable', 'log', 'es'] processed_text: ['unable', 'log', 'es', 'unable', 'log', 'es'] list_processed_text: [['unable'], ['log'], ['es'], ['unable'], ['log'], ['es']] k: 285 len: <class 'list'> Data: ['skype', 'error', 'logging', 'skype', 'error', 'logging'] processed_text: ['skype', 'error', 'logging', 'skype', 'error', 'logging'] list_processed_text: [['skype'], ['error'], ['logging'], ['skype'], ['error'], ['logging']] k: 286 len: <class 'list'> Data: ['vitalyst', 'transfer', 'crm', 'installation', 'vitalyst', 'transfer', 'crm', 'installation'] processed_text: ['vitalyst', 'transfer', 'crm', 'installation', 'vitalyst', 'transfer', 'crm', 'installation'] list_processed_text: [['vitalyst'], ['transfer'], ['crm'], ['installation'], ['vitalyst'], ['transfer'], ['crm'], ['installation']] k: 287 len: <class 'list'> Data: ['unable', 'access', 'benefit', 'tab', 'unable', 'access', 'benefit', 'tab'] processed_text: ['unable', 'access', 'benefit', 'tab', 'unable', 'access', 'benefit', 'tab'] list_processed_text: [['unable'], ['access'], ['benefit'], ['tab'], ['unable'], ['access'], ['benefit'], ['tab']] k: 288 len: <class 'list'> Data: ['laptop', 'slow', 'dialog', 'bog', 'open', 'choppy', 'flicker', 'delayed', 'laptop', 'slow', 'dialog', 'bog', 'open', 'choppy', 'flicker', 'delayed'] processed_text: ['laptop', 'slow', 'dialog', 'bog', 'open', 'choppy', 'flicker', 'delayed', 'laptop', 'slow', 'dialog', 'bog', 'open', 'choppy', 'flicker', 'delayed'] list_processed_text: [['laptop'], ['slow'], ['dialog'], ['bog'], ['open'], ['choppy'], ['flicker'], ['delayed'], ['laptop'], ['slow'], ['dialog'], ['bog'], ['open'], ['choppy'], ['flicker'], ['delayed']] k: 289 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 290 len: <class 'list'> Data: ['running', 'full', 'production', 'need', 'erp', 'update', 'pushed', 'several', 'hour', 'summary', 'th', 'running', 'full', 'production', 'need', 'erp', 'update', 'pushed', 'several', 'hour'] processed_text: ['running', 'full', 'production', 'need', 'erp', 'update', 'pushed', 'several', 'hour', 'summary', 'th', 'running', 'full', 'production', 'need', 'erp', 'update', 'pushed', 'several', 'hour'] list_processed_text: [['running'], ['full'], ['production'], ['need'], ['erp'], ['update'], ['pushed'], ['several'], ['hour'], ['summary'], ['th'], ['running'], ['full'], ['production'], ['need'], ['erp'], ['update'], ['pushed'], ['several'], ['hour']] k: 291 len: <class 'list'> Data: ['india', 'access', 'sw', 'sw', 'went', 'pm', 'et', 'india', 'access', 'sw', 'sw', 'went', 'pm', 'et'] processed_text: ['india', 'access', 'sw', 'sw', 'went', 'pm', 'et', 'india', 'access', 'sw', 'sw', 'went', 'pm', 'et'] list_processed_text: [['india'], ['access'], ['sw'], ['sw'], ['went'], ['pm'], ['et'], ['india'], ['access'], ['sw'], ['sw'], ['went'], ['pm'], ['et']] k: 292 len: <class 'list'> Data: ['need', 'password', 'reset', 'need', 'password', 'reset'] processed_text: ['need', 'password', 'reset', 'need', 'password', 'reset'] list_processed_text: [['need'], ['password'], ['reset'], ['need'], ['password'], ['reset']] k: 293 len: <class 'list'> Data: ['issue', 'pdf', 'viewer', 'iphone', 'davidthd', 'issue', 'pdf', 'viewer', 'iphone', 'davidthd'] processed_text: ['issue', 'pdf', 'viewer', 'iphone', 'davidthd', 'issue', 'pdf', 'viewer', 'iphone', 'davidthd'] list_processed_text: [['issue'], ['pdf'], ['viewer'], ['iphone'], ['davidthd'], ['issue'], ['pdf'], ['viewer'], ['iphone'], ['davidthd']] k: 294 len: <class 'list'> Data: ['engineering', 'tool', 'connected', 'network', 'even', 'though', 'vpn', 'connected', 'engineering', 'tool', 'connected', 'network', 'even', 'though', 'vpn', 'connected'] processed_text: ['engineering', 'tool', 'connected', 'network', 'even', 'though', 'vpn', 'connected', 'engineering', 'tool', 'connected', 'network', 'even', 'though', 'vpn', 'connected'] list_processed_text: [['engineering'], ['tool'], ['connected'], ['network'], ['even'], ['though'], ['vpn'], ['connected'], ['engineering'], ['tool'], ['connected'], ['network'], ['even'], ['though'], ['vpn'], ['connected']] k: 295 len: <class 'list'> Data: ['outlook', 'crm', 'issue', 'outlook', 'crm', 'phone', 'computer', 'sent', 'iphone', 'best'] processed_text: ['outlook', 'crm', 'issue', 'outlook', 'crm', 'phone', 'computer', 'sent', 'iphone', 'best'] list_processed_text: [['outlook'], ['crm'], ['issue'], ['outlook'], ['crm'], ['phone'], ['computer'], ['sent'], ['iphone'], ['best']] k: 296 len: <class 'list'> Data: ['need', 'erp', 'password', 'reset', 'need', 'erp', 'password', 'reset'] processed_text: ['need', 'erp', 'password', 'reset', 'need', 'erp', 'password', 'reset'] list_processed_text: [['need'], ['erp'], ['password'], ['reset'], ['need'], ['erp'], ['password'], ['reset']] k: 297 len: <class 'list'> Data: ['need', 'security', 'uacyltoe', 'hxgaycze', 'dev', 'copy', 'crm', 'general', 'uacyltoe', 'hxgayczeing', 'training', 'need', 'access', 'training', 'development', 'application', 'microsoft', 'dynamic', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys', 'company', 'inc', 'technology', 'way', 'usa', 'pa'] processed_text: ['need', 'security', 'uacyltoe', 'hxgaycze', 'dev', 'copy', 'crm', 'general', 'uacyltoe', 'hxgayczeing', 'training', 'need', 'access', 'training', 'development', 'application', 'microsoft', 'dynamic', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys', 'company', 'inc', 'technology', 'way', 'usa', 'pa'] list_processed_text: [['need'], ['security'], ['uacyltoe'], ['hxgaycze'], ['dev'], ['copy'], ['crm'], ['general'], ['uacyltoe'], ['hxgayczeing'], ['training'], ['need'], ['access'], ['training'], ['development'], ['application'], ['microsoft'], ['dynamic'], ['mikhghytr'], ['wafglhdrhjop'], ['sr'], ['manager'], ['global'], ['ethic'], ['compliance'], ['programdntys'], ['company'], ['inc'], ['technology'], ['way'], ['usa'], ['pa']] k: 298 len: <class 'list'> Data: ['internal', 'user', 'unable', 'download', 'discount', 'price', 'file', 'distributor', 'tool', 'company', 'center', 'internal', 'user', 'unable', 'download', 'discount', 'price', 'file', 'distributor', 'tool', 'company', 'center', 'issue', 'probably', 'related', 'change', 'made', 'ftp', 'download', 'need', 'fix', 'issue', 'aerp', 'causing', 'lost', 'sale', 'external', 'user', 'work', 'fine', 'zsdrshstrud', 'price', 'maintenance', 'abap', 'report', 'pricing', 'team', 'maintain', 'price', 'data', 'erp', 'erp', 'going', 'limited', 'pricing', 'function', 'price', 'related', 'uploads', 'erp', 'however', 'function', 'distributor', 'discount', 'report', 'report', 'see', 'problem', 'usa', 'access', 'also', 'internal', 'user', 'especially', 'external', 'user', 'seem', 'already', 'access', 'best'] processed_text: ['internal', 'user', 'unable', 'download', 'discount', 'price', 'file', 'distributor', 'tool', 'company', 'center', 'internal', 'user', 'unable', 'download', 'discount', 'price', 'file', 'distributor', 'tool', 'company', 'center', 'issue', 'probably', 'related', 'change', 'made', 'ftp', 'download', 'need', 'fix', 'issue', 'aerp', 'causing', 'lost', 'sale', 'external', 'user', 'work', 'fine', 'zsdrshstrud', 'price', 'maintenance', 'abap', 'report', 'pricing', 'team', 'maintain', 'price', 'data', 'erp', 'erp', 'going', 'limited', 'pricing', 'function', 'price', 'related', 'uploads', 'erp', 'however', 'function', 'distributor', 'discount', 'report', 'report', 'see', 'problem', 'usa', 'access', 'also', 'internal', 'user', 'especially', 'external', 'user', 'seem', 'already', 'access', 'best'] list_processed_text: [['internal'], ['user'], ['unable'], ['download'], ['discount'], ['price'], ['file'], ['distributor'], ['tool'], ['company'], ['center'], ['internal'], ['user'], ['unable'], ['download'], ['discount'], ['price'], ['file'], ['distributor'], ['tool'], ['company'], ['center'], ['issue'], ['probably'], ['related'], ['change'], ['made'], ['ftp'], ['download'], ['need'], ['fix'], ['issue'], ['aerp'], ['causing'], ['lost'], ['sale'], ['external'], ['user'], ['work'], ['fine'], ['zsdrshstrud'], ['price'], ['maintenance'], ['abap'], ['report'], ['pricing'], ['team'], ['maintain'], ['price'], ['data'], ['erp'], ['erp'], ['going'], ['limited'], ['pricing'], ['function'], ['price'], ['related'], ['uploads'], ['erp'], ['however'], ['function'], ['distributor'], ['discount'], ['report'], ['report'], ['see'], ['problem'], ['usa'], ['access'], ['also'], ['internal'], ['user'], ['especially'], ['external'], ['user'], ['seem'], ['already'], ['access'], ['best']] k: 299 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 300 len: <class 'list'> Data: ['unable', 'receive', 'email', 'company', 'provided', 'iphone', 'unable', 'receive', 'email', 'company', 'provided', 'iphone'] processed_text: ['unable', 'receive', 'email', 'company', 'provided', 'iphone', 'unable', 'receive', 'email', 'company', 'provided', 'iphone'] list_processed_text: [['unable'], ['receive'], ['email'], ['company'], ['provided'], ['iphone'], ['unable'], ['receive'], ['email'], ['company'], ['provided'], ['iphone']] k: 301 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 302 len: <class 'list'> Data: ['eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv', 'eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv'] processed_text: ['eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv', 'eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['eu'], ['tool'], ['ist'], ['sehr'], ['langsadgtym'], ['ywqgrbnx'], ['jwnsyzbv'], ['jionmpsf'], ['wnkpzcmv'], ['eu'], ['tool'], ['ist'], ['sehr'], ['langsadgtym'], ['ywqgrbnx'], ['jwnsyzbv'], ['jionmpsf'], ['wnkpzcmv']] k: 303 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 304 len: <class 'list'> Data: ['pick', 'old', 'eq', 'wrcktgbd', 'wzrgyunp', 'pick', 'old', 'eq', 'wrcktgbd', 'wzrgyunp'] processed_text: ['pick', 'old', 'eq', 'wrcktgbd', 'wzrgyunp', 'pick', 'old', 'eq', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['pick'], ['old'], ['eq'], ['wrcktgbd'], ['wzrgyunp'], ['pick'], ['old'], ['eq'], ['wrcktgbd'], ['wzrgyunp']] k: 305 len: <class 'list'> Data: ['probleme', 'shore', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp', 'probleme', 'shore', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp'] processed_text: ['probleme', 'shore', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp', 'probleme', 'shore', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['probleme'], ['shore'], ['tgeyd'], ['web'], ['wu'], ['wrcktgbd'], ['wzrgyunp'], ['probleme'], ['shore'], ['tgeyd'], ['web'], ['wu'], ['wrcktgbd'], ['wzrgyunp']] k: 306 len: <class 'list'> Data: ['support', 'r', 'zlqfptjx', 'xnklbfua', 'support', 'r', 'zlqfptjx', 'xnklbfua'] processed_text: ['support', 'r', 'zlqfptjx', 'xnklbfua', 'support', 'r', 'zlqfptjx', 'xnklbfua'] list_processed_text: [['support'], ['r'], ['zlqfptjx'], ['xnklbfua'], ['support'], ['r'], ['zlqfptjx'], ['xnklbfua']] k: 307 len: <class 'list'> Data: ['username', 'locked', 'hello', 'username', 'gdthryd', 'mgvpoyqd', 'tnlshpwb', 'locked', 'computer', 'sending', 'message', 'behalf', 'please', 'help', 'inhekdol', 'anvqzdif', 'quality', 'technologist'] processed_text: ['username', 'locked', 'hello', 'username', 'gdthryd', 'mgvpoyqd', 'tnlshpwb', 'locked', 'computer', 'sending', 'message', 'behalf', 'please', 'help', 'inhekdol', 'anvqzdif', 'quality', 'technologist'] list_processed_text: [['username'], ['locked'], ['hello'], ['username'], ['gdthryd'], ['mgvpoyqd'], ['tnlshpwb'], ['locked'], ['computer'], ['sending'], ['message'], ['behalf'], ['please'], ['help'], ['inhekdol'], ['anvqzdif'], ['quality'], ['technologist']] k: 308 len: <class 'list'> Data: ['unable', 'connect', 'lan', 'internet', 'unable', 'connect', 'lan', 'internet'] processed_text: ['unable', 'connect', 'lan', 'internet', 'unable', 'connect', 'lan', 'internet'] list_processed_text: [['unable'], ['connect'], ['lan'], ['internet'], ['unable'], ['connect'], ['lan'], ['internet']] k: 309 len: <class 'list'> Data: ['install', 'collaboration', 'platform', 'install', 'collaboration', 'platform'] processed_text: ['install', 'collaboration', 'platform', 'install', 'collaboration', 'platform'] list_processed_text: [['install'], ['collaboration'], ['platform'], ['install'], ['collaboration'], ['platform']] k: 310 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 311 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'update'] processed_text: ['ticket', 'update', 'ticket', 'update'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['update']] k: 312 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 313 len: <class 'list'> Data: ['cannot', 'access', 'guest', 'wifi', 'sponsor', 'portal', 'receive', 'sponsor', 'portal', 'internal', 'error', 'attempting', 'issue', 'guest', 'wifi', 'access', 'link', 'given', 'use', 'createknownaccountssummary'] processed_text: ['cannot', 'access', 'guest', 'wifi', 'sponsor', 'portal', 'receive', 'sponsor', 'portal', 'internal', 'error', 'attempting', 'issue', 'guest', 'wifi', 'access', 'link', 'given', 'use', 'createknownaccountssummary'] list_processed_text: [['cannot'], ['access'], ['guest'], ['wifi'], ['sponsor'], ['portal'], ['receive'], ['sponsor'], ['portal'], ['internal'], ['error'], ['attempting'], ['issue'], ['guest'], ['wifi'], ['access'], ['link'], ['given'], ['use'], ['createknownaccountssummary']] k: 314 len: <class 'list'> Data: ['user', 'need', 'help', 'login', 'company', 'vpn', 'user', 'need', 'help', 'login', 'company', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'user', 'confirmed', 'abl', 'eto', 'login', 'erp', 'sid', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'login', 'company', 'vpn', 'user', 'need', 'help', 'login', 'company', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'user', 'confirmed', 'abl', 'eto', 'login', 'erp', 'sid', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['login'], ['company'], ['vpn'], ['user'], ['need'], ['help'], ['login'], ['company'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['user'], ['confirmed'], ['abl'], ['eto'], ['login'], ['erp'], ['sid'], ['issue'], ['resolved']] k: 315 len: <class 'list'> Data: ['need', 'map', 'mailbox', 'colleague', 'need', 'map', 'mailbox', 'colleague'] processed_text: ['need', 'map', 'mailbox', 'colleague', 'need', 'map', 'mailbox', 'colleague'] list_processed_text: [['need'], ['map'], ['mailbox'], ['colleague'], ['need'], ['map'], ['mailbox'], ['colleague']] k: 316 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 317 len: <class 'list'> Data: ['new', 'team', 'detail', 'updated', 'bobj', 'report', 'es', 'new', 'team', 'manager', 'detail', 'updated', 'bobj', 'report', 'es', 'opening', 'bex', 'report', 'es', 'refer', 'screenshot', 'report', 'still', 'show', 'old', 'team', 'data', 'need', 'reflect', 'new', 'team', 'data', 'new', 'manager', 'detail', 'already', 'updated', 'erp', 'phone', 'sartlgeo', 'lhqksbdx'] processed_text: ['new', 'team', 'detail', 'updated', 'bobj', 'report', 'es', 'new', 'team', 'manager', 'detail', 'updated', 'bobj', 'report', 'es', 'opening', 'bex', 'report', 'es', 'refer', 'screenshot', 'report', 'still', 'show', 'old', 'team', 'data', 'need', 'reflect', 'new', 'team', 'data', 'new', 'manager', 'detail', 'already', 'updated', 'erp', 'phone', 'sartlgeo', 'lhqksbdx'] list_processed_text: [['new'], ['team'], ['detail'], ['updated'], ['bobj'], ['report'], ['es'], ['new'], ['team'], ['manager'], ['detail'], ['updated'], ['bobj'], ['report'], ['es'], ['opening'], ['bex'], ['report'], ['es'], ['refer'], ['screenshot'], ['report'], ['still'], ['show'], ['old'], ['team'], ['data'], ['need'], ['reflect'], ['new'], ['team'], ['data'], ['new'], ['manager'], ['detail'], ['already'], ['updated'], ['erp'], ['phone'], ['sartlgeo'], ['lhqksbdx']] k: 318 len: <class 'list'> Data: ['email', 'font', 'showing', 'small', 'replying', 'email', 'email', 'font', 'showing', 'small', 'replying', 'email', 'connected', 'user', 'system', 'using', 'teamviewer', 'corrected', 'font', 'size', 'advised', 'user', 'check', 'user', 'confirmed', 'fine', 'issue', 'resolved'] processed_text: ['email', 'font', 'showing', 'small', 'replying', 'email', 'email', 'font', 'showing', 'small', 'replying', 'email', 'connected', 'user', 'system', 'using', 'teamviewer', 'corrected', 'font', 'size', 'advised', 'user', 'check', 'user', 'confirmed', 'fine', 'issue', 'resolved'] list_processed_text: [['email'], ['font'], ['showing'], ['small'], ['replying'], ['email'], ['email'], ['font'], ['showing'], ['small'], ['replying'], ['email'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['corrected'], ['font'], ['size'], ['advised'], ['user'], ['check'], ['user'], ['confirmed'], ['fine'], ['issue'], ['resolved']] k: 319 len: <class 'list'> Data: ['reset', 'password', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['hdthy'], ['hstdd'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['hdthy'], ['hstdd'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 320 len: <class 'list'> Data: ['computer', 'maintenance', 'dept', 'please', 'fix', 'computer', 'maintenance', 'dept', 'please', 'fix'] processed_text: ['computer', 'maintenance', 'dept', 'please', 'fix', 'computer', 'maintenance', 'dept', 'please', 'fix'] list_processed_text: [['computer'], ['maintenance'], ['dept'], ['please'], ['fix'], ['computer'], ['maintenance'], ['dept'], ['please'], ['fix']] k: 321 len: <class 'list'> Data: ['computer', 'old', 'cnc', 'area', 'please', 'fix', 'erp', 'computer', 'old', 'cnc', 'area', 'please', 'fix', 'erp'] processed_text: ['computer', 'old', 'cnc', 'area', 'please', 'fix', 'erp', 'computer', 'old', 'cnc', 'area', 'please', 'fix', 'erp'] list_processed_text: [['computer'], ['old'], ['cnc'], ['area'], ['please'], ['fix'], ['erp'], ['computer'], ['old'], ['cnc'], ['area'], ['please'], ['fix'], ['erp']] k: 322 len: <class 'list'> Data: ['user', 'need', 'new', 'telephony', 'software', 'password', 'user', 'need', 'new', 'telephony', 'software', 'password'] processed_text: ['user', 'need', 'new', 'telephony', 'software', 'password', 'user', 'need', 'new', 'telephony', 'software', 'password'] list_processed_text: [['user'], ['need'], ['new'], ['telephony'], ['software'], ['password'], ['user'], ['need'], ['new'], ['telephony'], ['software'], ['password']] k: 323 len: <class 'list'> Data: ['vip', 'printer', 'connection', 'request', 'ag', 'hello', 'want', 'connect', 'workstation', 'printer', 'ag', 'germany', 'following', 'screen', 'shot', 'say', 'need', 'permission', 'connect', 'printer', 'system', 'administrator', 'many'] processed_text: ['vip', 'printer', 'connection', 'request', 'ag', 'hello', 'want', 'connect', 'workstation', 'printer', 'ag', 'germany', 'following', 'screen', 'shot', 'say', 'need', 'permission', 'connect', 'printer', 'system', 'administrator', 'many'] list_processed_text: [['vip'], ['printer'], ['connection'], ['request'], ['ag'], ['hello'], ['want'], ['connect'], ['workstation'], ['printer'], ['ag'], ['germany'], ['following'], ['screen'], ['shot'], ['say'], ['need'], ['permission'], ['connect'], ['printer'], ['system'], ['administrator'], ['many']] k: 324 len: <class 'list'> Data: ['cannot', 'get', 'onto', 'network', 'pc', 'cannot', 'get', 'onto', 'network', 'pc'] processed_text: ['cannot', 'get', 'onto', 'network', 'pc', 'cannot', 'get', 'onto', 'network', 'pc'] list_processed_text: [['cannot'], ['get'], ['onto'], ['network'], ['pc'], ['cannot'], ['get'], ['onto'], ['network'], ['pc']] k: 325 len: <class 'list'> Data: ['vip', 'login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['vip', 'login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['vip'], ['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 326 len: <class 'list'> Data: ['misplaced', 'password', 'hub', 'unable', 'login', 'hub'] processed_text: ['misplaced', 'password', 'hub', 'unable', 'login', 'hub'] list_processed_text: [['misplaced'], ['password'], ['hub'], ['unable'], ['login'], ['hub']] k: 327 len: <class 'list'> Data: ['please', 'reset', 'sid', 'password', 'user', 'id', 'gdthrujt'] processed_text: ['please', 'reset', 'sid', 'password', 'user', 'id', 'gdthrujt'] list_processed_text: [['please'], ['reset'], ['sid'], ['password'], ['user'], ['id'], ['gdthrujt']] k: 328 len: <class 'list'> Data: ['need', 'setup', 'guest', 'wi', 'fi', 'access', 'need', 'setup', 'guest', 'wi', 'fi', 'access'] processed_text: ['need', 'setup', 'guest', 'wi', 'fi', 'access', 'need', 'setup', 'guest', 'wi', 'fi', 'access'] list_processed_text: [['need'], ['setup'], ['guest'], ['wi'], ['fi'], ['access'], ['need'], ['setup'], ['guest'], ['wi'], ['fi'], ['access']] k: 329 len: <class 'list'> Data: ['trouble', 'viewing', 'printing', 'commerirtcal', 'inwarehouse', 'tool', 'good', 'day', 'please', 'assist', 'issue', 'clicking', 'view', 'commercial', 'inwarehouse', 'tool', 'appears', 'blank', 'please', 'help', 'kind'] processed_text: ['trouble', 'viewing', 'printing', 'commerirtcal', 'inwarehouse', 'tool', 'good', 'day', 'please', 'assist', 'issue', 'clicking', 'view', 'commercial', 'inwarehouse', 'tool', 'appears', 'blank', 'please', 'help', 'kind'] list_processed_text: [['trouble'], ['viewing'], ['printing'], ['commerirtcal'], ['inwarehouse'], ['tool'], ['good'], ['day'], ['please'], ['assist'], ['issue'], ['clicking'], ['view'], ['commercial'], ['inwarehouse'], ['tool'], ['appears'], ['blank'], ['please'], ['help'], ['kind']] k: 330 len: <class 'list'> Data: ['outlook', 'open', 'outlook', 'open'] processed_text: ['outlook', 'open', 'outlook', 'open'] list_processed_text: [['outlook'], ['open'], ['outlook'], ['open']] k: 331 len: <class 'list'> Data: ['engineering', 'tool', 'take', 'long', 'time', 'load', 'issue', 'severe', 'especially', 'pm', 'everyday', 'want', 'talk', 'engineering', 'tool', 'administration', 'team', 'check', 'account'] processed_text: ['engineering', 'tool', 'take', 'long', 'time', 'load', 'issue', 'severe', 'especially', 'pm', 'everyday', 'want', 'talk', 'engineering', 'tool', 'administration', 'team', 'check', 'account'] list_processed_text: [['engineering'], ['tool'], ['take'], ['long'], ['time'], ['load'], ['issue'], ['severe'], ['especially'], ['pm'], ['everyday'], ['want'], ['talk'], ['engineering'], ['tool'], ['administration'], ['team'], ['check'], ['account']] k: 332 len: <class 'list'> Data: ['folder', 'list', 'outlook', 'dierppeared', 'cannot', 'see', 'folder', 'outlook', 'email', 'appeared', 'view'] processed_text: ['folder', 'list', 'outlook', 'dierppeared', 'cannot', 'see', 'folder', 'outlook', 'email', 'appeared', 'view'] list_processed_text: [['folder'], ['list'], ['outlook'], ['dierppeared'], ['cannot'], ['see'], ['folder'], ['outlook'], ['email'], ['appeared'], ['view']] k: 333 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 334 len: <class 'list'> Data: ['cannot', 'connect', 'network', 'resource', 'hq', 'cannot', 'access', 'erp', 'hq', 'network', 'drive', 'internal', 'network', 'drive', 'access', 'working', 'fine', 'performed', 'flush', 'dns', 'winsock', 'reset', 'still', 'nogo', 'multiple', 'user', 'affected', 'ip'] processed_text: ['cannot', 'connect', 'network', 'resource', 'hq', 'cannot', 'access', 'erp', 'hq', 'network', 'drive', 'internal', 'network', 'drive', 'access', 'working', 'fine', 'performed', 'flush', 'dns', 'winsock', 'reset', 'still', 'nogo', 'multiple', 'user', 'affected', 'ip'] list_processed_text: [['cannot'], ['connect'], ['network'], ['resource'], ['hq'], ['cannot'], ['access'], ['erp'], ['hq'], ['network'], ['drive'], ['internal'], ['network'], ['drive'], ['access'], ['working'], ['fine'], ['performed'], ['flush'], ['dns'], ['winsock'], ['reset'], ['still'], ['nogo'], ['multiple'], ['user'], ['affected'], ['ip']] k: 335 len: <class 'list'> Data: ['urgent', 'training', 'room', 'intercom', 'work', 'classroom', 'intercom', 'working'] processed_text: ['urgent', 'training', 'room', 'intercom', 'work', 'classroom', 'intercom', 'working'] list_processed_text: [['urgent'], ['training'], ['room'], ['intercom'], ['work'], ['classroom'], ['intercom'], ['working']] k: 336 len: <class 'list'> Data: ['data', 'backup', 'germany', 'data', 'backup', 'germany'] processed_text: ['data', 'backup', 'germany', 'data', 'backup', 'germany'] list_processed_text: [['data'], ['backup'], ['germany'], ['data'], ['backup'], ['germany']] k: 337 len: <class 'list'> Data: ['server', 'ekpsm', 'located', 'germany', 'location', 'since', 'server', 'ekpsm', 'located', 'germany', 'location', 'since'] processed_text: ['server', 'ekpsm', 'located', 'germany', 'location', 'since', 'server', 'ekpsm', 'located', 'germany', 'location', 'since'] list_processed_text: [['server'], ['ekpsm'], ['located'], ['germany'], ['location'], ['since'], ['server'], ['ekpsm'], ['located'], ['germany'], ['location'], ['since']] k: 338 len: <class 'list'> Data: ['germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'et', 'germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'et'] processed_text: ['germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'et', 'germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'et'] list_processed_text: [['germany'], ['company'], ['pbx'], ['trunk'], ['card'], ['andpbx'], ['since'], ['et'], ['germany'], ['company'], ['pbx'], ['trunk'], ['card'], ['andpbx'], ['since'], ['et']] k: 339 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 340 len: <class 'list'> Data: ['unable', 'sign', 'vpn', 'able', 'sign', 'onto', 'vpn', 'user', 'name', 'password', 'say', 'incorrect', 'password', 'one', 'always', 'use'] processed_text: ['unable', 'sign', 'vpn', 'able', 'sign', 'onto', 'vpn', 'user', 'name', 'password', 'say', 'incorrect', 'password', 'one', 'always', 'use'] list_processed_text: [['unable'], ['sign'], ['vpn'], ['able'], ['sign'], ['onto'], ['vpn'], ['user'], ['name'], ['password'], ['say'], ['incorrect'], ['password'], ['one'], ['always'], ['use']] k: 341 len: <class 'list'> Data: ['security', 'incident', 'ipbl', 'entry', 'beshryulisted', 'ip', 'lmsl', 'source', 'ip', 'system', 'name', 'lmsl', 'user', 'name', 'trhdyd', 'mffbsf', 'location', 'usa', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'yes', 'dsw', 'event', 'log', 'see'] processed_text: ['security', 'incident', 'ipbl', 'entry', 'beshryulisted', 'ip', 'lmsl', 'source', 'ip', 'system', 'name', 'lmsl', 'user', 'name', 'trhdyd', 'mffbsf', 'location', 'usa', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'yes', 'dsw', 'event', 'log', 'see'] list_processed_text: [['security'], ['incident'], ['ipbl'], ['entry'], ['beshryulisted'], ['ip'], ['lmsl'], ['source'], ['ip'], ['system'], ['name'], ['lmsl'], ['user'], ['name'], ['trhdyd'], ['mffbsf'], ['location'], ['usa'], ['sm'], ['status'], ['update'], ['field'], ['sale'], ['user'], ['yes'], ['yes'], ['dsw'], ['event'], ['log'], ['see']] k: 342 len: <class 'list'> Data: ['shortcut', 'opening', 'multiple', 'folder', 'shortcut', 'opening', 'multiple', 'folder'] processed_text: ['shortcut', 'opening', 'multiple', 'folder', 'shortcut', 'opening', 'multiple', 'folder'] list_processed_text: [['shortcut'], ['opening'], ['multiple'], ['folder'], ['shortcut'], ['opening'], ['multiple'], ['folder']] k: 343 len: <class 'list'> Data: ['system', 'updation', 'govt', 'tender', 'procurement', 'dear', 'sir', 'required', 'system', 'updating', 'govt', 'tender', 'uploading', 'portal', 'following', 'computer', 'computer', 'name', 'aiuw', 'service', 'tag', 'jnjxbq', 'model', 'detail', 'optiplex', 'please', 'needful', 'confirm', 'urgent', 'basis', 'kind'] processed_text: ['system', 'updation', 'govt', 'tender', 'procurement', 'dear', 'sir', 'required', 'system', 'updating', 'govt', 'tender', 'uploading', 'portal', 'following', 'computer', 'computer', 'name', 'aiuw', 'service', 'tag', 'jnjxbq', 'model', 'detail', 'optiplex', 'please', 'needful', 'confirm', 'urgent', 'basis', 'kind'] list_processed_text: [['system'], ['updation'], ['govt'], ['tender'], ['procurement'], ['dear'], ['sir'], ['required'], ['system'], ['updating'], ['govt'], ['tender'], ['uploading'], ['portal'], ['following'], ['computer'], ['computer'], ['name'], ['aiuw'], ['service'], ['tag'], ['jnjxbq'], ['model'], ['detail'], ['optiplex'], ['please'], ['needful'], ['confirm'], ['urgent'], ['basis'], ['kind']] k: 344 len: <class 'list'> Data: ['unable', 'login', 'pc', 'account', 'locked'] processed_text: ['unable', 'login', 'pc', 'account', 'locked'] list_processed_text: [['unable'], ['login'], ['pc'], ['account'], ['locked']] k: 345 len: <class 'list'> Data: ['urgent', 'access', 'rtnzvplq', 'erhmuncq', 'disconnected', 'hi', 'could', 'please', 'help', 'error', 'message', 'server', 'disconnected', 'cannot', 'make', 'edits', 'trgdyyufs', 'calendar', 'invitation', 'calendar', 'calendar', 'entry', 'possible', 'urgent'] processed_text: ['urgent', 'access', 'rtnzvplq', 'erhmuncq', 'disconnected', 'hi', 'could', 'please', 'help', 'error', 'message', 'server', 'disconnected', 'cannot', 'make', 'edits', 'trgdyyufs', 'calendar', 'invitation', 'calendar', 'calendar', 'entry', 'possible', 'urgent'] list_processed_text: [['urgent'], ['access'], ['rtnzvplq'], ['erhmuncq'], ['disconnected'], ['hi'], ['could'], ['please'], ['help'], ['error'], ['message'], ['server'], ['disconnected'], ['cannot'], ['make'], ['edits'], ['trgdyyufs'], ['calendar'], ['invitation'], ['calendar'], ['calendar'], ['entry'], ['possible'], ['urgent']] k: 346 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 347 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['conf'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['conf'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 348 len: <class 'list'> Data: ['expense', 'report', 'receipt', 'entry', 'screen', 'keep', 'locking', 'expense', 'report', 'receipt', 'entry', 'screen', 'keep', 'locking', 'causing', 'delay', 'entering', 'expense', 'report', 'especially', 'wherein', 'multiple', 'entry', 'required'] processed_text: ['expense', 'report', 'receipt', 'entry', 'screen', 'keep', 'locking', 'expense', 'report', 'receipt', 'entry', 'screen', 'keep', 'locking', 'causing', 'delay', 'entering', 'expense', 'report', 'especially', 'wherein', 'multiple', 'entry', 'required'] list_processed_text: [['expense'], ['report'], ['receipt'], ['entry'], ['screen'], ['keep'], ['locking'], ['expense'], ['report'], ['receipt'], ['entry'], ['screen'], ['keep'], ['locking'], ['causing'], ['delay'], ['entering'], ['expense'], ['report'], ['especially'], ['wherein'], ['multiple'], ['entry'], ['required']] k: 349 len: <class 'list'> Data: ['install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx', 'install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx'] processed_text: ['install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx', 'install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx'] list_processed_text: [['install'], ['eu'], ['tool'], ['laeusvjo'], ['fvaihgpx'], ['install'], ['eu'], ['tool'], ['laeusvjo'], ['fvaihgpx']] k: 350 len: <class 'list'> Data: ['access', 'live', 'mw', 'live', 'hostname', 'please', 'provide', 'access', 'drive', 'view', 'drawing', 'live', 'mw', 'live'] processed_text: ['access', 'live', 'mw', 'live', 'hostname', 'please', 'provide', 'access', 'drive', 'view', 'drawing', 'live', 'mw', 'live'] list_processed_text: [['access'], ['live'], ['mw'], ['live'], ['hostname'], ['please'], ['provide'], ['access'], ['drive'], ['view'], ['drawing'], ['live'], ['mw'], ['live']] k: 351 len: <class 'list'> Data: ['network', 'outage', 'germany', 'site', 'since', 'amet', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'amet', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'germany', 'site', 'since', 'amet', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'amet', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['germany'], ['site'], ['since'], ['amet'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['amet'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 352 len: <class 'list'> Data: ['entire', 'location', 'germany', 'network', 'germany', 'entire', 'location', 'germany', 'network', 'user', 'mention', 'application', 'erp', 'outlook', 'internet', 'intranet'] processed_text: ['entire', 'location', 'germany', 'network', 'germany', 'entire', 'location', 'germany', 'network', 'user', 'mention', 'application', 'erp', 'outlook', 'internet', 'intranet'] list_processed_text: [['entire'], ['location'], ['germany'], ['network'], ['germany'], ['entire'], ['location'], ['germany'], ['network'], ['user'], ['mention'], ['application'], ['erp'], ['outlook'], ['internet'], ['intranet']] k: 353 len: <class 'list'> Data: ['hostname', 'volume', 'disk', 'consumed', 'hostname', 'volume', 'disk', 'consumed'] processed_text: ['hostname', 'volume', 'disk', 'consumed', 'hostname', 'volume', 'disk', 'consumed'] list_processed_text: [['hostname'], ['volume'], ['disk'], ['consumed'], ['hostname'], ['volume'], ['disk'], ['consumed']] k: 354 len: <class 'list'> Data: ['let', 'talk', 'playing', 'hello', 'refer', 'screen', 'shot', 'warm'] processed_text: ['let', 'talk', 'playing', 'hello', 'refer', 'screen', 'shot', 'warm'] list_processed_text: [['let'], ['talk'], ['playing'], ['hello'], ['refer'], ['screen'], ['shot'], ['warm']] k: 355 len: <class 'list'> Data: ['hostname', 'bobj', 'cpu', 'load', 'server', 'high', 'currently', 'utilization', 'since', 'hostname', 'bobj', 'cpu', 'load', 'server', 'high', 'currently', 'utilization', 'since'] processed_text: ['hostname', 'bobj', 'cpu', 'load', 'server', 'high', 'currently', 'utilization', 'since', 'hostname', 'bobj', 'cpu', 'load', 'server', 'high', 'currently', 'utilization', 'since'] list_processed_text: [['hostname'], ['bobj'], ['cpu'], ['load'], ['server'], ['high'], ['currently'], ['utilization'], ['since'], ['hostname'], ['bobj'], ['cpu'], ['load'], ['server'], ['high'], ['currently'], ['utilization'], ['since']] k: 356 len: <class 'list'> Data: ['purchasing', 'working', 'purchasing', 'input', 'related', 'information', 'also', 'generated', 'ordered', 'number', 'check', 'erp', 'mea', 'data', 'check', 'pls', 'help'] processed_text: ['purchasing', 'working', 'purchasing', 'input', 'related', 'information', 'also', 'generated', 'ordered', 'number', 'check', 'erp', 'mea', 'data', 'check', 'pls', 'help'] list_processed_text: [['purchasing'], ['working'], ['purchasing'], ['input'], ['related'], ['information'], ['also'], ['generated'], ['ordered'], ['number'], ['check'], ['erp'], ['mea'], ['data'], ['check'], ['pls'], ['help']] k: 357 len: <class 'list'> Data: ['eu', 'tool', 'update', 'every', 'minute', 'eu', 'tool', 'update', 'every', 'minute'] processed_text: ['eu', 'tool', 'update', 'every', 'minute', 'eu', 'tool', 'update', 'every', 'minute'] list_processed_text: [['eu'], ['tool'], ['update'], ['every'], ['minute'], ['eu'], ['tool'], ['update'], ['every'], ['minute']] k: 358 len: <class 'list'> Data: ['kindly', 'copy', 'desktop', 'file', 'user', 'id', 'vvgtyrhds', 'vvkuhtdppg', 'local', 'folder', 'kindly', 'copy', 'desktop', 'file', 'user', 'id', 'vvgtyrhds', 'vvkuhtdppg', 'local', 'folder'] processed_text: ['kindly', 'copy', 'desktop', 'file', 'user', 'id', 'vvgtyrhds', 'vvkuhtdppg', 'local', 'folder', 'kindly', 'copy', 'desktop', 'file', 'user', 'id', 'vvgtyrhds', 'vvkuhtdppg', 'local', 'folder'] list_processed_text: [['kindly'], ['copy'], ['desktop'], ['file'], ['user'], ['id'], ['vvgtyrhds'], ['vvkuhtdppg'], ['local'], ['folder'], ['kindly'], ['copy'], ['desktop'], ['file'], ['user'], ['id'], ['vvgtyrhds'], ['vvkuhtdppg'], ['local'], ['folder']] k: 359 len: <class 'list'> Data: ['problem', 'nikulatrhdy', 'hello', 'account', 'nikulatrhdy', 'currently', 'locked', 'user', 'cannot', 'log', 'system', 'please', 'help', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] processed_text: ['problem', 'nikulatrhdy', 'hello', 'account', 'nikulatrhdy', 'currently', 'locked', 'user', 'cannot', 'log', 'system', 'please', 'help', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] list_processed_text: [['problem'], ['nikulatrhdy'], ['hello'], ['account'], ['nikulatrhdy'], ['currently'], ['locked'], ['user'], ['cannot'], ['log'], ['system'], ['please'], ['help'], ['koahsriq'], ['wdugqatr'], ['administrative'], ['assistant']] k: 360 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'carrier', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'carrier', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['carrier'], ['company'], ['ap'], ['ind'], ['carrier'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 361 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 362 len: <class 'list'> Data: ['purchasing', 'catalog', 'de', 'kroschke', 'work', 'error', 'message', 'try', 'open', 'shop', 'shop', 'failure', 'cannot', 'enter', 'selected', 'shop', 'reason', 'authentication', 'data', 'missing', 'cookie', 'accepted', 'client', 'catalogue', 'moved', 'another', 'url', 'see', 'attached', 'mail', 'detail'] processed_text: ['purchasing', 'catalog', 'de', 'kroschke', 'work', 'error', 'message', 'try', 'open', 'shop', 'shop', 'failure', 'cannot', 'enter', 'selected', 'shop', 'reason', 'authentication', 'data', 'missing', 'cookie', 'accepted', 'client', 'catalogue', 'moved', 'another', 'url', 'see', 'attached', 'mail', 'detail'] list_processed_text: [['purchasing'], ['catalog'], ['de'], ['kroschke'], ['work'], ['error'], ['message'], ['try'], ['open'], ['shop'], ['shop'], ['failure'], ['cannot'], ['enter'], ['selected'], ['shop'], ['reason'], ['authentication'], ['data'], ['missing'], ['cookie'], ['accepted'], ['client'], ['catalogue'], ['moved'], ['another'], ['url'], ['see'], ['attached'], ['mail'], ['detail']] k: 363 len: <class 'list'> Data: ['calendar', 'entry', 'ge', 'qdxyifhj', 'zbwtunpy', 'hello', 'please', 'take', 'look', 'thank'] processed_text: ['calendar', 'entry', 'ge', 'qdxyifhj', 'zbwtunpy', 'hello', 'please', 'take', 'look', 'thank'] list_processed_text: [['calendar'], ['entry'], ['ge'], ['qdxyifhj'], ['zbwtunpy'], ['hello'], ['please'], ['take'], ['look'], ['thank']] k: 364 len: <class 'list'> Data: ['need', 'wireless', 'mouse', 'laptop', 'need', 'wireless', 'mouse', 'laptop'] processed_text: ['need', 'wireless', 'mouse', 'laptop', 'need', 'wireless', 'mouse', 'laptop'] list_processed_text: [['need'], ['wireless'], ['mouse'], ['laptop'], ['need'], ['wireless'], ['mouse'], ['laptop']] k: 365 len: <class 'list'> Data: ['label', 'printer', 'wk', 'longer', 'print', 'label', 'printer', 'wk', 'longer', 'print'] processed_text: ['label', 'printer', 'wk', 'longer', 'print', 'label', 'printer', 'wk', 'longer', 'print'] list_processed_text: [['label'], ['printer'], ['wk'], ['longer'], ['print'], ['label'], ['printer'], ['wk'], ['longer'], ['print']] k: 366 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 367 len: <class 'list'> Data: ['window', 'locked', 'hi', 'following', 'user', 'id', 'winows', 'locked', 'pl', 'help', 'user', 'id', 'thrydufg'] processed_text: ['window', 'locked', 'hi', 'following', 'user', 'id', 'winows', 'locked', 'pl', 'help', 'user', 'id', 'thrydufg'] list_processed_text: [['window'], ['locked'], ['hi'], ['following'], ['user'], ['id'], ['winows'], ['locked'], ['pl'], ['help'], ['user'], ['id'], ['thrydufg']] k: 368 len: <class 'list'> Data: ['data', 'cannot', 'downloaded', 'data', 'cannot', 'downloaded', 'machine', 'standstill', 'machine', 'name', 'wam', 'file', 'sent', 'udo', 'file', 'stored', 'zip', 'exe', 'format'] processed_text: ['data', 'cannot', 'downloaded', 'data', 'cannot', 'downloaded', 'machine', 'standstill', 'machine', 'name', 'wam', 'file', 'sent', 'udo', 'file', 'stored', 'zip', 'exe', 'format'] list_processed_text: [['data'], ['cannot'], ['downloaded'], ['data'], ['cannot'], ['downloaded'], ['machine'], ['standstill'], ['machine'], ['name'], ['wam'], ['file'], ['sent'], ['udo'], ['file'], ['stored'], ['zip'], ['exe'], ['format']] k: 369 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 370 len: <class 'list'> Data: ['erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', 'erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', 'reopened', 'user', 'called', 'please', 'refer', 'tkt', 'inplant'] processed_text: ['erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', 'erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', 'reopened', 'user', 'called', 'please', 'refer', 'tkt', 'inplant'] list_processed_text: [['erp'], ['schulung'], ['raum'], ['kann'], ['beamer'], ['nicht'], ['verbinden'], ['erp'], ['schulung'], ['raum'], ['kann'], ['beamer'], ['nicht'], ['verbinden'], ['reopened'], ['user'], ['called'], ['please'], ['refer'], ['tkt'], ['inplant']] k: 371 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 372 len: <class 'list'> Data: ['unable', 'scan', 'resetting', 'password', 'password', 'management', 'tool', 'unable', 'scan', 'resetting', 'password', 'password', 'management', 'tool', 'contact', 'number', 'scan', 'document', 'landing', 'scan', 'folder', 'please', 'check'] processed_text: ['unable', 'scan', 'resetting', 'password', 'password', 'management', 'tool', 'unable', 'scan', 'resetting', 'password', 'password', 'management', 'tool', 'contact', 'number', 'scan', 'document', 'landing', 'scan', 'folder', 'please', 'check'] list_processed_text: [['unable'], ['scan'], ['resetting'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['scan'], ['resetting'], ['password'], ['password'], ['management'], ['tool'], ['contact'], ['number'], ['scan'], ['document'], ['landing'], ['scan'], ['folder'], ['please'], ['check']] k: 373 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 374 len: <class 'list'> Data: ['printer', 'issue', 'file', 'could', 'printed', 'due', 'error', 'hostname', 'tc', 'e'] processed_text: ['printer', 'issue', 'file', 'could', 'printed', 'due', 'error', 'hostname', 'tc', 'e'] list_processed_text: [['printer'], ['issue'], ['file'], ['could'], ['printed'], ['due'], ['error'], ['hostname'], ['tc'], ['e']] k: 375 len: <class 'list'> Data: ['engineering', 'record', 'issue', 'eng', 'record', 'engineering', 'tool', 'used', 'see', 'attachment', 'detailed'] processed_text: ['engineering', 'record', 'issue', 'eng', 'record', 'engineering', 'tool', 'used', 'see', 'attachment', 'detailed'] list_processed_text: [['engineering'], ['record'], ['issue'], ['eng'], ['record'], ['engineering'], ['tool'], ['used'], ['see'], ['attachment'], ['detailed']] k: 376 len: <class 'list'> Data: ['business', 'client', 'working', 'hello', 'business', 'client', 'soft', 'ware', 'working', 'computer', 'kind'] processed_text: ['business', 'client', 'working', 'hello', 'business', 'client', 'soft', 'ware', 'working', 'computer', 'kind'] list_processed_text: [['business'], ['client'], ['working'], ['hello'], ['business'], ['client'], ['soft'], ['ware'], ['working'], ['computer'], ['kind']] k: 377 len: <class 'list'> Data: ['new', 'password', 'working', 'vpn', 'hello', 'please', 'help', 'put', 'new', 'password', 'account', 'yesterday', 'changed', 'password', 'worked', 'hors', 'since', 'work', 'suspision', 'new', 'password', 'like', 'past', 'year', 'ago', 'want', 'log', 'password', 'management', 'tool', 'password', 'manager', 'without', 'success', 'pofgtzdravem', 'kind'] processed_text: ['new', 'password', 'working', 'vpn', 'hello', 'please', 'help', 'put', 'new', 'password', 'account', 'yesterday', 'changed', 'password', 'worked', 'hors', 'since', 'work', 'suspision', 'new', 'password', 'like', 'past', 'year', 'ago', 'want', 'log', 'password', 'management', 'tool', 'password', 'manager', 'without', 'success', 'pofgtzdravem', 'kind'] list_processed_text: [['new'], ['password'], ['working'], ['vpn'], ['hello'], ['please'], ['help'], ['put'], ['new'], ['password'], ['account'], ['yesterday'], ['changed'], ['password'], ['worked'], ['hors'], ['since'], ['work'], ['suspision'], ['new'], ['password'], ['like'], ['past'], ['year'], ['ago'], ['want'], ['log'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['without'], ['success'], ['pofgtzdravem'], ['kind']] k: 378 len: <class 'list'> Data: ['pls', 'extend', 'mm', 'user', 'name', 'thnak', 'need', 'create', 'pr', 'mm', 'pls', 'extend', 'mm', 'user', 'name', 'thnak', 'need', 'create', 'pr', 'mm'] processed_text: ['pls', 'extend', 'mm', 'user', 'name', 'thnak', 'need', 'create', 'pr', 'mm', 'pls', 'extend', 'mm', 'user', 'name', 'thnak', 'need', 'create', 'pr', 'mm'] list_processed_text: [['pls'], ['extend'], ['mm'], ['user'], ['name'], ['thnak'], ['need'], ['create'], ['pr'], ['mm'], ['pls'], ['extend'], ['mm'], ['user'], ['name'], ['thnak'], ['need'], ['create'], ['pr'], ['mm']] k: 379 len: <class 'list'> Data: ['setting', 'hand', 'set', 'email', 'hi', 'expert', 'like', 'continue', 'receive', 'support', 'setting', 'hand', 'set', 'email', 'pls', 'find', 'reply', 'wifi', 'data', 'plan', 'service', 'provider', 'required', 'setup', 'email', 'mobile', 'device', 'use', 'wifi', 'device', 'company', 'owned', 'n', 'replacement', 'old', 'device', 'n', 'yes', 'please', 'ensure', 'company', 'data', 'removed', 'old', 'device', 'delete', 'exchange', 'setup', 'setting', 'mail', 'contact', 'calendar', 'ok', 'personal', 'device', 'please', 'attach', 'approval', 'form', 'signed', 'manager', 'ticketing', 'tool', 'ticket', 'enclsoed', 'please', 'ensure', 'device', 'company', 'approved', 'email', 'setup', 'company', 'approved', 'device', 'please', 'contact', 'gsc', 'help', 'exchange', 'setup', 'personal', 'device', 'please', 'contact', 'device', 'vendor', 'also', 'refer', 'faq', 'section', 'step', 'exchange', 'setup', 'completed', 'device', 'n', 'seems', 'best'] processed_text: ['setting', 'hand', 'set', 'email', 'hi', 'expert', 'like', 'continue', 'receive', 'support', 'setting', 'hand', 'set', 'email', 'pls', 'find', 'reply', 'wifi', 'data', 'plan', 'service', 'provider', 'required', 'setup', 'email', 'mobile', 'device', 'use', 'wifi', 'device', 'company', 'owned', 'n', 'replacement', 'old', 'device', 'n', 'yes', 'please', 'ensure', 'company', 'data', 'removed', 'old', 'device', 'delete', 'exchange', 'setup', 'setting', 'mail', 'contact', 'calendar', 'ok', 'personal', 'device', 'please', 'attach', 'approval', 'form', 'signed', 'manager', 'ticketing', 'tool', 'ticket', 'enclsoed', 'please', 'ensure', 'device', 'company', 'approved', 'email', 'setup', 'company', 'approved', 'device', 'please', 'contact', 'gsc', 'help', 'exchange', 'setup', 'personal', 'device', 'please', 'contact', 'device', 'vendor', 'also', 'refer', 'faq', 'section', 'step', 'exchange', 'setup', 'completed', 'device', 'n', 'seems', 'best'] list_processed_text: [['setting'], ['hand'], ['set'], ['email'], ['hi'], ['expert'], ['like'], ['continue'], ['receive'], ['support'], ['setting'], ['hand'], ['set'], ['email'], ['pls'], ['find'], ['reply'], ['wifi'], ['data'], ['plan'], ['service'], ['provider'], ['required'], ['setup'], ['email'], ['mobile'], ['device'], ['use'], ['wifi'], ['device'], ['company'], ['owned'], ['n'], ['replacement'], ['old'], ['device'], ['n'], ['yes'], ['please'], ['ensure'], ['company'], ['data'], ['removed'], ['old'], ['device'], ['delete'], ['exchange'], ['setup'], ['setting'], ['mail'], ['contact'], ['calendar'], ['ok'], ['personal'], ['device'], ['please'], ['attach'], ['approval'], ['form'], ['signed'], ['manager'], ['ticketing'], ['tool'], ['ticket'], ['enclsoed'], ['please'], ['ensure'], ['device'], ['company'], ['approved'], ['email'], ['setup'], ['company'], ['approved'], ['device'], ['please'], ['contact'], ['gsc'], ['help'], ['exchange'], ['setup'], ['personal'], ['device'], ['please'], ['contact'], ['device'], ['vendor'], ['also'], ['refer'], ['faq'], ['section'], ['step'], ['exchange'], ['setup'], ['completed'], ['device'], ['n'], ['seems'], ['best']] k: 380 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 381 len: <class 'list'> Data: ['close', 'cost', 'center', 'dear', 'help', 'close', 'cost', 'center', 'cnn'] processed_text: ['close', 'cost', 'center', 'dear', 'help', 'close', 'cost', 'center', 'cnn'] list_processed_text: [['close'], ['cost'], ['center'], ['dear'], ['help'], ['close'], ['cost'], ['center'], ['cnn']] k: 382 len: <class 'list'> Data: ['unable', 'login', 'window', 'unable', 'login', 'window'] processed_text: ['unable', 'login', 'window', 'unable', 'login', 'window'] list_processed_text: [['unable'], ['login'], ['window'], ['unable'], ['login'], ['window']] k: 383 len: <class 'list'> Data: ['credit', 'memo', 'request', 'approva', 'hello', 'message', 'process', 'document', 'erp', 'workflow', 'find', 'none', 'please', 'advise'] processed_text: ['credit', 'memo', 'request', 'approva', 'hello', 'message', 'process', 'document', 'erp', 'workflow', 'find', 'none', 'please', 'advise'] list_processed_text: [['credit'], ['memo'], ['request'], ['approva'], ['hello'], ['message'], ['process'], ['document'], ['erp'], ['workflow'], ['find'], ['none'], ['please'], ['advise']] k: 384 len: <class 'list'> Data: ['engineering', 'tool', 'upload', 'issue', 'ufgkybsh', 'ijswtdve', 'pm', 'nwfodmhc', 'exurcwkm', 'tgryds', 'fw', 'engineering', 'tool', 'upload', 'issue', 'dear', 'sir', 'mam', 'please', 'find', 'screenshot', 'engineering', 'tool', 'issue', 'faced', 'upload', 'please', 'help', 'resolve'] processed_text: ['engineering', 'tool', 'upload', 'issue', 'ufgkybsh', 'ijswtdve', 'pm', 'nwfodmhc', 'exurcwkm', 'tgryds', 'fw', 'engineering', 'tool', 'upload', 'issue', 'dear', 'sir', 'mam', 'please', 'find', 'screenshot', 'engineering', 'tool', 'issue', 'faced', 'upload', 'please', 'help', 'resolve'] list_processed_text: [['engineering'], ['tool'], ['upload'], ['issue'], ['ufgkybsh'], ['ijswtdve'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tgryds'], ['fw'], ['engineering'], ['tool'], ['upload'], ['issue'], ['dear'], ['sir'], ['mam'], ['please'], ['find'], ['screenshot'], ['engineering'], ['tool'], ['issue'], ['faced'], ['upload'], ['please'], ['help'], ['resolve']] k: 385 len: <class 'list'> Data: ['unable', 'log', 'collaboration', 'platform', 'unable', 'log', 'collaboration', 'platform'] processed_text: ['unable', 'log', 'collaboration', 'platform', 'unable', 'log', 'collaboration', 'platform'] list_processed_text: [['unable'], ['log'], ['collaboration'], ['platform'], ['unable'], ['log'], ['collaboration'], ['platform']] k: 386 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 387 len: <class 'list'> Data: ['unable', 'pull', 'report', 'sale', 'markhtyeting', 'tab', 'unable', 'pull', 'report', 'sale', 'markhtyeting', 'tab', 'es'] processed_text: ['unable', 'pull', 'report', 'sale', 'markhtyeting', 'tab', 'unable', 'pull', 'report', 'sale', 'markhtyeting', 'tab', 'es'] list_processed_text: [['unable'], ['pull'], ['report'], ['sale'], ['markhtyeting'], ['tab'], ['unable'], ['pull'], ['report'], ['sale'], ['markhtyeting'], ['tab'], ['es']] k: 388 len: <class 'list'> Data: ['reset', 'user', 'password', 'reset', 'user', 'password'] processed_text: ['reset', 'user', 'password', 'reset', 'user', 'password'] list_processed_text: [['reset'], ['user'], ['password'], ['reset'], ['user'], ['password']] k: 389 len: <class 'list'> Data: ['query', 'regarding', 'logging', 'benefit', 'portal', 'query', 'regarding', 'logging', 'benefit', 'portal'] processed_text: ['query', 'regarding', 'logging', 'benefit', 'portal', 'query', 'regarding', 'logging', 'benefit', 'portal'] list_processed_text: [['query'], ['regarding'], ['logging'], ['benefit'], ['portal'], ['query'], ['regarding'], ['logging'], ['benefit'], ['portal']] k: 390 len: <class 'list'> Data: ['inquiry', 'erp', 'sid', 'bex', 'analysis', 'inquiry', 'erp', 'sid', 'bex', 'analysis'] processed_text: ['inquiry', 'erp', 'sid', 'bex', 'analysis', 'inquiry', 'erp', 'sid', 'bex', 'analysis'] list_processed_text: [['inquiry'], ['erp'], ['sid'], ['bex'], ['analysis'], ['inquiry'], ['erp'], ['sid'], ['bex'], ['analysis']] k: 391 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 392 len: <class 'list'> Data: ['interface', 'fastethernet', 'usa', 'plant', 'mpls', 'since', 'pm', 'interface', 'fastethernet', 'usa', 'plant', 'mpls', 'since', 'pm', 'cc', 'communication', 'mbps', 'circuit', 'id', 'cccethxakm'] processed_text: ['interface', 'fastethernet', 'usa', 'plant', 'mpls', 'since', 'pm', 'interface', 'fastethernet', 'usa', 'plant', 'mpls', 'since', 'pm', 'cc', 'communication', 'mbps', 'circuit', 'id', 'cccethxakm'] list_processed_text: [['interface'], ['fastethernet'], ['usa'], ['plant'], ['mpls'], ['since'], ['pm'], ['interface'], ['fastethernet'], ['usa'], ['plant'], ['mpls'], ['since'], ['pm'], ['cc'], ['communication'], ['mbps'], ['circuit'], ['id'], ['cccethxakm']] k: 393 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 394 len: <class 'list'> Data: ['please', 'assist', 'thrys', 'hsdbdtt', 'logging', 'reporting', 'tool', 'crm', 'see', 'attached', 'screen', 'shot', 'unable', 'access', 'using', 'window', 'credential', 'please', 'assist', 'thrys', 'hsdbdtt', 'logging', 'reporting', 'tool', 'crm', 'see', 'attached', 'screen', 'shot', 'unable', 'access', 'using', 'window', 'credential'] processed_text: ['please', 'assist', 'thrys', 'hsdbdtt', 'logging', 'reporting', 'tool', 'crm', 'see', 'attached', 'screen', 'shot', 'unable', 'access', 'using', 'window', 'credential', 'please', 'assist', 'thrys', 'hsdbdtt', 'logging', 'reporting', 'tool', 'crm', 'see', 'attached', 'screen', 'shot', 'unable', 'access', 'using', 'window', 'credential'] list_processed_text: [['please'], ['assist'], ['thrys'], ['hsdbdtt'], ['logging'], ['reporting'], ['tool'], ['crm'], ['see'], ['attached'], ['screen'], ['shot'], ['unable'], ['access'], ['using'], ['window'], ['credential'], ['please'], ['assist'], ['thrys'], ['hsdbdtt'], ['logging'], ['reporting'], ['tool'], ['crm'], ['see'], ['attached'], ['screen'], ['shot'], ['unable'], ['access'], ['using'], ['window'], ['credential']] k: 395 len: <class 'list'> Data: ['outlook', 'freezing', 'mobile', 'broadband', 'outlook', 'freezing', 'mobile', 'broadband'] processed_text: ['outlook', 'freezing', 'mobile', 'broadband', 'outlook', 'freezing', 'mobile', 'broadband'] list_processed_text: [['outlook'], ['freezing'], ['mobile'], ['broadband'], ['outlook'], ['freezing'], ['mobile'], ['broadband']] k: 396 len: <class 'list'> Data: ['configure', 'calendar', 'phone', 'sync', 'outlook', 'configure', 'calendar', 'phone', 'sync', 'outlook'] processed_text: ['configure', 'calendar', 'phone', 'sync', 'outlook', 'configure', 'calendar', 'phone', 'sync', 'outlook'] list_processed_text: [['configure'], ['calendar'], ['phone'], ['sync'], ['outlook'], ['configure'], ['calendar'], ['phone'], ['sync'], ['outlook']] k: 397 len: <class 'list'> Data: ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'] processed_text: ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'] list_processed_text: [['outlook'], ['freezing'], ['issue'], ['outlook'], ['freezing'], ['issue']] k: 398 len: <class 'list'> Data: ['unable', 'find', 'shortcut', 'erp', 'unable', 'find', 'shortcut', 'erp'] processed_text: ['unable', 'find', 'shortcut', 'erp', 'unable', 'find', 'shortcut', 'erp'] list_processed_text: [['unable'], ['find'], ['shortcut'], ['erp'], ['unable'], ['find'], ['shortcut'], ['erp']] k: 399 len: <class 'list'> Data: ['hr', 'tool', 'working', 'hr', 'tool', 'app', 'sso', 'page', 'open', 'beshryu', 'screen', 'open', 'pay', 'tax', 'tab', 'nothing', 'view', 'pay', 'record'] processed_text: ['hr', 'tool', 'working', 'hr', 'tool', 'app', 'sso', 'page', 'open', 'beshryu', 'screen', 'open', 'pay', 'tax', 'tab', 'nothing', 'view', 'pay', 'record'] list_processed_text: [['hr'], ['tool'], ['working'], ['hr'], ['tool'], ['app'], ['sso'], ['page'], ['open'], ['beshryu'], ['screen'], ['open'], ['pay'], ['tax'], ['tab'], ['nothing'], ['view'], ['pay'], ['record']] k: 400 len: <class 'list'> Data: ['outlook', 'open', 'unable', 'open', 'outlook', 'getting', 'error', 'message', 'new', 'guard', 'page', 'stack', 'cannot', 'created', 'tried', 'restarting', 'computer', 'tried', 'starting', 'outlook', 'safe', 'mode', 'tried', 'using', 'repair', 'function', 'outlook', 'please', 'advise'] processed_text: ['outlook', 'open', 'unable', 'open', 'outlook', 'getting', 'error', 'message', 'new', 'guard', 'page', 'stack', 'cannot', 'created', 'tried', 'restarting', 'computer', 'tried', 'starting', 'outlook', 'safe', 'mode', 'tried', 'using', 'repair', 'function', 'outlook', 'please', 'advise'] list_processed_text: [['outlook'], ['open'], ['unable'], ['open'], ['outlook'], ['getting'], ['error'], ['message'], ['new'], ['guard'], ['page'], ['stack'], ['cannot'], ['created'], ['tried'], ['restarting'], ['computer'], ['tried'], ['starting'], ['outlook'], ['safe'], ['mode'], ['tried'], ['using'], ['repair'], ['function'], ['outlook'], ['please'], ['advise']] k: 401 len: <class 'list'> Data: ['need', 'access', 'erp', 'kp', 'need', 'access', 'kp', 'enter', 'forecast', 'cost', 'center', 'requested', 'received', 'access', 'end', 'access', 'appears', 'gone', 'need'] processed_text: ['need', 'access', 'erp', 'kp', 'need', 'access', 'kp', 'enter', 'forecast', 'cost', 'center', 'requested', 'received', 'access', 'end', 'access', 'appears', 'gone', 'need'] list_processed_text: [['need'], ['access'], ['erp'], ['kp'], ['need'], ['access'], ['kp'], ['enter'], ['forecast'], ['cost'], ['center'], ['requested'], ['received'], ['access'], ['end'], ['access'], ['appears'], ['gone'], ['need']] k: 402 len: <class 'list'> Data: ['password', 'reset', 'yscgjexz', 'hxlbvjgf', 'password', 'reset', 'yscgjexz', 'hxlbvjgf'] processed_text: ['password', 'reset', 'yscgjexz', 'hxlbvjgf', 'password', 'reset', 'yscgjexz', 'hxlbvjgf'] list_processed_text: [['password'], ['reset'], ['yscgjexz'], ['hxlbvjgf'], ['password'], ['reset'], ['yscgjexz'], ['hxlbvjgf']] k: 403 len: <class 'list'> Data: ['node', 'lhqsv', 'located', 'usa', 'since', 'pm', 'node', 'lhqsv', 'located', 'usa', 'since', 'pm', 'interface', 'fc', 'lhqsv', 'sandplant', 'sandir', 'since', 'pm'] processed_text: ['node', 'lhqsv', 'located', 'usa', 'since', 'pm', 'node', 'lhqsv', 'located', 'usa', 'since', 'pm', 'interface', 'fc', 'lhqsv', 'sandplant', 'sandir', 'since', 'pm'] list_processed_text: [['node'], ['lhqsv'], ['located'], ['usa'], ['since'], ['pm'], ['node'], ['lhqsv'], ['located'], ['usa'], ['since'], ['pm'], ['interface'], ['fc'], ['lhqsv'], ['sandplant'], ['sandir'], ['since'], ['pm']] k: 404 len: <class 'list'> Data: ['account', 'lock', 'need', 'unlock', 'account', 'lock', 'need', 'unlock'] processed_text: ['account', 'lock', 'need', 'unlock', 'account', 'lock', 'need', 'unlock'] list_processed_text: [['account'], ['lock'], ['need'], ['unlock'], ['account'], ['lock'], ['need'], ['unlock']] k: 405 len: <class 'list'> Data: ['followup', 'ticket', 'followup', 'ticket'] processed_text: ['followup', 'ticket', 'followup', 'ticket'] list_processed_text: [['followup'], ['ticket'], ['followup'], ['ticket']] k: 406 len: <class 'list'> Data: ['hr', 'tool', 'payroll', 'sign', 'hr', 'tool', 'etime', 'unable', 'see', 'payroll', 'statement', 'try', 'access', 'receive', 'screen', 'move', 'view', 'best'] processed_text: ['hr', 'tool', 'payroll', 'sign', 'hr', 'tool', 'etime', 'unable', 'see', 'payroll', 'statement', 'try', 'access', 'receive', 'screen', 'move', 'view', 'best'] list_processed_text: [['hr'], ['tool'], ['payroll'], ['sign'], ['hr'], ['tool'], ['etime'], ['unable'], ['see'], ['payroll'], ['statement'], ['try'], ['access'], ['receive'], ['screen'], ['move'], ['view'], ['best']] k: 407 len: <class 'list'> Data: ['vpn', 'password', 'working', 'pl', 'support', 'resolve', 'problem'] processed_text: ['vpn', 'password', 'working', 'pl', 'support', 'resolve', 'problem'] list_processed_text: [['vpn'], ['password'], ['working'], ['pl'], ['support'], ['resolve'], ['problem']] k: 408 len: <class 'list'> Data: ['able', 'enter', 'project', 'lean', 'tracker', 'collaboration', 'platform', 'able', 'enter', 'project', 'lean', 'tracker', 'collaboration', 'platform', 'see', 'attached', 'error'] processed_text: ['able', 'enter', 'project', 'lean', 'tracker', 'collaboration', 'platform', 'able', 'enter', 'project', 'lean', 'tracker', 'collaboration', 'platform', 'see', 'attached', 'error'] list_processed_text: [['able'], ['enter'], ['project'], ['lean'], ['tracker'], ['collaboration'], ['platform'], ['able'], ['enter'], ['project'], ['lean'], ['tracker'], ['collaboration'], ['platform'], ['see'], ['attached'], ['error']] k: 409 len: <class 'list'> Data: ['urgent', 'email', 'delegation', 'hi', 'associate', 'leave', 'vsp', 'end', 'outlook', 'outlook', 'gone', 'received', 'email', 'stored', 'collaboration', 'platform', 'see', 'anything', 'click', 'link', 'email', 'restored'] processed_text: ['urgent', 'email', 'delegation', 'hi', 'associate', 'leave', 'vsp', 'end', 'outlook', 'outlook', 'gone', 'received', 'email', 'stored', 'collaboration', 'platform', 'see', 'anything', 'click', 'link', 'email', 'restored'] list_processed_text: [['urgent'], ['email'], ['delegation'], ['hi'], ['associate'], ['leave'], ['vsp'], ['end'], ['outlook'], ['outlook'], ['gone'], ['received'], ['email'], ['stored'], ['collaboration'], ['platform'], ['see'], ['anything'], ['click'], ['link'], ['email'], ['restored']] k: 410 len: <class 'list'> Data: ['access', 'retired', 'employee', 'collaboration', 'platform', 'myhrt', 'sthry', 'retired', 'plant', 'manager', 'usa', 'replaced', 'request', 'access', 'collaboration', 'platform', 'copy', 'relevant', 'document', 'deleted', 'per', 'mail', 'mqjdyizg', 'amhywoqg', 'fw', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'content', 'preserved', 'day', 'danie', 'follow', 'see', 'file', 'need', 'utejhdyd', 'vice', 'president', 'general', 'manager', 'mail', 'mqjdyizg', 'amhywoqg', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'content', 'preserved', 'day', 'myhrt', 'sthry', 'account', 'deleted', 'active', 'directory', 'collaboration', 'platform', 'business', 'preserved', 'day', 'temporary', 'owner', 'document', 'saved', 'collaboration', 'platform', 'business', 'would', 'like', 'save', 'content', 'beyond', 'day', 'retention', 'period', 'copy', 'important', 'document', 'another', 'location', 'also', 'contact', 'administrator', 'reassign', 'ownership', 'another', 'collaboration', 'platform', 'business', 'owner', 'day', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'permanently', 'deleted', 'go', 'myhrt', 'sthry', 'collaboration', 'platform', 'business'] processed_text: ['access', 'retired', 'employee', 'collaboration', 'platform', 'myhrt', 'sthry', 'retired', 'plant', 'manager', 'usa', 'replaced', 'request', 'access', 'collaboration', 'platform', 'copy', 'relevant', 'document', 'deleted', 'per', 'mail', 'mqjdyizg', 'amhywoqg', 'fw', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'content', 'preserved', 'day', 'danie', 'follow', 'see', 'file', 'need', 'utejhdyd', 'vice', 'president', 'general', 'manager', 'mail', 'mqjdyizg', 'amhywoqg', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'content', 'preserved', 'day', 'myhrt', 'sthry', 'account', 'deleted', 'active', 'directory', 'collaboration', 'platform', 'business', 'preserved', 'day', 'temporary', 'owner', 'document', 'saved', 'collaboration', 'platform', 'business', 'would', 'like', 'save', 'content', 'beyond', 'day', 'retention', 'period', 'copy', 'important', 'document', 'another', 'location', 'also', 'contact', 'administrator', 'reassign', 'ownership', 'another', 'collaboration', 'platform', 'business', 'owner', 'day', 'myhrt', 'sthry', 'collaboration', 'platform', 'business', 'permanently', 'deleted', 'go', 'myhrt', 'sthry', 'collaboration', 'platform', 'business'] list_processed_text: [['access'], ['retired'], ['employee'], ['collaboration'], ['platform'], ['myhrt'], ['sthry'], ['retired'], ['plant'], ['manager'], ['usa'], ['replaced'], ['request'], ['access'], ['collaboration'], ['platform'], ['copy'], ['relevant'], ['document'], ['deleted'], ['per'], ['mail'], ['mqjdyizg'], ['amhywoqg'], ['fw'], ['myhrt'], ['sthry'], ['collaboration'], ['platform'], ['business'], ['content'], ['preserved'], ['day'], ['danie'], ['follow'], ['see'], ['file'], ['need'], ['utejhdyd'], ['vice'], ['president'], ['general'], ['manager'], ['mail'], ['mqjdyizg'], ['amhywoqg'], ['myhrt'], ['sthry'], ['collaboration'], ['platform'], ['business'], ['content'], ['preserved'], ['day'], ['myhrt'], ['sthry'], ['account'], ['deleted'], ['active'], ['directory'], ['collaboration'], ['platform'], ['business'], ['preserved'], ['day'], ['temporary'], ['owner'], ['document'], ['saved'], ['collaboration'], ['platform'], ['business'], ['would'], ['like'], ['save'], ['content'], ['beyond'], ['day'], ['retention'], ['period'], ['copy'], ['important'], ['document'], ['another'], ['location'], ['also'], ['contact'], ['administrator'], ['reassign'], ['ownership'], ['another'], ['collaboration'], ['platform'], ['business'], ['owner'], ['day'], ['myhrt'], ['sthry'], ['collaboration'], ['platform'], ['business'], ['permanently'], ['deleted'], ['go'], ['myhrt'], ['sthry'], ['collaboration'], ['platform'], ['business']] k: 411 len: <class 'list'> Data: ['cannot', 'open', 'excel', 'file', 'hostname', 'department', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'bkzcfmse', 'naslrwdb', 'cannot', 'open', 'excel', 'file', 'hostname', 'department', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'bkzcfmse', 'naslrwdb', 'file', 'slow', 'open', 'freeze'] processed_text: ['cannot', 'open', 'excel', 'file', 'hostname', 'department', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'bkzcfmse', 'naslrwdb', 'cannot', 'open', 'excel', 'file', 'hostname', 'department', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'bkzcfmse', 'naslrwdb', 'file', 'slow', 'open', 'freeze'] list_processed_text: [['cannot'], ['open'], ['excel'], ['file'], ['hostname'], ['department'], ['hrm'], ['pricing'], ['current'], ['pricing'], ['fy'], ['bkzcfmse'], ['naslrwdb'], ['cannot'], ['open'], ['excel'], ['file'], ['hostname'], ['department'], ['hrm'], ['pricing'], ['current'], ['pricing'], ['fy'], ['bkzcfmse'], ['naslrwdb'], ['file'], ['slow'], ['open'], ['freeze']] k: 412 len: <class 'list'> Data: ['cannot', 'print', 'prtqx', 'profile', 'rqxw', 'cannot', 'print', 'prtqx', 'profile', 'rqxw'] processed_text: ['cannot', 'print', 'prtqx', 'profile', 'rqxw', 'cannot', 'print', 'prtqx', 'profile', 'rqxw'] list_processed_text: [['cannot'], ['print'], ['prtqx'], ['profile'], ['rqxw'], ['cannot'], ['print'], ['prtqx'], ['profile'], ['rqxw']] k: 413 len: <class 'list'> Data: ['cannot', 'print', 'window', 'new', 'pc', 'given', 'cannot', 'print', 'window', 'new', 'pc', 'given'] processed_text: ['cannot', 'print', 'window', 'new', 'pc', 'given', 'cannot', 'print', 'window', 'new', 'pc', 'given'] list_processed_text: [['cannot'], ['print'], ['window'], ['new'], ['pc'], ['given'], ['cannot'], ['print'], ['window'], ['new'], ['pc'], ['given']] k: 414 len: <class 'list'> Data: ['intermittent', 'wireless', 'issue', 'intermittent', 'wireless', 'issue'] processed_text: ['intermittent', 'wireless', 'issue', 'intermittent', 'wireless', 'issue'] list_processed_text: [['intermittent'], ['wireless'], ['issue'], ['intermittent'], ['wireless'], ['issue']] k: 415 len: <class 'list'> Data: ['reset', 'password', 'prgewfly', 'ndtfvple', 'using', 'password', 'management', 'tool', 'password', 'reset', 'complete'] processed_text: ['reset', 'password', 'prgewfly', 'ndtfvple', 'using', 'password', 'management', 'tool', 'password', 'reset', 'complete'] list_processed_text: [['reset'], ['password'], ['prgewfly'], ['ndtfvple'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['complete']] k: 416 len: <class 'list'> Data: ['reset', 'password', 'prgewfly', 'ndtfvple', 'erp', 'development', 'erp', 'completed'] processed_text: ['reset', 'password', 'prgewfly', 'ndtfvple', 'erp', 'development', 'erp', 'completed'] list_processed_text: [['reset'], ['password'], ['prgewfly'], ['ndtfvple'], ['erp'], ['development'], ['erp'], ['completed']] k: 417 len: <class 'list'> Data: ['outlook', 'slow', 'outlook', 'slow'] processed_text: ['outlook', 'slow', 'outlook', 'slow'] list_processed_text: [['outlook'], ['slow'], ['outlook'], ['slow']] k: 418 len: <class 'list'> Data: ['vpn', 'meter', 'amount', 'data', 'transferred', 'vpn', 'meter', 'amount', 'data', 'transferred'] processed_text: ['vpn', 'meter', 'amount', 'data', 'transferred', 'vpn', 'meter', 'amount', 'data', 'transferred'] list_processed_text: [['vpn'], ['meter'], ['amount'], ['data'], ['transferred'], ['vpn'], ['meter'], ['amount'], ['data'], ['transferred']] k: 419 len: <class 'list'> Data: ['recall', 'incident', 'ticket', 'assigned', 'oncidblt', 'ucewizyd', 'trhsys', 'hrydjs', 'would', 'like', 'recall', 'message', 'incident', 'ticket', 'assigned', 'oncidblt', 'ucewizyd'] processed_text: ['recall', 'incident', 'ticket', 'assigned', 'oncidblt', 'ucewizyd', 'trhsys', 'hrydjs', 'would', 'like', 'recall', 'message', 'incident', 'ticket', 'assigned', 'oncidblt', 'ucewizyd'] list_processed_text: [['recall'], ['incident'], ['ticket'], ['assigned'], ['oncidblt'], ['ucewizyd'], ['trhsys'], ['hrydjs'], ['would'], ['like'], ['recall'], ['message'], ['incident'], ['ticket'], ['assigned'], ['oncidblt'], ['ucewizyd']] k: 420 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 421 len: <class 'list'> Data: ['account', 'get', 'locked', 'account', 'get', 'locked', 'id', 'changed', 'company', 'company'] processed_text: ['account', 'get', 'locked', 'account', 'get', 'locked', 'id', 'changed', 'company', 'company'] list_processed_text: [['account'], ['get'], ['locked'], ['account'], ['get'], ['locked'], ['id'], ['changed'], ['company'], ['company']] k: 422 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 423 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 424 len: <class 'list'> Data: ['query', 'license', 'knlrgsiv', 'cqvuexjz', 'knlrgsiv', 'cqvuexjz', 'license'] processed_text: ['query', 'license', 'knlrgsiv', 'cqvuexjz', 'knlrgsiv', 'cqvuexjz', 'license'] list_processed_text: [['query'], ['license'], ['knlrgsiv'], ['cqvuexjz'], ['knlrgsiv'], ['cqvuexjz'], ['license']] k: 425 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 426 len: <class 'list'> Data: ['password', 'change', 'request', 'password', 'change', 'request'] processed_text: ['password', 'change', 'request', 'password', 'change', 'request'] list_processed_text: [['password'], ['change'], ['request'], ['password'], ['change'], ['request']] k: 427 len: <class 'list'> Data: ['uacyltoe', 'hxgayczeing', 'pl', 'ignore', 'uacyltoe', 'hxgayczeing', 'pl', 'ignore'] processed_text: ['uacyltoe', 'hxgayczeing', 'pl', 'ignore', 'uacyltoe', 'hxgayczeing', 'pl', 'ignore'] list_processed_text: [['uacyltoe'], ['hxgayczeing'], ['pl'], ['ignore'], ['uacyltoe'], ['hxgayczeing'], ['pl'], ['ignore']] k: 428 len: <class 'list'> Data: ['reset', 'password', 'xoukpfvr', 'oxvakgcl', 'erp', 'production', 'hcm', 'unable', 'login', 'erp', 'system', 'engineering', 'tool', 'sid'] processed_text: ['reset', 'password', 'xoukpfvr', 'oxvakgcl', 'erp', 'production', 'hcm', 'unable', 'login', 'erp', 'system', 'engineering', 'tool', 'sid'] list_processed_text: [['reset'], ['password'], ['xoukpfvr'], ['oxvakgcl'], ['erp'], ['production'], ['hcm'], ['unable'], ['login'], ['erp'], ['system'], ['engineering'], ['tool'], ['sid']] k: 429 len: <class 'list'> Data: ['misplaced', 'login', 'information', 'es', 'misplaced', 'login', 'information', 'es'] processed_text: ['misplaced', 'login', 'information', 'es', 'misplaced', 'login', 'information', 'es'] list_processed_text: [['misplaced'], ['login'], ['information'], ['es'], ['misplaced'], ['login'], ['information'], ['es']] k: 430 len: <class 'list'> Data: ['reset', 'erp', 'sid', 'password', 'vvtgryhud', 'reset', 'erp', 'sid', 'password', 'vvtgryhud'] processed_text: ['reset', 'erp', 'sid', 'password', 'vvtgryhud', 'reset', 'erp', 'sid', 'password', 'vvtgryhud'] list_processed_text: [['reset'], ['erp'], ['sid'], ['password'], ['vvtgryhud'], ['reset'], ['erp'], ['sid'], ['password'], ['vvtgryhud']] k: 431 len: <class 'list'> Data: ['unable', 'login', 'hub', 'misplaced', 'username', 'password'] processed_text: ['unable', 'login', 'hub', 'misplaced', 'username', 'password'] list_processed_text: [['unable'], ['login'], ['hub'], ['misplaced'], ['username'], ['password']] k: 432 len: <class 'list'> Data: ['reset', 'password', 'xoukpfvr', 'oxvakgcl', 'using', 'password', 'management', 'tool', 'password', 'reset', 'per', 'system', 'instruction', 'reset', 'password', 'unable', 'login', 'erp', 'system', 'sid'] processed_text: ['reset', 'password', 'xoukpfvr', 'oxvakgcl', 'using', 'password', 'management', 'tool', 'password', 'reset', 'per', 'system', 'instruction', 'reset', 'password', 'unable', 'login', 'erp', 'system', 'sid'] list_processed_text: [['reset'], ['password'], ['xoukpfvr'], ['oxvakgcl'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['per'], ['system'], ['instruction'], ['reset'], ['password'], ['unable'], ['login'], ['erp'], ['system'], ['sid']] k: 433 len: <class 'list'> Data: ['misplaced', 'username', 'password', 'unable', 'login', 'hub'] processed_text: ['misplaced', 'username', 'password', 'unable', 'login', 'hub'] list_processed_text: [['misplaced'], ['username'], ['password'], ['unable'], ['login'], ['hub']] k: 434 len: <class 'list'> Data: ['password', 'reset', 'axhkewnv', 'zpumhlic', 'citrix', 'password', 'reset', 'axhkewnv', 'zpumhlic', 'citrix'] processed_text: ['password', 'reset', 'axhkewnv', 'zpumhlic', 'citrix', 'password', 'reset', 'axhkewnv', 'zpumhlic', 'citrix'] list_processed_text: [['password'], ['reset'], ['axhkewnv'], ['zpumhlic'], ['citrix'], ['password'], ['reset'], ['axhkewnv'], ['zpumhlic'], ['citrix']] k: 435 len: <class 'list'> Data: ['unable', 'use', 'jabra', 'head', 'phone', 'skype', 'call', 'unable', 'use', 'jabra', 'head', 'phone', 'skype', 'call'] processed_text: ['unable', 'use', 'jabra', 'head', 'phone', 'skype', 'call', 'unable', 'use', 'jabra', 'head', 'phone', 'skype', 'call'] list_processed_text: [['unable'], ['use'], ['jabra'], ['head'], ['phone'], ['skype'], ['call'], ['unable'], ['use'], ['jabra'], ['head'], ['phone'], ['skype'], ['call']] k: 436 len: <class 'list'> Data: ['removing', 'mail', 'reminder', 'workflow', 'system', 'requisition', 'approval', 'removing', 'mail', 'reminder', 'workflow', 'system', 'requisition', 'approval', 'get', 'repeated', 'mail', 'reminder', 'purchase', 'approval', 'workflow', 'task', 'completed', 'long', 'ago'] processed_text: ['removing', 'mail', 'reminder', 'workflow', 'system', 'requisition', 'approval', 'removing', 'mail', 'reminder', 'workflow', 'system', 'requisition', 'approval', 'get', 'repeated', 'mail', 'reminder', 'purchase', 'approval', 'workflow', 'task', 'completed', 'long', 'ago'] list_processed_text: [['removing'], ['mail'], ['reminder'], ['workflow'], ['system'], ['requisition'], ['approval'], ['removing'], ['mail'], ['reminder'], ['workflow'], ['system'], ['requisition'], ['approval'], ['get'], ['repeated'], ['mail'], ['reminder'], ['purchase'], ['approval'], ['workflow'], ['task'], ['completed'], ['long'], ['ago']] k: 437 len: <class 'list'> Data: ['collaboration', 'platform', 'deleted', 'information', 'hello', 'user', 'tgrsyduf', 'accidentally', 'deleted', 'information', 'collaboration', 'platform', 'yesterday', 'possible', 'recover', 'information'] processed_text: ['collaboration', 'platform', 'deleted', 'information', 'hello', 'user', 'tgrsyduf', 'accidentally', 'deleted', 'information', 'collaboration', 'platform', 'yesterday', 'possible', 'recover', 'information'] list_processed_text: [['collaboration'], ['platform'], ['deleted'], ['information'], ['hello'], ['user'], ['tgrsyduf'], ['accidentally'], ['deleted'], ['information'], ['collaboration'], ['platform'], ['yesterday'], ['possible'], ['recover'], ['information']] k: 438 len: <class 'list'> Data: ['collaboration', 'platform', 'site', 'request', 'hello', 'add', 'user', 'team', 'member', 'cybersecurity', 'website', 'ownership', 'user', 'edit', 'access', 'qasouhlc', 'xkhsirtd', 'gzhapcld', 'fdigznbk', 'ugyothfz', 'ugrmkdhx', 'raosetuv', 'hmgwrkzb', 'mfyivqes', 'cpihaxbs', 'thrdyd', 'dhdtwdd', 'thrdyakdj', 'yhtdush', 'jqeczxtn', 'gfjcronyudhakar', 'akisjtzm', 'uvbmysgcbenezer', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'thtudb', 'ghtysui'] processed_text: ['collaboration', 'platform', 'site', 'request', 'hello', 'add', 'user', 'team', 'member', 'cybersecurity', 'website', 'ownership', 'user', 'edit', 'access', 'qasouhlc', 'xkhsirtd', 'gzhapcld', 'fdigznbk', 'ugyothfz', 'ugrmkdhx', 'raosetuv', 'hmgwrkzb', 'mfyivqes', 'cpihaxbs', 'thrdyd', 'dhdtwdd', 'thrdyakdj', 'yhtdush', 'jqeczxtn', 'gfjcronyudhakar', 'akisjtzm', 'uvbmysgcbenezer', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'thtudb', 'ghtysui'] list_processed_text: [['collaboration'], ['platform'], ['site'], ['request'], ['hello'], ['add'], ['user'], ['team'], ['member'], ['cybersecurity'], ['website'], ['ownership'], ['user'], ['edit'], ['access'], ['qasouhlc'], ['xkhsirtd'], ['gzhapcld'], ['fdigznbk'], ['ugyothfz'], ['ugrmkdhx'], ['raosetuv'], ['hmgwrkzb'], ['mfyivqes'], ['cpihaxbs'], ['thrdyd'], ['dhdtwdd'], ['thrdyakdj'], ['yhtdush'], ['jqeczxtn'], ['gfjcronyudhakar'], ['akisjtzm'], ['uvbmysgcbenezer'], ['qfrntose'], ['ivnhumzjalakrisyuhnyrtn'], ['thtudb'], ['ghtysui']] k: 439 len: <class 'list'> Data: ['reset', 'password', 'dnlhsgyo', 'newducsl', 'erp', 'production', 'erp', 'setting', 'new', 'overall', 'password', 'access', 'erp', 'many', 'fails', 'sorry'] processed_text: ['reset', 'password', 'dnlhsgyo', 'newducsl', 'erp', 'production', 'erp', 'setting', 'new', 'overall', 'password', 'access', 'erp', 'many', 'fails', 'sorry'] list_processed_text: [['reset'], ['password'], ['dnlhsgyo'], ['newducsl'], ['erp'], ['production'], ['erp'], ['setting'], ['new'], ['overall'], ['password'], ['access'], ['erp'], ['many'], ['fails'], ['sorry']] k: 440 len: <class 'list'> Data: ['workplanning', 'germany', 'plant', 'plant', 'need', 'bbo', 'erp', 'possibilites', 'hello', 'collegue', 'thryduf', 'hddwtra', 'need', 'future', 'fully', 'erp', 'acceptance', 'plant', 'plant'] processed_text: ['workplanning', 'germany', 'plant', 'plant', 'need', 'bbo', 'erp', 'possibilites', 'hello', 'collegue', 'thryduf', 'hddwtra', 'need', 'future', 'fully', 'erp', 'acceptance', 'plant', 'plant'] list_processed_text: [['workplanning'], ['germany'], ['plant'], ['plant'], ['need'], ['bbo'], ['erp'], ['possibilites'], ['hello'], ['collegue'], ['thryduf'], ['hddwtra'], ['need'], ['future'], ['fully'], ['erp'], ['acceptance'], ['plant'], ['plant']] k: 441 len: <class 'list'> Data: ['problem', 'portal', 'knlrgsiv', 'cqvuexjz', 'problem', 'portal', 'knlrgsiv', 'cqvuexjz'] processed_text: ['problem', 'portal', 'knlrgsiv', 'cqvuexjz', 'problem', 'portal', 'knlrgsiv', 'cqvuexjz'] list_processed_text: [['problem'], ['portal'], ['knlrgsiv'], ['cqvuexjz'], ['problem'], ['portal'], ['knlrgsiv'], ['cqvuexjz']] k: 442 len: <class 'list'> Data: ['unable', 'login', 'erp', 'ppt', 'password', 'reset', 'needed'] processed_text: ['unable', 'login', 'erp', 'ppt', 'password', 'reset', 'needed'] list_processed_text: [['unable'], ['login'], ['erp'], ['ppt'], ['password'], ['reset'], ['needed']] k: 443 len: <class 'list'> Data: ['unable', 'login', 'pc', 'misplaced', 'username', 'password'] processed_text: ['unable', 'login', 'pc', 'misplaced', 'username', 'password'] list_processed_text: [['unable'], ['login'], ['pc'], ['misplaced'], ['username'], ['password']] k: 444 len: <class 'list'> Data: ['unable', 'join', 'setup', 'skype', 'meeting', 'unable', 'join', 'setup', 'skype', 'meeting'] processed_text: ['unable', 'join', 'setup', 'skype', 'meeting', 'unable', 'join', 'setup', 'skype', 'meeting'] list_processed_text: [['unable'], ['join'], ['setup'], ['skype'], ['meeting'], ['unable'], ['join'], ['setup'], ['skype'], ['meeting']] k: 445 len: <class 'list'> Data: ['rma', 'workflow', 'error', 'status', 'rma', 'workflow', 'error', 'status', 'please', 'advise', 'reason', 'error', 'restart', 'workflow'] processed_text: ['rma', 'workflow', 'error', 'status', 'rma', 'workflow', 'error', 'status', 'please', 'advise', 'reason', 'error', 'restart', 'workflow'] list_processed_text: [['rma'], ['workflow'], ['error'], ['status'], ['rma'], ['workflow'], ['error'], ['status'], ['please'], ['advise'], ['reason'], ['error'], ['restart'], ['workflow']] k: 446 len: <class 'list'> Data: ['setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni', 'setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni'] processed_text: ['setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni', 'setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni'] list_processed_text: [['setup'], ['rechner'], ['ewel'], ['r'], ['hr'], ['thrydad'], ['thrydad'], ['consulting'], ['puxsvfwr'], ['cwkjruni'], ['setup'], ['rechner'], ['ewel'], ['r'], ['hr'], ['thrydad'], ['thrydad'], ['consulting'], ['puxsvfwr'], ['cwkjruni']] k: 447 len: <class 'list'> Data: ['employee', 'account', 'reactivation', 'etdh', 'thsydaas', 'etdh', 'thsydaas', 'employee', 'computer', 'access', 'terminated', 'please', 'usa', 'access', 'back', 'aerp', 'last', 'day', 'company'] processed_text: ['employee', 'account', 'reactivation', 'etdh', 'thsydaas', 'etdh', 'thsydaas', 'employee', 'computer', 'access', 'terminated', 'please', 'usa', 'access', 'back', 'aerp', 'last', 'day', 'company'] list_processed_text: [['employee'], ['account'], ['reactivation'], ['etdh'], ['thsydaas'], ['etdh'], ['thsydaas'], ['employee'], ['computer'], ['access'], ['terminated'], ['please'], ['usa'], ['access'], ['back'], ['aerp'], ['last'], ['day'], ['company']] k: 448 len: <class 'list'> Data: ['recurrent', 'network', 'outage', 'every', 'minute', 'penn', 'recurrent', 'network', 'outage', 'every', 'minute', 'intranet', 'internet', 'affected', 'contact'] processed_text: ['recurrent', 'network', 'outage', 'every', 'minute', 'penn', 'recurrent', 'network', 'outage', 'every', 'minute', 'intranet', 'internet', 'affected', 'contact'] list_processed_text: [['recurrent'], ['network'], ['outage'], ['every'], ['minute'], ['penn'], ['recurrent'], ['network'], ['outage'], ['every'], ['minute'], ['intranet'], ['internet'], ['affected'], ['contact']] k: 449 len: <class 'list'> Data: ['engineering', 'tool', 'show', 'message', 'user', 'south', 'amerirtca', 'logon', 'since', 'engineering', 'tool', 'user', 'south', 'amerirtca', 'reported', 'engineering', 'tool', 'show', 'message', 'logon', 'related', 'server', 'hostname', 'plm', 'server', 'please', 'see', 'attached', 'message'] processed_text: ['engineering', 'tool', 'show', 'message', 'user', 'south', 'amerirtca', 'logon', 'since', 'engineering', 'tool', 'user', 'south', 'amerirtca', 'reported', 'engineering', 'tool', 'show', 'message', 'logon', 'related', 'server', 'hostname', 'plm', 'server', 'please', 'see', 'attached', 'message'] list_processed_text: [['engineering'], ['tool'], ['show'], ['message'], ['user'], ['south'], ['amerirtca'], ['logon'], ['since'], ['engineering'], ['tool'], ['user'], ['south'], ['amerirtca'], ['reported'], ['engineering'], ['tool'], ['show'], ['message'], ['logon'], ['related'], ['server'], ['hostname'], ['plm'], ['server'], ['please'], ['see'], ['attached'], ['message']] k: 450 len: <class 'list'> Data: ['please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'active', 'please', 'um', 'kkruf', 'please', 'reactivate', 'laptop', 'r', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'active', 'please', 'ckruf', 'fyi', 'mfyivqes', 'cpihaxbs', 'sent', 'tuesday', 'october', 'ughzilfm', 'cfibdamq', 'regarding', 'please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'rtrhfyd', 'sugajadk', 'active', 'please', 'co', 'please', 'tick', 'help', 'open', 'nnen', 'make', 'gr', 'e'] processed_text: ['please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'active', 'please', 'um', 'kkruf', 'please', 'reactivate', 'laptop', 'r', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'active', 'please', 'ckruf', 'fyi', 'mfyivqes', 'cpihaxbs', 'sent', 'tuesday', 'october', 'ughzilfm', 'cfibdamq', 'regarding', 'please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'rtrhfyd', 'sugajadk', 'active', 'please', 'co', 'please', 'tick', 'help', 'open', 'nnen', 'make', 'gr', 'e'] list_processed_text: [['please'], ['account'], ['ewel'], ['reactivate'], ['laptop'], ['r'], ['ein'], ['hr'], ['pr'], ['fer'], ['account'], ['r'], ['trhfyd'], ['sugajadd'], ['active'], ['please'], ['um'], ['kkruf'], ['please'], ['reactivate'], ['laptop'], ['r'], ['hr'], ['pr'], ['fer'], ['account'], ['r'], ['trhfyd'], ['sugajadd'], ['active'], ['please'], ['ckruf'], ['fyi'], ['mfyivqes'], ['cpihaxbs'], ['sent'], ['tuesday'], ['october'], ['ughzilfm'], ['cfibdamq'], ['regarding'], ['please'], ['account'], ['ewel'], ['reactivate'], ['laptop'], ['r'], ['ein'], ['hr'], ['pr'], ['fer'], ['account'], ['rtrhfyd'], ['sugajadk'], ['active'], ['please'], ['co'], ['please'], ['tick'], ['help'], ['open'], ['nnen'], ['make'], ['gr'], ['e']] k: 451 len: <class 'list'> Data: ['sale', 'manager', 'view', 'business', 'object', 'explorer', 'following', 'sale', 'manager', 'cannot', 'see', 'sale', 'manager', 'view', 'business', 'object', 'explorer', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'athrdyau', 'vksfrhdx', 'njhaqket', 'please', 'check', 'security', 'setting', 'respect', 'bobj'] processed_text: ['sale', 'manager', 'view', 'business', 'object', 'explorer', 'following', 'sale', 'manager', 'cannot', 'see', 'sale', 'manager', 'view', 'business', 'object', 'explorer', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'athrdyau', 'vksfrhdx', 'njhaqket', 'please', 'check', 'security', 'setting', 'respect', 'bobj'] list_processed_text: [['sale'], ['manager'], ['view'], ['business'], ['object'], ['explorer'], ['following'], ['sale'], ['manager'], ['cannot'], ['see'], ['sale'], ['manager'], ['view'], ['business'], ['object'], ['explorer'], ['tcflirwg'], ['ojflyruq'], ['bmudkpie'], ['qolrvbip'], ['thryd'], ['athrdyau'], ['vksfrhdx'], ['njhaqket'], ['please'], ['check'], ['security'], ['setting'], ['respect'], ['bobj']] k: 452 len: <class 'list'> Data: ['reset', 'password', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qnxfegjw'], ['rljdhmwb'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['qnxfegjw'], ['rljdhmwb'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 453 len: <class 'list'> Data: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] processed_text: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua'], ['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua']] k: 454 len: <class 'list'> Data: ['support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx', 'support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx'] processed_text: ['support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx', 'support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx'] list_processed_text: [['support'], ['r'], ['fa'], ['thrydsss'], ['funke'], ['laeusvjo'], ['fvaihgpx'], ['support'], ['r'], ['fa'], ['thrydsss'], ['funke'], ['laeusvjo'], ['fvaihgpx']] k: 455 len: <class 'list'> Data: ['illustrated', 'book', 'exchange', 'printer', 'vepgot', 'poezmwny', 'illustrated', 'book', 'exchange', 'printer', 'vepgot', 'poezmwny'] processed_text: ['illustrated', 'book', 'exchange', 'printer', 'vepgot', 'poezmwny', 'illustrated', 'book', 'exchange', 'printer', 'vepgot', 'poezmwny'] list_processed_text: [['illustrated'], ['book'], ['exchange'], ['printer'], ['vepgot'], ['poezmwny'], ['illustrated'], ['book'], ['exchange'], ['printer'], ['vepgot'], ['poezmwny']] k: 456 len: <class 'list'> Data: ['primary', 'telephone', 'flow', 'company', 'eu', 'eu', 'plant', 'hello', 'writes', 'company', 'eu', 'plant', 'mail', 'inform', 'primary', 'telephone', 'flow', 'incomig', 'call', 'external', 'call', 'running', 'opened', 'tck', 'telecom', 'investigate', 'solving', 'problem', 'tck'] processed_text: ['primary', 'telephone', 'flow', 'company', 'eu', 'eu', 'plant', 'hello', 'writes', 'company', 'eu', 'plant', 'mail', 'inform', 'primary', 'telephone', 'flow', 'incomig', 'call', 'external', 'call', 'running', 'opened', 'tck', 'telecom', 'investigate', 'solving', 'problem', 'tck'] list_processed_text: [['primary'], ['telephone'], ['flow'], ['company'], ['eu'], ['eu'], ['plant'], ['hello'], ['writes'], ['company'], ['eu'], ['plant'], ['mail'], ['inform'], ['primary'], ['telephone'], ['flow'], ['incomig'], ['call'], ['external'], ['call'], ['running'], ['opened'], ['tck'], ['telecom'], ['investigate'], ['solving'], ['problem'], ['tck']] k: 457 len: <class 'list'> Data: ['bobj', 'access', 'working', 'hello', 'enter', 'bobj', 'able', 'look', 'space', 'see', 'screenshot', 'error', 'entering', 'space', 'sale', 'manager', 'company', 'western', 'europe'] processed_text: ['bobj', 'access', 'working', 'hello', 'enter', 'bobj', 'able', 'look', 'space', 'see', 'screenshot', 'error', 'entering', 'space', 'sale', 'manager', 'company', 'western', 'europe'] list_processed_text: [['bobj'], ['access'], ['working'], ['hello'], ['enter'], ['bobj'], ['able'], ['look'], ['space'], ['see'], ['screenshot'], ['error'], ['entering'], ['space'], ['sale'], ['manager'], ['company'], ['western'], ['europe']] k: 458 len: <class 'list'> Data: ['bobj', 'access', 'sale', 'manager', 'team', 'sale', 'manager', 'seeing', 'team', 'view', 'bobj', 'anymore', 'global', 'access', 'need', 'pull', 'data', 'analysis', 'please', 'reinstall', 'global', 'access', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'adwjfpbreu', 'vksfrhdx', 'njhaqket'] processed_text: ['bobj', 'access', 'sale', 'manager', 'team', 'sale', 'manager', 'seeing', 'team', 'view', 'bobj', 'anymore', 'global', 'access', 'need', 'pull', 'data', 'analysis', 'please', 'reinstall', 'global', 'access', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'adwjfpbreu', 'vksfrhdx', 'njhaqket'] list_processed_text: [['bobj'], ['access'], ['sale'], ['manager'], ['team'], ['sale'], ['manager'], ['seeing'], ['team'], ['view'], ['bobj'], ['anymore'], ['global'], ['access'], ['need'], ['pull'], ['data'], ['analysis'], ['please'], ['reinstall'], ['global'], ['access'], ['tcflirwg'], ['ojflyruq'], ['bmudkpie'], ['qolrvbip'], ['thryd'], ['adwjfpbreu'], ['vksfrhdx'], ['njhaqket']] k: 459 len: <class 'list'> Data: ['skpe', 'addon', 'gone', 'skpe', 'addon', 'gone', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'maaryuyten', 'hello', 'need', 'help', 'skype', 'botton', 'outlook', 'gone', 'hello', 'need', 'help', 'skype', 'botton', 'outlook', 'gone', 'dwfiykeo', 'argtxmvcumar', 'hello'] processed_text: ['skpe', 'addon', 'gone', 'skpe', 'addon', 'gone', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'maaryuyten', 'hello', 'need', 'help', 'skype', 'botton', 'outlook', 'gone', 'hello', 'need', 'help', 'skype', 'botton', 'outlook', 'gone', 'dwfiykeo', 'argtxmvcumar', 'hello'] list_processed_text: [['skpe'], ['addon'], ['gone'], ['skpe'], ['addon'], ['gone'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['maaryuyten'], ['hello'], ['need'], ['help'], ['skype'], ['botton'], ['outlook'], ['gone'], ['hello'], ['need'], ['help'], ['skype'], ['botton'], ['outlook'], ['gone'], ['dwfiykeo'], ['argtxmvcumar'], ['hello']] k: 460 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 461 len: <class 'list'> Data: ['hpqc', 'delivers', 'error', 'message', 'user', 'maintained', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin', 'user', 'id', 'thrydksd', 'involved', 'uat', 'uacyltoe', 'hxgayczeing', 'ec', 'ecc', 'asked', 'install', 'hpqc', 'client', 'installation', 'kit', 'already', 'done', 'link', 'start', 'hpqc', 'enter', 'window', 'user', 'name', 'window', 'password', 'receive', 'following', 'error', 'message', 'user', 'maintained', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin'] processed_text: ['hpqc', 'delivers', 'error', 'message', 'user', 'maintained', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin', 'user', 'id', 'thrydksd', 'involved', 'uat', 'uacyltoe', 'hxgayczeing', 'ec', 'ecc', 'asked', 'install', 'hpqc', 'client', 'installation', 'kit', 'already', 'done', 'link', 'start', 'hpqc', 'enter', 'window', 'user', 'name', 'window', 'password', 'receive', 'following', 'error', 'message', 'user', 'maintained', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin'] list_processed_text: [['hpqc'], ['delivers'], ['error'], ['message'], ['user'], ['maintained'], ['project'], ['fy'], ['release'], ['please'], ['contact'], ['hpqc'], ['admin'], ['user'], ['id'], ['thrydksd'], ['involved'], ['uat'], ['uacyltoe'], ['hxgayczeing'], ['ec'], ['ecc'], ['asked'], ['install'], ['hpqc'], ['client'], ['installation'], ['kit'], ['already'], ['done'], ['link'], ['start'], ['hpqc'], ['enter'], ['window'], ['user'], ['name'], ['window'], ['password'], ['receive'], ['following'], ['error'], ['message'], ['user'], ['maintained'], ['project'], ['fy'], ['release'], ['please'], ['contact'], ['hpqc'], ['admin']] k: 462 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 463 len: <class 'list'> Data: ['telephone', 'gigaset', 'ex', 'professional', 'tel', 'longer', 'connection', 'defective', 'telephone', 'gigaset', 'ex', 'professional', 'tel', 'longer', 'connection', 'defective'] processed_text: ['telephone', 'gigaset', 'ex', 'professional', 'tel', 'longer', 'connection', 'defective', 'telephone', 'gigaset', 'ex', 'professional', 'tel', 'longer', 'connection', 'defective'] list_processed_text: [['telephone'], ['gigaset'], ['ex'], ['professional'], ['tel'], ['longer'], ['connection'], ['defective'], ['telephone'], ['gigaset'], ['ex'], ['professional'], ['tel'], ['longer'], ['connection'], ['defective']] k: 464 len: <class 'list'> Data: ['please', 'setup', 'user', 'trhdaa', 'back', 'startpassword', 'erp', 'please', 'setup', 'user', 'trhdaa', 'back', 'startpassword', 'erp'] processed_text: ['please', 'setup', 'user', 'trhdaa', 'back', 'startpassword', 'erp', 'please', 'setup', 'user', 'trhdaa', 'back', 'startpassword', 'erp'] list_processed_text: [['please'], ['setup'], ['user'], ['trhdaa'], ['back'], ['startpassword'], ['erp'], ['please'], ['setup'], ['user'], ['trhdaa'], ['back'], ['startpassword'], ['erp']] k: 465 len: <class 'list'> Data: ['erp', 'change', 'new', 'cost', 'working', 'cockpit', 'field', 'mvgr', 'hello', 'following', 'problem', 'due', 'necessary', 'change', 'tool', 'received', 'order', 'tried', 'update', 'cost', 'cockpit', 'saving', 'quote', 'work', 'error', 'message', 'field', 'mvgr', 'cannot', 'changed', 'vbapkom', 'ready', 'input', 'hint', 'solve', 'worked', 'new', 'thing', 'order', 'running', 'erp', 'data', 'case', 'necessary', 'order', 'concerning', 'item'] processed_text: ['erp', 'change', 'new', 'cost', 'working', 'cockpit', 'field', 'mvgr', 'hello', 'following', 'problem', 'due', 'necessary', 'change', 'tool', 'received', 'order', 'tried', 'update', 'cost', 'cockpit', 'saving', 'quote', 'work', 'error', 'message', 'field', 'mvgr', 'cannot', 'changed', 'vbapkom', 'ready', 'input', 'hint', 'solve', 'worked', 'new', 'thing', 'order', 'running', 'erp', 'data', 'case', 'necessary', 'order', 'concerning', 'item'] list_processed_text: [['erp'], ['change'], ['new'], ['cost'], ['working'], ['cockpit'], ['field'], ['mvgr'], ['hello'], ['following'], ['problem'], ['due'], ['necessary'], ['change'], ['tool'], ['received'], ['order'], ['tried'], ['update'], ['cost'], ['cockpit'], ['saving'], ['quote'], ['work'], ['error'], ['message'], ['field'], ['mvgr'], ['cannot'], ['changed'], ['vbapkom'], ['ready'], ['input'], ['hint'], ['solve'], ['worked'], ['new'], ['thing'], ['order'], ['running'], ['erp'], ['data'], ['case'], ['necessary'], ['order'], ['concerning'], ['item']] k: 466 len: <class 'list'> Data: ['user', 'wk', 'ksem', 'blocked', 'user', 'wk', 'ksem', 'blocked'] processed_text: ['user', 'wk', 'ksem', 'blocked', 'user', 'wk', 'ksem', 'blocked'] list_processed_text: [['user'], ['wk'], ['ksem'], ['blocked'], ['user'], ['wk'], ['ksem'], ['blocked']] k: 467 len: <class 'list'> Data: ['timerecording', 'terminal', 'plant', 'germany', 'communication', 'server', 'rth', 'bcom', 'server', 'rth', 'timerecording', 'terminal', 'plant', 'germany', 'communication', 'server', 'rth', 'sending', 'message'] processed_text: ['timerecording', 'terminal', 'plant', 'germany', 'communication', 'server', 'rth', 'bcom', 'server', 'rth', 'timerecording', 'terminal', 'plant', 'germany', 'communication', 'server', 'rth', 'sending', 'message'] list_processed_text: [['timerecording'], ['terminal'], ['plant'], ['germany'], ['communication'], ['server'], ['rth'], ['bcom'], ['server'], ['rth'], ['timerecording'], ['terminal'], ['plant'], ['germany'], ['communication'], ['server'], ['rth'], ['sending'], ['message']] k: 468 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 469 len: <class 'list'> Data: ['ie', 'crm', 'crm', 'ie', 'crm', 'crm'] processed_text: ['ie', 'crm', 'crm', 'ie', 'crm', 'crm'] list_processed_text: [['ie'], ['crm'], ['crm'], ['ie'], ['crm'], ['crm']] k: 470 len: <class 'list'> Data: ['access', 'drive', 'hello', 'kindly', 'request', 'give', 'access', 'drive', 'globalengservices'] processed_text: ['access', 'drive', 'hello', 'kindly', 'request', 'give', 'access', 'drive', 'globalengservices'] list_processed_text: [['access'], ['drive'], ['hello'], ['kindly'], ['request'], ['give'], ['access'], ['drive'], ['globalengservices']] k: 471 len: <class 'list'> Data: ['kindly', 'add', 'user', 'id', 'trhsydsff', 'erp', 'business', 'analytics', 'team', 'ticketing', 'tool', 'tool', 'kindly', 'add', 'user', 'id', 'trhsydsff', 'erp', 'business', 'analytics', 'team', 'ticketing', 'tool', 'tool'] processed_text: ['kindly', 'add', 'user', 'id', 'trhsydsff', 'erp', 'business', 'analytics', 'team', 'ticketing', 'tool', 'tool', 'kindly', 'add', 'user', 'id', 'trhsydsff', 'erp', 'business', 'analytics', 'team', 'ticketing', 'tool', 'tool'] list_processed_text: [['kindly'], ['add'], ['user'], ['id'], ['trhsydsff'], ['erp'], ['business'], ['analytics'], ['team'], ['ticketing'], ['tool'], ['tool'], ['kindly'], ['add'], ['user'], ['id'], ['trhsydsff'], ['erp'], ['business'], ['analytics'], ['team'], ['ticketing'], ['tool'], ['tool']] k: 472 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 473 len: <class 'list'> Data: ['desktop', 'item', 'missing', 'save', 'attachment', 'desktop', 'item', 'missing', 'save', 'attachment'] processed_text: ['desktop', 'item', 'missing', 'save', 'attachment', 'desktop', 'item', 'missing', 'save', 'attachment'] list_processed_text: [['desktop'], ['item'], ['missing'], ['save'], ['attachment'], ['desktop'], ['item'], ['missing'], ['save'], ['attachment']] k: 474 len: <class 'list'> Data: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] processed_text: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] list_processed_text: [['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate'], ['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate']] k: 475 len: <class 'list'> Data: ['mass', 'upload', 'programdnty', 'change', 'condition', 'table', 'crm', 'mass', 'upload', 'programdnty', 'change', 'condition', 'table', 'crm'] processed_text: ['mass', 'upload', 'programdnty', 'change', 'condition', 'table', 'crm', 'mass', 'upload', 'programdnty', 'change', 'condition', 'table', 'crm'] list_processed_text: [['mass'], ['upload'], ['programdnty'], ['change'], ['condition'], ['table'], ['crm'], ['mass'], ['upload'], ['programdnty'], ['change'], ['condition'], ['table'], ['crm']] k: 476 len: <class 'list'> Data: ['server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et', 'server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et'] processed_text: ['server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et', 'server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et'] list_processed_text: [['server'], ['lnbdm'], ['active'], ['directory'], ['located'], ['philadelph'], ['ia'], ['since'], ['et'], ['server'], ['lnbdm'], ['active'], ['directory'], ['located'], ['philadelph'], ['ia'], ['since'], ['et']] k: 477 len: <class 'list'> Data: ['blocked', 'user', 'said', 'blocked', 'user', 'said'] processed_text: ['blocked', 'user', 'said', 'blocked', 'user', 'said'] list_processed_text: [['blocked'], ['user'], ['said'], ['blocked'], ['user'], ['said']] k: 478 len: <class 'list'> Data: ['access', 'hostname', 'department', 'backorderreports', 'please', 'give', 'full', 'access', 'user', 'trhadg', 'folder', 'mentioned', 'subject'] processed_text: ['access', 'hostname', 'department', 'backorderreports', 'please', 'give', 'full', 'access', 'user', 'trhadg', 'folder', 'mentioned', 'subject'] list_processed_text: [['access'], ['hostname'], ['department'], ['backorderreports'], ['please'], ['give'], ['full'], ['access'], ['user'], ['trhadg'], ['folder'], ['mentioned'], ['subject']] k: 479 len: <class 'list'> Data: ['user', 'account', 'blocked', 'name', 'dbwkxalj', 'cnhgysju', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'user', 'account', 'blocked'] processed_text: ['user', 'account', 'blocked', 'name', 'dbwkxalj', 'cnhgysju', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'user', 'account', 'blocked'] list_processed_text: [['user'], ['account'], ['blocked'], ['name'], ['dbwkxalj'], ['cnhgysju'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['user'], ['account'], ['blocked']] k: 480 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 481 len: <class 'list'> Data: ['time', 'data', 'germany', 'steel', 'missing', 'time', 'data', 'missing', 'since', 'yesterday', 'around', "o'clock", 'data', 'urgently', 'needed', 'performance', 'level', 'evaluation'] processed_text: ['time', 'data', 'germany', 'steel', 'missing', 'time', 'data', 'missing', 'since', 'yesterday', 'around', "o'clock", 'data', 'urgently', 'needed', 'performance', 'level', 'evaluation'] list_processed_text: [['time'], ['data'], ['germany'], ['steel'], ['missing'], ['time'], ['data'], ['missing'], ['since'], ['yesterday'], ['around'], ["o'clock"], ['data'], ['urgently'], ['needed'], ['performance'], ['level'], ['evaluation']] k: 482 len: <class 'list'> Data: ['network', 'outage', 'poncacity', 'germany', 'dmvpn', 'router', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'poncacity', 'germany', 'dmvpn', 'router', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['poncacity'], ['germany'], ['dmvpn'], ['router'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 483 len: <class 'list'> Data: ['unable', 'open', 'collaboration', 'platform', 'link', 'shared', 'europe', 'counterpart', 'name', 'theajdlkadyt', 'hrtgsd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'unable', 'open', 'collaboration', 'platform', 'link', 'shared', 'europe', 'counterpart', 'eagl', 'user', 'schetrhsdlw', 'collaboration', 'platform', 'company', 'inc', 'k'] processed_text: ['unable', 'open', 'collaboration', 'platform', 'link', 'shared', 'europe', 'counterpart', 'name', 'theajdlkadyt', 'hrtgsd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'unable', 'open', 'collaboration', 'platform', 'link', 'shared', 'europe', 'counterpart', 'eagl', 'user', 'schetrhsdlw', 'collaboration', 'platform', 'company', 'inc', 'k'] list_processed_text: [['unable'], ['open'], ['collaboration'], ['platform'], ['link'], ['shared'], ['europe'], ['counterpart'], ['name'], ['theajdlkadyt'], ['hrtgsd'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['unable'], ['open'], ['collaboration'], ['platform'], ['link'], ['shared'], ['europe'], ['counterpart'], ['eagl'], ['user'], ['schetrhsdlw'], ['collaboration'], ['platform'], ['company'], ['inc'], ['k']] k: 484 len: <class 'list'> Data: ['reach', 'password', 'management', 'tool', 'password', 'manager', 'change', 'password', 'name', 'mitgckqf', 'ewourgcx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'reach', 'password', 'management', 'tool', 'password', 'manager', 'change', 'password'] processed_text: ['reach', 'password', 'management', 'tool', 'password', 'manager', 'change', 'password', 'name', 'mitgckqf', 'ewourgcx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'reach', 'password', 'management', 'tool', 'password', 'manager', 'change', 'password'] list_processed_text: [['reach'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['change'], ['password'], ['name'], ['mitgckqf'], ['ewourgcx'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['summary'], ['reach'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['change'], ['password']] k: 485 len: <class 'list'> Data: ['k', 'bngell', 'cgdaytshqsd', 'hello', 'pl', 'add', 'name', 'team', 'also', 'need', 'administrative', 'control', 'since', 'heading', 'team', 'ndthwedwys', 'rao', 'left', 'company', 'kind'] processed_text: ['k', 'bngell', 'cgdaytshqsd', 'hello', 'pl', 'add', 'name', 'team', 'also', 'need', 'administrative', 'control', 'since', 'heading', 'team', 'ndthwedwys', 'rao', 'left', 'company', 'kind'] list_processed_text: [['k'], ['bngell'], ['cgdaytshqsd'], ['hello'], ['pl'], ['add'], ['name'], ['team'], ['also'], ['need'], ['administrative'], ['control'], ['since'], ['heading'], ['team'], ['ndthwedwys'], ['rao'], ['left'], ['company'], ['kind']] k: 486 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 487 len: <class 'list'> Data: ['msd', 'office', 'outlook', 'please', 'provide', 'detail', 'issue', 'melhduty', 'gqchtedl', 'hi', 'melhduty', 'gqchtedl', 'obuwfnkm', 'ufpwmybi', 'melhduty', 'gqchtedl', 'id'] processed_text: ['msd', 'office', 'outlook', 'please', 'provide', 'detail', 'issue', 'melhduty', 'gqchtedl', 'hi', 'melhduty', 'gqchtedl', 'obuwfnkm', 'ufpwmybi', 'melhduty', 'gqchtedl', 'id'] list_processed_text: [['msd'], ['office'], ['outlook'], ['please'], ['provide'], ['detail'], ['issue'], ['melhduty'], ['gqchtedl'], ['hi'], ['melhduty'], ['gqchtedl'], ['obuwfnkm'], ['ufpwmybi'], ['melhduty'], ['gqchtedl'], ['id']] k: 488 len: <class 'list'> Data: ['hostname', 'team', 'business', 'sahtym', 'wanthryg', 'hostname', 'team', 'business', 'sahtym', 'wanthryg'] processed_text: ['hostname', 'team', 'business', 'sahtym', 'wanthryg', 'hostname', 'team', 'business', 'sahtym', 'wanthryg'] list_processed_text: [['hostname'], ['team'], ['business'], ['sahtym'], ['wanthryg'], ['hostname'], ['team'], ['business'], ['sahtym'], ['wanthryg']] k: 489 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 490 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 491 len: <class 'list'> Data: ['cyber', 'security', 'month', 'ransomware', 'cyber', 'security', 'month', 'ransomware'] processed_text: ['cyber', 'security', 'month', 'ransomware', 'cyber', 'security', 'month', 'ransomware'] list_processed_text: [['cyber'], ['security'], ['month'], ['ransomware'], ['cyber'], ['security'], ['month'], ['ransomware']] k: 492 len: <class 'list'> Data: ['m', 'outlook', 'stopped', 'updating', 'cant', 'receive', 'send', 'mail', 'since', 'fr', 'please', 'check', 'lfal', 'look', 'like', 'bothms', 'office', 'installed', 'ii', 'access', 'database', 'work', 'pacific'] processed_text: ['m', 'outlook', 'stopped', 'updating', 'cant', 'receive', 'send', 'mail', 'since', 'fr', 'please', 'check', 'lfal', 'look', 'like', 'bothms', 'office', 'installed', 'ii', 'access', 'database', 'work', 'pacific'] list_processed_text: [['m'], ['outlook'], ['stopped'], ['updating'], ['cant'], ['receive'], ['send'], ['mail'], ['since'], ['fr'], ['please'], ['check'], ['lfal'], ['look'], ['like'], ['bothms'], ['office'], ['installed'], ['ii'], ['access'], ['database'], ['work'], ['pacific']] k: 493 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 494 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'erp', 'sid', 'logon', 'balancing', 'error', 'erp', 'sid', 'user', 'brandtrhee', 'pjdhfitman', 'called', 'behalf', 'user'] processed_text: ['logon', 'balancing', 'error', 'erp', 'sid', 'logon', 'balancing', 'error', 'erp', 'sid', 'user', 'brandtrhee', 'pjdhfitman', 'called', 'behalf', 'user'] list_processed_text: [['logon'], ['balancing'], ['error'], ['erp'], ['sid'], ['logon'], ['balancing'], ['error'], ['erp'], ['sid'], ['user'], ['brandtrhee'], ['pjdhfitman'], ['called'], ['behalf'], ['user']] k: 495 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 496 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 497 len: <class 'list'> Data: ['backup', 'company', 'provided', 'mobile', 'phone', 'backup', 'company', 'provided', 'mobile', 'phone'] processed_text: ['backup', 'company', 'provided', 'mobile', 'phone', 'backup', 'company', 'provided', 'mobile', 'phone'] list_processed_text: [['backup'], ['company'], ['provided'], ['mobile'], ['phone'], ['backup'], ['company'], ['provided'], ['mobile'], ['phone']] k: 498 len: <class 'list'> Data: ['purchasingupstreamsso', 'ad', 'qpixeudn', 'rjlziysd', 'please', 'create', 'purchasingupstreamsso', 'ad', 'qpixeudn', 'rjlziysd', 'bachsdadgtadw', 'samaccountname', 'ad', 'lowercase'] processed_text: ['purchasingupstreamsso', 'ad', 'qpixeudn', 'rjlziysd', 'please', 'create', 'purchasingupstreamsso', 'ad', 'qpixeudn', 'rjlziysd', 'bachsdadgtadw', 'samaccountname', 'ad', 'lowercase'] list_processed_text: [['purchasingupstreamsso'], ['ad'], ['qpixeudn'], ['rjlziysd'], ['please'], ['create'], ['purchasingupstreamsso'], ['ad'], ['qpixeudn'], ['rjlziysd'], ['bachsdadgtadw'], ['samaccountname'], ['ad'], ['lowercase']] k: 499 len: <class 'list'> Data: ['badge', 'msc', 'training', 'please', 'activate', 'badge', 'number', 'msc', 'training', 'need', 'active', 'st', 'cst', 'pm', 'cst'] processed_text: ['badge', 'msc', 'training', 'please', 'activate', 'badge', 'number', 'msc', 'training', 'need', 'active', 'st', 'cst', 'pm', 'cst'] list_processed_text: [['badge'], ['msc'], ['training'], ['please'], ['activate'], ['badge'], ['number'], ['msc'], ['training'], ['need'], ['active'], ['st'], ['cst'], ['pm'], ['cst']] k: 500 len: <class 'list'> Data: ['cannot', 'get', 'crm', 'missing', 'sale', 'markhtyeting', 'tab', 'enterprise', 'portal', 'give', 'access', 'crm', 'access', 'crm'] processed_text: ['cannot', 'get', 'crm', 'missing', 'sale', 'markhtyeting', 'tab', 'enterprise', 'portal', 'give', 'access', 'crm', 'access', 'crm'] list_processed_text: [['cannot'], ['get'], ['crm'], ['missing'], ['sale'], ['markhtyeting'], ['tab'], ['enterprise'], ['portal'], ['give'], ['access'], ['crm'], ['access'], ['crm']] k: 501 len: <class 'list'> Data: ['please', 'provide', 'access', 'need', 'access', 'following', 'path', 'please', 'see', 'pmgzjikq', 'potmrkxy', 'approval', 'tbvpkjoh', 'wnxzhqoa', 'company', 'usa', 'plant', 'controller'] processed_text: ['please', 'provide', 'access', 'need', 'access', 'following', 'path', 'please', 'see', 'pmgzjikq', 'potmrkxy', 'approval', 'tbvpkjoh', 'wnxzhqoa', 'company', 'usa', 'plant', 'controller'] list_processed_text: [['please'], ['provide'], ['access'], ['need'], ['access'], ['following'], ['path'], ['please'], ['see'], ['pmgzjikq'], ['potmrkxy'], ['approval'], ['tbvpkjoh'], ['wnxzhqoa'], ['company'], ['usa'], ['plant'], ['controller']] k: 502 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 503 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'password', 'reset', 'unable', 'login', 'collaboration', 'platform', 'password', 'reset'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'password', 'reset', 'unable', 'login', 'collaboration', 'platform', 'password', 'reset'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['password'], ['reset'], ['unable'], ['login'], ['collaboration'], ['platform'], ['password'], ['reset']] k: 504 len: <class 'list'> Data: ['call', 'ip', 'phone', 'going', 'warehouse', 'toolmail', 'even', 'ringing', 'call', 'ip', 'phone', 'going', 'warehouse', 'toolmail', 'even', 'ringing'] processed_text: ['call', 'ip', 'phone', 'going', 'warehouse', 'toolmail', 'even', 'ringing', 'call', 'ip', 'phone', 'going', 'warehouse', 'toolmail', 'even', 'ringing'] list_processed_text: [['call'], ['ip'], ['phone'], ['going'], ['warehouse'], ['toolmail'], ['even'], ['ringing'], ['call'], ['ip'], ['phone'], ['going'], ['warehouse'], ['toolmail'], ['even'], ['ringing']] k: 505 len: <class 'list'> Data: ['sale', 'area', 'selection', 'opportunity', 'filtering', 'account', 'extended', 'instead', 'show', 'sale', 'area', 'selection', 'opportunity', 'filtering', 'account', 'extended', 'see', 'attached', 'email', 'communication', 'including', 'example', 'account'] processed_text: ['sale', 'area', 'selection', 'opportunity', 'filtering', 'account', 'extended', 'instead', 'show', 'sale', 'area', 'selection', 'opportunity', 'filtering', 'account', 'extended', 'see', 'attached', 'email', 'communication', 'including', 'example', 'account'] list_processed_text: [['sale'], ['area'], ['selection'], ['opportunity'], ['filtering'], ['account'], ['extended'], ['instead'], ['show'], ['sale'], ['area'], ['selection'], ['opportunity'], ['filtering'], ['account'], ['extended'], ['see'], ['attached'], ['email'], ['communication'], ['including'], ['example'], ['account']] k: 506 len: <class 'list'> Data: ['pc', 'detecting', 'docking', 'station', 'pc', 'detecting', 'docking', 'station'] processed_text: ['pc', 'detecting', 'docking', 'station', 'pc', 'detecting', 'docking', 'station'] list_processed_text: [['pc'], ['detecting'], ['docking'], ['station'], ['pc'], ['detecting'], ['docking'], ['station']] k: 507 len: <class 'list'> Data: ['trouble', 'connecting', 'companysecure', 'jeftryhf', 'trouble', 'connecting', 'companysecure', 'remote', 'site', 'usa'] processed_text: ['trouble', 'connecting', 'companysecure', 'jeftryhf', 'trouble', 'connecting', 'companysecure', 'remote', 'site', 'usa'] list_processed_text: [['trouble'], ['connecting'], ['companysecure'], ['jeftryhf'], ['trouble'], ['connecting'], ['companysecure'], ['remote'], ['site'], ['usa']] k: 508 len: <class 'list'> Data: ['cannot', 'log', 'erp', 'tried', 'rebooting', 'computer', 'tried', 'logging', 'another', 'computer', 'get', 'blank', 'screen'] processed_text: ['cannot', 'log', 'erp', 'tried', 'rebooting', 'computer', 'tried', 'logging', 'another', 'computer', 'get', 'blank', 'screen'] list_processed_text: [['cannot'], ['log'], ['erp'], ['tried'], ['rebooting'], ['computer'], ['tried'], ['logging'], ['another'], ['computer'], ['get'], ['blank'], ['screen']] k: 509 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'shadakjsdd', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'twejhda', 'last', 'name', 'asjadjs', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'shadakjsdd', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'twejhda', 'last', 'name', 'asjadjs', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['shadakjsdd'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['twejhda'], ['last'], ['name'], ['asjadjs'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 510 len: <class 'list'> Data: ['usa', 'file', 'server', 'hostname', 'failed', 'hard', 'drive', 'usa', 'file', 'server', 'hostname', 'failed', 'hard', 'drive'] processed_text: ['usa', 'file', 'server', 'hostname', 'failed', 'hard', 'drive', 'usa', 'file', 'server', 'hostname', 'failed', 'hard', 'drive'] list_processed_text: [['usa'], ['file'], ['server'], ['hostname'], ['failed'], ['hard'], ['drive'], ['usa'], ['file'], ['server'], ['hostname'], ['failed'], ['hard'], ['drive']] k: 511 len: <class 'list'> Data: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] processed_text: ['unable', 'display', 'expense', 'report', 'unable', 'display', 'expense', 'report'] list_processed_text: [['unable'], ['display'], ['expense'], ['report'], ['unable'], ['display'], ['expense'], ['report']] k: 512 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 513 len: <class 'list'> Data: ['unlock', 'account', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'hi', 'team', 'could', 'please', 'unlock', 'account', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'case', 'account', 'expired', 'please', 'extend', 'access', 'account', 'manager', 'user', 'zuyimtsf', 'qjtimdsp', 'please', 'contact', 'majsdtnrio', 'doubt', 'please', 'return'] processed_text: ['unlock', 'account', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'hi', 'team', 'could', 'please', 'unlock', 'account', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'case', 'account', 'expired', 'please', 'extend', 'access', 'account', 'manager', 'user', 'zuyimtsf', 'qjtimdsp', 'please', 'contact', 'majsdtnrio', 'doubt', 'please', 'return'] list_processed_text: [['unlock'], ['account'], ['user'], ['aeftjxos'], ['lhnyofad'], ['id'], ['vvsardkajdjtf'], ['hi'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['user'], ['aeftjxos'], ['lhnyofad'], ['id'], ['vvsardkajdjtf'], ['case'], ['account'], ['expired'], ['please'], ['extend'], ['access'], ['account'], ['manager'], ['user'], ['zuyimtsf'], ['qjtimdsp'], ['please'], ['contact'], ['majsdtnrio'], ['doubt'], ['please'], ['return']] k: 514 len: <class 'list'> Data: ['unable', 'login', 'outlook', 'rjsulvat', 'uanigkqc', 'pm', 'nwfodmhc', 'exurcwkm', 'thadasgg', 'fwd', 'problem', 'outlook', 'iphone', 'rjsulvat', 'uanigkqc', 'nwfodmhc', 'exurcwkm', 'problem', 'outlook', 'hello', 'cannot', 'start', 'outlook', 'iphone'] processed_text: ['unable', 'login', 'outlook', 'rjsulvat', 'uanigkqc', 'pm', 'nwfodmhc', 'exurcwkm', 'thadasgg', 'fwd', 'problem', 'outlook', 'iphone', 'rjsulvat', 'uanigkqc', 'nwfodmhc', 'exurcwkm', 'problem', 'outlook', 'hello', 'cannot', 'start', 'outlook', 'iphone'] list_processed_text: [['unable'], ['login'], ['outlook'], ['rjsulvat'], ['uanigkqc'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['thadasgg'], ['fwd'], ['problem'], ['outlook'], ['iphone'], ['rjsulvat'], ['uanigkqc'], ['nwfodmhc'], ['exurcwkm'], ['problem'], ['outlook'], ['hello'], ['cannot'], ['start'], ['outlook'], ['iphone']] k: 515 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] processed_text: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] list_processed_text: [['logon'], ['balancing'], ['error'], ['erp'], ['logon'], ['balancing'], ['error'], ['erp']] k: 516 len: <class 'list'> Data: ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'] processed_text: ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'] list_processed_text: [['outlook'], ['freezing'], ['issue'], ['outlook'], ['freezing'], ['issue']] k: 517 len: <class 'list'> Data: ['username', 'ccghksdm', 'used', 'login', 'company', 'via', 'citrix', 'hello', 'username', 'ccghksdm', 'used', 'login', 'company', 'via', 'citrix', 'assume', 'need', 'delete', 'user', 'profile', 'citrix', 'server', 'please', 'send', 'ticket', 'citrix', 'team', 'account', 'active', 'directory', 'locked', 'oinqckds', 'qieswrfu', 'manager', 'gesendet', 'dienstag', 'oktober', 'oinqckds', 'qieswrfu', 'betreff', 'password', 'hi', 'please', 'reset', 'account', 'login', 'user', 'ccghksdm', 'last', 'password', 'prbsddqd', 'doesnt', 'work', 'cant', 'login', 'moment'] processed_text: ['username', 'ccghksdm', 'used', 'login', 'company', 'via', 'citrix', 'hello', 'username', 'ccghksdm', 'used', 'login', 'company', 'via', 'citrix', 'assume', 'need', 'delete', 'user', 'profile', 'citrix', 'server', 'please', 'send', 'ticket', 'citrix', 'team', 'account', 'active', 'directory', 'locked', 'oinqckds', 'qieswrfu', 'manager', 'gesendet', 'dienstag', 'oktober', 'oinqckds', 'qieswrfu', 'betreff', 'password', 'hi', 'please', 'reset', 'account', 'login', 'user', 'ccghksdm', 'last', 'password', 'prbsddqd', 'doesnt', 'work', 'cant', 'login', 'moment'] list_processed_text: [['username'], ['ccghksdm'], ['used'], ['login'], ['company'], ['via'], ['citrix'], ['hello'], ['username'], ['ccghksdm'], ['used'], ['login'], ['company'], ['via'], ['citrix'], ['assume'], ['need'], ['delete'], ['user'], ['profile'], ['citrix'], ['server'], ['please'], ['send'], ['ticket'], ['citrix'], ['team'], ['account'], ['active'], ['directory'], ['locked'], ['oinqckds'], ['qieswrfu'], ['manager'], ['gesendet'], ['dienstag'], ['oktober'], ['oinqckds'], ['qieswrfu'], ['betreff'], ['password'], ['hi'], ['please'], ['reset'], ['account'], ['login'], ['user'], ['ccghksdm'], ['last'], ['password'], ['prbsddqd'], ['doesnt'], ['work'], ['cant'], ['login'], ['moment']] k: 518 len: <class 'list'> Data: ['prtgghjk', 'access', 'locked', 'jgdydqqd', 'locked', 'tried', 'going', 'onto', 'password', 'management', 'tool', 'reset', 'password', 'jgdydqqd', 'listed', 'please', 'unlock', 'account', 'aerp'] processed_text: ['prtgghjk', 'access', 'locked', 'jgdydqqd', 'locked', 'tried', 'going', 'onto', 'password', 'management', 'tool', 'reset', 'password', 'jgdydqqd', 'listed', 'please', 'unlock', 'account', 'aerp'] list_processed_text: [['prtgghjk'], ['access'], ['locked'], ['jgdydqqd'], ['locked'], ['tried'], ['going'], ['onto'], ['password'], ['management'], ['tool'], ['reset'], ['password'], ['jgdydqqd'], ['listed'], ['please'], ['unlock'], ['account'], ['aerp']] k: 519 len: <class 'list'> Data: ['unable', 'connect', 'home', 'internet', 'internet', 'connection', 'appear', 'working', 'wireless'] processed_text: ['unable', 'connect', 'home', 'internet', 'internet', 'connection', 'appear', 'working', 'wireless'] list_processed_text: [['unable'], ['connect'], ['home'], ['internet'], ['internet'], ['connection'], ['appear'], ['working'], ['wireless']] k: 520 len: <class 'list'> Data: ['unable', 'sign', 'reporting', 'tool', 'hello', 'unable', 'sign', 'reporting', 'tool', 'someone', 'please', 'assist', 'correct', 'user', 'name', 'password', 'never', 'signed'] processed_text: ['unable', 'sign', 'reporting', 'tool', 'hello', 'unable', 'sign', 'reporting', 'tool', 'someone', 'please', 'assist', 'correct', 'user', 'name', 'password', 'never', 'signed'] list_processed_text: [['unable'], ['sign'], ['reporting'], ['tool'], ['hello'], ['unable'], ['sign'], ['reporting'], ['tool'], ['someone'], ['please'], ['assist'], ['correct'], ['user'], ['name'], ['password'], ['never'], ['signed']] k: 521 len: <class 'list'> Data: ['vitalyst', 'transfer', 'crm', 'calendar', 'showing', 'outlook', 'vitalyst', 'transfer', 'crm', 'calendar', 'showing', 'outlook'] processed_text: ['vitalyst', 'transfer', 'crm', 'calendar', 'showing', 'outlook', 'vitalyst', 'transfer', 'crm', 'calendar', 'showing', 'outlook'] list_processed_text: [['vitalyst'], ['transfer'], ['crm'], ['calendar'], ['showing'], ['outlook'], ['vitalyst'], ['transfer'], ['crm'], ['calendar'], ['showing'], ['outlook']] k: 522 len: <class 'list'> Data: ['unable', 'access', 'erp', 'vpn', 'connection', 'working', 'home', 'started', 'vpn', 'cannot', 'access', 'erp', 'keep', 'getting', 'logon', 'balancing', 'error', 'suggest', 'submitting', 'team', 'usa'] processed_text: ['unable', 'access', 'erp', 'vpn', 'connection', 'working', 'home', 'started', 'vpn', 'cannot', 'access', 'erp', 'keep', 'getting', 'logon', 'balancing', 'error', 'suggest', 'submitting', 'team', 'usa'] list_processed_text: [['unable'], ['access'], ['erp'], ['vpn'], ['connection'], ['working'], ['home'], ['started'], ['vpn'], ['cannot'], ['access'], ['erp'], ['keep'], ['getting'], ['logon'], ['balancing'], ['error'], ['suggest'], ['submitting'], ['team'], ['usa']] k: 523 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'hello', 'colleague', 'would', 'please', 'kind', 'activate', 'new', 'iphone', 'hybegvwo', 'dbgrtqhs', 'company', 'kstdaddaad', 'detail', 'please', 'see', 'mail', 'many'] processed_text: ['mobile', 'device', 'activation', 'hello', 'colleague', 'would', 'please', 'kind', 'activate', 'new', 'iphone', 'hybegvwo', 'dbgrtqhs', 'company', 'kstdaddaad', 'detail', 'please', 'see', 'mail', 'many'] list_processed_text: [['mobile'], ['device'], ['activation'], ['hello'], ['colleague'], ['would'], ['please'], ['kind'], ['activate'], ['new'], ['iphone'], ['hybegvwo'], ['dbgrtqhs'], ['company'], ['kstdaddaad'], ['detail'], ['please'], ['see'], ['mail'], ['many']] k: 524 len: <class 'list'> Data: ['ndigung', 'eluvxqhw', 'gpbfkqeu', 'effective', 'approved', 'hello', 'k', 'ndigung', 'eluvxqhw', 'gpbfkqeu', 'effective', 'approved'] processed_text: ['ndigung', 'eluvxqhw', 'gpbfkqeu', 'effective', 'approved', 'hello', 'k', 'ndigung', 'eluvxqhw', 'gpbfkqeu', 'effective', 'approved'] list_processed_text: [['ndigung'], ['eluvxqhw'], ['gpbfkqeu'], ['effective'], ['approved'], ['hello'], ['k'], ['ndigung'], ['eluvxqhw'], ['gpbfkqeu'], ['effective'], ['approved']] k: 525 len: <class 'list'> Data: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'uzpycdho', 'hdswinlo', 'ustvaifg', 'hmzfewks', 'uzpycdho', 'hdswinlo', 'window', 'password', 'expiring', 'soon', 'hi', 'unfortunately', 'automatic', 'process', 'cannot', 'extend', 'time', 'period', 'come', 'back', 'vacation', 'please', 'give', 'u', 'call', 'back', 'reset', 'password'] processed_text: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'uzpycdho', 'hdswinlo', 'ustvaifg', 'hmzfewks', 'uzpycdho', 'hdswinlo', 'window', 'password', 'expiring', 'soon', 'hi', 'unfortunately', 'automatic', 'process', 'cannot', 'extend', 'time', 'period', 'come', 'back', 'vacation', 'please', 'give', 'u', 'call', 'back', 'reset', 'password'] list_processed_text: [['password'], ['reset'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['uzpycdho'], ['hdswinlo'], ['ustvaifg'], ['hmzfewks'], ['uzpycdho'], ['hdswinlo'], ['window'], ['password'], ['expiring'], ['soon'], ['hi'], ['unfortunately'], ['automatic'], ['process'], ['cannot'], ['extend'], ['time'], ['period'], ['come'], ['back'], ['vacation'], ['please'], ['give'], ['u'], ['call'], ['back'], ['reset'], ['password']] k: 526 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 527 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 528 len: <class 'list'> Data: ['erp', 'name', 'fievgddtrr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'bloqued', 'many', 'failes', 'attempt', 'tank'] processed_text: ['erp', 'name', 'fievgddtrr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'bloqued', 'many', 'failes', 'attempt', 'tank'] list_processed_text: [['erp'], ['name'], ['fievgddtrr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['bloqued'], ['many'], ['failes'], ['attempt'], ['tank']] k: 529 len: <class 'list'> Data: ['skype', 'online', 'meeting', 'freezing', 'unable', 'join', 'skype', 'meeting', 'skype', 'keep', 'freezing'] processed_text: ['skype', 'online', 'meeting', 'freezing', 'unable', 'join', 'skype', 'meeting', 'skype', 'keep', 'freezing'] list_processed_text: [['skype'], ['online'], ['meeting'], ['freezing'], ['unable'], ['join'], ['skype'], ['meeting'], ['skype'], ['keep'], ['freezing']] k: 530 len: <class 'list'> Data: ['unable', 'connect', 'company', 'center', 'sale', 'org', 'working', 'unable', 'connect', 'company', 'center', 'sale', 'org', 'working'] processed_text: ['unable', 'connect', 'company', 'center', 'sale', 'org', 'working', 'unable', 'connect', 'company', 'center', 'sale', 'org', 'working'] list_processed_text: [['unable'], ['connect'], ['company'], ['center'], ['sale'], ['org'], ['working'], ['unable'], ['connect'], ['company'], ['center'], ['sale'], ['org'], ['working']] k: 531 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 532 len: <class 'list'> Data: ['unable', 'connect', 'global', 'telecom', 'broadband', 'name', 'joetrhud', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'connect', 'internet', 'using', 'broadband', 'service'] processed_text: ['unable', 'connect', 'global', 'telecom', 'broadband', 'name', 'joetrhud', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'connect', 'internet', 'using', 'broadband', 'service'] list_processed_text: [['unable'], ['connect'], ['global'], ['telecom'], ['broadband'], ['name'], ['joetrhud'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unable'], ['connect'], ['internet'], ['using'], ['broadband'], ['service']] k: 533 len: <class 'list'> Data: ['password', 'expired', 'garthyhtuy', 'office', 'long', 'time', 'need', 'assistance', 'logging', 'back', 'pc', 'office', 'moment'] processed_text: ['password', 'expired', 'garthyhtuy', 'office', 'long', 'time', 'need', 'assistance', 'logging', 'back', 'pc', 'office', 'moment'] list_processed_text: [['password'], ['expired'], ['garthyhtuy'], ['office'], ['long'], ['time'], ['need'], ['assistance'], ['logging'], ['back'], ['pc'], ['office'], ['moment']] k: 534 len: <class 'list'> Data: ['summary', 'attendance', 'tool', 'password', 'forgot', 'name', 'kirathrydan', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'attendance', 'tool', 'password', 'forgot'] processed_text: ['summary', 'attendance', 'tool', 'password', 'forgot', 'name', 'kirathrydan', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'attendance', 'tool', 'password', 'forgot'] list_processed_text: [['summary'], ['attendance'], ['tool'], ['password'], ['forgot'], ['name'], ['kirathrydan'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['attendance'], ['tool'], ['password'], ['forgot']] k: 535 len: <class 'list'> Data: ['erp', 'zqt', 'pntp', 'zntc', 'price', 'calculating', 'quote', 'erp', 'quote', 'pntp', 'net', 'price', 'zntc', 'unit', 'price', 'cost', 'loaded', 'see', 'screenshots', 'email', 'attached', 'need', 'quote', 'send', 'customer', 'ordering'] processed_text: ['erp', 'zqt', 'pntp', 'zntc', 'price', 'calculating', 'quote', 'erp', 'quote', 'pntp', 'net', 'price', 'zntc', 'unit', 'price', 'cost', 'loaded', 'see', 'screenshots', 'email', 'attached', 'need', 'quote', 'send', 'customer', 'ordering'] list_processed_text: [['erp'], ['zqt'], ['pntp'], ['zntc'], ['price'], ['calculating'], ['quote'], ['erp'], ['quote'], ['pntp'], ['net'], ['price'], ['zntc'], ['unit'], ['price'], ['cost'], ['loaded'], ['see'], ['screenshots'], ['email'], ['attached'], ['need'], ['quote'], ['send'], ['customer'], ['ordering']] k: 536 len: <class 'list'> Data: ['could', 'use', 'bobjee', 'application', 'search', 'explorer', 'analytics', 'erp', 'netweaver', 'portal', 'error', 'message', 'possible', 'retrieve', 'facet', 'value', 'start', 'exploring', 'information', 'space', 'contain', 'data'] processed_text: ['could', 'use', 'bobjee', 'application', 'search', 'explorer', 'analytics', 'erp', 'netweaver', 'portal', 'error', 'message', 'possible', 'retrieve', 'facet', 'value', 'start', 'exploring', 'information', 'space', 'contain', 'data'] list_processed_text: [['could'], ['use'], ['bobjee'], ['application'], ['search'], ['explorer'], ['analytics'], ['erp'], ['netweaver'], ['portal'], ['error'], ['message'], ['possible'], ['retrieve'], ['facet'], ['value'], ['start'], ['exploring'], ['information'], ['space'], ['contain'], ['data']] k: 537 len: <class 'list'> Data: ['u', 'time', 'change', 'hi', 'team', 'hub', 'posting', 'published', 'u', 'time', 'change', 'aerp', 'revert', 'question', 'planned', 'service', 'disruption', 'event', 'daylight', 'saving', 'time', 'end', 'begin', 'pm', 'edt', 'th', 'november', 'end', 'following', 'time', 'change', 'est', 'november', 'affected', 'erp', 'user', 'erp', 'system', 'including', 'erp', 'plm', 'bw', 'crm', 'supply', 'chain', 'hcm', 'reason', 'erp', 'system', 'must', 'stopped', 'time', 'change', 'prevent', 'data', 'inconsistency', 'question', 'corporate', 'datacenter', 'xabkyoug', 'wdkyiqfx', 'nvyjtmca', 'xjhpznds', 'network', 'operation', 'best'] processed_text: ['u', 'time', 'change', 'hi', 'team', 'hub', 'posting', 'published', 'u', 'time', 'change', 'aerp', 'revert', 'question', 'planned', 'service', 'disruption', 'event', 'daylight', 'saving', 'time', 'end', 'begin', 'pm', 'edt', 'th', 'november', 'end', 'following', 'time', 'change', 'est', 'november', 'affected', 'erp', 'user', 'erp', 'system', 'including', 'erp', 'plm', 'bw', 'crm', 'supply', 'chain', 'hcm', 'reason', 'erp', 'system', 'must', 'stopped', 'time', 'change', 'prevent', 'data', 'inconsistency', 'question', 'corporate', 'datacenter', 'xabkyoug', 'wdkyiqfx', 'nvyjtmca', 'xjhpznds', 'network', 'operation', 'best'] list_processed_text: [['u'], ['time'], ['change'], ['hi'], ['team'], ['hub'], ['posting'], ['published'], ['u'], ['time'], ['change'], ['aerp'], ['revert'], ['question'], ['planned'], ['service'], ['disruption'], ['event'], ['daylight'], ['saving'], ['time'], ['end'], ['begin'], ['pm'], ['edt'], ['th'], ['november'], ['end'], ['following'], ['time'], ['change'], ['est'], ['november'], ['affected'], ['erp'], ['user'], ['erp'], ['system'], ['including'], ['erp'], ['plm'], ['bw'], ['crm'], ['supply'], ['chain'], ['hcm'], ['reason'], ['erp'], ['system'], ['must'], ['stopped'], ['time'], ['change'], ['prevent'], ['data'], ['inconsistency'], ['question'], ['corporate'], ['datacenter'], ['xabkyoug'], ['wdkyiqfx'], ['nvyjtmca'], ['xjhpznds'], ['network'], ['operation'], ['best']] k: 538 len: <class 'list'> Data: ['job', 'hostname', 'idb', 'daily', 'failed', 'job', 'scheduler', 'job', 'hostname', 'idb', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'idb', 'daily', 'failed', 'job', 'scheduler', 'job', 'hostname', 'idb', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['idb'], ['daily'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['idb'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 539 len: <class 'list'> Data: ['cracked', 'screen', 'turned', 'touch', 'screen', 'longer', 'jump', 'curser', 'around', 'cracked', 'screen', 'turned', 'touch', 'screen', 'longer', 'jump', 'curser', 'around', 'phone', 'pc', 'name', 'lmsltrys'] processed_text: ['cracked', 'screen', 'turned', 'touch', 'screen', 'longer', 'jump', 'curser', 'around', 'cracked', 'screen', 'turned', 'touch', 'screen', 'longer', 'jump', 'curser', 'around', 'phone', 'pc', 'name', 'lmsltrys'] list_processed_text: [['cracked'], ['screen'], ['turned'], ['touch'], ['screen'], ['longer'], ['jump'], ['curser'], ['around'], ['cracked'], ['screen'], ['turned'], ['touch'], ['screen'], ['longer'], ['jump'], ['curser'], ['around'], ['phone'], ['pc'], ['name'], ['lmsltrys']] k: 540 len: <class 'list'> Data: ['password', 'reset', 'uacyltoe', 'hxgayczemii', 'name', 'dctvfjrn', 'oypnxftq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'aolhgbps', 'pbxqtcek', 'uacyltoe', 'hxgayczemii'] processed_text: ['password', 'reset', 'uacyltoe', 'hxgayczemii', 'name', 'dctvfjrn', 'oypnxftq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'aolhgbps', 'pbxqtcek', 'uacyltoe', 'hxgayczemii'] list_processed_text: [['password'], ['reset'], ['uacyltoe'], ['hxgayczemii'], ['name'], ['dctvfjrn'], ['oypnxftq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['reset'], ['password'], ['aolhgbps'], ['pbxqtcek'], ['uacyltoe'], ['hxgayczemii']] k: 541 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 542 len: <class 'list'> Data: ['laptop', 'issue', 'hallo', 'outlook', 'collapsed', 'two', 'time', 'tried', 'restart', 'laptop', 'startup', 'anymore', 'restarting', 'screen', 'already', 'half', 'hour', 'image', 'jpg', 'met', 'vriendelijke', 'groet', 'lwizucan', 'zvnxlobq', 'directeur', 'company'] processed_text: ['laptop', 'issue', 'hallo', 'outlook', 'collapsed', 'two', 'time', 'tried', 'restart', 'laptop', 'startup', 'anymore', 'restarting', 'screen', 'already', 'half', 'hour', 'image', 'jpg', 'met', 'vriendelijke', 'groet', 'lwizucan', 'zvnxlobq', 'directeur', 'company'] list_processed_text: [['laptop'], ['issue'], ['hallo'], ['outlook'], ['collapsed'], ['two'], ['time'], ['tried'], ['restart'], ['laptop'], ['startup'], ['anymore'], ['restarting'], ['screen'], ['already'], ['half'], ['hour'], ['image'], ['jpg'], ['met'], ['vriendelijke'], ['groet'], ['lwizucan'], ['zvnxlobq'], ['directeur'], ['company']] k: 543 len: <class 'list'> Data: ['receiving', 'collaboration', 'platform', 'deletion', 'email', 'english', 'coming', 'spanish', 'already', 'told', 'lothryra', 'mean', 'english', 'please', 'enter', 'ticket', 'collaboration'] processed_text: ['receiving', 'collaboration', 'platform', 'deletion', 'email', 'english', 'coming', 'spanish', 'already', 'told', 'lothryra', 'mean', 'english', 'please', 'enter', 'ticket', 'collaboration'] list_processed_text: [['receiving'], ['collaboration'], ['platform'], ['deletion'], ['email'], ['english'], ['coming'], ['spanish'], ['already'], ['told'], ['lothryra'], ['mean'], ['english'], ['please'], ['enter'], ['ticket'], ['collaboration']] k: 544 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 545 len: <class 'list'> Data: ['ip', 'address', 'conflict', 'carthygyrol', 'back', 'office', 'week', 'saw', 'ip', 'address', 'conflict', 'message', 'requested', 'restart', 'see', 'message'] processed_text: ['ip', 'address', 'conflict', 'carthygyrol', 'back', 'office', 'week', 'saw', 'ip', 'address', 'conflict', 'message', 'requested', 'restart', 'see', 'message'] list_processed_text: [['ip'], ['address'], ['conflict'], ['carthygyrol'], ['back'], ['office'], ['week'], ['saw'], ['ip'], ['address'], ['conflict'], ['message'], ['requested'], ['restart'], ['see'], ['message']] k: 546 len: <class 'list'> Data: ['scan', 'work', 'home', 'printer', 'scan', 'work', 'home', 'printer'] processed_text: ['scan', 'work', 'home', 'printer', 'scan', 'work', 'home', 'printer'] list_processed_text: [['scan'], ['work'], ['home'], ['printer'], ['scan'], ['work'], ['home'], ['printer']] k: 547 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lock', 'erp', 'sid', 'account', 'lock'] processed_text: ['erp', 'sid', 'account', 'lock', 'erp', 'sid', 'account', 'lock'] list_processed_text: [['erp'], ['sid'], ['account'], ['lock'], ['erp'], ['sid'], ['account'], ['lock']] k: 548 len: <class 'list'> Data: ['skype', 'meeting', 'add', 'getting', 'disabled', 'outlook', 'skype', 'meeting', 'add', 'getting', 'disabled', 'outlook'] processed_text: ['skype', 'meeting', 'add', 'getting', 'disabled', 'outlook', 'skype', 'meeting', 'add', 'getting', 'disabled', 'outlook'] list_processed_text: [['skype'], ['meeting'], ['add'], ['getting'], ['disabled'], ['outlook'], ['skype'], ['meeting'], ['add'], ['getting'], ['disabled'], ['outlook']] k: 549 len: <class 'list'> Data: ['connect', 'note', 'book', 'vpn', 'connect', 'note', 'book', 'vpn', 'page', 'csn', 'shown'] processed_text: ['connect', 'note', 'book', 'vpn', 'connect', 'note', 'book', 'vpn', 'page', 'csn', 'shown'] list_processed_text: [['connect'], ['note'], ['book'], ['vpn'], ['connect'], ['note'], ['book'], ['vpn'], ['page'], ['csn'], ['shown']] k: 550 len: <class 'list'> Data: ['password', 'infosthryda', 'expired', 'south', 'amerirtca', 'erp', 'working', 'today', 'erp', 'working', 'attempting', 'use', 'erp', 'client', 'show', 'message', 'attached', 'microsoft', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'login', 'failed', 'user', 'infosthryda', 'reason', 'password', 'account', 'expired', 'contacted', 'vendor', 'said', 'password', 'expired', 'due', 'setting', 'configured', 'company', 'dba', 'team', 'dba', 'team', 'unlock', 'account', 'cahnge', 'password', 'setup', 'erp', 'new', 'password'] processed_text: ['password', 'infosthryda', 'expired', 'south', 'amerirtca', 'erp', 'working', 'today', 'erp', 'working', 'attempting', 'use', 'erp', 'client', 'show', 'message', 'attached', 'microsoft', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'login', 'failed', 'user', 'infosthryda', 'reason', 'password', 'account', 'expired', 'contacted', 'vendor', 'said', 'password', 'expired', 'due', 'setting', 'configured', 'company', 'dba', 'team', 'dba', 'team', 'unlock', 'account', 'cahnge', 'password', 'setup', 'erp', 'new', 'password'] list_processed_text: [['password'], ['infosthryda'], ['expired'], ['south'], ['amerirtca'], ['erp'], ['working'], ['today'], ['erp'], ['working'], ['attempting'], ['use'], ['erp'], ['client'], ['show'], ['message'], ['attached'], ['microsoft'], ['odbc'], ['vmsliazh'], ['ltksxmyv'], ['driver'], ['login'], ['failed'], ['user'], ['infosthryda'], ['reason'], ['password'], ['account'], ['expired'], ['contacted'], ['vendor'], ['said'], ['password'], ['expired'], ['due'], ['setting'], ['configured'], ['company'], ['dba'], ['team'], ['dba'], ['team'], ['unlock'], ['account'], ['cahnge'], ['password'], ['setup'], ['erp'], ['new'], ['password']] k: 551 len: <class 'list'> Data: ['reset', 'password', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['mgvpoyqd'], ['tnlshpwb'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['mgvpoyqd'], ['tnlshpwb'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 552 len: <class 'list'> Data: ['speaker', 'working', 'skype', 'hello', 'facing', 'issue', 'sound', 'skype', 'meeting', 'kindly', 'needful', 'best'] processed_text: ['speaker', 'working', 'skype', 'hello', 'facing', 'issue', 'sound', 'skype', 'meeting', 'kindly', 'needful', 'best'] list_processed_text: [['speaker'], ['working'], ['skype'], ['hello'], ['facing'], ['issue'], ['sound'], ['skype'], ['meeting'], ['kindly'], ['needful'], ['best']] k: 553 len: <class 'list'> Data: ['problem', 'ticket', 'fixed', 'chg', 'back', 'regarding', 'ticket', 'fixed', 'chg', 'key', 'user', 'reported', 'attached', 'email', 'application', 'showing', 'problem', 'today', 'contacted', 'vendor', 'told', 'u', 'verify', 'recommended', 'run', 'command', 'investigating', 'also', 'suggested', 'u', 'involve', 'dba', 'team', 'also', 'verify', 'seems', 'db', 'missing', 'information'] processed_text: ['problem', 'ticket', 'fixed', 'chg', 'back', 'regarding', 'ticket', 'fixed', 'chg', 'key', 'user', 'reported', 'attached', 'email', 'application', 'showing', 'problem', 'today', 'contacted', 'vendor', 'told', 'u', 'verify', 'recommended', 'run', 'command', 'investigating', 'also', 'suggested', 'u', 'involve', 'dba', 'team', 'also', 'verify', 'seems', 'db', 'missing', 'information'] list_processed_text: [['problem'], ['ticket'], ['fixed'], ['chg'], ['back'], ['regarding'], ['ticket'], ['fixed'], ['chg'], ['key'], ['user'], ['reported'], ['attached'], ['email'], ['application'], ['showing'], ['problem'], ['today'], ['contacted'], ['vendor'], ['told'], ['u'], ['verify'], ['recommended'], ['run'], ['command'], ['investigating'], ['also'], ['suggested'], ['u'], ['involve'], ['dba'], ['team'], ['also'], ['verify'], ['seems'], ['db'], ['missing'], ['information']] k: 554 len: <class 'list'> Data: ['t', 'printer', 'printing', 'name', 'gqhfieys', 'pkwcdbrv', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 't', 'printer', 'still', 'working', 'system', 'restart'] processed_text: ['t', 'printer', 'printing', 'name', 'gqhfieys', 'pkwcdbrv', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 't', 'printer', 'still', 'working', 'system', 'restart'] list_processed_text: [['t'], ['printer'], ['printing'], ['name'], ['gqhfieys'], ['pkwcdbrv'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['t'], ['printer'], ['still'], ['working'], ['system'], ['restart']] k: 555 len: <class 'list'> Data: ['problem', 'fuser', 'unit', 'qvncizuf', 'ueiybanz', 'problem', 'fuser', 'unit', 'qvncizuf', 'ueiybanz'] processed_text: ['problem', 'fuser', 'unit', 'qvncizuf', 'ueiybanz', 'problem', 'fuser', 'unit', 'qvncizuf', 'ueiybanz'] list_processed_text: [['problem'], ['fuser'], ['unit'], ['qvncizuf'], ['ueiybanz'], ['problem'], ['fuser'], ['unit'], ['qvncizuf'], ['ueiybanz']] k: 556 len: <class 'list'> Data: ['efrjkspc', 'sfhbunrp', 'window', 'password', 'expiring', 'soon', 'efrjkspc', 'sfhbunrp', 'nwfodmhc', 'exurcwkm', 'aw', 'efrjkspc', 'sfhbunrp', 'window', 'password', 'expiring', 'soon', 'importance', 'high', 'hello', 'changed', 'password', 'day', 'day', 'ago', 'get', 'reminder', 'please', 'inform', 'change'] processed_text: ['efrjkspc', 'sfhbunrp', 'window', 'password', 'expiring', 'soon', 'efrjkspc', 'sfhbunrp', 'nwfodmhc', 'exurcwkm', 'aw', 'efrjkspc', 'sfhbunrp', 'window', 'password', 'expiring', 'soon', 'importance', 'high', 'hello', 'changed', 'password', 'day', 'day', 'ago', 'get', 'reminder', 'please', 'inform', 'change'] list_processed_text: [['efrjkspc'], ['sfhbunrp'], ['window'], ['password'], ['expiring'], ['soon'], ['efrjkspc'], ['sfhbunrp'], ['nwfodmhc'], ['exurcwkm'], ['aw'], ['efrjkspc'], ['sfhbunrp'], ['window'], ['password'], ['expiring'], ['soon'], ['importance'], ['high'], ['hello'], ['changed'], ['password'], ['day'], ['day'], ['ago'], ['get'], ['reminder'], ['please'], ['inform'], ['change']] k: 557 len: <class 'list'> Data: ['aw', 'team', 'drive', 'folder', 'retention', 'deletion', 'please', 'review', 'respond', 'hello', 'support', 'could', 'please', 'give', 'mr', 'vxpcnrtw', 'xelhoicd', 'permission', 'read', 'write', 'load', 'upload', 'file', 'global', 'team', 'drive', 'folder', 'gm', 'sge', 'programdnty', 'many'] processed_text: ['aw', 'team', 'drive', 'folder', 'retention', 'deletion', 'please', 'review', 'respond', 'hello', 'support', 'could', 'please', 'give', 'mr', 'vxpcnrtw', 'xelhoicd', 'permission', 'read', 'write', 'load', 'upload', 'file', 'global', 'team', 'drive', 'folder', 'gm', 'sge', 'programdnty', 'many'] list_processed_text: [['aw'], ['team'], ['drive'], ['folder'], ['retention'], ['deletion'], ['please'], ['review'], ['respond'], ['hello'], ['support'], ['could'], ['please'], ['give'], ['mr'], ['vxpcnrtw'], ['xelhoicd'], ['permission'], ['read'], ['write'], ['load'], ['upload'], ['file'], ['global'], ['team'], ['drive'], ['folder'], ['gm'], ['sge'], ['programdnty'], ['many']] k: 558 len: <class 'list'> Data: ['usa', 'deletion', 'group', 'qlhmawgi', 'sgwipoxns', 'ou', 'usatdhdal', 'deleted', 'usatdhdal', 'ou', 'also', 'deleted'] processed_text: ['usa', 'deletion', 'group', 'qlhmawgi', 'sgwipoxns', 'ou', 'usatdhdal', 'deleted', 'usatdhdal', 'ou', 'also', 'deleted'] list_processed_text: [['usa'], ['deletion'], ['group'], ['qlhmawgi'], ['sgwipoxns'], ['ou'], ['usatdhdal'], ['deleted'], ['usatdhdal'], ['ou'], ['also'], ['deleted']] k: 559 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'name', 'tqnbkjgu', 'xyedbsnm', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'uacyltoe', 'hxgaycze'] processed_text: ['uacyltoe', 'hxgaycze', 'name', 'tqnbkjgu', 'xyedbsnm', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'uacyltoe', 'hxgaycze'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['name'], ['tqnbkjgu'], ['xyedbsnm'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['uacyltoe'], ['hxgaycze']] k: 560 len: <class 'list'> Data: ['billing', 'block', 'removed', 'automatically', 'hello', 'please', 'check', 'billing', 'block', 'removed', 'automatically'] processed_text: ['billing', 'block', 'removed', 'automatically', 'hello', 'please', 'check', 'billing', 'block', 'removed', 'automatically'] list_processed_text: [['billing'], ['block'], ['removed'], ['automatically'], ['hello'], ['please'], ['check'], ['billing'], ['block'], ['removed'], ['automatically']] k: 561 len: <class 'list'> Data: ['need', 'create', 'delivery', 'note', 'sto', 'work', 'need', 'create', 'delivery', 'note', 'sto', 'work'] processed_text: ['need', 'create', 'delivery', 'note', 'sto', 'work', 'need', 'create', 'delivery', 'note', 'sto', 'work'] list_processed_text: [['need'], ['create'], ['delivery'], ['note'], ['sto'], ['work'], ['need'], ['create'], ['delivery'], ['note'], ['sto'], ['work']] k: 562 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'name', 'chtrhysdrystal', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'good', 'morning', 'please', 'reset', 'erp', 'password'] processed_text: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'name', 'chtrhysdrystal', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'good', 'morning', 'please', 'reset', 'erp', 'password'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset'], ['name'], ['chtrhysdrystal'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['good'], ['morning'], ['please'], ['reset'], ['erp'], ['password']] k: 563 len: <class 'list'> Data: ['need', 'install', 't', 'printer', 'need', 'install', 't', 'printer'] processed_text: ['need', 'install', 't', 'printer', 'need', 'install', 't', 'printer'] list_processed_text: [['need'], ['install'], ['t'], ['printer'], ['need'], ['install'], ['t'], ['printer']] k: 564 len: <class 'list'> Data: ['urgent', 'user', 'germany', 'reporting', 'cannot', 'reach', 'gso', 'using', 'chat', 'feature', 'tqnbkjgu', 'xyedbsnm', 'reported', 'colleague', 'unable', 'reach', 'gso', 'using', 'chat', 'fill', 'form', 'next', 'page', 'come', 'company', 'logo'] processed_text: ['urgent', 'user', 'germany', 'reporting', 'cannot', 'reach', 'gso', 'using', 'chat', 'feature', 'tqnbkjgu', 'xyedbsnm', 'reported', 'colleague', 'unable', 'reach', 'gso', 'using', 'chat', 'fill', 'form', 'next', 'page', 'come', 'company', 'logo'] list_processed_text: [['urgent'], ['user'], ['germany'], ['reporting'], ['cannot'], ['reach'], ['gso'], ['using'], ['chat'], ['feature'], ['tqnbkjgu'], ['xyedbsnm'], ['reported'], ['colleague'], ['unable'], ['reach'], ['gso'], ['using'], ['chat'], ['fill'], ['form'], ['next'], ['page'], ['come'], ['company'], ['logo']] k: 565 len: <class 'list'> Data: ['new', 'iphone', 'activation', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'hello', 'colleague', 'would', 'please', 'kind', 'activate', 'new', 'iphone', 'hybegvwo', 'dbgrtqhs', 'company', 'sdjdskjdkyr', 'detail', 'please', 'see', 'mail', 'many'] processed_text: ['new', 'iphone', 'activation', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'hello', 'colleague', 'would', 'please', 'kind', 'activate', 'new', 'iphone', 'hybegvwo', 'dbgrtqhs', 'company', 'sdjdskjdkyr', 'detail', 'please', 'see', 'mail', 'many'] list_processed_text: [['new'], ['iphone'], ['activation'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['hello'], ['colleague'], ['would'], ['please'], ['kind'], ['activate'], ['new'], ['iphone'], ['hybegvwo'], ['dbgrtqhs'], ['company'], ['sdjdskjdkyr'], ['detail'], ['please'], ['see'], ['mail'], ['many']] k: 566 len: <class 'list'> Data: ['folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'read', 'write', 'access', 'needed'] processed_text: ['folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'read', 'write', 'access', 'needed'] list_processed_text: [['folder'], ['access'], ['hostname'], ['departements'], ['aese'], ['thryad'], ['folder'], ['access'], ['hostname'], ['departements'], ['aese'], ['thryad'], ['read'], ['write'], ['access'], ['needed']] k: 567 len: <class 'list'> Data: ['outlook', 'microsoft', 'application', 'message', 'appears', 'saying', 'product', 'deactivated', 'outlook', 'microsoft', 'application', 'message', 'appears', 'saying', 'product', 'deactivated'] processed_text: ['outlook', 'microsoft', 'application', 'message', 'appears', 'saying', 'product', 'deactivated', 'outlook', 'microsoft', 'application', 'message', 'appears', 'saying', 'product', 'deactivated'] list_processed_text: [['outlook'], ['microsoft'], ['application'], ['message'], ['appears'], ['saying'], ['product'], ['deactivated'], ['outlook'], ['microsoft'], ['application'], ['message'], ['appears'], ['saying'], ['product'], ['deactivated']] k: 568 len: <class 'list'> Data: ['laptop', 'bettery', 'issue', 'facing', 'charging', 'issue', 'computer', 'name', 'aidle', 'service', 'tag', 'dcdhzhd'] processed_text: ['laptop', 'bettery', 'issue', 'facing', 'charging', 'issue', 'computer', 'name', 'aidle', 'service', 'tag', 'dcdhzhd'] list_processed_text: [['laptop'], ['bettery'], ['issue'], ['facing'], ['charging'], ['issue'], ['computer'], ['name'], ['aidle'], ['service'], ['tag'], ['dcdhzhd']] k: 569 len: <class 'list'> Data: ['reset', 'password', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bfnvjg'], ['trqmnpvu'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['bfnvjg'], ['trqmnpvu'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 570 len: <class 'list'> Data: ['printer', 'malfunction', 'hello', 'printer', 'em', 'scan', 'document', 'error', 'message', 'check', 'access', 'r', 'following', 'destination', 'failed', 'hostname', 'kmscan', 'em', 'file', 'hostname', 'kmscan', 'em', 'path', 'cannot', 'found', 'error', 'also', 'caused', 'switching', 'device', 'several', 'time', 'fix', 'best'] processed_text: ['printer', 'malfunction', 'hello', 'printer', 'em', 'scan', 'document', 'error', 'message', 'check', 'access', 'r', 'following', 'destination', 'failed', 'hostname', 'kmscan', 'em', 'file', 'hostname', 'kmscan', 'em', 'path', 'cannot', 'found', 'error', 'also', 'caused', 'switching', 'device', 'several', 'time', 'fix', 'best'] list_processed_text: [['printer'], ['malfunction'], ['hello'], ['printer'], ['em'], ['scan'], ['document'], ['error'], ['message'], ['check'], ['access'], ['r'], ['following'], ['destination'], ['failed'], ['hostname'], ['kmscan'], ['em'], ['file'], ['hostname'], ['kmscan'], ['em'], ['path'], ['cannot'], ['found'], ['error'], ['also'], ['caused'], ['switching'], ['device'], ['several'], ['time'], ['fix'], ['best']] k: 571 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 572 len: <class 'list'> Data: ['erp', 'locked', 'failed', 'attempt', 'password', 'locked', 'please', 'activate', 'erp', 'failed', 'attempt'] processed_text: ['erp', 'locked', 'failed', 'attempt', 'password', 'locked', 'please', 'activate', 'erp', 'failed', 'attempt'] list_processed_text: [['erp'], ['locked'], ['failed'], ['attempt'], ['password'], ['locked'], ['please'], ['activate'], ['erp'], ['failed'], ['attempt']] k: 573 len: <class 'list'> Data: ['password', 'synchronized', 'password', 'synchronized'] processed_text: ['password', 'synchronized', 'password', 'synchronized'] list_processed_text: [['password'], ['synchronized'], ['password'], ['synchronized']] k: 574 len: <class 'list'> Data: ['machine', 'pc', 'defective', "machine's", 'pc', 'longer', 'start'] processed_text: ['machine', 'pc', 'defective', "machine's", 'pc', 'longer', 'start'] list_processed_text: [['machine'], ['pc'], ['defective'], ["machine's"], ['pc'], ['longer'], ['start']] k: 575 len: <class 'list'> Data: ['pc', 'awywx', 'rddept', 'qlhmawgi', 'sgwipoxn', 'getting', 'network', 'connection', 'pc', 'awywx', 'rddept', 'qlhmawgi', 'sgwipoxn', 'getting', 'network', 'connection'] processed_text: ['pc', 'awywx', 'rddept', 'qlhmawgi', 'sgwipoxn', 'getting', 'network', 'connection', 'pc', 'awywx', 'rddept', 'qlhmawgi', 'sgwipoxn', 'getting', 'network', 'connection'] list_processed_text: [['pc'], ['awywx'], ['rddept'], ['qlhmawgi'], ['sgwipoxn'], ['getting'], ['network'], ['connection'], ['pc'], ['awywx'], ['rddept'], ['qlhmawgi'], ['sgwipoxn'], ['getting'], ['network'], ['connection']] k: 576 len: <class 'list'> Data: ['call', 'salesforce', 'hathryrtmut', 'caller', 'named', 'benjamtrhdyin', 'salesforce', 'wanted', 'talk', 'hathryrtmut'] processed_text: ['call', 'salesforce', 'hathryrtmut', 'caller', 'named', 'benjamtrhdyin', 'salesforce', 'wanted', 'talk', 'hathryrtmut'] list_processed_text: [['call'], ['salesforce'], ['hathryrtmut'], ['caller'], ['named'], ['benjamtrhdyin'], ['salesforce'], ['wanted'], ['talk'], ['hathryrtmut']] k: 577 len: <class 'list'> Data: ['bug', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'appearing', 'blank', 'bug', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'appearing', 'blank'] processed_text: ['bug', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'appearing', 'blank', 'bug', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'appearing', 'blank'] list_processed_text: [['bug'], ['employee'], ['extract'], ['programdnty'], ['reportncqulao'], ['qauighdpnager'], ['appearing'], ['blank'], ['bug'], ['employee'], ['extract'], ['programdnty'], ['reportncqulao'], ['qauighdpnager'], ['appearing'], ['blank']] k: 578 len: <class 'list'> Data: ['eu', 'tool', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht', 'eu', 'tool', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht'] processed_text: ['eu', 'tool', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht', 'eu', 'tool', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht'] list_processed_text: [['eu'], ['tool'], ['germany'], ['steel'], ['ohne'], ['funktion'], ['ckmelden'], ['geht'], ['nicht'], ['eu'], ['tool'], ['germany'], ['steel'], ['ohne'], ['funktion'], ['ckmelden'], ['geht'], ['nicht']] k: 579 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 580 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 581 len: <class 'list'> Data: ['msd', 'crm', 'error', 'opening', 'outlook', 'hello', 'open', 'outlook', 'crm', 'go', 'erro', 'net', 'press', 'continue', 'work', 'outlook', 'crm', 'plug', 'otherwise', 'outlook', 'crash'] processed_text: ['msd', 'crm', 'error', 'opening', 'outlook', 'hello', 'open', 'outlook', 'crm', 'go', 'erro', 'net', 'press', 'continue', 'work', 'outlook', 'crm', 'plug', 'otherwise', 'outlook', 'crash'] list_processed_text: [['msd'], ['crm'], ['error'], ['opening'], ['outlook'], ['hello'], ['open'], ['outlook'], ['crm'], ['go'], ['erro'], ['net'], ['press'], ['continue'], ['work'], ['outlook'], ['crm'], ['plug'], ['otherwise'], ['outlook'], ['crash']] k: 582 len: <class 'list'> Data: ['wk', 'qdxyifhj', 'zbwtunpy', 'hello', 'see', 'mail', 'button', 'printer', 'gone', 'thanks', 'uwe'] processed_text: ['wk', 'qdxyifhj', 'zbwtunpy', 'hello', 'see', 'mail', 'button', 'printer', 'gone', 'thanks', 'uwe'] list_processed_text: [['wk'], ['qdxyifhj'], ['zbwtunpy'], ['hello'], ['see'], ['mail'], ['button'], ['printer'], ['gone'], ['thanks'], ['uwe']] k: 583 len: <class 'list'> Data: ['hi', 'user', 'able', 'logon', 'crm', 'website', 'link', 'user', 'ottyhddok', 'thielpwiie', 'lobodeidd', 'loksdkdjwda', 'please', 'get', 'touch'] processed_text: ['hi', 'user', 'able', 'logon', 'crm', 'website', 'link', 'user', 'ottyhddok', 'thielpwiie', 'lobodeidd', 'loksdkdjwda', 'please', 'get', 'touch'] list_processed_text: [['hi'], ['user'], ['able'], ['logon'], ['crm'], ['website'], ['link'], ['user'], ['ottyhddok'], ['thielpwiie'], ['lobodeidd'], ['loksdkdjwda'], ['please'], ['get'], ['touch']] k: 584 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 585 len: <class 'list'> Data: ['activation', 'outlook', 'email', 'access', 'samsung', 'edge', 'device', 'nzuofeam', 'exszgtwd', 'hi', 'please', 'usa', 'email', 'access', 'new', 'samsung', 'device', 'nzuofeam', 'exszgtwd', 'md', 'apac', 'vp', 'cpmmecial', 'please', 'find', 'information', 'follow', 'email', 'manager', 'name', 'chucashadqc', 'wsljdqqds', 'replacement', 'old', 'device', 'yes', 'existing', 'old', 'samsung', 'phone', 'longer', 'use', 'please', 'remove', 'access', 'old', 'samsung', 'device'] processed_text: ['activation', 'outlook', 'email', 'access', 'samsung', 'edge', 'device', 'nzuofeam', 'exszgtwd', 'hi', 'please', 'usa', 'email', 'access', 'new', 'samsung', 'device', 'nzuofeam', 'exszgtwd', 'md', 'apac', 'vp', 'cpmmecial', 'please', 'find', 'information', 'follow', 'email', 'manager', 'name', 'chucashadqc', 'wsljdqqds', 'replacement', 'old', 'device', 'yes', 'existing', 'old', 'samsung', 'phone', 'longer', 'use', 'please', 'remove', 'access', 'old', 'samsung', 'device'] list_processed_text: [['activation'], ['outlook'], ['email'], ['access'], ['samsung'], ['edge'], ['device'], ['nzuofeam'], ['exszgtwd'], ['hi'], ['please'], ['usa'], ['email'], ['access'], ['new'], ['samsung'], ['device'], ['nzuofeam'], ['exszgtwd'], ['md'], ['apac'], ['vp'], ['cpmmecial'], ['please'], ['find'], ['information'], ['follow'], ['email'], ['manager'], ['name'], ['chucashadqc'], ['wsljdqqds'], ['replacement'], ['old'], ['device'], ['yes'], ['existing'], ['old'], ['samsung'], ['phone'], ['longer'], ['use'], ['please'], ['remove'], ['access'], ['old'], ['samsung'], ['device']] k: 586 len: <class 'list'> Data: ['problem', 'bluescreen', 'hello,', 'computer', 'workplace', 'got', 'car', 'blue', 'screen', 'white', 'letters.', 'please', 'take', 'look', 'site'] processed_text: ['problem', 'bluescreen', 'hello,', 'computer', 'workplace', 'got', 'car', 'blue', 'screen', 'white', 'letters.', 'please', 'take', 'look', 'site'] list_processed_text: [['problem'], ['bluescreen'], ['hello,'], ['computer'], ['workplace'], ['got'], ['car'], ['blue'], ['screen'], ['white'], ['letters.'], ['please'], ['take'], ['look'], ['site']] k: 587 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 588 len: <class 'list'> Data: ['display', 'desk', 'phone', 'display', 'desk', 'phone'] processed_text: ['display', 'desk', 'phone', 'display', 'desk', 'phone'] list_processed_text: [['display'], ['desk'], ['phone'], ['display'], ['desk'], ['phone']] k: 589 len: <class 'list'> Data: ['problem', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx', 'problem', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx'] processed_text: ['problem', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx', 'problem', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx'] list_processed_text: [['problem'], ['lan'], ['r'], ['computer'], ['erosion'], ['machine'], ['dtlmbcrx'], ['mwuateyx'], ['problem'], ['lan'], ['r'], ['computer'], ['erosion'], ['machine'], ['dtlmbcrx'], ['mwuateyx']] k: 590 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'rrc', 'network', 'company', 'sa', 'south', 'amerirtca', 'dmvpn', 'router', 'since', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'rrc', 'network', 'company', 'sa', 'south', 'amerirtca', 'dmvpn', 'router', 'since', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['rrc'], ['network'], ['company'], ['sa'], ['south'], ['amerirtca'], ['dmvpn'], ['router'], ['since'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 591 len: <class 'list'> Data: ['eu', 'tool', 'hanging', 'slow', 'loaction', 'eu', 'tool', 'hanging', 'slow', 'loaction'] processed_text: ['eu', 'tool', 'hanging', 'slow', 'loaction', 'eu', 'tool', 'hanging', 'slow', 'loaction'] list_processed_text: [['eu'], ['tool'], ['hanging'], ['slow'], ['loaction'], ['eu'], ['tool'], ['hanging'], ['slow'], ['loaction']] k: 592 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 593 len: <class 'list'> Data: ['german', 'workflow', 'object', 'folder', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'german', 'workflow', 'object', 'folder', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'morning', 'approximately', 'object', 'please', 'check', 'also', 'uk', 'folder'] processed_text: ['german', 'workflow', 'object', 'folder', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'german', 'workflow', 'object', 'folder', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'morning', 'approximately', 'object', 'please', 'check', 'also', 'uk', 'folder'] list_processed_text: [['german'], ['workflow'], ['object'], ['folder'], ['gone'], ['de'], ['industrial'], ['gen'], ['ing'], ['transportation'], ['ici'], ['german'], ['workflow'], ['object'], ['folder'], ['gone'], ['de'], ['industrial'], ['gen'], ['ing'], ['transportation'], ['ici'], ['morning'], ['approximately'], ['object'], ['please'], ['check'], ['also'], ['uk'], ['folder']] k: 594 len: <class 'list'> Data: ['problem', 'outlook', 'access', 'start', 'outlook'] processed_text: ['problem', 'outlook', 'access', 'start', 'outlook'] list_processed_text: [['problem'], ['outlook'], ['access'], ['start'], ['outlook']] k: 595 len: <class 'list'> Data: ['network', 'drive', 'quattro', 'quattro', 'quattro', 'connected', 'since', 'sunday', 'network', 'drive', 'quattro', 'quattro', 'quattro', 'connected', 'since', 'sunday'] processed_text: ['network', 'drive', 'quattro', 'quattro', 'quattro', 'connected', 'since', 'sunday', 'network', 'drive', 'quattro', 'quattro', 'quattro', 'connected', 'since', 'sunday'] list_processed_text: [['network'], ['drive'], ['quattro'], ['quattro'], ['quattro'], ['connected'], ['since'], ['sunday'], ['network'], ['drive'], ['quattro'], ['quattro'], ['quattro'], ['connected'], ['since'], ['sunday']] k: 596 len: <class 'list'> Data: ['password', 'reset', 'vvjotsgssea', 'password', 'reset', 'vvjotsgssea'] processed_text: ['password', 'reset', 'vvjotsgssea', 'password', 'reset', 'vvjotsgssea'] list_processed_text: [['password'], ['reset'], ['vvjotsgssea'], ['password'], ['reset'], ['vvjotsgssea']] k: 597 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'chat', 'uacyltoe', 'hxgaycze', 'chat'] processed_text: ['uacyltoe', 'hxgaycze', 'chat', 'uacyltoe', 'hxgaycze', 'chat'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['chat'], ['uacyltoe'], ['hxgaycze'], ['chat']] k: 598 len: <class 'list'> Data: ['mount', 'request', 'lib', 'prod', 'weekly', 'job', 'backup', 'tool', 'hostname', 'weekly', 'mount', 'request', 'lib', 'prod', 'weekly', 'job', 'backup', 'tool', 'hostname', 'weekly'] processed_text: ['mount', 'request', 'lib', 'prod', 'weekly', 'job', 'backup', 'tool', 'hostname', 'weekly', 'mount', 'request', 'lib', 'prod', 'weekly', 'job', 'backup', 'tool', 'hostname', 'weekly'] list_processed_text: [['mount'], ['request'], ['lib'], ['prod'], ['weekly'], ['job'], ['backup'], ['tool'], ['hostname'], ['weekly'], ['mount'], ['request'], ['lib'], ['prod'], ['weekly'], ['job'], ['backup'], ['tool'], ['hostname'], ['weekly']] k: 599 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 600 len: <class 'list'> Data: ['employee', 'owned', 'mobility', 'agreement', 'employee', 'owned', 'mobility', 'agreement'] processed_text: ['employee', 'owned', 'mobility', 'agreement', 'employee', 'owned', 'mobility', 'agreement'] list_processed_text: [['employee'], ['owned'], ['mobility'], ['agreement'], ['employee'], ['owned'], ['mobility'], ['agreement']] k: 601 len: <class 'list'> Data: ['chat', 'feature', 'german', 'language', 'working', 'please', 'check', 'related', 'change', 'name', 'telephony', 'software', 'queue', 'fdrf', 'germany', 'please', 'check', 'attached', 'error', 'chat', 'url', 'english', 'language', 'chat', 'work', 'normally'] processed_text: ['chat', 'feature', 'german', 'language', 'working', 'please', 'check', 'related', 'change', 'name', 'telephony', 'software', 'queue', 'fdrf', 'germany', 'please', 'check', 'attached', 'error', 'chat', 'url', 'english', 'language', 'chat', 'work', 'normally'] list_processed_text: [['chat'], ['feature'], ['german'], ['language'], ['working'], ['please'], ['check'], ['related'], ['change'], ['name'], ['telephony'], ['software'], ['queue'], ['fdrf'], ['germany'], ['please'], ['check'], ['attached'], ['error'], ['chat'], ['url'], ['english'], ['language'], ['chat'], ['work'], ['normally']] k: 602 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 603 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 604 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 605 len: <class 'list'> Data: ['material', 'type', 'nd', 'create', 'requirement', 'zlz', 'agreement', 'order', 'sincerely'] processed_text: ['material', 'type', 'nd', 'create', 'requirement', 'zlz', 'agreement', 'order', 'sincerely'] list_processed_text: [['material'], ['type'], ['nd'], ['create'], ['requirement'], ['zlz'], ['agreement'], ['order'], ['sincerely']] k: 606 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 607 len: <class 'list'> Data: ['passwort', 'change', 'failed', 'dear', 'sir', 'madam', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'following', 'issue', 'occured', 'erp', 'hcm', 'production', 'target', 'able', 'change', 'password', 'detail', 'say', 'please', 'contact', 'helpdesk', 'many'] processed_text: ['passwort', 'change', 'failed', 'dear', 'sir', 'madam', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'following', 'issue', 'occured', 'erp', 'hcm', 'production', 'target', 'able', 'change', 'password', 'detail', 'say', 'please', 'contact', 'helpdesk', 'many'] list_processed_text: [['passwort'], ['change'], ['failed'], ['dear'], ['sir'], ['madam'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['following'], ['issue'], ['occured'], ['erp'], ['hcm'], ['production'], ['target'], ['able'], ['change'], ['password'], ['detail'], ['say'], ['please'], ['contact'], ['helpdesk'], ['many']] k: 608 len: <class 'list'> Data: ['label', 'printer', 'area', 'end', 'control', 'germany', 'defective', 'functional', 'size'] processed_text: ['label', 'printer', 'area', 'end', 'control', 'germany', 'defective', 'functional', 'size'] list_processed_text: [['label'], ['printer'], ['area'], ['end'], ['control'], ['germany'], ['defective'], ['functional'], ['size']] k: 609 len: <class 'list'> Data: ['ly', 'uacyltoe', 'hxgayczeing', 'sn', 'ly', 'uacyltoe', 'hxgayczeing', 'sn'] processed_text: ['ly', 'uacyltoe', 'hxgayczeing', 'sn', 'ly', 'uacyltoe', 'hxgayczeing', 'sn'] list_processed_text: [['ly'], ['uacyltoe'], ['hxgayczeing'], ['sn'], ['ly'], ['uacyltoe'], ['hxgayczeing'], ['sn']] k: 610 len: <class 'list'> Data: ['printer', 'wk', 'hello', 'help', 'printer', 'wk', 'longer', 'working', 'properly', 'label', 'shifting', 'please', 'inform', 'mr', 'himghtmelreich', 'many', 'thanks', 'best'] processed_text: ['printer', 'wk', 'hello', 'help', 'printer', 'wk', 'longer', 'working', 'properly', 'label', 'shifting', 'please', 'inform', 'mr', 'himghtmelreich', 'many', 'thanks', 'best'] list_processed_text: [['printer'], ['wk'], ['hello'], ['help'], ['printer'], ['wk'], ['longer'], ['working'], ['properly'], ['label'], ['shifting'], ['please'], ['inform'], ['mr'], ['himghtmelreich'], ['many'], ['thanks'], ['best']] k: 611 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 612 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 613 len: <class 'list'> Data: ['area', 'code', 'routing', 'check', 'machine', 'line', 'following', 'area', 'code', 'routed', 'line', 'tyuhfljp', 'zyjfpgtk', 'someone', 'call', 'help', 'desk', 'line', 'routed', 'lewbzysd', 'gqdaikbv', 'please', 'check', 'routing', 'area', 'code', 'group', 'dnis'] processed_text: ['area', 'code', 'routing', 'check', 'machine', 'line', 'following', 'area', 'code', 'routed', 'line', 'tyuhfljp', 'zyjfpgtk', 'someone', 'call', 'help', 'desk', 'line', 'routed', 'lewbzysd', 'gqdaikbv', 'please', 'check', 'routing', 'area', 'code', 'group', 'dnis'] list_processed_text: [['area'], ['code'], ['routing'], ['check'], ['machine'], ['line'], ['following'], ['area'], ['code'], ['routed'], ['line'], ['tyuhfljp'], ['zyjfpgtk'], ['someone'], ['call'], ['help'], ['desk'], ['line'], ['routed'], ['lewbzysd'], ['gqdaikbv'], ['please'], ['check'], ['routing'], ['area'], ['code'], ['group'], ['dnis']] k: 614 len: <class 'list'> Data: ['engineering', 'tool', 'login', 'issue', 'engineering', 'tool', 'login', 'issue', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['engineering', 'tool', 'login', 'issue', 'engineering', 'tool', 'login', 'issue', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['engineering'], ['tool'], ['login'], ['issue'], ['engineering'], ['tool'], ['login'], ['issue'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 615 len: <class 'list'> Data: ['network', 'outage', 'india', 'since', 'oct', 'rd', 'telecom', 'vendor', 'sr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'oct', 'rd', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'since', 'oct', 'rd', 'telecom', 'vendor', 'sr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'oct', 'rd', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['since'], ['oct'], ['rd'], ['telecom'], ['vendor'], ['sr'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['oct'], ['rd'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 616 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'ticket', 'uacyltoe', 'hxgaycze', 'ticket'] processed_text: ['uacyltoe', 'hxgaycze', 'ticket', 'uacyltoe', 'hxgaycze', 'ticket'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['ticket'], ['uacyltoe'], ['hxgaycze'], ['ticket']] k: 617 len: <class 'list'> Data: ['login', 'possible', 'trail', 'employee', 'thsaqsh', 'hello', 'following', 'trail', 'employee', 'working', 'pthyu', 'unable', 'login', 'company', 'hub', 'mail', 'id', 'view', 'salary', 'slip', 'request', 'rectify', 'aerp', 'name', 'thsaqsh', 'number', 'mail', 'id', 'user', 'id', 'wshqqhdqh', 'password', 'vasanqi'] processed_text: ['login', 'possible', 'trail', 'employee', 'thsaqsh', 'hello', 'following', 'trail', 'employee', 'working', 'pthyu', 'unable', 'login', 'company', 'hub', 'mail', 'id', 'view', 'salary', 'slip', 'request', 'rectify', 'aerp', 'name', 'thsaqsh', 'number', 'mail', 'id', 'user', 'id', 'wshqqhdqh', 'password', 'vasanqi'] list_processed_text: [['login'], ['possible'], ['trail'], ['employee'], ['thsaqsh'], ['hello'], ['following'], ['trail'], ['employee'], ['working'], ['pthyu'], ['unable'], ['login'], ['company'], ['hub'], ['mail'], ['id'], ['view'], ['salary'], ['slip'], ['request'], ['rectify'], ['aerp'], ['name'], ['thsaqsh'], ['number'], ['mail'], ['id'], ['user'], ['id'], ['wshqqhdqh'], ['password'], ['vasanqi']] k: 618 len: <class 'list'> Data: ['outlook', 'outlook', 'outlook', 'ost'] processed_text: ['outlook', 'outlook', 'outlook', 'ost'] list_processed_text: [['outlook'], ['outlook'], ['outlook'], ['ost']] k: 619 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'plant', 'primary', 'telecom', 'vendor', 'circuit', 'since', 'et', 'site', 'secondary', 'telecom', 'vendor', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'sr', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'plant', 'primary', 'telecom', 'vendor', 'circuit', 'since', 'et', 'site', 'secondary', 'telecom', 'vendor', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'sr', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['plant'], ['primary'], ['telecom'], ['vendor'], ['circuit'], ['since'], ['et'], ['site'], ['secondary'], ['telecom'], ['vendor'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['sr'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 620 len: <class 'list'> Data: ['issue', 'wi', 'fi', 'erp', 'login', 'hi', 'facing', 'issue', 'wifi', 'connectivity', 'erp', 'login', 'best'] processed_text: ['issue', 'wi', 'fi', 'erp', 'login', 'hi', 'facing', 'issue', 'wifi', 'connectivity', 'erp', 'login', 'best'] list_processed_text: [['issue'], ['wi'], ['fi'], ['erp'], ['login'], ['hi'], ['facing'], ['issue'], ['wifi'], ['connectivity'], ['erp'], ['login'], ['best']] k: 621 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'ignore', 'uacyltoe', 'hxgaycze'] processed_text: ['uacyltoe', 'hxgaycze', 'ignore', 'uacyltoe', 'hxgaycze'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['ignore'], ['uacyltoe'], ['hxgaycze']] k: 622 len: <class 'list'> Data: ['unable', 'update', 'status', 'ticketing', 'tool', 'ticket', 'hello', 'please', 'help', 'u', 'issue', 'issue', 'unable', 'update', 'status', 'ticket', 'ticketing', 'tool', 'tool', 'example', 'ticket', 'info'] processed_text: ['unable', 'update', 'status', 'ticketing', 'tool', 'ticket', 'hello', 'please', 'help', 'u', 'issue', 'issue', 'unable', 'update', 'status', 'ticket', 'ticketing', 'tool', 'tool', 'example', 'ticket', 'info'] list_processed_text: [['unable'], ['update'], ['status'], ['ticketing'], ['tool'], ['ticket'], ['hello'], ['please'], ['help'], ['u'], ['issue'], ['issue'], ['unable'], ['update'], ['status'], ['ticket'], ['ticketing'], ['tool'], ['tool'], ['example'], ['ticket'], ['info']] k: 623 len: <class 'list'> Data: ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'pls', 'ignore'] processed_text: ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'pls', 'ignore'] list_processed_text: [['uacyltoe'], ['hxgayczeing'], ['please'], ['ignore'], ['uacyltoe'], ['hxgayczeing'], ['pls'], ['ignore']] k: 624 len: <class 'list'> Data: ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'please', 'ignore'] processed_text: ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'please', 'ignore'] list_processed_text: [['uacyltoe'], ['hxgayczeing'], ['please'], ['ignore'], ['uacyltoe'], ['hxgayczeing'], ['please'], ['ignore']] k: 625 len: <class 'list'> Data: ['excel', 'database', 'problem', 'run', 'automation', 'hello', 'developed', 'one', 'application', 'access', 'database', 'internally', 'already', 'checked', 'collogues', 'working', 'fine', 'app', 'made', 'putyrh', 'press', 'tool', 'team', 'machine', 'working', 'checked', 'system', 'configuration', 'well', 'system', 'system', 'name', 'awywkwdx', 'awylw', 'awywkjswx', 'configuration', 'office', 'bit', 'error', 'get', 'system'] processed_text: ['excel', 'database', 'problem', 'run', 'automation', 'hello', 'developed', 'one', 'application', 'access', 'database', 'internally', 'already', 'checked', 'collogues', 'working', 'fine', 'app', 'made', 'putyrh', 'press', 'tool', 'team', 'machine', 'working', 'checked', 'system', 'configuration', 'well', 'system', 'system', 'name', 'awywkwdx', 'awylw', 'awywkjswx', 'configuration', 'office', 'bit', 'error', 'get', 'system'] list_processed_text: [['excel'], ['database'], ['problem'], ['run'], ['automation'], ['hello'], ['developed'], ['one'], ['application'], ['access'], ['database'], ['internally'], ['already'], ['checked'], ['collogues'], ['working'], ['fine'], ['app'], ['made'], ['putyrh'], ['press'], ['tool'], ['team'], ['machine'], ['working'], ['checked'], ['system'], ['configuration'], ['well'], ['system'], ['system'], ['name'], ['awywkwdx'], ['awylw'], ['awywkjswx'], ['configuration'], ['office'], ['bit'], ['error'], ['get'], ['system']] k: 626 len: <class 'list'> Data: ['production', 'order', 'number', 'issue', 'gso', 'currently', 'erp', 'system', 'production', 'order', 'number', 'cannot', 'found', 'order', 'number', 'identify', 'enter', 'shopfloor', 'everything', 'fine', 'erp', 'routine', 'maintenance', 'please', 'open', 'ticket', 'escalate', 'responsible', 'team', 'urgent', 'best'] processed_text: ['production', 'order', 'number', 'issue', 'gso', 'currently', 'erp', 'system', 'production', 'order', 'number', 'cannot', 'found', 'order', 'number', 'identify', 'enter', 'shopfloor', 'everything', 'fine', 'erp', 'routine', 'maintenance', 'please', 'open', 'ticket', 'escalate', 'responsible', 'team', 'urgent', 'best'] list_processed_text: [['production'], ['order'], ['number'], ['issue'], ['gso'], ['currently'], ['erp'], ['system'], ['production'], ['order'], ['number'], ['cannot'], ['found'], ['order'], ['number'], ['identify'], ['enter'], ['shopfloor'], ['everything'], ['fine'], ['erp'], ['routine'], ['maintenance'], ['please'], ['open'], ['ticket'], ['escalate'], ['responsible'], ['team'], ['urgent'], ['best']] k: 627 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 628 len: <class 'list'> Data: ['office', 'excel', 'powerpoint', 'office', 'excel', 'powerpoint'] processed_text: ['office', 'excel', 'powerpoint', 'office', 'excel', 'powerpoint'] list_processed_text: [['office'], ['excel'], ['powerpoint'], ['office'], ['excel'], ['powerpoint']] k: 629 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 630 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 631 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 632 len: <class 'list'> Data: ['unable', 'access', 'outlook', 'hi', 'team', 'kindly', 'please', 'assist', 'user', 'tahamt', 'unable', 'access', 'outlook', 'change', 'password', 'thry', 'ldikdowdfm', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['unable', 'access', 'outlook', 'hi', 'team', 'kindly', 'please', 'assist', 'user', 'tahamt', 'unable', 'access', 'outlook', 'change', 'password', 'thry', 'ldikdowdfm', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['unable'], ['access'], ['outlook'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['user'], ['tahamt'], ['unable'], ['access'], ['outlook'], ['change'], ['password'], ['thry'], ['ldikdowdfm'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 633 len: <class 'list'> Data: ['please', 'delete', 'following', 'session', 'created', 'tomyhoen', 'please', 'delete', 'following', 'session', 'created', 'tomyhoen'] processed_text: ['please', 'delete', 'following', 'session', 'created', 'tomyhoen', 'please', 'delete', 'following', 'session', 'created', 'tomyhoen'] list_processed_text: [['please'], ['delete'], ['following'], ['session'], ['created'], ['tomyhoen'], ['please'], ['delete'], ['following'], ['session'], ['created'], ['tomyhoen']] k: 634 len: <class 'list'> Data: ['look', 'price', 'availability', 'local', 'availability', 'zero', 'see', 'global', 'availability', 'see', 'attachment'] processed_text: ['look', 'price', 'availability', 'local', 'availability', 'zero', 'see', 'global', 'availability', 'see', 'attachment'] list_processed_text: [['look'], ['price'], ['availability'], ['local'], ['availability'], ['zero'], ['see'], ['global'], ['availability'], ['see'], ['attachment']] k: 635 len: <class 'list'> Data: ['inquiry', 'impact', 'award', 'wauhocsk', 'vxuikqaf', 'pm', 'nwfodmhc', 'exurcwkm', 'lxrponic', 'lyszwcxg', 'ranlpbmw', 'djwkylif', 'fw', 'impact', 'award', 'dear', 'sir', 'please', 'kind', 'help', 'asking', 'hr', 'told', 'right', 'people', 'talk', 'done', 'change', 'position', 'director', 'sale', 'theeadjjd', 'sale', 'manager', 'theeadjjd', 'direct', 'side', 'plugging', 'impact', 'award', 'point', 'approver', 'still', 'ranlpbmw', 'djwkylif', 'wauhocsk', 'vxuikqaf', 'guess', 'issue', 'might', 'wester', 'europe', 'change', 'sale', 'director', 'well', 'original', 'sd', 'crohuani', 'dtjvhyob', 'new', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'original', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'new', 'sd', 'wauhocsk', 'vxuikqaf', 'would', 'kind', 'help', 'u', 'please', 'case', 'need', 'info', 'let', 'know'] processed_text: ['inquiry', 'impact', 'award', 'wauhocsk', 'vxuikqaf', 'pm', 'nwfodmhc', 'exurcwkm', 'lxrponic', 'lyszwcxg', 'ranlpbmw', 'djwkylif', 'fw', 'impact', 'award', 'dear', 'sir', 'please', 'kind', 'help', 'asking', 'hr', 'told', 'right', 'people', 'talk', 'done', 'change', 'position', 'director', 'sale', 'theeadjjd', 'sale', 'manager', 'theeadjjd', 'direct', 'side', 'plugging', 'impact', 'award', 'point', 'approver', 'still', 'ranlpbmw', 'djwkylif', 'wauhocsk', 'vxuikqaf', 'guess', 'issue', 'might', 'wester', 'europe', 'change', 'sale', 'director', 'well', 'original', 'sd', 'crohuani', 'dtjvhyob', 'new', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'original', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'new', 'sd', 'wauhocsk', 'vxuikqaf', 'would', 'kind', 'help', 'u', 'please', 'case', 'need', 'info', 'let', 'know'] list_processed_text: [['inquiry'], ['impact'], ['award'], ['wauhocsk'], ['vxuikqaf'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['lxrponic'], ['lyszwcxg'], ['ranlpbmw'], ['djwkylif'], ['fw'], ['impact'], ['award'], ['dear'], ['sir'], ['please'], ['kind'], ['help'], ['asking'], ['hr'], ['told'], ['right'], ['people'], ['talk'], ['done'], ['change'], ['position'], ['director'], ['sale'], ['theeadjjd'], ['sale'], ['manager'], ['theeadjjd'], ['direct'], ['side'], ['plugging'], ['impact'], ['award'], ['point'], ['approver'], ['still'], ['ranlpbmw'], ['djwkylif'], ['wauhocsk'], ['vxuikqaf'], ['guess'], ['issue'], ['might'], ['wester'], ['europe'], ['change'], ['sale'], ['director'], ['well'], ['original'], ['sd'], ['crohuani'], ['dtjvhyob'], ['new'], ['sd'], ['ranlpbmw'], ['djwkylif'], ['eseer'], ['original'], ['sd'], ['ranlpbmw'], ['djwkylif'], ['eseer'], ['new'], ['sd'], ['wauhocsk'], ['vxuikqaf'], ['would'], ['kind'], ['help'], ['u'], ['please'], ['case'], ['need'], ['info'], ['let'], ['know']] k: 636 len: <class 'list'> Data: ['please', 'provide', 'access', 'mail', 'mobile', 'phone', 'fdbgoamk', 'hygxzklauthuchidambaramdnty', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'please', 'provide', 'access', 'mail', 'mobile', 'phone'] processed_text: ['please', 'provide', 'access', 'mail', 'mobile', 'phone', 'fdbgoamk', 'hygxzklauthuchidambaramdnty', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'please', 'provide', 'access', 'mail', 'mobile', 'phone'] list_processed_text: [['please'], ['provide'], ['access'], ['mail'], ['mobile'], ['phone'], ['fdbgoamk'], ['hygxzklauthuchidambaramdnty'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['access'], ['please'], ['provide'], ['access'], ['mail'], ['mobile'], ['phone']] k: 637 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['csqe'], ['dev'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['csqe'], ['dev'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 638 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 639 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 640 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 641 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 642 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 643 len: <class 'list'> Data: ['interface', 'gigabitethernet', 'usa', 'access', 'sw', 'usa', 'core', 'sw', 'since', 'pm', 'interface', 'gigabitethernet', 'usa', 'access', 'sw', 'usa', 'core', 'sw', 'since', 'pm'] processed_text: ['interface', 'gigabitethernet', 'usa', 'access', 'sw', 'usa', 'core', 'sw', 'since', 'pm', 'interface', 'gigabitethernet', 'usa', 'access', 'sw', 'usa', 'core', 'sw', 'since', 'pm'] list_processed_text: [['interface'], ['gigabitethernet'], ['usa'], ['access'], ['sw'], ['usa'], ['core'], ['sw'], ['since'], ['pm'], ['interface'], ['gigabitethernet'], ['usa'], ['access'], ['sw'], ['usa'], ['core'], ['sw'], ['since'], ['pm']] k: 644 len: <class 'list'> Data: ['outlook', 'outlook', 'working', 'please', 'see', 'fix', 'thsadyu', 'dwwlhews', 'sale', 'manager', 'gl'] processed_text: ['outlook', 'outlook', 'working', 'please', 'see', 'fix', 'thsadyu', 'dwwlhews', 'sale', 'manager', 'gl'] list_processed_text: [['outlook'], ['outlook'], ['working'], ['please'], ['see'], ['fix'], ['thsadyu'], ['dwwlhews'], ['sale'], ['manager'], ['gl']] k: 645 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 646 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 647 len: <class 'list'> Data: ['hostname', 'germany', 'server', 'since', 'et', 'hostname', 'germany', 'server', 'since', 'et'] processed_text: ['hostname', 'germany', 'server', 'since', 'et', 'hostname', 'germany', 'server', 'since', 'et'] list_processed_text: [['hostname'], ['germany'], ['server'], ['since'], ['et'], ['hostname'], ['germany'], ['server'], ['since'], ['et']] k: 648 len: <class 'list'> Data: ['call', 'came', 'music', 'nothing', 'else', 'call', 'came', 'music', 'nothing', 'else'] processed_text: ['call', 'came', 'music', 'nothing', 'else', 'call', 'came', 'music', 'nothing', 'else'] list_processed_text: [['call'], ['came'], ['music'], ['nothing'], ['else'], ['call'], ['came'], ['music'], ['nothing'], ['else']] k: 649 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] processed_text: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['blank'], ['call'], ['loud'], ['noise']] k: 650 len: <class 'list'> Data: ['erp', 'password', 'reset', 'hi', 'require', 'reset', 'erp', 'password', 'login', 'id', 'anantadth', 'warm'] processed_text: ['erp', 'password', 'reset', 'hi', 'require', 'reset', 'erp', 'password', 'login', 'id', 'anantadth', 'warm'] list_processed_text: [['erp'], ['password'], ['reset'], ['hi'], ['require'], ['reset'], ['erp'], ['password'], ['login'], ['id'], ['anantadth'], ['warm']] k: 651 len: <class 'list'> Data: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] processed_text: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] list_processed_text: [['call'], ['came'], ['got'], ['disconnected'], ['call'], ['came'], ['got'], ['disconnected']] k: 652 len: <class 'list'> Data: ['job', 'bwhrerattr', 'failed', 'job', 'scheduler', 'job', 'bwhrerattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrerattr', 'failed', 'job', 'scheduler', 'job', 'bwhrerattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrerattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrerattr'], ['failed'], ['job'], ['scheduler']] k: 653 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 654 len: <class 'list'> Data: ['hostname', 'come', 'weekly', 'reboot', 'hostname', 'come', 'weekly', 'reboot', 'note', 'recently', 'hdd', 'power', 'supply', 'replaced', 'server', 'user', 'karashsnnsb', 'ping', 'hostname', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss', 'user', 'karashsnnsb'] processed_text: ['hostname', 'come', 'weekly', 'reboot', 'hostname', 'come', 'weekly', 'reboot', 'note', 'recently', 'hdd', 'power', 'supply', 'replaced', 'server', 'user', 'karashsnnsb', 'ping', 'hostname', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss', 'user', 'karashsnnsb'] list_processed_text: [['hostname'], ['come'], ['weekly'], ['reboot'], ['hostname'], ['come'], ['weekly'], ['reboot'], ['note'], ['recently'], ['hdd'], ['power'], ['supply'], ['replaced'], ['server'], ['user'], ['karashsnnsb'], ['ping'], ['hostname'], ['pinging'], ['hostname'], ['company'], ['company'], ['com'], ['byte'], ['data'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['ping'], ['statistic'], ['packet'], ['sent'], ['received'], ['lost'], ['loss'], ['user'], ['karashsnnsb']] k: 655 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 656 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 657 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 658 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 659 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 660 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 661 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 662 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 663 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 664 len: <class 'list'> Data: ['switch', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'apac', 'since', 'pm', 'switch', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'apac', 'since', 'pm'] processed_text: ['switch', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'apac', 'since', 'pm', 'switch', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'apac', 'since', 'pm'] list_processed_text: [['switch'], ['apac'], ['company'], ['rpmwh'], ['access'], ['sw'], ['located'], ['apac'], ['since'], ['pm'], ['switch'], ['apac'], ['company'], ['rpmwh'], ['access'], ['sw'], ['located'], ['apac'], ['since'], ['pm']] k: 665 len: <class 'list'> Data: ['inquiry', 'expense', 'report', 'erp', 'inquiry', 'expense', 'report', 'erp'] processed_text: ['inquiry', 'expense', 'report', 'erp', 'inquiry', 'expense', 'report', 'erp'] list_processed_text: [['inquiry'], ['expense'], ['report'], ['erp'], ['inquiry'], ['expense'], ['report'], ['erp']] k: 666 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 667 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 668 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 669 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 670 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 671 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 672 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['primary'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['primary'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 673 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 674 len: <class 'list'> Data: ['hostname', 'disk', 'volume', 'space', 'consumed', 'hostname', 'disk', 'volume', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'disk', 'volume', 'space', 'consumed', 'hostname', 'disk', 'volume', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['disk'], ['volume'], ['space'], ['consumed'], ['hostname'], ['disk'], ['volume'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 675 len: <class 'list'> Data: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler']] k: 676 len: <class 'list'> Data: ['hostname', 'server', 'offline', 'experiencing', 'interruption', 'system', 'involved', 'server', 'hostname', 'network', 'printer', 'operational', 'due', 'problem', 'please', 'advise', 'best'] processed_text: ['hostname', 'server', 'offline', 'experiencing', 'interruption', 'system', 'involved', 'server', 'hostname', 'network', 'printer', 'operational', 'due', 'problem', 'please', 'advise', 'best'] list_processed_text: [['hostname'], ['server'], ['offline'], ['experiencing'], ['interruption'], ['system'], ['involved'], ['server'], ['hostname'], ['network'], ['printer'], ['operational'], ['due'], ['problem'], ['please'], ['advise'], ['best']] k: 677 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'ktthasb', 'site', 'hard', 'dwon', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'ktthasb', 'site', 'hard', 'dwon', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['ktthasb'], ['site'], ['hard'], ['dwon'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 678 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 679 len: <class 'list'> Data: ['terminate', 'action', 'kmzucxgq', 'vjzfocgt', 'completed', 'pm', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'kmzucxgq', 'vjzfocgt', 'completed', 'hello', 'termination', 'kmzucxgq', 'vjzfocgt', 'effective', 'approved'] processed_text: ['terminate', 'action', 'kmzucxgq', 'vjzfocgt', 'completed', 'pm', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'kmzucxgq', 'vjzfocgt', 'completed', 'hello', 'termination', 'kmzucxgq', 'vjzfocgt', 'effective', 'approved'] list_processed_text: [['terminate'], ['action'], ['kmzucxgq'], ['vjzfocgt'], ['completed'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['terminate'], ['action'], ['kmzucxgq'], ['vjzfocgt'], ['completed'], ['hello'], ['termination'], ['kmzucxgq'], ['vjzfocgt'], ['effective'], ['approved']] k: 680 len: <class 'list'> Data: ['problem', 'data', 'model', 'excel', 'cannot', 'get', 'data', 'model', 'work', 'excel', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] processed_text: ['problem', 'data', 'model', 'excel', 'cannot', 'get', 'data', 'model', 'work', 'excel', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] list_processed_text: [['problem'], ['data'], ['model'], ['excel'], ['cannot'], ['get'], ['data'], ['model'], ['work'], ['excel'], ['bwfhtumx'], ['japznrvb'], ['regional'], ['controller']] k: 681 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 682 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 683 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 684 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 685 len: <class 'list'> Data: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'russia', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'russia', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['russia'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 686 len: <class 'list'> Data: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler']] k: 687 len: <class 'list'> Data: ['outlook', 'working', 'hello', 'outlook', 'app', 'laptop', 'opening'] processed_text: ['outlook', 'working', 'hello', 'outlook', 'app', 'laptop', 'opening'] list_processed_text: [['outlook'], ['working'], ['hello'], ['outlook'], ['app'], ['laptop'], ['opening']] k: 688 len: <class 'list'> Data: ['hostname', 'server', 'beeping', 'sound', 'server', 'hostname', 'server', 'beeping', 'sound', 'server'] processed_text: ['hostname', 'server', 'beeping', 'sound', 'server', 'hostname', 'server', 'beeping', 'sound', 'server'] list_processed_text: [['hostname'], ['server'], ['beeping'], ['sound'], ['server'], ['hostname'], ['server'], ['beeping'], ['sound'], ['server']] k: 689 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 690 len: <class 'list'> Data: ['usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'pm', 'et', 'usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'pm', 'et', 'gigabitethernet', 'interface', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'company', 'na', 'usa', 'usa', 'access', 'sw', 'went', 'pm', 'et', 'gigabitethernet', 'interface'] processed_text: ['usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'pm', 'et', 'usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'pm', 'et', 'gigabitethernet', 'interface', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'company', 'na', 'usa', 'usa', 'access', 'sw', 'went', 'pm', 'et', 'gigabitethernet', 'interface'] list_processed_text: [['usa'], ['company'], ['company'], ['na'], ['usa'], ['usa'], ['core'], ['sw'], ['went'], ['pm'], ['et'], ['usa'], ['company'], ['company'], ['na'], ['usa'], ['usa'], ['core'], ['sw'], ['went'], ['pm'], ['et'], ['gigabitethernet'], ['interface'], ['company'], ['na'], ['usa'], ['usa'], ['core'], ['sw'], ['company'], ['na'], ['usa'], ['usa'], ['access'], ['sw'], ['went'], ['pm'], ['et'], ['gigabitethernet'], ['interface']] k: 691 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'pa', 'company', 'ctc', 'dr', 'vpn', 'rtr', 'company', 'com', 'went', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'pa', 'company', 'ctc', 'dr', 'vpn', 'rtr', 'company', 'com', 'went', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['pa'], ['company'], ['ctc'], ['dr'], ['vpn'], ['rtr'], ['company'], ['com'], ['went'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 692 len: <class 'list'> Data: ['bios', 'update', 'longer', 'log', 'erp', 'get', 'error', 'every', 'time', 'try', 'log', 'erp', 'get', 'log', 'balancing', 'error', 'could', 'connect', 'message', 'server'] processed_text: ['bios', 'update', 'longer', 'log', 'erp', 'get', 'error', 'every', 'time', 'try', 'log', 'erp', 'get', 'log', 'balancing', 'error', 'could', 'connect', 'message', 'server'] list_processed_text: [['bios'], ['update'], ['longer'], ['log'], ['erp'], ['get'], ['error'], ['every'], ['time'], ['try'], ['log'], ['erp'], ['get'], ['log'], ['balancing'], ['error'], ['could'], ['connect'], ['message'], ['server']] k: 693 len: <class 'list'> Data: ['unable', 'connect', 'erp', 'unable', 'connect', 'erp'] processed_text: ['unable', 'connect', 'erp', 'unable', 'connect', 'erp'] list_processed_text: [['unable'], ['connect'], ['erp'], ['unable'], ['connect'], ['erp']] k: 694 len: <class 'list'> Data: ['unable', 'access', 'etime', 'ie', 'password', 'prompt', 'resulting', 'unauthorized', 'access', 'error'] processed_text: ['unable', 'access', 'etime', 'ie', 'password', 'prompt', 'resulting', 'unauthorized', 'access', 'error'] list_processed_text: [['unable'], ['access'], ['etime'], ['ie'], ['password'], ['prompt'], ['resulting'], ['unauthorized'], ['access'], ['error']] k: 695 len: <class 'list'> Data: ['hostname', 'drive', 'flashing', 'yellow', 'message', 'display', 'also', 'flashing', 'although', 'error', 'please', 'check', 'hostname', 'shop', 'floor', 'app', 'server', 'drive', 'possible', 'problem', 'one', 'drive', 'flashing', 'yellow'] processed_text: ['hostname', 'drive', 'flashing', 'yellow', 'message', 'display', 'also', 'flashing', 'although', 'error', 'please', 'check', 'hostname', 'shop', 'floor', 'app', 'server', 'drive', 'possible', 'problem', 'one', 'drive', 'flashing', 'yellow'] list_processed_text: [['hostname'], ['drive'], ['flashing'], ['yellow'], ['message'], ['display'], ['also'], ['flashing'], ['although'], ['error'], ['please'], ['check'], ['hostname'], ['shop'], ['floor'], ['app'], ['server'], ['drive'], ['possible'], ['problem'], ['one'], ['drive'], ['flashing'], ['yellow']] k: 696 len: <class 'list'> Data: ['usa', 'usa', 'perhaps', 'site', 'well', 'outlook', 'refusing', 'send', 'reply', 'email', 'usa', 'usa', 'perhaps', 'site', 'well', 'many', 'user', 'outlook', 'refusing', 'send', 'reply', 'email', 'new', 'email', 'send', 'reply', 'stall', 'outlook', 'freeze', 'reponding', 'error', 'appears', 'happening', 'office', 'personally', 'using', 'office', 'got', 'many', 'complaint', 'usa', 'complaint', 'usa', 'mi', 'well', 'suspect', 'systemic', 'problem', 'company', 'wide'] processed_text: ['usa', 'usa', 'perhaps', 'site', 'well', 'outlook', 'refusing', 'send', 'reply', 'email', 'usa', 'usa', 'perhaps', 'site', 'well', 'many', 'user', 'outlook', 'refusing', 'send', 'reply', 'email', 'new', 'email', 'send', 'reply', 'stall', 'outlook', 'freeze', 'reponding', 'error', 'appears', 'happening', 'office', 'personally', 'using', 'office', 'got', 'many', 'complaint', 'usa', 'complaint', 'usa', 'mi', 'well', 'suspect', 'systemic', 'problem', 'company', 'wide'] list_processed_text: [['usa'], ['usa'], ['perhaps'], ['site'], ['well'], ['outlook'], ['refusing'], ['send'], ['reply'], ['email'], ['usa'], ['usa'], ['perhaps'], ['site'], ['well'], ['many'], ['user'], ['outlook'], ['refusing'], ['send'], ['reply'], ['email'], ['new'], ['email'], ['send'], ['reply'], ['stall'], ['outlook'], ['freeze'], ['reponding'], ['error'], ['appears'], ['happening'], ['office'], ['personally'], ['using'], ['office'], ['got'], ['many'], ['complaint'], ['usa'], ['complaint'], ['usa'], ['mi'], ['well'], ['suspect'], ['systemic'], ['problem'], ['company'], ['wide']] k: 697 len: <class 'list'> Data: ['access', 'denied', 'access', 'denied', 'collaboration', 'platform', 'check', 'screenshots', 'email', 'attachment', 'could', 'please', 'reviewing', 'alejayhsdtffndro', 'profile', 'collaboration', 'platform', 'function', 'menu', 'alejayhsdtffndro', 'chose', 'finance', 'option', 'receive', 'message', 'access', 'denied', 'alejayhsdtffndro', 'controller', 'mexico', 'please', 'see', 'screenshots'] processed_text: ['access', 'denied', 'access', 'denied', 'collaboration', 'platform', 'check', 'screenshots', 'email', 'attachment', 'could', 'please', 'reviewing', 'alejayhsdtffndro', 'profile', 'collaboration', 'platform', 'function', 'menu', 'alejayhsdtffndro', 'chose', 'finance', 'option', 'receive', 'message', 'access', 'denied', 'alejayhsdtffndro', 'controller', 'mexico', 'please', 'see', 'screenshots'] list_processed_text: [['access'], ['denied'], ['access'], ['denied'], ['collaboration'], ['platform'], ['check'], ['screenshots'], ['email'], ['attachment'], ['could'], ['please'], ['reviewing'], ['alejayhsdtffndro'], ['profile'], ['collaboration'], ['platform'], ['function'], ['menu'], ['alejayhsdtffndro'], ['chose'], ['finance'], ['option'], ['receive'], ['message'], ['access'], ['denied'], ['alejayhsdtffndro'], ['controller'], ['mexico'], ['please'], ['see'], ['screenshots']] k: 698 len: <class 'list'> Data: ['jpg', 'file', 'encrypted', 'jpg', 'file', 'encrypted'] processed_text: ['jpg', 'file', 'encrypted', 'jpg', 'file', 'encrypted'] list_processed_text: [['jpg'], ['file'], ['encrypted'], ['jpg'], ['file'], ['encrypted']] k: 699 len: <class 'list'> Data: ['reset', 'password', 'hello', 'locked', 'erp', 'reset', 'password', 'thesdf', 'sdlwfkvach', 'production', 'supervisor'] processed_text: ['reset', 'password', 'hello', 'locked', 'erp', 'reset', 'password', 'thesdf', 'sdlwfkvach', 'production', 'supervisor'] list_processed_text: [['reset'], ['password'], ['hello'], ['locked'], ['erp'], ['reset'], ['password'], ['thesdf'], ['sdlwfkvach'], ['production'], ['supervisor']] k: 700 len: <class 'list'> Data: ['terminated', 'employee', 'employee', 'terminated', 'still', 'access', 'company', 'email', 'personal', 'device', 'aylrbosw', 'gaeycbwd', 'tsicojkp', 'kghaozew', 'commodity', 'manager'] processed_text: ['terminated', 'employee', 'employee', 'terminated', 'still', 'access', 'company', 'email', 'personal', 'device', 'aylrbosw', 'gaeycbwd', 'tsicojkp', 'kghaozew', 'commodity', 'manager'] list_processed_text: [['terminated'], ['employee'], ['employee'], ['terminated'], ['still'], ['access'], ['company'], ['email'], ['personal'], ['device'], ['aylrbosw'], ['gaeycbwd'], ['tsicojkp'], ['kghaozew'], ['commodity'], ['manager']] k: 701 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 702 len: <class 'list'> Data: ['unlocked', 'reset', 'erp', 'sid', 'unlocked', 'reset', 'erp', 'sid'] processed_text: ['unlocked', 'reset', 'erp', 'sid', 'unlocked', 'reset', 'erp', 'sid'] list_processed_text: [['unlocked'], ['reset'], ['erp'], ['sid'], ['unlocked'], ['reset'], ['erp'], ['sid']] k: 703 len: <class 'list'> Data: ['company', 'center', 'pulling', 'replacement', 'item', 'company', 'center', 'pulling', 'replacement', 'item', 'available', 'material', 'company', 'center', 'pre', 'obsolete', 'replacement', 'diaolog', 'box', 'displaying', 'replacement', 'vb', 'populated', 'mm'] processed_text: ['company', 'center', 'pulling', 'replacement', 'item', 'company', 'center', 'pulling', 'replacement', 'item', 'available', 'material', 'company', 'center', 'pre', 'obsolete', 'replacement', 'diaolog', 'box', 'displaying', 'replacement', 'vb', 'populated', 'mm'] list_processed_text: [['company'], ['center'], ['pulling'], ['replacement'], ['item'], ['company'], ['center'], ['pulling'], ['replacement'], ['item'], ['available'], ['material'], ['company'], ['center'], ['pre'], ['obsolete'], ['replacement'], ['diaolog'], ['box'], ['displaying'], ['replacement'], ['vb'], ['populated'], ['mm']] k: 704 len: <class 'list'> Data: ['vip', 'erp', 'account', 'locked', 'user', 'janhduh', 'keehadfvkgaalen', 'vip', 'erp', 'account', 'locked', 'user', 'janhduh', 'keehadfvkgaalen'] processed_text: ['vip', 'erp', 'account', 'locked', 'user', 'janhduh', 'keehadfvkgaalen', 'vip', 'erp', 'account', 'locked', 'user', 'janhduh', 'keehadfvkgaalen'] list_processed_text: [['vip'], ['erp'], ['account'], ['locked'], ['user'], ['janhduh'], ['keehadfvkgaalen'], ['vip'], ['erp'], ['account'], ['locked'], ['user'], ['janhduh'], ['keehadfvkgaalen']] k: 705 len: <class 'list'> Data: ['outlook', 'freezing', 'user', 'outlook', 'freezing', 'user'] processed_text: ['outlook', 'freezing', 'user', 'outlook', 'freezing', 'user'] list_processed_text: [['outlook'], ['freezing'], ['user'], ['outlook'], ['freezing'], ['user']] k: 706 len: <class 'list'> Data: ['outlook', 'crm', 'plug', 'issue', 'hello', 'crm', 'plug', 'button', 'staying', 'checked', 'close', 'outlook', 'lose', 'crm', 'function', 'outlook', 'close', 'programdnty', 'please', 'see', 'attached', 'screen', 'shot', 'tskvmwag', 'awkrdqzb', 'sr', 'sale', 'engineer', 'nc', 'north', 'central', 'region'] processed_text: ['outlook', 'crm', 'plug', 'issue', 'hello', 'crm', 'plug', 'button', 'staying', 'checked', 'close', 'outlook', 'lose', 'crm', 'function', 'outlook', 'close', 'programdnty', 'please', 'see', 'attached', 'screen', 'shot', 'tskvmwag', 'awkrdqzb', 'sr', 'sale', 'engineer', 'nc', 'north', 'central', 'region'] list_processed_text: [['outlook'], ['crm'], ['plug'], ['issue'], ['hello'], ['crm'], ['plug'], ['button'], ['staying'], ['checked'], ['close'], ['outlook'], ['lose'], ['crm'], ['function'], ['outlook'], ['close'], ['programdnty'], ['please'], ['see'], ['attached'], ['screen'], ['shot'], ['tskvmwag'], ['awkrdqzb'], ['sr'], ['sale'], ['engineer'], ['nc'], ['north'], ['central'], ['region']] k: 707 len: <class 'list'> Data: ['prtqx', 'printer', 'print', 'anyone', 'office'] processed_text: ['prtqx', 'printer', 'print', 'anyone', 'office'] list_processed_text: [['prtqx'], ['printer'], ['print'], ['anyone'], ['office']] k: 708 len: <class 'list'> Data: ['password', 'error', 'erp', 'dear', 'sir', 'please', 'help', 'erp', 'login', 'user', 'id', 'dwivethn', 'best'] processed_text: ['password', 'error', 'erp', 'dear', 'sir', 'please', 'help', 'erp', 'login', 'user', 'id', 'dwivethn', 'best'] list_processed_text: [['password'], ['error'], ['erp'], ['dear'], ['sir'], ['please'], ['help'], ['erp'], ['login'], ['user'], ['id'], ['dwivethn'], ['best']] k: 709 len: <class 'list'> Data: ['business', 'partner', 'id', 'bertsckaadyd', 'hello', 'team', 'please', 'create', 'business', 'partner', 'id', 'bertsckaadyd', 'solution', 'manager', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'sourcing', 'logistics', 'global'] processed_text: ['business', 'partner', 'id', 'bertsckaadyd', 'hello', 'team', 'please', 'create', 'business', 'partner', 'id', 'bertsckaadyd', 'solution', 'manager', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'sourcing', 'logistics', 'global'] list_processed_text: [['business'], ['partner'], ['id'], ['bertsckaadyd'], ['hello'], ['team'], ['please'], ['create'], ['business'], ['partner'], ['id'], ['bertsckaadyd'], ['solution'], ['manager'], ['inxsupmy'], ['zhwmifvx'], ['team'], ['lead'], ['sourcing'], ['logistics'], ['global']] k: 710 len: <class 'list'> Data: ['missed', 'call', 'missed', 'call'] processed_text: ['missed', 'call', 'missed', 'call'] list_processed_text: [['missed'], ['call'], ['missed'], ['call']] k: 711 len: <class 'list'> Data: ['id', 'id', 'printer', 'paper', 'stuck', 'issue'] processed_text: ['id', 'id', 'printer', 'paper', 'stuck', 'issue'] list_processed_text: [['id'], ['id'], ['printer'], ['paper'], ['stuck'], ['issue']] k: 712 len: <class 'list'> Data: ['m', 'outlook', 'network', 'error', 'message', 'searching', 'inbox', 'following', 'message', 'received', 'due', 'current', 'network', 'condition', 'result', 'included', 'search'] processed_text: ['m', 'outlook', 'network', 'error', 'message', 'searching', 'inbox', 'following', 'message', 'received', 'due', 'current', 'network', 'condition', 'result', 'included', 'search'] list_processed_text: [['m'], ['outlook'], ['network'], ['error'], ['message'], ['searching'], ['inbox'], ['following'], ['message'], ['received'], ['due'], ['current'], ['network'], ['condition'], ['result'], ['included'], ['search']] k: 713 len: <class 'list'> Data: ['skype', 'error', 'logging', 'skype', 'error', 'logging'] processed_text: ['skype', 'error', 'logging', 'skype', 'error', 'logging'] list_processed_text: [['skype'], ['error'], ['logging'], ['skype'], ['error'], ['logging']] k: 714 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'moranm', 'transaction', 'code', 'user', 'need', 'working', 'cvn', 'describe', 'issue', 'csr', 'mdwydindy', 'mwdlkloran', 'currently', 'access', 'view', 'drawing', 'please', 'upgrade', 'access', 'necessary', 'requirement', 'csrs', 'company', 'team', 'provide', 'access', 'user', 'yrlsguzk', 'fasyiokl'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'moranm', 'transaction', 'code', 'user', 'need', 'working', 'cvn', 'describe', 'issue', 'csr', 'mdwydindy', 'mwdlkloran', 'currently', 'access', 'view', 'drawing', 'please', 'upgrade', 'access', 'necessary', 'requirement', 'csrs', 'company', 'team', 'provide', 'access', 'user', 'yrlsguzk', 'fasyiokl'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['moranm'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['cvn'], ['describe'], ['issue'], ['csr'], ['mdwydindy'], ['mwdlkloran'], ['currently'], ['access'], ['view'], ['drawing'], ['please'], ['upgrade'], ['access'], ['necessary'], ['requirement'], ['csrs'], ['company'], ['team'], ['provide'], ['access'], ['user'], ['yrlsguzk'], ['fasyiokl']] k: 715 len: <class 'list'> Data: ['unable', 'open', 'xml', 'file', 'computer', 'unable', 'open', 'xml', 'file', 'computer'] processed_text: ['unable', 'open', 'xml', 'file', 'computer', 'unable', 'open', 'xml', 'file', 'computer'] list_processed_text: [['unable'], ['open'], ['xml'], ['file'], ['computer'], ['unable'], ['open'], ['xml'], ['file'], ['computer']] k: 716 len: <class 'list'> Data: ['skype', 'problem', 'yesterday', 'problem', 'outlook', 'password', 'change', 'problem', 'crm', 'new', 'version', 'loaded', 'thought', 'trouble', 'skype', 'business', 'working', 'could', 'join', 'important', 'meeting', 'morning', 'copy', 'skype', 'screen', 'sign', 'address', 'correct', 'emailed', 'telephone', 'help', 'line', 'hang', 'soon', 'select', 'number', 'direct', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sale', 'engineer', 'team'] processed_text: ['skype', 'problem', 'yesterday', 'problem', 'outlook', 'password', 'change', 'problem', 'crm', 'new', 'version', 'loaded', 'thought', 'trouble', 'skype', 'business', 'working', 'could', 'join', 'important', 'meeting', 'morning', 'copy', 'skype', 'screen', 'sign', 'address', 'correct', 'emailed', 'telephone', 'help', 'line', 'hang', 'soon', 'select', 'number', 'direct', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sale', 'engineer', 'team'] list_processed_text: [['skype'], ['problem'], ['yesterday'], ['problem'], ['outlook'], ['password'], ['change'], ['problem'], ['crm'], ['new'], ['version'], ['loaded'], ['thought'], ['trouble'], ['skype'], ['business'], ['working'], ['could'], ['join'], ['important'], ['meeting'], ['morning'], ['copy'], ['skype'], ['screen'], ['sign'], ['address'], ['correct'], ['emailed'], ['telephone'], ['help'], ['line'], ['hang'], ['soon'], ['select'], ['number'], ['direct'], ['call'], ['tjwdhwdw'], ['tdlwdkunis'], ['senior'], ['sale'], ['engineer'], ['team']] k: 717 len: <class 'list'> Data: ['help', 'line', 'phone', 'problem', 'please', 'note', 'dialing', 'help', 'line', 'soon', 'make', 'selection', 'hang', 'terminating', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sale', 'engineer'] processed_text: ['help', 'line', 'phone', 'problem', 'please', 'note', 'dialing', 'help', 'line', 'soon', 'make', 'selection', 'hang', 'terminating', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sale', 'engineer'] list_processed_text: [['help'], ['line'], ['phone'], ['problem'], ['please'], ['note'], ['dialing'], ['help'], ['line'], ['soon'], ['make'], ['selection'], ['hang'], ['terminating'], ['call'], ['tjwdhwdw'], ['tdlwdkunis'], ['senior'], ['sale'], ['engineer']] k: 718 len: <class 'list'> Data: ['skype', 'hello', 'trouble', 'accessing', 'skype', 'keep', 'getting', 'cut', 'select', 'phone', 'menu', 'hope', 'get'] processed_text: ['skype', 'hello', 'trouble', 'accessing', 'skype', 'keep', 'getting', 'cut', 'select', 'phone', 'menu', 'hope', 'get'] list_processed_text: [['skype'], ['hello'], ['trouble'], ['accessing'], ['skype'], ['keep'], ['getting'], ['cut'], ['select'], ['phone'], ['menu'], ['hope'], ['get']] k: 719 len: <class 'list'> Data: ['pc', 'work', 'wifi', 'wifi', 'computer', 'work', 'wifi', 'work', 'telecom', 'vendor', 'telecom', 'vendor', 'gsm', 'suplier', 'g'] processed_text: ['pc', 'work', 'wifi', 'wifi', 'computer', 'work', 'wifi', 'work', 'telecom', 'vendor', 'telecom', 'vendor', 'gsm', 'suplier', 'g'] list_processed_text: [['pc'], ['work'], ['wifi'], ['wifi'], ['computer'], ['work'], ['wifi'], ['work'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['gsm'], ['suplier'], ['g']] k: 720 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 721 len: <class 'list'> Data: ['information', 'previous', 'ticket', 'name', 'slrgconp', 'onukdesq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'opened', 'ticket', 'morning', 'assigned'] processed_text: ['information', 'previous', 'ticket', 'name', 'slrgconp', 'onukdesq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'opened', 'ticket', 'morning', 'assigned'] list_processed_text: [['information'], ['previous'], ['ticket'], ['name'], ['slrgconp'], ['onukdesq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['opened'], ['ticket'], ['morning'], ['assigned']] k: 722 len: <class 'list'> Data: ['email', 'address', 'purchasing', 'dpuifqeo', 'eglwsfkn', 'pm', 'nwfodmhc', 'exurcwkm', 'shkdwd', 'dlwdwd', 'dfetvmzq', 'brxavtzp', 'purchasing', 'dfetvmzq', 'brxavtzp', 'email', 'address', 'profile', 'incorrect', 'please', 'change', 'also', 'need', 'add', 'company', 'catalog', 'profile'] processed_text: ['email', 'address', 'purchasing', 'dpuifqeo', 'eglwsfkn', 'pm', 'nwfodmhc', 'exurcwkm', 'shkdwd', 'dlwdwd', 'dfetvmzq', 'brxavtzp', 'purchasing', 'dfetvmzq', 'brxavtzp', 'email', 'address', 'profile', 'incorrect', 'please', 'change', 'also', 'need', 'add', 'company', 'catalog', 'profile'] list_processed_text: [['email'], ['address'], ['purchasing'], ['dpuifqeo'], ['eglwsfkn'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['shkdwd'], ['dlwdwd'], ['dfetvmzq'], ['brxavtzp'], ['purchasing'], ['dfetvmzq'], ['brxavtzp'], ['email'], ['address'], ['profile'], ['incorrect'], ['please'], ['change'], ['also'], ['need'], ['add'], ['company'], ['catalog'], ['profile']] k: 723 len: <class 'list'> Data: ['reset', 'password', 'jgxmafwk', 'mlroijfp', 'erp', 'production', 'hcm', 'new', 'erp', 'training', 'would', 'please', 'call', 'walk', 'login', 'least', 'verify', 'login', 'name', 'password', 'please'] processed_text: ['reset', 'password', 'jgxmafwk', 'mlroijfp', 'erp', 'production', 'hcm', 'new', 'erp', 'training', 'would', 'please', 'call', 'walk', 'login', 'least', 'verify', 'login', 'name', 'password', 'please'] list_processed_text: [['reset'], ['password'], ['jgxmafwk'], ['mlroijfp'], ['erp'], ['production'], ['hcm'], ['new'], ['erp'], ['training'], ['would'], ['please'], ['call'], ['walk'], ['login'], ['least'], ['verify'], ['login'], ['name'], ['password'], ['please']] k: 724 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 725 len: <class 'list'> Data: ['outlook', 'indexing', 'error', 'hello', 'team', 'used', 'able', 'see', 'search', 'outlook', 'within', 'pdf', 'attachment', 'upgrade', 'cannot', 'search', 'within', 'pdf', 'attachment', 'mailbox', 'please', 'advise'] processed_text: ['outlook', 'indexing', 'error', 'hello', 'team', 'used', 'able', 'see', 'search', 'outlook', 'within', 'pdf', 'attachment', 'upgrade', 'cannot', 'search', 'within', 'pdf', 'attachment', 'mailbox', 'please', 'advise'] list_processed_text: [['outlook'], ['indexing'], ['error'], ['hello'], ['team'], ['used'], ['able'], ['see'], ['search'], ['outlook'], ['within'], ['pdf'], ['attachment'], ['upgrade'], ['cannot'], ['search'], ['within'], ['pdf'], ['attachment'], ['mailbox'], ['please'], ['advise']] k: 726 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'erp', 'sid', 'erp', 'production', 'password', 'reset'] processed_text: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'erp', 'sid', 'erp', 'production', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset'], ['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset']] k: 727 len: <class 'list'> Data: ['ethic', 'login', 'error', 'try', 'login', 'ethic', 'training', 'click', 'log', 'collaboration', 'platform', 'site', 'take', 'page', 'select', 'language', 'click', 'engilsh', 'get', 'error', 'say', 'page', 'failed', 'load'] processed_text: ['ethic', 'login', 'error', 'try', 'login', 'ethic', 'training', 'click', 'log', 'collaboration', 'platform', 'site', 'take', 'page', 'select', 'language', 'click', 'engilsh', 'get', 'error', 'say', 'page', 'failed', 'load'] list_processed_text: [['ethic'], ['login'], ['error'], ['try'], ['login'], ['ethic'], ['training'], ['click'], ['log'], ['collaboration'], ['platform'], ['site'], ['take'], ['page'], ['select'], ['language'], ['click'], ['engilsh'], ['get'], ['error'], ['say'], ['page'], ['failed'], ['load']] k: 728 len: <class 'list'> Data: ['old', 'ticket', 'inc', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'approval', 'attached', 'ticket'] processed_text: ['old', 'ticket', 'inc', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'approval', 'attached', 'ticket'] list_processed_text: [['old'], ['ticket'], ['inc'], ['usa'], ['access'], ['configuring'], ['outlook'], ['exchange'], ['window'], ['phone'], ['usa'], ['access'], ['configuring'], ['outlook'], ['exchange'], ['window'], ['phone'], ['approval'], ['attached'], ['ticket']] k: 729 len: <class 'list'> Data: ['interface', 'gigabitethernet', 'shopfloor', 'schuette', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'gigabitethernet', 'shopfloor', 'schuette', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since'] processed_text: ['interface', 'gigabitethernet', 'shopfloor', 'schuette', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'gigabitethernet', 'shopfloor', 'schuette', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since'] list_processed_text: [['interface'], ['gigabitethernet'], ['shopfloor'], ['schuette'], ['company'], ['eu'], ['deu'], ['germany'], ['emsw'], ['access'], ['sw'], ['gigabitethernet'], ['shopfloor'], ['schuette'], ['company'], ['eu'], ['deu'], ['germany'], ['emsw'], ['access'], ['sw'], ['since']] k: 730 len: <class 'list'> Data: ['reset', 'password', 'qkgnwxto', 'dwtivjrp', 'using', 'password', 'management', 'tool', 'password', 'reset', 'cannot', 'log', 'hiatchi', 'password', 'manager', 'change', 'new', 'password'] processed_text: ['reset', 'password', 'qkgnwxto', 'dwtivjrp', 'using', 'password', 'management', 'tool', 'password', 'reset', 'cannot', 'log', 'hiatchi', 'password', 'manager', 'change', 'new', 'password'] list_processed_text: [['reset'], ['password'], ['qkgnwxto'], ['dwtivjrp'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['cannot'], ['log'], ['hiatchi'], ['password'], ['manager'], ['change'], ['new'], ['password']] k: 731 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 732 len: <class 'list'> Data: ['external', 'monitor', 'come', 'morning', 'external', 'monitor', 'come', 'morning'] processed_text: ['external', 'monitor', 'come', 'morning', 'external', 'monitor', 'come', 'morning'] list_processed_text: [['external'], ['monitor'], ['come'], ['morning'], ['external'], ['monitor'], ['come'], ['morning']] k: 733 len: <class 'list'> Data: ['delivery', 'issue', 'good', 'morning', 'urgent', 'need', 'assistance', 'customer', 'awaiting', 'part', 'mm', 'please', 'give', 'matheywter', 'high', 'priority', 'however', 'experienced', 'glitch', 'creating', 'delivery', 'sale', 'order', 'delivery', 'created', 'pc', 'balance', 'due', 'pc', 'change', 'delivery', 'quantity', 'delete', 'delivery', 'pgi', 'delivery', 'created', 'delivery', 'still', 'showing', 'md', 'try', 'make', 'change', 'error', 'delivery', 'posted', 'tried', 'unpost', 'vl', 'delivery', 'getting', 'message', 'stating', 'delivery', 'already', 'inwarehouse', 'toold', 'reality', 'delivery', 'frozen', 'erp', 'change', 'made'] processed_text: ['delivery', 'issue', 'good', 'morning', 'urgent', 'need', 'assistance', 'customer', 'awaiting', 'part', 'mm', 'please', 'give', 'matheywter', 'high', 'priority', 'however', 'experienced', 'glitch', 'creating', 'delivery', 'sale', 'order', 'delivery', 'created', 'pc', 'balance', 'due', 'pc', 'change', 'delivery', 'quantity', 'delete', 'delivery', 'pgi', 'delivery', 'created', 'delivery', 'still', 'showing', 'md', 'try', 'make', 'change', 'error', 'delivery', 'posted', 'tried', 'unpost', 'vl', 'delivery', 'getting', 'message', 'stating', 'delivery', 'already', 'inwarehouse', 'toold', 'reality', 'delivery', 'frozen', 'erp', 'change', 'made'] list_processed_text: [['delivery'], ['issue'], ['good'], ['morning'], ['urgent'], ['need'], ['assistance'], ['customer'], ['awaiting'], ['part'], ['mm'], ['please'], ['give'], ['matheywter'], ['high'], ['priority'], ['however'], ['experienced'], ['glitch'], ['creating'], ['delivery'], ['sale'], ['order'], ['delivery'], ['created'], ['pc'], ['balance'], ['due'], ['pc'], ['change'], ['delivery'], ['quantity'], ['delete'], ['delivery'], ['pgi'], ['delivery'], ['created'], ['delivery'], ['still'], ['showing'], ['md'], ['try'], ['make'], ['change'], ['error'], ['delivery'], ['posted'], ['tried'], ['unpost'], ['vl'], ['delivery'], ['getting'], ['message'], ['stating'], ['delivery'], ['already'], ['inwarehouse'], ['toold'], ['reality'], ['delivery'], ['frozen'], ['erp'], ['change'], ['made']] k: 734 len: <class 'list'> Data: ['company', 'com', 'working', 'dns', 'issue', 'company', 'com', 'working', 'dns', 'issue'] processed_text: ['company', 'com', 'working', 'dns', 'issue', 'company', 'com', 'working', 'dns', 'issue'] list_processed_text: [['company'], ['com'], ['working'], ['dns'], ['issue'], ['company'], ['com'], ['working'], ['dns'], ['issue']] k: 735 len: <class 'list'> Data: ['customer', 'catalogue', 'collaboration', 'tool', 'working', 'customer', 'catalogue', 'collaboration', 'tool', 'working'] processed_text: ['customer', 'catalogue', 'collaboration', 'tool', 'working', 'customer', 'catalogue', 'collaboration', 'tool', 'working'] list_processed_text: [['customer'], ['catalogue'], ['collaboration'], ['tool'], ['working'], ['customer'], ['catalogue'], ['collaboration'], ['tool'], ['working']] k: 736 len: <class 'list'> Data: ['unable', 'call', 'fyi', 'tried', 'calling', 'morning', 'matheywter', 'option', 'select', 'immediately', 'disconnected'] processed_text: ['unable', 'call', 'fyi', 'tried', 'calling', 'morning', 'matheywter', 'option', 'select', 'immediately', 'disconnected'] list_processed_text: [['unable'], ['call'], ['fyi'], ['tried'], ['calling'], ['morning'], ['matheywter'], ['option'], ['select'], ['immediately'], ['disconnected']] k: 737 len: <class 'list'> Data: ['access', 'netweaver', 'good', 'morning', 'please', 'give', 'yhrdw', 'hdldgeman', 'access', 'netweaver', 'question', 'thanx', 'jwbsdd', 'ddmefoche', 'sr', 'application', 'engineer'] processed_text: ['access', 'netweaver', 'good', 'morning', 'please', 'give', 'yhrdw', 'hdldgeman', 'access', 'netweaver', 'question', 'thanx', 'jwbsdd', 'ddmefoche', 'sr', 'application', 'engineer'] list_processed_text: [['access'], ['netweaver'], ['good'], ['morning'], ['please'], ['give'], ['yhrdw'], ['hdldgeman'], ['access'], ['netweaver'], ['question'], ['thanx'], ['jwbsdd'], ['ddmefoche'], ['sr'], ['application'], ['engineer']] k: 738 len: <class 'list'> Data: ['lean', 'tracker', 'issue', 'hello', 'getting', 'error', 'trying', 'create', 'new', 'lean', 'tracker', 'number', 'attached', 'screenshot', 'error', 'need', 'help', 'resolve'] processed_text: ['lean', 'tracker', 'issue', 'hello', 'getting', 'error', 'trying', 'create', 'new', 'lean', 'tracker', 'number', 'attached', 'screenshot', 'error', 'need', 'help', 'resolve'] list_processed_text: [['lean'], ['tracker'], ['issue'], ['hello'], ['getting'], ['error'], ['trying'], ['create'], ['new'], ['lean'], ['tracker'], ['number'], ['attached'], ['screenshot'], ['error'], ['need'], ['help'], ['resolve']] k: 739 len: <class 'list'> Data: ['shared', 'mailbox', 'updating', 'activity', 'shared', 'mailbox', 'updating', 'activity'] processed_text: ['shared', 'mailbox', 'updating', 'activity', 'shared', 'mailbox', 'updating', 'activity'] list_processed_text: [['shared'], ['mailbox'], ['updating'], ['activity'], ['shared'], ['mailbox'], ['updating'], ['activity']] k: 740 len: <class 'list'> Data: ['cannot', 'get', 'computer', 'get', 'error', 'ip', 'address', 'cannot', 'get', 'computer', 'get', 'error', 'ip', 'address'] processed_text: ['cannot', 'get', 'computer', 'get', 'error', 'ip', 'address', 'cannot', 'get', 'computer', 'get', 'error', 'ip', 'address'] list_processed_text: [['cannot'], ['get'], ['computer'], ['get'], ['error'], ['ip'], ['address'], ['cannot'], ['get'], ['computer'], ['get'], ['error'], ['ip'], ['address']] k: 741 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 742 len: <class 'list'> Data: ['would', 'please', 'reset', 'erp', 'hcm', 'password', 'locked', 'thanks', 'would', 'please', 'reset', 'erp', 'hcm', 'password', 'locked'] processed_text: ['would', 'please', 'reset', 'erp', 'hcm', 'password', 'locked', 'thanks', 'would', 'please', 'reset', 'erp', 'hcm', 'password', 'locked'] list_processed_text: [['would'], ['please'], ['reset'], ['erp'], ['hcm'], ['password'], ['locked'], ['thanks'], ['would'], ['please'], ['reset'], ['erp'], ['hcm'], ['password'], ['locked']] k: 743 len: <class 'list'> Data: ['outlook', 'skype', 'responding', 'outlook', 'skype', 'responding'] processed_text: ['outlook', 'skype', 'responding', 'outlook', 'skype', 'responding'] list_processed_text: [['outlook'], ['skype'], ['responding'], ['outlook'], ['skype'], ['responding']] k: 744 len: <class 'list'> Data: ['printer', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx', 'printer', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx'] processed_text: ['printer', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx', 'printer', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx'] list_processed_text: [['printer'], ['uacyltoe'], ['hxgayczeraum'], ['knicrhtyt'], ['paper'], ['dtlmbcrx'], ['mwuateyx'], ['printer'], ['uacyltoe'], ['hxgayczeraum'], ['knicrhtyt'], ['paper'], ['dtlmbcrx'], ['mwuateyx']] k: 745 len: <class 'list'> Data: ['need', 'access', 'shift', 'planner', 'please', 'set', 'access', 'following', 'path', 'department', 'hostname', 'programdntyme', 'shift', 'planner', 'user', 'freybtrhsdl'] processed_text: ['need', 'access', 'shift', 'planner', 'please', 'set', 'access', 'following', 'path', 'department', 'hostname', 'programdntyme', 'shift', 'planner', 'user', 'freybtrhsdl'] list_processed_text: [['need'], ['access'], ['shift'], ['planner'], ['please'], ['set'], ['access'], ['following'], ['path'], ['department'], ['hostname'], ['programdntyme'], ['shift'], ['planner'], ['user'], ['freybtrhsdl']] k: 746 len: <class 'list'> Data: ['hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical', 'hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical'] processed_text: ['hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical', 'hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical'] list_processed_text: [['hostname'], ['plm'], ['plot'], ['view'], ['production'], ['order'], ['interface'], ['app'], ['rfcserver'], ['exe'], ['process'], ['count'], ['critical'], ['hostname'], ['plm'], ['plot'], ['view'], ['production'], ['order'], ['interface'], ['app'], ['rfcserver'], ['exe'], ['process'], ['count'], ['critical']] k: 747 len: <class 'list'> Data: ['password', 'valid', 'new', 'password', 'access', 'erp', 'sid', 'erp', 'production', 'password', 'valid', 'new', 'password', 'access', 'erp', 'sid', 'erp', 'production'] processed_text: ['password', 'valid', 'new', 'password', 'access', 'erp', 'sid', 'erp', 'production', 'password', 'valid', 'new', 'password', 'access', 'erp', 'sid', 'erp', 'production'] list_processed_text: [['password'], ['valid'], ['new'], ['password'], ['access'], ['erp'], ['sid'], ['erp'], ['production'], ['password'], ['valid'], ['new'], ['password'], ['access'], ['erp'], ['sid'], ['erp'], ['production']] k: 748 len: <class 'list'> Data: ['reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr', 'reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr'] processed_text: ['reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr', 'reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr'] list_processed_text: [['reinstall'], ['hardcopy'], ['und'], ['eu'], ['tool'], ['lndypaqg'], ['dhqwtcsr'], ['reinstall'], ['hardcopy'], ['und'], ['eu'], ['tool'], ['lndypaqg'], ['dhqwtcsr']] k: 749 len: <class 'list'> Data: ['help', 'install', 'erp', 'computer', 'lpawhdt', 'hi', 'team', 'could', 'please', 'help', 'reinstall', 'erp', 'computer', 'user', 'computer', 'lpawhdt', 'please', 'contatc', 'doubt', 'tnks'] processed_text: ['help', 'install', 'erp', 'computer', 'lpawhdt', 'hi', 'team', 'could', 'please', 'help', 'reinstall', 'erp', 'computer', 'user', 'computer', 'lpawhdt', 'please', 'contatc', 'doubt', 'tnks'] list_processed_text: [['help'], ['install'], ['erp'], ['computer'], ['lpawhdt'], ['hi'], ['team'], ['could'], ['please'], ['help'], ['reinstall'], ['erp'], ['computer'], ['user'], ['computer'], ['lpawhdt'], ['please'], ['contatc'], ['doubt'], ['tnks']] k: 750 len: <class 'list'> Data: ['expedite', 'mm', 'mm', 'hi', 'team', 'pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently', 'thx', 'lot', 'rgds', 'wswdd', 'djdwol', 'company', 'hardpoint', 'apacc'] processed_text: ['expedite', 'mm', 'mm', 'hi', 'team', 'pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently', 'thx', 'lot', 'rgds', 'wswdd', 'djdwol', 'company', 'hardpoint', 'apacc'] list_processed_text: [['expedite'], ['mm'], ['mm'], ['hi'], ['team'], ['pls'], ['help'], ['run'], ['dn'], ['sto'], ['pc'], ['customer'], ['need'], ['urgently'], ['thx'], ['lot'], ['rgds'], ['wswdd'], ['djdwol'], ['company'], ['hardpoint'], ['apacc']] k: 751 len: <class 'list'> Data: ['output', 'error', 'message', 'output', 'error', 'message', 'registering', 'network', 'registering', 'network', 'setting', 'operation', 'completed', 'wait', 'moment', 'vzqomdgt', 'jwoqbuml'] processed_text: ['output', 'error', 'message', 'output', 'error', 'message', 'registering', 'network', 'registering', 'network', 'setting', 'operation', 'completed', 'wait', 'moment', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['output'], ['error'], ['message'], ['output'], ['error'], ['message'], ['registering'], ['network'], ['registering'], ['network'], ['setting'], ['operation'], ['completed'], ['wait'], ['moment'], ['vzqomdgt'], ['jwoqbuml']] k: 752 len: <class 'list'> Data: ['pc', 'slow', 'pc', 'responding', 'slow', 'pc', 'team', 'please', 'check', 'speed', 'looking', 'disk', 'fragmentation', 'similar', 'type', 'activity', 'help', 'pc', 'perform', 'activity', 'faster'] processed_text: ['pc', 'slow', 'pc', 'responding', 'slow', 'pc', 'team', 'please', 'check', 'speed', 'looking', 'disk', 'fragmentation', 'similar', 'type', 'activity', 'help', 'pc', 'perform', 'activity', 'faster'] list_processed_text: [['pc'], ['slow'], ['pc'], ['responding'], ['slow'], ['pc'], ['team'], ['please'], ['check'], ['speed'], ['looking'], ['disk'], ['fragmentation'], ['similar'], ['type'], ['activity'], ['help'], ['pc'], ['perform'], ['activity'], ['faster']] k: 753 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 754 len: <class 'list'> Data: ['trigger', 'load', 'bw', 'fill', 'rate', 'recovery', 'kba', 'trigger', 'load', 'bw', 'fill', 'rate', 'recovery', 'kba'] processed_text: ['trigger', 'load', 'bw', 'fill', 'rate', 'recovery', 'kba', 'trigger', 'load', 'bw', 'fill', 'rate', 'recovery', 'kba'] list_processed_text: [['trigger'], ['load'], ['bw'], ['fill'], ['rate'], ['recovery'], ['kba'], ['trigger'], ['load'], ['bw'], ['fill'], ['rate'], ['recovery'], ['kba']] k: 755 len: <class 'list'> Data: ['lable', 'printer', 'work', 'lable', 'printer', 'final', 'inspection', 'defense', 'issue', 'label'] processed_text: ['lable', 'printer', 'work', 'lable', 'printer', 'final', 'inspection', 'defense', 'issue', 'label'] list_processed_text: [['lable'], ['printer'], ['work'], ['lable'], ['printer'], ['final'], ['inspection'], ['defense'], ['issue'], ['label']] k: 756 len: <class 'list'> Data: ['job', 'bk', 'biaprod', 'failed', 'job', 'scheduler', 'job', 'bk', 'biaprod', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'biaprod', 'failed', 'job', 'scheduler', 'job', 'bk', 'biaprod', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['biaprod'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['biaprod'], ['failed'], ['job'], ['scheduler']] k: 757 len: <class 'list'> Data: ['computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl', 'computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl'] processed_text: ['computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl', 'computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl'] list_processed_text: [['computer'], ['r'], ['ngenmessmaschine'], ['uacyltoe'], ['hxgayczeen'], ['xosdfhbu'], ['gtbfkisl'], ['computer'], ['r'], ['ngenmessmaschine'], ['uacyltoe'], ['hxgayczeen'], ['xosdfhbu'], ['gtbfkisl']] k: 758 len: <class 'list'> Data: ['pc', 'name', 'hello', 'need', 'new', 'pc', 'name', 'service', 'tag', 'pc', 'fynkssc', 'koahsriq', 'wdugqatr', 'administrative', 'assistant', 'company', 'ooo', 'vavilova', 'corp', 'russia', 'russia', 'www', 'company', 'com'] processed_text: ['pc', 'name', 'hello', 'need', 'new', 'pc', 'name', 'service', 'tag', 'pc', 'fynkssc', 'koahsriq', 'wdugqatr', 'administrative', 'assistant', 'company', 'ooo', 'vavilova', 'corp', 'russia', 'russia', 'www', 'company', 'com'] list_processed_text: [['pc'], ['name'], ['hello'], ['need'], ['new'], ['pc'], ['name'], ['service'], ['tag'], ['pc'], ['fynkssc'], ['koahsriq'], ['wdugqatr'], ['administrative'], ['assistant'], ['company'], ['ooo'], ['vavilova'], ['corp'], ['russia'], ['russia'], ['www'], ['company'], ['com']] k: 759 len: <class 'list'> Data: ['delivery', 'unable', 'ship', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'customer', 'order', 'material', 'item', 'number', 'item', 'mm', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'delivery', 'quantety', 'picked', 'quantety', 'delivery', 'note', 'booked', 'system', 'say', 'delivery', 'picked', 'yet', 'cancel', 'please', 'help'] processed_text: ['delivery', 'unable', 'ship', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'customer', 'order', 'material', 'item', 'number', 'item', 'mm', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'delivery', 'quantety', 'picked', 'quantety', 'delivery', 'note', 'booked', 'system', 'say', 'delivery', 'picked', 'yet', 'cancel', 'please', 'help'] list_processed_text: [['delivery'], ['unable'], ['ship'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['customer'], ['order'], ['material'], ['item'], ['number'], ['item'], ['mm'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['delivery'], ['quantety'], ['picked'], ['quantety'], ['delivery'], ['note'], ['booked'], ['system'], ['say'], ['delivery'], ['picked'], ['yet'], ['cancel'], ['please'], ['help']] k: 760 len: <class 'list'> Data: ['pw', 'reset', 'erp', 'user', 'name', 'pihddltzr', 'erp', 'sid', 'account', 'unlocked', 'successfully', 'pw', 'reset', 'erp', 'user', 'name', 'pihddltzr', 'hi', 'unlocked', 'erp', 'sid', 'account', 'please', 'login', 'password', 'working'] processed_text: ['pw', 'reset', 'erp', 'user', 'name', 'pihddltzr', 'erp', 'sid', 'account', 'unlocked', 'successfully', 'pw', 'reset', 'erp', 'user', 'name', 'pihddltzr', 'hi', 'unlocked', 'erp', 'sid', 'account', 'please', 'login', 'password', 'working'] list_processed_text: [['pw'], ['reset'], ['erp'], ['user'], ['name'], ['pihddltzr'], ['erp'], ['sid'], ['account'], ['unlocked'], ['successfully'], ['pw'], ['reset'], ['erp'], ['user'], ['name'], ['pihddltzr'], ['hi'], ['unlocked'], ['erp'], ['sid'], ['account'], ['please'], ['login'], ['password'], ['working']] k: 761 len: <class 'list'> Data: ['cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan', 'cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan'] processed_text: ['cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan', 'cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan'] list_processed_text: [['cable'], ['lan'], ['liefern'], ['gogtyekhan'], ['merdivan'], ['cable'], ['lan'], ['liefern'], ['gogtyekhan'], ['merdivan']] k: 762 len: <class 'list'> Data: ['netweaver', 'cannot', 'use', 'missing', 'plugin'] processed_text: ['netweaver', 'cannot', 'use', 'missing', 'plugin'] list_processed_text: [['netweaver'], ['cannot'], ['use'], ['missing'], ['plugin']] k: 763 len: <class 'list'> Data: ['erp', 'sid', 'response', 'time', 'slow', 'transaction', 'interrupted', 'erp', 'connection', 'broken', 'constantly', 'transaction', 'interrupted', 'erp', 'connection', 'broken', 'constantly'] processed_text: ['erp', 'sid', 'response', 'time', 'slow', 'transaction', 'interrupted', 'erp', 'connection', 'broken', 'constantly', 'transaction', 'interrupted', 'erp', 'connection', 'broken', 'constantly'] list_processed_text: [['erp'], ['sid'], ['response'], ['time'], ['slow'], ['transaction'], ['interrupted'], ['erp'], ['connection'], ['broken'], ['constantly'], ['transaction'], ['interrupted'], ['erp'], ['connection'], ['broken'], ['constantly']] k: 764 len: <class 'list'> Data: ['please', 'release', 'access', 'hostname', 'team', 'werkleitunggermany', 'sincerely'] processed_text: ['please', 'release', 'access', 'hostname', 'team', 'werkleitunggermany', 'sincerely'] list_processed_text: [['please'], ['release'], ['access'], ['hostname'], ['team'], ['werkleitunggermany'], ['sincerely']] k: 765 len: <class 'list'> Data: ['pls', 'release', 'access', 'hostname', 'lean', 'sincerely'] processed_text: ['pls', 'release', 'access', 'hostname', 'lean', 'sincerely'] list_processed_text: [['pls'], ['release'], ['access'], ['hostname'], ['lean'], ['sincerely']] k: 766 len: <class 'list'> Data: ['reminder', 'email', 'notification', 'keep', 'sending', 'approved', 'pr', 'hi', 'team', 'still', 'received', 'email', 'notification', 'reminder', 'approve', 'pr', 'daily', 'one', 'already', 'approved', 'pending', 'pr', 'left', 'approve', 'also', 'po', 'raised', 'purchasing', 'team', 'kindly', 'review', 'system', 'fix'] processed_text: ['reminder', 'email', 'notification', 'keep', 'sending', 'approved', 'pr', 'hi', 'team', 'still', 'received', 'email', 'notification', 'reminder', 'approve', 'pr', 'daily', 'one', 'already', 'approved', 'pending', 'pr', 'left', 'approve', 'also', 'po', 'raised', 'purchasing', 'team', 'kindly', 'review', 'system', 'fix'] list_processed_text: [['reminder'], ['email'], ['notification'], ['keep'], ['sending'], ['approved'], ['pr'], ['hi'], ['team'], ['still'], ['received'], ['email'], ['notification'], ['reminder'], ['approve'], ['pr'], ['daily'], ['one'], ['already'], ['approved'], ['pending'], ['pr'], ['left'], ['approve'], ['also'], ['po'], ['raised'], ['purchasing'], ['team'], ['kindly'], ['review'], ['system'], ['fix']] k: 767 len: <class 'list'> Data: ['slow', 'erp', 'help', 'erp', 'slow', 'disconnection', 'please', 'resolve', 'earliest'] processed_text: ['slow', 'erp', 'help', 'erp', 'slow', 'disconnection', 'please', 'resolve', 'earliest'] list_processed_text: [['slow'], ['erp'], ['help'], ['erp'], ['slow'], ['disconnection'], ['please'], ['resolve'], ['earliest']] k: 768 len: <class 'list'> Data: ['erp', 'slow', 'location', 'impacted', 'least', 'eu', 'erp', 'slow', 'location', 'impacted', 'least', 'eu'] processed_text: ['erp', 'slow', 'location', 'impacted', 'least', 'eu', 'erp', 'slow', 'location', 'impacted', 'least', 'eu'] list_processed_text: [['erp'], ['slow'], ['location'], ['impacted'], ['least'], ['eu'], ['erp'], ['slow'], ['location'], ['impacted'], ['least'], ['eu']] k: 769 len: <class 'list'> Data: ['backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg', 'backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg', 'backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['backup'], ['r'], ['computer'], ['lasplant'], ['pfjwinbg'], ['ljtzbdqg'], ['backup'], ['r'], ['computer'], ['lasplant'], ['pfjwinbg'], ['ljtzbdqg']] k: 770 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 771 len: <class 'list'> Data: ['log', 'erp', 'order', 'log', 'erp', 'order'] processed_text: ['log', 'erp', 'order', 'log', 'erp', 'order'] list_processed_text: [['log'], ['erp'], ['order'], ['log'], ['erp'], ['order']] k: 772 len: <class 'list'> Data: ['pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently', 'pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently'] processed_text: ['pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently', 'pls', 'help', 'run', 'dn', 'sto', 'pc', 'customer', 'need', 'urgently'] list_processed_text: [['pls'], ['help'], ['run'], ['dn'], ['sto'], ['pc'], ['customer'], ['need'], ['urgently'], ['pls'], ['help'], ['run'], ['dn'], ['sto'], ['pc'], ['customer'], ['need'], ['urgently']] k: 773 len: <class 'list'> Data: ['eu', 'tool', 'longer', 'work', 'eu', 'tool', 'working', 'eu', 'tool', 'longer', 'work'] processed_text: ['eu', 'tool', 'longer', 'work', 'eu', 'tool', 'working', 'eu', 'tool', 'longer', 'work'] list_processed_text: [['eu'], ['tool'], ['longer'], ['work'], ['eu'], ['tool'], ['working'], ['eu'], ['tool'], ['longer'], ['work']] k: 774 len: <class 'list'> Data: ['urgent', 'please', 'reactive', 'user', 'id', 'dudyhuyv', 'hello', 'dudyhuyv', 'active', 'password', 'management', 'tool', 'australia', 'access', 'window', 'please', 'check', 'necessary', 'thx', 'sinc', 're', 'salutation', 'best'] processed_text: ['urgent', 'please', 'reactive', 'user', 'id', 'dudyhuyv', 'hello', 'dudyhuyv', 'active', 'password', 'management', 'tool', 'australia', 'access', 'window', 'please', 'check', 'necessary', 'thx', 'sinc', 're', 'salutation', 'best'] list_processed_text: [['urgent'], ['please'], ['reactive'], ['user'], ['id'], ['dudyhuyv'], ['hello'], ['dudyhuyv'], ['active'], ['password'], ['management'], ['tool'], ['australia'], ['access'], ['window'], ['please'], ['check'], ['necessary'], ['thx'], ['sinc'], ['re'], ['salutation'], ['best']] k: 775 len: <class 'list'> Data: ['unable', 'open', 'eps', 'file', 'unable', 'open', 'eps', 'file'] processed_text: ['unable', 'open', 'eps', 'file', 'unable', 'open', 'eps', 'file'] list_processed_text: [['unable'], ['open'], ['eps'], ['file'], ['unable'], ['open'], ['eps'], ['file']] k: 776 len: <class 'list'> Data: ['netpath', 'running', 'hostname', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', 'received', 'solarwind', 'alert', 'et', 'netpath', 'running', 'hostname', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', 'attached', 'screen', 'shot'] processed_text: ['netpath', 'running', 'hostname', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', 'received', 'solarwind', 'alert', 'et', 'netpath', 'running', 'hostname', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', 'attached', 'screen', 'shot'] list_processed_text: [['netpath'], ['running'], ['hostname'], ['issue'], ['reaching'], ['portal'], ['microsoftonline'], ['com'], ['received'], ['solarwind'], ['alert'], ['et'], ['netpath'], ['running'], ['hostname'], ['issue'], ['reaching'], ['portal'], ['microsoftonline'], ['com'], ['attached'], ['screen'], ['shot']] k: 777 len: <class 'list'> Data: ['pw', 'reset', 'erp', 'user', 'name', 'piltzrnj', 'thank', 'dv', 'note', 'kind', 'regard', 'best'] processed_text: ['pw', 'reset', 'erp', 'user', 'name', 'piltzrnj', 'thank', 'dv', 'note', 'kind', 'regard', 'best'] list_processed_text: [['pw'], ['reset'], ['erp'], ['user'], ['name'], ['piltzrnj'], ['thank'], ['dv'], ['note'], ['kind'], ['regard'], ['best']] k: 778 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 779 len: <class 'list'> Data: ['collaboration', 'platform', 'available', 'internet', 'access', 'collaboration', 'platform', 'available', 'internet', 'access'] processed_text: ['collaboration', 'platform', 'available', 'internet', 'access', 'collaboration', 'platform', 'available', 'internet', 'access'] list_processed_text: [['collaboration'], ['platform'], ['available'], ['internet'], ['access'], ['collaboration'], ['platform'], ['available'], ['internet'], ['access']] k: 780 len: <class 'list'> Data: ['request', 'authorization', 'hello', 'requesting', 'provide', 'authorization', 'mentioned', 'programdnty', 'best'] processed_text: ['request', 'authorization', 'hello', 'requesting', 'provide', 'authorization', 'mentioned', 'programdnty', 'best'] list_processed_text: [['request'], ['authorization'], ['hello'], ['requesting'], ['provide'], ['authorization'], ['mentioned'], ['programdnty'], ['best']] k: 781 len: <class 'list'> Data: ['bex', 'error', 'wgpimkle', 'kijhcwur', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'bex', 'error', 'help', 'desk', 'got', 'error', 'message', 'ran', 'rrmx', 'sid', 'please', 'fix', 'issue'] processed_text: ['bex', 'error', 'wgpimkle', 'kijhcwur', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'bex', 'error', 'help', 'desk', 'got', 'error', 'message', 'ran', 'rrmx', 'sid', 'please', 'fix', 'issue'] list_processed_text: [['bex'], ['error'], ['wgpimkle'], ['kijhcwur'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['bex'], ['error'], ['help'], ['desk'], ['got'], ['error'], ['message'], ['ran'], ['rrmx'], ['sid'], ['please'], ['fix'], ['issue']] k: 782 len: <class 'list'> Data: ['eu', 'tool', 'work', 'eu', 'tool', 'work'] processed_text: ['eu', 'tool', 'work', 'eu', 'tool', 'work'] list_processed_text: [['eu'], ['tool'], ['work'], ['eu'], ['tool'], ['work']] k: 783 len: <class 'list'> Data: ['job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 784 len: <class 'list'> Data: ['reincker', 'wzs', 'department', 'kentip', 'pc', 'doesn’t', 'start', 'restarting', 'stop', 'start-up', 'sequence,', 'please', 'check,', 'thank'] processed_text: ['reincker', 'wzs', 'department', 'kentip', 'pc', 'doesn’t', 'start', 'restarting', 'stop', 'start-up', 'sequence,', 'please', 'check,', 'thank'] list_processed_text: [['reincker'], ['wzs'], ['department'], ['kentip'], ['pc'], ['doesn’t'], ['start'], ['restarting'], ['stop'], ['start-up'], ['sequence,'], ['please'], ['check,'], ['thank']] k: 785 len: <class 'list'> Data: ['erp', 'slow', 'name', 'zheqafyo', 'bqirpxag', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'slow'] processed_text: ['erp', 'slow', 'name', 'zheqafyo', 'bqirpxag', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'slow'] list_processed_text: [['erp'], ['slow'], ['name'], ['zheqafyo'], ['bqirpxag'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['slow']] k: 786 len: <class 'list'> Data: ['user', 'various', 'department', 'complaining', 'slow', 'response', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'user', 'various', 'department', 'complaining', 'slow', 'response', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'unable', 'work'] processed_text: ['user', 'various', 'department', 'complaining', 'slow', 'response', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'user', 'various', 'department', 'complaining', 'slow', 'response', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'unable', 'work'] list_processed_text: [['user'], ['various'], ['department'], ['complaining'], ['slow'], ['response'], ['erp'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['etc'], ['user'], ['various'], ['department'], ['complaining'], ['slow'], ['response'], ['erp'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['etc'], ['unable'], ['work']] k: 787 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 788 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'plant', 'company', 'secondary', 'vpn', 'since', 'pm', 'et', 'site', 'primary', 'global', 'telecom', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'plant', 'company', 'secondary', 'vpn', 'since', 'pm', 'et', 'site', 'primary', 'global', 'telecom', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['plant'], ['company'], ['secondary'], ['vpn'], ['since'], ['pm'], ['et'], ['site'], ['primary'], ['global'], ['telecom'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 789 len: <class 'list'> Data: ['erp', 'sid', 'system', 'hi', 'plant', 'encounter', 'erp', 'sid', 'system', 'due', 'issue', 'able', 'fulfill', 'local', 'order', 'today', 'depend', 'fast', 'system', 'raise', 'ticket', 'inc', 'nsdwd', 'mwdddlleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['erp', 'sid', 'system', 'hi', 'plant', 'encounter', 'erp', 'sid', 'system', 'due', 'issue', 'able', 'fulfill', 'local', 'order', 'today', 'depend', 'fast', 'system', 'raise', 'ticket', 'inc', 'nsdwd', 'mwdddlleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['erp'], ['sid'], ['system'], ['hi'], ['plant'], ['encounter'], ['erp'], ['sid'], ['system'], ['due'], ['issue'], ['able'], ['fulfill'], ['local'], ['order'], ['today'], ['depend'], ['fast'], ['system'], ['raise'], ['ticket'], ['inc'], ['nsdwd'], ['mwdddlleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 790 len: <class 'list'> Data: ['unable', 'check', 'pay', 'slip', 'hr', 'tool', 'unable', 'check', 'pay', 'slip', 'hr', 'tool'] processed_text: ['unable', 'check', 'pay', 'slip', 'hr', 'tool', 'unable', 'check', 'pay', 'slip', 'hr', 'tool'] list_processed_text: [['unable'], ['check'], ['pay'], ['slip'], ['hr'], ['tool'], ['unable'], ['check'], ['pay'], ['slip'], ['hr'], ['tool']] k: 791 len: <class 'list'> Data: ['erp', 'id', 'fenthgh', 'erp', 'password', 'forgotten', 'erp', 'id', 'fenthgh', 'erp', 'password', 'forgotten', 'self', 'service', 'system', 'password', 'forgotten', 'even', 'worse', 'system', 'locked', 'fever', 'unlock'] processed_text: ['erp', 'id', 'fenthgh', 'erp', 'password', 'forgotten', 'erp', 'id', 'fenthgh', 'erp', 'password', 'forgotten', 'self', 'service', 'system', 'password', 'forgotten', 'even', 'worse', 'system', 'locked', 'fever', 'unlock'] list_processed_text: [['erp'], ['id'], ['fenthgh'], ['erp'], ['password'], ['forgotten'], ['erp'], ['id'], ['fenthgh'], ['erp'], ['password'], ['forgotten'], ['self'], ['service'], ['system'], ['password'], ['forgotten'], ['even'], ['worse'], ['system'], ['locked'], ['fever'], ['unlock']] k: 792 len: <class 'list'> Data: ['erp', 'run', 'slow', 'apac', 'agent', 'wait', 'minute', 'operation', 'erp'] processed_text: ['erp', 'run', 'slow', 'apac', 'agent', 'wait', 'minute', 'operation', 'erp'] list_processed_text: [['erp'], ['run'], ['slow'], ['apac'], ['agent'], ['wait'], ['minute'], ['operation'], ['erp']] k: 793 len: <class 'list'> Data: ['erp', 'response', 'time', 'slow', 'found', 'erp', 'response', 'time', 'speed', 'slow', 'morning', 'please', 'help', 'chek', 'fix', 'issue', 'aerp'] processed_text: ['erp', 'response', 'time', 'slow', 'found', 'erp', 'response', 'time', 'speed', 'slow', 'morning', 'please', 'help', 'chek', 'fix', 'issue', 'aerp'] list_processed_text: [['erp'], ['response'], ['time'], ['slow'], ['found'], ['erp'], ['response'], ['time'], ['speed'], ['slow'], ['morning'], ['please'], ['help'], ['chek'], ['fix'], ['issue'], ['aerp']] k: 794 len: <class 'list'> Data: ['plant', 'erp', 'sid', 'system', 'slow', 'hi', 'team', 'kindly', 'please', 'assist', 'check', 'plant', 'encounter', 'erp', 'sid', 'system', 'slow', 'daily'] processed_text: ['plant', 'erp', 'sid', 'system', 'slow', 'hi', 'team', 'kindly', 'please', 'assist', 'check', 'plant', 'encounter', 'erp', 'sid', 'system', 'slow', 'daily'] list_processed_text: [['plant'], ['erp'], ['sid'], ['system'], ['slow'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['check'], ['plant'], ['encounter'], ['erp'], ['sid'], ['system'], ['slow'], ['daily']] k: 795 len: <class 'list'> Data: ['pls', 'help', 'check', 'erp', 'due', 'slow', 'response', 'thx', 'pls', 'help', 'check', 'erp', 'due', 'slow', 'response', 'thx'] processed_text: ['pls', 'help', 'check', 'erp', 'due', 'slow', 'response', 'thx', 'pls', 'help', 'check', 'erp', 'due', 'slow', 'response', 'thx'] list_processed_text: [['pls'], ['help'], ['check'], ['erp'], ['due'], ['slow'], ['response'], ['thx'], ['pls'], ['help'], ['check'], ['erp'], ['due'], ['slow'], ['response'], ['thx']] k: 796 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 797 len: <class 'list'> Data: ['hostname', 'fence', 'hostname', 'fence', 'instead'] processed_text: ['hostname', 'fence', 'hostname', 'fence', 'instead'] list_processed_text: [['hostname'], ['fence'], ['hostname'], ['fence'], ['instead']] k: 798 len: <class 'list'> Data: ['termination', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'approved', 'termination', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'approved'] processed_text: ['termination', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'approved', 'termination', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'approved'] list_processed_text: [['termination'], ['hwddwwd'], ['wdflefrong'], ['wdnwe'], ['effective'], ['approved'], ['termination'], ['hwddwwd'], ['wdflefrong'], ['wdnwe'], ['effective'], ['approved']] k: 799 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 800 len: <class 'list'> Data: ['terminate', 'action', 'svfuhlnx', 'aqrzskpg', 'completed', 'termination', 'svfuhlnx', 'aqrzskpg', 'effective', 'approved'] processed_text: ['terminate', 'action', 'svfuhlnx', 'aqrzskpg', 'completed', 'termination', 'svfuhlnx', 'aqrzskpg', 'effective', 'approved'] list_processed_text: [['terminate'], ['action'], ['svfuhlnx'], ['aqrzskpg'], ['completed'], ['termination'], ['svfuhlnx'], ['aqrzskpg'], ['effective'], ['approved']] k: 801 len: <class 'list'> Data: ['old', 'email', 'access', 'earlier', 'work', 'email', 'dell', 'desktop', 'pull', 'mail', 'older'] processed_text: ['old', 'email', 'access', 'earlier', 'work', 'email', 'dell', 'desktop', 'pull', 'mail', 'older'] list_processed_text: [['old'], ['email'], ['access'], ['earlier'], ['work'], ['email'], ['dell'], ['desktop'], ['pull'], ['mail'], ['older']] k: 802 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 803 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 804 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 805 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 806 len: <class 'list'> Data: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler'], ['major'], ['lib'], ['drive'], ['time'], ['pm'], ['dev'], ['rmt'], ['cannot'], ['write'], ['device'], ['error'], ['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler']] k: 807 len: <class 'list'> Data: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler']] k: 808 len: <class 'list'> Data: ['window', 'password', 'reset', 'request', 'window', 'password', 'reset', 'request'] processed_text: ['window', 'password', 'reset', 'request', 'window', 'password', 'reset', 'request'] list_processed_text: [['window'], ['password'], ['reset'], ['request'], ['window'], ['password'], ['reset'], ['request']] k: 809 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 810 len: <class 'list'> Data: ['unable', 'log', 'ethic', 'unable', 'log', 'ethic'] processed_text: ['unable', 'log', 'ethic', 'unable', 'log', 'ethic'] list_processed_text: [['unable'], ['log'], ['ethic'], ['unable'], ['log'], ['ethic']] k: 811 len: <class 'list'> Data: ['query', 'send', 'skype', 'meeting', 'query', 'send', 'skype', 'meeting'] processed_text: ['query', 'send', 'skype', 'meeting', 'query', 'send', 'skype', 'meeting'] list_processed_text: [['query'], ['send'], ['skype'], ['meeting'], ['query'], ['send'], ['skype'], ['meeting']] k: 812 len: <class 'list'> Data: ['unable', 'connect', 'home', 'printer', 'unable', 'connect', 'home', 'printer'] processed_text: ['unable', 'connect', 'home', 'printer', 'unable', 'connect', 'home', 'printer'] list_processed_text: [['unable'], ['connect'], ['home'], ['printer'], ['unable'], ['connect'], ['home'], ['printer']] k: 813 len: <class 'list'> Data: ['folder', 'access', 'required', 'dear', 'team', 'please', 'usa', 'read', 'write', 'access', 'following', 'two', 'folder', 'dnqdqld', 'hostname', 'department', 'personal', 'file', 'hostname', 'department', 'personal', 'hostname', 'department', 'pesonal', 'file', 'hostname', 'department', 'pesonal'] processed_text: ['folder', 'access', 'required', 'dear', 'team', 'please', 'usa', 'read', 'write', 'access', 'following', 'two', 'folder', 'dnqdqld', 'hostname', 'department', 'personal', 'file', 'hostname', 'department', 'personal', 'hostname', 'department', 'pesonal', 'file', 'hostname', 'department', 'pesonal'] list_processed_text: [['folder'], ['access'], ['required'], ['dear'], ['team'], ['please'], ['usa'], ['read'], ['write'], ['access'], ['following'], ['two'], ['folder'], ['dnqdqld'], ['hostname'], ['department'], ['personal'], ['file'], ['hostname'], ['department'], ['personal'], ['hostname'], ['department'], ['pesonal'], ['file'], ['hostname'], ['department'], ['pesonal']] k: 814 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 815 len: <class 'list'> Data: ['outlook', 'issue', 'm', 'crm', 'dynamic', 'outlook', 'issue', 'm', 'crm', 'dynamic'] processed_text: ['outlook', 'issue', 'm', 'crm', 'dynamic', 'outlook', 'issue', 'm', 'crm', 'dynamic'] list_processed_text: [['outlook'], ['issue'], ['m'], ['crm'], ['dynamic'], ['outlook'], ['issue'], ['m'], ['crm'], ['dynamic']] k: 816 len: <class 'list'> Data: ['please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'printer', 'cl', 'p', 'per', 'lpoebzsc', 'grknswyo', 'please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'printer', 'cl', 'p', 'per', 'lpoebzsc', 'grknswyo'] processed_text: ['please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'printer', 'cl', 'p', 'per', 'lpoebzsc', 'grknswyo', 'please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'printer', 'cl', 'p', 'per', 'lpoebzsc', 'grknswyo'] list_processed_text: [['please'], ['usa'], ['sasqkjqh'], ['lwddkqddq'], ['access'], ['printer'], ['cl'], ['p'], ['per'], ['lpoebzsc'], ['grknswyo'], ['please'], ['usa'], ['sasqkjqh'], ['lwddkqddq'], ['access'], ['printer'], ['cl'], ['p'], ['per'], ['lpoebzsc'], ['grknswyo']] k: 817 len: <class 'list'> Data: ['password', 'update', 'query', 'password', 'update', 'query'] processed_text: ['password', 'update', 'query', 'password', 'update', 'query'] list_processed_text: [['password'], ['update'], ['query'], ['password'], ['update'], ['query']] k: 818 len: <class 'list'> Data: ['vpn', 'query', 'user', 'vvtdfettc', 'vpn', 'query', 'user', 'vvtdfettc'] processed_text: ['vpn', 'query', 'user', 'vvtdfettc', 'vpn', 'query', 'user', 'vvtdfettc'] list_processed_text: [['vpn'], ['query'], ['user'], ['vvtdfettc'], ['vpn'], ['query'], ['user'], ['vvtdfettc']] k: 819 len: <class 'list'> Data: ['collaboration', 'platform', 'industrial', 'good', 'afternoon', 'please', 'add', 'new', 'library', 'heading', 'talent', 'review', 'library', 'area', 'also', 'remove', 'kristina', 'cope', 'owner', 'portion', 'page', 'please', 'use', 'mtdyuhki', 'fdnrxaci', 'ifblxjmc', 'dyrgfwbm', 'page'] processed_text: ['collaboration', 'platform', 'industrial', 'good', 'afternoon', 'please', 'add', 'new', 'library', 'heading', 'talent', 'review', 'library', 'area', 'also', 'remove', 'kristina', 'cope', 'owner', 'portion', 'page', 'please', 'use', 'mtdyuhki', 'fdnrxaci', 'ifblxjmc', 'dyrgfwbm', 'page'] list_processed_text: [['collaboration'], ['platform'], ['industrial'], ['good'], ['afternoon'], ['please'], ['add'], ['new'], ['library'], ['heading'], ['talent'], ['review'], ['library'], ['area'], ['also'], ['remove'], ['kristina'], ['cope'], ['owner'], ['portion'], ['page'], ['please'], ['use'], ['mtdyuhki'], ['fdnrxaci'], ['ifblxjmc'], ['dyrgfwbm'], ['page']] k: 820 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 821 len: <class 'list'> Data: ['erp', 'station', 'casting', 'working', 'erp', 'station', 'casting', 'working'] processed_text: ['erp', 'station', 'casting', 'working', 'erp', 'station', 'casting', 'working'] list_processed_text: [['erp'], ['station'], ['casting'], ['working'], ['erp'], ['station'], ['casting'], ['working']] k: 822 len: <class 'list'> Data: ['dalmdwppi', 'pc', 'casting', 'working', 'dalmdwppi', 'pc', 'casting', 'working'] processed_text: ['dalmdwppi', 'pc', 'casting', 'working', 'dalmdwppi', 'pc', 'casting', 'working'] list_processed_text: [['dalmdwppi'], ['pc'], ['casting'], ['working'], ['dalmdwppi'], ['pc'], ['casting'], ['working']] k: 823 len: <class 'list'> Data: ['boot', 'boot'] processed_text: ['boot', 'boot'] list_processed_text: [['boot'], ['boot']] k: 824 len: <class 'list'> Data: ['outlook', 'work', 'last', 'fourth', 'week', 'problem', 'start', 'outlook', 'outlook', 'opening', 'open', 'time', 'fixed', 'service', 'technician', 'help', 'always', 'one', 'week', 'appeares', 'please', 'help', 'fix', 'phone', 'number', 'home', 'tomorrow', 'afternoon'] processed_text: ['outlook', 'work', 'last', 'fourth', 'week', 'problem', 'start', 'outlook', 'outlook', 'opening', 'open', 'time', 'fixed', 'service', 'technician', 'help', 'always', 'one', 'week', 'appeares', 'please', 'help', 'fix', 'phone', 'number', 'home', 'tomorrow', 'afternoon'] list_processed_text: [['outlook'], ['work'], ['last'], ['fourth'], ['week'], ['problem'], ['start'], ['outlook'], ['outlook'], ['opening'], ['open'], ['time'], ['fixed'], ['service'], ['technician'], ['help'], ['always'], ['one'], ['week'], ['appeares'], ['please'], ['help'], ['fix'], ['phone'], ['number'], ['home'], ['tomorrow'], ['afternoon']] k: 825 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lock', 'erp', 'sid', 'account', 'lock'] processed_text: ['erp', 'sid', 'account', 'lock', 'erp', 'sid', 'account', 'lock'] list_processed_text: [['erp'], ['sid'], ['account'], ['lock'], ['erp'], ['sid'], ['account'], ['lock']] k: 826 len: <class 'list'> Data: ['able', 'get', 'delivery', 'create', 'mm', 'believe', 'apo', 'synch', 'cif', 'programdnty', 'need', 'run', 'sto', 'created', 'inventory', 'received', 'afternoon', 'next', 'bop', 'job', 'scheduled', 'pm', 'sto', 'need', 'ship'] processed_text: ['able', 'get', 'delivery', 'create', 'mm', 'believe', 'apo', 'synch', 'cif', 'programdnty', 'need', 'run', 'sto', 'created', 'inventory', 'received', 'afternoon', 'next', 'bop', 'job', 'scheduled', 'pm', 'sto', 'need', 'ship'] list_processed_text: [['able'], ['get'], ['delivery'], ['create'], ['mm'], ['believe'], ['apo'], ['synch'], ['cif'], ['programdnty'], ['need'], ['run'], ['sto'], ['created'], ['inventory'], ['received'], ['afternoon'], ['next'], ['bop'], ['job'], ['scheduled'], ['pm'], ['sto'], ['need'], ['ship']] k: 827 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 828 len: <class 'list'> Data: ['quoting', 'engine', 'error', 'quoting', 'engine', 'error'] processed_text: ['quoting', 'engine', 'error', 'quoting', 'engine', 'error'] list_processed_text: [['quoting'], ['engine'], ['error'], ['quoting'], ['engine'], ['error']] k: 829 len: <class 'list'> Data: ['password', 'reset', 'reset', 'outlook', 'password', 'theecanse', 'wdleell', 'window', 'logon', 'password', 'different', 'since', 'log', 'company'] processed_text: ['password', 'reset', 'reset', 'outlook', 'password', 'theecanse', 'wdleell', 'window', 'logon', 'password', 'different', 'since', 'log', 'company'] list_processed_text: [['password'], ['reset'], ['reset'], ['outlook'], ['password'], ['theecanse'], ['wdleell'], ['window'], ['logon'], ['password'], ['different'], ['since'], ['log'], ['company']] k: 830 len: <class 'list'> Data: ['guest', 'internet', 'access', 'trouble', 'getting', 'internet', 'guest', 'access', 'person', 'skads', 'wdlmdwwck', 'technician', 'engineering', 'usa', 'plant'] processed_text: ['guest', 'internet', 'access', 'trouble', 'getting', 'internet', 'guest', 'access', 'person', 'skads', 'wdlmdwwck', 'technician', 'engineering', 'usa', 'plant'] list_processed_text: [['guest'], ['internet'], ['access'], ['trouble'], ['getting'], ['internet'], ['guest'], ['access'], ['person'], ['skads'], ['wdlmdwwck'], ['technician'], ['engineering'], ['usa'], ['plant']] k: 831 len: <class 'list'> Data: ['file', 'server', 'available', 'file', 'cannot', 'opened', 'hostname', 'detail', 'provided', 'trying', 'open', 'file', 'state', 'file', 'corrupt', 'cannot', 'opened', 'multiple', 'file', 'noticed', 'since', 'plant', 'become', 'unavailable', 'confirmation', 'unavailable', 'file', 'different', 'department', 'mail', 'notice', 'regarding', 'possible', 'server', 'change'] processed_text: ['file', 'server', 'available', 'file', 'cannot', 'opened', 'hostname', 'detail', 'provided', 'trying', 'open', 'file', 'state', 'file', 'corrupt', 'cannot', 'opened', 'multiple', 'file', 'noticed', 'since', 'plant', 'become', 'unavailable', 'confirmation', 'unavailable', 'file', 'different', 'department', 'mail', 'notice', 'regarding', 'possible', 'server', 'change'] list_processed_text: [['file'], ['server'], ['available'], ['file'], ['cannot'], ['opened'], ['hostname'], ['detail'], ['provided'], ['trying'], ['open'], ['file'], ['state'], ['file'], ['corrupt'], ['cannot'], ['opened'], ['multiple'], ['file'], ['noticed'], ['since'], ['plant'], ['become'], ['unavailable'], ['confirmation'], ['unavailable'], ['file'], ['different'], ['department'], ['mail'], ['notice'], ['regarding'], ['possible'], ['server'], ['change']] k: 832 len: <class 'list'> Data: ['modem', 'idg', 'area', 'usa', 'plant', 'contact', 'summary', 'modem', 'idg', 'area', 'usa', 'plant'] processed_text: ['modem', 'idg', 'area', 'usa', 'plant', 'contact', 'summary', 'modem', 'idg', 'area', 'usa', 'plant'] list_processed_text: [['modem'], ['idg'], ['area'], ['usa'], ['plant'], ['contact'], ['summary'], ['modem'], ['idg'], ['area'], ['usa'], ['plant']] k: 833 len: <class 'list'> Data: ['interface', 'serial', 'serial', 'connection', 'usa', 'plant', 'since', 'pm', 'et', 'interface', 'serial', 'serial', 'connection', 'usa', 'plant', 'since', 'pm', 'et'] processed_text: ['interface', 'serial', 'serial', 'connection', 'usa', 'plant', 'since', 'pm', 'et', 'interface', 'serial', 'serial', 'connection', 'usa', 'plant', 'since', 'pm', 'et'] list_processed_text: [['interface'], ['serial'], ['serial'], ['connection'], ['usa'], ['plant'], ['since'], ['pm'], ['et'], ['interface'], ['serial'], ['serial'], ['connection'], ['usa'], ['plant'], ['since'], ['pm'], ['et']] k: 834 len: <class 'list'> Data: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] processed_text: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] list_processed_text: [['ad'], ['account'], ['locked'], ['ad'], ['account'], ['locked']] k: 835 len: <class 'list'> Data: ['multiple', 'location', 'across', 'europe', 'went', 'et', 'please', 'find', 'attached', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['multiple', 'location', 'across', 'europe', 'went', 'et', 'please', 'find', 'attached', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['multiple'], ['location'], ['across'], ['europe'], ['went'], ['et'], ['please'], ['find'], ['attached'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 836 len: <class 'list'> Data: ['citrix', 'access', 'getting', 'certificate', 'error', 'trying', 'access', 'hfyujqti', 'jdcbiezxs', 'see', 'attached', 'hddwdw', 'lwdwdwdr'] processed_text: ['citrix', 'access', 'getting', 'certificate', 'error', 'trying', 'access', 'hfyujqti', 'jdcbiezxs', 'see', 'attached', 'hddwdw', 'lwdwdwdr'] list_processed_text: [['citrix'], ['access'], ['getting'], ['certificate'], ['error'], ['trying'], ['access'], ['hfyujqti'], ['jdcbiezxs'], ['see'], ['attached'], ['hddwdw'], ['lwdwdwdr']] k: 837 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['request']] k: 838 len: <class 'list'> Data: ['symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'deleted', 'cooky', 'symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'deleted', 'cooky'] processed_text: ['symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'deleted', 'cooky', 'symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'deleted', 'cooky'] list_processed_text: [['symantec'], ['pop'], ['query'], ['ran'], ['quick'], ['scan'], ['deleted'], ['cooky'], ['symantec'], ['pop'], ['query'], ['ran'], ['quick'], ['scan'], ['deleted'], ['cooky']] k: 839 len: <class 'list'> Data: ['access', 'http', 'bddjwwwdw', 'axcbfuqo', 'yiagubvh', 'axcbfuqo', 'yiagubvh', 'longer', 'access', 'http', 'bddjwwwdw', 'need', 'access', 'please', 'see', 'attached', 'email', 'gilles', 'good', 'morning', 'long', 'time', 'contacted', 'team', 'india', 'week', 'work', 'team', 'using', 'new', 'equipment', 'need', 'help', 'anymore', 'able', 'connected', 'application', 'able', 'make', 'consultation', 'received', 'following', 'message', 'help', 'connection', 'working', 'also', 'competitive', 'databse', 'still', 'working', 'well'] processed_text: ['access', 'http', 'bddjwwwdw', 'axcbfuqo', 'yiagubvh', 'axcbfuqo', 'yiagubvh', 'longer', 'access', 'http', 'bddjwwwdw', 'need', 'access', 'please', 'see', 'attached', 'email', 'gilles', 'good', 'morning', 'long', 'time', 'contacted', 'team', 'india', 'week', 'work', 'team', 'using', 'new', 'equipment', 'need', 'help', 'anymore', 'able', 'connected', 'application', 'able', 'make', 'consultation', 'received', 'following', 'message', 'help', 'connection', 'working', 'also', 'competitive', 'databse', 'still', 'working', 'well'] list_processed_text: [['access'], ['http'], ['bddjwwwdw'], ['axcbfuqo'], ['yiagubvh'], ['axcbfuqo'], ['yiagubvh'], ['longer'], ['access'], ['http'], ['bddjwwwdw'], ['need'], ['access'], ['please'], ['see'], ['attached'], ['email'], ['gilles'], ['good'], ['morning'], ['long'], ['time'], ['contacted'], ['team'], ['india'], ['week'], ['work'], ['team'], ['using'], ['new'], ['equipment'], ['need'], ['help'], ['anymore'], ['able'], ['connected'], ['application'], ['able'], ['make'], ['consultation'], ['received'], ['following'], ['message'], ['help'], ['connection'], ['working'], ['also'], ['competitive'], ['databse'], ['still'], ['working'], ['well']] k: 840 len: <class 'list'> Data: ['unable', 'connect', 'outlook', 'unable', 'connect', 'outlook'] processed_text: ['unable', 'connect', 'outlook', 'unable', 'connect', 'outlook'] list_processed_text: [['unable'], ['connect'], ['outlook'], ['unable'], ['connect'], ['outlook']] k: 841 len: <class 'list'> Data: ['error', 'customization', 'engineering', 'tool', 'erp', 'plam', 'company', 'tool', 'hi', 'team', 'need', 'help', 'two', 'error', 'customization', 'engineering', 'tool', 'two', 'error', 'attachment', 'ticket', 'erro', 'computer', 'lpawty', 'diwhdd', 'jwddkwor', 'lpawty', 'gsotqxfi', 'lidunfjg', 'doubt', 'please', 'contatc'] processed_text: ['error', 'customization', 'engineering', 'tool', 'erp', 'plam', 'company', 'tool', 'hi', 'team', 'need', 'help', 'two', 'error', 'customization', 'engineering', 'tool', 'two', 'error', 'attachment', 'ticket', 'erro', 'computer', 'lpawty', 'diwhdd', 'jwddkwor', 'lpawty', 'gsotqxfi', 'lidunfjg', 'doubt', 'please', 'contatc'] list_processed_text: [['error'], ['customization'], ['engineering'], ['tool'], ['erp'], ['plam'], ['company'], ['tool'], ['hi'], ['team'], ['need'], ['help'], ['two'], ['error'], ['customization'], ['engineering'], ['tool'], ['two'], ['error'], ['attachment'], ['ticket'], ['erro'], ['computer'], ['lpawty'], ['diwhdd'], ['jwddkwor'], ['lpawty'], ['gsotqxfi'], ['lidunfjg'], ['doubt'], ['please'], ['contatc']] k: 842 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 843 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'company', 'owned', 'summary', 'need', 'phone', 'connect', 'outlook'] processed_text: ['mobile', 'device', 'activation', 'company', 'owned', 'summary', 'need', 'phone', 'connect', 'outlook'] list_processed_text: [['mobile'], ['device'], ['activation'], ['company'], ['owned'], ['summary'], ['need'], ['phone'], ['connect'], ['outlook']] k: 844 len: <class 'list'> Data: ['outlook', 'outage', 'hello', 'outlook', 'seem', 'connect', 'laptop', 'remotely', 'please', 'advise', 'sent', 'iphone', 'dxwuovgs', 'lmuxizht', 'sr', 'sale', 'engineer'] processed_text: ['outlook', 'outage', 'hello', 'outlook', 'seem', 'connect', 'laptop', 'remotely', 'please', 'advise', 'sent', 'iphone', 'dxwuovgs', 'lmuxizht', 'sr', 'sale', 'engineer'] list_processed_text: [['outlook'], ['outage'], ['hello'], ['outlook'], ['seem'], ['connect'], ['laptop'], ['remotely'], ['please'], ['advise'], ['sent'], ['iphone'], ['dxwuovgs'], ['lmuxizht'], ['sr'], ['sale'], ['engineer']] k: 845 len: <class 'list'> Data: ['urgent', 'please', 'create', 'tax', 'code', 'ccyks', 'please', 'create', 'tax', 'code', 'ccyks', 'really', 'urgent', 'post', 'vat', 'inwarehouse', 'tool', 'end', 'week', 'background', 'export', 'good', 'location', 'germany', 'plant', 'plant', 'delivery', 'sto', 'vat', 'inwarehouse', 'tool', 'posted', 'finance'] processed_text: ['urgent', 'please', 'create', 'tax', 'code', 'ccyks', 'please', 'create', 'tax', 'code', 'ccyks', 'really', 'urgent', 'post', 'vat', 'inwarehouse', 'tool', 'end', 'week', 'background', 'export', 'good', 'location', 'germany', 'plant', 'plant', 'delivery', 'sto', 'vat', 'inwarehouse', 'tool', 'posted', 'finance'] list_processed_text: [['urgent'], ['please'], ['create'], ['tax'], ['code'], ['ccyks'], ['please'], ['create'], ['tax'], ['code'], ['ccyks'], ['really'], ['urgent'], ['post'], ['vat'], ['inwarehouse'], ['tool'], ['end'], ['week'], ['background'], ['export'], ['good'], ['location'], ['germany'], ['plant'], ['plant'], ['delivery'], ['sto'], ['vat'], ['inwarehouse'], ['tool'], ['posted'], ['finance']] k: 846 len: <class 'list'> Data: ['crm', 'access', 'issue', 'hi', 'poland', 'cannot', 'log', 'crm', 'user', 'poland'] processed_text: ['crm', 'access', 'issue', 'hi', 'poland', 'cannot', 'log', 'crm', 'user', 'poland'] list_processed_text: [['crm'], ['access'], ['issue'], ['hi'], ['poland'], ['cannot'], ['log'], ['crm'], ['user'], ['poland']] k: 847 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 848 len: <class 'list'> Data: ['email', 'license', 'check', 'email', 'angen', 'license', 'production', 'lead', 'dwwkd', 'wdjwd', 'usa', 'wdnwk', 'wdwmd', 'wdkfww', 'usa', 'usa', 'wdkwdwd', 'whwdiuw', 'wdnwwl', 'kwfwdw'] processed_text: ['email', 'license', 'check', 'email', 'angen', 'license', 'production', 'lead', 'dwwkd', 'wdjwd', 'usa', 'wdnwk', 'wdwmd', 'wdkfww', 'usa', 'usa', 'wdkwdwd', 'whwdiuw', 'wdnwwl', 'kwfwdw'] list_processed_text: [['email'], ['license'], ['check'], ['email'], ['angen'], ['license'], ['production'], ['lead'], ['dwwkd'], ['wdjwd'], ['usa'], ['wdnwk'], ['wdwmd'], ['wdkfww'], ['usa'], ['usa'], ['wdkwdwd'], ['whwdiuw'], ['wdnwwl'], ['kwfwdw']] k: 849 len: <class 'list'> Data: ['sign', 'crm', 'single', 'sign', 'portal', 'hub', 'sign', 'crm', 'single', 'sign', 'portal', 'hub', 'state', 'password', 'correct', 'password', 'use', 'access', 'point', 'company'] processed_text: ['sign', 'crm', 'single', 'sign', 'portal', 'hub', 'sign', 'crm', 'single', 'sign', 'portal', 'hub', 'state', 'password', 'correct', 'password', 'use', 'access', 'point', 'company'] list_processed_text: [['sign'], ['crm'], ['single'], ['sign'], ['portal'], ['hub'], ['sign'], ['crm'], ['single'], ['sign'], ['portal'], ['hub'], ['state'], ['password'], ['correct'], ['password'], ['use'], ['access'], ['point'], ['company']] k: 850 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 851 len: <class 'list'> Data: ['calibration', 'system', 'printer', 'printer', 'dymo', 'labelwriter', 'turbo', 'working', 'print', 'calibration', 'label', 'gage'] processed_text: ['calibration', 'system', 'printer', 'printer', 'dymo', 'labelwriter', 'turbo', 'working', 'print', 'calibration', 'label', 'gage'] list_processed_text: [['calibration'], ['system'], ['printer'], ['printer'], ['dymo'], ['labelwriter'], ['turbo'], ['working'], ['print'], ['calibration'], ['label'], ['gage']] k: 852 len: <class 'list'> Data: ['unable', 'change', 'password', 'unable', 'change', 'password'] processed_text: ['unable', 'change', 'password', 'unable', 'change', 'password'] list_processed_text: [['unable'], ['change'], ['password'], ['unable'], ['change'], ['password']] k: 853 len: <class 'list'> Data: ['able', 'login', 'sso', 'one', 'team', 'never', 'worked', 'able', 'login', 'sso', 'one', 'team', 'never', 'worked', 'refer', 'ticket', 'ticket'] processed_text: ['able', 'login', 'sso', 'one', 'team', 'never', 'worked', 'able', 'login', 'sso', 'one', 'team', 'never', 'worked', 'refer', 'ticket', 'ticket'] list_processed_text: [['able'], ['login'], ['sso'], ['one'], ['team'], ['never'], ['worked'], ['able'], ['login'], ['sso'], ['one'], ['team'], ['never'], ['worked'], ['refer'], ['ticket'], ['ticket']] k: 854 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 855 len: <class 'list'> Data: ['pc', 'rqxw', 'setup', 'remote', 'company', 'use', 'cannot', 'logged', 'appears', 'domain', 'membership', 'broken', 'pc', 'rqxw', 'setup', 'remote', 'company', 'use', 'cannot', 'logged', 'appears', 'domain', 'membership', 'broken'] processed_text: ['pc', 'rqxw', 'setup', 'remote', 'company', 'use', 'cannot', 'logged', 'appears', 'domain', 'membership', 'broken', 'pc', 'rqxw', 'setup', 'remote', 'company', 'use', 'cannot', 'logged', 'appears', 'domain', 'membership', 'broken'] list_processed_text: [['pc'], ['rqxw'], ['setup'], ['remote'], ['company'], ['use'], ['cannot'], ['logged'], ['appears'], ['domain'], ['membership'], ['broken'], ['pc'], ['rqxw'], ['setup'], ['remote'], ['company'], ['use'], ['cannot'], ['logged'], ['appears'], ['domain'], ['membership'], ['broken']] k: 856 len: <class 'list'> Data: ['bdwdwarbara', 'need', 'permission', 'save', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation', 'bdwdwarbara', 'need', 'permission', 'save', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation'] processed_text: ['bdwdwarbara', 'need', 'permission', 'save', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation', 'bdwdwarbara', 'need', 'permission', 'save', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation'] list_processed_text: [['bdwdwarbara'], ['need'], ['permission'], ['save'], ['folder'], ['srvlavstorage'], ['toolroom'], ['tooling'], ['documentation'], ['bdwdwarbara'], ['need'], ['permission'], ['save'], ['folder'], ['srvlavstorage'], ['toolroom'], ['tooling'], ['documentation']] k: 857 len: <class 'list'> Data: ['need', 'access', 'server', 'hostname', 'drafting', 'itar', 'user', 'wdwddw', 'wwdyuan', 'yqddquanw', 'read', 'access', 'name', 'employee', 'need', 'access', 'wdwddw', 'wwdyuan', 'yqddquanw', 'employee', 'number', 'file', 'located', 'operation', 'drive', 'drive', 'sub', 'file', 'drafting', 'sub', 'file', 'itar', 'set', 'guy', 'laid'] processed_text: ['need', 'access', 'server', 'hostname', 'drafting', 'itar', 'user', 'wdwddw', 'wwdyuan', 'yqddquanw', 'read', 'access', 'name', 'employee', 'need', 'access', 'wdwddw', 'wwdyuan', 'yqddquanw', 'employee', 'number', 'file', 'located', 'operation', 'drive', 'drive', 'sub', 'file', 'drafting', 'sub', 'file', 'itar', 'set', 'guy', 'laid'] list_processed_text: [['need'], ['access'], ['server'], ['hostname'], ['drafting'], ['itar'], ['user'], ['wdwddw'], ['wwdyuan'], ['yqddquanw'], ['read'], ['access'], ['name'], ['employee'], ['need'], ['access'], ['wdwddw'], ['wwdyuan'], ['yqddquanw'], ['employee'], ['number'], ['file'], ['located'], ['operation'], ['drive'], ['drive'], ['sub'], ['file'], ['drafting'], ['sub'], ['file'], ['itar'], ['set'], ['guy'], ['laid']] k: 858 len: <class 'list'> Data: ['need', 'access', 'es', 'need', 'access', 'es'] processed_text: ['need', 'access', 'es', 'need', 'access', 'es'] list_processed_text: [['need'], ['access'], ['es'], ['need'], ['access'], ['es']] k: 859 len: <class 'list'> Data: ['engineering', 'tool', 'installation', 'engineering', 'tool', 'installation'] processed_text: ['engineering', 'tool', 'installation', 'engineering', 'tool', 'installation'] list_processed_text: [['engineering'], ['tool'], ['installation'], ['engineering'], ['tool'], ['installation']] k: 860 len: <class 'list'> Data: ['eu', 'tool', 'plant', 'plant', 'working', 'slowly', 'please', 'help', 'immediately', 'thanks', 'eu', 'tool', 'plant', 'plant', 'working', 'slowly', 'please', 'help', 'immediately'] processed_text: ['eu', 'tool', 'plant', 'plant', 'working', 'slowly', 'please', 'help', 'immediately', 'thanks', 'eu', 'tool', 'plant', 'plant', 'working', 'slowly', 'please', 'help', 'immediately'] list_processed_text: [['eu'], ['tool'], ['plant'], ['plant'], ['working'], ['slowly'], ['please'], ['help'], ['immediately'], ['thanks'], ['eu'], ['tool'], ['plant'], ['plant'], ['working'], ['slowly'], ['please'], ['help'], ['immediately']] k: 861 len: <class 'list'> Data: ['crm', 'issue', 'm', 'ouutlook', 'issue', 'crm', 'issue', 'm', 'outlook', 'issue'] processed_text: ['crm', 'issue', 'm', 'ouutlook', 'issue', 'crm', 'issue', 'm', 'outlook', 'issue'] list_processed_text: [['crm'], ['issue'], ['m'], ['ouutlook'], ['issue'], ['crm'], ['issue'], ['m'], ['outlook'], ['issue']] k: 862 len: <class 'list'> Data: ['user', 'need', 'help', 'login', 'mii', 'user', 'need', 'help', 'login', 'mii'] processed_text: ['user', 'need', 'help', 'login', 'mii', 'user', 'need', 'help', 'login', 'mii'] list_processed_text: [['user'], ['need'], ['help'], ['login'], ['mii'], ['user'], ['need'], ['help'], ['login'], ['mii']] k: 863 len: <class 'list'> Data: ['eu', 'tool', 'pdv', 'batch', 'management', 'work', 'working', 'system', 'almost', 'impossible', 'processing', 'order', 'longer', 'possible', 'moment', 'da', 'arbeiten', 'mit', 'den', 'systemen', 'ist', 'fast', 'nicht', 'glich', 'da', 'abarbeiten', 'von', 'auftr', 'gen', 'ist', 'zur', 'zeit', 'nicht', 'mehr', 'glich'] processed_text: ['eu', 'tool', 'pdv', 'batch', 'management', 'work', 'working', 'system', 'almost', 'impossible', 'processing', 'order', 'longer', 'possible', 'moment', 'da', 'arbeiten', 'mit', 'den', 'systemen', 'ist', 'fast', 'nicht', 'glich', 'da', 'abarbeiten', 'von', 'auftr', 'gen', 'ist', 'zur', 'zeit', 'nicht', 'mehr', 'glich'] list_processed_text: [['eu'], ['tool'], ['pdv'], ['batch'], ['management'], ['work'], ['working'], ['system'], ['almost'], ['impossible'], ['processing'], ['order'], ['longer'], ['possible'], ['moment'], ['da'], ['arbeiten'], ['mit'], ['den'], ['systemen'], ['ist'], ['fast'], ['nicht'], ['glich'], ['da'], ['abarbeiten'], ['von'], ['auftr'], ['gen'], ['ist'], ['zur'], ['zeit'], ['nicht'], ['mehr'], ['glich']] k: 864 len: <class 'list'> Data: ['xvwchsdg', 'pladjmxt', 'employee', 'termination', 'pn', 'assume', 'mr', 'aurwddwacher', 'leave', 'company', 'retire', 'end', 'october,', 'retire', 'process', 'closing', 'account', 'ticketing', 'tool', 'template', 'employee', 'status', 'termination,', 'so-called', 'delegation', 'specified', 'special', 'instuctrion', 'person', 'post', 'office', 'box', 'delegated', 'access', 'certain', 'period', 'time,', 'submission', 'usually', 'filled', 'superior', 'responsible', 'hr', 'department', 'discussed'] processed_text: ['xvwchsdg', 'pladjmxt', 'employee', 'termination', 'pn', 'assume', 'mr', 'aurwddwacher', 'leave', 'company', 'retire', 'end', 'october,', 'retire', 'process', 'closing', 'account', 'ticketing', 'tool', 'template', 'employee', 'status', 'termination,', 'so-called', 'delegation', 'specified', 'special', 'instuctrion', 'person', 'post', 'office', 'box', 'delegated', 'access', 'certain', 'period', 'time,', 'submission', 'usually', 'filled', 'superior', 'responsible', 'hr', 'department', 'discussed'] list_processed_text: [['xvwchsdg'], ['pladjmxt'], ['employee'], ['termination'], ['pn'], ['assume'], ['mr'], ['aurwddwacher'], ['leave'], ['company'], ['retire'], ['end'], ['october,'], ['retire'], ['process'], ['closing'], ['account'], ['ticketing'], ['tool'], ['template'], ['employee'], ['status'], ['termination,'], ['so-called'], ['delegation'], ['specified'], ['special'], ['instuctrion'], ['person'], ['post'], ['office'], ['box'], ['delegated'], ['access'], ['certain'], ['period'], ['time,'], ['submission'], ['usually'], ['filled'], ['superior'], ['responsible'], ['hr'], ['department'], ['discussed']] k: 865 len: <class 'list'> Data: ['please', 'reset', 'sid', 'password', 'userid', 'waldjrrm'] processed_text: ['please', 'reset', 'sid', 'password', 'userid', 'waldjrrm'] list_processed_text: [['please'], ['reset'], ['sid'], ['password'], ['userid'], ['waldjrrm']] k: 866 len: <class 'list'> Data: ['user', 'need', 'help', 'login', 'collaboration', 'platform', 'site', 'user', 'need', 'help', 'login', 'collaboration', 'platform', 'site', 'provided', 'user', 'email', 'id', 'password', 'verifying', 'user', 'detail', 'advised', 'user', 'try', 'login', 'collaboration', 'platform', 'user', 'confirmed', 'able', 'login', 'collaboration', 'platform', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'login', 'collaboration', 'platform', 'site', 'user', 'need', 'help', 'login', 'collaboration', 'platform', 'site', 'provided', 'user', 'email', 'id', 'password', 'verifying', 'user', 'detail', 'advised', 'user', 'try', 'login', 'collaboration', 'platform', 'user', 'confirmed', 'able', 'login', 'collaboration', 'platform', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['login'], ['collaboration'], ['platform'], ['site'], ['user'], ['need'], ['help'], ['login'], ['collaboration'], ['platform'], ['site'], ['provided'], ['user'], ['email'], ['id'], ['password'], ['verifying'], ['user'], ['detail'], ['advised'], ['user'], ['try'], ['login'], ['collaboration'], ['platform'], ['user'], ['confirmed'], ['able'], ['login'], ['collaboration'], ['platform'], ['issue'], ['resolved']] k: 867 len: <class 'list'> Data: ['account', 'lockout', 'account', 'lockout'] processed_text: ['account', 'lockout', 'account', 'lockout'] list_processed_text: [['account'], ['lockout'], ['account'], ['lockout']] k: 868 len: <class 'list'> Data: ['outlook', 'table', 'view', 'incorrect', 'outlook', 'table', 'view', 'incorrect'] processed_text: ['outlook', 'table', 'view', 'incorrect', 'outlook', 'table', 'view', 'incorrect'] list_processed_text: [['outlook'], ['table'], ['view'], ['incorrect'], ['outlook'], ['table'], ['view'], ['incorrect']] k: 869 len: <class 'list'> Data: ['computer', 'problem', 'dear', 'able', 'go', 'internet', 'since', 'morning', 'itbof', 'germany', 'able', 'log', 'tried', 'much', 'pasword', 'locked', 'message', 'password', 'expired', 'must', 'changed', 'please', 'forward', 'new', 'password'] processed_text: ['computer', 'problem', 'dear', 'able', 'go', 'internet', 'since', 'morning', 'itbof', 'germany', 'able', 'log', 'tried', 'much', 'pasword', 'locked', 'message', 'password', 'expired', 'must', 'changed', 'please', 'forward', 'new', 'password'] list_processed_text: [['computer'], ['problem'], ['dear'], ['able'], ['go'], ['internet'], ['since'], ['morning'], ['itbof'], ['germany'], ['able'], ['log'], ['tried'], ['much'], ['pasword'], ['locked'], ['message'], ['password'], ['expired'], ['must'], ['changed'], ['please'], ['forward'], ['new'], ['password']] k: 870 len: <class 'list'> Data: ['design', 'pane', 'showing', 'analysis', 'm', 'excel', 'hello', 'use', 'analysis', 'm', 'excel', 'see', 'design', 'pane', 'even', 'option', 'turned', 'refer', 'screenshot', 'able', 'see', 'design', 'pane', 'earlier', 'without', 'problem', 'major', 'change', 'pc', 'recently', 'upgraded', 'office', 'suite', 'please', 'help', 'bring', 'design', 'pane', 'back'] processed_text: ['design', 'pane', 'showing', 'analysis', 'm', 'excel', 'hello', 'use', 'analysis', 'm', 'excel', 'see', 'design', 'pane', 'even', 'option', 'turned', 'refer', 'screenshot', 'able', 'see', 'design', 'pane', 'earlier', 'without', 'problem', 'major', 'change', 'pc', 'recently', 'upgraded', 'office', 'suite', 'please', 'help', 'bring', 'design', 'pane', 'back'] list_processed_text: [['design'], ['pane'], ['showing'], ['analysis'], ['m'], ['excel'], ['hello'], ['use'], ['analysis'], ['m'], ['excel'], ['see'], ['design'], ['pane'], ['even'], ['option'], ['turned'], ['refer'], ['screenshot'], ['able'], ['see'], ['design'], ['pane'], ['earlier'], ['without'], ['problem'], ['major'], ['change'], ['pc'], ['recently'], ['upgraded'], ['office'], ['suite'], ['please'], ['help'], ['bring'], ['design'], ['pane'], ['back']] k: 871 len: <class 'list'> Data: ['browser', 'issue', 'flash', 'player', 'addins', 'issue', 'browser', 'issue', 'flash', 'player', 'addins', 'issue'] processed_text: ['browser', 'issue', 'flash', 'player', 'addins', 'issue', 'browser', 'issue', 'flash', 'player', 'addins', 'issue'] list_processed_text: [['browser'], ['issue'], ['flash'], ['player'], ['addins'], ['issue'], ['browser'], ['issue'], ['flash'], ['player'], ['addins'], ['issue']] k: 872 len: <class 'list'> Data: ['able', 'pgi', 'del', 'customer', 'vale', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'able', 'pgi', 'delivery', 'customer', 'vale', 'td', 'order', 'itens', 'piece', 'piece', 'piece', 'piece', 'urgente', 'uacyltoe', 'hxgaycze', 'customer', 'error', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'diagnosis', 'entered', 'multiple', 'co', 'account', 'assignment', 'object', 'assigned', 'different', 'profit', 'center', 'document', 'item', 'however', 'co', 'account', 'assignment', 'object', 'profit', 'center', 'assignment', 'must', 'assigned', 'profit', 'center', 'procedure', 'message', 'error', 'message', 'check', 'change', 'co', 'account', 'assignment', 'object', 'object', 'profit', 'center', 'assignment', 'assigned', 'profit', 'center', 'customizing', 'change', 'message', 'error', 'message', 'warning', 'message', 'notification', 'deactivate', 'completely', 'see', 'implementation', 'guide', 'img', 'step', 'controlling', 'general', 'change', 'message', 'control', 'message', 'class', 'bk', 'message'] processed_text: ['able', 'pgi', 'del', 'customer', 'vale', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'able', 'pgi', 'delivery', 'customer', 'vale', 'td', 'order', 'itens', 'piece', 'piece', 'piece', 'piece', 'urgente', 'uacyltoe', 'hxgaycze', 'customer', 'error', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'diagnosis', 'entered', 'multiple', 'co', 'account', 'assignment', 'object', 'assigned', 'different', 'profit', 'center', 'document', 'item', 'however', 'co', 'account', 'assignment', 'object', 'profit', 'center', 'assignment', 'must', 'assigned', 'profit', 'center', 'procedure', 'message', 'error', 'message', 'check', 'change', 'co', 'account', 'assignment', 'object', 'object', 'profit', 'center', 'assignment', 'assigned', 'profit', 'center', 'customizing', 'change', 'message', 'error', 'message', 'warning', 'message', 'notification', 'deactivate', 'completely', 'see', 'implementation', 'guide', 'img', 'step', 'controlling', 'general', 'change', 'message', 'control', 'message', 'class', 'bk', 'message'] list_processed_text: [['able'], ['pgi'], ['del'], ['customer'], ['vale'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['able'], ['pgi'], ['delivery'], ['customer'], ['vale'], ['td'], ['order'], ['itens'], ['piece'], ['piece'], ['piece'], ['piece'], ['urgente'], ['uacyltoe'], ['hxgaycze'], ['customer'], ['error'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['message'], ['bk'], ['diagnosis'], ['entered'], ['multiple'], ['co'], ['account'], ['assignment'], ['object'], ['assigned'], ['different'], ['profit'], ['center'], ['document'], ['item'], ['however'], ['co'], ['account'], ['assignment'], ['object'], ['profit'], ['center'], ['assignment'], ['must'], ['assigned'], ['profit'], ['center'], ['procedure'], ['message'], ['error'], ['message'], ['check'], ['change'], ['co'], ['account'], ['assignment'], ['object'], ['object'], ['profit'], ['center'], ['assignment'], ['assigned'], ['profit'], ['center'], ['customizing'], ['change'], ['message'], ['error'], ['message'], ['warning'], ['message'], ['notification'], ['deactivate'], ['completely'], ['see'], ['implementation'], ['guide'], ['img'], ['step'], ['controlling'], ['general'], ['change'], ['message'], ['control'], ['message'], ['class'], ['bk'], ['message']] k: 873 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 874 len: <class 'list'> Data: ['bex', 'analyzer', 'report', 'working', 'open', 'bex', 'analyzer', 'connect', 'sid', 'try', 'open', 'report', 'xhlg', 'pmm', 'atm', 'product', 'management', 'master', 'window', 'select', 'value', 'variable', 'appears', 'available', 'variant', 'data', 'provider', 'set', 'finance', 'click', 'ok', 'system', 'sits', 'nothing', 'eventually', 'get', 'microsoft', 'excel', 'responding', 'error', 'something', 'wrong', 'system', 'something', 'wrong', 'setting', 'need', 'pull', 'report', 'external', 'auditor', 'rather', 'urgent', 'get', 'fixed', 'quickly'] processed_text: ['bex', 'analyzer', 'report', 'working', 'open', 'bex', 'analyzer', 'connect', 'sid', 'try', 'open', 'report', 'xhlg', 'pmm', 'atm', 'product', 'management', 'master', 'window', 'select', 'value', 'variable', 'appears', 'available', 'variant', 'data', 'provider', 'set', 'finance', 'click', 'ok', 'system', 'sits', 'nothing', 'eventually', 'get', 'microsoft', 'excel', 'responding', 'error', 'something', 'wrong', 'system', 'something', 'wrong', 'setting', 'need', 'pull', 'report', 'external', 'auditor', 'rather', 'urgent', 'get', 'fixed', 'quickly'] list_processed_text: [['bex'], ['analyzer'], ['report'], ['working'], ['open'], ['bex'], ['analyzer'], ['connect'], ['sid'], ['try'], ['open'], ['report'], ['xhlg'], ['pmm'], ['atm'], ['product'], ['management'], ['master'], ['window'], ['select'], ['value'], ['variable'], ['appears'], ['available'], ['variant'], ['data'], ['provider'], ['set'], ['finance'], ['click'], ['ok'], ['system'], ['sits'], ['nothing'], ['eventually'], ['get'], ['microsoft'], ['excel'], ['responding'], ['error'], ['something'], ['wrong'], ['system'], ['something'], ['wrong'], ['setting'], ['need'], ['pull'], ['report'], ['external'], ['auditor'], ['rather'], ['urgent'], ['get'], ['fixed'], ['quickly']] k: 875 len: <class 'list'> Data: ['cannot', 'print', 'usa', 'printer', 'prtqx', 'longer', 'please', 'fix', 'cannot', 'print', 'usa', 'printer', 'prtqx', 'longer', 'please', 'fix'] processed_text: ['cannot', 'print', 'usa', 'printer', 'prtqx', 'longer', 'please', 'fix', 'cannot', 'print', 'usa', 'printer', 'prtqx', 'longer', 'please', 'fix'] list_processed_text: [['cannot'], ['print'], ['usa'], ['printer'], ['prtqx'], ['longer'], ['please'], ['fix'], ['cannot'], ['print'], ['usa'], ['printer'], ['prtqx'], ['longer'], ['please'], ['fix']] k: 876 len: <class 'list'> Data: ['unable', 'print', 'printer', 'qc', 'unable', 'print', 'printer', 'qc'] processed_text: ['unable', 'print', 'printer', 'qc', 'unable', 'print', 'printer', 'qc'] list_processed_text: [['unable'], ['print'], ['printer'], ['qc'], ['unable'], ['print'], ['printer'], ['qc']] k: 877 len: <class 'list'> Data: ['need', 'rckf', 'grind', 'added', 'microsoft', 'email', 'one', 'helped', 'sure', 'closed', 'received', 'help'] processed_text: ['need', 'rckf', 'grind', 'added', 'microsoft', 'email', 'one', 'helped', 'sure', 'closed', 'received', 'help'] list_processed_text: [['need'], ['rckf'], ['grind'], ['added'], ['microsoft'], ['email'], ['one'], ['helped'], ['sure'], ['closed'], ['received'], ['help']] k: 878 len: <class 'list'> Data: ['user', 'unable', 'connect', 'companysecure', 'office', 'user', 'unable', 'connect', 'companysecure', 'office', 'checked', 'network', 'connection', 'setting', 'enabled', 'network', 'connection', 'updated', 'network', 'driver', 'updated', 'bios', 'pc', 'restarted', 'pc', 'user', 'iformed', 'ina', 'meeting', 'call', 'tomorrow'] processed_text: ['user', 'unable', 'connect', 'companysecure', 'office', 'user', 'unable', 'connect', 'companysecure', 'office', 'checked', 'network', 'connection', 'setting', 'enabled', 'network', 'connection', 'updated', 'network', 'driver', 'updated', 'bios', 'pc', 'restarted', 'pc', 'user', 'iformed', 'ina', 'meeting', 'call', 'tomorrow'] list_processed_text: [['user'], ['unable'], ['connect'], ['companysecure'], ['office'], ['user'], ['unable'], ['connect'], ['companysecure'], ['office'], ['checked'], ['network'], ['connection'], ['setting'], ['enabled'], ['network'], ['connection'], ['updated'], ['network'], ['driver'], ['updated'], ['bios'], ['pc'], ['restarted'], ['pc'], ['user'], ['iformed'], ['ina'], ['meeting'], ['call'], ['tomorrow']] k: 879 len: <class 'list'> Data: ['barcode', 'word', 'label', 'printing', 'want', 'print', 'number', 'letter', 'label', 'printing', 'barcode', 'word', 'label', 'printing', 'font', 'cosid', 'possible', 'read', 'scan', 'gun', 'phone'] processed_text: ['barcode', 'word', 'label', 'printing', 'want', 'print', 'number', 'letter', 'label', 'printing', 'barcode', 'word', 'label', 'printing', 'font', 'cosid', 'possible', 'read', 'scan', 'gun', 'phone'] list_processed_text: [['barcode'], ['word'], ['label'], ['printing'], ['want'], ['print'], ['number'], ['letter'], ['label'], ['printing'], ['barcode'], ['word'], ['label'], ['printing'], ['font'], ['cosid'], ['possible'], ['read'], ['scan'], ['gun'], ['phone']] k: 880 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 881 len: <class 'list'> Data: ['folder', 'access', 'required', 'dear', 'team', 'please', 'usa', 'read', 'write', 'access', 'following', 'two', 'folder', 'webrgers', 'hostname', 'department', 'personal', 'file', 'hostname', 'department', 'personal', 'hostname', 'department', 'pesonal', 'file', 'hostname', 'department', 'pesonal'] processed_text: ['folder', 'access', 'required', 'dear', 'team', 'please', 'usa', 'read', 'write', 'access', 'following', 'two', 'folder', 'webrgers', 'hostname', 'department', 'personal', 'file', 'hostname', 'department', 'personal', 'hostname', 'department', 'pesonal', 'file', 'hostname', 'department', 'pesonal'] list_processed_text: [['folder'], ['access'], ['required'], ['dear'], ['team'], ['please'], ['usa'], ['read'], ['write'], ['access'], ['following'], ['two'], ['folder'], ['webrgers'], ['hostname'], ['department'], ['personal'], ['file'], ['hostname'], ['department'], ['personal'], ['hostname'], ['department'], ['pesonal'], ['file'], ['hostname'], ['department'], ['pesonal']] k: 882 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 883 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 884 len: <class 'list'> Data: ['please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'login', 'network', 'drive', 'missing', 'please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'login', 'network', 'drive', 'missing'] processed_text: ['please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'login', 'network', 'drive', 'missing', 'please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'login', 'network', 'drive', 'missing'] list_processed_text: [['please'], ['set'], ['user'], ['gogtyektdgwo'], ['correctly'], ['login'], ['network'], ['drive'], ['missing'], ['please'], ['set'], ['user'], ['gogtyektdgwo'], ['correctly'], ['login'], ['network'], ['drive'], ['missing']] k: 885 len: <class 'list'> Data: ['called', 'get', 'touch', 'ecwtrjnq', 'jpecxuty', 'called', 'get', 'touch', 'ecwtrjnq', 'jpecxuty'] processed_text: ['called', 'get', 'touch', 'ecwtrjnq', 'jpecxuty', 'called', 'get', 'touch', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['called'], ['get'], ['touch'], ['ecwtrjnq'], ['jpecxuty'], ['called'], ['get'], ['touch'], ['ecwtrjnq'], ['jpecxuty']] k: 886 len: <class 'list'> Data: ['vip', 'account', 'unlock', 'vip', 'account', 'unlock'] processed_text: ['vip', 'account', 'unlock', 'vip', 'account', 'unlock'] list_processed_text: [['vip'], ['account'], ['unlock'], ['vip'], ['account'], ['unlock']] k: 887 len: <class 'list'> Data: ['support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr', 'support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr'] processed_text: ['support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr', 'support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr'] list_processed_text: [['support'], ['r'], ['roboworker'], ['sandstrahlen'], ['xwirzvda'], ['okhyipgr'], ['support'], ['r'], ['roboworker'], ['sandstrahlen'], ['xwirzvda'], ['okhyipgr']] k: 888 len: <class 'list'> Data: ['setup', 'new', 'w', 'lndypaqg', 'dhqwtcsr', 'setup', 'new', 'w', 'lndypaqg', 'dhqwtcsr'] processed_text: ['setup', 'new', 'w', 'lndypaqg', 'dhqwtcsr', 'setup', 'new', 'w', 'lndypaqg', 'dhqwtcsr'] list_processed_text: [['setup'], ['new'], ['w'], ['lndypaqg'], ['dhqwtcsr'], ['setup'], ['new'], ['w'], ['lndypaqg'], ['dhqwtcsr']] k: 889 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 890 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'admin', 'core', 'sw', 'et', 'circuit', 'outage', 'india', 'admin', 'core', 'sw', 'et'] processed_text: ['circuit', 'outage', 'india', 'admin', 'core', 'sw', 'et', 'circuit', 'outage', 'india', 'admin', 'core', 'sw', 'et'] list_processed_text: [['circuit'], ['outage'], ['india'], ['admin'], ['core'], ['sw'], ['et'], ['circuit'], ['outage'], ['india'], ['admin'], ['core'], ['sw'], ['et']] k: 891 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'ap', 'ind', 'telecom', 'vendor', 'dmvpn', 'rtr', 'since', 'et', 'site', 'telecom', 'vendor', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'company', 'ap', 'ind', 'telecom', 'vendor', 'dmvpn', 'rtr', 'since', 'et', 'site', 'telecom', 'vendor', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['company'], ['ap'], ['ind'], ['telecom'], ['vendor'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['site'], ['telecom'], ['vendor'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 892 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 893 len: <class 'list'> Data: ['telephone', 'meeting', 'room', 'telephone', 'number', 'germany', 'ringtone', 'work', 'someone', 'call', 'outside', 'phone', 'doesn’t', 'ring,', 'please', 'take', 'look,', 'thank'] processed_text: ['telephone', 'meeting', 'room', 'telephone', 'number', 'germany', 'ringtone', 'work', 'someone', 'call', 'outside', 'phone', 'doesn’t', 'ring,', 'please', 'take', 'look,', 'thank'] list_processed_text: [['telephone'], ['meeting'], ['room'], ['telephone'], ['number'], ['germany'], ['ringtone'], ['work'], ['someone'], ['call'], ['outside'], ['phone'], ['doesn’t'], ['ring,'], ['please'], ['take'], ['look,'], ['thank']] k: 894 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 895 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'pm', 'enter', 'user', 'id', 'user', 'issue', 'mathes', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'please', 'reset', 'password', 'required', 'please', 'unlock', 'id', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'pm', 'enter', 'user', 'id', 'user', 'issue', 'mathes', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'please', 'reset', 'password', 'required', 'please', 'unlock', 'id', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['pm'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['mathes'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['please'], ['reset'], ['password'], ['required'], ['please'], ['unlock'], ['id'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 896 len: <class 'list'> Data: ['erp', 'account', 'locked', 'dear', 'team', 'erp', 'account', 'got', 'locked', 'wrong', 'password', 'attempt', 'please', 'support', 'get', 'unlock'] processed_text: ['erp', 'account', 'locked', 'dear', 'team', 'erp', 'account', 'got', 'locked', 'wrong', 'password', 'attempt', 'please', 'support', 'get', 'unlock'] list_processed_text: [['erp'], ['account'], ['locked'], ['dear'], ['team'], ['erp'], ['account'], ['got'], ['locked'], ['wrong'], ['password'], ['attempt'], ['please'], ['support'], ['get'], ['unlock']] k: 897 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 898 len: <class 'list'> Data: ['erp', 'printing', 'production', 'order', 'printer', 'mp', 'replacement', 'production', 'order', 'printer', 'mp', 'replaced', 'remove', 'rerouting', 'mp', 'mp', 'erp', 'system', 'printer', 'replacement', 'need', 'power', 'network', 'connectivity', 'printer', 'installed', 'ready', 'ticketing', 'tool', 'ticket', 'opened', 'requirement', 'satisfied', 'yes', 'yes', 'replacing', 'erp', 'printer', 'name', 'g', 'hq', 'id', 'wy', 'mp', 'name', 'stay', 'ip', 'address', 'known', 'ip', 'stay', 'make', 'model', 'replacement', 'erp', 'printer', 'hp', 'laserjet', 'mf', 'erp', 'printer', 'currently', 'use', 'g', 'hq', 'id', 'wy', 'list', 'erp', 'system', 'printer', 'need', 'defined', 'erp', 'sid', 'sid', 'sid', 'sid', 'sid', 'sid', 'hrp', 'plm', 'etc', 'hrp', 'sid', 'plm', 'old', 'mp', 'currently', 'printed', 'printer', 'erp', 'g', 'inwarehouse', 'tool', 'delivery', 'note', 'etc', 'old', 'mp', 'location', 'install', 'country', 'city', 'building', 'floor', 'cubicle', 'old', 'mp', 'local', 'site', 'contact', 'name', 'xvwchsdg', 'pladjmxt', 'optional', 'printer', 'serial', 'number', 'printer', 'mac', 'address', 'serial', 'cnctft'] processed_text: ['erp', 'printing', 'production', 'order', 'printer', 'mp', 'replacement', 'production', 'order', 'printer', 'mp', 'replaced', 'remove', 'rerouting', 'mp', 'mp', 'erp', 'system', 'printer', 'replacement', 'need', 'power', 'network', 'connectivity', 'printer', 'installed', 'ready', 'ticketing', 'tool', 'ticket', 'opened', 'requirement', 'satisfied', 'yes', 'yes', 'replacing', 'erp', 'printer', 'name', 'g', 'hq', 'id', 'wy', 'mp', 'name', 'stay', 'ip', 'address', 'known', 'ip', 'stay', 'make', 'model', 'replacement', 'erp', 'printer', 'hp', 'laserjet', 'mf', 'erp', 'printer', 'currently', 'use', 'g', 'hq', 'id', 'wy', 'list', 'erp', 'system', 'printer', 'need', 'defined', 'erp', 'sid', 'sid', 'sid', 'sid', 'sid', 'sid', 'hrp', 'plm', 'etc', 'hrp', 'sid', 'plm', 'old', 'mp', 'currently', 'printed', 'printer', 'erp', 'g', 'inwarehouse', 'tool', 'delivery', 'note', 'etc', 'old', 'mp', 'location', 'install', 'country', 'city', 'building', 'floor', 'cubicle', 'old', 'mp', 'local', 'site', 'contact', 'name', 'xvwchsdg', 'pladjmxt', 'optional', 'printer', 'serial', 'number', 'printer', 'mac', 'address', 'serial', 'cnctft'] list_processed_text: [['erp'], ['printing'], ['production'], ['order'], ['printer'], ['mp'], ['replacement'], ['production'], ['order'], ['printer'], ['mp'], ['replaced'], ['remove'], ['rerouting'], ['mp'], ['mp'], ['erp'], ['system'], ['printer'], ['replacement'], ['need'], ['power'], ['network'], ['connectivity'], ['printer'], ['installed'], ['ready'], ['ticketing'], ['tool'], ['ticket'], ['opened'], ['requirement'], ['satisfied'], ['yes'], ['yes'], ['replacing'], ['erp'], ['printer'], ['name'], ['g'], ['hq'], ['id'], ['wy'], ['mp'], ['name'], ['stay'], ['ip'], ['address'], ['known'], ['ip'], ['stay'], ['make'], ['model'], ['replacement'], ['erp'], ['printer'], ['hp'], ['laserjet'], ['mf'], ['erp'], ['printer'], ['currently'], ['use'], ['g'], ['hq'], ['id'], ['wy'], ['list'], ['erp'], ['system'], ['printer'], ['need'], ['defined'], ['erp'], ['sid'], ['sid'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['plm'], ['etc'], ['hrp'], ['sid'], ['plm'], ['old'], ['mp'], ['currently'], ['printed'], ['printer'], ['erp'], ['g'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['etc'], ['old'], ['mp'], ['location'], ['install'], ['country'], ['city'], ['building'], ['floor'], ['cubicle'], ['old'], ['mp'], ['local'], ['site'], ['contact'], ['name'], ['xvwchsdg'], ['pladjmxt'], ['optional'], ['printer'], ['serial'], ['number'], ['printer'], ['mac'], ['address'], ['serial'], ['cnctft']] k: 899 len: <class 'list'> Data: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] processed_text: ['hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'] list_processed_text: [['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate'], ['hostname'], ['currently'], ['experiencing'], ['high'], ['cpu'], ['utilization'], ['please'], ['investigate']] k: 900 len: <class 'list'> Data: ['hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query', 'hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query'] processed_text: ['hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query', 'hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query'] list_processed_text: [['hedjdbwlmut'], ['nwwiebler'], ['called'], ['regarding'], ['folder'], ['access'], ['query'], ['hedjdbwlmut'], ['nwwiebler'], ['called'], ['regarding'], ['folder'], ['access'], ['query']] k: 901 len: <class 'list'> Data: ['folder', 'read', 'write', 'access', 'needed', 'dear', 'colleague', 'please', 'usa', 'access', 'path', 'read', 'write', 'access', 'corpbusinessdev', 'monthly', 'financial', 'review'] processed_text: ['folder', 'read', 'write', 'access', 'needed', 'dear', 'colleague', 'please', 'usa', 'access', 'path', 'read', 'write', 'access', 'corpbusinessdev', 'monthly', 'financial', 'review'] list_processed_text: [['folder'], ['read'], ['write'], ['access'], ['needed'], ['dear'], ['colleague'], ['please'], ['usa'], ['access'], ['path'], ['read'], ['write'], ['access'], ['corpbusinessdev'], ['monthly'], ['financial'], ['review']] k: 902 len: <class 'list'> Data: ['activation', 'outlook', 'email', 'access', 'iphone', 'device', 'awddmwdol', 'mwddwansuke', 'hi', 'please', 'usa', 'email', 'access', 'new', 'iphone', 'device', 'indirect', 'channel', 'manager', 'information', 'follow', 'email', 'manager', 'name', 'sqqqd', 'zlkmlwdwdade', 'nidqknwjktin', 'dewkiodshpande', 'device', 'company', 'owned', 'yes', 'replacement', 'old', 'device', 'yes', 'existing', 'old', 'samsung', 'phone', 'faulty'] processed_text: ['activation', 'outlook', 'email', 'access', 'iphone', 'device', 'awddmwdol', 'mwddwansuke', 'hi', 'please', 'usa', 'email', 'access', 'new', 'iphone', 'device', 'indirect', 'channel', 'manager', 'information', 'follow', 'email', 'manager', 'name', 'sqqqd', 'zlkmlwdwdade', 'nidqknwjktin', 'dewkiodshpande', 'device', 'company', 'owned', 'yes', 'replacement', 'old', 'device', 'yes', 'existing', 'old', 'samsung', 'phone', 'faulty'] list_processed_text: [['activation'], ['outlook'], ['email'], ['access'], ['iphone'], ['device'], ['awddmwdol'], ['mwddwansuke'], ['hi'], ['please'], ['usa'], ['email'], ['access'], ['new'], ['iphone'], ['device'], ['indirect'], ['channel'], ['manager'], ['information'], ['follow'], ['email'], ['manager'], ['name'], ['sqqqd'], ['zlkmlwdwdade'], ['nidqknwjktin'], ['dewkiodshpande'], ['device'], ['company'], ['owned'], ['yes'], ['replacement'], ['old'], ['device'], ['yes'], ['existing'], ['old'], ['samsung'], ['phone'], ['faulty']] k: 903 len: <class 'list'> Data: ['access', 'issue', 'es', 'hello', 'one', 'temperory', 'workman', 'nxcfastp', 'xnwtyebg', 'whose', 'user', 'id', 'vvandwkjis', 'able', 'login', 'es', 'user', 'id', 'locked', 'kiosk', 'user', 'please', 'set', 'password', 'confirm'] processed_text: ['access', 'issue', 'es', 'hello', 'one', 'temperory', 'workman', 'nxcfastp', 'xnwtyebg', 'whose', 'user', 'id', 'vvandwkjis', 'able', 'login', 'es', 'user', 'id', 'locked', 'kiosk', 'user', 'please', 'set', 'password', 'confirm'] list_processed_text: [['access'], ['issue'], ['es'], ['hello'], ['one'], ['temperory'], ['workman'], ['nxcfastp'], ['xnwtyebg'], ['whose'], ['user'], ['id'], ['vvandwkjis'], ['able'], ['login'], ['es'], ['user'], ['id'], ['locked'], ['kiosk'], ['user'], ['please'], ['set'], ['password'], ['confirm']] k: 904 len: <class 'list'> Data: ['probleme', 'mit', 'barcode', 'label', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml', 'obleme', 'mit', 'barcode', 'label', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml'] processed_text: ['probleme', 'mit', 'barcode', 'label', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml', 'obleme', 'mit', 'barcode', 'label', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['probleme'], ['mit'], ['barcode'], ['label'], ['volume'], ['format'], ['zu'], ['gro'], ['vzqomdgt'], ['jwoqbuml'], ['obleme'], ['mit'], ['barcode'], ['label'], ['volume'], ['format'], ['zu'], ['gro'], ['vzqomdgt'], ['jwoqbuml']] k: 905 len: <class 'list'> Data: ['setup', 'new', 'w', 'br', 'usalikfj', 'lfmpxbcn', 'setup', 'new', 'w', 'br', 'usalikfj', 'lfmpxbcn'] processed_text: ['setup', 'new', 'w', 'br', 'usalikfj', 'lfmpxbcn', 'setup', 'new', 'w', 'br', 'usalikfj', 'lfmpxbcn'] list_processed_text: [['setup'], ['new'], ['w'], ['br'], ['usalikfj'], ['lfmpxbcn'], ['setup'], ['new'], ['w'], ['br'], ['usalikfj'], ['lfmpxbcn']] k: 906 len: <class 'list'> Data: ['monitor', 'measuring', 'machine', 'defective', 'good', 'morning', 'hkydrfdw', 'monitor', 'measuring', 'machine', 'defective', 'please', 'provide', 'replacement', 'monitor', 'short', 'notice', 'thank'] processed_text: ['monitor', 'measuring', 'machine', 'defective', 'good', 'morning', 'hkydrfdw', 'monitor', 'measuring', 'machine', 'defective', 'please', 'provide', 'replacement', 'monitor', 'short', 'notice', 'thank'] list_processed_text: [['monitor'], ['measuring'], ['machine'], ['defective'], ['good'], ['morning'], ['hkydrfdw'], ['monitor'], ['measuring'], ['machine'], ['defective'], ['please'], ['provide'], ['replacement'], ['monitor'], ['short'], ['notice'], ['thank']] k: 907 len: <class 'list'> Data: ['release', 'r', 'folder', 'application', 'cut', 'please', 'release'] processed_text: ['release', 'r', 'folder', 'application', 'cut', 'please', 'release'] list_processed_text: [['release'], ['r'], ['folder'], ['application'], ['cut'], ['please'], ['release']] k: 908 len: <class 'list'> Data: ['reinstall', 'eagl', 'scratch', 'device', 'chrashes', 'entering', 'stand', 'mode', 'reinstall', 'eagl', 'scratch', 'device', 'chrashes', 'entering', 'stand', 'mode'] processed_text: ['reinstall', 'eagl', 'scratch', 'device', 'chrashes', 'entering', 'stand', 'mode', 'reinstall', 'eagl', 'scratch', 'device', 'chrashes', 'entering', 'stand', 'mode'] list_processed_text: [['reinstall'], ['eagl'], ['scratch'], ['device'], ['chrashes'], ['entering'], ['stand'], ['mode'], ['reinstall'], ['eagl'], ['scratch'], ['device'], ['chrashes'], ['entering'], ['stand'], ['mode']] k: 909 len: <class 'list'> Data: ['restore', 'please', 'restore', 'complete', 'file', 'hostname', 'hr', 'fd', 'mitarbeiter', 'azubis', 'including', 'file', 'azubis', 'danke', 'viele', 'gr', 'trgqbeax', 'hfyzudql'] processed_text: ['restore', 'please', 'restore', 'complete', 'file', 'hostname', 'hr', 'fd', 'mitarbeiter', 'azubis', 'including', 'file', 'azubis', 'danke', 'viele', 'gr', 'trgqbeax', 'hfyzudql'] list_processed_text: [['restore'], ['please'], ['restore'], ['complete'], ['file'], ['hostname'], ['hr'], ['fd'], ['mitarbeiter'], ['azubis'], ['including'], ['file'], ['azubis'], ['danke'], ['viele'], ['gr'], ['trgqbeax'], ['hfyzudql']] k: 910 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 911 len: <class 'list'> Data: ['printer', 'working', 'hi', 'please', 'help', 'resolve', 'sg', 'printer', 'problem', 'printer', 'fine', 'printer', 'technician', 'check', 'cable', 'server', 'port', 'server', 'room', 'admin', 'knowledge', 'capability', 'handle', 'please', 'someone', 'help', 'aerp', 'best'] processed_text: ['printer', 'working', 'hi', 'please', 'help', 'resolve', 'sg', 'printer', 'problem', 'printer', 'fine', 'printer', 'technician', 'check', 'cable', 'server', 'port', 'server', 'room', 'admin', 'knowledge', 'capability', 'handle', 'please', 'someone', 'help', 'aerp', 'best'] list_processed_text: [['printer'], ['working'], ['hi'], ['please'], ['help'], ['resolve'], ['sg'], ['printer'], ['problem'], ['printer'], ['fine'], ['printer'], ['technician'], ['check'], ['cable'], ['server'], ['port'], ['server'], ['room'], ['admin'], ['knowledge'], ['capability'], ['handle'], ['please'], ['someone'], ['help'], ['aerp'], ['best']] k: 912 len: <class 'list'> Data: ['eu', 'tool', 'pls', 'wqw', 'working', 'slow', 'eu', 'tool', 'pls', 'wqw', 'working', 'slow'] processed_text: ['eu', 'tool', 'pls', 'wqw', 'working', 'slow', 'eu', 'tool', 'pls', 'wqw', 'working', 'slow'] list_processed_text: [['eu'], ['tool'], ['pls'], ['wqw'], ['working'], ['slow'], ['eu'], ['tool'], ['pls'], ['wqw'], ['working'], ['slow']] k: 913 len: <class 'list'> Data: ['write', 'right', 'r', 'ksdvp', 'ce', 'head', 'write', 'right', 'r', 'ksdvp', 'ce', 'head'] processed_text: ['write', 'right', 'r', 'ksdvp', 'ce', 'head', 'write', 'right', 'r', 'ksdvp', 'ce', 'head'] list_processed_text: [['write'], ['right'], ['r'], ['ksdvp'], ['ce'], ['head'], ['write'], ['right'], ['r'], ['ksdvp'], ['ce'], ['head']] k: 914 len: <class 'list'> Data: ['english', 'form', 'printing', 'german', 'instead', 'english', 'change', 'bank', 'detail', 'made', 'ticket', 'correctly', 'printing', 'english', 'form', 'showing', 'correct', 'data', 'description', 'german', 'example', 'bankverbindung', 'instead', 'bank', 'address', 'konto', 'nummer', 'instead', 'account', 'number', 'also', 'see', 'extra', 'text', 'printed', 'customer', 'bitte', 'beachten', 'sie', 'unsere', 'neue', 'bankverbindung', 'please', 'note', 'new', 'bank', 'account', 'detail', 'english', 'version', 'print', 'english', 'document', 'german', 'english'] processed_text: ['english', 'form', 'printing', 'german', 'instead', 'english', 'change', 'bank', 'detail', 'made', 'ticket', 'correctly', 'printing', 'english', 'form', 'showing', 'correct', 'data', 'description', 'german', 'example', 'bankverbindung', 'instead', 'bank', 'address', 'konto', 'nummer', 'instead', 'account', 'number', 'also', 'see', 'extra', 'text', 'printed', 'customer', 'bitte', 'beachten', 'sie', 'unsere', 'neue', 'bankverbindung', 'please', 'note', 'new', 'bank', 'account', 'detail', 'english', 'version', 'print', 'english', 'document', 'german', 'english'] list_processed_text: [['english'], ['form'], ['printing'], ['german'], ['instead'], ['english'], ['change'], ['bank'], ['detail'], ['made'], ['ticket'], ['correctly'], ['printing'], ['english'], ['form'], ['showing'], ['correct'], ['data'], ['description'], ['german'], ['example'], ['bankverbindung'], ['instead'], ['bank'], ['address'], ['konto'], ['nummer'], ['instead'], ['account'], ['number'], ['also'], ['see'], ['extra'], ['text'], ['printed'], ['customer'], ['bitte'], ['beachten'], ['sie'], ['unsere'], ['neue'], ['bankverbindung'], ['please'], ['note'], ['new'], ['bank'], ['account'], ['detail'], ['english'], ['version'], ['print'], ['english'], ['document'], ['german'], ['english']] k: 915 len: <class 'list'> Data: ['eu', 'tool', 'job', 'running', 'please', 'help', 'immediately', 'released', 'order', 'make', 'list', 'please', 'check', 'status', 'restart', 'system'] processed_text: ['eu', 'tool', 'job', 'running', 'please', 'help', 'immediately', 'released', 'order', 'make', 'list', 'please', 'check', 'status', 'restart', 'system'] list_processed_text: [['eu'], ['tool'], ['job'], ['running'], ['please'], ['help'], ['immediately'], ['released'], ['order'], ['make'], ['list'], ['please'], ['check'], ['status'], ['restart'], ['system']] k: 916 len: <class 'list'> Data: ['skype', 'able', 'get', 'skype', 'right', 'outage'] processed_text: ['skype', 'able', 'get', 'skype', 'right', 'outage'] list_processed_text: [['skype'], ['able'], ['get'], ['skype'], ['right'], ['outage']] k: 917 len: <class 'list'> Data: ['whenever', 'fill', 'amount', 'money', 'erp', 'show', 'rmb', 'finally', 'system', 'whenever', 'fill', 'amount', 'money', 'erp', 'show', 'rmb', 'finally', 'system', 'please', 'contact', 'withn', 'aerp', 'phone'] processed_text: ['whenever', 'fill', 'amount', 'money', 'erp', 'show', 'rmb', 'finally', 'system', 'whenever', 'fill', 'amount', 'money', 'erp', 'show', 'rmb', 'finally', 'system', 'please', 'contact', 'withn', 'aerp', 'phone'] list_processed_text: [['whenever'], ['fill'], ['amount'], ['money'], ['erp'], ['show'], ['rmb'], ['finally'], ['system'], ['whenever'], ['fill'], ['amount'], ['money'], ['erp'], ['show'], ['rmb'], ['finally'], ['system'], ['please'], ['contact'], ['withn'], ['aerp'], ['phone']] k: 918 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 919 len: <class 'list'> Data: ['sid', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'model', 'csewdwdwdndmill', 'used', 'issue', 'exists', 'erp', 'erp', 'system', 'sid', 'well', 'uacyltoe', 'hxgayczedistributor', 'tool', 'uacyltoe', 'hxgayczecompany', 'center', 'quality', 'environment', 'error', 'message', 'text', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'logon', 'language', 'en', 'ok', 'csscdddwsawdrill', 'model', 'used', 'language', 'seem', 'working', 'fine', 'user', 'change', 'language', 'g', 'de', 'us', 'model', 'csewdwdwdndmill', 'configig', 'air', 'system', 'response', 'error', 'message', 'starting', 'process', 'configair', 'configurator'] processed_text: ['sid', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'model', 'csewdwdwdndmill', 'used', 'issue', 'exists', 'erp', 'erp', 'system', 'sid', 'well', 'uacyltoe', 'hxgayczedistributor', 'tool', 'uacyltoe', 'hxgayczecompany', 'center', 'quality', 'environment', 'error', 'message', 'text', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'logon', 'language', 'en', 'ok', 'csscdddwsawdrill', 'model', 'used', 'language', 'seem', 'working', 'fine', 'user', 'change', 'language', 'g', 'de', 'us', 'model', 'csewdwdwdndmill', 'configig', 'air', 'system', 'response', 'error', 'message', 'starting', 'process', 'configair', 'configurator'] list_processed_text: [['sid'], ['configair'], ['server'], ['responds'], ['internal'], ['server'], ['error'], ['case'], ['logon'], ['language'], ['en'], ['configair'], ['server'], ['responds'], ['internal'], ['server'], ['error'], ['case'], ['logon'], ['language'], ['en'], ['model'], ['csewdwdwdndmill'], ['used'], ['issue'], ['exists'], ['erp'], ['erp'], ['system'], ['sid'], ['well'], ['uacyltoe'], ['hxgayczedistributor'], ['tool'], ['uacyltoe'], ['hxgayczecompany'], ['center'], ['quality'], ['environment'], ['error'], ['message'], ['text'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['logon'], ['language'], ['en'], ['ok'], ['csscdddwsawdrill'], ['model'], ['used'], ['language'], ['seem'], ['working'], ['fine'], ['user'], ['change'], ['language'], ['g'], ['de'], ['us'], ['model'], ['csewdwdwdndmill'], ['configig'], ['air'], ['system'], ['response'], ['error'], ['message'], ['starting'], ['process'], ['configair'], ['configurator']] k: 920 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 921 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'urgent', 'plant', 'pc', 'cannot', 'created', 'n', 'mm', 'customer', 'urgent', 'good', 'would', 'please', 'help', 'sloved'] processed_text: ['unable', 'create', 'delivery', 'urgent', 'plant', 'pc', 'cannot', 'created', 'n', 'mm', 'customer', 'urgent', 'good', 'would', 'please', 'help', 'sloved'] list_processed_text: [['unable'], ['create'], ['delivery'], ['urgent'], ['plant'], ['pc'], ['cannot'], ['created'], ['n'], ['mm'], ['customer'], ['urgent'], ['good'], ['would'], ['please'], ['help'], ['sloved']] k: 922 len: <class 'list'> Data: ['backup', 'data', 'dear', 'sir', 'mistake', 'one', 'folder', 'hostname', 'rk', 'deleted', 'requesting', 'retrieve', 'best'] processed_text: ['backup', 'data', 'dear', 'sir', 'mistake', 'one', 'folder', 'hostname', 'rk', 'deleted', 'requesting', 'retrieve', 'best'] list_processed_text: [['backup'], ['data'], ['dear'], ['sir'], ['mistake'], ['one'], ['folder'], ['hostname'], ['rk'], ['deleted'], ['requesting'], ['retrieve'], ['best']] k: 923 len: <class 'list'> Data: ['sid', 'purchase', 'requisition', 'approval', 'issue', 'hi', 'team', 'cannot', 'approve', 'pr', 'via', 'link', 'provided', 'enable', 'approve', 'directly', 'erp', 'via', 'kindly', 'fix'] processed_text: ['sid', 'purchase', 'requisition', 'approval', 'issue', 'hi', 'team', 'cannot', 'approve', 'pr', 'via', 'link', 'provided', 'enable', 'approve', 'directly', 'erp', 'via', 'kindly', 'fix'] list_processed_text: [['sid'], ['purchase'], ['requisition'], ['approval'], ['issue'], ['hi'], ['team'], ['cannot'], ['approve'], ['pr'], ['via'], ['link'], ['provided'], ['enable'], ['approve'], ['directly'], ['erp'], ['via'], ['kindly'], ['fix']] k: 924 len: <class 'list'> Data: ['since', 'mesz', 'server', 'problem', 'qmsoft', 'applicable', 'since', 'mesz', 'server', 'problem', 'qmsoft', 'applicable'] processed_text: ['since', 'mesz', 'server', 'problem', 'qmsoft', 'applicable', 'since', 'mesz', 'server', 'problem', 'qmsoft', 'applicable'] list_processed_text: [['since'], ['mesz'], ['server'], ['problem'], ['qmsoft'], ['applicable'], ['since'], ['mesz'], ['server'], ['problem'], ['qmsoft'], ['applicable']] k: 925 len: <class 'list'> Data: ['ibm', 'pmrskr', 'problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'pm', 'problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'reporting', 'system', 'pwrhmc', 'machine', 'type', 'model', 'serial', 'ev', 'problem', 'number', 'error', 'description', 'management', 'console', 'fsp', 'bpa', 'bpc', 'failure', 'detected', 'last', 'occurred', 'pm', 'current', 'status', 'pmr', 'number', 'detail'] processed_text: ['ibm', 'pmrskr', 'problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'pm', 'problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'reporting', 'system', 'pwrhmc', 'machine', 'type', 'model', 'serial', 'ev', 'problem', 'number', 'error', 'description', 'management', 'console', 'fsp', 'bpa', 'bpc', 'failure', 'detected', 'last', 'occurred', 'pm', 'current', 'status', 'pmr', 'number', 'detail'] list_processed_text: [['ibm'], ['pmrskr'], ['problem'], ['report'], ['pwrhmc'], ['hq'], ['company'], ['com'], ['pm'], ['problem'], ['report'], ['pwrhmc'], ['hq'], ['company'], ['com'], ['reporting'], ['system'], ['pwrhmc'], ['machine'], ['type'], ['model'], ['serial'], ['ev'], ['problem'], ['number'], ['error'], ['description'], ['management'], ['console'], ['fsp'], ['bpa'], ['bpc'], ['failure'], ['detected'], ['last'], ['occurred'], ['pm'], ['current'], ['status'], ['pmr'], ['number'], ['detail']] k: 926 len: <class 'list'> Data: ['reset', 'password', 'arsbtkvd', 'qieagkos', 'erp', 'production', 'erp', 'good', 'day', 'could', 'please', 'reset', 'password', 'erp'] processed_text: ['reset', 'password', 'arsbtkvd', 'qieagkos', 'erp', 'production', 'erp', 'good', 'day', 'could', 'please', 'reset', 'password', 'erp'] list_processed_text: [['reset'], ['password'], ['arsbtkvd'], ['qieagkos'], ['erp'], ['production'], ['erp'], ['good'], ['day'], ['could'], ['please'], ['reset'], ['password'], ['erp']] k: 927 len: <class 'list'> Data: ['able', 'add', 'lean', 'project', 'collaboration', 'platform', 'jkddwkwd', 'ngtr', 'assistant', 'manager', 'manufacturing', 'company', 'india', 'limited'] processed_text: ['able', 'add', 'lean', 'project', 'collaboration', 'platform', 'jkddwkwd', 'ngtr', 'assistant', 'manager', 'manufacturing', 'company', 'india', 'limited'] list_processed_text: [['able'], ['add'], ['lean'], ['project'], ['collaboration'], ['platform'], ['jkddwkwd'], ['ngtr'], ['assistant'], ['manager'], ['manufacturing'], ['company'], ['india'], ['limited']] k: 928 len: <class 'list'> Data: ['print', 'business', 'client', 'request', 'access', 'get', 'print', 'id'] processed_text: ['print', 'business', 'client', 'request', 'access', 'get', 'print', 'id'] list_processed_text: [['print'], ['business'], ['client'], ['request'], ['access'], ['get'], ['print'], ['id']] k: 929 len: <class 'list'> Data: ['log', 'ticketing', 'tool', 'gso', 'user', 'qzkyugce', 'etsmnuba', 'dondwdgj', 'log', 'ticketing', 'tool', 'system', 'display', 'user', 'password', 'invalid', 'could', 'work'] processed_text: ['log', 'ticketing', 'tool', 'gso', 'user', 'qzkyugce', 'etsmnuba', 'dondwdgj', 'log', 'ticketing', 'tool', 'system', 'display', 'user', 'password', 'invalid', 'could', 'work'] list_processed_text: [['log'], ['ticketing'], ['tool'], ['gso'], ['user'], ['qzkyugce'], ['etsmnuba'], ['dondwdgj'], ['log'], ['ticketing'], ['tool'], ['system'], ['display'], ['user'], ['password'], ['invalid'], ['could'], ['work']] k: 930 len: <class 'list'> Data: ['network', 'outage', 'cantabria', 'mecftgobusa', 'kenci', 'hard', 'since', 'pm', 'et', 'site', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'cantabria', 'mecftgobusa', 'kenci', 'hard', 'since', 'pm', 'et', 'site', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['cantabria'], ['mecftgobusa'], ['kenci'], ['hard'], ['since'], ['pm'], ['et'], ['site'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['na'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 931 len: <class 'list'> Data: ['job', 'sid', 'stat', 'failed', 'job', 'scheduler', 'job', 'sid', 'stat', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'stat', 'failed', 'job', 'scheduler', 'job', 'sid', 'stat', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['stat'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['stat'], ['failed'], ['job'], ['scheduler']] k: 932 len: <class 'list'> Data: ['mm', 'iak', 'urgent', 'kwddwdw', 'hudfefwe', 'nwfodmhc', 'exurcwkm', 'rxoynvgi', 'ntgdsehl', 'gzawrocy', 'shbgwxeparamdnty', 'fw', 'mm', 'iak', 'urgent', 'help', 'please', 'help', 'check', 'urgent', 'din', 'future', 'please', 'raise', 'issue', 'well', 'ap', 'logistics', 'manager', 'rxoynvgi', 'ntgdsehl', 'gzawrocy', 'shbgwxeparamdnty', 'johthryugftyson', 'hu', 'kmvwti', 'uaoyhcep', 'mm', 'iak', 'hi', 'morning', 'issue', 'still', 'solve', 'yet', 'still', 'encounter', 'issue', 'net', 'weight', 'higher', 'gross', 'weight', 'net', 'weight', 'kg', 'physical', 'gross', 'weight', 'kg', 'erp', 'sid', 'vln', 'shown', 'correct', 'attached', 'reference', 'hi', 'morning', 'need', 'advice', 'issue', 'issue', 'happen', 'since', 'last', 'still', 'solve', 'yet', 'attached', 'email', 'flow', 'reference', 'ksjfye', 'fekfeealleh', 'operation', 'supervisor', 'email', 'pm', 'gzawrocy', 'shbgwxeparamdnty', 'kmvwti', 'uaoyhcep', 'rxoynvgi', 'ntgdsehl', 'aw', 'mm', 'iak', 'hello', 'done', 'nice', 'day', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['mm', 'iak', 'urgent', 'kwddwdw', 'hudfefwe', 'nwfodmhc', 'exurcwkm', 'rxoynvgi', 'ntgdsehl', 'gzawrocy', 'shbgwxeparamdnty', 'fw', 'mm', 'iak', 'urgent', 'help', 'please', 'help', 'check', 'urgent', 'din', 'future', 'please', 'raise', 'issue', 'well', 'ap', 'logistics', 'manager', 'rxoynvgi', 'ntgdsehl', 'gzawrocy', 'shbgwxeparamdnty', 'johthryugftyson', 'hu', 'kmvwti', 'uaoyhcep', 'mm', 'iak', 'hi', 'morning', 'issue', 'still', 'solve', 'yet', 'still', 'encounter', 'issue', 'net', 'weight', 'higher', 'gross', 'weight', 'net', 'weight', 'kg', 'physical', 'gross', 'weight', 'kg', 'erp', 'sid', 'vln', 'shown', 'correct', 'attached', 'reference', 'hi', 'morning', 'need', 'advice', 'issue', 'issue', 'happen', 'since', 'last', 'still', 'solve', 'yet', 'attached', 'email', 'flow', 'reference', 'ksjfye', 'fekfeealleh', 'operation', 'supervisor', 'email', 'pm', 'gzawrocy', 'shbgwxeparamdnty', 'kmvwti', 'uaoyhcep', 'rxoynvgi', 'ntgdsehl', 'aw', 'mm', 'iak', 'hello', 'done', 'nice', 'day', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['mm'], ['iak'], ['urgent'], ['kwddwdw'], ['hudfefwe'], ['nwfodmhc'], ['exurcwkm'], ['rxoynvgi'], ['ntgdsehl'], ['gzawrocy'], ['shbgwxeparamdnty'], ['fw'], ['mm'], ['iak'], ['urgent'], ['help'], ['please'], ['help'], ['check'], ['urgent'], ['din'], ['future'], ['please'], ['raise'], ['issue'], ['well'], ['ap'], ['logistics'], ['manager'], ['rxoynvgi'], ['ntgdsehl'], ['gzawrocy'], ['shbgwxeparamdnty'], ['johthryugftyson'], ['hu'], ['kmvwti'], ['uaoyhcep'], ['mm'], ['iak'], ['hi'], ['morning'], ['issue'], ['still'], ['solve'], ['yet'], ['still'], ['encounter'], ['issue'], ['net'], ['weight'], ['higher'], ['gross'], ['weight'], ['net'], ['weight'], ['kg'], ['physical'], ['gross'], ['weight'], ['kg'], ['erp'], ['sid'], ['vln'], ['shown'], ['correct'], ['attached'], ['reference'], ['hi'], ['morning'], ['need'], ['advice'], ['issue'], ['issue'], ['happen'], ['since'], ['last'], ['still'], ['solve'], ['yet'], ['attached'], ['email'], ['flow'], ['reference'], ['ksjfye'], ['fekfeealleh'], ['operation'], ['supervisor'], ['email'], ['pm'], ['gzawrocy'], ['shbgwxeparamdnty'], ['kmvwti'], ['uaoyhcep'], ['rxoynvgi'], ['ntgdsehl'], ['aw'], ['mm'], ['iak'], ['hello'], ['done'], ['nice'], ['day'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 933 len: <class 'list'> Data: ['note', 'always', 'printed', 'bottom', 'quotation', 'missing', 'please', 'help', 'put', 'back', 'please', 'see', 'attachment'] processed_text: ['note', 'always', 'printed', 'bottom', 'quotation', 'missing', 'please', 'help', 'put', 'back', 'please', 'see', 'attachment'] list_processed_text: [['note'], ['always'], ['printed'], ['bottom'], ['quotation'], ['missing'], ['please'], ['help'], ['put'], ['back'], ['please'], ['see'], ['attachment']] k: 934 len: <class 'list'> Data: ['erp', 'locked', 'hello', 'user', 'id', 'yandfgs', 'please', 'help', 'unlock'] processed_text: ['erp', 'locked', 'hello', 'user', 'id', 'yandfgs', 'please', 'help', 'unlock'] list_processed_text: [['erp'], ['locked'], ['hello'], ['user'], ['id'], ['yandfgs'], ['please'], ['help'], ['unlock']] k: 935 len: <class 'list'> Data: ['error', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'cannot', 'run', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'show', 'error', 'best'] processed_text: ['error', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'cannot', 'run', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'show', 'error', 'best'] list_processed_text: [['error'], ['erp'], ['sid'], ['sa'], ['zsd'], ['mexico'], ['inwarehouse'], ['tool'], ['extract'], ['cannot'], ['run'], ['erp'], ['sid'], ['sa'], ['zsd'], ['mexico'], ['inwarehouse'], ['tool'], ['extract'], ['show'], ['error'], ['best']] k: 936 len: <class 'list'> Data: ['collaboration', 'platform', 'access', 'issue', 'first', 'name', 'trtgoywdd', 'last', 'name', 'povirttch', 'customer', 'job', 'title', 'sale', 'engineer', 'contact', 'email', 'address', 'vitalyst', 'reference', 'number', 'bbfa', 'bomsdgar', 'used', 'yes', 'description', 'problem', 'unable', 'access', 'collaboration', 'platform', 'site', 'problem', 'persists', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'sid', 'afd', 'ace', 'cfce', 'date', 'time', 'pm', 'user', 'issue', 'type', 'user', 'permission', 'step', 'taken', 'far', 'go', 'hub', 'search', 'lagp', 'lagp', 'request', 'go', 'form', 'click', 'blue', 'circle', 'access', 'denied', 'message', 'previously', 'access', 'site'] processed_text: ['collaboration', 'platform', 'access', 'issue', 'first', 'name', 'trtgoywdd', 'last', 'name', 'povirttch', 'customer', 'job', 'title', 'sale', 'engineer', 'contact', 'email', 'address', 'vitalyst', 'reference', 'number', 'bbfa', 'bomsdgar', 'used', 'yes', 'description', 'problem', 'unable', 'access', 'collaboration', 'platform', 'site', 'problem', 'persists', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'sid', 'afd', 'ace', 'cfce', 'date', 'time', 'pm', 'user', 'issue', 'type', 'user', 'permission', 'step', 'taken', 'far', 'go', 'hub', 'search', 'lagp', 'lagp', 'request', 'go', 'form', 'click', 'blue', 'circle', 'access', 'denied', 'message', 'previously', 'access', 'site'] list_processed_text: [['collaboration'], ['platform'], ['access'], ['issue'], ['first'], ['name'], ['trtgoywdd'], ['last'], ['name'], ['povirttch'], ['customer'], ['job'], ['title'], ['sale'], ['engineer'], ['contact'], ['email'], ['address'], ['vitalyst'], ['reference'], ['number'], ['bbfa'], ['bomsdgar'], ['used'], ['yes'], ['description'], ['problem'], ['unable'], ['access'], ['collaboration'], ['platform'], ['site'], ['problem'], ['persists'], ['contact'], ['support'], ['team'], ['include'], ['technical'], ['detail'], ['correlation'], ['id'], ['sid'], ['afd'], ['ace'], ['cfce'], ['date'], ['time'], ['pm'], ['user'], ['issue'], ['type'], ['user'], ['permission'], ['step'], ['taken'], ['far'], ['go'], ['hub'], ['search'], ['lagp'], ['lagp'], ['request'], ['go'], ['form'], ['click'], ['blue'], ['circle'], ['access'], ['denied'], ['message'], ['previously'], ['access'], ['site']] k: 937 len: <class 'list'> Data: ['access', 'sid', 'need', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'username', 'owenssdcl', 'supervisor', 'phjencfg', 'kwtcyazx', 'manager', 'vnhaycfo', 'smkpfjzv', 'wsjkbw', 'owwddwens', 'accounting', 'specialist'] processed_text: ['access', 'sid', 'need', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'username', 'owenssdcl', 'supervisor', 'phjencfg', 'kwtcyazx', 'manager', 'vnhaycfo', 'smkpfjzv', 'wsjkbw', 'owwddwens', 'accounting', 'specialist'] list_processed_text: [['access'], ['sid'], ['need'], ['access'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['system'], ['username'], ['owenssdcl'], ['supervisor'], ['phjencfg'], ['kwtcyazx'], ['manager'], ['vnhaycfo'], ['smkpfjzv'], ['wsjkbw'], ['owwddwens'], ['accounting'], ['specialist']] k: 938 len: <class 'list'> Data: ['authorization', 'apps', 'authorization', 'apps'] processed_text: ['authorization', 'apps', 'authorization', 'apps'] list_processed_text: [['authorization'], ['apps'], ['authorization'], ['apps']] k: 939 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 940 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 941 len: <class 'list'> Data: ['access', 'erp', 'sid', 'user', 'rgpvdhcm', 'mgvpabsj', 'access', 'erp', 'sid', 'user', 'rgpvdhcm', 'mgvpabsj'] processed_text: ['access', 'erp', 'sid', 'user', 'rgpvdhcm', 'mgvpabsj', 'access', 'erp', 'sid', 'user', 'rgpvdhcm', 'mgvpabsj'] list_processed_text: [['access'], ['erp'], ['sid'], ['user'], ['rgpvdhcm'], ['mgvpabsj'], ['access'], ['erp'], ['sid'], ['user'], ['rgpvdhcm'], ['mgvpabsj']] k: 942 len: <class 'list'> Data: ['folder', 'access', 'requested', 'hostname', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'hostname', 'benutzer', 'id', 'user', 'id', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'verzeichnis', 'folder', 'corpbusinessdev', 'monthly', 'financial', 'review', 'fy', 'october', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control'] processed_text: ['folder', 'access', 'requested', 'hostname', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'hostname', 'benutzer', 'id', 'user', 'id', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'verzeichnis', 'folder', 'corpbusinessdev', 'monthly', 'financial', 'review', 'fy', 'october', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control'] list_processed_text: [['folder'], ['access'], ['requested'], ['hostname'], ['zugriff'], ['auf'], ['verzeichnis'], ['angefragt'], ['folder'], ['access'], ['requested'], ['hostname'], ['benutzer'], ['id'], ['user'], ['id'], ['benutzer'], ['die'], ['position'], ['titel'], ['user'], ['position'], ['title'], ['verzeichnis'], ['folder'], ['corpbusinessdev'], ['monthly'], ['financial'], ['review'], ['fy'], ['october'], ['art'], ['de'], ['zugriffs'], ['type'], ['access'], ['read'], ['full'], ['control']] k: 943 len: <class 'list'> Data: ['folder', 'access', 'request', 'summary', 'need', 'access', 'following', 'folder', 'financial', 'review', 'corpbusinessdev', 'monthly', 'financial', 'review', 'need', 'get', 'read', 'write', 'need', 'save', 'file', 'able', 'open'] processed_text: ['folder', 'access', 'request', 'summary', 'need', 'access', 'following', 'folder', 'financial', 'review', 'corpbusinessdev', 'monthly', 'financial', 'review', 'need', 'get', 'read', 'write', 'need', 'save', 'file', 'able', 'open'] list_processed_text: [['folder'], ['access'], ['request'], ['summary'], ['need'], ['access'], ['following'], ['folder'], ['financial'], ['review'], ['corpbusinessdev'], ['monthly'], ['financial'], ['review'], ['need'], ['get'], ['read'], ['write'], ['need'], ['save'], ['file'], ['able'], ['open']] k: 944 len: <class 'list'> Data: ['unlocked', 'account', 'unlocked', 'account'] processed_text: ['unlocked', 'account', 'unlocked', 'account'] list_processed_text: [['unlocked'], ['account'], ['unlocked'], ['account']] k: 945 len: <class 'list'> Data: ['pricing', 'availability', 'look', 'dynamic', 'crm', 'working', 'attached', 'screenshot', 'ptljghyk', 'qhtvlrxe', 'looked', 'product', 'know', 'screen', 'show'] processed_text: ['pricing', 'availability', 'look', 'dynamic', 'crm', 'working', 'attached', 'screenshot', 'ptljghyk', 'qhtvlrxe', 'looked', 'product', 'know', 'screen', 'show'] list_processed_text: [['pricing'], ['availability'], ['look'], ['dynamic'], ['crm'], ['working'], ['attached'], ['screenshot'], ['ptljghyk'], ['qhtvlrxe'], ['looked'], ['product'], ['know'], ['screen'], ['show']] k: 946 len: <class 'list'> Data: ['engineering', 'tool', 'able', 'update', 'new', 'customer', 'engineering', 'tool', 'able', 'update', 'new', 'customer'] processed_text: ['engineering', 'tool', 'able', 'update', 'new', 'customer', 'engineering', 'tool', 'able', 'update', 'new', 'customer'] list_processed_text: [['engineering'], ['tool'], ['able'], ['update'], ['new'], ['customer'], ['engineering'], ['tool'], ['able'], ['update'], ['new'], ['customer']] k: 947 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['unable'], ['access'], ['collaboration'], ['platform']] k: 948 len: <class 'list'> Data: ['unable', 'open', 'engineering', 'tool', 'unable', 'open', 'engineering', 'tool'] processed_text: ['unable', 'open', 'engineering', 'tool', 'unable', 'open', 'engineering', 'tool'] list_processed_text: [['unable'], ['open'], ['engineering'], ['tool'], ['unable'], ['open'], ['engineering'], ['tool']] k: 949 len: <class 'list'> Data: ['permission', 'create', 'cost', 'center', 'sid', 'erp', 'transaction', 'k', 'longer', 'access', 'create', 'cost', 'center', 'sid', 'sid', 'please', 'update', 'access', 'cost', 'center', 'creation', 'uacyltoe', 'hxgayczeing', 'system', 'sid', 'transaction', 'k'] processed_text: ['permission', 'create', 'cost', 'center', 'sid', 'erp', 'transaction', 'k', 'longer', 'access', 'create', 'cost', 'center', 'sid', 'sid', 'please', 'update', 'access', 'cost', 'center', 'creation', 'uacyltoe', 'hxgayczeing', 'system', 'sid', 'transaction', 'k'] list_processed_text: [['permission'], ['create'], ['cost'], ['center'], ['sid'], ['erp'], ['transaction'], ['k'], ['longer'], ['access'], ['create'], ['cost'], ['center'], ['sid'], ['sid'], ['please'], ['update'], ['access'], ['cost'], ['center'], ['creation'], ['uacyltoe'], ['hxgayczeing'], ['system'], ['sid'], ['transaction'], ['k']] k: 950 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'summary', 'issue', 'collaboration', 'platform', 'unable', 'access', 'meeting', 'people', 'post', 'document', 'library', 'able', 'access', 'fixed'] processed_text: ['collaboration', 'platform', 'issue', 'summary', 'issue', 'collaboration', 'platform', 'unable', 'access', 'meeting', 'people', 'post', 'document', 'library', 'able', 'access', 'fixed'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['summary'], ['issue'], ['collaboration'], ['platform'], ['unable'], ['access'], ['meeting'], ['people'], ['post'], ['document'], ['library'], ['able'], ['access'], ['fixed']] k: 951 len: <class 'list'> Data: ['static', 'ip', 'address', 'requested', 'temporary', 'service', 'provide', 'static', 'ip', 'address', 'time', 'clock', 'hard', 'wired', 'provide', 'contact', 'summary', 'gear', 'request', 'static', 'ip', 'address', 'box', 'assistance'] processed_text: ['static', 'ip', 'address', 'requested', 'temporary', 'service', 'provide', 'static', 'ip', 'address', 'time', 'clock', 'hard', 'wired', 'provide', 'contact', 'summary', 'gear', 'request', 'static', 'ip', 'address', 'box', 'assistance'] list_processed_text: [['static'], ['ip'], ['address'], ['requested'], ['temporary'], ['service'], ['provide'], ['static'], ['ip'], ['address'], ['time'], ['clock'], ['hard'], ['wired'], ['provide'], ['contact'], ['summary'], ['gear'], ['request'], ['static'], ['ip'], ['address'], ['box'], ['assistance']] k: 952 len: <class 'list'> Data: ['collaboration', 'platform', 'system', 'working', 'collaboration', 'platform', 'system', 'working', 'multiple', 'user', 'report', 'getting', 'error', 'trying', 'open', 'company', 'collaboration', 'platform', 'com', 'website', 'greatly', 'affect', 'discount', 'process', 'cannot', 'access', 'request', 'update', 'approved', 'one', 'error', 'message', 'pop', 'attached', 'affect', 'pozna', 'usa'] processed_text: ['collaboration', 'platform', 'system', 'working', 'collaboration', 'platform', 'system', 'working', 'multiple', 'user', 'report', 'getting', 'error', 'trying', 'open', 'company', 'collaboration', 'platform', 'com', 'website', 'greatly', 'affect', 'discount', 'process', 'cannot', 'access', 'request', 'update', 'approved', 'one', 'error', 'message', 'pop', 'attached', 'affect', 'pozna', 'usa'] list_processed_text: [['collaboration'], ['platform'], ['system'], ['working'], ['collaboration'], ['platform'], ['system'], ['working'], ['multiple'], ['user'], ['report'], ['getting'], ['error'], ['trying'], ['open'], ['company'], ['collaboration'], ['platform'], ['com'], ['website'], ['greatly'], ['affect'], ['discount'], ['process'], ['cannot'], ['access'], ['request'], ['update'], ['approved'], ['one'], ['error'], ['message'], ['pop'], ['attached'], ['affect'], ['pozna'], ['usa']] k: 953 len: <class 'list'> Data: ['cannot', 'get', 'usb', 'wifi', 'adapter', 'work', 'laptop', 'cannot', 'get', 'usb', 'wifi', 'adapter', 'work', 'laptop'] processed_text: ['cannot', 'get', 'usb', 'wifi', 'adapter', 'work', 'laptop', 'cannot', 'get', 'usb', 'wifi', 'adapter', 'work', 'laptop'] list_processed_text: [['cannot'], ['get'], ['usb'], ['wifi'], ['adapter'], ['work'], ['laptop'], ['cannot'], ['get'], ['usb'], ['wifi'], ['adapter'], ['work'], ['laptop']] k: 954 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['unable'], ['access'], ['collaboration'], ['platform']] k: 955 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'summary', 'thrown', 'vpn', 'tried', 'several', 'time', 'get', 'back', 'back', 'vpn', 'cannot', 'sign', 'crm'] processed_text: ['collaboration', 'platform', 'issue', 'summary', 'thrown', 'vpn', 'tried', 'several', 'time', 'get', 'back', 'back', 'vpn', 'cannot', 'sign', 'crm'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['summary'], ['thrown'], ['vpn'], ['tried'], ['several'], ['time'], ['get'], ['back'], ['back'], ['vpn'], ['cannot'], ['sign'], ['crm']] k: 956 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] processed_text: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['collaboration'], ['platform'], ['issue']] k: 957 len: <class 'list'> Data: ['collaboration', 'platform', 'collaboration', 'platform'] processed_text: ['collaboration', 'platform', 'collaboration', 'platform'] list_processed_text: [['collaboration'], ['platform'], ['collaboration'], ['platform']] k: 958 len: <class 'list'> Data: ['skype', 'business', 'connected', 'exchange', 'ihuogcqd', 'ihusvgcw', 'phone', 'skype', 'business', 'connect', 'exchange', 'going', 'week', 'rebooted', 'logged', 'back', 'skype', 'connect', 'keep', 'getting', 'error'] processed_text: ['skype', 'business', 'connected', 'exchange', 'ihuogcqd', 'ihusvgcw', 'phone', 'skype', 'business', 'connect', 'exchange', 'going', 'week', 'rebooted', 'logged', 'back', 'skype', 'connect', 'keep', 'getting', 'error'] list_processed_text: [['skype'], ['business'], ['connected'], ['exchange'], ['ihuogcqd'], ['ihusvgcw'], ['phone'], ['skype'], ['business'], ['connect'], ['exchange'], ['going'], ['week'], ['rebooted'], ['logged'], ['back'], ['skype'], ['connect'], ['keep'], ['getting'], ['error']] k: 959 len: <class 'list'> Data: ['company', 'collaboration', 'platform', 'reporting', 'status', 'since', 'pm', 'company', 'collaboration', 'platform', 'reporting', 'status', 'since', 'pm'] processed_text: ['company', 'collaboration', 'platform', 'reporting', 'status', 'since', 'pm', 'company', 'collaboration', 'platform', 'reporting', 'status', 'since', 'pm'] list_processed_text: [['company'], ['collaboration'], ['platform'], ['reporting'], ['status'], ['since'], ['pm'], ['company'], ['collaboration'], ['platform'], ['reporting'], ['status'], ['since'], ['pm']] k: 960 len: <class 'list'> Data: ['vip', 'collaboration', 'platform', 'page', 'access', 'issue', 'vip', 'collaboration', 'platform', 'page', 'access', 'issue'] processed_text: ['vip', 'collaboration', 'platform', 'page', 'access', 'issue', 'vip', 'collaboration', 'platform', 'page', 'access', 'issue'] list_processed_text: [['vip'], ['collaboration'], ['platform'], ['page'], ['access'], ['issue'], ['vip'], ['collaboration'], ['platform'], ['page'], ['access'], ['issue']] k: 961 len: <class 'list'> Data: ['running', 'sa', 'report', 'zsdr', 'open', 'order', 'report', 'report', 'pulling', 'usa', 'scheduling', 'agreement', 'running', 'report', 'example', 'would', 'mm', 'location', 'plant', 'source', 'location', 'making', 'sure', 'output', 'tab', 'scheduling', 'agreement', 'included', 'report', 'picking', 'scheduling', 'agreement'] processed_text: ['running', 'sa', 'report', 'zsdr', 'open', 'order', 'report', 'report', 'pulling', 'usa', 'scheduling', 'agreement', 'running', 'report', 'example', 'would', 'mm', 'location', 'plant', 'source', 'location', 'making', 'sure', 'output', 'tab', 'scheduling', 'agreement', 'included', 'report', 'picking', 'scheduling', 'agreement'] list_processed_text: [['running'], ['sa'], ['report'], ['zsdr'], ['open'], ['order'], ['report'], ['report'], ['pulling'], ['usa'], ['scheduling'], ['agreement'], ['running'], ['report'], ['example'], ['would'], ['mm'], ['location'], ['plant'], ['source'], ['location'], ['making'], ['sure'], ['output'], ['tab'], ['scheduling'], ['agreement'], ['included'], ['report'], ['picking'], ['scheduling'], ['agreement']] k: 962 len: <class 'list'> Data: ['boot', 'service', 'tag', 'lkzddens', 'window', 'running', 'problem', 'go', 'start', 'repair', 'page', 'loading', 'fine', 'safe', 'mode', 'networking', 'user', 'able', 'log', 'using', 'admin', 'account', 'dint', 'dint', 'access', 'tried', 'shutting', 'pc', 'trying', 'booting', 'go', 'flea', 'power', 'go', 'going', 'repair', 'screen', 'st', 'lkzddens', 'contact', 'detail', 'contacted'] processed_text: ['boot', 'service', 'tag', 'lkzddens', 'window', 'running', 'problem', 'go', 'start', 'repair', 'page', 'loading', 'fine', 'safe', 'mode', 'networking', 'user', 'able', 'log', 'using', 'admin', 'account', 'dint', 'dint', 'access', 'tried', 'shutting', 'pc', 'trying', 'booting', 'go', 'flea', 'power', 'go', 'going', 'repair', 'screen', 'st', 'lkzddens', 'contact', 'detail', 'contacted'] list_processed_text: [['boot'], ['service'], ['tag'], ['lkzddens'], ['window'], ['running'], ['problem'], ['go'], ['start'], ['repair'], ['page'], ['loading'], ['fine'], ['safe'], ['mode'], ['networking'], ['user'], ['able'], ['log'], ['using'], ['admin'], ['account'], ['dint'], ['dint'], ['access'], ['tried'], ['shutting'], ['pc'], ['trying'], ['booting'], ['go'], ['flea'], ['power'], ['go'], ['going'], ['repair'], ['screen'], ['st'], ['lkzddens'], ['contact'], ['detail'], ['contacted']] k: 963 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['aa'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['aa'], ['space'], ['consumed'], ['space'], ['available']] k: 964 len: <class 'list'> Data: ['need', 'address', 'added', 'xerox', 'prtqx', 'need', 'address', 'added', 'xerox', 'prtqx'] processed_text: ['need', 'address', 'added', 'xerox', 'prtqx', 'need', 'address', 'added', 'xerox', 'prtqx'] list_processed_text: [['need'], ['address'], ['added'], ['xerox'], ['prtqx'], ['need'], ['address'], ['added'], ['xerox'], ['prtqx']] k: 965 len: <class 'list'> Data: ['personal', 'number', 'locked', 'expense', 'report', 'personal', 'number', 'locked', 'expense', 'report'] processed_text: ['personal', 'number', 'locked', 'expense', 'report', 'personal', 'number', 'locked', 'expense', 'report'] list_processed_text: [['personal'], ['number'], ['locked'], ['expense'], ['report'], ['personal'], ['number'], ['locked'], ['expense'], ['report']] k: 966 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 967 len: <class 'list'> Data: ['password', 'hello', 'ask', 'reset', 'password', 'locked', 'crm', 'erp', 'vpn', 'hello', 'password', 'locked', 'crm', 'erp', 'vpn', 'best', 'regard'] processed_text: ['password', 'hello', 'ask', 'reset', 'password', 'locked', 'crm', 'erp', 'vpn', 'hello', 'password', 'locked', 'crm', 'erp', 'vpn', 'best', 'regard'] list_processed_text: [['password'], ['hello'], ['ask'], ['reset'], ['password'], ['locked'], ['crm'], ['erp'], ['vpn'], ['hello'], ['password'], ['locked'], ['crm'], ['erp'], ['vpn'], ['best'], ['regard']] k: 968 len: <class 'list'> Data: ['skype', 'outlook', 'synch', 'issue', 'meeting', 'showing', 'skype', 'skype', 'outlook', 'synch', 'issue', 'meeting', 'showing', 'skype', 'error', 'message', 'attached', 'error', 'message', 'skype', 'business', 'exchange', 'making', 'connection'] processed_text: ['skype', 'outlook', 'synch', 'issue', 'meeting', 'showing', 'skype', 'skype', 'outlook', 'synch', 'issue', 'meeting', 'showing', 'skype', 'error', 'message', 'attached', 'error', 'message', 'skype', 'business', 'exchange', 'making', 'connection'] list_processed_text: [['skype'], ['outlook'], ['synch'], ['issue'], ['meeting'], ['showing'], ['skype'], ['skype'], ['outlook'], ['synch'], ['issue'], ['meeting'], ['showing'], ['skype'], ['error'], ['message'], ['attached'], ['error'], ['message'], ['skype'], ['business'], ['exchange'], ['making'], ['connection']] k: 969 len: <class 'list'> Data: ['outlook', 'hang', 'unable', 'open', 'outlook', 'hang', 'process', 'stage'] processed_text: ['outlook', 'hang', 'unable', 'open', 'outlook', 'hang', 'process', 'stage'] list_processed_text: [['outlook'], ['hang'], ['unable'], ['open'], ['outlook'], ['hang'], ['process'], ['stage']] k: 970 len: <class 'list'> Data: ['message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information', 'ncasrpvx', 'fijwprtv', 'pm', 'nwfodmhc', 'exurcwkm', 'tr', 'notification', 'po', 'dsfdb', 'hello', 'could', 'check', 'message'] processed_text: ['message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information', 'ncasrpvx', 'fijwprtv', 'pm', 'nwfodmhc', 'exurcwkm', 'tr', 'notification', 'po', 'dsfdb', 'hello', 'could', 'check', 'message'] list_processed_text: [['message'], ['sent'], ['company'], ['quarantine'], ['database'], ['please'], ['contact'], ['company'], ['help'], ['desk'], ['information'], ['ncasrpvx'], ['fijwprtv'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tr'], ['notification'], ['po'], ['dsfdb'], ['hello'], ['could'], ['check'], ['message']] k: 971 len: <class 'list'> Data: ['companyguest', 'account', 'day', 'mechmet', 'hswddwk', 'company', 'sllwdw', 'tel', 'email', 'period', 'til', 'tomorrow', 'mp'] processed_text: ['companyguest', 'account', 'day', 'mechmet', 'hswddwk', 'company', 'sllwdw', 'tel', 'email', 'period', 'til', 'tomorrow', 'mp'] list_processed_text: [['companyguest'], ['account'], ['day'], ['mechmet'], ['hswddwk'], ['company'], ['sllwdw'], ['tel'], ['email'], ['period'], ['til'], ['tomorrow'], ['mp']] k: 972 len: <class 'list'> Data: ['unable', 'print', 'driver', 'found', 'unable', 'print', 'driver', 'found'] processed_text: ['unable', 'print', 'driver', 'found', 'unable', 'print', 'driver', 'found'] list_processed_text: [['unable'], ['print'], ['driver'], ['found'], ['unable'], ['print'], ['driver'], ['found']] k: 973 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 974 len: <class 'list'> Data: ['access', 'ethic', 'see', 'failure', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] processed_text: ['access', 'ethic', 'see', 'failure', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] list_processed_text: [['access'], ['ethic'], ['see'], ['failure'], ['message'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp']] k: 975 len: <class 'list'> Data: ['need', 'change', 'password', 'need', 'change', 'password'] processed_text: ['need', 'change', 'password', 'need', 'change', 'password'] list_processed_text: [['need'], ['change'], ['password'], ['need'], ['change'], ['password']] k: 976 len: <class 'list'> Data: ['fails', 'log', 'erp', 'engineering', 'tool', 'changed', 'password', 'using', 'password', 'manager', 'locked', 'erp', 'used', 'password', 'manager', 'unlock', 'still', 'fails', 'log', 'erp', 'engineering', 'tool'] processed_text: ['fails', 'log', 'erp', 'engineering', 'tool', 'changed', 'password', 'using', 'password', 'manager', 'locked', 'erp', 'used', 'password', 'manager', 'unlock', 'still', 'fails', 'log', 'erp', 'engineering', 'tool'] list_processed_text: [['fails'], ['log'], ['erp'], ['engineering'], ['tool'], ['changed'], ['password'], ['using'], ['password'], ['manager'], ['locked'], ['erp'], ['used'], ['password'], ['manager'], ['unlock'], ['still'], ['fails'], ['log'], ['erp'], ['engineering'], ['tool']] k: 977 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 978 len: <class 'list'> Data: ['unable', 'open', 'netweaver', 'unable', 'open', 'netweaver'] processed_text: ['unable', 'open', 'netweaver', 'unable', 'open', 'netweaver'] list_processed_text: [['unable'], ['open'], ['netweaver'], ['unable'], ['open'], ['netweaver']] k: 979 len: <class 'list'> Data: ['skype', 'functioning', 'trying', 'use', 'skype', 'responding', 'working', 'earlier'] processed_text: ['skype', 'functioning', 'trying', 'use', 'skype', 'responding', 'working', 'earlier'] list_processed_text: [['skype'], ['functioning'], ['trying'], ['use'], ['skype'], ['responding'], ['working'], ['earlier']] k: 980 len: <class 'list'> Data: ['vip', 'user', 'unable', 'login', 'pc', 'vip', 'user', 'unable', 'login', 'pc', 'advised', 'user', 'restart', 'pc', 'try', 'login', 'new', 'password', 'go', 'reset', 'help', 'user', 'login', 'pc', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['vip', 'user', 'unable', 'login', 'pc', 'vip', 'user', 'unable', 'login', 'pc', 'advised', 'user', 'restart', 'pc', 'try', 'login', 'new', 'password', 'go', 'reset', 'help', 'user', 'login', 'pc', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['vip'], ['user'], ['unable'], ['login'], ['pc'], ['vip'], ['user'], ['unable'], ['login'], ['pc'], ['advised'], ['user'], ['restart'], ['pc'], ['try'], ['login'], ['new'], ['password'], ['go'], ['reset'], ['help'], ['user'], ['login'], ['pc'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 981 len: <class 'list'> Data: ['employment', 'status', 'new', 'non', 'employee', 'ycgkinov', 'czoparqg', 'u', 'temp', 'page', 'ensure', 'required', 'data', 'field', 'complete', 'submitting', 'use', 'template', 'consultant', 'temp', 'intern', 'vendor', 'etc', 'please', 'complete', 'entry', 'id', 'first', 'name', 'johddnthay', 'last', 'name', 'welwsswbtwe', 'location', 'usa', 'u', 'manager', 'sponsor', 'keddsdn', 'wethrybb', 'cost', 'center', 'bdm', 'external', 'company', 'name', 'kellkwdy', 'system', 'need', 'access', 'mii', 'mii', 'yes', 'yes', 'user', 'operator', 'admin', 'supervisor', 'operator', 'need', 'username', 'word', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date'] processed_text: ['employment', 'status', 'new', 'non', 'employee', 'ycgkinov', 'czoparqg', 'u', 'temp', 'page', 'ensure', 'required', 'data', 'field', 'complete', 'submitting', 'use', 'template', 'consultant', 'temp', 'intern', 'vendor', 'etc', 'please', 'complete', 'entry', 'id', 'first', 'name', 'johddnthay', 'last', 'name', 'welwsswbtwe', 'location', 'usa', 'u', 'manager', 'sponsor', 'keddsdn', 'wethrybb', 'cost', 'center', 'bdm', 'external', 'company', 'name', 'kellkwdy', 'system', 'need', 'access', 'mii', 'mii', 'yes', 'yes', 'user', 'operator', 'admin', 'supervisor', 'operator', 'need', 'username', 'word', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date'] list_processed_text: [['employment'], ['status'], ['new'], ['non'], ['employee'], ['ycgkinov'], ['czoparqg'], ['u'], ['temp'], ['page'], ['ensure'], ['required'], ['data'], ['field'], ['complete'], ['submitting'], ['use'], ['template'], ['consultant'], ['temp'], ['intern'], ['vendor'], ['etc'], ['please'], ['complete'], ['entry'], ['id'], ['first'], ['name'], ['johddnthay'], ['last'], ['name'], ['welwsswbtwe'], ['location'], ['usa'], ['u'], ['manager'], ['sponsor'], ['keddsdn'], ['wethrybb'], ['cost'], ['center'], ['bdm'], ['external'], ['company'], ['name'], ['kellkwdy'], ['system'], ['need'], ['access'], ['mii'], ['mii'], ['yes'], ['yes'], ['user'], ['operator'], ['admin'], ['supervisor'], ['operator'], ['need'], ['username'], ['word'], ['security'], ['note'], ['mii'], ['add'], ['im'], ['shopfloor'], ['user'], ['user'], ['sid'], ['account'], ['company'], ['email'], ['required'], ['person'], ['yes'], ['default'], ['k'], ['license'], ['assigned'], ['use'], ['owa'], ['collaboration'], ['platform'], ['outlook'], ['client'], ['skype'], ['outlook'], ['client'], ['skype'], ['required'], ['costly'], ['license'], ['must'], ['assigned'], ['used'], ['company'], ['computer'], ['assign'], ['k'], ['license'], ['access'], ['like'], ['required'], ['review'], ['copy'], ['person'], ['access'], ['approval'], ['requires'], ['access'], ['date'], ['computer'], ['owned'], ['company'], ['yes'], ['laptop'], ['desktop'], ['computer'], ['name'], ['remote'], ['access'], ['vpn'], ['required'], ['yes'], ['please'], ['provide'], ['application'], ['erp'], ['system'], ['network'], ['server'], ['user'], ['need'], ['access'], ['via'], ['vpn'], ['start'], ['date']] k: 982 len: <class 'list'> Data: ['business', 'client', 'hello', 'business', 'client', 'business', 'client', 'vpn', 'ktghvuwr', 'uwtakcmj', 'sr', 'application', 'engineer', 'optimization', 'team'] processed_text: ['business', 'client', 'hello', 'business', 'client', 'business', 'client', 'vpn', 'ktghvuwr', 'uwtakcmj', 'sr', 'application', 'engineer', 'optimization', 'team'] list_processed_text: [['business'], ['client'], ['hello'], ['business'], ['client'], ['business'], ['client'], ['vpn'], ['ktghvuwr'], ['uwtakcmj'], ['sr'], ['application'], ['engineer'], ['optimization'], ['team']] k: 983 len: <class 'list'> Data: ['company', 'guest', 'account', 'set', 'company', 'guest', 'account', 'set'] processed_text: ['company', 'guest', 'account', 'set', 'company', 'guest', 'account', 'set'] list_processed_text: [['company'], ['guest'], ['account'], ['set'], ['company'], ['guest'], ['account'], ['set']] k: 984 len: <class 'list'> Data: ['west', 'coast', 'email', 'box', 'grab', 'email', 'color', 'code', 'undating', 'updating', 'people', 'working', 'email', 'box', 'see', 'email', 'duplicating', 'work'] processed_text: ['west', 'coast', 'email', 'box', 'grab', 'email', 'color', 'code', 'undating', 'updating', 'people', 'working', 'email', 'box', 'see', 'email', 'duplicating', 'work'] list_processed_text: [['west'], ['coast'], ['email'], ['box'], ['grab'], ['email'], ['color'], ['code'], ['undating'], ['updating'], ['people'], ['working'], ['email'], ['box'], ['see'], ['email'], ['duplicating'], ['work']] k: 985 len: <class 'list'> Data: ['query', 'regarding', 'unread', 'sync', 'failure', 'email', 'query', 'regarding', 'unread', 'sync', 'failure', 'email'] processed_text: ['query', 'regarding', 'unread', 'sync', 'failure', 'email', 'query', 'regarding', 'unread', 'sync', 'failure', 'email'] list_processed_text: [['query'], ['regarding'], ['unread'], ['sync'], ['failure'], ['email'], ['query'], ['regarding'], ['unread'], ['sync'], ['failure'], ['email']] k: 986 len: <class 'list'> Data: ['unable', 'login', 'mii', 'system', 'yrhackgt', 'sfhxckgq', 'unable', 'login', 'mii', 'system', 'yrhackgt', 'sfhxckgq', 'checked', 'account', 'found', 'locked', 'suggested', 'user', 'unlock', 'account', 'password', 'management', 'tool', 'try', 'logging', 'time'] processed_text: ['unable', 'login', 'mii', 'system', 'yrhackgt', 'sfhxckgq', 'unable', 'login', 'mii', 'system', 'yrhackgt', 'sfhxckgq', 'checked', 'account', 'found', 'locked', 'suggested', 'user', 'unlock', 'account', 'password', 'management', 'tool', 'try', 'logging', 'time'] list_processed_text: [['unable'], ['login'], ['mii'], ['system'], ['yrhackgt'], ['sfhxckgq'], ['unable'], ['login'], ['mii'], ['system'], ['yrhackgt'], ['sfhxckgq'], ['checked'], ['account'], ['found'], ['locked'], ['suggested'], ['user'], ['unlock'], ['account'], ['password'], ['management'], ['tool'], ['try'], ['logging'], ['time']] k: 987 len: <class 'list'> Data: ['unable', 'launch', 'ethic', 'flash', 'player', 'issue', 'unable', 'launch', 'ethic', 'flash', 'player', 'issue'] processed_text: ['unable', 'launch', 'ethic', 'flash', 'player', 'issue', 'unable', 'launch', 'ethic', 'flash', 'player', 'issue'] list_processed_text: [['unable'], ['launch'], ['ethic'], ['flash'], ['player'], ['issue'], ['unable'], ['launch'], ['ethic'], ['flash'], ['player'], ['issue']] k: 988 len: <class 'list'> Data: ['unable', 'access', 'time', 'unable', 'access', 'time'] processed_text: ['unable', 'access', 'time', 'unable', 'access', 'time'] list_processed_text: [['unable'], ['access'], ['time'], ['unable'], ['access'], ['time']] k: 989 len: <class 'list'> Data: ['pls', 'reset', 'sid', 'crm', 'production', 'access', 'name', 'francestrhuco', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'pls', 'reset', 'sid', 'crm', 'production', 'access', 'thx'] processed_text: ['pls', 'reset', 'sid', 'crm', 'production', 'access', 'name', 'francestrhuco', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'pls', 'reset', 'sid', 'crm', 'production', 'access', 'thx'] list_processed_text: [['pls'], ['reset'], ['sid'], ['crm'], ['production'], ['access'], ['name'], ['francestrhuco'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['pls'], ['reset'], ['sid'], ['crm'], ['production'], ['access'], ['thx']] k: 990 len: <class 'list'> Data: ['cannot', 'get', 'thru', 'customer', 'application', 'support', 'something', 'wrong', 'phone', 'get', 'mesaage', 'number'] processed_text: ['cannot', 'get', 'thru', 'customer', 'application', 'support', 'something', 'wrong', 'phone', 'get', 'mesaage', 'number'] list_processed_text: [['cannot'], ['get'], ['thru'], ['customer'], ['application'], ['support'], ['something'], ['wrong'], ['phone'], ['get'], ['mesaage'], ['number']] k: 991 len: <class 'list'> Data: ['microsoft', 'outlook', 'responding', 'cannot', 'open', 'krthdelly', 'sthytachnik', 'phone', 'usa', 'location', 'login'] processed_text: ['microsoft', 'outlook', 'responding', 'cannot', 'open', 'krthdelly', 'sthytachnik', 'phone', 'usa', 'location', 'login'] list_processed_text: [['microsoft'], ['outlook'], ['responding'], ['cannot'], ['open'], ['krthdelly'], ['sthytachnik'], ['phone'], ['usa'], ['location'], ['login']] k: 992 len: <class 'list'> Data: ['called', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr', 'called', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr'] processed_text: ['called', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr', 'called', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr'] list_processed_text: [['called'], ['unlock'], ['nvyjtmca'], ['xjhpznds'], ['account'], ['user'], ['id'], ['datacntr'], ['called'], ['unlock'], ['nvyjtmca'], ['xjhpznds'], ['account'], ['user'], ['id'], ['datacntr']] k: 993 len: <class 'list'> Data: ['please', 'set', 'scanner', 'r', 'printer', 'reset', 'factory', 'setting', 'konica', 'please', 'set', 'scanner', 'r', 'printer', 'reset', 'factory', 'setting', 'konica'] processed_text: ['please', 'set', 'scanner', 'r', 'printer', 'reset', 'factory', 'setting', 'konica', 'please', 'set', 'scanner', 'r', 'printer', 'reset', 'factory', 'setting', 'konica'] list_processed_text: [['please'], ['set'], ['scanner'], ['r'], ['printer'], ['reset'], ['factory'], ['setting'], ['konica'], ['please'], ['set'], ['scanner'], ['r'], ['printer'], ['reset'], ['factory'], ['setting'], ['konica']] k: 994 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'management', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'management', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 995 len: <class 'list'> Data: ['bei', 'herrn', 'potthryzler', 'benutzerkennung', 'potsffwzlo', 'geht', 'eu', 'tool', 'rechner', 'empwa', 'nicht', 'fehlermeldung', 'systemfehler', 'andh', 'mr', 'potthryzler', 'user', 'identification', 'potzlow', 'eu', 'tool', 'go', 'computer', 'empwa', 'error', 'message', 'system', 'error', 'h'] processed_text: ['bei', 'herrn', 'potthryzler', 'benutzerkennung', 'potsffwzlo', 'geht', 'eu', 'tool', 'rechner', 'empwa', 'nicht', 'fehlermeldung', 'systemfehler', 'andh', 'mr', 'potthryzler', 'user', 'identification', 'potzlow', 'eu', 'tool', 'go', 'computer', 'empwa', 'error', 'message', 'system', 'error', 'h'] list_processed_text: [['bei'], ['herrn'], ['potthryzler'], ['benutzerkennung'], ['potsffwzlo'], ['geht'], ['eu'], ['tool'], ['rechner'], ['empwa'], ['nicht'], ['fehlermeldung'], ['systemfehler'], ['andh'], ['mr'], ['potthryzler'], ['user'], ['identification'], ['potzlow'], ['eu'], ['tool'], ['go'], ['computer'], ['empwa'], ['error'], ['message'], ['system'], ['error'], ['h']] k: 996 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 997 len: <class 'list'> Data: ['problem', 'mit', 'login', 'br', 'usalikfj', 'lfmpxbcn', 'problem', 'mit', 'login', 'br', 'usalikfj', 'lfmpxbcn'] processed_text: ['problem', 'mit', 'login', 'br', 'usalikfj', 'lfmpxbcn', 'problem', 'mit', 'login', 'br', 'usalikfj', 'lfmpxbcn'] list_processed_text: [['problem'], ['mit'], ['login'], ['br'], ['usalikfj'], ['lfmpxbcn'], ['problem'], ['mit'], ['login'], ['br'], ['usalikfj'], ['lfmpxbcn']] k: 998 len: <class 'list'> Data: ['erp', 'good', 'morning', 'unable', 'log', 'erp', 'normal', 'review', 'doyhtuug', 'endlkglfeghart', 'determined', 'switchover', 'server', 'please', 'correct', 'log', 'normal'] processed_text: ['erp', 'good', 'morning', 'unable', 'log', 'erp', 'normal', 'review', 'doyhtuug', 'endlkglfeghart', 'determined', 'switchover', 'server', 'please', 'correct', 'log', 'normal'] list_processed_text: [['erp'], ['good'], ['morning'], ['unable'], ['log'], ['erp'], ['normal'], ['review'], ['doyhtuug'], ['endlkglfeghart'], ['determined'], ['switchover'], ['server'], ['please'], ['correct'], ['log'], ['normal']] k: 999 len: <class 'list'> Data: ['unable', 'login', 'sid', 'unable', 'login', 'sid'] processed_text: ['unable', 'login', 'sid', 'unable', 'login', 'sid'] list_processed_text: [['unable'], ['login'], ['sid'], ['unable'], ['login'], ['sid']] k: 1000 len: <class 'list'> Data: ['winwip', 'working', 'asking', 'buy', 'trial', 'version', 'validity', 'expired', 'winwip', 'working', 'asking', 'buy', 'trial', 'version', 'validity', 'expired'] processed_text: ['winwip', 'working', 'asking', 'buy', 'trial', 'version', 'validity', 'expired', 'winwip', 'working', 'asking', 'buy', 'trial', 'version', 'validity', 'expired'] list_processed_text: [['winwip'], ['working'], ['asking'], ['buy'], ['trial'], ['version'], ['validity'], ['expired'], ['winwip'], ['working'], ['asking'], ['buy'], ['trial'], ['version'], ['validity'], ['expired']] k: 1001 len: <class 'list'> Data: ['erp', 'ksff', 'dashbankrds', 'need', 'push', 'computer', 'lrrw', 'please', 'push', 'erp', 'mii', 'ksff', 'dashbankrd', 'computer'] processed_text: ['erp', 'ksff', 'dashbankrds', 'need', 'push', 'computer', 'lrrw', 'please', 'push', 'erp', 'mii', 'ksff', 'dashbankrd', 'computer'] list_processed_text: [['erp'], ['ksff'], ['dashbankrds'], ['need'], ['push'], ['computer'], ['lrrw'], ['please'], ['push'], ['erp'], ['mii'], ['ksff'], ['dashbankrd'], ['computer']] k: 1002 len: <class 'list'> Data: ['need', 'access', 'erp', 'sid', 'like', 'rpgcdbfa', 'reuwibpt', 'need', 'access', 'erp', 'sid', 'like', 'rpgcdbfa', 'reuwibpt'] processed_text: ['need', 'access', 'erp', 'sid', 'like', 'rpgcdbfa', 'reuwibpt', 'need', 'access', 'erp', 'sid', 'like', 'rpgcdbfa', 'reuwibpt'] list_processed_text: [['need'], ['access'], ['erp'], ['sid'], ['like'], ['rpgcdbfa'], ['reuwibpt'], ['need'], ['access'], ['erp'], ['sid'], ['like'], ['rpgcdbfa'], ['reuwibpt']] k: 1003 len: <class 'list'> Data: ['user', 'need', 'help', 'login', 'erp', 'sid', 'user', 'need', 'help', 'login', 'erp', 'sid', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'userlogin', 'erp', 'sid', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'login', 'erp', 'sid', 'user', 'need', 'help', 'login', 'erp', 'sid', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'userlogin', 'erp', 'sid', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['login'], ['erp'], ['sid'], ['user'], ['need'], ['help'], ['login'], ['erp'], ['sid'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['userlogin'], ['erp'], ['sid'], ['issue'], ['resolved']] k: 1004 len: <class 'list'> Data: ['need', 'configuration', 'new', 'pc', 'need', 'configuration', 'new', 'pc'] processed_text: ['need', 'configuration', 'new', 'pc', 'need', 'configuration', 'new', 'pc'] list_processed_text: [['need'], ['configuration'], ['new'], ['pc'], ['need'], ['configuration'], ['new'], ['pc']] k: 1005 len: <class 'list'> Data: ['training', 'polycom', 'hellow', 'someone', 'help', 'install', 'polycom', 'issue'] processed_text: ['training', 'polycom', 'hellow', 'someone', 'help', 'install', 'polycom', 'issue'] list_processed_text: [['training'], ['polycom'], ['hellow'], ['someone'], ['help'], ['install'], ['polycom'], ['issue']] k: 1006 len: <class 'list'> Data: ['please', 'give', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'user', 'pildladjadga', 'please', 'give', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'user', 'pildladjadga'] processed_text: ['please', 'give', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'user', 'pildladjadga', 'please', 'give', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'user', 'pildladjadga'] list_processed_text: [['please'], ['give'], ['access'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['system'], ['user'], ['pildladjadga'], ['please'], ['give'], ['access'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['system'], ['user'], ['pildladjadga']] k: 1007 len: <class 'list'> Data: ['acces', 'sid', 'hello', 'due', 'travel', 'tool', 'uacyltoe', 'hxgayczeing', 'please', 'allow', 'acces'] processed_text: ['acces', 'sid', 'hello', 'due', 'travel', 'tool', 'uacyltoe', 'hxgayczeing', 'please', 'allow', 'acces'] list_processed_text: [['acces'], ['sid'], ['hello'], ['due'], ['travel'], ['tool'], ['uacyltoe'], ['hxgayczeing'], ['please'], ['allow'], ['acces']] k: 1008 len: <class 'list'> Data: ['collaboration', 'platform', 'sync', 'keep', 'prompting', 'password', 'changed', 'password', 'yesterday', 'ever', 'since', 'keep', 'getting', 'message', 'enter', 'email', 'password', 'nothing', 'happens', 'get', 'prompted', 'enter', 'one', 'note', 'syncing', 'issue', 'evry', 'time', 'work', 'file', 'keep', 'getting', 'prompt'] processed_text: ['collaboration', 'platform', 'sync', 'keep', 'prompting', 'password', 'changed', 'password', 'yesterday', 'ever', 'since', 'keep', 'getting', 'message', 'enter', 'email', 'password', 'nothing', 'happens', 'get', 'prompted', 'enter', 'one', 'note', 'syncing', 'issue', 'evry', 'time', 'work', 'file', 'keep', 'getting', 'prompt'] list_processed_text: [['collaboration'], ['platform'], ['sync'], ['keep'], ['prompting'], ['password'], ['changed'], ['password'], ['yesterday'], ['ever'], ['since'], ['keep'], ['getting'], ['message'], ['enter'], ['email'], ['password'], ['nothing'], ['happens'], ['get'], ['prompted'], ['enter'], ['one'], ['note'], ['syncing'], ['issue'], ['evry'], ['time'], ['work'], ['file'], ['keep'], ['getting'], ['prompt']] k: 1009 len: <class 'list'> Data: ['npc', 'erp', 'system', 'stuck', 'due', 'employee', 'leaving', 'company', 'npc', 'created', 'svuxizgr', 'mkynswqd', 'left', 'company', 'task', 'list', 'looked', 'complete', 'left', 'material', 'fert', 'assigned', 'coordinator', 'task', 'wont', 'complete'] processed_text: ['npc', 'erp', 'system', 'stuck', 'due', 'employee', 'leaving', 'company', 'npc', 'created', 'svuxizgr', 'mkynswqd', 'left', 'company', 'task', 'list', 'looked', 'complete', 'left', 'material', 'fert', 'assigned', 'coordinator', 'task', 'wont', 'complete'] list_processed_text: [['npc'], ['erp'], ['system'], ['stuck'], ['due'], ['employee'], ['leaving'], ['company'], ['npc'], ['created'], ['svuxizgr'], ['mkynswqd'], ['left'], ['company'], ['task'], ['list'], ['looked'], ['complete'], ['left'], ['material'], ['fert'], ['assigned'], ['coordinator'], ['task'], ['wont'], ['complete']] k: 1010 len: <class 'list'> Data: ['ticket', 'cpp', 'user', 'id', 'password', 'change', 'needed', 'user', 'please', 'assign', 'bokrgadgsu', 'esdwduobrlcn', 'hello', 'drwfubia', 'per', 'conversation', 'two', 'case', 'unable', 'change', 'password', 'erp', 'system', 'password', 'reset', 'daypay', 'know', 'ticket', 'assigned', 'created', 'ticket', 'assigned', 'someone', 'go', 'someone', 'else', 'please', 'reassign', 'accordingly', 'cphemg', 'erp', 'sid', 'account', 'locked', 'login', 'possible', 'cphemg', 'erp', 'sid', 'account', 'locked', 'login', 'possible'] processed_text: ['ticket', 'cpp', 'user', 'id', 'password', 'change', 'needed', 'user', 'please', 'assign', 'bokrgadgsu', 'esdwduobrlcn', 'hello', 'drwfubia', 'per', 'conversation', 'two', 'case', 'unable', 'change', 'password', 'erp', 'system', 'password', 'reset', 'daypay', 'know', 'ticket', 'assigned', 'created', 'ticket', 'assigned', 'someone', 'go', 'someone', 'else', 'please', 'reassign', 'accordingly', 'cphemg', 'erp', 'sid', 'account', 'locked', 'login', 'possible', 'cphemg', 'erp', 'sid', 'account', 'locked', 'login', 'possible'] list_processed_text: [['ticket'], ['cpp'], ['user'], ['id'], ['password'], ['change'], ['needed'], ['user'], ['please'], ['assign'], ['bokrgadgsu'], ['esdwduobrlcn'], ['hello'], ['drwfubia'], ['per'], ['conversation'], ['two'], ['case'], ['unable'], ['change'], ['password'], ['erp'], ['system'], ['password'], ['reset'], ['daypay'], ['know'], ['ticket'], ['assigned'], ['created'], ['ticket'], ['assigned'], ['someone'], ['go'], ['someone'], ['else'], ['please'], ['reassign'], ['accordingly'], ['cphemg'], ['erp'], ['sid'], ['account'], ['locked'], ['login'], ['possible'], ['cphemg'], ['erp'], ['sid'], ['account'], ['locked'], ['login'], ['possible']] k: 1011 len: <class 'list'> Data: ['need', 'access', 'eagcldaten', 'aese', 'leitung', 'csd', 'emealeitung', 'need', 'access', 'eagcldaten', 'aese', 'leitung', 'csd', 'emealeitung'] processed_text: ['need', 'access', 'eagcldaten', 'aese', 'leitung', 'csd', 'emealeitung', 'need', 'access', 'eagcldaten', 'aese', 'leitung', 'csd', 'emealeitung'] list_processed_text: [['need'], ['access'], ['eagcldaten'], ['aese'], ['leitung'], ['csd'], ['emealeitung'], ['need'], ['access'], ['eagcldaten'], ['aese'], ['leitung'], ['csd'], ['emealeitung']] k: 1012 len: <class 'list'> Data: ['folder', 'deletion', 'drive', 'hello', 'could', 'please', 'help', 'retrieving', 'deleted', 'folder', 'drive', 'link', 'folder', 'name', 'vacation', 'plan', 'vacation', 'plan', 'update', 'file', 'hostname', 'team', 'globalengservices', 'tcb', 'graphic', 'vacation', 'plan', 'team', 'vacation', 'update', 'xlsx', 'please', 'support'] processed_text: ['folder', 'deletion', 'drive', 'hello', 'could', 'please', 'help', 'retrieving', 'deleted', 'folder', 'drive', 'link', 'folder', 'name', 'vacation', 'plan', 'vacation', 'plan', 'update', 'file', 'hostname', 'team', 'globalengservices', 'tcb', 'graphic', 'vacation', 'plan', 'team', 'vacation', 'update', 'xlsx', 'please', 'support'] list_processed_text: [['folder'], ['deletion'], ['drive'], ['hello'], ['could'], ['please'], ['help'], ['retrieving'], ['deleted'], ['folder'], ['drive'], ['link'], ['folder'], ['name'], ['vacation'], ['plan'], ['vacation'], ['plan'], ['update'], ['file'], ['hostname'], ['team'], ['globalengservices'], ['tcb'], ['graphic'], ['vacation'], ['plan'], ['team'], ['vacation'], ['update'], ['xlsx'], ['please'], ['support']] k: 1013 len: <class 'list'> Data: ['able', 'view', 'drawing', 'business', 'client', 'able', 'view', 'drawing', 'business', 'client'] processed_text: ['able', 'view', 'drawing', 'business', 'client', 'able', 'view', 'drawing', 'business', 'client'] list_processed_text: [['able'], ['view'], ['drawing'], ['business'], ['client'], ['able'], ['view'], ['drawing'], ['business'], ['client']] k: 1014 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 1015 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1016 len: <class 'list'> Data: ['impact', 'award', 'hello,', 'cannot', 'log', 'impact', 'award', 'program', 'reset', 'password,', 'best', 'regard', 'lzvdyouh', 'imqgfadb'] processed_text: ['impact', 'award', 'hello,', 'cannot', 'log', 'impact', 'award', 'program', 'reset', 'password,', 'best', 'regard', 'lzvdyouh', 'imqgfadb'] list_processed_text: [['impact'], ['award'], ['hello,'], ['cannot'], ['log'], ['impact'], ['award'], ['program'], ['reset'], ['password,'], ['best'], ['regard'], ['lzvdyouh'], ['imqgfadb']] k: 1017 len: <class 'list'> Data: ['erp', 'access', 'issue', 'reset', 'password', 'sid', 'pandethrypv', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'pandethrypv'] processed_text: ['erp', 'access', 'issue', 'reset', 'password', 'sid', 'pandethrypv', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'pandethrypv'] list_processed_text: [['erp'], ['access'], ['issue'], ['reset'], ['password'], ['sid'], ['pandethrypv'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user'], ['pandethrypv']] k: 1018 len: <class 'list'> Data: ['folder', 'access', 'globalace', 'holemaking', 'ha', 'please', 'see', 'red', 'viele', 'gr', 'best'] processed_text: ['folder', 'access', 'globalace', 'holemaking', 'ha', 'please', 'see', 'red', 'viele', 'gr', 'best'] list_processed_text: [['folder'], ['access'], ['globalace'], ['holemaking'], ['ha'], ['please'], ['see'], ['red'], ['viele'], ['gr'], ['best']] k: 1019 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 1020 len: <class 'list'> Data: ['able', 'access', 'walkme', 'plugin', 'every', 'time', 'click', 'walkme', 'link', 'get', 'upgrade', 'plugin', 'message', 'get', 'message', 'new', 'tab', 'able', 'access', 'walkme', 'plugin', 'hr', 'tool'] processed_text: ['able', 'access', 'walkme', 'plugin', 'every', 'time', 'click', 'walkme', 'link', 'get', 'upgrade', 'plugin', 'message', 'get', 'message', 'new', 'tab', 'able', 'access', 'walkme', 'plugin', 'hr', 'tool'] list_processed_text: [['able'], ['access'], ['walkme'], ['plugin'], ['every'], ['time'], ['click'], ['walkme'], ['link'], ['get'], ['upgrade'], ['plugin'], ['message'], ['get'], ['message'], ['new'], ['tab'], ['able'], ['access'], ['walkme'], ['plugin'], ['hr'], ['tool']] k: 1021 len: <class 'list'> Data: ['german', 'caller', 'german', 'caller'] processed_text: ['german', 'caller', 'german', 'caller'] list_processed_text: [['german'], ['caller'], ['german'], ['caller']] k: 1022 len: <class 'list'> Data: ['unable', 'get', 'old', 'mail', 'outlook', 'hello', 'please', 'note', 'unable', 'get', 'old', 'mail', 'inbox', 'oldest', 'mail', 'get', 'need', 'old', 'mail', 'also', 'important', 'data', 'related', 'customer'] processed_text: ['unable', 'get', 'old', 'mail', 'outlook', 'hello', 'please', 'note', 'unable', 'get', 'old', 'mail', 'inbox', 'oldest', 'mail', 'get', 'need', 'old', 'mail', 'also', 'important', 'data', 'related', 'customer'] list_processed_text: [['unable'], ['get'], ['old'], ['mail'], ['outlook'], ['hello'], ['please'], ['note'], ['unable'], ['get'], ['old'], ['mail'], ['inbox'], ['oldest'], ['mail'], ['get'], ['need'], ['old'], ['mail'], ['also'], ['important'], ['data'], ['related'], ['customer']] k: 1023 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 1024 len: <class 'list'> Data: ['able', 'open', 'existing', 'hana', 'report', 'able', 'open', 'existing', 'hana', 'report'] processed_text: ['able', 'open', 'existing', 'hana', 'report', 'able', 'open', 'existing', 'hana', 'report'] list_processed_text: [['able'], ['open'], ['existing'], ['hana'], ['report'], ['able'], ['open'], ['existing'], ['hana'], ['report']] k: 1025 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1026 len: <class 'list'> Data: ['collaboration', 'platform', 'hello', 'office', 'collaboration', 'platform', 'executing', 'c', 'pl', 'help'] processed_text: ['collaboration', 'platform', 'hello', 'office', 'collaboration', 'platform', 'executing', 'c', 'pl', 'help'] list_processed_text: [['collaboration'], ['platform'], ['hello'], ['office'], ['collaboration'], ['platform'], ['executing'], ['c'], ['pl'], ['help']] k: 1027 len: <class 'list'> Data: ['termination', 'ckfoba', 'wgnejyvt', 'effective', 'approved', 'termination', 'ckfoba', 'wgnejyvt', 'effective', 'approved', 'account', 'yet', 'disabled'] processed_text: ['termination', 'ckfoba', 'wgnejyvt', 'effective', 'approved', 'termination', 'ckfoba', 'wgnejyvt', 'effective', 'approved', 'account', 'yet', 'disabled'] list_processed_text: [['termination'], ['ckfoba'], ['wgnejyvt'], ['effective'], ['approved'], ['termination'], ['ckfoba'], ['wgnejyvt'], ['effective'], ['approved'], ['account'], ['yet'], ['disabled']] k: 1028 len: <class 'list'> Data: ['waste', 'email', 'workflow', 'system', 'hello', 'helper', 'recently', 'always', 'got', 'email', 'working', 'flow', 'system', 'remind', 'approve', 'pr', 'pr', 'already', 'erp', 'help', 'check'] processed_text: ['waste', 'email', 'workflow', 'system', 'hello', 'helper', 'recently', 'always', 'got', 'email', 'working', 'flow', 'system', 'remind', 'approve', 'pr', 'pr', 'already', 'erp', 'help', 'check'] list_processed_text: [['waste'], ['email'], ['workflow'], ['system'], ['hello'], ['helper'], ['recently'], ['always'], ['got'], ['email'], ['working'], ['flow'], ['system'], ['remind'], ['approve'], ['pr'], ['pr'], ['already'], ['erp'], ['help'], ['check']] k: 1029 len: <class 'list'> Data: ['able', 'take', 'skype', 'meeting', 'via', 'head', 'phone', 'laptop', 'model', 'dell', 'precision'] processed_text: ['able', 'take', 'skype', 'meeting', 'via', 'head', 'phone', 'laptop', 'model', 'dell', 'precision'] list_processed_text: [['able'], ['take'], ['skype'], ['meeting'], ['via'], ['head'], ['phone'], ['laptop'], ['model'], ['dell'], ['precision']] k: 1030 len: <class 'list'> Data: ['belgium', 'callsariving', 'agnwfwieszka', 'kubiadfffk', 'belgium', 'costumer', 'calling', 'polish', 'phone', 'number', 'agnwfwieszka', 'something'] processed_text: ['belgium', 'callsariving', 'agnwfwieszka', 'kubiadfffk', 'belgium', 'costumer', 'calling', 'polish', 'phone', 'number', 'agnwfwieszka', 'something'] list_processed_text: [['belgium'], ['callsariving'], ['agnwfwieszka'], ['kubiadfffk'], ['belgium'], ['costumer'], ['calling'], ['polish'], ['phone'], ['number'], ['agnwfwieszka'], ['something']] k: 1031 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1032 len: <class 'list'> Data: ['hostname', 'volume', 'consumed', 'gb', 'currently', 'gb', 'space', 'available', 'hostname', 'volume', 'consumed', 'gb', 'currently', 'gb', 'space', 'available'] processed_text: ['hostname', 'volume', 'consumed', 'gb', 'currently', 'gb', 'space', 'available', 'hostname', 'volume', 'consumed', 'gb', 'currently', 'gb', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['consumed'], ['gb'], ['currently'], ['gb'], ['space'], ['available'], ['hostname'], ['volume'], ['consumed'], ['gb'], ['currently'], ['gb'], ['space'], ['available']] k: 1033 len: <class 'list'> Data: ['power', 'outage', 'company', 'na', 'mex', 'juarez', 'dmvpn', 'rtr', 'located', 'juarez', 'mx', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'company', 'na', 'mex', 'juarez', 'dmvpn', 'rtr', 'located', 'juarez', 'mx', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['company'], ['na'], ['mex'], ['juarez'], ['dmvpn'], ['rtr'], ['located'], ['juarez'], ['mx'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1034 len: <class 'list'> Data: ['l', 'fter', 'defective', 'industrial', 'control', 'monitor', 'niptbwdq', 'csenjruz', 'l', 'fter', 'defective', 'industrial', 'control', 'monitor', 'niptbwdq', 'csenjruz'] processed_text: ['l', 'fter', 'defective', 'industrial', 'control', 'monitor', 'niptbwdq', 'csenjruz', 'l', 'fter', 'defective', 'industrial', 'control', 'monitor', 'niptbwdq', 'csenjruz'] list_processed_text: [['l'], ['fter'], ['defective'], ['industrial'], ['control'], ['monitor'], ['niptbwdq'], ['csenjruz'], ['l'], ['fter'], ['defective'], ['industrial'], ['control'], ['monitor'], ['niptbwdq'], ['csenjruz']] k: 1035 len: <class 'list'> Data: ['reinstall', 'win', 'qidgvtwa', 'qvbutayx', 'reinstall', 'win', 'qidgvtwa', 'qvbutayx'] processed_text: ['reinstall', 'win', 'qidgvtwa', 'qvbutayx', 'reinstall', 'win', 'qidgvtwa', 'qvbutayx'] list_processed_text: [['reinstall'], ['win'], ['qidgvtwa'], ['qvbutayx'], ['reinstall'], ['win'], ['qidgvtwa'], ['qvbutayx']] k: 1036 len: <class 'list'> Data: ['problem', 'camera', 'monitor', 'good', 'morning', 'dhthykts', 'connect', 'camera', 'new', 'monitor', 'need', 'cable', 'hdmi', 'light', 'gray', 'connection', 'dell', 'monitor', 'least', 'first', 'camera', 'set', 'alternative', 'course', 'also', 'open'] processed_text: ['problem', 'camera', 'monitor', 'good', 'morning', 'dhthykts', 'connect', 'camera', 'new', 'monitor', 'need', 'cable', 'hdmi', 'light', 'gray', 'connection', 'dell', 'monitor', 'least', 'first', 'camera', 'set', 'alternative', 'course', 'also', 'open'] list_processed_text: [['problem'], ['camera'], ['monitor'], ['good'], ['morning'], ['dhthykts'], ['connect'], ['camera'], ['new'], ['monitor'], ['need'], ['cable'], ['hdmi'], ['light'], ['gray'], ['connection'], ['dell'], ['monitor'], ['least'], ['first'], ['camera'], ['set'], ['alternative'], ['course'], ['also'], ['open']] k: 1037 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'item', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'legal', 'control', 'issue', 'material', 'extended', 'plant', 'plant', 'rqfhiong', 'zkwfqagb', 'team', 'legal', 'control', 'group', 'extend', 'automatically', 'also', 'fert', 'product', 'poland', 'like', 'eu', 'set', 'like', 'ear', 'problem', 'new', 'material', 'extended', 'plant', 'plant', 'country', 'pl', 'issue', 'czech', 'republic', 'plant', 'turkey', 'plant', 'material', 'released', 'manually', 'import', 'export', 'manager', 'rlhuwmve', 'krcfhoxj', 'slrgconp', 'onukdesq', 'chrsddiwds', 'dwdbertfsych', 'manually', 'process', 'take', 'lot', 'time', 'export', 'team', 'csrs', 'every', 'day', 'often', 'block', 'invoicing', 'sale', 'tool', 'test', 'demonstration', 'consigment', 'stock', 'material', 'example', 'relased', 'manually', 'petqkjra', 'please', 'check', 'problem', 'find', 'root', 'cause', 'solve'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'item', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'legal', 'control', 'issue', 'material', 'extended', 'plant', 'plant', 'rqfhiong', 'zkwfqagb', 'team', 'legal', 'control', 'group', 'extend', 'automatically', 'also', 'fert', 'product', 'poland', 'like', 'eu', 'set', 'like', 'ear', 'problem', 'new', 'material', 'extended', 'plant', 'plant', 'country', 'pl', 'issue', 'czech', 'republic', 'plant', 'turkey', 'plant', 'material', 'released', 'manually', 'import', 'export', 'manager', 'rlhuwmve', 'krcfhoxj', 'slrgconp', 'onukdesq', 'chrsddiwds', 'dwdbertfsych', 'manually', 'process', 'take', 'lot', 'time', 'export', 'team', 'csrs', 'every', 'day', 'often', 'block', 'invoicing', 'sale', 'tool', 'test', 'demonstration', 'consigment', 'stock', 'material', 'example', 'relased', 'manually', 'petqkjra', 'please', 'check', 'problem', 'find', 'root', 'cause', 'solve'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['item'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['legal'], ['control'], ['issue'], ['material'], ['extended'], ['plant'], ['plant'], ['rqfhiong'], ['zkwfqagb'], ['team'], ['legal'], ['control'], ['group'], ['extend'], ['automatically'], ['also'], ['fert'], ['product'], ['poland'], ['like'], ['eu'], ['set'], ['like'], ['ear'], ['problem'], ['new'], ['material'], ['extended'], ['plant'], ['plant'], ['country'], ['pl'], ['issue'], ['czech'], ['republic'], ['plant'], ['turkey'], ['plant'], ['material'], ['released'], ['manually'], ['import'], ['export'], ['manager'], ['rlhuwmve'], ['krcfhoxj'], ['slrgconp'], ['onukdesq'], ['chrsddiwds'], ['dwdbertfsych'], ['manually'], ['process'], ['take'], ['lot'], ['time'], ['export'], ['team'], ['csrs'], ['every'], ['day'], ['often'], ['block'], ['invoicing'], ['sale'], ['tool'], ['test'], ['demonstration'], ['consigment'], ['stock'], ['material'], ['example'], ['relased'], ['manually'], ['petqkjra'], ['please'], ['check'], ['problem'], ['find'], ['root'], ['cause'], ['solve']] k: 1038 len: <class 'list'> Data: ['problem', 'fp', 'computer', 'remains', 'ngen', 'ksxchbaf', 'rhquvzfm', 'problem', 'fp', 'computer', 'remains', 'ngen', 'ksxchbaf', 'rhquvzfm'] processed_text: ['problem', 'fp', 'computer', 'remains', 'ngen', 'ksxchbaf', 'rhquvzfm', 'problem', 'fp', 'computer', 'remains', 'ngen', 'ksxchbaf', 'rhquvzfm'] list_processed_text: [['problem'], ['fp'], ['computer'], ['remains'], ['ngen'], ['ksxchbaf'], ['rhquvzfm'], ['problem'], ['fp'], ['computer'], ['remains'], ['ngen'], ['ksxchbaf'], ['rhquvzfm']] k: 1039 len: <class 'list'> Data: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 1040 len: <class 'list'> Data: ['amssm', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'gb', 'currently', 'mb', 'available', 'amssm', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'gb', 'currently', 'mb', 'available'] processed_text: ['amssm', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'gb', 'currently', 'mb', 'available', 'amssm', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'gb', 'currently', 'mb', 'available'] list_processed_text: [['amssm'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['utiliuytretion'], ['gb'], ['currently'], ['mb'], ['available'], ['amssm'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['utiliuytretion'], ['gb'], ['currently'], ['mb'], ['available']] k: 1041 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'hello', 'response', 'time', 'erp', 'sid', 'erp', 'production', 'slow', 'request', 'kindly', 'arrange', 'resolve'] processed_text: ['erp', 'sid', 'erp', 'production', 'hello', 'response', 'time', 'erp', 'sid', 'erp', 'production', 'slow', 'request', 'kindly', 'arrange', 'resolve'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['hello'], ['response'], ['time'], ['erp'], ['sid'], ['erp'], ['production'], ['slow'], ['request'], ['kindly'], ['arrange'], ['resolve']] k: 1042 len: <class 'list'> Data: ['telecom', 'vendor', 'dongle', 'connection', 'issue', 'telecom', 'vendor', 'donggle', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'reinstalled', 'telecom', 'vendor', 'dongle', 'app', 'checked', 'dongle', 'setting', 'advised', 'user', 'try', 'connect', 'go', 'user', 'mentioned', 'telecom', 'vendor', 'connect', 'get', 'connected', 'time', 'disconnect', 'happening', 'since', 'long', 'time'] processed_text: ['telecom', 'vendor', 'dongle', 'connection', 'issue', 'telecom', 'vendor', 'donggle', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'reinstalled', 'telecom', 'vendor', 'dongle', 'app', 'checked', 'dongle', 'setting', 'advised', 'user', 'try', 'connect', 'go', 'user', 'mentioned', 'telecom', 'vendor', 'connect', 'get', 'connected', 'time', 'disconnect', 'happening', 'since', 'long', 'time'] list_processed_text: [['telecom'], ['vendor'], ['dongle'], ['connection'], ['issue'], ['telecom'], ['vendor'], ['donggle'], ['connection'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['uninstalled'], ['reinstalled'], ['telecom'], ['vendor'], ['dongle'], ['app'], ['checked'], ['dongle'], ['setting'], ['advised'], ['user'], ['try'], ['connect'], ['go'], ['user'], ['mentioned'], ['telecom'], ['vendor'], ['connect'], ['get'], ['connected'], ['time'], ['disconnect'], ['happening'], ['since'], ['long'], ['time']] k: 1043 len: <class 'list'> Data: ['wild', 'card', 'search', 'grade', 'working', 'search', 'part', 'number', 'distributor', 'tool', 'wild', 'card', 'search', 'grade', 'working', 'search', 'part', 'number', 'distributor', 'tool'] processed_text: ['wild', 'card', 'search', 'grade', 'working', 'search', 'part', 'number', 'distributor', 'tool', 'wild', 'card', 'search', 'grade', 'working', 'search', 'part', 'number', 'distributor', 'tool'] list_processed_text: [['wild'], ['card'], ['search'], ['grade'], ['working'], ['search'], ['part'], ['number'], ['distributor'], ['tool'], ['wild'], ['card'], ['search'], ['grade'], ['working'], ['search'], ['part'], ['number'], ['distributor'], ['tool']] k: 1044 len: <class 'list'> Data: ['reset', 'password', 'soldfnbq', 'uhnbsvqd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'erp', 'password', 'work', 'blocked'] processed_text: ['reset', 'password', 'soldfnbq', 'uhnbsvqd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'erp', 'password', 'work', 'blocked'] list_processed_text: [['reset'], ['password'], ['soldfnbq'], ['uhnbsvqd'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['erp'], ['password'], ['work'], ['blocked']] k: 1045 len: <class 'list'> Data: ['access', 'needed', 'hello', 'lady', 'gentleman', 'need', 'access'] processed_text: ['access', 'needed', 'hello', 'lady', 'gentleman', 'need', 'access'] list_processed_text: [['access'], ['needed'], ['hello'], ['lady'], ['gentleman'], ['need'], ['access']] k: 1046 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1047 len: <class 'list'> Data: ['pc', 'eu', 'tool', 'station', 'germany', 'longer', 'work', 'pc', 'eu', 'tool', 'station', 'bde', 'germany', 'longer', 'work', 'display', 'writes', 'hard', 'disk', 'error'] processed_text: ['pc', 'eu', 'tool', 'station', 'germany', 'longer', 'work', 'pc', 'eu', 'tool', 'station', 'bde', 'germany', 'longer', 'work', 'display', 'writes', 'hard', 'disk', 'error'] list_processed_text: [['pc'], ['eu'], ['tool'], ['station'], ['germany'], ['longer'], ['work'], ['pc'], ['eu'], ['tool'], ['station'], ['bde'], ['germany'], ['longer'], ['work'], ['display'], ['writes'], ['hard'], ['disk'], ['error']] k: 1048 len: <class 'list'> Data: ['connection', 'internet', 'server', 'administration', 'right', 'error', 'message', 'mail', 'process', 'canceled', 'due', 'restriction', 'please', 'contact', 'system', 'administrator', 'hyperlink', 'could', 'opened'] processed_text: ['connection', 'internet', 'server', 'administration', 'right', 'error', 'message', 'mail', 'process', 'canceled', 'due', 'restriction', 'please', 'contact', 'system', 'administrator', 'hyperlink', 'could', 'opened'] list_processed_text: [['connection'], ['internet'], ['server'], ['administration'], ['right'], ['error'], ['message'], ['mail'], ['process'], ['canceled'], ['due'], ['restriction'], ['please'], ['contact'], ['system'], ['administrator'], ['hyperlink'], ['could'], ['opened']] k: 1049 len: <class 'list'> Data: ['reset', 'password', 'soldfnbq', 'uhnbsvqd', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'soldfnbq', 'uhnbsvqd', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['soldfnbq'], ['uhnbsvqd'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1050 len: <class 'list'> Data: ['erp', 'sid', 'passowrd', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'erp', 'sid', 'password', 'user', 'kimtc', 'dkklddww', 'lqdwjdwd', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['erp', 'sid', 'passowrd', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'erp', 'sid', 'password', 'user', 'kimtc', 'dkklddww', 'lqdwjdwd', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['erp'], ['sid'], ['passowrd'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['reset'], ['erp'], ['sid'], ['password'], ['user'], ['kimtc'], ['dkklddww'], ['lqdwjdwd'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 1051 len: <class 'list'> Data: ['erp', 'account', 'entsperren', 'cleat', 'erp', 'account', 'von', 'fygrwuna', 'gomcekzi', 'entsperren'] processed_text: ['erp', 'account', 'entsperren', 'cleat', 'erp', 'account', 'von', 'fygrwuna', 'gomcekzi', 'entsperren'] list_processed_text: [['erp'], ['account'], ['entsperren'], ['cleat'], ['erp'], ['account'], ['von'], ['fygrwuna'], ['gomcekzi'], ['entsperren']] k: 1052 len: <class 'list'> Data: ['delivery', 'blocked', 'status', 'blocked', 'issue', 'inc', 'found', 'another', 'delivery', 'status', 'blocked', 'item', 'please', 'see', 'attached', 'excel', 'file', 'material', 'number', 'plesae', 'change', 'status', 'blocked', 'otherwise', 'cannot', 'create', 'delivery', 'note'] processed_text: ['delivery', 'blocked', 'status', 'blocked', 'issue', 'inc', 'found', 'another', 'delivery', 'status', 'blocked', 'item', 'please', 'see', 'attached', 'excel', 'file', 'material', 'number', 'plesae', 'change', 'status', 'blocked', 'otherwise', 'cannot', 'create', 'delivery', 'note'] list_processed_text: [['delivery'], ['blocked'], ['status'], ['blocked'], ['issue'], ['inc'], ['found'], ['another'], ['delivery'], ['status'], ['blocked'], ['item'], ['please'], ['see'], ['attached'], ['excel'], ['file'], ['material'], ['number'], ['plesae'], ['change'], ['status'], ['blocked'], ['otherwise'], ['cannot'], ['create'], ['delivery'], ['note']] k: 1053 len: <class 'list'> Data: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'using', 'password', 'management', 'tool', 'password', 'reset', 'bitte', 'erp', 'kennwort', 'zur', 'cksetzen'] processed_text: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'using', 'password', 'management', 'tool', 'password', 'reset', 'bitte', 'erp', 'kennwort', 'zur', 'cksetzen'] list_processed_text: [['reset'], ['password'], ['fygrwuna'], ['gomcekzi'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['bitte'], ['erp'], ['kennwort'], ['zur'], ['cksetzen']] k: 1054 len: <class 'list'> Data: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'fygrwuna', 'gomcekzi', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['fygrwuna'], ['gomcekzi'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1055 len: <class 'list'> Data: ['quote', 'required', 'laptop', 'bag', 'projector', 'adopter', 'dell', 'latitude', 'dear', 'sir', 'please', 'give', 'quote', 'laptop', 'bag', 'projector', 'adopter', 'laptop', 'dell', 'latitude', 'best'] processed_text: ['quote', 'required', 'laptop', 'bag', 'projector', 'adopter', 'dell', 'latitude', 'dear', 'sir', 'please', 'give', 'quote', 'laptop', 'bag', 'projector', 'adopter', 'laptop', 'dell', 'latitude', 'best'] list_processed_text: [['quote'], ['required'], ['laptop'], ['bag'], ['projector'], ['adopter'], ['dell'], ['latitude'], ['dear'], ['sir'], ['please'], ['give'], ['quote'], ['laptop'], ['bag'], ['projector'], ['adopter'], ['laptop'], ['dell'], ['latitude'], ['best']] k: 1056 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1057 len: <class 'list'> Data: ['connection', 'printer', 'em', 'pc', 'eemw', 'cannot', 'established', 'connection', 'printer', 'em', 'pc', 'eemw', 'cannot', 'established'] processed_text: ['connection', 'printer', 'em', 'pc', 'eemw', 'cannot', 'established', 'connection', 'printer', 'em', 'pc', 'eemw', 'cannot', 'established'] list_processed_text: [['connection'], ['printer'], ['em'], ['pc'], ['eemw'], ['cannot'], ['established'], ['connection'], ['printer'], ['em'], ['pc'], ['eemw'], ['cannot'], ['established']] k: 1058 len: <class 'list'> Data: ['deilvery', 'block', 'status', 'hello', 'team', 'please', 'assist', 'create', 'dn', 'following', 'cannot', 'create', 'delivery', 'believed', 'delivery', 'block', 'status', 'set', 'blocked', 'need', 'blocked', 'mm'] processed_text: ['deilvery', 'block', 'status', 'hello', 'team', 'please', 'assist', 'create', 'dn', 'following', 'cannot', 'create', 'delivery', 'believed', 'delivery', 'block', 'status', 'set', 'blocked', 'need', 'blocked', 'mm'] list_processed_text: [['deilvery'], ['block'], ['status'], ['hello'], ['team'], ['please'], ['assist'], ['create'], ['dn'], ['following'], ['cannot'], ['create'], ['delivery'], ['believed'], ['delivery'], ['block'], ['status'], ['set'], ['blocked'], ['need'], ['blocked'], ['mm']] k: 1059 len: <class 'list'> Data: ['power', 'supply', 'unit', 'power', 'plug', 'defective', 'pc', 'good', 'receipt', 'please', 'check', 'power', 'supply', 'unit', 'plug', 'pc', 'evhw', 'incoming', 'good', 'repair', 'necessary', 'pc', 'switched', 'moving', 'plug'] processed_text: ['power', 'supply', 'unit', 'power', 'plug', 'defective', 'pc', 'good', 'receipt', 'please', 'check', 'power', 'supply', 'unit', 'plug', 'pc', 'evhw', 'incoming', 'good', 'repair', 'necessary', 'pc', 'switched', 'moving', 'plug'] list_processed_text: [['power'], ['supply'], ['unit'], ['power'], ['plug'], ['defective'], ['pc'], ['good'], ['receipt'], ['please'], ['check'], ['power'], ['supply'], ['unit'], ['plug'], ['pc'], ['evhw'], ['incoming'], ['good'], ['repair'], ['necessary'], ['pc'], ['switched'], ['moving'], ['plug']] k: 1060 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 1061 len: <class 'list'> Data: ['hub', 'commstorage', 'product', 'company', 'folder', 'showing', 'access', 'denied', 'hub', 'commstorage', 'product', 'company', 'folder', 'showing', 'access', 'denied'] processed_text: ['hub', 'commstorage', 'product', 'company', 'folder', 'showing', 'access', 'denied', 'hub', 'commstorage', 'product', 'company', 'folder', 'showing', 'access', 'denied'] list_processed_text: [['hub'], ['commstorage'], ['product'], ['company'], ['folder'], ['showing'], ['access'], ['denied'], ['hub'], ['commstorage'], ['product'], ['company'], ['folder'], ['showing'], ['access'], ['denied']] k: 1062 len: <class 'list'> Data: ['erp', 'issue', 'hello', 'try', 'create', 'new', 'mm', 'number', 'item', 'storage', 'location', 'plant', 'mm', 'number', 'get', 'created', 'plant', 'even', 'storage', 'location', 'specified', 'plant', 'line', 'item', 'pl', 'rectify'] processed_text: ['erp', 'issue', 'hello', 'try', 'create', 'new', 'mm', 'number', 'item', 'storage', 'location', 'plant', 'mm', 'number', 'get', 'created', 'plant', 'even', 'storage', 'location', 'specified', 'plant', 'line', 'item', 'pl', 'rectify'] list_processed_text: [['erp'], ['issue'], ['hello'], ['try'], ['create'], ['new'], ['mm'], ['number'], ['item'], ['storage'], ['location'], ['plant'], ['mm'], ['number'], ['get'], ['created'], ['plant'], ['even'], ['storage'], ['location'], ['specified'], ['plant'], ['line'], ['item'], ['pl'], ['rectify']] k: 1063 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1064 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1065 len: <class 'list'> Data: ['insert', 'n', 'please', 'insert', 'delivery', 'note', 'erp', 'book'] processed_text: ['insert', 'n', 'please', 'insert', 'delivery', 'note', 'erp', 'book'] list_processed_text: [['insert'], ['n'], ['please'], ['insert'], ['delivery'], ['note'], ['erp'], ['book']] k: 1066 len: <class 'list'> Data: ['generated', 'automatically', 'dn', 'dear', 'would', 'pls', 'help', 'check', 'dn', 'generated'] processed_text: ['generated', 'automatically', 'dn', 'dear', 'would', 'pls', 'help', 'check', 'dn', 'generated'] list_processed_text: [['generated'], ['automatically'], ['dn'], ['dear'], ['would'], ['pls'], ['help'], ['check'], ['dn'], ['generated']] k: 1067 len: <class 'list'> Data: ['m', 'office', 'pro', 'plus', 'french', 'got', 'corrupted', 'please', 'need', 'full', 'm', 'office', 'pro', 'plus', 'french', 'got', 'corrupted', 'please', 'need', 'full'] processed_text: ['m', 'office', 'pro', 'plus', 'french', 'got', 'corrupted', 'please', 'need', 'full', 'm', 'office', 'pro', 'plus', 'french', 'got', 'corrupted', 'please', 'need', 'full'] list_processed_text: [['m'], ['office'], ['pro'], ['plus'], ['french'], ['got'], ['corrupted'], ['please'], ['need'], ['full'], ['m'], ['office'], ['pro'], ['plus'], ['french'], ['got'], ['corrupted'], ['please'], ['need'], ['full']] k: 1068 len: <class 'list'> Data: ['unable', 'login', 'window', 'account', 'unable', 'login', 'window', 'account'] processed_text: ['unable', 'login', 'window', 'account', 'unable', 'login', 'window', 'account'] list_processed_text: [['unable'], ['login'], ['window'], ['account'], ['unable'], ['login'], ['window'], ['account']] k: 1069 len: <class 'list'> Data: ['mobile', 'phone', 'cannot', 'use', 'skype', 'business', 'concall', 'also', 'initial', 'wrong', 'right', 'one', 'waitgr', 'chdffong', 'sdfgwong'] processed_text: ['mobile', 'phone', 'cannot', 'use', 'skype', 'business', 'concall', 'also', 'initial', 'wrong', 'right', 'one', 'waitgr', 'chdffong', 'sdfgwong'] list_processed_text: [['mobile'], ['phone'], ['cannot'], ['use'], ['skype'], ['business'], ['concall'], ['also'], ['initial'], ['wrong'], ['right'], ['one'], ['waitgr'], ['chdffong'], ['sdfgwong']] k: 1070 len: <class 'list'> Data: ['termination', 'lauredwwden', 'hwffiglhkins', 'termination', 'lauredwwden', 'hwffiglhkins', 'effective', 'approved'] processed_text: ['termination', 'lauredwwden', 'hwffiglhkins', 'termination', 'lauredwwden', 'hwffiglhkins', 'effective', 'approved'] list_processed_text: [['termination'], ['lauredwwden'], ['hwffiglhkins'], ['termination'], ['lauredwwden'], ['hwffiglhkins'], ['effective'], ['approved']] k: 1071 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1072 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 1073 len: <class 'list'> Data: ['unable', 'access', 'email', 'hi', 'team', 'kindly', 'please', 'assist', 'staff', 'kmvwti', 'uaoyhcep', 'unable', 'open', 'email', 'computer', 'name', 'aswl', 'user', 'kthassia', 'dbkdwwd', 'wdfwsggalleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['unable', 'access', 'email', 'hi', 'team', 'kindly', 'please', 'assist', 'staff', 'kmvwti', 'uaoyhcep', 'unable', 'open', 'email', 'computer', 'name', 'aswl', 'user', 'kthassia', 'dbkdwwd', 'wdfwsggalleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['unable'], ['access'], ['email'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['staff'], ['kmvwti'], ['uaoyhcep'], ['unable'], ['open'], ['email'], ['computer'], ['name'], ['aswl'], ['user'], ['kthassia'], ['dbkdwwd'], ['wdfwsggalleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 1074 len: <class 'list'> Data: ['hello', 'termination', 'phvwitud', 'kvetadzo', 'effective', 'approved', 'mail', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'phvwitud', 'kvetadzo', 'completed', 'hello', 'termination', 'phvwitud', 'kvetadzo', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['hello', 'termination', 'phvwitud', 'kvetadzo', 'effective', 'approved', 'mail', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'phvwitud', 'kvetadzo', 'completed', 'hello', 'termination', 'phvwitud', 'kvetadzo', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['hello'], ['termination'], ['phvwitud'], ['kvetadzo'], ['effective'], ['approved'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['terminate'], ['action'], ['phvwitud'], ['kvetadzo'], ['completed'], ['hello'], ['termination'], ['phvwitud'], ['kvetadzo'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 1075 len: <class 'list'> Data: ['tracking', 'dear', 'would', 'please', 'favor', 'plant', 'custom', 'audit', 'preparing', 'document', 'referring', 'attached', 'file', 'using', 'pweaver', 'ship', 'manifest', 'extract', 'tracking', 'number', 'based', 'dns', 'would', 'please', 'let', 'know', 'way', 'extract', 'old', 'data'] processed_text: ['tracking', 'dear', 'would', 'please', 'favor', 'plant', 'custom', 'audit', 'preparing', 'document', 'referring', 'attached', 'file', 'using', 'pweaver', 'ship', 'manifest', 'extract', 'tracking', 'number', 'based', 'dns', 'would', 'please', 'let', 'know', 'way', 'extract', 'old', 'data'] list_processed_text: [['tracking'], ['dear'], ['would'], ['please'], ['favor'], ['plant'], ['custom'], ['audit'], ['preparing'], ['document'], ['referring'], ['attached'], ['file'], ['using'], ['pweaver'], ['ship'], ['manifest'], ['extract'], ['tracking'], ['number'], ['based'], ['dns'], ['would'], ['please'], ['let'], ['know'], ['way'], ['extract'], ['old'], ['data']] k: 1076 len: <class 'list'> Data: ['hello', 'order', 'drop', 'ship', 'inwarehouse', 'tool', 'customer', 'item', 'pvjdtrya', 'oevyhtdx', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'wtykmnlg', 'xamesrpfrop', 'ship', 'inwarehouse', 'tool', 'hello', 'order', 'drop', 'ship', 'inwarehouse', 'tool', 'customer', 'item', 'po', 'please', 'advise', 'please', 'update', 'record', 'new', 'email', 'address', 'zurtxjbd', 'gaotwcfd', 'inside', 'sale', 'representative'] processed_text: ['hello', 'order', 'drop', 'ship', 'inwarehouse', 'tool', 'customer', 'item', 'pvjdtrya', 'oevyhtdx', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'wtykmnlg', 'xamesrpfrop', 'ship', 'inwarehouse', 'tool', 'hello', 'order', 'drop', 'ship', 'inwarehouse', 'tool', 'customer', 'item', 'po', 'please', 'advise', 'please', 'update', 'record', 'new', 'email', 'address', 'zurtxjbd', 'gaotwcfd', 'inside', 'sale', 'representative'] list_processed_text: [['hello'], ['order'], ['drop'], ['ship'], ['inwarehouse'], ['tool'], ['customer'], ['item'], ['pvjdtrya'], ['oevyhtdx'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['wtykmnlg'], ['xamesrpfrop'], ['ship'], ['inwarehouse'], ['tool'], ['hello'], ['order'], ['drop'], ['ship'], ['inwarehouse'], ['tool'], ['customer'], ['item'], ['po'], ['please'], ['advise'], ['please'], ['update'], ['record'], ['new'], ['email'], ['address'], ['zurtxjbd'], ['gaotwcfd'], ['inside'], ['sale'], ['representative']] k: 1077 len: <class 'list'> Data: ['termination', 'brthryian', 'lsgthhuart', 'termination', 'brthryian', 'lsgthhuart', 'hello', 'termination', 'brthryian', 'lsgthhuart', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['termination', 'brthryian', 'lsgthhuart', 'termination', 'brthryian', 'lsgthhuart', 'hello', 'termination', 'brthryian', 'lsgthhuart', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['termination'], ['brthryian'], ['lsgthhuart'], ['termination'], ['brthryian'], ['lsgthhuart'], ['hello'], ['termination'], ['brthryian'], ['lsgthhuart'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 1078 len: <class 'list'> Data: ['unable', 'sync', 'mail', 'iphone', 'unable', 'sync', 'mail', 'iphone'] processed_text: ['unable', 'sync', 'mail', 'iphone', 'unable', 'sync', 'mail', 'iphone'] list_processed_text: [['unable'], ['sync'], ['mail'], ['iphone'], ['unable'], ['sync'], ['mail'], ['iphone']] k: 1079 len: <class 'list'> Data: ['exchange', 'phone', 'hello', 'please', 'login', 'phone', 'server', 'changed', 'phone', 'old', 'iphone', 'new', 'want', 'connect', 'get', 'mail', 'exchange', 'outlook', 'iphone', 'iphone', 'phone', 'number', 'imei'] processed_text: ['exchange', 'phone', 'hello', 'please', 'login', 'phone', 'server', 'changed', 'phone', 'old', 'iphone', 'new', 'want', 'connect', 'get', 'mail', 'exchange', 'outlook', 'iphone', 'iphone', 'phone', 'number', 'imei'] list_processed_text: [['exchange'], ['phone'], ['hello'], ['please'], ['login'], ['phone'], ['server'], ['changed'], ['phone'], ['old'], ['iphone'], ['new'], ['want'], ['connect'], ['get'], ['mail'], ['exchange'], ['outlook'], ['iphone'], ['iphone'], ['phone'], ['number'], ['imei']] k: 1080 len: <class 'list'> Data: ['unable', 'access', 'erp', 'unable', 'access', 'erp'] processed_text: ['unable', 'access', 'erp', 'unable', 'access', 'erp'] list_processed_text: [['unable'], ['access'], ['erp'], ['unable'], ['access'], ['erp']] k: 1081 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 1082 len: <class 'list'> Data: ['termination', 'yhteijwf', 'llwlfazo', 'hello', 'termination', 'yhteijwf', 'llwlfazo', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['termination', 'yhteijwf', 'llwlfazo', 'hello', 'termination', 'yhteijwf', 'llwlfazo', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['termination'], ['yhteijwf'], ['llwlfazo'], ['hello'], ['termination'], ['yhteijwf'], ['llwlfazo'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 1083 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1084 len: <class 'list'> Data: ['suspected', 'spam', 'mail', 'look', 'like', 'spam', 'wanted', 'make', 'someone', 'aware'] processed_text: ['suspected', 'spam', 'mail', 'look', 'like', 'spam', 'wanted', 'make', 'someone', 'aware'] list_processed_text: [['suspected'], ['spam'], ['mail'], ['look'], ['like'], ['spam'], ['wanted'], ['make'], ['someone'], ['aware']] k: 1085 len: <class 'list'> Data: ['tool', 'data', 'site', 'cannot', 'search', 'security', 'error', 'dwmnad', 'macwdlmwkey', 'error', 'getting', 'use', 'search', 'function', 'system', 'outofmemoryexception', 'exception', 'type', 'system', 'outofmemoryexception', 'thrown', 'system', 'reflection', 'runtimeassembly', 'getrawbytes', 'runtimeassembly', 'assembly', 'objecthandleonstack', 'retrawbytes', 'system', 'reflection', 'runtimeassembly', 'getrawbytes', 'system', 'security', 'policy', 'hash', 'getrawdata', 'system', 'security', 'policy', 'hash', 'generatehash', 'type', 'hashtype', 'system', 'security', 'policy', 'hash', 'get', 'sha', 'system', 'web', 'handler', 'scriptresourcehandler', 'getassemblyinfointernal', 'assembly', 'assembly', 'system', 'web', 'handler', 'scriptresourcehandler', 'getassemblyinfo', 'assembly', 'assembly', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'getscriptresourceurlimpl', 'list', 'assemblyresourcelists', 'boolean', 'zip', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'system', 'web', 'handler', 'iscriptresourcehandler', 'getscriptresourceurl', 'list', 'assemblyresourcelists', 'boolean', 'zip', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'system', 'web', 'handler', 'iscriptresourcehandler', 'getscriptresourceurl', 'assembly', 'assembly', 'string', 'resourcename', 'cultureinfo', 'culture', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturlfromname', 'scriptmanager', 'scriptmanager', 'icontrol', 'scriptmanagercontrol', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturlinternal', 'scriptmanager', 'scriptmanager', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturl', 'scriptmanager', 'scriptmanager', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptmanager', 'registeruniquescripts', 'list', 'uniquescripts', 'system', 'web', 'ui', 'scriptmanager', 'registerscripts', 'system', 'web', 'ui', 'scriptmanager', 'onpageprerendercomplete', 'object', 'sender', 'eventargs', 'system', 'web', 'ui', 'page', 'onprerendercomplete', 'eventargs', 'system', 'web', 'ui', 'page', 'processrequestmain', 'boolean', 'includestagesbeforeasyncpoint', 'boolean', 'includestagesafterasyncpoint'] processed_text: ['tool', 'data', 'site', 'cannot', 'search', 'security', 'error', 'dwmnad', 'macwdlmwkey', 'error', 'getting', 'use', 'search', 'function', 'system', 'outofmemoryexception', 'exception', 'type', 'system', 'outofmemoryexception', 'thrown', 'system', 'reflection', 'runtimeassembly', 'getrawbytes', 'runtimeassembly', 'assembly', 'objecthandleonstack', 'retrawbytes', 'system', 'reflection', 'runtimeassembly', 'getrawbytes', 'system', 'security', 'policy', 'hash', 'getrawdata', 'system', 'security', 'policy', 'hash', 'generatehash', 'type', 'hashtype', 'system', 'security', 'policy', 'hash', 'get', 'sha', 'system', 'web', 'handler', 'scriptresourcehandler', 'getassemblyinfointernal', 'assembly', 'assembly', 'system', 'web', 'handler', 'scriptresourcehandler', 'getassemblyinfo', 'assembly', 'assembly', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'getscriptresourceurlimpl', 'list', 'assemblyresourcelists', 'boolean', 'zip', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'system', 'web', 'handler', 'iscriptresourcehandler', 'getscriptresourceurl', 'list', 'assemblyresourcelists', 'boolean', 'zip', 'system', 'web', 'handler', 'scriptresourcehandler', 'runtimescriptresourcehandler', 'system', 'web', 'handler', 'iscriptresourcehandler', 'getscriptresourceurl', 'assembly', 'assembly', 'string', 'resourcename', 'cultureinfo', 'culture', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturlfromname', 'scriptmanager', 'scriptmanager', 'icontrol', 'scriptmanagercontrol', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturlinternal', 'scriptmanager', 'scriptmanager', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptreference', 'geturl', 'scriptmanager', 'scriptmanager', 'boolean', 'zip', 'system', 'web', 'ui', 'scriptmanager', 'registeruniquescripts', 'list', 'uniquescripts', 'system', 'web', 'ui', 'scriptmanager', 'registerscripts', 'system', 'web', 'ui', 'scriptmanager', 'onpageprerendercomplete', 'object', 'sender', 'eventargs', 'system', 'web', 'ui', 'page', 'onprerendercomplete', 'eventargs', 'system', 'web', 'ui', 'page', 'processrequestmain', 'boolean', 'includestagesbeforeasyncpoint', 'boolean', 'includestagesafterasyncpoint'] list_processed_text: [['tool'], ['data'], ['site'], ['cannot'], ['search'], ['security'], ['error'], ['dwmnad'], ['macwdlmwkey'], ['error'], ['getting'], ['use'], ['search'], ['function'], ['system'], ['outofmemoryexception'], ['exception'], ['type'], ['system'], ['outofmemoryexception'], ['thrown'], ['system'], ['reflection'], ['runtimeassembly'], ['getrawbytes'], ['runtimeassembly'], ['assembly'], ['objecthandleonstack'], ['retrawbytes'], ['system'], ['reflection'], ['runtimeassembly'], ['getrawbytes'], ['system'], ['security'], ['policy'], ['hash'], ['getrawdata'], ['system'], ['security'], ['policy'], ['hash'], ['generatehash'], ['type'], ['hashtype'], ['system'], ['security'], ['policy'], ['hash'], ['get'], ['sha'], ['system'], ['web'], ['handler'], ['scriptresourcehandler'], ['getassemblyinfointernal'], ['assembly'], ['assembly'], ['system'], ['web'], ['handler'], ['scriptresourcehandler'], ['getassemblyinfo'], ['assembly'], ['assembly'], ['system'], ['web'], ['handler'], ['scriptresourcehandler'], ['runtimescriptresourcehandler'], ['getscriptresourceurlimpl'], ['list'], ['assemblyresourcelists'], ['boolean'], ['zip'], ['system'], ['web'], ['handler'], ['scriptresourcehandler'], ['runtimescriptresourcehandler'], ['system'], ['web'], ['handler'], ['iscriptresourcehandler'], ['getscriptresourceurl'], ['list'], ['assemblyresourcelists'], ['boolean'], ['zip'], ['system'], ['web'], ['handler'], ['scriptresourcehandler'], ['runtimescriptresourcehandler'], ['system'], ['web'], ['handler'], ['iscriptresourcehandler'], ['getscriptresourceurl'], ['assembly'], ['assembly'], ['string'], ['resourcename'], ['cultureinfo'], ['culture'], ['boolean'], ['zip'], ['system'], ['web'], ['ui'], ['scriptreference'], ['geturlfromname'], ['scriptmanager'], ['scriptmanager'], ['icontrol'], ['scriptmanagercontrol'], ['boolean'], ['zip'], ['system'], ['web'], ['ui'], ['scriptreference'], ['geturlinternal'], ['scriptmanager'], ['scriptmanager'], ['boolean'], ['zip'], ['system'], ['web'], ['ui'], ['scriptreference'], ['geturl'], ['scriptmanager'], ['scriptmanager'], ['boolean'], ['zip'], ['system'], ['web'], ['ui'], ['scriptmanager'], ['registeruniquescripts'], ['list'], ['uniquescripts'], ['system'], ['web'], ['ui'], ['scriptmanager'], ['registerscripts'], ['system'], ['web'], ['ui'], ['scriptmanager'], ['onpageprerendercomplete'], ['object'], ['sender'], ['eventargs'], ['system'], ['web'], ['ui'], ['page'], ['onprerendercomplete'], ['eventargs'], ['system'], ['web'], ['ui'], ['page'], ['processrequestmain'], ['boolean'], ['includestagesbeforeasyncpoint'], ['boolean'], ['includestagesafterasyncpoint']] k: 1086 len: <class 'list'> Data: ['password', 'reset', 'login', 'hub', 'password', 'reset', 'login', 'hub'] processed_text: ['password', 'reset', 'login', 'hub', 'password', 'reset', 'login', 'hub'] list_processed_text: [['password'], ['reset'], ['login'], ['hub'], ['password'], ['reset'], ['login'], ['hub']] k: 1087 len: <class 'list'> Data: ['display', 'monitor', 'display', 'monitor'] processed_text: ['display', 'monitor', 'display', 'monitor'] list_processed_text: [['display'], ['monitor'], ['display'], ['monitor']] k: 1088 len: <class 'list'> Data: ['distribution', 'list', 'updating', 'distribution', 'list', 'updating', 'removed', 'added', 'back', 'waited', 'time', 'worked', 'fine', 'issue', 'resolved'] processed_text: ['distribution', 'list', 'updating', 'distribution', 'list', 'updating', 'removed', 'added', 'back', 'waited', 'time', 'worked', 'fine', 'issue', 'resolved'] list_processed_text: [['distribution'], ['list'], ['updating'], ['distribution'], ['list'], ['updating'], ['removed'], ['added'], ['back'], ['waited'], ['time'], ['worked'], ['fine'], ['issue'], ['resolved']] k: 1089 len: <class 'list'> Data: ['em', 'event', 'critical', 'sid', 'value', 'datafile', 'size', 'perpsrglovia', 'oracle', 'sid', 'erpdata', 'srglovia', 'srglovia', 'data', 'host', 'hostname', 'company', 'com', 'target', 'type', 'database', 'instance', 'target', 'name', 'sid', 'category', 'capacity', 'message', 'value', 'datafile', 'size', 'perpsrglovia', 'oracle', 'sid', 'erpdata', 'srglovia', 'srglovia', 'data', 'severity', 'critical', 'event', 'reported', 'time', 'oct', 'pm', 'edt', 'event', 'type', 'metric', 'alert', 'event', 'name', 'oracle', 'datafile', 'monitor', 'datafile', 'size'] processed_text: ['em', 'event', 'critical', 'sid', 'value', 'datafile', 'size', 'perpsrglovia', 'oracle', 'sid', 'erpdata', 'srglovia', 'srglovia', 'data', 'host', 'hostname', 'company', 'com', 'target', 'type', 'database', 'instance', 'target', 'name', 'sid', 'category', 'capacity', 'message', 'value', 'datafile', 'size', 'perpsrglovia', 'oracle', 'sid', 'erpdata', 'srglovia', 'srglovia', 'data', 'severity', 'critical', 'event', 'reported', 'time', 'oct', 'pm', 'edt', 'event', 'type', 'metric', 'alert', 'event', 'name', 'oracle', 'datafile', 'monitor', 'datafile', 'size'] list_processed_text: [['em'], ['event'], ['critical'], ['sid'], ['value'], ['datafile'], ['size'], ['perpsrglovia'], ['oracle'], ['sid'], ['erpdata'], ['srglovia'], ['srglovia'], ['data'], ['host'], ['hostname'], ['company'], ['com'], ['target'], ['type'], ['database'], ['instance'], ['target'], ['name'], ['sid'], ['category'], ['capacity'], ['message'], ['value'], ['datafile'], ['size'], ['perpsrglovia'], ['oracle'], ['sid'], ['erpdata'], ['srglovia'], ['srglovia'], ['data'], ['severity'], ['critical'], ['event'], ['reported'], ['time'], ['oct'], ['pm'], ['edt'], ['event'], ['type'], ['metric'], ['alert'], ['event'], ['name'], ['oracle'], ['datafile'], ['monitor'], ['datafile'], ['size']] k: 1090 len: <class 'list'> Data: ['cannot', 'post', 'delivery', 'cannot', 'post', 'delivery', 'material', 'recently', 'moved', 'usa', 'warehouse', 'usa', 'warehouse', 'able', 'post', 'delivery', 'get', 'error', 'say', 'material', 'maintained', 'plant', 'plant', 'plant', 'usa', 'alabama', 'plant', 'nothing', 'see', 'attached', 'screen', 'shot', 'concerned', 'configuration', 'missing', 'allow', 'plant', 'ship', 'consignment', 'fill', 'order', 'customer', 'tool', 'flo', 'mfg', 'product', 'stored', 'usa', 'temporarily', 'inventory', 'depletes', 'shipped', 'direct', 'plant', 'plant', 'plant', 'cannot', 'miss', 'service', 'customer', 'please', 'advise'] processed_text: ['cannot', 'post', 'delivery', 'cannot', 'post', 'delivery', 'material', 'recently', 'moved', 'usa', 'warehouse', 'usa', 'warehouse', 'able', 'post', 'delivery', 'get', 'error', 'say', 'material', 'maintained', 'plant', 'plant', 'plant', 'usa', 'alabama', 'plant', 'nothing', 'see', 'attached', 'screen', 'shot', 'concerned', 'configuration', 'missing', 'allow', 'plant', 'ship', 'consignment', 'fill', 'order', 'customer', 'tool', 'flo', 'mfg', 'product', 'stored', 'usa', 'temporarily', 'inventory', 'depletes', 'shipped', 'direct', 'plant', 'plant', 'plant', 'cannot', 'miss', 'service', 'customer', 'please', 'advise'] list_processed_text: [['cannot'], ['post'], ['delivery'], ['cannot'], ['post'], ['delivery'], ['material'], ['recently'], ['moved'], ['usa'], ['warehouse'], ['usa'], ['warehouse'], ['able'], ['post'], ['delivery'], ['get'], ['error'], ['say'], ['material'], ['maintained'], ['plant'], ['plant'], ['plant'], ['usa'], ['alabama'], ['plant'], ['nothing'], ['see'], ['attached'], ['screen'], ['shot'], ['concerned'], ['configuration'], ['missing'], ['allow'], ['plant'], ['ship'], ['consignment'], ['fill'], ['order'], ['customer'], ['tool'], ['flo'], ['mfg'], ['product'], ['stored'], ['usa'], ['temporarily'], ['inventory'], ['depletes'], ['shipped'], ['direct'], ['plant'], ['plant'], ['plant'], ['cannot'], ['miss'], ['service'], ['customer'], ['please'], ['advise']] k: 1091 len: <class 'list'> Data: ['supply', 'chain', 'software', 'pw', 'hello', 'please', 'reset', 'password', 'supply', 'chain', 'software', 'user', 'beyhtcykea', 'best'] processed_text: ['supply', 'chain', 'software', 'pw', 'hello', 'please', 'reset', 'password', 'supply', 'chain', 'software', 'user', 'beyhtcykea', 'best'] list_processed_text: [['supply'], ['chain'], ['software'], ['pw'], ['hello'], ['please'], ['reset'], ['password'], ['supply'], ['chain'], ['software'], ['user'], ['beyhtcykea'], ['best']] k: 1092 len: <class 'list'> Data: ['assign', 'user', 'corsthroc', 'ad', 'ltabthrysallotcsalesman', 'hello', 'pls', 'assign', 'user', 'corsthroc', 'ad', 'ltabthrysallotcsalesman', 'currently', 'added', 'ltaballotcsalesemp', 'sale', 'manager', 'approved', 'enough', 'approval'] processed_text: ['assign', 'user', 'corsthroc', 'ad', 'ltabthrysallotcsalesman', 'hello', 'pls', 'assign', 'user', 'corsthroc', 'ad', 'ltabthrysallotcsalesman', 'currently', 'added', 'ltaballotcsalesemp', 'sale', 'manager', 'approved', 'enough', 'approval'] list_processed_text: [['assign'], ['user'], ['corsthroc'], ['ad'], ['ltabthrysallotcsalesman'], ['hello'], ['pls'], ['assign'], ['user'], ['corsthroc'], ['ad'], ['ltabthrysallotcsalesman'], ['currently'], ['added'], ['ltaballotcsalesemp'], ['sale'], ['manager'], ['approved'], ['enough'], ['approval']] k: 1093 len: <class 'list'> Data: ['envoy', 'partir', 'de', 'outil', 'capture', 'cran', 'hello', 'haved', 'access', 'bobj', 'since', 'day', 'please', 'could', 'help'] processed_text: ['envoy', 'partir', 'de', 'outil', 'capture', 'cran', 'hello', 'haved', 'access', 'bobj', 'since', 'day', 'please', 'could', 'help'] list_processed_text: [['envoy'], ['partir'], ['de'], ['outil'], ['capture'], ['cran'], ['hello'], ['haved'], ['access'], ['bobj'], ['since'], ['day'], ['please'], ['could'], ['help']] k: 1094 len: <class 'list'> Data: ['infopath', 'installation', 'lean', 'event', 'able', 'add', 'lean', 'event', 'webpage', 'cannot', 'displayed'] processed_text: ['infopath', 'installation', 'lean', 'event', 'able', 'add', 'lean', 'event', 'webpage', 'cannot', 'displayed'] list_processed_text: [['infopath'], ['installation'], ['lean'], ['event'], ['able'], ['add'], ['lean'], ['event'], ['webpage'], ['cannot'], ['displayed']] k: 1095 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1096 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'ost', 'file', 'got', 'corrupted', 'unable', 'load', 'outlook', 'ost', 'file', 'got', 'corrupted', 'name', 'bthrob', 'knrlepglper', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'could', 'please', 'take', 'control', 'screen', 'let', 'know', 'wrong', 'email'] processed_text: ['unable', 'load', 'outlook', 'ost', 'file', 'got', 'corrupted', 'unable', 'load', 'outlook', 'ost', 'file', 'got', 'corrupted', 'name', 'bthrob', 'knrlepglper', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'could', 'please', 'take', 'control', 'screen', 'let', 'know', 'wrong', 'email'] list_processed_text: [['unable'], ['load'], ['outlook'], ['ost'], ['file'], ['got'], ['corrupted'], ['unable'], ['load'], ['outlook'], ['ost'], ['file'], ['got'], ['corrupted'], ['name'], ['bthrob'], ['knrlepglper'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['could'], ['please'], ['take'], ['control'], ['screen'], ['let'], ['know'], ['wrong'], ['email']] k: 1097 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1098 len: <class 'list'> Data: ['finance', 'portal', 'hub', 'company', 'help', 'unable', 'access', 'finance', 'portal', 'hub', 'even', 'though', 'done', 'past', 'receiving', 'message', 'could', 'please', 'check', 'permission', 'let', 'know', 'need', 'reinstate'] processed_text: ['finance', 'portal', 'hub', 'company', 'help', 'unable', 'access', 'finance', 'portal', 'hub', 'even', 'though', 'done', 'past', 'receiving', 'message', 'could', 'please', 'check', 'permission', 'let', 'know', 'need', 'reinstate'] list_processed_text: [['finance'], ['portal'], ['hub'], ['company'], ['help'], ['unable'], ['access'], ['finance'], ['portal'], ['hub'], ['even'], ['though'], ['done'], ['past'], ['receiving'], ['message'], ['could'], ['please'], ['check'], ['permission'], ['let'], ['know'], ['need'], ['reinstate']] k: 1099 len: <class 'list'> Data: ['unable', 'access', 'drawing', 'unable', 'access', 'drawing'] processed_text: ['unable', 'access', 'drawing', 'unable', 'access', 'drawing'] list_processed_text: [['unable'], ['access'], ['drawing'], ['unable'], ['access'], ['drawing']] k: 1100 len: <class 'list'> Data: ['update', 'implant', 'update', 'implant'] processed_text: ['update', 'implant', 'update', 'implant'] list_processed_text: [['update'], ['implant'], ['update'], ['implant']] k: 1101 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1102 len: <class 'list'> Data: ['receive', 'team', 'workflow', 'anymore', 'erp', 'inbox', 'von', 'ydigzqbu', 'gjizek', 'gesendet', 'dienstag', 'oktober', 'ujxvrlzg', 'pkaegicn', 'betreff', 'workflow', 'inbox', 'hello', 'mr', 'thetadkg', 'hope', 'right', 'person', 'turn', 'suddenly', 'reeive', 'team', 'workflow', 'anymore', 'erp', 'inbox', 'assigned', 'csd', 'hope', 'tackle', 'problem'] processed_text: ['receive', 'team', 'workflow', 'anymore', 'erp', 'inbox', 'von', 'ydigzqbu', 'gjizek', 'gesendet', 'dienstag', 'oktober', 'ujxvrlzg', 'pkaegicn', 'betreff', 'workflow', 'inbox', 'hello', 'mr', 'thetadkg', 'hope', 'right', 'person', 'turn', 'suddenly', 'reeive', 'team', 'workflow', 'anymore', 'erp', 'inbox', 'assigned', 'csd', 'hope', 'tackle', 'problem'] list_processed_text: [['receive'], ['team'], ['workflow'], ['anymore'], ['erp'], ['inbox'], ['von'], ['ydigzqbu'], ['gjizek'], ['gesendet'], ['dienstag'], ['oktober'], ['ujxvrlzg'], ['pkaegicn'], ['betreff'], ['workflow'], ['inbox'], ['hello'], ['mr'], ['thetadkg'], ['hope'], ['right'], ['person'], ['turn'], ['suddenly'], ['reeive'], ['team'], ['workflow'], ['anymore'], ['erp'], ['inbox'], ['assigned'], ['csd'], ['hope'], ['tackle'], ['problem']] k: 1103 len: <class 'list'> Data: ['vip', 'mobile', 'device', 'activation', 'vip', 'mobile', 'device', 'activation'] processed_text: ['vip', 'mobile', 'device', 'activation', 'vip', 'mobile', 'device', 'activation'] list_processed_text: [['vip'], ['mobile'], ['device'], ['activation'], ['vip'], ['mobile'], ['device'], ['activation']] k: 1104 len: <class 'list'> Data: ['oulook', 'updating', 'summary', 'email', 'update'] processed_text: ['oulook', 'updating', 'summary', 'email', 'update'] list_processed_text: [['oulook'], ['updating'], ['summary'], ['email'], ['update']] k: 1105 len: <class 'list'> Data: ['bex', 'responding', 'hello', 'used', 'several', 'time', 'past', 'reason', 'today', 'functioning', 'properly', 'get', 'point', 'chosen', 'table', 'load', 'freeze', 'say', 'responding', 'really', 'need', 'working', 'properly', 'job', 'please', 'help'] processed_text: ['bex', 'responding', 'hello', 'used', 'several', 'time', 'past', 'reason', 'today', 'functioning', 'properly', 'get', 'point', 'chosen', 'table', 'load', 'freeze', 'say', 'responding', 'really', 'need', 'working', 'properly', 'job', 'please', 'help'] list_processed_text: [['bex'], ['responding'], ['hello'], ['used'], ['several'], ['time'], ['past'], ['reason'], ['today'], ['functioning'], ['properly'], ['get'], ['point'], ['chosen'], ['table'], ['load'], ['freeze'], ['say'], ['responding'], ['really'], ['need'], ['working'], ['properly'], ['job'], ['please'], ['help']] k: 1106 len: <class 'list'> Data: ['need', 'access', 'sharepont', 'approved', 'blktuiae', 'jzakfmhw', 'please', 'find', 'attachment', 'need', 'access', 'collaboration', 'platform', 'approved', 'blktuiae', 'jzakfmhw', 'please', 'find', 'attachment', 'user', 'id', 'schddklnes', 'website', 'fcd', 'ef', 'cb', 'ab', 'fbcce', 'andfile', 'emea', 'dpo', 'vendor', 'payment', 'term', 'change', 'log', 'xlsxandaction', 'default'] processed_text: ['need', 'access', 'sharepont', 'approved', 'blktuiae', 'jzakfmhw', 'please', 'find', 'attachment', 'need', 'access', 'collaboration', 'platform', 'approved', 'blktuiae', 'jzakfmhw', 'please', 'find', 'attachment', 'user', 'id', 'schddklnes', 'website', 'fcd', 'ef', 'cb', 'ab', 'fbcce', 'andfile', 'emea', 'dpo', 'vendor', 'payment', 'term', 'change', 'log', 'xlsxandaction', 'default'] list_processed_text: [['need'], ['access'], ['sharepont'], ['approved'], ['blktuiae'], ['jzakfmhw'], ['please'], ['find'], ['attachment'], ['need'], ['access'], ['collaboration'], ['platform'], ['approved'], ['blktuiae'], ['jzakfmhw'], ['please'], ['find'], ['attachment'], ['user'], ['id'], ['schddklnes'], ['website'], ['fcd'], ['ef'], ['cb'], ['ab'], ['fbcce'], ['andfile'], ['emea'], ['dpo'], ['vendor'], ['payment'], ['term'], ['change'], ['log'], ['xlsxandaction'], ['default']] k: 1107 len: <class 'list'> Data: ['need', 'password', 'sid', 'changed', 'thanks', 'userid', 'walddkrrm', 'mdiwjd', 'wthaldlmdsrop', 'global', 'ethic', 'compliance', 'programdntys'] processed_text: ['need', 'password', 'sid', 'changed', 'thanks', 'userid', 'walddkrrm', 'mdiwjd', 'wthaldlmdsrop', 'global', 'ethic', 'compliance', 'programdntys'] list_processed_text: [['need'], ['password'], ['sid'], ['changed'], ['thanks'], ['userid'], ['walddkrrm'], ['mdiwjd'], ['wthaldlmdsrop'], ['global'], ['ethic'], ['compliance'], ['programdntys']] k: 1108 len: <class 'list'> Data: ['skype', 'hi', 'unable', 'load', 'picture', 'skype', 'try', 'edit', 'take', 'account', 'load', 'added', 'outlook', 'show', 'skype', 'idea'] processed_text: ['skype', 'hi', 'unable', 'load', 'picture', 'skype', 'try', 'edit', 'take', 'account', 'load', 'added', 'outlook', 'show', 'skype', 'idea'] list_processed_text: [['skype'], ['hi'], ['unable'], ['load'], ['picture'], ['skype'], ['try'], ['edit'], ['take'], ['account'], ['load'], ['added'], ['outlook'], ['show'], ['skype'], ['idea']] k: 1109 len: <class 'list'> Data: ['printer', 'issue', 'hp', 'office', 'jet', 'printer', 'offline', 'able', 'clear', 'printer', 'queue', 'cleared', 'queue', 'command', 'prompt', 'checked', 'giving', 'uacyltoe', 'hxgaycze', 'print', 'worked', 'fine', 'issue', 'resolved'] processed_text: ['printer', 'issue', 'hp', 'office', 'jet', 'printer', 'offline', 'able', 'clear', 'printer', 'queue', 'cleared', 'queue', 'command', 'prompt', 'checked', 'giving', 'uacyltoe', 'hxgaycze', 'print', 'worked', 'fine', 'issue', 'resolved'] list_processed_text: [['printer'], ['issue'], ['hp'], ['office'], ['jet'], ['printer'], ['offline'], ['able'], ['clear'], ['printer'], ['queue'], ['cleared'], ['queue'], ['command'], ['prompt'], ['checked'], ['giving'], ['uacyltoe'], ['hxgaycze'], ['print'], ['worked'], ['fine'], ['issue'], ['resolved']] k: 1110 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'call', 'benethrytte', 'cthoursook', 'uacyltoe', 'hxgaycze', 'call', 'benethrytte', 'cthoursook'] processed_text: ['uacyltoe', 'hxgaycze', 'call', 'benethrytte', 'cthoursook', 'uacyltoe', 'hxgaycze', 'call', 'benethrytte', 'cthoursook'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['call'], ['benethrytte'], ['cthoursook'], ['uacyltoe'], ['hxgaycze'], ['call'], ['benethrytte'], ['cthoursook']] k: 1111 len: <class 'list'> Data: ['expense', 'report', 'submittal', 'refer', 'ticket', 'inplant', 'attempted', 'submit', 'expense', 'report', 'approval', 'appear', 'moving', 'approver', 'save', 'report', 'happens', 'every', 'time', 'submit', 'expense', 'report'] processed_text: ['expense', 'report', 'submittal', 'refer', 'ticket', 'inplant', 'attempted', 'submit', 'expense', 'report', 'approval', 'appear', 'moving', 'approver', 'save', 'report', 'happens', 'every', 'time', 'submit', 'expense', 'report'] list_processed_text: [['expense'], ['report'], ['submittal'], ['refer'], ['ticket'], ['inplant'], ['attempted'], ['submit'], ['expense'], ['report'], ['approval'], ['appear'], ['moving'], ['approver'], ['save'], ['report'], ['happens'], ['every'], ['time'], ['submit'], ['expense'], ['report']] k: 1112 len: <class 'list'> Data: ['bplnyedg', 'vobluewg', 'placed', 'uacyltoe', 'hxgaycze', 'call', 'id', 'bplnyedg', 'vobluewg', 'placed', 'uacyltoe', 'hxgaycze', 'call', 'id'] processed_text: ['bplnyedg', 'vobluewg', 'placed', 'uacyltoe', 'hxgaycze', 'call', 'id', 'bplnyedg', 'vobluewg', 'placed', 'uacyltoe', 'hxgaycze', 'call', 'id'] list_processed_text: [['bplnyedg'], ['vobluewg'], ['placed'], ['uacyltoe'], ['hxgaycze'], ['call'], ['id'], ['bplnyedg'], ['vobluewg'], ['placed'], ['uacyltoe'], ['hxgaycze'], ['call'], ['id']] k: 1113 len: <class 'list'> Data: ['email', 'keep', 'disconnecting', 'internet', 'access', 'week', 'wjslkzfr', 'jxlbzwrp', 'pm', 'nwfodmhc', 'exurcwkm', 'email', 'internet', 'browser', 'importance', 'high', 'hello', 'please', 'help', 'email', 'keep', 'disconnecting', 'internet', 'access', 'week'] processed_text: ['email', 'keep', 'disconnecting', 'internet', 'access', 'week', 'wjslkzfr', 'jxlbzwrp', 'pm', 'nwfodmhc', 'exurcwkm', 'email', 'internet', 'browser', 'importance', 'high', 'hello', 'please', 'help', 'email', 'keep', 'disconnecting', 'internet', 'access', 'week'] list_processed_text: [['email'], ['keep'], ['disconnecting'], ['internet'], ['access'], ['week'], ['wjslkzfr'], ['jxlbzwrp'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['email'], ['internet'], ['browser'], ['importance'], ['high'], ['hello'], ['please'], ['help'], ['email'], ['keep'], ['disconnecting'], ['internet'], ['access'], ['week']] k: 1114 len: <class 'list'> Data: ['access', 'appreciatehub', 'access', 'appreciatehub', 'com', 'say', 'yet', 'authorized', 'enter', 'employee', 'recognition', 'site', 'please', 'contact', 'admin'] processed_text: ['access', 'appreciatehub', 'access', 'appreciatehub', 'com', 'say', 'yet', 'authorized', 'enter', 'employee', 'recognition', 'site', 'please', 'contact', 'admin'] list_processed_text: [['access'], ['appreciatehub'], ['access'], ['appreciatehub'], ['com'], ['say'], ['yet'], ['authorized'], ['enter'], ['employee'], ['recognition'], ['site'], ['please'], ['contact'], ['admin']] k: 1115 len: <class 'list'> Data: ['ghost', 'call', 'interaction', 'id', 'ghost', 'call', 'interaction', 'id'] processed_text: ['ghost', 'call', 'interaction', 'id', 'ghost', 'call', 'interaction', 'id'] list_processed_text: [['ghost'], ['call'], ['interaction'], ['id'], ['ghost'], ['call'], ['interaction'], ['id']] k: 1116 len: <class 'list'> Data: ['blank', 'call', 'call', 'came', 'got', 'disconnected', 'blank', 'call', 'call', 'came', 'got', 'disconnected'] processed_text: ['blank', 'call', 'call', 'came', 'got', 'disconnected', 'blank', 'call', 'call', 'came', 'got', 'disconnected'] list_processed_text: [['blank'], ['call'], ['call'], ['came'], ['got'], ['disconnected'], ['blank'], ['call'], ['call'], ['came'], ['got'], ['disconnected']] k: 1117 len: <class 'list'> Data: ['id', 'id', 'person', 'side', 'disconnected'] processed_text: ['id', 'id', 'person', 'side', 'disconnected'] list_processed_text: [['id'], ['id'], ['person'], ['side'], ['disconnected']] k: 1118 len: <class 'list'> Data: ['outlook', 'updating', 'outlook', 'updating'] processed_text: ['outlook', 'updating', 'outlook', 'updating'] list_processed_text: [['outlook'], ['updating'], ['outlook'], ['updating']] k: 1119 len: <class 'list'> Data: ['problem', 'kpm', 'time', 'keeping', 'time', 'dear', 'sir', 'two', 'issue', 'kpm', 'time', 'keep', 'go', 'forward', 'ii', 'submitted', 'time', 'report', 'last', 'week', 'supervisor', 'receive', 'iii', 'time', 'keeping', 'window', 'showing', 'one', 'row', 'time', 'cannot', 'enter', 'new', 'vacation', 'time', 'dathniel', 'fangtry', 'senior', 'staff', 'engineer'] processed_text: ['problem', 'kpm', 'time', 'keeping', 'time', 'dear', 'sir', 'two', 'issue', 'kpm', 'time', 'keep', 'go', 'forward', 'ii', 'submitted', 'time', 'report', 'last', 'week', 'supervisor', 'receive', 'iii', 'time', 'keeping', 'window', 'showing', 'one', 'row', 'time', 'cannot', 'enter', 'new', 'vacation', 'time', 'dathniel', 'fangtry', 'senior', 'staff', 'engineer'] list_processed_text: [['problem'], ['kpm'], ['time'], ['keeping'], ['time'], ['dear'], ['sir'], ['two'], ['issue'], ['kpm'], ['time'], ['keep'], ['go'], ['forward'], ['ii'], ['submitted'], ['time'], ['report'], ['last'], ['week'], ['supervisor'], ['receive'], ['iii'], ['time'], ['keeping'], ['window'], ['showing'], ['one'], ['row'], ['time'], ['cannot'], ['enter'], ['new'], ['vacation'], ['time'], ['dathniel'], ['fangtry'], ['senior'], ['staff'], ['engineer']] k: 1120 len: <class 'list'> Data: ['unable', 'see', 'engineering', 'tool', 'unable', 'see', 'engineering', 'tool'] processed_text: ['unable', 'see', 'engineering', 'tool', 'unable', 'see', 'engineering', 'tool'] list_processed_text: [['unable'], ['see'], ['engineering'], ['tool'], ['unable'], ['see'], ['engineering'], ['tool']] k: 1121 len: <class 'list'> Data: ['need', 'file', 'pulled', 'backup', 'manufacturing', 'backorder', 'database', 'openorderbook', 'vg', 'rev', 'accdb', 'current', 'file', 'corrupt', 'working', 'server', 'name', 'dat', 'hostname'] processed_text: ['need', 'file', 'pulled', 'backup', 'manufacturing', 'backorder', 'database', 'openorderbook', 'vg', 'rev', 'accdb', 'current', 'file', 'corrupt', 'working', 'server', 'name', 'dat', 'hostname'] list_processed_text: [['need'], ['file'], ['pulled'], ['backup'], ['manufacturing'], ['backorder'], ['database'], ['openorderbook'], ['vg'], ['rev'], ['accdb'], ['current'], ['file'], ['corrupt'], ['working'], ['server'], ['name'], ['dat'], ['hostname']] k: 1122 len: <class 'list'> Data: ['wifi', 'companysecure', 'working', 'sao', 'bernardo', 'campo', 'iwifi', 'companysecure', 'working', 'sao', 'bernardo', 'campo'] processed_text: ['wifi', 'companysecure', 'working', 'sao', 'bernardo', 'campo', 'iwifi', 'companysecure', 'working', 'sao', 'bernardo', 'campo'] list_processed_text: [['wifi'], ['companysecure'], ['working'], ['sao'], ['bernardo'], ['campo'], ['iwifi'], ['companysecure'], ['working'], ['sao'], ['bernardo'], ['campo']] k: 1123 len: <class 'list'> Data: ['blank', 'call', 'call', 'came', 'got', 'disconnected', 'private', 'number', 'unable', 'call'] processed_text: ['blank', 'call', 'call', 'came', 'got', 'disconnected', 'private', 'number', 'unable', 'call'] list_processed_text: [['blank'], ['call'], ['call'], ['came'], ['got'], ['disconnected'], ['private'], ['number'], ['unable'], ['call']] k: 1124 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 1125 len: <class 'list'> Data: ['account', 'lockout', 'account', 'lockout'] processed_text: ['account', 'lockout', 'account', 'lockout'] list_processed_text: [['account'], ['lockout'], ['account'], ['lockout']] k: 1126 len: <class 'list'> Data: ['able', 'post', 'delivery', 'get', 'attached', 'error', 'trying', 'post', 'delivery'] processed_text: ['able', 'post', 'delivery', 'get', 'attached', 'error', 'trying', 'post', 'delivery'] list_processed_text: [['able'], ['post'], ['delivery'], ['get'], ['attached'], ['error'], ['trying'], ['post'], ['delivery']] k: 1127 len: <class 'list'> Data: ['skype', 'addin', 'disabled', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'add', 'skype', 'meeting', 'link', 'new', 'meeting', 'notice', 'button', 'longer', 'please', 'advise', 'get', 'back'] processed_text: ['skype', 'addin', 'disabled', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'add', 'skype', 'meeting', 'link', 'new', 'meeting', 'notice', 'button', 'longer', 'please', 'advise', 'get', 'back'] list_processed_text: [['skype'], ['addin'], ['disabled'], ['name'], ['pfzxecbo'], ['ptygkvzl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['add'], ['skype'], ['meeting'], ['link'], ['new'], ['meeting'], ['notice'], ['button'], ['longer'], ['please'], ['advise'], ['get'], ['back']] k: 1128 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 1129 len: <class 'list'> Data: ['uninstalling', 'driver', 'update', 'slimware', 'technology', 'external', 'software', 'uninstalling', 'driver', 'update', 'slimware', 'technology', 'external', 'software'] processed_text: ['uninstalling', 'driver', 'update', 'slimware', 'technology', 'external', 'software', 'uninstalling', 'driver', 'update', 'slimware', 'technology', 'external', 'software'] list_processed_text: [['uninstalling'], ['driver'], ['update'], ['slimware'], ['technology'], ['external'], ['software'], ['uninstalling'], ['driver'], ['update'], ['slimware'], ['technology'], ['external'], ['software']] k: 1130 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 1131 len: <class 'list'> Data: ['venue', 'pro', 'vpro', 'detachable', 'keybankrd', 'severe', 'issue', 'hello', 'please', 'send', 'replacement', 'detachable', 'keybankrd', 'venue', 'pro', 'vpro', 'right', 'hand', 'key', 'working', 'working', 'properly', 'make', 'using', 'machine', 'problematic'] processed_text: ['venue', 'pro', 'vpro', 'detachable', 'keybankrd', 'severe', 'issue', 'hello', 'please', 'send', 'replacement', 'detachable', 'keybankrd', 'venue', 'pro', 'vpro', 'right', 'hand', 'key', 'working', 'working', 'properly', 'make', 'using', 'machine', 'problematic'] list_processed_text: [['venue'], ['pro'], ['vpro'], ['detachable'], ['keybankrd'], ['severe'], ['issue'], ['hello'], ['please'], ['send'], ['replacement'], ['detachable'], ['keybankrd'], ['venue'], ['pro'], ['vpro'], ['right'], ['hand'], ['key'], ['working'], ['working'], ['properly'], ['make'], ['using'], ['machine'], ['problematic']] k: 1132 len: <class 'list'> Data: ['lost', 'access', 'mii', 'scanning', 'name', 'tim', 'hope', 'email', 'telephone', 'summary', 'two', 'employee', 'lost', 'access', 'mii', 'scanning', 'clock', 'number'] processed_text: ['lost', 'access', 'mii', 'scanning', 'name', 'tim', 'hope', 'email', 'telephone', 'summary', 'two', 'employee', 'lost', 'access', 'mii', 'scanning', 'clock', 'number'] list_processed_text: [['lost'], ['access'], ['mii'], ['scanning'], ['name'], ['tim'], ['hope'], ['email'], ['telephone'], ['summary'], ['two'], ['employee'], ['lost'], ['access'], ['mii'], ['scanning'], ['clock'], ['number']] k: 1133 len: <class 'list'> Data: ['odbc', 'error', 'system', 'error', 'specified', 'module', 'found', 'driver', 'loaded', 'would', 'like', 'create', 'serial', 'letter', 'cannot', 'open', 'data', 'source', 'excellist', 'system', 'error', 'ask', 'help,', 'thank'] processed_text: ['odbc', 'error', 'system', 'error', 'specified', 'module', 'found', 'driver', 'loaded', 'would', 'like', 'create', 'serial', 'letter', 'cannot', 'open', 'data', 'source', 'excellist', 'system', 'error', 'ask', 'help,', 'thank'] list_processed_text: [['odbc'], ['error'], ['system'], ['error'], ['specified'], ['module'], ['found'], ['driver'], ['loaded'], ['would'], ['like'], ['create'], ['serial'], ['letter'], ['cannot'], ['open'], ['data'], ['source'], ['excellist'], ['system'], ['error'], ['ask'], ['help,'], ['thank']] k: 1134 len: <class 'list'> Data: ['unable', 'connect', 'internet', 'unable', 'connect', 'internet'] processed_text: ['unable', 'connect', 'internet', 'unable', 'connect', 'internet'] list_processed_text: [['unable'], ['connect'], ['internet'], ['unable'], ['connect'], ['internet']] k: 1135 len: <class 'list'> Data: ['system', 'freezing', 'system', 'freezing'] processed_text: ['system', 'freezing', 'system', 'freezing'] list_processed_text: [['system'], ['freezing'], ['system'], ['freezing']] k: 1136 len: <class 'list'> Data: ['erp', 'login', 'issue', 'password', 'reset', 'erp', 'login', 'issue', 'password', 'reset'] processed_text: ['erp', 'login', 'issue', 'password', 'reset', 'erp', 'login', 'issue', 'password', 'reset'] list_processed_text: [['erp'], ['login'], ['issue'], ['password'], ['reset'], ['erp'], ['login'], ['issue'], ['password'], ['reset']] k: 1137 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'eh', 'mpls', 'rtr', 'located', 'usa', 'company', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'eh', 'mpls', 'rtr', 'located', 'usa', 'company', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['eh'], ['mpls'], ['rtr'], ['located'], ['usa'], ['company'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1138 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 1139 len: <class 'list'> Data: ['reset', 'password', 'rzxfgmcu', 'xprwayoc', 'impact', 'award', 'please', 'unlock', 'password', 'forgot'] processed_text: ['reset', 'password', 'rzxfgmcu', 'xprwayoc', 'impact', 'award', 'please', 'unlock', 'password', 'forgot'] list_processed_text: [['reset'], ['password'], ['rzxfgmcu'], ['xprwayoc'], ['impact'], ['award'], ['please'], ['unlock'], ['password'], ['forgot']] k: 1140 len: <class 'list'> Data: ['outlook', 'issue', 'loading', 'outlook', 'issue', 'loading'] processed_text: ['outlook', 'issue', 'loading', 'outlook', 'issue', 'loading'] list_processed_text: [['outlook'], ['issue'], ['loading'], ['outlook'], ['issue'], ['loading']] k: 1141 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 1142 len: <class 'list'> Data: ['please', 'redirect', 'local', 'word', 'document', 'doc', 'broken', 'following', 'word', 'document', 'longer', 'edited', 'edksm', 'q', 'testimonial', 'customer', 'doc', 'cursor', 'jump', 'constantly', 'page'] processed_text: ['please', 'redirect', 'local', 'word', 'document', 'doc', 'broken', 'following', 'word', 'document', 'longer', 'edited', 'edksm', 'q', 'testimonial', 'customer', 'doc', 'cursor', 'jump', 'constantly', 'page'] list_processed_text: [['please'], ['redirect'], ['local'], ['word'], ['document'], ['doc'], ['broken'], ['following'], ['word'], ['document'], ['longer'], ['edited'], ['edksm'], ['q'], ['testimonial'], ['customer'], ['doc'], ['cursor'], ['jump'], ['constantly'], ['page']] k: 1143 len: <class 'list'> Data: ['reset', 'password', 'wvdxnkhf', 'jirecvta', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'wvdxnkhf', 'jirecvta', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['wvdxnkhf'], ['jirecvta'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1144 len: <class 'list'> Data: ['scheduled', 'job', 'need', 'canceled', 'job', 'printing', 'every', 'morning', 'bd', 'need', 'cancelled', 'one', 'printed', 'today', 'look', 'tomorrow', 'date', 'see', 'one', 'released', 'proint', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] processed_text: ['scheduled', 'job', 'need', 'canceled', 'job', 'printing', 'every', 'morning', 'bd', 'need', 'cancelled', 'one', 'printed', 'today', 'look', 'tomorrow', 'date', 'see', 'one', 'released', 'proint', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] list_processed_text: [['scheduled'], ['job'], ['need'], ['canceled'], ['job'], ['printing'], ['every'], ['morning'], ['bd'], ['need'], ['cancelled'], ['one'], ['printed'], ['today'], ['look'], ['tomorrow'], ['date'], ['see'], ['one'], ['released'], ['proint'], ['bwfhtumx'], ['japznrvb'], ['regional'], ['controller']] k: 1145 len: <class 'list'> Data: ['fc', 'eweausbildung', 'jannek', 'ndling', 'hello', 'please', 'r', 'jannek', 'ndling', 'access', 'folder', 'department', 'training', 'best', 'regard'] processed_text: ['fc', 'eweausbildung', 'jannek', 'ndling', 'hello', 'please', 'r', 'jannek', 'ndling', 'access', 'folder', 'department', 'training', 'best', 'regard'] list_processed_text: [['fc'], ['eweausbildung'], ['jannek'], ['ndling'], ['hello'], ['please'], ['r'], ['jannek'], ['ndling'], ['access'], ['folder'], ['department'], ['training'], ['best'], ['regard']] k: 1146 len: <class 'list'> Data: ['engineering', 'tool', 'work', 'hi', 'cannot', 'open', 'close', 'manipulate', 'task', 'engineering', 'tool', 'make', 'difficult', 'work', 'team', 'india', 'please', 'look'] processed_text: ['engineering', 'tool', 'work', 'hi', 'cannot', 'open', 'close', 'manipulate', 'task', 'engineering', 'tool', 'make', 'difficult', 'work', 'team', 'india', 'please', 'look'] list_processed_text: [['engineering'], ['tool'], ['work'], ['hi'], ['cannot'], ['open'], ['close'], ['manipulate'], ['task'], ['engineering'], ['tool'], ['make'], ['difficult'], ['work'], ['team'], ['india'], ['please'], ['look']] k: 1147 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 1148 len: <class 'list'> Data: ['erp', 'eu', 'tool', 'slow', 'eu', 'tool', 'sometimes', 'work'] processed_text: ['erp', 'eu', 'tool', 'slow', 'eu', 'tool', 'sometimes', 'work'] list_processed_text: [['erp'], ['eu'], ['tool'], ['slow'], ['eu'], ['tool'], ['sometimes'], ['work']] k: 1149 len: <class 'list'> Data: ['erp', 'complete', 'system', 'slow', 'erp', 'sid', 'system', 'germany', 'extremly', 'slow', 'delivery', 'possilbe', 'please', 'help'] processed_text: ['erp', 'complete', 'system', 'slow', 'erp', 'sid', 'system', 'germany', 'extremly', 'slow', 'delivery', 'possilbe', 'please', 'help'] list_processed_text: [['erp'], ['complete'], ['system'], ['slow'], ['erp'], ['sid'], ['system'], ['germany'], ['extremly'], ['slow'], ['delivery'], ['possilbe'], ['please'], ['help']] k: 1150 len: <class 'list'> Data: ['erp', 'logon', 'hi', 'please', 'assist', 'changed', 'password', 'morning', 'entered', 'old', 'password', 'please', 'activate', 'kind'] processed_text: ['erp', 'logon', 'hi', 'please', 'assist', 'changed', 'password', 'morning', 'entered', 'old', 'password', 'please', 'activate', 'kind'] list_processed_text: [['erp'], ['logon'], ['hi'], ['please'], ['assist'], ['changed'], ['password'], ['morning'], ['entered'], ['old'], ['password'], ['please'], ['activate'], ['kind']] k: 1151 len: <class 'list'> Data: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] processed_text: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] list_processed_text: [['window'], ['account'], ['unlock'], ['window'], ['account'], ['unlock']] k: 1152 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 1153 len: <class 'list'> Data: ['reset', 'password', 'reset', 'password'] processed_text: ['reset', 'password', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['reset'], ['password']] k: 1154 len: <class 'list'> Data: ['erp', 'reacts', 'extremely', 'slowly', 'transaction', 'erp', 'take', 'long'] processed_text: ['erp', 'reacts', 'extremely', 'slowly', 'transaction', 'erp', 'take', 'long'] list_processed_text: [['erp'], ['reacts'], ['extremely'], ['slowly'], ['transaction'], ['erp'], ['take'], ['long']] k: 1155 len: <class 'list'> Data: ['monitor', 'r', 'video', 'messmaschine', 'liefern', 'oziflwma', 'nhgvmqdl', 'monitor', 'r', 'video', 'messmaschine', 'liefern', 'oziflwma', 'nhgvmqdl'] processed_text: ['monitor', 'r', 'video', 'messmaschine', 'liefern', 'oziflwma', 'nhgvmqdl', 'monitor', 'r', 'video', 'messmaschine', 'liefern', 'oziflwma', 'nhgvmqdl'] list_processed_text: [['monitor'], ['r'], ['video'], ['messmaschine'], ['liefern'], ['oziflwma'], ['nhgvmqdl'], ['monitor'], ['r'], ['video'], ['messmaschine'], ['liefern'], ['oziflwma'], ['nhgvmqdl']] k: 1156 len: <class 'list'> Data: ['problem', 'mit', 'outlook', 'cwivnxuk', 'izmxqfud', 'problem', 'mit', 'outlook', 'cwivnxuk', 'izmxqfud'] processed_text: ['problem', 'mit', 'outlook', 'cwivnxuk', 'izmxqfud', 'problem', 'mit', 'outlook', 'cwivnxuk', 'izmxqfud'] list_processed_text: [['problem'], ['mit'], ['outlook'], ['cwivnxuk'], ['izmxqfud'], ['problem'], ['mit'], ['outlook'], ['cwivnxuk'], ['izmxqfud']] k: 1157 len: <class 'list'> Data: ['rechner', 'optiplex', 'defective', 'ewew', 'xpugntjv', 'zcaermdt', 'rechner', 'optiplex', 'defective', 'ewew', 'xpugntjv', 'zcaermdt'] processed_text: ['rechner', 'optiplex', 'defective', 'ewew', 'xpugntjv', 'zcaermdt', 'rechner', 'optiplex', 'defective', 'ewew', 'xpugntjv', 'zcaermdt'] list_processed_text: [['rechner'], ['optiplex'], ['defective'], ['ewew'], ['xpugntjv'], ['zcaermdt'], ['rechner'], ['optiplex'], ['defective'], ['ewew'], ['xpugntjv'], ['zcaermdt']] k: 1158 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'error', 'authorized', 'view', 'page', 'permission', 'view', 'directory', 'page', 'using', 'credential', 'supplied'] processed_text: ['engineering', 'tool', 'working', 'error', 'authorized', 'view', 'page', 'permission', 'view', 'directory', 'page', 'using', 'credential', 'supplied'] list_processed_text: [['engineering'], ['tool'], ['working'], ['error'], ['authorized'], ['view'], ['page'], ['permission'], ['view'], ['directory'], ['page'], ['using'], ['credential'], ['supplied']] k: 1159 len: <class 'list'> Data: ['outlook', 'start', 'anymore', 'clicking', 'outlook', 'icon', 'start', 'window', 'appears', 'minute', 'matheywter', 'long', 'wait', 'programdnty', 'start', 'also', 'restart', 'computer', 'brought', 'improvement'] processed_text: ['outlook', 'start', 'anymore', 'clicking', 'outlook', 'icon', 'start', 'window', 'appears', 'minute', 'matheywter', 'long', 'wait', 'programdnty', 'start', 'also', 'restart', 'computer', 'brought', 'improvement'] list_processed_text: [['outlook'], ['start'], ['anymore'], ['clicking'], ['outlook'], ['icon'], ['start'], ['window'], ['appears'], ['minute'], ['matheywter'], ['long'], ['wait'], ['programdnty'], ['start'], ['also'], ['restart'], ['computer'], ['brought'], ['improvement']] k: 1160 len: <class 'list'> Data: ['re', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'fyi', 'qasdhyzm', 'yuglsrwx', 'analyst', 'distributed', 'system', 'lan', 'pc', 'de', 'qasdhyzm', 'yuglsrwx', 'enviada', 'em', 'ter', 'feira', 'de', 'outubro', 'de', 'para', 'ferguss', 'gustaco', 'filipim', 'requena', 'hp', 'assun', 're', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'hi', 'waiting', 'available', 'gustavo', 'believe', 'need', 'connect', 'computer', 'gustathsvo', 'non', 'company', 'solve', 'problem', 'connect', 'computer', 'gustathsvo', 'ist', 'streamline', 'process', 'appreciate', 'gustathsvo', 'problem', 'week', 'qasdhyzm', 'yuglsrwx', 'analyst', 'distributed', 'system', 'de', 'enviada', 'em', 'ter', 'feira', 'de', 'outubro', 'de', 'para', 'qasdhyzm', 'yuglsrwx', 'assun', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'hi', 'please', 'come', 'availability', 'aerp', 'would', 'great', 'could', 'mention', 'date', 'time', 'ist', 'please', 'give', 'call', 'could', 'reach', 'via', 'skype'] processed_text: ['re', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'fyi', 'qasdhyzm', 'yuglsrwx', 'analyst', 'distributed', 'system', 'lan', 'pc', 'de', 'qasdhyzm', 'yuglsrwx', 'enviada', 'em', 'ter', 'feira', 'de', 'outubro', 'de', 'para', 'ferguss', 'gustaco', 'filipim', 'requena', 'hp', 'assun', 're', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'hi', 'waiting', 'available', 'gustavo', 'believe', 'need', 'connect', 'computer', 'gustathsvo', 'non', 'company', 'solve', 'problem', 'connect', 'computer', 'gustathsvo', 'ist', 'streamline', 'process', 'appreciate', 'gustathsvo', 'problem', 'week', 'qasdhyzm', 'yuglsrwx', 'analyst', 'distributed', 'system', 'de', 'enviada', 'em', 'ter', 'feira', 'de', 'outubro', 'de', 'para', 'qasdhyzm', 'yuglsrwx', 'assun', 'inc', 'problem', 'engineering', 'tool', 'non', 'miowvyrs', 'qkspyrdms', 'hi', 'please', 'come', 'availability', 'aerp', 'would', 'great', 'could', 'mention', 'date', 'time', 'ist', 'please', 'give', 'call', 'could', 'reach', 'via', 'skype'] list_processed_text: [['re'], ['inc'], ['problem'], ['engineering'], ['tool'], ['non'], ['miowvyrs'], ['qkspyrdms'], ['fyi'], ['qasdhyzm'], ['yuglsrwx'], ['analyst'], ['distributed'], ['system'], ['lan'], ['pc'], ['de'], ['qasdhyzm'], ['yuglsrwx'], ['enviada'], ['em'], ['ter'], ['feira'], ['de'], ['outubro'], ['de'], ['para'], ['ferguss'], ['gustaco'], ['filipim'], ['requena'], ['hp'], ['assun'], ['re'], ['inc'], ['problem'], ['engineering'], ['tool'], ['non'], ['miowvyrs'], ['qkspyrdms'], ['hi'], ['waiting'], ['available'], ['gustavo'], ['believe'], ['need'], ['connect'], ['computer'], ['gustathsvo'], ['non'], ['company'], ['solve'], ['problem'], ['connect'], ['computer'], ['gustathsvo'], ['ist'], ['streamline'], ['process'], ['appreciate'], ['gustathsvo'], ['problem'], ['week'], ['qasdhyzm'], ['yuglsrwx'], ['analyst'], ['distributed'], ['system'], ['de'], ['enviada'], ['em'], ['ter'], ['feira'], ['de'], ['outubro'], ['de'], ['para'], ['qasdhyzm'], ['yuglsrwx'], ['assun'], ['inc'], ['problem'], ['engineering'], ['tool'], ['non'], ['miowvyrs'], ['qkspyrdms'], ['hi'], ['please'], ['come'], ['availability'], ['aerp'], ['would'], ['great'], ['could'], ['mention'], ['date'], ['time'], ['ist'], ['please'], ['give'], ['call'], ['could'], ['reach'], ['via'], ['skype']] k: 1161 len: <class 'list'> Data: ['network', 'outage', 'company', 'russia', 'ups', 'vpn', 'rtr', 'company', 'com', 'located', 'russia', 'warehouse', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'company', 'russia', 'ups', 'vpn', 'rtr', 'company', 'com', 'located', 'russia', 'warehouse', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['company'], ['russia'], ['ups'], ['vpn'], ['rtr'], ['company'], ['com'], ['located'], ['russia'], ['warehouse'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1162 len: <class 'list'> Data: ['eu', 'tool', 'plant', 'germany', 'please', 'restart', 'eu', 'tool', 'server', 'aerp', 'run', 'production', 'planned'] processed_text: ['eu', 'tool', 'plant', 'germany', 'please', 'restart', 'eu', 'tool', 'server', 'aerp', 'run', 'production', 'planned'] list_processed_text: [['eu'], ['tool'], ['plant'], ['germany'], ['please'], ['restart'], ['eu'], ['tool'], ['server'], ['aerp'], ['run'], ['production'], ['planned']] k: 1163 len: <class 'list'> Data: ['create', 'business', 'partner', 'id', 'vvtathadnda', 'hello', 'team', 'please', 'create', 'business', 'partner', 'id', 'vvtathadnda', 'solution', 'manager', 'rtpcnyhq', 'ceqmwkhi'] processed_text: ['create', 'business', 'partner', 'id', 'vvtathadnda', 'hello', 'team', 'please', 'create', 'business', 'partner', 'id', 'vvtathadnda', 'solution', 'manager', 'rtpcnyhq', 'ceqmwkhi'] list_processed_text: [['create'], ['business'], ['partner'], ['id'], ['vvtathadnda'], ['hello'], ['team'], ['please'], ['create'], ['business'], ['partner'], ['id'], ['vvtathadnda'], ['solution'], ['manager'], ['rtpcnyhq'], ['ceqmwkhi']] k: 1164 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1165 len: <class 'list'> Data: ['unable', 'loin', 'es', 'portable', 'unable', 'loin', 'es', 'portable'] processed_text: ['unable', 'loin', 'es', 'portable', 'unable', 'loin', 'es', 'portable'] list_processed_text: [['unable'], ['loin'], ['es'], ['portable'], ['unable'], ['loin'], ['es'], ['portable']] k: 1166 len: <class 'list'> Data: ['multiple', 'app', 'problem', 'user', 'jesjnlyenmrest', 'hello', 'user', 'jesjnlyenmrest', 'experiencing', 'programdnty', 'issue', 'aplications', 'engineering', 'tool', 'access', 'create', 'new', 'report', 'unable', 'submit', 'computer', 'approximately', 'one', 'year', 'old', 'rather', 'reinstall', 'pc', 'instead', 'trying', 'fix', 'problem', 'separatelly', 'best'] processed_text: ['multiple', 'app', 'problem', 'user', 'jesjnlyenmrest', 'hello', 'user', 'jesjnlyenmrest', 'experiencing', 'programdnty', 'issue', 'aplications', 'engineering', 'tool', 'access', 'create', 'new', 'report', 'unable', 'submit', 'computer', 'approximately', 'one', 'year', 'old', 'rather', 'reinstall', 'pc', 'instead', 'trying', 'fix', 'problem', 'separatelly', 'best'] list_processed_text: [['multiple'], ['app'], ['problem'], ['user'], ['jesjnlyenmrest'], ['hello'], ['user'], ['jesjnlyenmrest'], ['experiencing'], ['programdnty'], ['issue'], ['aplications'], ['engineering'], ['tool'], ['access'], ['create'], ['new'], ['report'], ['unable'], ['submit'], ['computer'], ['approximately'], ['one'], ['year'], ['old'], ['rather'], ['reinstall'], ['pc'], ['instead'], ['trying'], ['fix'], ['problem'], ['separatelly'], ['best']] k: 1167 len: <class 'list'> Data: ['setup', 'eu', 'tool', 'wu', 'jionmpsf', 'wnkpzcmv', 'setup', 'eu', 'tool', 'wu', 'jionmpsf', 'wnkpzcmv'] processed_text: ['setup', 'eu', 'tool', 'wu', 'jionmpsf', 'wnkpzcmv', 'setup', 'eu', 'tool', 'wu', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['setup'], ['eu'], ['tool'], ['wu'], ['jionmpsf'], ['wnkpzcmv'], ['setup'], ['eu'], ['tool'], ['wu'], ['jionmpsf'], ['wnkpzcmv']] k: 1168 len: <class 'list'> Data: ['fc', 'hostname', 'sk', 'line', 'user', 'mokolthrla', 'hello', 'please', 'read', 'write', 'authorization', 'r', 'niptbwdq', 'csenjruz', 'set', 'discussed', 'sbtvploj', 'mwtrouyl', 'gru', 'lhmxposv', 'lnpgjhus', 'department', 'manager', 'technical', 'service', 'manager', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'germany', 'germany', 'germany', 'registered', 'office', 'gmbh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'general', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'registered', 'partner', 'registered', 'office', 'rth', 'bay', 'registergerirtcht', 'listed', 'court', 'regster', 'rth', 'niptbwdq', 'csenjruz', 'sent', 'monday', 'october', 'jionmpsf', 'wnkpzcmv', 'xmlbfjpg', 'yegzbvru', 'dhoalycb', 'yopvwrjq', 'lhmxposv', 'lnpgjhus', 'sbtvploj', 'mwtrouyledwrjq', 'lhmxposv', 'lnpgjhus', 'sbtvploj', 'mwtrou', 'cedwrjj', 'concerned', 'serviceman', 'crucu', 'csenjruz', 'mwtrou', 'cedwum', 'friend'] processed_text: ['fc', 'hostname', 'sk', 'line', 'user', 'mokolthrla', 'hello', 'please', 'read', 'write', 'authorization', 'r', 'niptbwdq', 'csenjruz', 'set', 'discussed', 'sbtvploj', 'mwtrouyl', 'gru', 'lhmxposv', 'lnpgjhus', 'department', 'manager', 'technical', 'service', 'manager', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'germany', 'germany', 'germany', 'registered', 'office', 'gmbh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'general', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'partner', 'germany', 'nh', 'registered', 'office', 'registered', 'court', 'registered', 'company', 'registered', 'partner', 'registered', 'office', 'rth', 'bay', 'registergerirtcht', 'listed', 'court', 'regster', 'rth', 'niptbwdq', 'csenjruz', 'sent', 'monday', 'october', 'jionmpsf', 'wnkpzcmv', 'xmlbfjpg', 'yegzbvru', 'dhoalycb', 'yopvwrjq', 'lhmxposv', 'lnpgjhus', 'sbtvploj', 'mwtrouyledwrjq', 'lhmxposv', 'lnpgjhus', 'sbtvploj', 'mwtrou', 'cedwrjj', 'concerned', 'serviceman', 'crucu', 'csenjruz', 'mwtrou', 'cedwum', 'friend'] list_processed_text: [['fc'], ['hostname'], ['sk'], ['line'], ['user'], ['mokolthrla'], ['hello'], ['please'], ['read'], ['write'], ['authorization'], ['r'], ['niptbwdq'], ['csenjruz'], ['set'], ['discussed'], ['sbtvploj'], ['mwtrouyl'], ['gru'], ['lhmxposv'], ['lnpgjhus'], ['department'], ['manager'], ['technical'], ['service'], ['manager'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['germany'], ['germany'], ['germany'], ['registered'], ['office'], ['gmbh'], ['registered'], ['office'], ['registered'], ['court'], ['registered'], ['company'], ['partner'], ['germany'], ['nh'], ['registered'], ['office'], ['registered'], ['court'], ['registered'], ['company'], ['general'], ['partner'], ['germany'], ['nh'], ['registered'], ['office'], ['registered'], ['court'], ['registered'], ['company'], ['partner'], ['germany'], ['nh'], ['registered'], ['office'], ['registered'], ['court'], ['registered'], ['company'], ['registered'], ['partner'], ['registered'], ['office'], ['rth'], ['bay'], ['registergerirtcht'], ['listed'], ['court'], ['regster'], ['rth'], ['niptbwdq'], ['csenjruz'], ['sent'], ['monday'], ['october'], ['jionmpsf'], ['wnkpzcmv'], ['xmlbfjpg'], ['yegzbvru'], ['dhoalycb'], ['yopvwrjq'], ['lhmxposv'], ['lnpgjhus'], ['sbtvploj'], ['mwtrouyledwrjq'], ['lhmxposv'], ['lnpgjhus'], ['sbtvploj'], ['mwtrou'], ['cedwrjj'], ['concerned'], ['serviceman'], ['crucu'], ['csenjruz'], ['mwtrou'], ['cedwum'], ['friend']] k: 1169 len: <class 'list'> Data: ['insert', 'n', 'please', 'insert', 'delivery', 'note', 'erp', 'book'] processed_text: ['insert', 'n', 'please', 'insert', 'delivery', 'note', 'erp', 'book'] list_processed_text: [['insert'], ['n'], ['please'], ['insert'], ['delivery'], ['note'], ['erp'], ['book']] k: 1170 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1171 len: <class 'list'> Data: ['purchase', 'order', 'print', 'dear', 'jathyrsy', 'plant', 'audit', 'auditor', 'would', 'like', 'see', 'po', 'document', 'hard', 'copy', 'way', 'print', 'po', 'document', 'one', 'time', 'ues', 'men', 'zz', 'mail', 'need', 'one', 'one', 'number', 'po'] processed_text: ['purchase', 'order', 'print', 'dear', 'jathyrsy', 'plant', 'audit', 'auditor', 'would', 'like', 'see', 'po', 'document', 'hard', 'copy', 'way', 'print', 'po', 'document', 'one', 'time', 'ues', 'men', 'zz', 'mail', 'need', 'one', 'one', 'number', 'po'] list_processed_text: [['purchase'], ['order'], ['print'], ['dear'], ['jathyrsy'], ['plant'], ['audit'], ['auditor'], ['would'], ['like'], ['see'], ['po'], ['document'], ['hard'], ['copy'], ['way'], ['print'], ['po'], ['document'], ['one'], ['time'], ['ues'], ['men'], ['zz'], ['mail'], ['need'], ['one'], ['one'], ['number'], ['po']] k: 1172 len: <class 'list'> Data: ['network', 'outage', 'company', 'na', 'usa', 'usa', 'township', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'company', 'na', 'usa', 'usa', 'township', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['township'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1173 len: <class 'list'> Data: ['outlook', 'bit', 'prompt', 'password', 'repeatedly', 'password', 'reset', 'downloading', 'sp', 'outlook', 'see', 'issue', 'resolved', 'installed'] processed_text: ['outlook', 'bit', 'prompt', 'password', 'repeatedly', 'password', 'reset', 'downloading', 'sp', 'outlook', 'see', 'issue', 'resolved', 'installed'] list_processed_text: [['outlook'], ['bit'], ['prompt'], ['password'], ['repeatedly'], ['password'], ['reset'], ['downloading'], ['sp'], ['outlook'], ['see'], ['issue'], ['resolved'], ['installed']] k: 1174 len: <class 'list'> Data: ['please', 'activate', 'iphone', 'receive', 'mail', 'hello', 'together', 'please', 'unlock', 'iphone', 'r', 'mail', 'reception', 'thank', 'kindly', 'gr', 'en', 'rtnyumbg', 'yzemkhbq', 'tel', 'kindly', 'gr', 'en', 'rtnyumbg', 'yzemkhbq', 'techn', 'advice', 'sale', 'company', 'germany', 'gmbh', 'max', 'planck', 'stra', 'x', 'apple', 'data', 'detector', 'apple', 'data', 'detector', 'company', 'germany', 'gmbh', 'business', 'leader', 'rfwlsoej', 'harvtjzk', 'mr.', 'pinkow', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'message', 'solely', 'exclusively', 'r', 'use', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'received', 'due', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['please', 'activate', 'iphone', 'receive', 'mail', 'hello', 'together', 'please', 'unlock', 'iphone', 'r', 'mail', 'reception', 'thank', 'kindly', 'gr', 'en', 'rtnyumbg', 'yzemkhbq', 'tel', 'kindly', 'gr', 'en', 'rtnyumbg', 'yzemkhbq', 'techn', 'advice', 'sale', 'company', 'germany', 'gmbh', 'max', 'planck', 'stra', 'x', 'apple', 'data', 'detector', 'apple', 'data', 'detector', 'company', 'germany', 'gmbh', 'business', 'leader', 'rfwlsoej', 'harvtjzk', 'mr.', 'pinkow', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'message', 'solely', 'exclusively', 'r', 'use', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'received', 'due', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['please'], ['activate'], ['iphone'], ['receive'], ['mail'], ['hello'], ['together'], ['please'], ['unlock'], ['iphone'], ['r'], ['mail'], ['reception'], ['thank'], ['kindly'], ['gr'], ['en'], ['rtnyumbg'], ['yzemkhbq'], ['tel'], ['kindly'], ['gr'], ['en'], ['rtnyumbg'], ['yzemkhbq'], ['techn'], ['advice'], ['sale'], ['company'], ['germany'], ['gmbh'], ['max'], ['planck'], ['stra'], ['x'], ['apple'], ['data'], ['detector'], ['apple'], ['data'], ['detector'], ['company'], ['germany'], ['gmbh'], ['business'], ['leader'], ['rfwlsoej'], ['harvtjzk'], ['mr.'], ['pinkow'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['excluded'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['forbidden'], ['received'], ['message'], ['due'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language'], ['message'], ['solely'], ['exclusively'], ['r'], ['use'], ['determined'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['communication'], ['received'], ['due'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 1175 len: <class 'list'> Data: ['please', 'unlock', 'reset', 'password', 'userid', 'bertes', 'let', 'know', 'initial', 'password', 'please', 'unlock', 'reset', 'password', 'userid', 'bertes', 'let', 'know', 'initial', 'password'] processed_text: ['please', 'unlock', 'reset', 'password', 'userid', 'bertes', 'let', 'know', 'initial', 'password', 'please', 'unlock', 'reset', 'password', 'userid', 'bertes', 'let', 'know', 'initial', 'password'] list_processed_text: [['please'], ['unlock'], ['reset'], ['password'], ['userid'], ['bertes'], ['let'], ['know'], ['initial'], ['password'], ['please'], ['unlock'], ['reset'], ['password'], ['userid'], ['bertes'], ['let'], ['know'], ['initial'], ['password']] k: 1176 len: <class 'list'> Data: ['user', 'need', 'help', 'open', 'rar', 'file', 'user', 'need', 'help', 'open', 'rar', 'file', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'application', 'user', 'system', 'user', 'informed', 'able', 'open', 'rar', 'file', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'open', 'rar', 'file', 'user', 'need', 'help', 'open', 'rar', 'file', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'application', 'user', 'system', 'user', 'informed', 'able', 'open', 'rar', 'file', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['open'], ['rar'], ['file'], ['user'], ['need'], ['help'], ['open'], ['rar'], ['file'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['installed'], ['application'], ['user'], ['system'], ['user'], ['informed'], ['able'], ['open'], ['rar'], ['file'], ['issue'], ['resolved']] k: 1177 len: <class 'list'> Data: ['medium', 'server', 'disconnect', 'lpapr', 'south', 'amerirtca', 'south', 'amerirtca', 'received', 'email', 'inin', 'tried', 'ping', 'server', 'responding', 'pm', 'medium', 'server', 'disconnect', 'company', 'inc', 'cthaasnoc', 'network', 'operation', 'center', 'noc', 'received', 'medium', 'server', 'disconnect', 'alert', 'via', 'proactive', 'monitoring', 'following', 'medium', 'server', 'opened', 'incident', 'track', 'alert', 'close', 'incident', 'connectivity', 'established', 'medium', 'server', 'please', 'verify', 'power', 'device', 'follow', 'network', 'provider', 'troubleshooting', 'affected', 'infrastructure', 'server', 'dengic', 'location', 'united', 'state', 'indgic', 'location', 'united', 'state', 'indgic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'additional', 'information', 'trghwyng', 'route', 'lpapr', 'maximum', 'hop', 'sartlgeo', 'lhqksbdx', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'question', 'regarding', 'notification', 'please', 'contact', 'support', 'team', 'number', 'listed', 'sincerely', 'interactive', 'intelligence', 'cthaasnoc', 'team', 'interactive', 'intelligence', 'blast', 'notification', 'mailbox', 'monitored', 'please', 'call', 'support', 'phone', 'number', 'communication', 'question'] processed_text: ['medium', 'server', 'disconnect', 'lpapr', 'south', 'amerirtca', 'south', 'amerirtca', 'received', 'email', 'inin', 'tried', 'ping', 'server', 'responding', 'pm', 'medium', 'server', 'disconnect', 'company', 'inc', 'cthaasnoc', 'network', 'operation', 'center', 'noc', 'received', 'medium', 'server', 'disconnect', 'alert', 'via', 'proactive', 'monitoring', 'following', 'medium', 'server', 'opened', 'incident', 'track', 'alert', 'close', 'incident', 'connectivity', 'established', 'medium', 'server', 'please', 'verify', 'power', 'device', 'follow', 'network', 'provider', 'troubleshooting', 'affected', 'infrastructure', 'server', 'dengic', 'location', 'united', 'state', 'indgic', 'location', 'united', 'state', 'indgic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'dengic', 'location', 'united', 'state', 'additional', 'information', 'trghwyng', 'route', 'lpapr', 'maximum', 'hop', 'sartlgeo', 'lhqksbdx', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'question', 'regarding', 'notification', 'please', 'contact', 'support', 'team', 'number', 'listed', 'sincerely', 'interactive', 'intelligence', 'cthaasnoc', 'team', 'interactive', 'intelligence', 'blast', 'notification', 'mailbox', 'monitored', 'please', 'call', 'support', 'phone', 'number', 'communication', 'question'] list_processed_text: [['medium'], ['server'], ['disconnect'], ['lpapr'], ['south'], ['amerirtca'], ['south'], ['amerirtca'], ['received'], ['email'], ['inin'], ['tried'], ['ping'], ['server'], ['responding'], ['pm'], ['medium'], ['server'], ['disconnect'], ['company'], ['inc'], ['cthaasnoc'], ['network'], ['operation'], ['center'], ['noc'], ['received'], ['medium'], ['server'], ['disconnect'], ['alert'], ['via'], ['proactive'], ['monitoring'], ['following'], ['medium'], ['server'], ['opened'], ['incident'], ['track'], ['alert'], ['close'], ['incident'], ['connectivity'], ['established'], ['medium'], ['server'], ['please'], ['verify'], ['power'], ['device'], ['follow'], ['network'], ['provider'], ['troubleshooting'], ['affected'], ['infrastructure'], ['server'], ['dengic'], ['location'], ['united'], ['state'], ['indgic'], ['location'], ['united'], ['state'], ['indgic'], ['location'], ['united'], ['state'], ['dengic'], ['location'], ['united'], ['state'], ['dengic'], ['location'], ['united'], ['state'], ['dengic'], ['location'], ['united'], ['state'], ['dengic'], ['location'], ['united'], ['state'], ['dengic'], ['location'], ['united'], ['state'], ['additional'], ['information'], ['trghwyng'], ['route'], ['lpapr'], ['maximum'], ['hop'], ['sartlgeo'], ['lhqksbdx'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['question'], ['regarding'], ['notification'], ['please'], ['contact'], ['support'], ['team'], ['number'], ['listed'], ['sincerely'], ['interactive'], ['intelligence'], ['cthaasnoc'], ['team'], ['interactive'], ['intelligence'], ['blast'], ['notification'], ['mailbox'], ['monitored'], ['please'], ['call'], ['support'], ['phone'], ['number'], ['communication'], ['question']] k: 1178 len: <class 'list'> Data: ['able', 'access', 'business', 'client', 'hello', 'able', 'access', 'business', 'client', 'please', 'help'] processed_text: ['able', 'access', 'business', 'client', 'hello', 'able', 'access', 'business', 'client', 'please', 'help'] list_processed_text: [['able'], ['access'], ['business'], ['client'], ['hello'], ['able'], ['access'], ['business'], ['client'], ['please'], ['help']] k: 1179 len: <class 'list'> Data: ['system', 'bankrd', 'temperature', 'alert', 'monitoring', 'tool', 'south', 'amerirtca', 'south', 'amerirtca', 'server', 'hostname', 'hostname', 'system', 'bankrd', 'inlet', 'temp', 'alert', 'hostname', 'system', 'bankrd', 'ambient', 'temp', 'alert', 'lpas', 'attached', 'screen', 'shot', 'window', 'event', 'viewer', 'log'] processed_text: ['system', 'bankrd', 'temperature', 'alert', 'monitoring', 'tool', 'south', 'amerirtca', 'south', 'amerirtca', 'server', 'hostname', 'hostname', 'system', 'bankrd', 'inlet', 'temp', 'alert', 'hostname', 'system', 'bankrd', 'ambient', 'temp', 'alert', 'lpas', 'attached', 'screen', 'shot', 'window', 'event', 'viewer', 'log'] list_processed_text: [['system'], ['bankrd'], ['temperature'], ['alert'], ['monitoring'], ['tool'], ['south'], ['amerirtca'], ['south'], ['amerirtca'], ['server'], ['hostname'], ['hostname'], ['system'], ['bankrd'], ['inlet'], ['temp'], ['alert'], ['hostname'], ['system'], ['bankrd'], ['ambient'], ['temp'], ['alert'], ['lpas'], ['attached'], ['screen'], ['shot'], ['window'], ['event'], ['viewer'], ['log']] k: 1180 len: <class 'list'> Data: ['erp', 'sid', 'password', 'sign', 'cabane', 'please', 'reset', 'daypay', 'thank', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'another', 'user', 'remember', 'erp', 'sid', 'password', 'sign', 'cabane', 'please', 'reset', 'daypay'] processed_text: ['erp', 'sid', 'password', 'sign', 'cabane', 'please', 'reset', 'daypay', 'thank', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'another', 'user', 'remember', 'erp', 'sid', 'password', 'sign', 'cabane', 'please', 'reset', 'daypay'] list_processed_text: [['erp'], ['sid'], ['password'], ['sign'], ['cabane'], ['please'], ['reset'], ['daypay'], ['thank'], ['name'], ['fyzceglp'], ['vfnraqxc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['another'], ['user'], ['remember'], ['erp'], ['sid'], ['password'], ['sign'], ['cabane'], ['please'], ['reset'], ['daypay']] k: 1181 len: <class 'list'> Data: ['user', 'pluytd', 'erthryika', 'plaunyud', 'locked', 'erp', 'sid', 'please', 'reset', 'password', 'daypay', 'thank', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'user', 'pluytd', 'erthryika', 'plaunyud', 'locked', 'erp', 'sid', 'please', 'reset', 'password', 'daypay'] processed_text: ['user', 'pluytd', 'erthryika', 'plaunyud', 'locked', 'erp', 'sid', 'please', 'reset', 'password', 'daypay', 'thank', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'user', 'pluytd', 'erthryika', 'plaunyud', 'locked', 'erp', 'sid', 'please', 'reset', 'password', 'daypay'] list_processed_text: [['user'], ['pluytd'], ['erthryika'], ['plaunyud'], ['locked'], ['erp'], ['sid'], ['please'], ['reset'], ['password'], ['daypay'], ['thank'], ['name'], ['fyzceglp'], ['vfnraqxc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['user'], ['pluytd'], ['erthryika'], ['plaunyud'], ['locked'], ['erp'], ['sid'], ['please'], ['reset'], ['password'], ['daypay']] k: 1182 len: <class 'list'> Data: ['reset', 'password', 'pxvjczdt', 'kizsjfpq', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'pxvjczdt', 'kizsjfpq', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['pxvjczdt'], ['kizsjfpq'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1183 len: <class 'list'> Data: ['unable', 'access', 'email', 'outlook', 'unable', 'access', 'email', 'outlook'] processed_text: ['unable', 'access', 'email', 'outlook', 'unable', 'access', 'email', 'outlook'] list_processed_text: [['unable'], ['access'], ['email'], ['outlook'], ['unable'], ['access'], ['email'], ['outlook']] k: 1184 len: <class 'list'> Data: ['erp', 'pull', 'customer', 'part', 'number', 'ztax', 'item', 'tap', 'item', 'hello', 'team', 'please', 'help', 'check', 'following', 'issue', 'erp', 'pull', 'customer', 'part', 'number', 'ztax', 'item', 'tap', 'item', 'although', 'shown', 'delivery', 'note', 'please', 'see', 'attached', 'able', 'print', 'label', 'item'] processed_text: ['erp', 'pull', 'customer', 'part', 'number', 'ztax', 'item', 'tap', 'item', 'hello', 'team', 'please', 'help', 'check', 'following', 'issue', 'erp', 'pull', 'customer', 'part', 'number', 'ztax', 'item', 'tap', 'item', 'although', 'shown', 'delivery', 'note', 'please', 'see', 'attached', 'able', 'print', 'label', 'item'] list_processed_text: [['erp'], ['pull'], ['customer'], ['part'], ['number'], ['ztax'], ['item'], ['tap'], ['item'], ['hello'], ['team'], ['please'], ['help'], ['check'], ['following'], ['issue'], ['erp'], ['pull'], ['customer'], ['part'], ['number'], ['ztax'], ['item'], ['tap'], ['item'], ['although'], ['shown'], ['delivery'], ['note'], ['please'], ['see'], ['attached'], ['able'], ['print'], ['label'], ['item']] k: 1185 len: <class 'list'> Data: ['able', 'login', 'collaboration', 'platform', 'able', 'login', 'collaboration', 'platform'] processed_text: ['able', 'login', 'collaboration', 'platform', 'able', 'login', 'collaboration', 'platform'] list_processed_text: [['able'], ['login'], ['collaboration'], ['platform'], ['able'], ['login'], ['collaboration'], ['platform']] k: 1186 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1187 len: <class 'list'> Data: ['action', 'could', 'performed', 'henvrkuo', 'nogrfadw', 'getting', 'following', 'error', 'message', 'trying', 'access', 'purchasing', 'data', 'found', 'employee', 'inform', 'system', 'administration', 'please', 'sync', 'hr', 'org', 'detail', 'purchasing'] processed_text: ['action', 'could', 'performed', 'henvrkuo', 'nogrfadw', 'getting', 'following', 'error', 'message', 'trying', 'access', 'purchasing', 'data', 'found', 'employee', 'inform', 'system', 'administration', 'please', 'sync', 'hr', 'org', 'detail', 'purchasing'] list_processed_text: [['action'], ['could'], ['performed'], ['henvrkuo'], ['nogrfadw'], ['getting'], ['following'], ['error'], ['message'], ['trying'], ['access'], ['purchasing'], ['data'], ['found'], ['employee'], ['inform'], ['system'], ['administration'], ['please'], ['sync'], ['hr'], ['org'], ['detail'], ['purchasing']] k: 1188 len: <class 'list'> Data: ['would', 'like', 'able', 'use', 'camera', 'skype', 'business', 'call', 'add', 'option', 'option', 'currently', 'available', 'please', 'let', 'know'] processed_text: ['would', 'like', 'able', 'use', 'camera', 'skype', 'business', 'call', 'add', 'option', 'option', 'currently', 'available', 'please', 'let', 'know'] list_processed_text: [['would'], ['like'], ['able'], ['use'], ['camera'], ['skype'], ['business'], ['call'], ['add'], ['option'], ['option'], ['currently'], ['available'], ['please'], ['let'], ['know']] k: 1189 len: <class 'list'> Data: ['audio', 'ethic', 'page', 'audio', 'ethic', 'page'] processed_text: ['audio', 'ethic', 'page', 'audio', 'ethic', 'page'] list_processed_text: [['audio'], ['ethic'], ['page'], ['audio'], ['ethic'], ['page']] k: 1190 len: <class 'list'> Data: ['intermittent', 'audio', 'issue', 'computer', 'intermittent', 'audio', 'issue', 'computer'] processed_text: ['intermittent', 'audio', 'issue', 'computer', 'intermittent', 'audio', 'issue', 'computer'] list_processed_text: [['intermittent'], ['audio'], ['issue'], ['computer'], ['intermittent'], ['audio'], ['issue'], ['computer']] k: 1191 len: <class 'list'> Data: ['outlook', 'query', 'summary', 'logging', 'remotely', 'unable', 'access', 'outlook', 'understand', 'setting', 'need', 'change', 'fix', 'issue', 'please', 'help'] processed_text: ['outlook', 'query', 'summary', 'logging', 'remotely', 'unable', 'access', 'outlook', 'understand', 'setting', 'need', 'change', 'fix', 'issue', 'please', 'help'] list_processed_text: [['outlook'], ['query'], ['summary'], ['logging'], ['remotely'], ['unable'], ['access'], ['outlook'], ['understand'], ['setting'], ['need'], ['change'], ['fix'], ['issue'], ['please'], ['help']] k: 1192 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 1193 len: <class 'list'> Data: ['hpqc', 'uacyltoe', 'hxgaycze', 'client', 'login', 'error', 'try', 'login', 'following', 'message', 'received', 'please', 'advise'] processed_text: ['hpqc', 'uacyltoe', 'hxgaycze', 'client', 'login', 'error', 'try', 'login', 'following', 'message', 'received', 'please', 'advise'] list_processed_text: [['hpqc'], ['uacyltoe'], ['hxgaycze'], ['client'], ['login'], ['error'], ['try'], ['login'], ['following'], ['message'], ['received'], ['please'], ['advise']] k: 1194 len: <class 'list'> Data: ['ticket', 'query', 'ticket', 'ticket', 'query', 'ticket'] processed_text: ['ticket', 'query', 'ticket', 'ticket', 'query', 'ticket'] list_processed_text: [['ticket'], ['query'], ['ticket'], ['ticket'], ['query'], ['ticket']] k: 1195 len: <class 'list'> Data: ['skype', 'unable', 'log', 'skype', 'please', 'advise'] processed_text: ['skype', 'unable', 'log', 'skype', 'please', 'advise'] list_processed_text: [['skype'], ['unable'], ['log'], ['skype'], ['please'], ['advise']] k: 1196 len: <class 'list'> Data: ['monitor', 'ray', 'instrument', 'pc', 'stay', 'turned', 'monitor', 'ray', 'instrument', 'pc', 'stay', 'turned'] processed_text: ['monitor', 'ray', 'instrument', 'pc', 'stay', 'turned', 'monitor', 'ray', 'instrument', 'pc', 'stay', 'turned'] list_processed_text: [['monitor'], ['ray'], ['instrument'], ['pc'], ['stay'], ['turned'], ['monitor'], ['ray'], ['instrument'], ['pc'], ['stay'], ['turned']] k: 1197 len: <class 'list'> Data: ['sever', 'hqap', 'hd', 'failure', 'light', 'sever', 'hqap', 'hd', 'failure', 'light', 'kindly', 'create', 'ticket', 'vendor'] processed_text: ['sever', 'hqap', 'hd', 'failure', 'light', 'sever', 'hqap', 'hd', 'failure', 'light', 'kindly', 'create', 'ticket', 'vendor'] list_processed_text: [['sever'], ['hqap'], ['hd'], ['failure'], ['light'], ['sever'], ['hqap'], ['hd'], ['failure'], ['light'], ['kindly'], ['create'], ['ticket'], ['vendor']] k: 1198 len: <class 'list'> Data: ['interaction', 'id', 'static', 'sound', 'telephony', 'software', 'phone', 'id'] processed_text: ['interaction', 'id', 'static', 'sound', 'telephony', 'software', 'phone', 'id'] list_processed_text: [['interaction'], ['id'], ['static'], ['sound'], ['telephony'], ['software'], ['phone'], ['id']] k: 1199 len: <class 'list'> Data: ['plant', 'xerox', 'workcentre', 'rr', 'printer', 'please', 'advise', 'user', 'login', 'associated', 'machine', 'need', 'update', 'address', 'book'] processed_text: ['plant', 'xerox', 'workcentre', 'rr', 'printer', 'please', 'advise', 'user', 'login', 'associated', 'machine', 'need', 'update', 'address', 'book'] list_processed_text: [['plant'], ['xerox'], ['workcentre'], ['rr'], ['printer'], ['please'], ['advise'], ['user'], ['login'], ['associated'], ['machine'], ['need'], ['update'], ['address'], ['book']] k: 1200 len: <class 'list'> Data: ['need', 'installation', 'msoffice', 'need', 'installation', 'msoffice', 'user', 'new', 'joiner', 'unable', 'access', 'msoffice', 'license'] processed_text: ['need', 'installation', 'msoffice', 'need', 'installation', 'msoffice', 'user', 'new', 'joiner', 'unable', 'access', 'msoffice', 'license'] list_processed_text: [['need'], ['installation'], ['msoffice'], ['need'], ['installation'], ['msoffice'], ['user'], ['new'], ['joiner'], ['unable'], ['access'], ['msoffice'], ['license']] k: 1201 len: <class 'list'> Data: ['hostname', 'team', 'rta', 'full', 'control', 'access', 'rjodlbcf', 'uorcpftk', 'hostname', 'team', 'rta', 'full', 'control', 'access', 'rjodlbcf', 'uorcpftk'] processed_text: ['hostname', 'team', 'rta', 'full', 'control', 'access', 'rjodlbcf', 'uorcpftk', 'hostname', 'team', 'rta', 'full', 'control', 'access', 'rjodlbcf', 'uorcpftk'] list_processed_text: [['hostname'], ['team'], ['rta'], ['full'], ['control'], ['access'], ['rjodlbcf'], ['uorcpftk'], ['hostname'], ['team'], ['rta'], ['full'], ['control'], ['access'], ['rjodlbcf'], ['uorcpftk']] k: 1202 len: <class 'list'> Data: ['password', 'reset', 'rqeuest', 'sid', 'erp', 'fduinmtw', 'yofhirjs', 'hixsodl', 'summary', 'need', 'user', 'id', 'reset', 'sid', 'erp', 'fduinmtw', 'yofhirjs', 'hixsodl', 'please', 'mail', 'reset', 'password'] processed_text: ['password', 'reset', 'rqeuest', 'sid', 'erp', 'fduinmtw', 'yofhirjs', 'hixsodl', 'summary', 'need', 'user', 'id', 'reset', 'sid', 'erp', 'fduinmtw', 'yofhirjs', 'hixsodl', 'please', 'mail', 'reset', 'password'] list_processed_text: [['password'], ['reset'], ['rqeuest'], ['sid'], ['erp'], ['fduinmtw'], ['yofhirjs'], ['hixsodl'], ['summary'], ['need'], ['user'], ['id'], ['reset'], ['sid'], ['erp'], ['fduinmtw'], ['yofhirjs'], ['hixsodl'], ['please'], ['mail'], ['reset'], ['password']] k: 1203 len: <class 'list'> Data: ['unlock', 'password', 'hello', 'employee', 'access', 'scan', 'production', 'order', 'access', 'today', 'could', 'check', 'problem', 'let', 'know', 'hydluapo', 'qbgclmit', 'eulsvchi', 'rqflkeuc', 'tried', 'unlock', 'everything', 'password', 'management', 'tool', 'luck', 'cthryhris', 'kovaddcth', 'production', 'supervisor'] processed_text: ['unlock', 'password', 'hello', 'employee', 'access', 'scan', 'production', 'order', 'access', 'today', 'could', 'check', 'problem', 'let', 'know', 'hydluapo', 'qbgclmit', 'eulsvchi', 'rqflkeuc', 'tried', 'unlock', 'everything', 'password', 'management', 'tool', 'luck', 'cthryhris', 'kovaddcth', 'production', 'supervisor'] list_processed_text: [['unlock'], ['password'], ['hello'], ['employee'], ['access'], ['scan'], ['production'], ['order'], ['access'], ['today'], ['could'], ['check'], ['problem'], ['let'], ['know'], ['hydluapo'], ['qbgclmit'], ['eulsvchi'], ['rqflkeuc'], ['tried'], ['unlock'], ['everything'], ['password'], ['management'], ['tool'], ['luck'], ['cthryhris'], ['kovaddcth'], ['production'], ['supervisor']] k: 1204 len: <class 'list'> Data: ['frequent', 'lock', 'issue', 'hello', 'go', 'vpn', 'password', 'right', 'please', 'reset', 'password', 'also', 'vpn', 'many'] processed_text: ['frequent', 'lock', 'issue', 'hello', 'go', 'vpn', 'password', 'right', 'please', 'reset', 'password', 'also', 'vpn', 'many'] list_processed_text: [['frequent'], ['lock'], ['issue'], ['hello'], ['go'], ['vpn'], ['password'], ['right'], ['please'], ['reset'], ['password'], ['also'], ['vpn'], ['many']] k: 1205 len: <class 'list'> Data: ['engineering', 'tool', 'installed', 'properly', 'two', 'different', 'engineering', 'tool', 'installed', 'tablet', 'neither', 'work', 'properly', 'click', 'link', 'go', 'web', 'based', 'search', 'also', 'click', 'engineering', 'tool', 'icon', 'show', 'error', 'cannnot', 'continue', 'application', 'improperly', 'formatheywted', 'error', 'get', 'example', 'web', 'based', 'search', 'entering', 'new', 'engineering', 'tool', 'sorry', 'page', 'looking', 'exist', 'available', 'performed', 'web', 'search', 'http', 'engineering', 'data', 'report', 'server', 'page', 'report', 'viewer', 'aspx', 'report', 'viewer', 'page', 'report', 'server', 'found'] processed_text: ['engineering', 'tool', 'installed', 'properly', 'two', 'different', 'engineering', 'tool', 'installed', 'tablet', 'neither', 'work', 'properly', 'click', 'link', 'go', 'web', 'based', 'search', 'also', 'click', 'engineering', 'tool', 'icon', 'show', 'error', 'cannnot', 'continue', 'application', 'improperly', 'formatheywted', 'error', 'get', 'example', 'web', 'based', 'search', 'entering', 'new', 'engineering', 'tool', 'sorry', 'page', 'looking', 'exist', 'available', 'performed', 'web', 'search', 'http', 'engineering', 'data', 'report', 'server', 'page', 'report', 'viewer', 'aspx', 'report', 'viewer', 'page', 'report', 'server', 'found'] list_processed_text: [['engineering'], ['tool'], ['installed'], ['properly'], ['two'], ['different'], ['engineering'], ['tool'], ['installed'], ['tablet'], ['neither'], ['work'], ['properly'], ['click'], ['link'], ['go'], ['web'], ['based'], ['search'], ['also'], ['click'], ['engineering'], ['tool'], ['icon'], ['show'], ['error'], ['cannnot'], ['continue'], ['application'], ['improperly'], ['formatheywted'], ['error'], ['get'], ['example'], ['web'], ['based'], ['search'], ['entering'], ['new'], ['engineering'], ['tool'], ['sorry'], ['page'], ['looking'], ['exist'], ['available'], ['performed'], ['web'], ['search'], ['http'], ['engineering'], ['data'], ['report'], ['server'], ['page'], ['report'], ['viewer'], ['aspx'], ['report'], ['viewer'], ['page'], ['report'], ['server'], ['found']] k: 1206 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1207 len: <class 'list'> Data: ['help', 'programdnty', 'nx', 'hi', 'need', 'help', 'programdnty', 'nx', 'user', 'tiaghry', 'santhuy', 'pvimkcfw', 'sarxkfvj', 'click', 'gkad', 'nx', 'close', 'make', 'something', 'solve', 'problem'] processed_text: ['help', 'programdnty', 'nx', 'hi', 'need', 'help', 'programdnty', 'nx', 'user', 'tiaghry', 'santhuy', 'pvimkcfw', 'sarxkfvj', 'click', 'gkad', 'nx', 'close', 'make', 'something', 'solve', 'problem'] list_processed_text: [['help'], ['programdnty'], ['nx'], ['hi'], ['need'], ['help'], ['programdnty'], ['nx'], ['user'], ['tiaghry'], ['santhuy'], ['pvimkcfw'], ['sarxkfvj'], ['click'], ['gkad'], ['nx'], ['close'], ['make'], ['something'], ['solve'], ['problem']] k: 1208 len: <class 'list'> Data: ['crm', 'add', 'come', 'crm', 'add', 'come'] processed_text: ['crm', 'add', 'come', 'crm', 'add', 'come'] list_processed_text: [['crm'], ['add'], ['come'], ['crm'], ['add'], ['come']] k: 1209 len: <class 'list'> Data: ['analysis', 'working', 'run', 'quote', 'report', 'showing', 'tool', 'bar', 'try', 'open', 'erp', 'business', 'analysis', 'give', 'error', 'launcher', 'exited', 'error', 'analysis', 'add', 'registered', 'correctly'] processed_text: ['analysis', 'working', 'run', 'quote', 'report', 'showing', 'tool', 'bar', 'try', 'open', 'erp', 'business', 'analysis', 'give', 'error', 'launcher', 'exited', 'error', 'analysis', 'add', 'registered', 'correctly'] list_processed_text: [['analysis'], ['working'], ['run'], ['quote'], ['report'], ['showing'], ['tool'], ['bar'], ['try'], ['open'], ['erp'], ['business'], ['analysis'], ['give'], ['error'], ['launcher'], ['exited'], ['error'], ['analysis'], ['add'], ['registered'], ['correctly']] k: 1210 len: <class 'list'> Data: ['password', 'reset', 'request', 'erp', 'dear', 'sir', 'please', 'reset', 'password', 'failed', 'logon', 'changed', 'password', 'management', 'tool', 'password', 'due', 'expiry', 'result', 'problem', 'user', 'name', 'schyhty', 'emp', 'id', 'best'] processed_text: ['password', 'reset', 'request', 'erp', 'dear', 'sir', 'please', 'reset', 'password', 'failed', 'logon', 'changed', 'password', 'management', 'tool', 'password', 'due', 'expiry', 'result', 'problem', 'user', 'name', 'schyhty', 'emp', 'id', 'best'] list_processed_text: [['password'], ['reset'], ['request'], ['erp'], ['dear'], ['sir'], ['please'], ['reset'], ['password'], ['failed'], ['logon'], ['changed'], ['password'], ['management'], ['tool'], ['password'], ['due'], ['expiry'], ['result'], ['problem'], ['user'], ['name'], ['schyhty'], ['emp'], ['id'], ['best']] k: 1211 len: <class 'list'> Data: ['flash', 'player', 'update', 'issue', 'flash', 'player', 'update', 'issue'] processed_text: ['flash', 'player', 'update', 'issue', 'flash', 'player', 'update', 'issue'] list_processed_text: [['flash'], ['player'], ['update'], ['issue'], ['flash'], ['player'], ['update'], ['issue']] k: 1212 len: <class 'list'> Data: ['folder', 'access', 'rqeuest', 'ldgm', 'lean', 'contact', 'need', 'read', 'write', 'access', 'folder', 'ldgm', 'lean', 'network', 'path', 'hostname', 'public', 'lean', 'read', 'write', 'access'] processed_text: ['folder', 'access', 'rqeuest', 'ldgm', 'lean', 'contact', 'need', 'read', 'write', 'access', 'folder', 'ldgm', 'lean', 'network', 'path', 'hostname', 'public', 'lean', 'read', 'write', 'access'] list_processed_text: [['folder'], ['access'], ['rqeuest'], ['ldgm'], ['lean'], ['contact'], ['need'], ['read'], ['write'], ['access'], ['folder'], ['ldgm'], ['lean'], ['network'], ['path'], ['hostname'], ['public'], ['lean'], ['read'], ['write'], ['access']] k: 1213 len: <class 'list'> Data: ['erp', 'prtgghjk', 'password', 'reset', 'erp', 'prtgghjk', 'password', 'reset'] processed_text: ['erp', 'prtgghjk', 'password', 'reset', 'erp', 'prtgghjk', 'password', 'reset'] list_processed_text: [['erp'], ['prtgghjk'], ['password'], ['reset'], ['erp'], ['prtgghjk'], ['password'], ['reset']] k: 1214 len: <class 'list'> Data: ['need', 'change', 'password', 'need', 'change', 'password'] processed_text: ['need', 'change', 'password', 'need', 'change', 'password'] list_processed_text: [['need'], ['change'], ['password'], ['need'], ['change'], ['password']] k: 1215 len: <class 'list'> Data: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] processed_text: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] list_processed_text: [['window'], ['account'], ['unlock'], ['window'], ['account'], ['unlock']] k: 1216 len: <class 'list'> Data: ['forward', 'bcxfhekz', 'bplfrnis', 'email', 'zneyrlhg', 'bfiwanze', 'bcxfhekz', 'bplfrnis', 'exited', 'company', 'need', 'forward', 'bcxfhekz', 'bplfrnis', 'email', 'zneyrlhg', 'bfiwanze', 'effective', 'immediately'] processed_text: ['forward', 'bcxfhekz', 'bplfrnis', 'email', 'zneyrlhg', 'bfiwanze', 'bcxfhekz', 'bplfrnis', 'exited', 'company', 'need', 'forward', 'bcxfhekz', 'bplfrnis', 'email', 'zneyrlhg', 'bfiwanze', 'effective', 'immediately'] list_processed_text: [['forward'], ['bcxfhekz'], ['bplfrnis'], ['email'], ['zneyrlhg'], ['bfiwanze'], ['bcxfhekz'], ['bplfrnis'], ['exited'], ['company'], ['need'], ['forward'], ['bcxfhekz'], ['bplfrnis'], ['email'], ['zneyrlhg'], ['bfiwanze'], ['effective'], ['immediately']] k: 1217 len: <class 'list'> Data: ['cothyshy', 'access', 'link', 'edit', 'whenever', 'save', 'receive', 'email', 'confirmation', 'telephone', 'summary', 'completed', 'nda', 'alarm', 'system', 'receiving', 'emailed', 'response', 'link', 'form', 'cothyshy', 'access', 'link', 'edit', 'whenever', 'save', 'receive', 'email', 'confirmation', 'copy'] processed_text: ['cothyshy', 'access', 'link', 'edit', 'whenever', 'save', 'receive', 'email', 'confirmation', 'telephone', 'summary', 'completed', 'nda', 'alarm', 'system', 'receiving', 'emailed', 'response', 'link', 'form', 'cothyshy', 'access', 'link', 'edit', 'whenever', 'save', 'receive', 'email', 'confirmation', 'copy'] list_processed_text: [['cothyshy'], ['access'], ['link'], ['edit'], ['whenever'], ['save'], ['receive'], ['email'], ['confirmation'], ['telephone'], ['summary'], ['completed'], ['nda'], ['alarm'], ['system'], ['receiving'], ['emailed'], ['response'], ['link'], ['form'], ['cothyshy'], ['access'], ['link'], ['edit'], ['whenever'], ['save'], ['receive'], ['email'], ['confirmation'], ['copy']] k: 1218 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1219 len: <class 'list'> Data: ['icloud', 'account', 'synched', 'outlook', 'need', 'delete', 'icloud', 'account', 'synched', 'outlook', 'need', 'delete'] processed_text: ['icloud', 'account', 'synched', 'outlook', 'need', 'delete', 'icloud', 'account', 'synched', 'outlook', 'need', 'delete'] list_processed_text: [['icloud'], ['account'], ['synched'], ['outlook'], ['need'], ['delete'], ['icloud'], ['account'], ['synched'], ['outlook'], ['need'], ['delete']] k: 1220 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 1221 len: <class 'list'> Data: ['erp', 'sid', 'password', 'change', 'name', 'bettymcdanghtnuell', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'iam', 'locked', 'erp', 'tried', 'change', 'password', 'got', 'locked'] processed_text: ['erp', 'sid', 'password', 'change', 'name', 'bettymcdanghtnuell', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'iam', 'locked', 'erp', 'tried', 'change', 'password', 'got', 'locked'] list_processed_text: [['erp'], ['sid'], ['password'], ['change'], ['name'], ['bettymcdanghtnuell'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['iam'], ['locked'], ['erp'], ['tried'], ['change'], ['password'], ['got'], ['locked']] k: 1222 len: <class 'list'> Data: ['new', 'employee', 'phone', 'number', 'needed', 'summary', 'new', 'employee', 'phone', 'number', 'needed'] processed_text: ['new', 'employee', 'phone', 'number', 'needed', 'summary', 'new', 'employee', 'phone', 'number', 'needed'] list_processed_text: [['new'], ['employee'], ['phone'], ['number'], ['needed'], ['summary'], ['new'], ['employee'], ['phone'], ['number'], ['needed']] k: 1223 len: <class 'list'> Data: ['cannot', 'connect', 'pvn', 'dear', 'team', 'cannot', 'connect', 'link', 'long', 'download', 'screen', 'please', 'help', 'user', 'access', 'vpn', 'best'] processed_text: ['cannot', 'connect', 'pvn', 'dear', 'team', 'cannot', 'connect', 'link', 'long', 'download', 'screen', 'please', 'help', 'user', 'access', 'vpn', 'best'] list_processed_text: [['cannot'], ['connect'], ['pvn'], ['dear'], ['team'], ['cannot'], ['connect'], ['link'], ['long'], ['download'], ['screen'], ['please'], ['help'], ['user'], ['access'], ['vpn'], ['best']] k: 1224 len: <class 'list'> Data: ['server', 'hostname', 'automatically', 'cancelled', 'backup', 'received', 'following', 'email', 'last', 'two', 'backup', 'job', 'automatically', 'canceled', 'exceeded', 'job', 'maximum', 'configured', 'run', 'time', 'backup', 'server', 'hostname', 'stefyty', 'dabhruji', 'currently', 'assisting'] processed_text: ['server', 'hostname', 'automatically', 'cancelled', 'backup', 'received', 'following', 'email', 'last', 'two', 'backup', 'job', 'automatically', 'canceled', 'exceeded', 'job', 'maximum', 'configured', 'run', 'time', 'backup', 'server', 'hostname', 'stefyty', 'dabhruji', 'currently', 'assisting'] list_processed_text: [['server'], ['hostname'], ['automatically'], ['cancelled'], ['backup'], ['received'], ['following'], ['email'], ['last'], ['two'], ['backup'], ['job'], ['automatically'], ['canceled'], ['exceeded'], ['job'], ['maximum'], ['configured'], ['run'], ['time'], ['backup'], ['server'], ['hostname'], ['stefyty'], ['dabhruji'], ['currently'], ['assisting']] k: 1225 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 1226 len: <class 'list'> Data: ['cannot', 'access', 'planner', 'app', 'owa', 'name', 'giuliasana', 'byhdderni', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'access', 'planner', 'app', 'owa'] processed_text: ['cannot', 'access', 'planner', 'app', 'owa', 'name', 'giuliasana', 'byhdderni', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'access', 'planner', 'app', 'owa'] list_processed_text: [['cannot'], ['access'], ['planner'], ['app'], ['owa'], ['name'], ['giuliasana'], ['byhdderni'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['access'], ['planner'], ['app'], ['owa']] k: 1227 len: <class 'list'> Data: ['password', 'expired', 'unable', 'change', 'password', 'password', 'expired', 'unable', 'change', 'password'] processed_text: ['password', 'expired', 'unable', 'change', 'password', 'password', 'expired', 'unable', 'change', 'password'] list_processed_text: [['password'], ['expired'], ['unable'], ['change'], ['password'], ['password'], ['expired'], ['unable'], ['change'], ['password']] k: 1228 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'collaboration', 'platform', 'issue', 'summary', 'difficulty', 'changing', 'password', 'usa', 'company', 'password', 'management', 'tool', 'id', 'system', 'please', 'assist'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'collaboration', 'platform', 'issue', 'summary', 'difficulty', 'changing', 'password', 'usa', 'company', 'password', 'management', 'tool', 'id', 'system', 'please', 'assist'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['collaboration'], ['platform'], ['issue'], ['summary'], ['difficulty'], ['changing'], ['password'], ['usa'], ['company'], ['password'], ['management'], ['tool'], ['id'], ['system'], ['please'], ['assist']] k: 1229 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'hello', 'would', 'like', 'gain', 'access', 'link', 'trying', 'complete', 'lagp', 'request', 'one', 'customer', 'error', 'receiving'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'hello', 'would', 'like', 'gain', 'access', 'link', 'trying', 'complete', 'lagp', 'request', 'one', 'customer', 'error', 'receiving'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['hello'], ['would'], ['like'], ['gain'], ['access'], ['link'], ['trying'], ['complete'], ['lagp'], ['request'], ['one'], ['customer'], ['error'], ['receiving']] k: 1230 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 1231 len: <class 'list'> Data: ['branding', 'site', 'hello', 'open', 'branding', 'site', 'receive', 'following', 'error', 'message', 'internet', 'explorer', 'make', 'sure', 'web', 'address', 'vpn', 'syhtu', 'pozdrsavom', 'mit', 'freundlichem', 'grus', 'best'] processed_text: ['branding', 'site', 'hello', 'open', 'branding', 'site', 'receive', 'following', 'error', 'message', 'internet', 'explorer', 'make', 'sure', 'web', 'address', 'vpn', 'syhtu', 'pozdrsavom', 'mit', 'freundlichem', 'grus', 'best'] list_processed_text: [['branding'], ['site'], ['hello'], ['open'], ['branding'], ['site'], ['receive'], ['following'], ['error'], ['message'], ['internet'], ['explorer'], ['make'], ['sure'], ['web'], ['address'], ['vpn'], ['syhtu'], ['pozdrsavom'], ['mit'], ['freundlichem'], ['grus'], ['best']] k: 1232 len: <class 'list'> Data: ['getting', 'error', 'trying', 'access', 'precall', 'planning', 'report', 'cmor', 'see', 'attached', 'keinyujo', 'torvxeda', 'access', 'pre', 'call', 'planning', 'section', 'account', 'record', 'get', 'error', 'one', 'get', 'reporting', 'engineering', 'tool', 'crm', 'dashbankrd', 'fixed', 'opened', 'crm', 'issue', 'happened'] processed_text: ['getting', 'error', 'trying', 'access', 'precall', 'planning', 'report', 'cmor', 'see', 'attached', 'keinyujo', 'torvxeda', 'access', 'pre', 'call', 'planning', 'section', 'account', 'record', 'get', 'error', 'one', 'get', 'reporting', 'engineering', 'tool', 'crm', 'dashbankrd', 'fixed', 'opened', 'crm', 'issue', 'happened'] list_processed_text: [['getting'], ['error'], ['trying'], ['access'], ['precall'], ['planning'], ['report'], ['cmor'], ['see'], ['attached'], ['keinyujo'], ['torvxeda'], ['access'], ['pre'], ['call'], ['planning'], ['section'], ['account'], ['record'], ['get'], ['error'], ['one'], ['get'], ['reporting'], ['engineering'], ['tool'], ['crm'], ['dashbankrd'], ['fixed'], ['opened'], ['crm'], ['issue'], ['happened']] k: 1233 len: <class 'list'> Data: ['costing', 'issue', 'material', 'plant', 'plant', 'hi', 'help', 'costing', 'issue', 'mm', 'part', 'made', 'plant', 'extended', 'plant', 'see', 'cost', 'plant', 'usd', 'think', 'incorrect', 'try', 'cost', 'part', 'coming', 'ppc', 'gpc', 'warning', 'message', 'mat', 'plant', 'plant', 'itemization', 'match', 'cost', 'component', 'split', 'sure', 'need', 'correct', 'help', 'plant', 'cost', 'cad', 'best'] processed_text: ['costing', 'issue', 'material', 'plant', 'plant', 'hi', 'help', 'costing', 'issue', 'mm', 'part', 'made', 'plant', 'extended', 'plant', 'see', 'cost', 'plant', 'usd', 'think', 'incorrect', 'try', 'cost', 'part', 'coming', 'ppc', 'gpc', 'warning', 'message', 'mat', 'plant', 'plant', 'itemization', 'match', 'cost', 'component', 'split', 'sure', 'need', 'correct', 'help', 'plant', 'cost', 'cad', 'best'] list_processed_text: [['costing'], ['issue'], ['material'], ['plant'], ['plant'], ['hi'], ['help'], ['costing'], ['issue'], ['mm'], ['part'], ['made'], ['plant'], ['extended'], ['plant'], ['see'], ['cost'], ['plant'], ['usd'], ['think'], ['incorrect'], ['try'], ['cost'], ['part'], ['coming'], ['ppc'], ['gpc'], ['warning'], ['message'], ['mat'], ['plant'], ['plant'], ['itemization'], ['match'], ['cost'], ['component'], ['split'], ['sure'], ['need'], ['correct'], ['help'], ['plant'], ['cost'], ['cad'], ['best']] k: 1234 len: <class 'list'> Data: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] processed_text: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] list_processed_text: [['erp'], ['sid'], ['locked'], ['erp'], ['sid'], ['locked']] k: 1235 len: <class 'list'> Data: ['dedalus', 'report', 'pdf', 'blocked', 'summary', 'cannot', 'open', 'downloaded', 'dedalus', 'report', 'pdf', 'reported', 'several', 'collegues', 'downloading', 'opening', 'particular', 'report'] processed_text: ['dedalus', 'report', 'pdf', 'blocked', 'summary', 'cannot', 'open', 'downloaded', 'dedalus', 'report', 'pdf', 'reported', 'several', 'collegues', 'downloading', 'opening', 'particular', 'report'] list_processed_text: [['dedalus'], ['report'], ['pdf'], ['blocked'], ['summary'], ['cannot'], ['open'], ['downloaded'], ['dedalus'], ['report'], ['pdf'], ['reported'], ['several'], ['collegues'], ['downloading'], ['opening'], ['particular'], ['report']] k: 1236 len: <class 'list'> Data: ['push', 'report', 'dear', 'got', 'information', 'since', 'last', 'rkyjnbqh', 'kfshormi', 'sale', 'engineer', 'receive', 'push', 'report', 'like', 'open', 'quote', 'report', 'etc', 'someone', 'please', 'check', 'let', 'u', 'know', 'happens'] processed_text: ['push', 'report', 'dear', 'got', 'information', 'since', 'last', 'rkyjnbqh', 'kfshormi', 'sale', 'engineer', 'receive', 'push', 'report', 'like', 'open', 'quote', 'report', 'etc', 'someone', 'please', 'check', 'let', 'u', 'know', 'happens'] list_processed_text: [['push'], ['report'], ['dear'], ['got'], ['information'], ['since'], ['last'], ['rkyjnbqh'], ['kfshormi'], ['sale'], ['engineer'], ['receive'], ['push'], ['report'], ['like'], ['open'], ['quote'], ['report'], ['etc'], ['someone'], ['please'], ['check'], ['let'], ['u'], ['know'], ['happens']] k: 1237 len: <class 'list'> Data: ['urgent', 'local', 'server', 'hostname', 'error', 'window', 'cannot', 'access', 'hostname', 'red', 'cross', 'drive', 'server', 'user', 'access', 'server', 'worked', 'contact', 'impacted', 'quoting', 'team', 'design', 'team', 'manufacturing', 'usa', 'plant'] processed_text: ['urgent', 'local', 'server', 'hostname', 'error', 'window', 'cannot', 'access', 'hostname', 'red', 'cross', 'drive', 'server', 'user', 'access', 'server', 'worked', 'contact', 'impacted', 'quoting', 'team', 'design', 'team', 'manufacturing', 'usa', 'plant'] list_processed_text: [['urgent'], ['local'], ['server'], ['hostname'], ['error'], ['window'], ['cannot'], ['access'], ['hostname'], ['red'], ['cross'], ['drive'], ['server'], ['user'], ['access'], ['server'], ['worked'], ['contact'], ['impacted'], ['quoting'], ['team'], ['design'], ['team'], ['manufacturing'], ['usa'], ['plant']] k: 1238 len: <class 'list'> Data: ['unable', 'open', 'business', 'client', 'install', 'net', 'framdntyework', 'unable', 'open', 'business', 'client', 'install', 'net', 'framdntyework'] processed_text: ['unable', 'open', 'business', 'client', 'install', 'net', 'framdntyework', 'unable', 'open', 'business', 'client', 'install', 'net', 'framdntyework'] list_processed_text: [['unable'], ['open'], ['business'], ['client'], ['install'], ['net'], ['framdntyework'], ['unable'], ['open'], ['business'], ['client'], ['install'], ['net'], ['framdntyework']] k: 1239 len: <class 'list'> Data: ['network', 'drive', 'loading', 'network', 'drive', 'loading'] processed_text: ['network', 'drive', 'loading', 'network', 'drive', 'loading'] list_processed_text: [['network'], ['drive'], ['loading'], ['network'], ['drive'], ['loading']] k: 1240 len: <class 'list'> Data: ['weekly', 'sale', 'activity', 'report', 'receive', 'sale', 'activity', 'order', 'report', 'past', 'week', 'mnlvhtug', 'imvetgoa', 'sr', 'application', 'engineer', 'general', 'engineering', 'company', 'inc'] processed_text: ['weekly', 'sale', 'activity', 'report', 'receive', 'sale', 'activity', 'order', 'report', 'past', 'week', 'mnlvhtug', 'imvetgoa', 'sr', 'application', 'engineer', 'general', 'engineering', 'company', 'inc'] list_processed_text: [['weekly'], ['sale'], ['activity'], ['report'], ['receive'], ['sale'], ['activity'], ['order'], ['report'], ['past'], ['week'], ['mnlvhtug'], ['imvetgoa'], ['sr'], ['application'], ['engineer'], ['general'], ['engineering'], ['company'], ['inc']] k: 1241 len: <class 'list'> Data: ['skype', 'hello', 'facing', 'problem', 'join', 'conference', 'call', 'skype', 'access', 'one', 'call'] processed_text: ['skype', 'hello', 'facing', 'problem', 'join', 'conference', 'call', 'skype', 'access', 'one', 'call'] list_processed_text: [['skype'], ['hello'], ['facing'], ['problem'], ['join'], ['conference'], ['call'], ['skype'], ['access'], ['one'], ['call']] k: 1242 len: <class 'list'> Data: ['rechner', 'r', 'eu', 'tool', 'st', 'ngt', 'sich', 'auf', 'spdczoth', 'vajtodny', 'rechner', 'r', 'eu', 'tool', 'st', 'ngt', 'sich', 'auf', 'spdczoth', 'vajtodny'] processed_text: ['rechner', 'r', 'eu', 'tool', 'st', 'ngt', 'sich', 'auf', 'spdczoth', 'vajtodny', 'rechner', 'r', 'eu', 'tool', 'st', 'ngt', 'sich', 'auf', 'spdczoth', 'vajtodny'] list_processed_text: [['rechner'], ['r'], ['eu'], ['tool'], ['st'], ['ngt'], ['sich'], ['auf'], ['spdczoth'], ['vajtodny'], ['rechner'], ['r'], ['eu'], ['tool'], ['st'], ['ngt'], ['sich'], ['auf'], ['spdczoth'], ['vajtodny']] k: 1243 len: <class 'list'> Data: ['reset', 'password', 'ldmwqubi', 'sovqeynk', 'using', 'password', 'management', 'tool', 'password', 'reset', 'forgot', 'password', 'erp', 'login'] processed_text: ['reset', 'password', 'ldmwqubi', 'sovqeynk', 'using', 'password', 'management', 'tool', 'password', 'reset', 'forgot', 'password', 'erp', 'login'] list_processed_text: [['reset'], ['password'], ['ldmwqubi'], ['sovqeynk'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['forgot'], ['password'], ['erp'], ['login']] k: 1244 len: <class 'list'> Data: ['able', 'open', 'single', 'sign', 'portal', 'hub', 'able', 'open', 'single', 'sign', 'portal', 'hub'] processed_text: ['able', 'open', 'single', 'sign', 'portal', 'hub', 'able', 'open', 'single', 'sign', 'portal', 'hub'] list_processed_text: [['able'], ['open'], ['single'], ['sign'], ['portal'], ['hub'], ['able'], ['open'], ['single'], ['sign'], ['portal'], ['hub']] k: 1245 len: <class 'list'> Data: ['computer', 'r', 'information', 'status', 'defective', 'problem', 'fter', 'niptbwdq', 'csenjruz', 'computer', 'r', 'information', 'status', 'defective', 'problem', 'fter', 'niptbwdq', 'csenjruz'] processed_text: ['computer', 'r', 'information', 'status', 'defective', 'problem', 'fter', 'niptbwdq', 'csenjruz', 'computer', 'r', 'information', 'status', 'defective', 'problem', 'fter', 'niptbwdq', 'csenjruz'] list_processed_text: [['computer'], ['r'], ['information'], ['status'], ['defective'], ['problem'], ['fter'], ['niptbwdq'], ['csenjruz'], ['computer'], ['r'], ['information'], ['status'], ['defective'], ['problem'], ['fter'], ['niptbwdq'], ['csenjruz']] k: 1246 len: <class 'list'> Data: ['need', 'usb', 'stick', 'gb', 'r', 'apprenticeship', 'year', 'piece', 'hello', 'need', 'usb', 'stick', 'gb', 'r', 'apprenticeship', 'year', 'piece'] processed_text: ['need', 'usb', 'stick', 'gb', 'r', 'apprenticeship', 'year', 'piece', 'hello', 'need', 'usb', 'stick', 'gb', 'r', 'apprenticeship', 'year', 'piece'] list_processed_text: [['need'], ['usb'], ['stick'], ['gb'], ['r'], ['apprenticeship'], ['year'], ['piece'], ['hello'], ['need'], ['usb'], ['stick'], ['gb'], ['r'], ['apprenticeship'], ['year'], ['piece']] k: 1247 len: <class 'list'> Data: ['able', 'submit', 'lean', 'tracker', 'collaboration', 'platform', 'able', 'submit', 'lean', 'tracker', 'collaboration', 'platform'] processed_text: ['able', 'submit', 'lean', 'tracker', 'collaboration', 'platform', 'able', 'submit', 'lean', 'tracker', 'collaboration', 'platform'] list_processed_text: [['able'], ['submit'], ['lean'], ['tracker'], ['collaboration'], ['platform'], ['able'], ['submit'], ['lean'], ['tracker'], ['collaboration'], ['platform']] k: 1248 len: <class 'list'> Data: ['outlook', 'skype', 'problem', 'hello', 'team', 'open', 'outlook', 'skype', 'pc', 'give', 'error', 'like', 'cid', 'dbe', 'bb', 'eccc'] processed_text: ['outlook', 'skype', 'problem', 'hello', 'team', 'open', 'outlook', 'skype', 'pc', 'give', 'error', 'like', 'cid', 'dbe', 'bb', 'eccc'] list_processed_text: [['outlook'], ['skype'], ['problem'], ['hello'], ['team'], ['open'], ['outlook'], ['skype'], ['pc'], ['give'], ['error'], ['like'], ['cid'], ['dbe'], ['bb'], ['eccc']] k: 1249 len: <class 'list'> Data: ['unable', 'get', 'password', 'management', 'tool', 'change', 'password', 'unable', 'get', 'password', 'management', 'tool', 'change', 'password'] processed_text: ['unable', 'get', 'password', 'management', 'tool', 'change', 'password', 'unable', 'get', 'password', 'management', 'tool', 'change', 'password'] list_processed_text: [['unable'], ['get'], ['password'], ['management'], ['tool'], ['change'], ['password'], ['unable'], ['get'], ['password'], ['management'], ['tool'], ['change'], ['password']] k: 1250 len: <class 'list'> Data: ['vpn', 'suddenly', 'accepting', 'credential', 'vpn', 'suddenly', 'accepting', 'credential'] processed_text: ['vpn', 'suddenly', 'accepting', 'credential', 'vpn', 'suddenly', 'accepting', 'credential'] list_processed_text: [['vpn'], ['suddenly'], ['accepting'], ['credential'], ['vpn'], ['suddenly'], ['accepting'], ['credential']] k: 1251 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 1252 len: <class 'list'> Data: ['pm', 'tool', 'sd', 'upload', 'project', 'erp', 'please', 'see', 'attached', 'jpg', 'file', 'show', 'message', 'pm', 'tool', 'sd'] processed_text: ['pm', 'tool', 'sd', 'upload', 'project', 'erp', 'please', 'see', 'attached', 'jpg', 'file', 'show', 'message', 'pm', 'tool', 'sd'] list_processed_text: [['pm'], ['tool'], ['sd'], ['upload'], ['project'], ['erp'], ['please'], ['see'], ['attached'], ['jpg'], ['file'], ['show'], ['message'], ['pm'], ['tool'], ['sd']] k: 1253 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1254 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1255 len: <class 'list'> Data: ['bobj', 'webi', 'publication', 'service', 'running', 'bobj', 'webi', 'publication', 'failed', 'weekend', 'service', 'still', 'working'] processed_text: ['bobj', 'webi', 'publication', 'service', 'running', 'bobj', 'webi', 'publication', 'failed', 'weekend', 'service', 'still', 'working'] list_processed_text: [['bobj'], ['webi'], ['publication'], ['service'], ['running'], ['bobj'], ['webi'], ['publication'], ['failed'], ['weekend'], ['service'], ['still'], ['working']] k: 1256 len: <class 'list'> Data: ['pending', 'pr', 'status', 'workflow', 'detail', 'approver', 'help', 'desk', 'pr', 'pending', 'day', 'yet', 'release', 'please', 'find', 'screen', 'shot', 'pr', 'checked', 'work', 'flow', 'approver', 'user', 'id', 'jagtgarthy', 'nothing', 'pending', 'screen', 'shot', 'attached', 'please', 'verify', 'detail', 'appearing', 'work', 'flow', 'approver'] processed_text: ['pending', 'pr', 'status', 'workflow', 'detail', 'approver', 'help', 'desk', 'pr', 'pending', 'day', 'yet', 'release', 'please', 'find', 'screen', 'shot', 'pr', 'checked', 'work', 'flow', 'approver', 'user', 'id', 'jagtgarthy', 'nothing', 'pending', 'screen', 'shot', 'attached', 'please', 'verify', 'detail', 'appearing', 'work', 'flow', 'approver'] list_processed_text: [['pending'], ['pr'], ['status'], ['workflow'], ['detail'], ['approver'], ['help'], ['desk'], ['pr'], ['pending'], ['day'], ['yet'], ['release'], ['please'], ['find'], ['screen'], ['shot'], ['pr'], ['checked'], ['work'], ['flow'], ['approver'], ['user'], ['id'], ['jagtgarthy'], ['nothing'], ['pending'], ['screen'], ['shot'], ['attached'], ['please'], ['verify'], ['detail'], ['appearing'], ['work'], ['flow'], ['approver']] k: 1257 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1258 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'hello', 'dwight', 'update'] processed_text: ['ticket', 'comment', 'added', 'hello', 'dwight', 'update'] list_processed_text: [['ticket'], ['comment'], ['added'], ['hello'], ['dwight'], ['update']] k: 1259 len: <class 'list'> Data: ['hostname', 'stibo', 'server', 'physical', 'drive', 'power', 'supply', 'issue', 'hostname', 'stibo', 'server', 'physical', 'drive', 'power', 'supply', 'issue'] processed_text: ['hostname', 'stibo', 'server', 'physical', 'drive', 'power', 'supply', 'issue', 'hostname', 'stibo', 'server', 'physical', 'drive', 'power', 'supply', 'issue'] list_processed_text: [['hostname'], ['stibo'], ['server'], ['physical'], ['drive'], ['power'], ['supply'], ['issue'], ['hostname'], ['stibo'], ['server'], ['physical'], ['drive'], ['power'], ['supply'], ['issue']] k: 1260 len: <class 'list'> Data: ['able', 'open', 'drtawings', 'pdf', 'able', 'open', 'drtawings', 'pdf'] processed_text: ['able', 'open', 'drtawings', 'pdf', 'able', 'open', 'drtawings', 'pdf'] list_processed_text: [['able'], ['open'], ['drtawings'], ['pdf'], ['able'], ['open'], ['drtawings'], ['pdf']] k: 1261 len: <class 'list'> Data: ['bobj', 'working', 'dear', 'report', 'bob', 'information', 'space', 'like', 'product', 'management', 'report', 'quota', 'report', 'others', 'missing', 'simply', 'get', 'empty', 'screen', 'user', 'report', 'problem', 'please', 'fix', 'issue'] processed_text: ['bobj', 'working', 'dear', 'report', 'bob', 'information', 'space', 'like', 'product', 'management', 'report', 'quota', 'report', 'others', 'missing', 'simply', 'get', 'empty', 'screen', 'user', 'report', 'problem', 'please', 'fix', 'issue'] list_processed_text: [['bobj'], ['working'], ['dear'], ['report'], ['bob'], ['information'], ['space'], ['like'], ['product'], ['management'], ['report'], ['quota'], ['report'], ['others'], ['missing'], ['simply'], ['get'], ['empty'], ['screen'], ['user'], ['report'], ['problem'], ['please'], ['fix'], ['issue']] k: 1262 len: <class 'list'> Data: ['volume', 'label', 'sys', 'amssm', 'ef', 'server', 'consumed', 'volume', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['volume', 'label', 'sys', 'amssm', 'ef', 'server', 'consumed', 'volume', 'label', 'sys', 'amssm', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['volume'], ['label'], ['sys'], ['amssm'], ['ef'], ['server'], ['consumed'], ['volume'], ['label'], ['sys'], ['amssm'], ['ef'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1263 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1264 len: <class 'list'> Data: ['loaner', 'laptop', 'germany', 'location', 'required', 'hi', 'team', 'would', 'please', 'need', 'two', 'loaner', 'laptop', 'location', 'germany', 'th', 'th', 'visitor', 'consultant', 'bank', 'name', 'rtbkimey', 'cfsqwtdv', 'xikojdym', 'rgazclmi', 'consultant', 'finish', 'huge', 'update', 'erp', 'payment', 'management', 'autobank', 'tool', 'cost', 'center', 'fuf'] processed_text: ['loaner', 'laptop', 'germany', 'location', 'required', 'hi', 'team', 'would', 'please', 'need', 'two', 'loaner', 'laptop', 'location', 'germany', 'th', 'th', 'visitor', 'consultant', 'bank', 'name', 'rtbkimey', 'cfsqwtdv', 'xikojdym', 'rgazclmi', 'consultant', 'finish', 'huge', 'update', 'erp', 'payment', 'management', 'autobank', 'tool', 'cost', 'center', 'fuf'] list_processed_text: [['loaner'], ['laptop'], ['germany'], ['location'], ['required'], ['hi'], ['team'], ['would'], ['please'], ['need'], ['two'], ['loaner'], ['laptop'], ['location'], ['germany'], ['th'], ['th'], ['visitor'], ['consultant'], ['bank'], ['name'], ['rtbkimey'], ['cfsqwtdv'], ['xikojdym'], ['rgazclmi'], ['consultant'], ['finish'], ['huge'], ['update'], ['erp'], ['payment'], ['management'], ['autobank'], ['tool'], ['cost'], ['center'], ['fuf']] k: 1265 len: <class 'list'> Data: ['able', 'see', 'sny', 'information', 'space', 'bobj', 'prod', 'server', 'able', 'see', 'sny', 'information', 'space', 'bobj', 'prod', 'server'] processed_text: ['able', 'see', 'sny', 'information', 'space', 'bobj', 'prod', 'server', 'able', 'see', 'sny', 'information', 'space', 'bobj', 'prod', 'server'] list_processed_text: [['able'], ['see'], ['sny'], ['information'], ['space'], ['bobj'], ['prod'], ['server'], ['able'], ['see'], ['sny'], ['information'], ['space'], ['bobj'], ['prod'], ['server']] k: 1266 len: <class 'list'> Data: ['reset', 'password', 'mdvlkbac', 'uhefoqtg', 'erp', 'production', 'erp', 'please', 'unlock', 'account', 'hanx', 'reset', 'password'] processed_text: ['reset', 'password', 'mdvlkbac', 'uhefoqtg', 'erp', 'production', 'erp', 'please', 'unlock', 'account', 'hanx', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['mdvlkbac'], ['uhefoqtg'], ['erp'], ['production'], ['erp'], ['please'], ['unlock'], ['account'], ['hanx'], ['reset'], ['password']] k: 1267 len: <class 'list'> Data: ['set', 'hand', 'phone', 'email', 'hi', 'team', 'like', 'set', 'hand', 'set', 'samsung', 'company', 'outlook', 'email', 'pls', 'offer', 'assistance', 'best'] processed_text: ['set', 'hand', 'phone', 'email', 'hi', 'team', 'like', 'set', 'hand', 'set', 'samsung', 'company', 'outlook', 'email', 'pls', 'offer', 'assistance', 'best'] list_processed_text: [['set'], ['hand'], ['phone'], ['email'], ['hi'], ['team'], ['like'], ['set'], ['hand'], ['set'], ['samsung'], ['company'], ['outlook'], ['email'], ['pls'], ['offer'], ['assistance'], ['best']] k: 1268 len: <class 'list'> Data: ['im', 'able', 'login', 'sid', 'system', 'plese', 'look', 'priority', 'user', 'id', 'venktyamk', 'im', 'able', 'login', 'sid', 'system', 'plese', 'look', 'priority', 'user', 'id', 'venktyamk'] processed_text: ['im', 'able', 'login', 'sid', 'system', 'plese', 'look', 'priority', 'user', 'id', 'venktyamk', 'im', 'able', 'login', 'sid', 'system', 'plese', 'look', 'priority', 'user', 'id', 'venktyamk'] list_processed_text: [['im'], ['able'], ['login'], ['sid'], ['system'], ['plese'], ['look'], ['priority'], ['user'], ['id'], ['venktyamk'], ['im'], ['able'], ['login'], ['sid'], ['system'], ['plese'], ['look'], ['priority'], ['user'], ['id'], ['venktyamk']] k: 1269 len: <class 'list'> Data: [] processed_text: [] list_processed_text: [] k: 1270 len: <class 'list'> Data: ['probleme', 'mit', 'utilizationzer', 'erneut', 'nur', 'tempor', 'merdivan', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'utilizationzer', 'erneut', 'nur', 'tempor', 'merdivan', 'xwirzvda', 'okhyipgr'] processed_text: ['probleme', 'mit', 'utilizationzer', 'erneut', 'nur', 'tempor', 'merdivan', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'utilizationzer', 'erneut', 'nur', 'tempor', 'merdivan', 'xwirzvda', 'okhyipgr'] list_processed_text: [['probleme'], ['mit'], ['utilizationzer'], ['erneut'], ['nur'], ['tempor'], ['merdivan'], ['xwirzvda'], ['okhyipgr'], ['probleme'], ['mit'], ['utilizationzer'], ['erneut'], ['nur'], ['tempor'], ['merdivan'], ['xwirzvda'], ['okhyipgr']] k: 1271 len: <class 'list'> Data: ['anmeldefehler', 'lync', 'qidgvtwa', 'qvbutayx', 'anmeldefehler', 'lync', 'qidgvtwa', 'qvbutayx'] processed_text: ['anmeldefehler', 'lync', 'qidgvtwa', 'qvbutayx', 'anmeldefehler', 'lync', 'qidgvtwa', 'qvbutayx'] list_processed_text: [['anmeldefehler'], ['lync'], ['qidgvtwa'], ['qvbutayx'], ['anmeldefehler'], ['lync'], ['qidgvtwa'], ['qvbutayx']] k: 1272 len: <class 'list'> Data: ['dvi', 'interface', 'without', 'function', 'dvi', 'interface', 'work,', 'graphic', 'card', 'probably', 'defective'] processed_text: ['dvi', 'interface', 'without', 'function', 'dvi', 'interface', 'work,', 'graphic', 'card', 'probably', 'defective'] list_processed_text: [['dvi'], ['interface'], ['without'], ['function'], ['dvi'], ['interface'], ['work,'], ['graphic'], ['card'], ['probably'], ['defective']] k: 1273 len: <class 'list'> Data: ['eu', 'tool', 'work', 'error', 'message', 'system', 'error', 'andh', 'unknown', 'error'] processed_text: ['eu', 'tool', 'work', 'error', 'message', 'system', 'error', 'andh', 'unknown', 'error'] list_processed_text: [['eu'], ['tool'], ['work'], ['error'], ['message'], ['system'], ['error'], ['andh'], ['unknown'], ['error']] k: 1274 len: <class 'list'> Data: ['engineering', 'tool', 'taking', 'new', 'password', 'showing', 'number', 'failed', 'attempt', 'exceeded', 'name', 'syhunil', 'krishnyhda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changed', 'password', 'password', 'management', 'tool', 'password', 'unlocked', 'account', 'engineering', 'tool', 'taking', 'new', 'password', 'showing', 'number', 'failed', 'attempt', 'exceeded'] processed_text: ['engineering', 'tool', 'taking', 'new', 'password', 'showing', 'number', 'failed', 'attempt', 'exceeded', 'name', 'syhunil', 'krishnyhda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changed', 'password', 'password', 'management', 'tool', 'password', 'unlocked', 'account', 'engineering', 'tool', 'taking', 'new', 'password', 'showing', 'number', 'failed', 'attempt', 'exceeded'] list_processed_text: [['engineering'], ['tool'], ['taking'], ['new'], ['password'], ['showing'], ['number'], ['failed'], ['attempt'], ['exceeded'], ['name'], ['syhunil'], ['krishnyhda'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['changed'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['unlocked'], ['account'], ['engineering'], ['tool'], ['taking'], ['new'], ['password'], ['showing'], ['number'], ['failed'], ['attempt'], ['exceeded']] k: 1275 len: <class 'list'> Data: ['bob', 'j', 'hello', 'bob', 'work', 'system', 'error', 'bob', 'go', 'back', 'even', 'system', 'failure', 'kind', 'regard', 'best'] processed_text: ['bob', 'j', 'hello', 'bob', 'work', 'system', 'error', 'bob', 'go', 'back', 'even', 'system', 'failure', 'kind', 'regard', 'best'] list_processed_text: [['bob'], ['j'], ['hello'], ['bob'], ['work'], ['system'], ['error'], ['bob'], ['go'], ['back'], ['even'], ['system'], ['failure'], ['kind'], ['regard'], ['best']] k: 1276 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'item', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'cannot', 'run', 'n', 'although', 'plant', 'pc', 'stock'] processed_text: ['unable', 'create', 'delivery', 'item', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'cannot', 'run', 'n', 'although', 'plant', 'pc', 'stock'] list_processed_text: [['unable'], ['create'], ['delivery'], ['item'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['cannot'], ['run'], ['n'], ['although'], ['plant'], ['pc'], ['stock']] k: 1277 len: <class 'list'> Data: ['company', 'connect', 'company', 'connect'] processed_text: ['company', 'connect', 'company', 'connect'] list_processed_text: [['company'], ['connect'], ['company'], ['connect']] k: 1278 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1279 len: <class 'list'> Data: ['item', 'sale', 'order', 'pulling', 'picking', 'slip', 'good', 'day', 'please', 'help', 'following', 'issue', 'sale', 'order', 'first', 'line', 'item', 'pulling', 'picking', 'slip', 'please', 'assist'] processed_text: ['item', 'sale', 'order', 'pulling', 'picking', 'slip', 'good', 'day', 'please', 'help', 'following', 'issue', 'sale', 'order', 'first', 'line', 'item', 'pulling', 'picking', 'slip', 'please', 'assist'] list_processed_text: [['item'], ['sale'], ['order'], ['pulling'], ['picking'], ['slip'], ['good'], ['day'], ['please'], ['help'], ['following'], ['issue'], ['sale'], ['order'], ['first'], ['line'], ['item'], ['pulling'], ['picking'], ['slip'], ['please'], ['assist']] k: 1280 len: <class 'list'> Data: ['r', 'pc', 'def', 'evtl', 'netzger', 'r', 'pc', 'def', 'evtl', 'netzger'] processed_text: ['r', 'pc', 'def', 'evtl', 'netzger', 'r', 'pc', 'def', 'evtl', 'netzger'] list_processed_text: [['r'], ['pc'], ['def'], ['evtl'], ['netzger'], ['r'], ['pc'], ['def'], ['evtl'], ['netzger']] k: 1281 len: <class 'list'> Data: ['data', 'transfer', 'erp', 'database', 'inkjet', 'printer', 'imaje', 'please', 'send', 'local', 'support', 'smpijawb', 'eawkpgqf', 'site', 'immediately', 'analyze', 'error', 'complete', 'delivery', 'work', 'germany', 'available'] processed_text: ['data', 'transfer', 'erp', 'database', 'inkjet', 'printer', 'imaje', 'please', 'send', 'local', 'support', 'smpijawb', 'eawkpgqf', 'site', 'immediately', 'analyze', 'error', 'complete', 'delivery', 'work', 'germany', 'available'] list_processed_text: [['data'], ['transfer'], ['erp'], ['database'], ['inkjet'], ['printer'], ['imaje'], ['please'], ['send'], ['local'], ['support'], ['smpijawb'], ['eawkpgqf'], ['site'], ['immediately'], ['analyze'], ['error'], ['complete'], ['delivery'], ['work'], ['germany'], ['available']] k: 1282 len: <class 'list'> Data: ['eu', 'tool', 'performance', 'low', 'last', 'week', 'eu', 'tool', 'performance', 'verly', 'low', 'germany', 'plant'] processed_text: ['eu', 'tool', 'performance', 'low', 'last', 'week', 'eu', 'tool', 'performance', 'verly', 'low', 'germany', 'plant'] list_processed_text: [['eu'], ['tool'], ['performance'], ['low'], ['last'], ['week'], ['eu'], ['tool'], ['performance'], ['verly'], ['low'], ['germany'], ['plant']] k: 1283 len: <class 'list'> Data: ['able', 'submit', 'lean', 'tracker', 'able', 'submit', 'lean', 'tracker'] processed_text: ['able', 'submit', 'lean', 'tracker', 'able', 'submit', 'lean', 'tracker'] list_processed_text: [['able'], ['submit'], ['lean'], ['tracker'], ['able'], ['submit'], ['lean'], ['tracker']] k: 1284 len: <class 'list'> Data: ['eu', 'tool', 'batch', 'management', 'work', 'eu', 'tool', 'batch', 'management', 'work'] processed_text: ['eu', 'tool', 'batch', 'management', 'work', 'eu', 'tool', 'batch', 'management', 'work'] list_processed_text: [['eu'], ['tool'], ['batch'], ['management'], ['work'], ['eu'], ['tool'], ['batch'], ['management'], ['work']] k: 1285 len: <class 'list'> Data: ['file', 'scanning', 'problem', 'richoscan', 'wy', 'yotyhga', 'narthdyhy', 'nwfodmhc', 'exurcwkm', 'fw', 'file', 'scanning', 'problem', 'richoscan', 'wy', 'kindly', 'request', 'previous', 'folder', 'drive', 'directly', 'mtb', 'st', 'floor', 'richoscan', 'wy', 'somebody', 'moved', 'mtb', 'st', 'floor', 'richoscan', 'wy', 'please', 'correct', 'able', 'scan', 'file', 'mtb', 'st', 'floor', 'richoscan', 'wy'] processed_text: ['file', 'scanning', 'problem', 'richoscan', 'wy', 'yotyhga', 'narthdyhy', 'nwfodmhc', 'exurcwkm', 'fw', 'file', 'scanning', 'problem', 'richoscan', 'wy', 'kindly', 'request', 'previous', 'folder', 'drive', 'directly', 'mtb', 'st', 'floor', 'richoscan', 'wy', 'somebody', 'moved', 'mtb', 'st', 'floor', 'richoscan', 'wy', 'please', 'correct', 'able', 'scan', 'file', 'mtb', 'st', 'floor', 'richoscan', 'wy'] list_processed_text: [['file'], ['scanning'], ['problem'], ['richoscan'], ['wy'], ['yotyhga'], ['narthdyhy'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['file'], ['scanning'], ['problem'], ['richoscan'], ['wy'], ['kindly'], ['request'], ['previous'], ['folder'], ['drive'], ['directly'], ['mtb'], ['st'], ['floor'], ['richoscan'], ['wy'], ['somebody'], ['moved'], ['mtb'], ['st'], ['floor'], ['richoscan'], ['wy'], ['please'], ['correct'], ['able'], ['scan'], ['file'], ['mtb'], ['st'], ['floor'], ['richoscan'], ['wy']] k: 1286 len: <class 'list'> Data: ['eu', 'tool', 'failure', 'germany', 'ck', 'message', 'allocation', 'list', 'alike'] processed_text: ['eu', 'tool', 'failure', 'germany', 'ck', 'message', 'allocation', 'list', 'alike'] list_processed_text: [['eu'], ['tool'], ['failure'], ['germany'], ['ck'], ['message'], ['allocation'], ['list'], ['alike']] k: 1287 len: <class 'list'> Data: ['server', 'problem', 'qm', 'soft', 'niece', 'anwendbar', 'server', 'problem', 'qm', 'soft', 'niece', 'anwendbar'] processed_text: ['server', 'problem', 'qm', 'soft', 'niece', 'anwendbar', 'server', 'problem', 'qm', 'soft', 'niece', 'anwendbar'] list_processed_text: [['server'], ['problem'], ['qm'], ['soft'], ['niece'], ['anwendbar'], ['server'], ['problem'], ['qm'], ['soft'], ['niece'], ['anwendbar']] k: 1288 len: <class 'list'> Data: ['battery', 'charging', 'power', 'adapter', 'connected', 'battery', 'charging', 'power', 'adapoter', 'connected', 'power', 'adaptor', 'unpliugged', 'batter', 'detected', 'system', 'latitude', 'service', 'tag', 'hvzlqthr', 'express', 'service', 'code', 'installed', 'power', 'system', 'bios', 'restarted', 'pc', 'checked', 'still', 'issue', 'issue', 'battery', 'need', 'replacement', 'contact'] processed_text: ['battery', 'charging', 'power', 'adapter', 'connected', 'battery', 'charging', 'power', 'adapoter', 'connected', 'power', 'adaptor', 'unpliugged', 'batter', 'detected', 'system', 'latitude', 'service', 'tag', 'hvzlqthr', 'express', 'service', 'code', 'installed', 'power', 'system', 'bios', 'restarted', 'pc', 'checked', 'still', 'issue', 'issue', 'battery', 'need', 'replacement', 'contact'] list_processed_text: [['battery'], ['charging'], ['power'], ['adapter'], ['connected'], ['battery'], ['charging'], ['power'], ['adapoter'], ['connected'], ['power'], ['adaptor'], ['unpliugged'], ['batter'], ['detected'], ['system'], ['latitude'], ['service'], ['tag'], ['hvzlqthr'], ['express'], ['service'], ['code'], ['installed'], ['power'], ['system'], ['bios'], ['restarted'], ['pc'], ['checked'], ['still'], ['issue'], ['issue'], ['battery'], ['need'], ['replacement'], ['contact']] k: 1289 len: <class 'list'> Data: ['computer', 'turn', 'computer', 'lthyqzns', 'service', 'code', 'turn', 'tried', 'changing', 'elengineering', 'toolical', 'plug', 'effect', 'fan', 'computer', 'turn', 'either', 'contact', 'gordon', 'leach', 'xernsfqa', 'uzvsnlbd', 'number'] processed_text: ['computer', 'turn', 'computer', 'lthyqzns', 'service', 'code', 'turn', 'tried', 'changing', 'elengineering', 'toolical', 'plug', 'effect', 'fan', 'computer', 'turn', 'either', 'contact', 'gordon', 'leach', 'xernsfqa', 'uzvsnlbd', 'number'] list_processed_text: [['computer'], ['turn'], ['computer'], ['lthyqzns'], ['service'], ['code'], ['turn'], ['tried'], ['changing'], ['elengineering'], ['toolical'], ['plug'], ['effect'], ['fan'], ['computer'], ['turn'], ['either'], ['contact'], ['gordon'], ['leach'], ['xernsfqa'], ['uzvsnlbd'], ['number']] k: 1290 len: <class 'list'> Data: ['reset', 'password', 'cubdsrml', 'znewqgop', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'cubdsrml', 'znewqgop', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['cubdsrml'], ['znewqgop'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1291 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1292 len: <class 'list'> Data: ['printer', 'offline', 'see', 'attachment', 'printer', 'offline', 'see', 'attachment'] processed_text: ['printer', 'offline', 'see', 'attachment', 'printer', 'offline', 'see', 'attachment'] list_processed_text: [['printer'], ['offline'], ['see'], ['attachment'], ['printer'], ['offline'], ['see'], ['attachment']] k: 1293 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1294 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1295 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1296 len: <class 'list'> Data: ['login', 'issue', 'erp', 'sid', 'login', 'issue', 'erp', 'sid', 'user', 'getting', 'logon', 'balancing', 'error', 'advised', 'user', 'check', 'company', 'network', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'erp', 'sid', 'login', 'issue', 'erp', 'sid', 'user', 'getting', 'logon', 'balancing', 'error', 'advised', 'user', 'check', 'company', 'network', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['erp'], ['sid'], ['login'], ['issue'], ['erp'], ['sid'], ['user'], ['getting'], ['logon'], ['balancing'], ['error'], ['advised'], ['user'], ['check'], ['company'], ['network'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1297 len: <class 'list'> Data: ['dn', 'dear', 'chk', 'dn', 'pls', 'help', 'check', 'urgent'] processed_text: ['dn', 'dear', 'chk', 'dn', 'pls', 'help', 'check', 'urgent'] list_processed_text: [['dn'], ['dear'], ['chk'], ['dn'], ['pls'], ['help'], ['check'], ['urgent']] k: 1298 len: <class 'list'> Data: ['cannot', 'review', 'stock', 'mdw', 'mm', 'dear', 'team', 'complete', 'gr', 'dn', 'mm', 'stock', 'available', 'md', 'please', 'advise', 'would', 'like', 'ship', 'customer', 'pc', 'today', 'best'] processed_text: ['cannot', 'review', 'stock', 'mdw', 'mm', 'dear', 'team', 'complete', 'gr', 'dn', 'mm', 'stock', 'available', 'md', 'please', 'advise', 'would', 'like', 'ship', 'customer', 'pc', 'today', 'best'] list_processed_text: [['cannot'], ['review'], ['stock'], ['mdw'], ['mm'], ['dear'], ['team'], ['complete'], ['gr'], ['dn'], ['mm'], ['stock'], ['available'], ['md'], ['please'], ['advise'], ['would'], ['like'], ['ship'], ['customer'], ['pc'], ['today'], ['best']] k: 1299 len: <class 'list'> Data: ['cannot', 'review', 'stock', 'mdw', 'mm', 'dear', 'team', 'complete', 'gr', 'dn', 'mm', 'stock', 'available', 'md', 'please', 'advise', 'would', 'like', 'ship', 'customer', 'pc', 'today', 'best'] processed_text: ['cannot', 'review', 'stock', 'mdw', 'mm', 'dear', 'team', 'complete', 'gr', 'dn', 'mm', 'stock', 'available', 'md', 'please', 'advise', 'would', 'like', 'ship', 'customer', 'pc', 'today', 'best'] list_processed_text: [['cannot'], ['review'], ['stock'], ['mdw'], ['mm'], ['dear'], ['team'], ['complete'], ['gr'], ['dn'], ['mm'], ['stock'], ['available'], ['md'], ['please'], ['advise'], ['would'], ['like'], ['ship'], ['customer'], ['pc'], ['today'], ['best']] k: 1300 len: <class 'list'> Data: ['access', 'network', 'drive', 'printer', 'please', 'provide', 'access', 'following', 'mr', 'akirtyethsyd', 'user', 'id', 'vvsthryomaa', 'aswyuysm', 'mtbelengineering', 'toolical', 'production', 'file', 'aswyuysm', 'mtbelengineering', 'toolical', 'production', 'read', 'write', 'hostname', 'mtbu', 'ele', 'file', 'hostname', 'mtbu', 'ele', 'read', 'printer', 'wy'] processed_text: ['access', 'network', 'drive', 'printer', 'please', 'provide', 'access', 'following', 'mr', 'akirtyethsyd', 'user', 'id', 'vvsthryomaa', 'aswyuysm', 'mtbelengineering', 'toolical', 'production', 'file', 'aswyuysm', 'mtbelengineering', 'toolical', 'production', 'read', 'write', 'hostname', 'mtbu', 'ele', 'file', 'hostname', 'mtbu', 'ele', 'read', 'printer', 'wy'] list_processed_text: [['access'], ['network'], ['drive'], ['printer'], ['please'], ['provide'], ['access'], ['following'], ['mr'], ['akirtyethsyd'], ['user'], ['id'], ['vvsthryomaa'], ['aswyuysm'], ['mtbelengineering'], ['toolical'], ['production'], ['file'], ['aswyuysm'], ['mtbelengineering'], ['toolical'], ['production'], ['read'], ['write'], ['hostname'], ['mtbu'], ['ele'], ['file'], ['hostname'], ['mtbu'], ['ele'], ['read'], ['printer'], ['wy']] k: 1301 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1302 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1303 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1304 len: <class 'list'> Data: ['recall', 'plant', 'ref', 'dear', 'team', 'got', 'stock', 'recall', 'notice', 'plant', 'plant', 'mm', 'pc', 'need', 'returned', 'plant', 'created', 'sto', 'request', 'pc', 'dn', 'generated', 'pls', 'help', 'run', 'dn', 'rest', 'pc', 'material', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['recall', 'plant', 'ref', 'dear', 'team', 'got', 'stock', 'recall', 'notice', 'plant', 'plant', 'mm', 'pc', 'need', 'returned', 'plant', 'created', 'sto', 'request', 'pc', 'dn', 'generated', 'pls', 'help', 'run', 'dn', 'rest', 'pc', 'material', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['recall'], ['plant'], ['ref'], ['dear'], ['team'], ['got'], ['stock'], ['recall'], ['notice'], ['plant'], ['plant'], ['mm'], ['pc'], ['need'], ['returned'], ['plant'], ['created'], ['sto'], ['request'], ['pc'], ['dn'], ['generated'], ['pls'], ['help'], ['run'], ['dn'], ['rest'], ['pc'], ['material'], ['thx'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 1305 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1306 len: <class 'list'> Data: ['ned', 'vpn', 'access', 'hana', 'erp', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'signed', 'vpn', 'access', 'hana', 'erp'] processed_text: ['ned', 'vpn', 'access', 'hana', 'erp', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'signed', 'vpn', 'access', 'hana', 'erp'] list_processed_text: [['ned'], ['vpn'], ['access'], ['hana'], ['erp'], ['name'], ['pfzxecbo'], ['ptygkvzl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['signed'], ['vpn'], ['access'], ['hana'], ['erp']] k: 1307 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching', 'contact', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'confirmed', 'use', 'm', 'crm', 'tried', 'repair', 'm', 'office', 'restarted', 'pc', 'tried', 'reconfigure', 'outlook', 'taking', 'time', 'outlook', 'ver', 'user', 'mentioned', 'call', 'u', 'back', 'tomorrow', 'ticket', 'nunber', 'please', 'help', 'user'] processed_text: ['outlook', 'launching', 'outlook', 'launching', 'contact', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'confirmed', 'use', 'm', 'crm', 'tried', 'repair', 'm', 'office', 'restarted', 'pc', 'tried', 'reconfigure', 'outlook', 'taking', 'time', 'outlook', 'ver', 'user', 'mentioned', 'call', 'u', 'back', 'tomorrow', 'ticket', 'nunber', 'please', 'help', 'user'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching'], ['contact'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['user'], ['confirmed'], ['use'], ['m'], ['crm'], ['tried'], ['repair'], ['m'], ['office'], ['restarted'], ['pc'], ['tried'], ['reconfigure'], ['outlook'], ['taking'], ['time'], ['outlook'], ['ver'], ['user'], ['mentioned'], ['call'], ['u'], ['back'], ['tomorrow'], ['ticket'], ['nunber'], ['please'], ['help'], ['user']] k: 1308 len: <class 'list'> Data: ['erp', 'locked', 'please', 'help', 'un', 'lock', 'tell', 'new', 'password', 'please', 'help', 'unlock', 'erp', 'tell', 'new', 'password'] processed_text: ['erp', 'locked', 'please', 'help', 'un', 'lock', 'tell', 'new', 'password', 'please', 'help', 'unlock', 'erp', 'tell', 'new', 'password'] list_processed_text: [['erp'], ['locked'], ['please'], ['help'], ['un'], ['lock'], ['tell'], ['new'], ['password'], ['please'], ['help'], ['unlock'], ['erp'], ['tell'], ['new'], ['password']] k: 1309 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1310 len: <class 'list'> Data: ['bobj', 'please', 'image', 'trying', 'get', 'bobj', 'day', 'show'] processed_text: ['bobj', 'please', 'image', 'trying', 'get', 'bobj', 'day', 'show'] list_processed_text: [['bobj'], ['please'], ['image'], ['trying'], ['get'], ['bobj'], ['day'], ['show']] k: 1311 len: <class 'list'> Data: ['account', 'unlock', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'jqxtbspr', 'mpfdivlh', 'hello', 'rakthyesh', 'rakthyesh', 'hi', 'davidthd'] processed_text: ['account', 'unlock', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'jqxtbspr', 'mpfdivlh', 'hello', 'rakthyesh', 'rakthyesh', 'hi', 'davidthd'] list_processed_text: [['account'], ['unlock'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['jqxtbspr'], ['mpfdivlh'], ['hello'], ['rakthyesh'], ['rakthyesh'], ['hi'], ['davidthd']] k: 1312 len: <class 'list'> Data: ['need', 'change', 'password', 'sync', 'new', 'password', 'account', 'need', 'change', 'password', 'sync', 'new', 'password', 'account'] processed_text: ['need', 'change', 'password', 'sync', 'new', 'password', 'account', 'need', 'change', 'password', 'sync', 'new', 'password', 'account'] list_processed_text: [['need'], ['change'], ['password'], ['sync'], ['new'], ['password'], ['account'], ['need'], ['change'], ['password'], ['sync'], ['new'], ['password'], ['account']] k: 1313 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] processed_text: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] list_processed_text: [['unable'], ['sign'], ['skype'], ['unable'], ['sign'], ['skype']] k: 1314 len: <class 'list'> Data: ['password', 'reset', 'es', 'user', 'nothrdaj', 'password', 'reset', 'es', 'user', 'nothrdaj'] processed_text: ['password', 'reset', 'es', 'user', 'nothrdaj', 'password', 'reset', 'es', 'user', 'nothrdaj'] list_processed_text: [['password'], ['reset'], ['es'], ['user'], ['nothrdaj'], ['password'], ['reset'], ['es'], ['user'], ['nothrdaj']] k: 1315 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et', 'circuit', 'outage', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et'] processed_text: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et', 'circuit', 'outage', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et'] list_processed_text: [['circuit'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['plant'], ['bld'], ['qa'], ['carb'], ['access'], ['sw'], ['switch'], ['since'], ['et'], ['circuit'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['plant'], ['bld'], ['qa'], ['carb'], ['access'], ['sw'], ['switch'], ['since'], ['et']] k: 1316 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1317 len: <class 'list'> Data: ['application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'state', 'monitoring', 'tool', 'warning', 'alwaysupservice', 'exe', 'process', 'count'] processed_text: ['application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'state', 'monitoring', 'tool', 'warning', 'alwaysupservice', 'exe', 'process', 'count'] list_processed_text: [['application'], ['plm'], ['conversion'], ['server'], ['node'], ['hostname'], ['warning'], ['state'], ['monitoring'], ['tool'], ['warning'], ['alwaysupservice'], ['exe'], ['process'], ['count']] k: 1318 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1319 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1320 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1321 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 1322 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1323 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 1324 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1325 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 1326 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1327 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1328 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1329 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'primary', 'circuit', 'type', 'outage', 'network', 'xcircuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'primary', 'circuit', 'type', 'outage', 'network', 'xcircuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['company'], ['ap'], ['ind'], ['carrier'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['xcircuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1330 len: <class 'list'> Data: ['planned', 'power', 'outage', 'matlxjgi', 'elrndiuy', 'company', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['planned', 'power', 'outage', 'matlxjgi', 'elrndiuy', 'company', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['planned'], ['power'], ['outage'], ['matlxjgi'], ['elrndiuy'], ['company'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1331 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1332 len: <class 'list'> Data: ['sound', 'working', 'suspecting', 'email', 'threat', 'thaybd', 'mhasttdd', 'pm', 'nwfodmhc', 'exurcwkm', 'rohthsit', 'mhdyhtya', 'fw', 'inquiry', 'purchase', 'order', 'hi', 'kindly', 'check', 'mail', 'hope', 'junk', 'mail', 'never', 'meet', 'person', 'name', 'show', 'sender', 'tried', 'opening', 'attachment', 'unable', 'forwarding', 'mail', 'seeking', 'help', 'check', 'whether', 'junk', 'mail', 'attachment', 'opeyctrhbkm', 'plvnuxmry', 'cause', 'issue', 'like', 'virus', 'company', 'database', 'theft', 'link', 'please', 'check', 'confirm', 'best'] processed_text: ['sound', 'working', 'suspecting', 'email', 'threat', 'thaybd', 'mhasttdd', 'pm', 'nwfodmhc', 'exurcwkm', 'rohthsit', 'mhdyhtya', 'fw', 'inquiry', 'purchase', 'order', 'hi', 'kindly', 'check', 'mail', 'hope', 'junk', 'mail', 'never', 'meet', 'person', 'name', 'show', 'sender', 'tried', 'opening', 'attachment', 'unable', 'forwarding', 'mail', 'seeking', 'help', 'check', 'whether', 'junk', 'mail', 'attachment', 'opeyctrhbkm', 'plvnuxmry', 'cause', 'issue', 'like', 'virus', 'company', 'database', 'theft', 'link', 'please', 'check', 'confirm', 'best'] list_processed_text: [['sound'], ['working'], ['suspecting'], ['email'], ['threat'], ['thaybd'], ['mhasttdd'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rohthsit'], ['mhdyhtya'], ['fw'], ['inquiry'], ['purchase'], ['order'], ['hi'], ['kindly'], ['check'], ['mail'], ['hope'], ['junk'], ['mail'], ['never'], ['meet'], ['person'], ['name'], ['show'], ['sender'], ['tried'], ['opening'], ['attachment'], ['unable'], ['forwarding'], ['mail'], ['seeking'], ['help'], ['check'], ['whether'], ['junk'], ['mail'], ['attachment'], ['opeyctrhbkm'], ['plvnuxmry'], ['cause'], ['issue'], ['like'], ['virus'], ['company'], ['database'], ['theft'], ['link'], ['please'], ['check'], ['confirm'], ['best']] k: 1333 len: <class 'list'> Data: ['inquiry', 'erp', 'sid', 'maintenance', 'inquiry', 'erp', 'sid', 'maintenance'] processed_text: ['inquiry', 'erp', 'sid', 'maintenance', 'inquiry', 'erp', 'sid', 'maintenance'] list_processed_text: [['inquiry'], ['erp'], ['sid'], ['maintenance'], ['inquiry'], ['erp'], ['sid'], ['maintenance']] k: 1334 len: <class 'list'> Data: ['apac', 'company', 'multiple', 'switch', 'went', 'pm', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'fpsf', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'pmw', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw'] processed_text: ['apac', 'company', 'multiple', 'switch', 'went', 'pm', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'fpsf', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'pmw', 'access', 'sw', 'company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw'] list_processed_text: [['apac'], ['company'], ['multiple'], ['switch'], ['went'], ['pm'], ['et'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['fpsf'], ['access'], ['sw'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['pmw'], ['access'], ['sw'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['psf'], ['access'], ['sw']] k: 1335 len: <class 'list'> Data: ['job', 'bcv', 'sid', 'failed', 'job', 'scheduler', 'job', 'bcv', 'sid', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bcv', 'sid', 'failed', 'job', 'scheduler', 'job', 'bcv', 'sid', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bcv'], ['sid'], ['failed'], ['job'], ['scheduler'], ['job'], ['bcv'], ['sid'], ['failed'], ['job'], ['scheduler']] k: 1336 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 1337 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 1338 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1339 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1340 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 1341 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1342 len: <class 'list'> Data: ['pc', 'hall', 'near', 'ro', 'nesner', 'doesn’t', 'listen', 'invite', 'germany', 'replacement', 'pc', 'already', 'installed', 'new', 'one', 'ordered'] processed_text: ['pc', 'hall', 'near', 'ro', 'nesner', 'doesn’t', 'listen', 'invite', 'germany', 'replacement', 'pc', 'already', 'installed', 'new', 'one', 'ordered'] list_processed_text: [['pc'], ['hall'], ['near'], ['ro'], ['nesner'], ['doesn’t'], ['listen'], ['invite'], ['germany'], ['replacement'], ['pc'], ['already'], ['installed'], ['new'], ['one'], ['ordered']] k: 1343 len: <class 'list'> Data: ['laptop', 'model', 'latitude', 'speaker', 'working', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'laptop', 'model', 'latitude', 'speaker', 'working'] processed_text: ['laptop', 'model', 'latitude', 'speaker', 'working', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'laptop', 'model', 'latitude', 'speaker', 'working'] list_processed_text: [['laptop'], ['model'], ['latitude'], ['speaker'], ['working'], ['name'], ['ilypdtno'], ['mkdfetuq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['laptop'], ['model'], ['latitude'], ['speaker'], ['working']] k: 1344 len: <class 'list'> Data: ['job', 'getting', 'fail', 'due', 'dbif', 'rsql', 'sql', 'error', 'issue', 'job', 'getting', 'fail', 'due', 'dbif', 'rsql', 'sql', 'error', 'issue'] processed_text: ['job', 'getting', 'fail', 'due', 'dbif', 'rsql', 'sql', 'error', 'issue', 'job', 'getting', 'fail', 'due', 'dbif', 'rsql', 'sql', 'error', 'issue'] list_processed_text: [['job'], ['getting'], ['fail'], ['due'], ['dbif'], ['rsql'], ['sql'], ['error'], ['issue'], ['job'], ['getting'], ['fail'], ['due'], ['dbif'], ['rsql'], ['sql'], ['error'], ['issue']] k: 1345 len: <class 'list'> Data: ['network', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['vogelfontein'], ['south'], ['africa'], ['sa'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1346 len: <class 'list'> Data: ['job', 'bwsdslspln', 'failed', 'job', 'scheduler', 'job', 'bwsdslspln', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwsdslspln', 'failed', 'job', 'scheduler', 'job', 'bwsdslspln', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwsdslspln'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwsdslspln'], ['failed'], ['job'], ['scheduler']] k: 1347 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1348 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1349 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1350 len: <class 'list'> Data: ['server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et', 'server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et'] processed_text: ['server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et', 'server', 'lnbdm', 'active', 'directory', 'located', 'philadelph', 'ia', 'since', 'et'] list_processed_text: [['server'], ['lnbdm'], ['active'], ['directory'], ['located'], ['philadelph'], ['ia'], ['since'], ['et'], ['server'], ['lnbdm'], ['active'], ['directory'], ['located'], ['philadelph'], ['ia'], ['since'], ['et']] k: 1351 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 1352 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 1353 len: <class 'list'> Data: ['drive', 'access', 'request', 'hi', 'please', 'provide', 'access', 'pu', 'file', 'hostname', 'department', 'pu', 'press', 'tool', 'folder', 'following', 'computer', 'awywx', 'awyl', 'best'] processed_text: ['drive', 'access', 'request', 'hi', 'please', 'provide', 'access', 'pu', 'file', 'hostname', 'department', 'pu', 'press', 'tool', 'folder', 'following', 'computer', 'awywx', 'awyl', 'best'] list_processed_text: [['drive'], ['access'], ['request'], ['hi'], ['please'], ['provide'], ['access'], ['pu'], ['file'], ['hostname'], ['department'], ['pu'], ['press'], ['tool'], ['folder'], ['following'], ['computer'], ['awywx'], ['awyl'], ['best']] k: 1354 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 1355 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1356 len: <class 'list'> Data: ['pas', 'word', 'reset', 'hi', 'please', 'reset', 'pas', 'word', 'daypay', 'user', 'id', 'user', 'id', 'purartnpn', 'best'] processed_text: ['pas', 'word', 'reset', 'hi', 'please', 'reset', 'pas', 'word', 'daypay', 'user', 'id', 'user', 'id', 'purartnpn', 'best'] list_processed_text: [['pas'], ['word'], ['reset'], ['hi'], ['please'], ['reset'], ['pas'], ['word'], ['daypay'], ['user'], ['id'], ['user'], ['id'], ['purartnpn'], ['best']] k: 1357 len: <class 'list'> Data: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1358 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 1359 len: <class 'list'> Data: ['vogelfontein', 'south', 'africa', 'sa', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'vogelfontein', 'south', 'africa', 'sa', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'interface', 'gigabitethernet', 'uplink', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'eu', 'zaf', 'vogelfontein', 'core', 'sw', 'company', 'com'] processed_text: ['vogelfontein', 'south', 'africa', 'sa', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'vogelfontein', 'south', 'africa', 'sa', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'interface', 'gigabitethernet', 'uplink', 'company', 'eu', 'zaf', 'vogelfontein', 'access', 'sw', 'company', 'eu', 'zaf', 'vogelfontein', 'core', 'sw', 'company', 'com'] list_processed_text: [['vogelfontein'], ['south'], ['africa'], ['sa'], ['company'], ['eu'], ['zaf'], ['vogelfontein'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['pm'], ['et'], ['vogelfontein'], ['south'], ['africa'], ['sa'], ['company'], ['eu'], ['zaf'], ['vogelfontein'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['pm'], ['et'], ['interface'], ['gigabitethernet'], ['uplink'], ['company'], ['eu'], ['zaf'], ['vogelfontein'], ['access'], ['sw'], ['company'], ['eu'], ['zaf'], ['vogelfontein'], ['core'], ['sw'], ['company'], ['com']] k: 1360 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 1361 len: <class 'list'> Data: ['unable', 'sync', 'mail', 'calendar', 'mobile', 'device', 'unable', 'sync', 'mail', 'calendar', 'mobile', 'device'] processed_text: ['unable', 'sync', 'mail', 'calendar', 'mobile', 'device', 'unable', 'sync', 'mail', 'calendar', 'mobile', 'device'] list_processed_text: [['unable'], ['sync'], ['mail'], ['calendar'], ['mobile'], ['device'], ['unable'], ['sync'], ['mail'], ['calendar'], ['mobile'], ['device']] k: 1362 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1363 len: <class 'list'> Data: ['unable', 'connect', 'network', 'printer', 'unable', 'connect', 'network', 'printer', 'ticket', 'update', 'inplant'] processed_text: ['unable', 'connect', 'network', 'printer', 'unable', 'connect', 'network', 'printer', 'ticket', 'update', 'inplant'] list_processed_text: [['unable'], ['connect'], ['network'], ['printer'], ['unable'], ['connect'], ['network'], ['printer'], ['ticket'], ['update'], ['inplant']] k: 1364 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1365 len: <class 'list'> Data: ['password', 'update', 'hello', 'team', 'good', 'afternoon', 'name', 'cuzhydjl', 'fugwqh', 'mexico', 'queretaro', 'unfortunate', 'password', 'expired', 'forgot', 'update', 'cannot', 'enter', 'company', 'system', 'distributor', 'tool', 'crm', 'today', 'tried', 'change', 'password', 'web', 'site', 'give', 'access', 'please', 'said'] processed_text: ['password', 'update', 'hello', 'team', 'good', 'afternoon', 'name', 'cuzhydjl', 'fugwqh', 'mexico', 'queretaro', 'unfortunate', 'password', 'expired', 'forgot', 'update', 'cannot', 'enter', 'company', 'system', 'distributor', 'tool', 'crm', 'today', 'tried', 'change', 'password', 'web', 'site', 'give', 'access', 'please', 'said'] list_processed_text: [['password'], ['update'], ['hello'], ['team'], ['good'], ['afternoon'], ['name'], ['cuzhydjl'], ['fugwqh'], ['mexico'], ['queretaro'], ['unfortunate'], ['password'], ['expired'], ['forgot'], ['update'], ['cannot'], ['enter'], ['company'], ['system'], ['distributor'], ['tool'], ['crm'], ['today'], ['tried'], ['change'], ['password'], ['web'], ['site'], ['give'], ['access'], ['please'], ['said']] k: 1366 len: <class 'list'> Data: ['network', 'printer', 'working', 'please', 'check', 'see', 'printer', 'rr', 'lrrsm', 'connected', 'network', 'sent', 'several', 'document', 'sitting', 'queue', 'printer', 'turned', 'say', 'ready', 'nothing', 'happens'] processed_text: ['network', 'printer', 'working', 'please', 'check', 'see', 'printer', 'rr', 'lrrsm', 'connected', 'network', 'sent', 'several', 'document', 'sitting', 'queue', 'printer', 'turned', 'say', 'ready', 'nothing', 'happens'] list_processed_text: [['network'], ['printer'], ['working'], ['please'], ['check'], ['see'], ['printer'], ['rr'], ['lrrsm'], ['connected'], ['network'], ['sent'], ['several'], ['document'], ['sitting'], ['queue'], ['printer'], ['turned'], ['say'], ['ready'], ['nothing'], ['happens']] k: 1367 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1368 len: <class 'list'> Data: ['folder', 'deleted', 'hostname', 'folder', 'deleted', 'hostname', 'folder', 'need', 'restored', 'globaleng', 'beyond', 'machining', 'gtc'] processed_text: ['folder', 'deleted', 'hostname', 'folder', 'deleted', 'hostname', 'folder', 'need', 'restored', 'globaleng', 'beyond', 'machining', 'gtc'] list_processed_text: [['folder'], ['deleted'], ['hostname'], ['folder'], ['deleted'], ['hostname'], ['folder'], ['need'], ['restored'], ['globaleng'], ['beyond'], ['machining'], ['gtc']] k: 1369 len: <class 'list'> Data: ['unable', 'log', 'erp', 'netweaver', 'unable', 'log', 'erp', 'netweaver'] processed_text: ['unable', 'log', 'erp', 'netweaver', 'unable', 'log', 'erp', 'netweaver'] list_processed_text: [['unable'], ['log'], ['erp'], ['netweaver'], ['unable'], ['log'], ['erp'], ['netweaver']] k: 1370 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 1371 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 1372 len: <class 'list'> Data: ['request', 'unlock', 'user', 'account', 'sekarfts', 'hello', 'please', 'unlock', 'user', 'account', 'user', 'name', 'sekarfts'] processed_text: ['request', 'unlock', 'user', 'account', 'sekarfts', 'hello', 'please', 'unlock', 'user', 'account', 'user', 'name', 'sekarfts'] list_processed_text: [['request'], ['unlock'], ['user'], ['account'], ['sekarfts'], ['hello'], ['please'], ['unlock'], ['user'], ['account'], ['user'], ['name'], ['sekarfts']] k: 1373 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 1374 len: <class 'list'> Data: ['company', 'center', 'account', 'added', 'help', 'deleted', 'item', 'please', 'add', 'company', 'center', 'account', 'account', 'accidently', 'deleted', 'order', 'section', 'please', 'restore'] processed_text: ['company', 'center', 'account', 'added', 'help', 'deleted', 'item', 'please', 'add', 'company', 'center', 'account', 'account', 'accidently', 'deleted', 'order', 'section', 'please', 'restore'] list_processed_text: [['company'], ['center'], ['account'], ['added'], ['help'], ['deleted'], ['item'], ['please'], ['add'], ['company'], ['center'], ['account'], ['account'], ['accidently'], ['deleted'], ['order'], ['section'], ['please'], ['restore']] k: 1375 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 1376 len: <class 'list'> Data: ['cannot', 'create', 'delivery', 'please', 'fix', 'apo', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager'] processed_text: ['cannot', 'create', 'delivery', 'please', 'fix', 'apo', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager'] list_processed_text: [['cannot'], ['create'], ['delivery'], ['please'], ['fix'], ['apo'], ['kryuisti'], ['turleythy'], ['usa'], ['site'], ['business'], ['manager']] k: 1377 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 1378 len: <class 'list'> Data: ['create', 'telephony', 'software', 'id', 'gso', 'new', 'hire', 'sewilrxm', 'cbikymvf', 'create', 'telephony', 'software', 'id', 'gso', 'new', 'hire', 'sewilrxm', 'cbikymvf'] processed_text: ['create', 'telephony', 'software', 'id', 'gso', 'new', 'hire', 'sewilrxm', 'cbikymvf', 'create', 'telephony', 'software', 'id', 'gso', 'new', 'hire', 'sewilrxm', 'cbikymvf'] list_processed_text: [['create'], ['telephony'], ['software'], ['id'], ['gso'], ['new'], ['hire'], ['sewilrxm'], ['cbikymvf'], ['create'], ['telephony'], ['software'], ['id'], ['gso'], ['new'], ['hire'], ['sewilrxm'], ['cbikymvf']] k: 1379 len: <class 'list'> Data: ['unable', 'save', 'exe', 'file', 'hello', 'need', 'help', 'saving', 'exe', 'file', 'analyst', 'attempting', 'help', 'today', 'asked', 'put', 'help', 'desk', 'ticket', 'problem', 'pc', 'file', 'attempting', 'save', 'attached'] processed_text: ['unable', 'save', 'exe', 'file', 'hello', 'need', 'help', 'saving', 'exe', 'file', 'analyst', 'attempting', 'help', 'today', 'asked', 'put', 'help', 'desk', 'ticket', 'problem', 'pc', 'file', 'attempting', 'save', 'attached'] list_processed_text: [['unable'], ['save'], ['exe'], ['file'], ['hello'], ['need'], ['help'], ['saving'], ['exe'], ['file'], ['analyst'], ['attempting'], ['help'], ['today'], ['asked'], ['put'], ['help'], ['desk'], ['ticket'], ['problem'], ['pc'], ['file'], ['attempting'], ['save'], ['attached']] k: 1380 len: <class 'list'> Data: ['vip', 'user', 'unable', 'join', 'skype', 'meeting', 'external', 'vendor', 'vip', 'user', 'unable', 'join', 'skype', 'meeting', 'external', 'vendor'] processed_text: ['vip', 'user', 'unable', 'join', 'skype', 'meeting', 'external', 'vendor', 'vip', 'user', 'unable', 'join', 'skype', 'meeting', 'external', 'vendor'] list_processed_text: [['vip'], ['user'], ['unable'], ['join'], ['skype'], ['meeting'], ['external'], ['vendor'], ['vip'], ['user'], ['unable'], ['join'], ['skype'], ['meeting'], ['external'], ['vendor']] k: 1381 len: <class 'list'> Data: ['analysis', 'office', 'aao', 'tool', 'install', 'analysis', 'office', 'aao', 'tool', 'laptop'] processed_text: ['analysis', 'office', 'aao', 'tool', 'install', 'analysis', 'office', 'aao', 'tool', 'laptop'] list_processed_text: [['analysis'], ['office'], ['aao'], ['tool'], ['install'], ['analysis'], ['office'], ['aao'], ['tool'], ['laptop']] k: 1382 len: <class 'list'> Data: ['error', 'sto', 'possible', 'combination', 'error', 'sto', 'possible', 'combination', 'error', 'entering', 'stock', 'transfer', 'material', 'plant', 'plant'] processed_text: ['error', 'sto', 'possible', 'combination', 'error', 'sto', 'possible', 'combination', 'error', 'entering', 'stock', 'transfer', 'material', 'plant', 'plant'] list_processed_text: [['error'], ['sto'], ['possible'], ['combination'], ['error'], ['sto'], ['possible'], ['combination'], ['error'], ['entering'], ['stock'], ['transfer'], ['material'], ['plant'], ['plant']] k: 1383 len: <class 'list'> Data: ['system', 'hang', 'slow', 'help', 'format', 'reinstall', 'o', 'laptop', 'system', 'getting', 'hang', 'suddenly', 'slow', 'running'] processed_text: ['system', 'hang', 'slow', 'help', 'format', 'reinstall', 'o', 'laptop', 'system', 'getting', 'hang', 'suddenly', 'slow', 'running'] list_processed_text: [['system'], ['hang'], ['slow'], ['help'], ['format'], ['reinstall'], ['o'], ['laptop'], ['system'], ['getting'], ['hang'], ['suddenly'], ['slow'], ['running']] k: 1384 len: <class 'list'> Data: ['java', 'error', 'help', 'update', 'java', 'ver', 'internet', 'explore'] processed_text: ['java', 'error', 'help', 'update', 'java', 'ver', 'internet', 'explore'] list_processed_text: [['java'], ['error'], ['help'], ['update'], ['java'], ['ver'], ['internet'], ['explore']] k: 1385 len: <class 'list'> Data: ['access', 'issue', 'unable', 'install', 'software', 'asking', 'administrator', 'access'] processed_text: ['access', 'issue', 'unable', 'install', 'software', 'asking', 'administrator', 'access'] list_processed_text: [['access'], ['issue'], ['unable'], ['install'], ['software'], ['asking'], ['administrator'], ['access']] k: 1386 len: <class 'list'> Data: ['access', 'denied', 'collaboration', 'platform', 'finance', 'link', 'link', 'user', 'need', 'access'] processed_text: ['access', 'denied', 'collaboration', 'platform', 'finance', 'link', 'link', 'user', 'need', 'access'] list_processed_text: [['access'], ['denied'], ['collaboration'], ['platform'], ['finance'], ['link'], ['link'], ['user'], ['need'], ['access']] k: 1387 len: <class 'list'> Data: ['melisdfysa', 'receiving', 'email', 'rgrtrs', 'melisdfysa', 'included', 'rgrtrs', 'email', 'list', 'receiving', 'email', 'coming', 'address'] processed_text: ['melisdfysa', 'receiving', 'email', 'rgrtrs', 'melisdfysa', 'included', 'rgrtrs', 'email', 'list', 'receiving', 'email', 'coming', 'address'] list_processed_text: [['melisdfysa'], ['receiving'], ['email'], ['rgrtrs'], ['melisdfysa'], ['included'], ['rgrtrs'], ['email'], ['list'], ['receiving'], ['email'], ['coming'], ['address']] k: 1388 len: <class 'list'> Data: ['phone', 'issue', 'phone', 'issue'] processed_text: ['phone', 'issue', 'phone', 'issue'] list_processed_text: [['phone'], ['issue'], ['phone'], ['issue']] k: 1389 len: <class 'list'> Data: ['generirtc', 'information', 'generirtc', 'information'] processed_text: ['generirtc', 'information', 'generirtc', 'information'] list_processed_text: [['generirtc'], ['information'], ['generirtc'], ['information']] k: 1390 len: <class 'list'> Data: ['account', 'lockout', 'account', 'lockout'] processed_text: ['account', 'lockout', 'account', 'lockout'] list_processed_text: [['account'], ['lockout'], ['account'], ['lockout']] k: 1391 len: <class 'list'> Data: ['click', 'download', 'pdf', 'get', 'pop', 'allows', 'download', 'pdf', 'see', 'attachment', 'click', 'download', 'pdf', 'get', 'pop', 'allows', 'download', 'pdf', 'see', 'attachment', 'hi', 'bthrob', 'ducyua', 'put', 'crm', 'dynamic', 'com', 'popup', 'blocker', 'worked', 'know', 'thing', 'need', 'pop', 'blocker', 'also', 'put', 'company', 'collaboration', 'platform', 'com', 'pop', 'blocker', 'mine', 'please', 'close', 'ticket', 'need', 'done'] processed_text: ['click', 'download', 'pdf', 'get', 'pop', 'allows', 'download', 'pdf', 'see', 'attachment', 'click', 'download', 'pdf', 'get', 'pop', 'allows', 'download', 'pdf', 'see', 'attachment', 'hi', 'bthrob', 'ducyua', 'put', 'crm', 'dynamic', 'com', 'popup', 'blocker', 'worked', 'know', 'thing', 'need', 'pop', 'blocker', 'also', 'put', 'company', 'collaboration', 'platform', 'com', 'pop', 'blocker', 'mine', 'please', 'close', 'ticket', 'need', 'done'] list_processed_text: [['click'], ['download'], ['pdf'], ['get'], ['pop'], ['allows'], ['download'], ['pdf'], ['see'], ['attachment'], ['click'], ['download'], ['pdf'], ['get'], ['pop'], ['allows'], ['download'], ['pdf'], ['see'], ['attachment'], ['hi'], ['bthrob'], ['ducyua'], ['put'], ['crm'], ['dynamic'], ['com'], ['popup'], ['blocker'], ['worked'], ['know'], ['thing'], ['need'], ['pop'], ['blocker'], ['also'], ['put'], ['company'], ['collaboration'], ['platform'], ['com'], ['pop'], ['blocker'], ['mine'], ['please'], ['close'], ['ticket'], ['need'], ['done']] k: 1392 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 1393 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 1394 len: <class 'list'> Data: ['outlook', 'issue', 'outlook', 'issue', 'unable', 'open', 'new', 'email', 'going', 'responding'] processed_text: ['outlook', 'issue', 'outlook', 'issue', 'unable', 'open', 'new', 'email', 'going', 'responding'] list_processed_text: [['outlook'], ['issue'], ['outlook'], ['issue'], ['unable'], ['open'], ['new'], ['email'], ['going'], ['responding']] k: 1395 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 1396 len: <class 'list'> Data: ['lost', 'connection', 'hqn', 'personal', 'drive', 'shared', 'desktop', 'laptop', 'lost', 'connection', 'hqn', 'personal', 'drive', 'shared', 'desktop', 'laptop', 'able', 'access', 'desktop', 'longer', 'laptop', 'tried', 'map', 'location', 'unsuccessful'] processed_text: ['lost', 'connection', 'hqn', 'personal', 'drive', 'shared', 'desktop', 'laptop', 'lost', 'connection', 'hqn', 'personal', 'drive', 'shared', 'desktop', 'laptop', 'able', 'access', 'desktop', 'longer', 'laptop', 'tried', 'map', 'location', 'unsuccessful'] list_processed_text: [['lost'], ['connection'], ['hqn'], ['personal'], ['drive'], ['shared'], ['desktop'], ['laptop'], ['lost'], ['connection'], ['hqn'], ['personal'], ['drive'], ['shared'], ['desktop'], ['laptop'], ['able'], ['access'], ['desktop'], ['longer'], ['laptop'], ['tried'], ['map'], ['location'], ['unsuccessful']] k: 1397 len: <class 'list'> Data: ['cant', 'see', 'archived', 'email', 'outlook', 'leaving', 'today', 'natytse', 'sylyhtsvesuyter', 'need', 'see', 'archived', 'email', 'outlook'] processed_text: ['cant', 'see', 'archived', 'email', 'outlook', 'leaving', 'today', 'natytse', 'sylyhtsvesuyter', 'need', 'see', 'archived', 'email', 'outlook'] list_processed_text: [['cant'], ['see'], ['archived'], ['email'], ['outlook'], ['leaving'], ['today'], ['natytse'], ['sylyhtsvesuyter'], ['need'], ['see'], ['archived'], ['email'], ['outlook']] k: 1398 len: <class 'list'> Data: ['erp', 'printer', 'rerouting', 'name', 'uicjxvng', 'jcoshmbf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'change', 'default', 'printer', 'erp', 'transaction', 'co', 'co', 'despite', 'changing', 'default', 'su', 'still', 'printing', 'wrong', 'printer'] processed_text: ['erp', 'printer', 'rerouting', 'name', 'uicjxvng', 'jcoshmbf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'change', 'default', 'printer', 'erp', 'transaction', 'co', 'co', 'despite', 'changing', 'default', 'su', 'still', 'printing', 'wrong', 'printer'] list_processed_text: [['erp'], ['printer'], ['rerouting'], ['name'], ['uicjxvng'], ['jcoshmbf'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['change'], ['default'], ['printer'], ['erp'], ['transaction'], ['co'], ['co'], ['despite'], ['changing'], ['default'], ['su'], ['still'], ['printing'], ['wrong'], ['printer']] k: 1399 len: <class 'list'> Data: ['interface', 'fastethernet', 'cisco', 'aircap', 'company', 'na', 'usa', 'usa', 'idf', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'cisco', 'aircap', 'company', 'na', 'usa', 'usa', 'idf', 'access', 'sw', 'company', 'com', 'since', 'et'] processed_text: ['interface', 'fastethernet', 'cisco', 'aircap', 'company', 'na', 'usa', 'usa', 'idf', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'cisco', 'aircap', 'company', 'na', 'usa', 'usa', 'idf', 'access', 'sw', 'company', 'com', 'since', 'et'] list_processed_text: [['interface'], ['fastethernet'], ['cisco'], ['aircap'], ['company'], ['na'], ['usa'], ['usa'], ['idf'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['cisco'], ['aircap'], ['company'], ['na'], ['usa'], ['usa'], ['idf'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['et']] k: 1400 len: <class 'list'> Data: ['unable', 'open', 'sid', 'password', 'issue', 'sid', 'unable', 'open', 'sid', 'password', 'issue', 'sid'] processed_text: ['unable', 'open', 'sid', 'password', 'issue', 'sid', 'unable', 'open', 'sid', 'password', 'issue', 'sid'] list_processed_text: [['unable'], ['open'], ['sid'], ['password'], ['issue'], ['sid'], ['unable'], ['open'], ['sid'], ['password'], ['issue'], ['sid']] k: 1401 len: <class 'list'> Data: ['bobj', 'difficulty', 'obtaining', 'data', 'bobj', 'must', 'morning', 'issue', 'reported', 'could', 'someone', 'please', 'call'] processed_text: ['bobj', 'difficulty', 'obtaining', 'data', 'bobj', 'must', 'morning', 'issue', 'reported', 'could', 'someone', 'please', 'call'] list_processed_text: [['bobj'], ['difficulty'], ['obtaining'], ['data'], ['bobj'], ['must'], ['morning'], ['issue'], ['reported'], ['could'], ['someone'], ['please'], ['call']] k: 1402 len: <class 'list'> Data: ['erp', 'password', 'locked', 'updating', 'password', 'password', 'management', 'tool', 'password', 'manager', 'everything', 'else', 'work', 'erp', 'sid', 'locked'] processed_text: ['erp', 'password', 'locked', 'updating', 'password', 'password', 'management', 'tool', 'password', 'manager', 'everything', 'else', 'work', 'erp', 'sid', 'locked'] list_processed_text: [['erp'], ['password'], ['locked'], ['updating'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['everything'], ['else'], ['work'], ['erp'], ['sid'], ['locked']] k: 1403 len: <class 'list'> Data: ['unable', 'login', 'hub', 'check', 'pay', 'statement', 'unable', 'login', 'hub', 'check', 'pay', 'statement'] processed_text: ['unable', 'login', 'hub', 'check', 'pay', 'statement', 'unable', 'login', 'hub', 'check', 'pay', 'statement'] list_processed_text: [['unable'], ['login'], ['hub'], ['check'], ['pay'], ['statement'], ['unable'], ['login'], ['hub'], ['check'], ['pay'], ['statement']] k: 1404 len: <class 'list'> Data: ['hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'free', 'space', 'available', 'gb', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'free', 'space', 'available', 'gb'] processed_text: ['hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'free', 'space', 'available', 'gb', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'utiliuytretion', 'free', 'space', 'available', 'gb'] list_processed_text: [['hostname'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['utiliuytretion'], ['free'], ['space'], ['available'], ['gb'], ['hostname'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['utiliuytretion'], ['free'], ['space'], ['available'], ['gb']] k: 1405 len: <class 'list'> Data: ['problem', 'erp', 'sale', 'info', 'hi', 'trouble', 'getting', 'erp', 'sale', 'info', 'figure', 'field', 'pull', 'report', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng', 'suthye', 'kinght', 'pm', 'vkzwafuh', 'tcjnuswg', 'sntvfpbl', 'vtokgley', 'erp', 'sale', 'info', 'hi', 'stuarthsyt', 'put', 'ticket', 'get', 'fixed'] processed_text: ['problem', 'erp', 'sale', 'info', 'hi', 'trouble', 'getting', 'erp', 'sale', 'info', 'figure', 'field', 'pull', 'report', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng', 'suthye', 'kinght', 'pm', 'vkzwafuh', 'tcjnuswg', 'sntvfpbl', 'vtokgley', 'erp', 'sale', 'info', 'hi', 'stuarthsyt', 'put', 'ticket', 'get', 'fixed'] list_processed_text: [['problem'], ['erp'], ['sale'], ['info'], ['hi'], ['trouble'], ['getting'], ['erp'], ['sale'], ['info'], ['figure'], ['field'], ['pull'], ['report'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng'], ['suthye'], ['kinght'], ['pm'], ['vkzwafuh'], ['tcjnuswg'], ['sntvfpbl'], ['vtokgley'], ['erp'], ['sale'], ['info'], ['hi'], ['stuarthsyt'], ['put'], ['ticket'], ['get'], ['fixed']] k: 1406 len: <class 'list'> Data: ['unable', 'create', 'skype', 'meeting', 'onbehalf', 'tomashtgd', 'mchectg', 'unable', 'create', 'skype', 'meeting', 'behalf', 'tomashtgd', 'mchectg'] processed_text: ['unable', 'create', 'skype', 'meeting', 'onbehalf', 'tomashtgd', 'mchectg', 'unable', 'create', 'skype', 'meeting', 'behalf', 'tomashtgd', 'mchectg'] list_processed_text: [['unable'], ['create'], ['skype'], ['meeting'], ['onbehalf'], ['tomashtgd'], ['mchectg'], ['unable'], ['create'], ['skype'], ['meeting'], ['behalf'], ['tomashtgd'], ['mchectg']] k: 1407 len: <class 'list'> Data: ['interface', 'switch', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since', 'et', 'interface', 'switch', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since', 'et'] processed_text: ['interface', 'switch', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since', 'et', 'interface', 'switch', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'since', 'et'] list_processed_text: [['interface'], ['switch'], ['company'], ['eu'], ['deu'], ['germany'], ['emsw'], ['access'], ['sw'], ['since'], ['et'], ['interface'], ['switch'], ['company'], ['eu'], ['deu'], ['germany'], ['emsw'], ['access'], ['sw'], ['since'], ['et']] k: 1408 len: <class 'list'> Data: ['issue', 'viewing', 'drawing', 'issue', 'viewing', 'drawing', 'please', 'see', 'attached', 'document', 'error', 'message'] processed_text: ['issue', 'viewing', 'drawing', 'issue', 'viewing', 'drawing', 'please', 'see', 'attached', 'document', 'error', 'message'] list_processed_text: [['issue'], ['viewing'], ['drawing'], ['issue'], ['viewing'], ['drawing'], ['please'], ['see'], ['attached'], ['document'], ['error'], ['message']] k: 1409 len: <class 'list'> Data: ['ndigung', 'dxnzkcuh', 'eqdgoxap', 'effective', 'approved', 'hello', 'k', 'ndigung', 'dxnzkcuh', 'eqdgoxap', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['ndigung', 'dxnzkcuh', 'eqdgoxap', 'effective', 'approved', 'hello', 'k', 'ndigung', 'dxnzkcuh', 'eqdgoxap', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['ndigung'], ['dxnzkcuh'], ['eqdgoxap'], ['effective'], ['approved'], ['hello'], ['k'], ['ndigung'], ['dxnzkcuh'], ['eqdgoxap'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 1410 len: <class 'list'> Data: ['unable', 'see', 'tab', 'es', 'unable', 'see', 'tab', 'es'] processed_text: ['unable', 'see', 'tab', 'es', 'unable', 'see', 'tab', 'es'] list_processed_text: [['unable'], ['see'], ['tab'], ['es'], ['unable'], ['see'], ['tab'], ['es']] k: 1411 len: <class 'list'> Data: ['let', 'talk', 'video', 'playing', 'let', 'talk', 'video', 'playing'] processed_text: ['let', 'talk', 'video', 'playing', 'let', 'talk', 'video', 'playing'] list_processed_text: [['let'], ['talk'], ['video'], ['playing'], ['let'], ['talk'], ['video'], ['playing']] k: 1412 len: <class 'list'> Data: ['cannot', 'access', 'ethic', 'portal', 'recently', 'switched', 'account', 'company', 'com', 'company', 'com', 'whilst', 'able', 'log', 'hub', 'new', 'credential', 'try', 'log', 'ethic', 'portal', 'get', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'giuliasana', 'byhdderni', 'bernig'] processed_text: ['cannot', 'access', 'ethic', 'portal', 'recently', 'switched', 'account', 'company', 'com', 'company', 'com', 'whilst', 'able', 'log', 'hub', 'new', 'credential', 'try', 'log', 'ethic', 'portal', 'get', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'giuliasana', 'byhdderni', 'bernig'] list_processed_text: [['cannot'], ['access'], ['ethic'], ['portal'], ['recently'], ['switched'], ['account'], ['company'], ['com'], ['company'], ['com'], ['whilst'], ['able'], ['log'], ['hub'], ['new'], ['credential'], ['try'], ['log'], ['ethic'], ['portal'], ['get'], ['message'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp'], ['giuliasana'], ['byhdderni'], ['bernig']] k: 1413 len: <class 'list'> Data: ['issue', 'microsoft', 'office', 'key', 'entry', 'hi', 'team', 'enclosed', 'screen', 'shot', 'say', 'copy', 'microsoft', 'office', 'professional', 'activated', 'please', 'suggest', 'done', 'key', 'entry', 'activation', 'popup', 'come', 'automatically', 'login', 'm', 'outlook', 'best'] processed_text: ['issue', 'microsoft', 'office', 'key', 'entry', 'hi', 'team', 'enclosed', 'screen', 'shot', 'say', 'copy', 'microsoft', 'office', 'professional', 'activated', 'please', 'suggest', 'done', 'key', 'entry', 'activation', 'popup', 'come', 'automatically', 'login', 'm', 'outlook', 'best'] list_processed_text: [['issue'], ['microsoft'], ['office'], ['key'], ['entry'], ['hi'], ['team'], ['enclosed'], ['screen'], ['shot'], ['say'], ['copy'], ['microsoft'], ['office'], ['professional'], ['activated'], ['please'], ['suggest'], ['done'], ['key'], ['entry'], ['activation'], ['popup'], ['come'], ['automatically'], ['login'], ['m'], ['outlook'], ['best']] k: 1414 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'user', 'called', 'inform', 'kicked', 'eu', 'remote', 'minute', 'connected', 'na', 'working', 'fine'] processed_text: ['ticket', 'update', 'ticket', 'user', 'called', 'inform', 'kicked', 'eu', 'remote', 'minute', 'connected', 'na', 'working', 'fine'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['user'], ['called'], ['inform'], ['kicked'], ['eu'], ['remote'], ['minute'], ['connected'], ['na'], ['working'], ['fine']] k: 1415 len: <class 'list'> Data: ['engineering', 'tool', 'open', 'mathrv', 'macyhtkey', 'engineering', 'tool', 'client', 'open', 'getting', 'error', 'message', 'cannot', 'continue', 'application', 'improperly', 'formatheywted', 'contact', 'application', 'vendor', 'assistance', 'uninstalled', 'installed', 'several', 'time'] processed_text: ['engineering', 'tool', 'open', 'mathrv', 'macyhtkey', 'engineering', 'tool', 'client', 'open', 'getting', 'error', 'message', 'cannot', 'continue', 'application', 'improperly', 'formatheywted', 'contact', 'application', 'vendor', 'assistance', 'uninstalled', 'installed', 'several', 'time'] list_processed_text: [['engineering'], ['tool'], ['open'], ['mathrv'], ['macyhtkey'], ['engineering'], ['tool'], ['client'], ['open'], ['getting'], ['error'], ['message'], ['cannot'], ['continue'], ['application'], ['improperly'], ['formatheywted'], ['contact'], ['application'], ['vendor'], ['assistance'], ['uninstalled'], ['installed'], ['several'], ['time']] k: 1416 len: <class 'list'> Data: ['need', 'access', 'vpn', 'need', 'access', 'vpn', 'computer', 'name', 'lcvl'] processed_text: ['need', 'access', 'vpn', 'need', 'access', 'vpn', 'computer', 'name', 'lcvl'] list_processed_text: [['need'], ['access'], ['vpn'], ['need'], ['access'], ['vpn'], ['computer'], ['name'], ['lcvl']] k: 1417 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1418 len: <class 'list'> Data: ['error', 'message', 'trying', 'log', 'purchasing', 'order', 'error', 'message', 'trying', 'log', 'purchasing', 'order', 'user', 'id', 'cuthyunniy', 'attached', 'email', 'show', 'error', 'receiving'] processed_text: ['error', 'message', 'trying', 'log', 'purchasing', 'order', 'error', 'message', 'trying', 'log', 'purchasing', 'order', 'user', 'id', 'cuthyunniy', 'attached', 'email', 'show', 'error', 'receiving'] list_processed_text: [['error'], ['message'], ['trying'], ['log'], ['purchasing'], ['order'], ['error'], ['message'], ['trying'], ['log'], ['purchasing'], ['order'], ['user'], ['id'], ['cuthyunniy'], ['attached'], ['email'], ['show'], ['error'], ['receiving']] k: 1419 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 1420 len: <class 'list'> Data: ['blocked', 'expense', 'report', 'blocked', 'expense', 'report'] processed_text: ['blocked', 'expense', 'report', 'blocked', 'expense', 'report'] list_processed_text: [['blocked'], ['expense'], ['report'], ['blocked'], ['expense'], ['report']] k: 1421 len: <class 'list'> Data: ['confidential', 'document', 'shared', 'hub', 'everyone', 'access', 'confidential', 'document', 'shared', 'hub', 'everyone', 'access', 'link', 'mikhghytr', 'issue', 'sent', 'iphone', 'begin', 'forwarded', 'message', 'efdhrlwv', 'aoxtugzr', 'date', 'edt', 'aedwrpvo', 'qbpafrsx', 'aqritplu', 'beuflorc', 'itclukpe', 'aimcfeko', 'yjscozva', 'lyjoeacv', 'confidential', 'information', 'hub', 'brought', 'attention', 'morning', 'kpudhygb', 'vnizrdeb', 'search', 'usa', 'job', 'hub', 'information', 'result', 'field', 'thought', 'might', 'want', 'know', 'open'] processed_text: ['confidential', 'document', 'shared', 'hub', 'everyone', 'access', 'confidential', 'document', 'shared', 'hub', 'everyone', 'access', 'link', 'mikhghytr', 'issue', 'sent', 'iphone', 'begin', 'forwarded', 'message', 'efdhrlwv', 'aoxtugzr', 'date', 'edt', 'aedwrpvo', 'qbpafrsx', 'aqritplu', 'beuflorc', 'itclukpe', 'aimcfeko', 'yjscozva', 'lyjoeacv', 'confidential', 'information', 'hub', 'brought', 'attention', 'morning', 'kpudhygb', 'vnizrdeb', 'search', 'usa', 'job', 'hub', 'information', 'result', 'field', 'thought', 'might', 'want', 'know', 'open'] list_processed_text: [['confidential'], ['document'], ['shared'], ['hub'], ['everyone'], ['access'], ['confidential'], ['document'], ['shared'], ['hub'], ['everyone'], ['access'], ['link'], ['mikhghytr'], ['issue'], ['sent'], ['iphone'], ['begin'], ['forwarded'], ['message'], ['efdhrlwv'], ['aoxtugzr'], ['date'], ['edt'], ['aedwrpvo'], ['qbpafrsx'], ['aqritplu'], ['beuflorc'], ['itclukpe'], ['aimcfeko'], ['yjscozva'], ['lyjoeacv'], ['confidential'], ['information'], ['hub'], ['brought'], ['attention'], ['morning'], ['kpudhygb'], ['vnizrdeb'], ['search'], ['usa'], ['job'], ['hub'], ['information'], ['result'], ['field'], ['thought'], ['might'], ['want'], ['know'], ['open']] k: 1422 len: <class 'list'> Data: ['request', 'reset', 'password', 'erp'] processed_text: ['request', 'reset', 'password', 'erp'] list_processed_text: [['request'], ['reset'], ['password'], ['erp']] k: 1423 len: <class 'list'> Data: ['usa', 'backup', 'exec', 'server', 'rgtsm', 'filed', 'raid', 'hdd', 'physical', 'disk', 'usa', 'backup', 'exec', 'server', 'rgtsm', 'filed', 'raid', 'hdd', 'physical', 'disk'] processed_text: ['usa', 'backup', 'exec', 'server', 'rgtsm', 'filed', 'raid', 'hdd', 'physical', 'disk', 'usa', 'backup', 'exec', 'server', 'rgtsm', 'filed', 'raid', 'hdd', 'physical', 'disk'] list_processed_text: [['usa'], ['backup'], ['exec'], ['server'], ['rgtsm'], ['filed'], ['raid'], ['hdd'], ['physical'], ['disk'], ['usa'], ['backup'], ['exec'], ['server'], ['rgtsm'], ['filed'], ['raid'], ['hdd'], ['physical'], ['disk']] k: 1424 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'mobile', 'device', 'activation', 'unable', 'open', 'outlook', 'mobile', 'device', 'activation'] processed_text: ['unable', 'open', 'outlook', 'mobile', 'device', 'activation', 'unable', 'open', 'outlook', 'mobile', 'device', 'activation'] list_processed_text: [['unable'], ['open'], ['outlook'], ['mobile'], ['device'], ['activation'], ['unable'], ['open'], ['outlook'], ['mobile'], ['device'], ['activation']] k: 1425 len: <class 'list'> Data: ['please', 'reset', 'password', 'sid', 'user', 'id', 'maihtyrhu', 'please', 'reset', 'password', 'sid', 'user', 'id', 'maihtyrhu'] processed_text: ['please', 'reset', 'password', 'sid', 'user', 'id', 'maihtyrhu', 'please', 'reset', 'password', 'sid', 'user', 'id', 'maihtyrhu'] list_processed_text: [['please'], ['reset'], ['password'], ['sid'], ['user'], ['id'], ['maihtyrhu'], ['please'], ['reset'], ['password'], ['sid'], ['user'], ['id'], ['maihtyrhu']] k: 1426 len: <class 'list'> Data: ['user', 'id', 'password', 'fail', 'dear', 'sir', 'one', 'apprentice', 'mr', 'suniythulkuujmar', 'nk', 'unable', 'view', 'salary', 'statement', 'due', 'user', 'id', 'password', 'fail', 'pl', 'help', 'recover', 'old', 'id', 'vvkhyhums', 'old', 'password', 'dhadwuz'] processed_text: ['user', 'id', 'password', 'fail', 'dear', 'sir', 'one', 'apprentice', 'mr', 'suniythulkuujmar', 'nk', 'unable', 'view', 'salary', 'statement', 'due', 'user', 'id', 'password', 'fail', 'pl', 'help', 'recover', 'old', 'id', 'vvkhyhums', 'old', 'password', 'dhadwuz'] list_processed_text: [['user'], ['id'], ['password'], ['fail'], ['dear'], ['sir'], ['one'], ['apprentice'], ['mr'], ['suniythulkuujmar'], ['nk'], ['unable'], ['view'], ['salary'], ['statement'], ['due'], ['user'], ['id'], ['password'], ['fail'], ['pl'], ['help'], ['recover'], ['old'], ['id'], ['vvkhyhums'], ['old'], ['password'], ['dhadwuz']] k: 1427 len: <class 'list'> Data: ['phone', 'defective', 'phone', 'defective'] processed_text: ['phone', 'defective', 'phone', 'defective'] list_processed_text: [['phone'], ['defective'], ['phone'], ['defective']] k: 1428 len: <class 'list'> Data: ['invoicing', 'error', 'invoicing', 'error'] processed_text: ['invoicing', 'error', 'invoicing', 'error'] list_processed_text: [['invoicing'], ['error'], ['invoicing'], ['error']] k: 1429 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 1430 len: <class 'list'> Data: ['skype', 'account', 'login', 'problem', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'account', 'login', 'problem', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'ilypdtno', 'mkdfetuq', 'hi', 'facing', 'problem', 'signing', 'skype', 'account', 'dwfiykeo', 'argtxmvcumar', 'please', 'provide', 'id', 'password', 'team', 'viewer', 'ilypdtno', 'mkdfetuq', 'id', 'password', 'dwfiykeo', 'argtxmvcumar', 'working', 'ilypdtno', 'mkdfetuq', 'yup'] processed_text: ['skype', 'account', 'login', 'problem', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'account', 'login', 'problem', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'ilypdtno', 'mkdfetuq', 'hi', 'facing', 'problem', 'signing', 'skype', 'account', 'dwfiykeo', 'argtxmvcumar', 'please', 'provide', 'id', 'password', 'team', 'viewer', 'ilypdtno', 'mkdfetuq', 'id', 'password', 'dwfiykeo', 'argtxmvcumar', 'working', 'ilypdtno', 'mkdfetuq', 'yup'] list_processed_text: [['skype'], ['account'], ['login'], ['problem'], ['name'], ['ilypdtno'], ['mkdfetuq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['skype'], ['account'], ['login'], ['problem'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['ilypdtno'], ['mkdfetuq'], ['hi'], ['facing'], ['problem'], ['signing'], ['skype'], ['account'], ['dwfiykeo'], ['argtxmvcumar'], ['please'], ['provide'], ['id'], ['password'], ['team'], ['viewer'], ['ilypdtno'], ['mkdfetuq'], ['id'], ['password'], ['dwfiykeo'], ['argtxmvcumar'], ['working'], ['ilypdtno'], ['mkdfetuq'], ['yup']] k: 1431 len: <class 'list'> Data: ['plm', 'service', 'reporting', 'status', 'hostname', 'plm', 'service', 'reporting', 'status', 'hostname'] processed_text: ['plm', 'service', 'reporting', 'status', 'hostname', 'plm', 'service', 'reporting', 'status', 'hostname'] list_processed_text: [['plm'], ['service'], ['reporting'], ['status'], ['hostname'], ['plm'], ['service'], ['reporting'], ['status'], ['hostname']] k: 1432 len: <class 'list'> Data: ['monitor', 'tauschen', 'dhoalycb', 'yopvwrjq', 'monitor', 'tauschen', 'dhoalycb', 'yopvwrjq'] processed_text: ['monitor', 'tauschen', 'dhoalycb', 'yopvwrjq', 'monitor', 'tauschen', 'dhoalycb', 'yopvwrjq'] list_processed_text: [['monitor'], ['tauschen'], ['dhoalycb'], ['yopvwrjq'], ['monitor'], ['tauschen'], ['dhoalycb'], ['yopvwrjq']] k: 1433 len: <class 'list'> Data: ['password', 'getting', 'synchronized', 'password', 'getting', 'synchronized'] processed_text: ['password', 'getting', 'synchronized', 'password', 'getting', 'synchronized'] list_processed_text: [['password'], ['getting'], ['synchronized'], ['password'], ['getting'], ['synchronized']] k: 1434 len: <class 'list'> Data: ['unable', 'login', 'ethic', 'hello', 'company', 'apac', 'company', 'location', 'many', 'user', 'receive', 'email', 'ethic', 'training', 'fy', 'completed', 'ethic', 'training', 'fy', 'found', 'log', 'ethic', 'displayed', 'hint', 'please', 'help', 'u', 'change', 'user', 'ethic', 'status', 'back', 'correct', 'setting'] processed_text: ['unable', 'login', 'ethic', 'hello', 'company', 'apac', 'company', 'location', 'many', 'user', 'receive', 'email', 'ethic', 'training', 'fy', 'completed', 'ethic', 'training', 'fy', 'found', 'log', 'ethic', 'displayed', 'hint', 'please', 'help', 'u', 'change', 'user', 'ethic', 'status', 'back', 'correct', 'setting'] list_processed_text: [['unable'], ['login'], ['ethic'], ['hello'], ['company'], ['apac'], ['company'], ['location'], ['many'], ['user'], ['receive'], ['email'], ['ethic'], ['training'], ['fy'], ['completed'], ['ethic'], ['training'], ['fy'], ['found'], ['log'], ['ethic'], ['displayed'], ['hint'], ['please'], ['help'], ['u'], ['change'], ['user'], ['ethic'], ['status'], ['back'], ['correct'], ['setting']] k: 1435 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'mpls', 'rtr', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'mpls', 'rtr', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['mpls'], ['rtr'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1436 len: <class 'list'> Data: ['install', 'office', 'ewel', 'qidgvtwa', 'qvbutayx', 'install', 'office', 'ewel', 'qidgvtwa', 'qvbutayx'] processed_text: ['install', 'office', 'ewel', 'qidgvtwa', 'qvbutayx', 'install', 'office', 'ewel', 'qidgvtwa', 'qvbutayx'] list_processed_text: [['install'], ['office'], ['ewel'], ['qidgvtwa'], ['qvbutayx'], ['install'], ['office'], ['ewel'], ['qidgvtwa'], ['qvbutayx']] k: 1437 len: <class 'list'> Data: ['quote', 'save', 'material', 'creation', 'process', 'configured', 'item', 'quoting', 'engine', 'broken', 'quote', 'save', 'erp', 'sid', 'broken', 'configured', 'item', 'erp', 'vc', 'quoting', 'engine', 'generates', 'error', 'message', 'line', 'item', 'specify', 'positive', 'value', 'seems', 'change', 'erp', 'sid', 'yesterday', 'pm', 'est', 'server', 'time', 'noticed', 'break', 'material', 'number', 'sequence', 'mm', 'younger', 'exists', 'sid', 'neither', 'sid', 'sid'] processed_text: ['quote', 'save', 'material', 'creation', 'process', 'configured', 'item', 'quoting', 'engine', 'broken', 'quote', 'save', 'erp', 'sid', 'broken', 'configured', 'item', 'erp', 'vc', 'quoting', 'engine', 'generates', 'error', 'message', 'line', 'item', 'specify', 'positive', 'value', 'seems', 'change', 'erp', 'sid', 'yesterday', 'pm', 'est', 'server', 'time', 'noticed', 'break', 'material', 'number', 'sequence', 'mm', 'younger', 'exists', 'sid', 'neither', 'sid', 'sid'] list_processed_text: [['quote'], ['save'], ['material'], ['creation'], ['process'], ['configured'], ['item'], ['quoting'], ['engine'], ['broken'], ['quote'], ['save'], ['erp'], ['sid'], ['broken'], ['configured'], ['item'], ['erp'], ['vc'], ['quoting'], ['engine'], ['generates'], ['error'], ['message'], ['line'], ['item'], ['specify'], ['positive'], ['value'], ['seems'], ['change'], ['erp'], ['sid'], ['yesterday'], ['pm'], ['est'], ['server'], ['time'], ['noticed'], ['break'], ['material'], ['number'], ['sequence'], ['mm'], ['younger'], ['exists'], ['sid'], ['neither'], ['sid'], ['sid']] k: 1438 len: <class 'list'> Data: ['setup', 'new', 'w', 'batuhan', 'gueduel', 'setup', 'new', 'w', 'batuhan', 'gueduel'] processed_text: ['setup', 'new', 'w', 'batuhan', 'gueduel', 'setup', 'new', 'w', 'batuhan', 'gueduel'] list_processed_text: [['setup'], ['new'], ['w'], ['batuhan'], ['gueduel'], ['setup'], ['new'], ['w'], ['batuhan'], ['gueduel']] k: 1439 len: <class 'list'> Data: ['setup', 'new', 'w', 'szockfpj', 'izohlgcq', 'setup', 'new', 'w', 'szockfpj', 'izohlgcq'] processed_text: ['setup', 'new', 'w', 'szockfpj', 'izohlgcq', 'setup', 'new', 'w', 'szockfpj', 'izohlgcq'] list_processed_text: [['setup'], ['new'], ['w'], ['szockfpj'], ['izohlgcq'], ['setup'], ['new'], ['w'], ['szockfpj'], ['izohlgcq']] k: 1440 len: <class 'list'> Data: ['setup', 'new', 'w', 'qdztknml', 'hpcxnyrq', 'setup', 'new', 'w', 'qdztknml', 'hpcxnyrq'] processed_text: ['setup', 'new', 'w', 'qdztknml', 'hpcxnyrq', 'setup', 'new', 'w', 'qdztknml', 'hpcxnyrq'] list_processed_text: [['setup'], ['new'], ['w'], ['qdztknml'], ['hpcxnyrq'], ['setup'], ['new'], ['w'], ['qdztknml'], ['hpcxnyrq']] k: 1441 len: <class 'list'> Data: ['reporting', 'tool', 'dashbankrd', 'appearing', 'crm', 'page', 'hello', 'though', 'connected', 'reporting', 'engineering', 'tool', 'shown', 'xfdkwusj', 'gyklresa', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'south', 'please', 'note', 'new', 'telephone', 'number', 'company', 'address', 'effective', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq'] processed_text: ['reporting', 'tool', 'dashbankrd', 'appearing', 'crm', 'page', 'hello', 'though', 'connected', 'reporting', 'engineering', 'tool', 'shown', 'xfdkwusj', 'gyklresa', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'south', 'please', 'note', 'new', 'telephone', 'number', 'company', 'address', 'effective', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq'] list_processed_text: [['reporting'], ['tool'], ['dashbankrd'], ['appearing'], ['crm'], ['page'], ['hello'], ['though'], ['connected'], ['reporting'], ['engineering'], ['tool'], ['shown'], ['xfdkwusj'], ['gyklresa'], ['sale'], ['manager'], ['earthwork'], ['european'], ['served'], ['area'], ['south'], ['please'], ['note'], ['new'], ['telephone'], ['number'], ['company'], ['address'], ['effective'], ['company'], ['infrastructure'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['und'], ['naruedlk'], ['mpvhakdq']] k: 1442 len: <class 'list'> Data: ['cannot', 'add', 'lean', 'event', 'cannot', 'launch', 'add', 'lean', 'event', 'icon', 'collaboration', 'platform', 'request', 'install', 'microsoft', 'version', 'attached', 'error', 'reference'] processed_text: ['cannot', 'add', 'lean', 'event', 'cannot', 'launch', 'add', 'lean', 'event', 'icon', 'collaboration', 'platform', 'request', 'install', 'microsoft', 'version', 'attached', 'error', 'reference'] list_processed_text: [['cannot'], ['add'], ['lean'], ['event'], ['cannot'], ['launch'], ['add'], ['lean'], ['event'], ['icon'], ['collaboration'], ['platform'], ['request'], ['install'], ['microsoft'], ['version'], ['attached'], ['error'], ['reference']] k: 1443 len: <class 'list'> Data: ['restore', 'account', 'access', 'dyqekzuc', 'djhznybt', 'urgently', 'dyqekzuc', 'djhznybt', 'sits', 'next', 'longer', 'open', 'account', 'many', 'gr', 'best'] processed_text: ['restore', 'account', 'access', 'dyqekzuc', 'djhznybt', 'urgently', 'dyqekzuc', 'djhznybt', 'sits', 'next', 'longer', 'open', 'account', 'many', 'gr', 'best'] list_processed_text: [['restore'], ['account'], ['access'], ['dyqekzuc'], ['djhznybt'], ['urgently'], ['dyqekzuc'], ['djhznybt'], ['sits'], ['next'], ['longer'], ['open'], ['account'], ['many'], ['gr'], ['best']] k: 1444 len: <class 'list'> Data: ['problem', 'laptop', 'latitude', 'dear', 'sir', 'got', 'multiple', 'problem', 'laptop', 'instant', 'shaking', 'screen', 'mail', 'month', 'cannot', 'seen', 'unless', 'refreshed', 'slow', 'processing', 'please', 'needful', 'get', 'prom'] processed_text: ['problem', 'laptop', 'latitude', 'dear', 'sir', 'got', 'multiple', 'problem', 'laptop', 'instant', 'shaking', 'screen', 'mail', 'month', 'cannot', 'seen', 'unless', 'refreshed', 'slow', 'processing', 'please', 'needful', 'get', 'prom'] list_processed_text: [['problem'], ['laptop'], ['latitude'], ['dear'], ['sir'], ['got'], ['multiple'], ['problem'], ['laptop'], ['instant'], ['shaking'], ['screen'], ['mail'], ['month'], ['cannot'], ['seen'], ['unless'], ['refreshed'], ['slow'], ['processing'], ['please'], ['needful'], ['get'], ['prom']] k: 1445 len: <class 'list'> Data: ['reset', 'password', 'imjwbogq', 'xfizlnap', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'daypay'] processed_text: ['reset', 'password', 'imjwbogq', 'xfizlnap', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'daypay'] list_processed_text: [['reset'], ['password'], ['imjwbogq'], ['xfizlnap'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password'], ['daypay']] k: 1446 len: <class 'list'> Data: ['next', 'issue', 'bobj', 'account', 'dbednyuarski', 'hell', 'next', 'issue', 'bob', 'work', 'account', 'best'] processed_text: ['next', 'issue', 'bobj', 'account', 'dbednyuarski', 'hell', 'next', 'issue', 'bob', 'work', 'account', 'best'] list_processed_text: [['next'], ['issue'], ['bobj'], ['account'], ['dbednyuarski'], ['hell'], ['next'], ['issue'], ['bob'], ['work'], ['account'], ['best']] k: 1447 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1448 len: <class 'list'> Data: ['outlook', 'freeze', 'crm', 'update', 'outlook', 'freeze', 'crm', 'update'] processed_text: ['outlook', 'freeze', 'crm', 'update', 'outlook', 'freeze', 'crm', 'update'] list_processed_text: [['outlook'], ['freeze'], ['crm'], ['update'], ['outlook'], ['freeze'], ['crm'], ['update']] k: 1449 len: <class 'list'> Data: ['problem', 'display', 'open', 'email', 'hello', 'time', 'open', 'email', 'displayed', 'outlook', 'always', 'press', 'blue', 'highlighted', 'field', 'see', 'emails,', 'possible', 'connection', 'exchange', 'server', 'always', 'case', 'please', 'set', 'accordingly', 'always', 'read', 'emails,', 'best', 'regard'] processed_text: ['problem', 'display', 'open', 'email', 'hello', 'time', 'open', 'email', 'displayed', 'outlook', 'always', 'press', 'blue', 'highlighted', 'field', 'see', 'emails,', 'possible', 'connection', 'exchange', 'server', 'always', 'case', 'please', 'set', 'accordingly', 'always', 'read', 'emails,', 'best', 'regard'] list_processed_text: [['problem'], ['display'], ['open'], ['email'], ['hello'], ['time'], ['open'], ['email'], ['displayed'], ['outlook'], ['always'], ['press'], ['blue'], ['highlighted'], ['field'], ['see'], ['emails,'], ['possible'], ['connection'], ['exchange'], ['server'], ['always'], ['case'], ['please'], ['set'], ['accordingly'], ['always'], ['read'], ['emails,'], ['best'], ['regard']] k: 1450 len: <class 'list'> Data: ['telephony', 'software', 'issue', 'bad', 'quality', 'sound', 'horrible', 'customer', 'hard', 'understand', 'asked', 'whether', 'issue', 'side', 'line', 'said'] processed_text: ['telephony', 'software', 'issue', 'bad', 'quality', 'sound', 'horrible', 'customer', 'hard', 'understand', 'asked', 'whether', 'issue', 'side', 'line', 'said'] list_processed_text: [['telephony'], ['software'], ['issue'], ['bad'], ['quality'], ['sound'], ['horrible'], ['customer'], ['hard'], ['understand'], ['asked'], ['whether'], ['issue'], ['side'], ['line'], ['said']] k: 1451 len: <class 'list'> Data: ['engineering', 'tool', 'erp', 'working', 'engineering', 'tool', 'erp', 'working'] processed_text: ['engineering', 'tool', 'erp', 'working', 'engineering', 'tool', 'erp', 'working'] list_processed_text: [['engineering'], ['tool'], ['erp'], ['working'], ['engineering'], ['tool'], ['erp'], ['working']] k: 1452 len: <class 'list'> Data: ['need', 'help', 'resetting', 'password', 'password', 'management', 'tool', 'need', 'help', 'resetting', 'password', 'password', 'management', 'tool'] processed_text: ['need', 'help', 'resetting', 'password', 'password', 'management', 'tool', 'need', 'help', 'resetting', 'password', 'password', 'management', 'tool'] list_processed_text: [['need'], ['help'], ['resetting'], ['password'], ['password'], ['management'], ['tool'], ['need'], ['help'], ['resetting'], ['password'], ['password'], ['management'], ['tool']] k: 1453 len: <class 'list'> Data: ['need', 'extra', 'awb', 'copy', 'vendor', 'hi', 'team', 'kindly', 'please', 'assist', 'need', 'extra', 'mother', 'awb', 'copy', 'closing', 'shipment', 'vendor', 'carrier', 'audit', 'purpose'] processed_text: ['need', 'extra', 'awb', 'copy', 'vendor', 'hi', 'team', 'kindly', 'please', 'assist', 'need', 'extra', 'mother', 'awb', 'copy', 'closing', 'shipment', 'vendor', 'carrier', 'audit', 'purpose'] list_processed_text: [['need'], ['extra'], ['awb'], ['copy'], ['vendor'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['need'], ['extra'], ['mother'], ['awb'], ['copy'], ['closing'], ['shipment'], ['vendor'], ['carrier'], ['audit'], ['purpose']] k: 1454 len: <class 'list'> Data: ['www', 'company', 'com', 'www', 'company', 'com', 'showing', 'monitoring', 'tool', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'www', 'company', 'com', 'reporting', 'status', 'ec', 'compute', 'amazonaws', 'com', 'please', 'investigate', 'www', 'company', 'com', 'reporting', 'status', 'ec', 'compute', 'amazonaws', 'com', 'please', 'investigate'] processed_text: ['www', 'company', 'com', 'www', 'company', 'com', 'showing', 'monitoring', 'tool', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'www', 'company', 'com', 'reporting', 'status', 'ec', 'compute', 'amazonaws', 'com', 'please', 'investigate', 'www', 'company', 'com', 'reporting', 'status', 'ec', 'compute', 'amazonaws', 'com', 'please', 'investigate'] list_processed_text: [['www'], ['company'], ['com'], ['www'], ['company'], ['com'], ['showing'], ['monitoring'], ['tool'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['et'], ['www'], ['company'], ['com'], ['reporting'], ['status'], ['ec'], ['compute'], ['amazonaws'], ['com'], ['please'], ['investigate'], ['www'], ['company'], ['com'], ['reporting'], ['status'], ['ec'], ['compute'], ['amazonaws'], ['com'], ['please'], ['investigate']] k: 1455 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 1456 len: <class 'list'> Data: ['standby', 'laptop', 'mcae', 'course', 'day', 'dear', 'saravthsyana', 'need', 'standby', 'laptop', 'hall', 'day', 'mcae', 'course', 'microsoft', 'office', 'adobe', 'reader', 'vlc', 'run', 'show', 'please', 'make', 'ready', 'today', 'collect', 'morning', 'dept', 'thanking'] processed_text: ['standby', 'laptop', 'mcae', 'course', 'day', 'dear', 'saravthsyana', 'need', 'standby', 'laptop', 'hall', 'day', 'mcae', 'course', 'microsoft', 'office', 'adobe', 'reader', 'vlc', 'run', 'show', 'please', 'make', 'ready', 'today', 'collect', 'morning', 'dept', 'thanking'] list_processed_text: [['standby'], ['laptop'], ['mcae'], ['course'], ['day'], ['dear'], ['saravthsyana'], ['need'], ['standby'], ['laptop'], ['hall'], ['day'], ['mcae'], ['course'], ['microsoft'], ['office'], ['adobe'], ['reader'], ['vlc'], ['run'], ['show'], ['please'], ['make'], ['ready'], ['today'], ['collect'], ['morning'], ['dept'], ['thanking']] k: 1457 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1458 len: <class 'list'> Data: ['erp', 'working', 'slow', 'hello', 'erp', 'working', 'slow', 'since', 'yesterday', 'morning', 'action', 'taken', 'yet', 'please', 'raise', 'sev', 'ticket', 'arrange', 'resolve', 'issue', 'immediately', 'booking', 'order', 'resolving', 'customer', 'query', 'getting', 'delayed', 'due', 'await', 'immediate', 'feedback'] processed_text: ['erp', 'working', 'slow', 'hello', 'erp', 'working', 'slow', 'since', 'yesterday', 'morning', 'action', 'taken', 'yet', 'please', 'raise', 'sev', 'ticket', 'arrange', 'resolve', 'issue', 'immediately', 'booking', 'order', 'resolving', 'customer', 'query', 'getting', 'delayed', 'due', 'await', 'immediate', 'feedback'] list_processed_text: [['erp'], ['working'], ['slow'], ['hello'], ['erp'], ['working'], ['slow'], ['since'], ['yesterday'], ['morning'], ['action'], ['taken'], ['yet'], ['please'], ['raise'], ['sev'], ['ticket'], ['arrange'], ['resolve'], ['issue'], ['immediately'], ['booking'], ['order'], ['resolving'], ['customer'], ['query'], ['getting'], ['delayed'], ['due'], ['await'], ['immediate'], ['feedback']] k: 1459 len: <class 'list'> Data: ['business', 'client', 'authorisation', 'hello', 'pl', 'provide', 'business', 'client', 'authorization', 'checking', 'downloading', 'drawing', 'employee', 'id'] processed_text: ['business', 'client', 'authorisation', 'hello', 'pl', 'provide', 'business', 'client', 'authorization', 'checking', 'downloading', 'drawing', 'employee', 'id'] list_processed_text: [['business'], ['client'], ['authorisation'], ['hello'], ['pl'], ['provide'], ['business'], ['client'], ['authorization'], ['checking'], ['downloading'], ['drawing'], ['employee'], ['id']] k: 1460 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1461 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 1462 len: <class 'list'> Data: ['error', 'sto', 'plant', 'plant', 'creating', 'sto', 'return', 'complained', 'good', 'plant', 'plant', 'found', 'error', 'message', 'please', 'help', 'fixing', 'issue', 'advise', 'back', 'u', 'aerp'] processed_text: ['error', 'sto', 'plant', 'plant', 'creating', 'sto', 'return', 'complained', 'good', 'plant', 'plant', 'found', 'error', 'message', 'please', 'help', 'fixing', 'issue', 'advise', 'back', 'u', 'aerp'] list_processed_text: [['error'], ['sto'], ['plant'], ['plant'], ['creating'], ['sto'], ['return'], ['complained'], ['good'], ['plant'], ['plant'], ['found'], ['error'], ['message'], ['please'], ['help'], ['fixing'], ['issue'], ['advise'], ['back'], ['u'], ['aerp']] k: 1463 len: <class 'list'> Data: ['condition', 'type', 'hello', 'team', 'able', 'change', 'condition', 'type', 'po', 'please', 'check', 'advise'] processed_text: ['condition', 'type', 'hello', 'team', 'able', 'change', 'condition', 'type', 'po', 'please', 'check', 'advise'] list_processed_text: [['condition'], ['type'], ['hello'], ['team'], ['able'], ['change'], ['condition'], ['type'], ['po'], ['please'], ['check'], ['advise']] k: 1464 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 1465 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1466 len: <class 'list'> Data: ['show', 'text', 'written', 'email', 'quarantined', 'show', 'text', 'written', 'email', 'quarantined', 'uisewznr', 'ewtmkphs', 'nwfodmhc', 'exurcwkm', 'fw', 'notification', 'fwd', 'needed', 'material', 'drawing', 'hi', 'team', 'please', 'show', 'text', 'written', 'email', 'quarantined'] processed_text: ['show', 'text', 'written', 'email', 'quarantined', 'show', 'text', 'written', 'email', 'quarantined', 'uisewznr', 'ewtmkphs', 'nwfodmhc', 'exurcwkm', 'fw', 'notification', 'fwd', 'needed', 'material', 'drawing', 'hi', 'team', 'please', 'show', 'text', 'written', 'email', 'quarantined'] list_processed_text: [['show'], ['text'], ['written'], ['email'], ['quarantined'], ['show'], ['text'], ['written'], ['email'], ['quarantined'], ['uisewznr'], ['ewtmkphs'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['notification'], ['fwd'], ['needed'], ['material'], ['drawing'], ['hi'], ['team'], ['please'], ['show'], ['text'], ['written'], ['email'], ['quarantined']] k: 1467 len: <class 'list'> Data: ['unable', 'submit', 'expense', 'report', 'could', 'someone', 'please', 'call', 'tried', 'call', 'keep', 'disconnecting'] processed_text: ['unable', 'submit', 'expense', 'report', 'could', 'someone', 'please', 'call', 'tried', 'call', 'keep', 'disconnecting'] list_processed_text: [['unable'], ['submit'], ['expense'], ['report'], ['could'], ['someone'], ['please'], ['call'], ['tried'], ['call'], ['keep'], ['disconnecting']] k: 1468 len: <class 'list'> Data: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] processed_text: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] list_processed_text: [['unable'], ['install'], ['engineering'], ['tool'], ['unable'], ['install'], ['engineering'], ['tool']] k: 1469 len: <class 'list'> Data: ['order', 'shipped', 'ups', 'ground', 'tjlgzkbp', 'iervwjzg', 'pm', 'nwfodmhc', 'exurcwkm', 'ran', 'fw', 'freight', 'charge', 'cesco', 'inwarehouse', 'tool', 'ref', 'sale', 'doc', 'order', 'shipped', 'ups', 'ground', 'pound', 'shipping', 'verified', 'freight', 'cost', 'ki', 'inwarehouse', 'tool', 'show', 'incorrect', 'please', 'advise', 'system', 'applied', 'much', 'higher', 'incorrect', 'freight', 'charge', 'inwarehouse', 'tool'] processed_text: ['order', 'shipped', 'ups', 'ground', 'tjlgzkbp', 'iervwjzg', 'pm', 'nwfodmhc', 'exurcwkm', 'ran', 'fw', 'freight', 'charge', 'cesco', 'inwarehouse', 'tool', 'ref', 'sale', 'doc', 'order', 'shipped', 'ups', 'ground', 'pound', 'shipping', 'verified', 'freight', 'cost', 'ki', 'inwarehouse', 'tool', 'show', 'incorrect', 'please', 'advise', 'system', 'applied', 'much', 'higher', 'incorrect', 'freight', 'charge', 'inwarehouse', 'tool'] list_processed_text: [['order'], ['shipped'], ['ups'], ['ground'], ['tjlgzkbp'], ['iervwjzg'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['ran'], ['fw'], ['freight'], ['charge'], ['cesco'], ['inwarehouse'], ['tool'], ['ref'], ['sale'], ['doc'], ['order'], ['shipped'], ['ups'], ['ground'], ['pound'], ['shipping'], ['verified'], ['freight'], ['cost'], ['ki'], ['inwarehouse'], ['tool'], ['show'], ['incorrect'], ['please'], ['advise'], ['system'], ['applied'], ['much'], ['higher'], ['incorrect'], ['freight'], ['charge'], ['inwarehouse'], ['tool']] k: 1470 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1471 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1472 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1473 len: <class 'list'> Data: ['reset', 'password', 'bnoupaki', 'cpeioz', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bnoupaki', 'cpeioz', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bnoupaki'], ['cpeioz'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1474 len: <class 'list'> Data: ['impact', 'award', 'email', 'nwqktzlx', 'vnlqkgpb', 'pm', 'nwfodmhc', 'exurcwkm', 'phishing', 'check', 'fw', 'e'] processed_text: ['impact', 'award', 'email', 'nwqktzlx', 'vnlqkgpb', 'pm', 'nwfodmhc', 'exurcwkm', 'phishing', 'check', 'fw', 'e'] list_processed_text: [['impact'], ['award'], ['email'], ['nwqktzlx'], ['vnlqkgpb'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['phishing'], ['check'], ['fw'], ['e']] k: 1475 len: <class 'list'> Data: ['expense', 'report', 'going', 'correct', 'manager', 'expense', 'report', 'going', 'correct', 'manager'] processed_text: ['expense', 'report', 'going', 'correct', 'manager', 'expense', 'report', 'going', 'correct', 'manager'] list_processed_text: [['expense'], ['report'], ['going'], ['correct'], ['manager'], ['expense'], ['report'], ['going'], ['correct'], ['manager']] k: 1476 len: <class 'list'> Data: ['unable', 'sync', 'password', 'account', 'unable', 'sync', 'password', 'account'] processed_text: ['unable', 'sync', 'password', 'account', 'unable', 'sync', 'password', 'account'] list_processed_text: [['unable'], ['sync'], ['password'], ['account'], ['unable'], ['sync'], ['password'], ['account']] k: 1477 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 1478 len: <class 'list'> Data: ['cannot', 'get', 'prtqx', 'print', 'pc', 'rqxw', 'driver', 'load', 'cannot', 'get', 'prtqx', 'print', 'pc', 'rqxw', 'driver', 'load'] processed_text: ['cannot', 'get', 'prtqx', 'print', 'pc', 'rqxw', 'driver', 'load', 'cannot', 'get', 'prtqx', 'print', 'pc', 'rqxw', 'driver', 'load'] list_processed_text: [['cannot'], ['get'], ['prtqx'], ['print'], ['pc'], ['rqxw'], ['driver'], ['load'], ['cannot'], ['get'], ['prtqx'], ['print'], ['pc'], ['rqxw'], ['driver'], ['load']] k: 1479 len: <class 'list'> Data: ['kpm', 'issue', 'ie', 'upgrade', 'ie', 'kpm', 'issue', 'ie', 'upgrade', 'ie'] processed_text: ['kpm', 'issue', 'ie', 'upgrade', 'ie', 'kpm', 'issue', 'ie', 'upgrade', 'ie'] list_processed_text: [['kpm'], ['issue'], ['ie'], ['upgrade'], ['ie'], ['kpm'], ['issue'], ['ie'], ['upgrade'], ['ie']] k: 1480 len: <class 'list'> Data: ['amssm', 'volume', 'disk', 'space', 'consumed', 'amssm', 'volume', 'disk', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['amssm', 'volume', 'disk', 'space', 'consumed', 'amssm', 'volume', 'disk', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['amssm'], ['volume'], ['disk'], ['space'], ['consumed'], ['amssm'], ['volume'], ['disk'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1481 len: <class 'list'> Data: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] processed_text: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['gso'], ['loud'], ['noise'], ['blank'], ['call'], ['gso'], ['loud'], ['noise']] k: 1482 len: <class 'list'> Data: ['erp', 'password', 'reset', 'user', 'kambthryes', 'exlbkpoj', 'vrkoqaje', 'please', 'reset', 'erp', 'password', 'kambthryes', 'exlbkpoj', 'vrkoqaje', 'daypay'] processed_text: ['erp', 'password', 'reset', 'user', 'kambthryes', 'exlbkpoj', 'vrkoqaje', 'please', 'reset', 'erp', 'password', 'kambthryes', 'exlbkpoj', 'vrkoqaje', 'daypay'] list_processed_text: [['erp'], ['password'], ['reset'], ['user'], ['kambthryes'], ['exlbkpoj'], ['vrkoqaje'], ['please'], ['reset'], ['erp'], ['password'], ['kambthryes'], ['exlbkpoj'], ['vrkoqaje'], ['daypay']] k: 1483 len: <class 'list'> Data: ['reset', 'sid', 'password', 'jidhewlg', 'jufskody', 'could', 'please', 'reset', 'password', 'user', 'olthyivectr', 'sid', 'erp', 'company', 'sale', 'manager', 'password', 'working', 'need', 'access', 'due', 'channel', 'partner', 'programdnty'] processed_text: ['reset', 'sid', 'password', 'jidhewlg', 'jufskody', 'could', 'please', 'reset', 'password', 'user', 'olthyivectr', 'sid', 'erp', 'company', 'sale', 'manager', 'password', 'working', 'need', 'access', 'due', 'channel', 'partner', 'programdnty'] list_processed_text: [['reset'], ['sid'], ['password'], ['jidhewlg'], ['jufskody'], ['could'], ['please'], ['reset'], ['password'], ['user'], ['olthyivectr'], ['sid'], ['erp'], ['company'], ['sale'], ['manager'], ['password'], ['working'], ['need'], ['access'], ['due'], ['channel'], ['partner'], ['programdnty']] k: 1484 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1485 len: <class 'list'> Data: ['need', 'verification', 'proper', 'user', 'id', 'xszoedmc', 'gmhkdsnw', 'approval', 'purchasing', 'working', 'properly', 'please', 'verify', 'proper', 'samaccountname', 'ad', 'lowercase', 'rxqtvanc', 'kthqwxvb', 'tegdtyyp', 'ethd', 'yhtheehey', 'shyheehew'] processed_text: ['need', 'verification', 'proper', 'user', 'id', 'xszoedmc', 'gmhkdsnw', 'approval', 'purchasing', 'working', 'properly', 'please', 'verify', 'proper', 'samaccountname', 'ad', 'lowercase', 'rxqtvanc', 'kthqwxvb', 'tegdtyyp', 'ethd', 'yhtheehey', 'shyheehew'] list_processed_text: [['need'], ['verification'], ['proper'], ['user'], ['id'], ['xszoedmc'], ['gmhkdsnw'], ['approval'], ['purchasing'], ['working'], ['properly'], ['please'], ['verify'], ['proper'], ['samaccountname'], ['ad'], ['lowercase'], ['rxqtvanc'], ['kthqwxvb'], ['tegdtyyp'], ['ethd'], ['yhtheehey'], ['shyheehew']] k: 1486 len: <class 'list'> Data: ['outlook', 'issue', 'outlook', 'issue'] processed_text: ['outlook', 'issue', 'outlook', 'issue'] list_processed_text: [['outlook'], ['issue'], ['outlook'], ['issue']] k: 1487 len: <class 'list'> Data: ['lean', 'tracker', 'mithyke', 'tayjuoylor', 'arithel', 'shfsako', 'get', 'error', 'try', 'open', 'add', 'lean', 'event', 'button', 'pc'] processed_text: ['lean', 'tracker', 'mithyke', 'tayjuoylor', 'arithel', 'shfsako', 'get', 'error', 'try', 'open', 'add', 'lean', 'event', 'button', 'pc'] list_processed_text: [['lean'], ['tracker'], ['mithyke'], ['tayjuoylor'], ['arithel'], ['shfsako'], ['get'], ['error'], ['try'], ['open'], ['add'], ['lean'], ['event'], ['button'], ['pc']] k: 1488 len: <class 'list'> Data: ['msd', 'office', 'specifically', 'outlook', 'outlook', 'slow', 'respond', 'manually', 'refresh', 'update'] processed_text: ['msd', 'office', 'specifically', 'outlook', 'outlook', 'slow', 'respond', 'manually', 'refresh', 'update'] list_processed_text: [['msd'], ['office'], ['specifically'], ['outlook'], ['outlook'], ['slow'], ['respond'], ['manually'], ['refresh'], ['update']] k: 1489 len: <class 'list'> Data: ['home', 'folder', 'share', 'delegation', 'dtheb', 'mulhylen', 'mullthyed', 'lpoebzsc', 'grknswyo', 'marthhty', 'vip', 'please', 'usa', 'user', 'access', 'dtheb', 'mulhylen', 'drive', 'full', 'access', 'name', 'lpoebzsc', 'grknswyo', 'email', 'telephone', 'summary', 'know', 'dtheb', 'mulhylen', 'retiring', 'company', 'please', 'usa', 'access', 'drive', 'full', 'access'] processed_text: ['home', 'folder', 'share', 'delegation', 'dtheb', 'mulhylen', 'mullthyed', 'lpoebzsc', 'grknswyo', 'marthhty', 'vip', 'please', 'usa', 'user', 'access', 'dtheb', 'mulhylen', 'drive', 'full', 'access', 'name', 'lpoebzsc', 'grknswyo', 'email', 'telephone', 'summary', 'know', 'dtheb', 'mulhylen', 'retiring', 'company', 'please', 'usa', 'access', 'drive', 'full', 'access'] list_processed_text: [['home'], ['folder'], ['share'], ['delegation'], ['dtheb'], ['mulhylen'], ['mullthyed'], ['lpoebzsc'], ['grknswyo'], ['marthhty'], ['vip'], ['please'], ['usa'], ['user'], ['access'], ['dtheb'], ['mulhylen'], ['drive'], ['full'], ['access'], ['name'], ['lpoebzsc'], ['grknswyo'], ['email'], ['telephone'], ['summary'], ['know'], ['dtheb'], ['mulhylen'], ['retiring'], ['company'], ['please'], ['usa'], ['access'], ['drive'], ['full'], ['access']] k: 1490 len: <class 'list'> Data: ['re', 'ticket', 'register', 'ie', 'rj', 'tax', 'code', 'erp', 'sid', 'hi', 'already', 'approved', 'email', 'hear', 'nothing', 'could', 'please', 'verify', 'status', 'urgency', 'south', 'amerirtca'] processed_text: ['re', 'ticket', 'register', 'ie', 'rj', 'tax', 'code', 'erp', 'sid', 'hi', 'already', 'approved', 'email', 'hear', 'nothing', 'could', 'please', 'verify', 'status', 'urgency', 'south', 'amerirtca'] list_processed_text: [['re'], ['ticket'], ['register'], ['ie'], ['rj'], ['tax'], ['code'], ['erp'], ['sid'], ['hi'], ['already'], ['approved'], ['email'], ['hear'], ['nothing'], ['could'], ['please'], ['verify'], ['status'], ['urgency'], ['south'], ['amerirtca']] k: 1491 len: <class 'list'> Data: ['cannot', 'download', 'print', 'drawing', 'erp', 'netweaver', 'summary', 'hello', 'cannot', 'download', 'print', 'drawing', 'erp', 'netweaver'] processed_text: ['cannot', 'download', 'print', 'drawing', 'erp', 'netweaver', 'summary', 'hello', 'cannot', 'download', 'print', 'drawing', 'erp', 'netweaver'] list_processed_text: [['cannot'], ['download'], ['print'], ['drawing'], ['erp'], ['netweaver'], ['summary'], ['hello'], ['cannot'], ['download'], ['print'], ['drawing'], ['erp'], ['netweaver']] k: 1492 len: <class 'list'> Data: ['outlook', 'updating', 'crashing', 'intermittently', 'outlook', 'updating', 'crashing', 'intermittently'] processed_text: ['outlook', 'updating', 'crashing', 'intermittently', 'outlook', 'updating', 'crashing', 'intermittently'] list_processed_text: [['outlook'], ['updating'], ['crashing'], ['intermittently'], ['outlook'], ['updating'], ['crashing'], ['intermittently']] k: 1493 len: <class 'list'> Data: ['hostname', 'dev', 'sid', 'dataa', 'space', 'used', 'hostname', 'dev', 'sid', 'dataa', 'space', 'used', 'hostname', 'dev', 'sid', 'dataa', 'space', 'used'] processed_text: ['hostname', 'dev', 'sid', 'dataa', 'space', 'used', 'hostname', 'dev', 'sid', 'dataa', 'space', 'used', 'hostname', 'dev', 'sid', 'dataa', 'space', 'used'] list_processed_text: [['hostname'], ['dev'], ['sid'], ['dataa'], ['space'], ['used'], ['hostname'], ['dev'], ['sid'], ['dataa'], ['space'], ['used'], ['hostname'], ['dev'], ['sid'], ['dataa'], ['space'], ['used']] k: 1494 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1495 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'sbgvrncj', 'idfhtoqv', 'pm', 'przcxbml', 'vnjdghui', 'nwfodmhc', 'exurcwkm', 'jywvemun', 'qngschtz', 'synchronization', 'iphone', 'outlook', 'hi', 'thsgy', 'yes', 'option', 'available', 'gso', 'please', 'open', 'ticket', 'approve', 'many'] processed_text: ['mobile', 'device', 'activation', 'sbgvrncj', 'idfhtoqv', 'pm', 'przcxbml', 'vnjdghui', 'nwfodmhc', 'exurcwkm', 'jywvemun', 'qngschtz', 'synchronization', 'iphone', 'outlook', 'hi', 'thsgy', 'yes', 'option', 'available', 'gso', 'please', 'open', 'ticket', 'approve', 'many'] list_processed_text: [['mobile'], ['device'], ['activation'], ['sbgvrncj'], ['idfhtoqv'], ['pm'], ['przcxbml'], ['vnjdghui'], ['nwfodmhc'], ['exurcwkm'], ['jywvemun'], ['qngschtz'], ['synchronization'], ['iphone'], ['outlook'], ['hi'], ['thsgy'], ['yes'], ['option'], ['available'], ['gso'], ['please'], ['open'], ['ticket'], ['approve'], ['many']] k: 1496 len: <class 'list'> Data: ['need', 'access', 'assistant', 'programdnty', 'nx', 'need', 'access', 'assistant', 'programdnty', 'nx'] processed_text: ['need', 'access', 'assistant', 'programdnty', 'nx', 'need', 'access', 'assistant', 'programdnty', 'nx'] list_processed_text: [['need'], ['access'], ['assistant'], ['programdnty'], ['nx'], ['need'], ['access'], ['assistant'], ['programdnty'], ['nx']] k: 1497 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'email', 'address', 'password', 'unable', 'login', 'collaboration', 'platform', 'email', 'address', 'password'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'email', 'address', 'password', 'unable', 'login', 'collaboration', 'platform', 'email', 'address', 'password'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['email'], ['address'], ['password'], ['unable'], ['login'], ['collaboration'], ['platform'], ['email'], ['address'], ['password']] k: 1498 len: <class 'list'> Data: ['email', 'delegation', 'would', 'like', 'todthyd', 'renytrner', 'email', 'forwarded', 'todthyd', 'accepted', 'vsp', 'assuming', 'duty'] processed_text: ['email', 'delegation', 'would', 'like', 'todthyd', 'renytrner', 'email', 'forwarded', 'todthyd', 'accepted', 'vsp', 'assuming', 'duty'] list_processed_text: [['email'], ['delegation'], ['would'], ['like'], ['todthyd'], ['renytrner'], ['email'], ['forwarded'], ['todthyd'], ['accepted'], ['vsp'], ['assuming'], ['duty']] k: 1499 len: <class 'list'> Data: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] processed_text: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] list_processed_text: [['window'], ['account'], ['unlock'], ['window'], ['account'], ['unlock']] k: 1500 len: <class 'list'> Data: ['hpqc', 'initialization', 'error', 'trying', 'access', 'hpqc', 'error', 'initialization', 'failed', 'contract', 'system', 'administrator', 'detail', 'see', 'loader', 'log', 'file', 'failure', 'detail'] processed_text: ['hpqc', 'initialization', 'error', 'trying', 'access', 'hpqc', 'error', 'initialization', 'failed', 'contract', 'system', 'administrator', 'detail', 'see', 'loader', 'log', 'file', 'failure', 'detail'] list_processed_text: [['hpqc'], ['initialization'], ['error'], ['trying'], ['access'], ['hpqc'], ['error'], ['initialization'], ['failed'], ['contract'], ['system'], ['administrator'], ['detail'], ['see'], ['loader'], ['log'], ['file'], ['failure'], ['detail']] k: 1501 len: <class 'list'> Data: ['static', 'issue', 'phone', 'interaction', 'id', 'static', 'issue', 'phone', 'interaction', 'id'] processed_text: ['static', 'issue', 'phone', 'interaction', 'id', 'static', 'issue', 'phone', 'interaction', 'id'] list_processed_text: [['static'], ['issue'], ['phone'], ['interaction'], ['id'], ['static'], ['issue'], ['phone'], ['interaction'], ['id']] k: 1502 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 1503 len: <class 'list'> Data: ['unable', 'access', 'ap', 'remote', 'eu', 'remote', 'na', 'remote', 'fjaqbgnld', 'yukdzwxs', 'try', 'access', 'either', 'one', 'receive', 'message', 'page', 'displayed'] processed_text: ['unable', 'access', 'ap', 'remote', 'eu', 'remote', 'na', 'remote', 'fjaqbgnld', 'yukdzwxs', 'try', 'access', 'either', 'one', 'receive', 'message', 'page', 'displayed'] list_processed_text: [['unable'], ['access'], ['ap'], ['remote'], ['eu'], ['remote'], ['na'], ['remote'], ['fjaqbgnld'], ['yukdzwxs'], ['try'], ['access'], ['either'], ['one'], ['receive'], ['message'], ['page'], ['displayed']] k: 1504 len: <class 'list'> Data: ['engineering', 'tool', 'opening', 'engineering', 'tool', 'opening'] processed_text: ['engineering', 'tool', 'opening', 'engineering', 'tool', 'opening'] list_processed_text: [['engineering'], ['tool'], ['opening'], ['engineering'], ['tool'], ['opening']] k: 1505 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 1506 len: <class 'list'> Data: ['email', 'activation', 'company', 'provided', 'device', 'email', 'activation', 'company', 'provided', 'device'] processed_text: ['email', 'activation', 'company', 'provided', 'device', 'email', 'activation', 'company', 'provided', 'device'] list_processed_text: [['email'], ['activation'], ['company'], ['provided'], ['device'], ['email'], ['activation'], ['company'], ['provided'], ['device']] k: 1507 len: <class 'list'> Data: ['able', 'login', 'hi', 'sir', 'refer', 'screenshot', 'help', 'urgent'] processed_text: ['able', 'login', 'hi', 'sir', 'refer', 'screenshot', 'help', 'urgent'] list_processed_text: [['able'], ['login'], ['hi'], ['sir'], ['refer'], ['screenshot'], ['help'], ['urgent']] k: 1508 len: <class 'list'> Data: ['office', 'asking', 'license', 'key', 'office', 'asking', 'license', 'key'] processed_text: ['office', 'asking', 'license', 'key', 'office', 'asking', 'license', 'key'] list_processed_text: [['office'], ['asking'], ['license'], ['key'], ['office'], ['asking'], ['license'], ['key']] k: 1509 len: <class 'list'> Data: ['erp', 'inbox', 'registered', 'work', 'center', 'nr', 'pe', 'emea', 'fu', 'aerospace', 'group', 'workflow', 'group', 'r', 'visible', 'entered', 'work', 'center', 'pe', 'emea', 'fu', 'aerospace', 'group'] processed_text: ['erp', 'inbox', 'registered', 'work', 'center', 'nr', 'pe', 'emea', 'fu', 'aerospace', 'group', 'workflow', 'group', 'r', 'visible', 'entered', 'work', 'center', 'pe', 'emea', 'fu', 'aerospace', 'group'] list_processed_text: [['erp'], ['inbox'], ['registered'], ['work'], ['center'], ['nr'], ['pe'], ['emea'], ['fu'], ['aerospace'], ['group'], ['workflow'], ['group'], ['r'], ['visible'], ['entered'], ['work'], ['center'], ['pe'], ['emea'], ['fu'], ['aerospace'], ['group']] k: 1510 len: <class 'list'> Data: ['engineering', 'tool', 'company', 'company', 'working', 'engineering', 'tool', 'company', 'company', 'working'] processed_text: ['engineering', 'tool', 'company', 'company', 'working', 'engineering', 'tool', 'company', 'company', 'working'] list_processed_text: [['engineering'], ['tool'], ['company'], ['company'], ['working'], ['engineering'], ['tool'], ['company'], ['company'], ['working']] k: 1511 len: <class 'list'> Data: ['unable', 'save', 'doc', 'drive', 'internet', 'working', 'unable', 'save', 'doc', 'drive', 'internet', 'working'] processed_text: ['unable', 'save', 'doc', 'drive', 'internet', 'working', 'unable', 'save', 'doc', 'drive', 'internet', 'working'] list_processed_text: [['unable'], ['save'], ['doc'], ['drive'], ['internet'], ['working'], ['unable'], ['save'], ['doc'], ['drive'], ['internet'], ['working']] k: 1512 len: <class 'list'> Data: ['unable', 'open', 'excel', 'file', 'collaboration', 'platform', 'name', 'wqxzleky', 'uwjchqor', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'open', 'file', 'collaboration', 'platform', 'get', 'message', 'server', 'responding', 'location', 'file'] processed_text: ['unable', 'open', 'excel', 'file', 'collaboration', 'platform', 'name', 'wqxzleky', 'uwjchqor', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'open', 'file', 'collaboration', 'platform', 'get', 'message', 'server', 'responding', 'location', 'file'] list_processed_text: [['unable'], ['open'], ['excel'], ['file'], ['collaboration'], ['platform'], ['name'], ['wqxzleky'], ['uwjchqor'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['open'], ['file'], ['collaboration'], ['platform'], ['get'], ['message'], ['server'], ['responding'], ['location'], ['file']] k: 1513 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'anira', 'rtr', 'since', 'est', 'site', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'company', 'na', 'usa', 'usa', 'anira', 'rtr', 'since', 'est', 'site', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['company'], ['na'], ['usa'], ['usa'], ['anira'], ['rtr'], ['since'], ['est'], ['site'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1514 len: <class 'list'> Data: ['re', 'ticket', 'register', 'ie', 'rj', 'tax', 'code', 'erp', 'sid', 'hi', 'ramdntyassthywamy', 'status'] processed_text: ['re', 'ticket', 'register', 'ie', 'rj', 'tax', 'code', 'erp', 'sid', 'hi', 'ramdntyassthywamy', 'status'] list_processed_text: [['re'], ['ticket'], ['register'], ['ie'], ['rj'], ['tax'], ['code'], ['erp'], ['sid'], ['hi'], ['ramdntyassthywamy'], ['status']] k: 1515 len: <class 'list'> Data: ['msd', 'crm', 'popup', 'try', 'lunch', 'outlook', 'outlook', 'freezing', 'msd', 'crm', 'popup', 'try', 'lunch', 'outlook', 'outlook', 'freezing'] processed_text: ['msd', 'crm', 'popup', 'try', 'lunch', 'outlook', 'outlook', 'freezing', 'msd', 'crm', 'popup', 'try', 'lunch', 'outlook', 'outlook', 'freezing'] list_processed_text: [['msd'], ['crm'], ['popup'], ['try'], ['lunch'], ['outlook'], ['outlook'], ['freezing'], ['msd'], ['crm'], ['popup'], ['try'], ['lunch'], ['outlook'], ['outlook'], ['freezing']] k: 1516 len: <class 'list'> Data: ['unable', 'edit', 'collaboration', 'platform', 'name', 'budighfl', 'izbxvary', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'telephone', 'summary', 'cannot', 'edit'] processed_text: ['unable', 'edit', 'collaboration', 'platform', 'name', 'budighfl', 'izbxvary', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'telephone', 'summary', 'cannot', 'edit'] list_processed_text: [['unable'], ['edit'], ['collaboration'], ['platform'], ['name'], ['budighfl'], ['izbxvary'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['email'], ['telephone'], ['summary'], ['cannot'], ['edit']] k: 1517 len: <class 'list'> Data: ['m', 'crm', 'email', 'coming', 'outlook', 'm', 'crm', 'email', 'coming', 'outlook'] processed_text: ['m', 'crm', 'email', 'coming', 'outlook', 'm', 'crm', 'email', 'coming', 'outlook'] list_processed_text: [['m'], ['crm'], ['email'], ['coming'], ['outlook'], ['m'], ['crm'], ['email'], ['coming'], ['outlook']] k: 1518 len: <class 'list'> Data: ['unable', 'login', 'ethic', 'unable', 'login', 'ethic'] processed_text: ['unable', 'login', 'ethic', 'unable', 'login', 'ethic'] list_processed_text: [['unable'], ['login'], ['ethic'], ['unable'], ['login'], ['ethic']] k: 1519 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1520 len: <class 'list'> Data: ['secure', 'logon', 'work', 'try', 'initialize', 'secure', 'logon', 'get', 'message', 'username', 'password', 'incorrect', 'logged', 'earlier', 'morning', 'worked', 'fine', 'phone'] processed_text: ['secure', 'logon', 'work', 'try', 'initialize', 'secure', 'logon', 'get', 'message', 'username', 'password', 'incorrect', 'logged', 'earlier', 'morning', 'worked', 'fine', 'phone'] list_processed_text: [['secure'], ['logon'], ['work'], ['try'], ['initialize'], ['secure'], ['logon'], ['get'], ['message'], ['username'], ['password'], ['incorrect'], ['logged'], ['earlier'], ['morning'], ['worked'], ['fine'], ['phone']] k: 1521 len: <class 'list'> Data: ['account', 'locked', 'window', 'account', 'locked', 'window'] processed_text: ['account', 'locked', 'window', 'account', 'locked', 'window'] list_processed_text: [['account'], ['locked'], ['window'], ['account'], ['locked'], ['window']] k: 1522 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1523 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1524 len: <class 'list'> Data: ['ticket', 'query', 'regarding', 'ticket', 'ticket', 'query', 'regarding', 'ticket'] processed_text: ['ticket', 'query', 'regarding', 'ticket', 'ticket', 'query', 'regarding', 'ticket'] list_processed_text: [['ticket'], ['query'], ['regarding'], ['ticket'], ['ticket'], ['query'], ['regarding'], ['ticket']] k: 1525 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 1526 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 1527 len: <class 'list'> Data: ['new', 'iphone', 'getting', 'quaraintined', 'new', 'iphone', 'getting', 'quaraintined'] processed_text: ['new', 'iphone', 'getting', 'quaraintined', 'new', 'iphone', 'getting', 'quaraintined'] list_processed_text: [['new'], ['iphone'], ['getting'], ['quaraintined'], ['new'], ['iphone'], ['getting'], ['quaraintined']] k: 1528 len: <class 'list'> Data: ['issue', 'outlook', 'issue', 'outlook'] processed_text: ['issue', 'outlook', 'issue', 'outlook'] list_processed_text: [['issue'], ['outlook'], ['issue'], ['outlook']] k: 1529 len: <class 'list'> Data: ['need', 'acc', 'link', 'hello', 'need', 'acc', 'report', 'hostname', 'department', 'pubreports', 'fy', 'file', 'hostname', 'department', 'pubreports', 'fy', 'vielen', 'dank', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['need', 'acc', 'link', 'hello', 'need', 'acc', 'report', 'hostname', 'department', 'pubreports', 'fy', 'file', 'hostname', 'department', 'pubreports', 'fy', 'vielen', 'dank', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['need'], ['acc'], ['link'], ['hello'], ['need'], ['acc'], ['report'], ['hostname'], ['department'], ['pubreports'], ['fy'], ['file'], ['hostname'], ['department'], ['pubreports'], ['fy'], ['vielen'], ['dank'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 1530 len: <class 'list'> Data: ['vip', 'outlook', 'freezing', 'vip', 'outlook', 'freezing'] processed_text: ['vip', 'outlook', 'freezing', 'vip', 'outlook', 'freezing'] list_processed_text: [['vip'], ['outlook'], ['freezing'], ['vip'], ['outlook'], ['freezing']] k: 1531 len: <class 'list'> Data: ['account', 'lockout', 'account', 'lockout'] processed_text: ['account', 'lockout', 'account', 'lockout'] list_processed_text: [['account'], ['lockout'], ['account'], ['lockout']] k: 1532 len: <class 'list'> Data: ['please', 'update', 'change', 'user', 'giuliasana', 'byhdderni', 'company', 'com', 'company', 'com', 'change', 'user', 'giuliasana', 'byhdderni', 'company', 'com', 'company', 'com'] processed_text: ['please', 'update', 'change', 'user', 'giuliasana', 'byhdderni', 'company', 'com', 'company', 'com', 'change', 'user', 'giuliasana', 'byhdderni', 'company', 'com', 'company', 'com'] list_processed_text: [['please'], ['update'], ['change'], ['user'], ['giuliasana'], ['byhdderni'], ['company'], ['com'], ['company'], ['com'], ['change'], ['user'], ['giuliasana'], ['byhdderni'], ['company'], ['com'], ['company'], ['com']] k: 1533 len: <class 'list'> Data: ['telephony', 'software', 'phone', 'benelthyux', 'team', 'bad', 'phone', 'connection', 'incomming', 'call', 'lot', 'crackling', 'interruption'] processed_text: ['telephony', 'software', 'phone', 'benelthyux', 'team', 'bad', 'phone', 'connection', 'incomming', 'call', 'lot', 'crackling', 'interruption'] list_processed_text: [['telephony'], ['software'], ['phone'], ['benelthyux'], ['team'], ['bad'], ['phone'], ['connection'], ['incomming'], ['call'], ['lot'], ['crackling'], ['interruption']] k: 1534 len: <class 'list'> Data: ['problem', 'lan', 'computer', 'wu', 'essa', 'wrcktgbd', 'wzrgyunp', 'problem', 'lan', 'computer', 'wu', 'essa', 'wrcktgbd', 'wzrgyunp'] processed_text: ['problem', 'lan', 'computer', 'wu', 'essa', 'wrcktgbd', 'wzrgyunp', 'problem', 'lan', 'computer', 'wu', 'essa', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['problem'], ['lan'], ['computer'], ['wu'], ['essa'], ['wrcktgbd'], ['wzrgyunp'], ['problem'], ['lan'], ['computer'], ['wu'], ['essa'], ['wrcktgbd'], ['wzrgyunp']] k: 1535 len: <class 'list'> Data: ['pdf', 'file', 'open', 'pdf', 'file', 'open'] processed_text: ['pdf', 'file', 'open', 'pdf', 'file', 'open'] list_processed_text: [['pdf'], ['file'], ['open'], ['pdf'], ['file'], ['open']] k: 1536 len: <class 'list'> Data: ['unable', 'print', 'inwarehouse', 'tool', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'reprint', 'inwarehouse', 'tool', 'ec', 'system', 'system', 'show', 'attached', 'without', 'detail', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'changi', 'south', 'lane', 'building', 'apac', 'email'] processed_text: ['unable', 'print', 'inwarehouse', 'tool', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'reprint', 'inwarehouse', 'tool', 'ec', 'system', 'system', 'show', 'attached', 'without', 'detail', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'changi', 'south', 'lane', 'building', 'apac', 'email'] list_processed_text: [['unable'], ['print'], ['inwarehouse'], ['tool'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['reprint'], ['inwarehouse'], ['tool'], ['ec'], ['system'], ['system'], ['show'], ['attached'], ['without'], ['detail'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['asia'], ['regional'], ['distribution'], ['centre'], ['changi'], ['south'], ['lane'], ['building'], ['apac'], ['email']] k: 1537 len: <class 'list'> Data: ['cannot', 'find', 'workgroups', 'telephony', 'software', 'cannot', 'find', 'de', 'fd', 'gso', 'de', 'well', 'de', 'fd', 'gso', 'de', 'telephony', 'software', 'access', 'atleast', 'last', 'week', 'possibly'] processed_text: ['cannot', 'find', 'workgroups', 'telephony', 'software', 'cannot', 'find', 'de', 'fd', 'gso', 'de', 'well', 'de', 'fd', 'gso', 'de', 'telephony', 'software', 'access', 'atleast', 'last', 'week', 'possibly'] list_processed_text: [['cannot'], ['find'], ['workgroups'], ['telephony'], ['software'], ['cannot'], ['find'], ['de'], ['fd'], ['gso'], ['de'], ['well'], ['de'], ['fd'], ['gso'], ['de'], ['telephony'], ['software'], ['access'], ['atleast'], ['last'], ['week'], ['possibly']] k: 1538 len: <class 'list'> Data: ['wireless', 'mouse', 'missing', 'desk', 'wireless', 'mouse', 'missing', 'desk', 'need', 'new', 'replaced', 'wireless', 'mouse'] processed_text: ['wireless', 'mouse', 'missing', 'desk', 'wireless', 'mouse', 'missing', 'desk', 'need', 'new', 'replaced', 'wireless', 'mouse'] list_processed_text: [['wireless'], ['mouse'], ['missing'], ['desk'], ['wireless'], ['mouse'], ['missing'], ['desk'], ['need'], ['new'], ['replaced'], ['wireless'], ['mouse']] k: 1539 len: <class 'list'> Data: ['msd', 'unable', 'sync', 'contact', 'information', 'outlook', 'crm', 'unable', 'sync', 'contact', 'information', 'outlook', 'crm', 'address', 'note', 'field', 'synced', 'crm', 'contact', 'possible', 'put', 'company', 'name', 'customer', 'manually', 'contact', 'number'] processed_text: ['msd', 'unable', 'sync', 'contact', 'information', 'outlook', 'crm', 'unable', 'sync', 'contact', 'information', 'outlook', 'crm', 'address', 'note', 'field', 'synced', 'crm', 'contact', 'possible', 'put', 'company', 'name', 'customer', 'manually', 'contact', 'number'] list_processed_text: [['msd'], ['unable'], ['sync'], ['contact'], ['information'], ['outlook'], ['crm'], ['unable'], ['sync'], ['contact'], ['information'], ['outlook'], ['crm'], ['address'], ['note'], ['field'], ['synced'], ['crm'], ['contact'], ['possible'], ['put'], ['company'], ['name'], ['customer'], ['manually'], ['contact'], ['number']] k: 1540 len: <class 'list'> Data: ['problem', 'portal', 'user', 'gogtyekthyto', 'vzqomdgt', 'jwoqbuml', 'problem', 'portal', 'user', 'gogtyekthyto', 'vzqomdgt', 'jwoqbuml'] processed_text: ['problem', 'portal', 'user', 'gogtyekthyto', 'vzqomdgt', 'jwoqbuml', 'problem', 'portal', 'user', 'gogtyekthyto', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['problem'], ['portal'], ['user'], ['gogtyekthyto'], ['vzqomdgt'], ['jwoqbuml'], ['problem'], ['portal'], ['user'], ['gogtyekthyto'], ['vzqomdgt'], ['jwoqbuml']] k: 1541 len: <class 'list'> Data: ['inc', 'logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'hi', 'stefyty', 'recent', 'moved', 'change', 'improve', 'performance', 'please', 'check', 'still', 'getting', 'issue'] processed_text: ['inc', 'logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'hi', 'stefyty', 'recent', 'moved', 'change', 'improve', 'performance', 'please', 'check', 'still', 'getting', 'issue'] list_processed_text: [['inc'], ['logging'], ['mii'], ['supervisor'], ['dashbankrd'], ['result'], ['error'], ['pop'], ['internal'], ['server'], ['error'], ['hi'], ['stefyty'], ['recent'], ['moved'], ['change'], ['improve'], ['performance'], ['please'], ['check'], ['still'], ['getting'], ['issue']] k: 1542 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1543 len: <class 'list'> Data: ['automatical', 'stock', 'transfer', 'show', 'wrong', 'tool', 'late', 'delivery', 'date', 'route', 'ticket', 'forward', 'supply', 'chain', 'team', 'please', 'hello', 'problem', 'wrong', 'late', 'automaticaly', 'created', 'stock', 'stransfers', 'delivery', 'date', 'late', 'need', 'plant', 'show', 'delivery', 'date', 'nov', 'part', 'available', 'plant', 'dosen', 'show', 'stock', 'transfer', 'wrong', 'delivery', 'date', 'problem', 'issue', 'need', 'solved', 'p'] processed_text: ['automatical', 'stock', 'transfer', 'show', 'wrong', 'tool', 'late', 'delivery', 'date', 'route', 'ticket', 'forward', 'supply', 'chain', 'team', 'please', 'hello', 'problem', 'wrong', 'late', 'automaticaly', 'created', 'stock', 'stransfers', 'delivery', 'date', 'late', 'need', 'plant', 'show', 'delivery', 'date', 'nov', 'part', 'available', 'plant', 'dosen', 'show', 'stock', 'transfer', 'wrong', 'delivery', 'date', 'problem', 'issue', 'need', 'solved', 'p'] list_processed_text: [['automatical'], ['stock'], ['transfer'], ['show'], ['wrong'], ['tool'], ['late'], ['delivery'], ['date'], ['route'], ['ticket'], ['forward'], ['supply'], ['chain'], ['team'], ['please'], ['hello'], ['problem'], ['wrong'], ['late'], ['automaticaly'], ['created'], ['stock'], ['stransfers'], ['delivery'], ['date'], ['late'], ['need'], ['plant'], ['show'], ['delivery'], ['date'], ['nov'], ['part'], ['available'], ['plant'], ['dosen'], ['show'], ['stock'], ['transfer'], ['wrong'], ['delivery'], ['date'], ['problem'], ['issue'], ['need'], ['solved'], ['p']] k: 1544 len: <class 'list'> Data: ['ethic', 'training', 'course', 'hi', 'every', 'quarter', 'course', 'added', 'appear', 'current', 'learning', 'find', 'course', 'name', 'team', 'mate', 'check', 'browse', 'option', 'could', 'please', 'help', 'resolve', 'issue', 'permanently', 'best'] processed_text: ['ethic', 'training', 'course', 'hi', 'every', 'quarter', 'course', 'added', 'appear', 'current', 'learning', 'find', 'course', 'name', 'team', 'mate', 'check', 'browse', 'option', 'could', 'please', 'help', 'resolve', 'issue', 'permanently', 'best'] list_processed_text: [['ethic'], ['training'], ['course'], ['hi'], ['every'], ['quarter'], ['course'], ['added'], ['appear'], ['current'], ['learning'], ['find'], ['course'], ['name'], ['team'], ['mate'], ['check'], ['browse'], ['option'], ['could'], ['please'], ['help'], ['resolve'], ['issue'], ['permanently'], ['best']] k: 1545 len: <class 'list'> Data: ['printer', 'em', 'make', 'random', 'spot', 'printed', 'copy', 'printer', 'em', 'make', 'random', 'spot', 'printed', 'copy'] processed_text: ['printer', 'em', 'make', 'random', 'spot', 'printed', 'copy', 'printer', 'em', 'make', 'random', 'spot', 'printed', 'copy'] list_processed_text: [['printer'], ['em'], ['make'], ['random'], ['spot'], ['printed'], ['copy'], ['printer'], ['em'], ['make'], ['random'], ['spot'], ['printed'], ['copy']] k: 1546 len: <class 'list'> Data: ['company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'power', 'supply', 'issue', 'internal', 'power', 'supply', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'showing', 'faulty', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'sh', 'env', 'fan', 'ok', 'temperature', 'ok', 'power', 'faulty', 'rps', 'present'] processed_text: ['company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'power', 'supply', 'issue', 'internal', 'power', 'supply', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'showing', 'faulty', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'sh', 'env', 'fan', 'ok', 'temperature', 'ok', 'power', 'faulty', 'rps', 'present'] list_processed_text: [['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['office'], ['access'], ['sw'], ['power'], ['supply'], ['issue'], ['internal'], ['power'], ['supply'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['office'], ['access'], ['sw'], ['showing'], ['faulty'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['sh'], ['env'], ['fan'], ['ok'], ['temperature'], ['ok'], ['power'], ['faulty'], ['rps'], ['present']] k: 1547 len: <class 'list'> Data: ['computer', 'check', 'hi', 'please', 'check', 'computer', 'excel', 'run', 'slowly', 'qhyoiwls', 'uynrhiva', 'analyst', 'planning', 'reporting', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'accordance', 'applicable', 'law', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['computer', 'check', 'hi', 'please', 'check', 'computer', 'excel', 'run', 'slowly', 'qhyoiwls', 'uynrhiva', 'analyst', 'planning', 'reporting', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'accordance', 'applicable', 'law', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['computer'], ['check'], ['hi'], ['please'], ['check'], ['computer'], ['excel'], ['run'], ['slowly'], ['qhyoiwls'], ['uynrhiva'], ['analyst'], ['planning'], ['reporting'], ['company'], ['shared'], ['service'], ['gmbh'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['accordance'], ['applicable'], ['law'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['communication'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 1548 len: <class 'list'> Data: ['reset', 'password', 'xaykwtrf', 'amlswjfr', 'erp', 'produktion', 'erp', 'reset', 'password', 'xaykwtrf', 'amlswjfr', 'erp', 'produktion', 'erp'] processed_text: ['reset', 'password', 'xaykwtrf', 'amlswjfr', 'erp', 'produktion', 'erp', 'reset', 'password', 'xaykwtrf', 'amlswjfr', 'erp', 'produktion', 'erp'] list_processed_text: [['reset'], ['password'], ['xaykwtrf'], ['amlswjfr'], ['erp'], ['produktion'], ['erp'], ['reset'], ['password'], ['xaykwtrf'], ['amlswjfr'], ['erp'], ['produktion'], ['erp']] k: 1549 len: <class 'list'> Data: ['problem', 'mit', 'lan', 'youfzmgp', 'xvysrnmb', 'problem', 'mit', 'lan', 'youfzmgp', 'xvysrnmb'] processed_text: ['problem', 'mit', 'lan', 'youfzmgp', 'xvysrnmb', 'problem', 'mit', 'lan', 'youfzmgp', 'xvysrnmb'] list_processed_text: [['problem'], ['mit'], ['lan'], ['youfzmgp'], ['xvysrnmb'], ['problem'], ['mit'], ['lan'], ['youfzmgp'], ['xvysrnmb']] k: 1550 len: <class 'list'> Data: ['vpn', 'connection', 'employee', 'financial', 'name', 'jvxtfhkg', 'heptuizn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'connection', 'employee', 'financial', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'petrghada', 'financial', 'jvxtfhkg', 'heptuizn', 'pethrywr', 'financial', 'dwfiykeo', 'argtxmvcumar', 'ok', 'jvxtfhkg', 'heptuizn', 'call', 'urgent', 'dwfiykeo', 'argtxmvcumar', 'ok', 'jvxtfhkg', 'heptuizn'] processed_text: ['vpn', 'connection', 'employee', 'financial', 'name', 'jvxtfhkg', 'heptuizn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'connection', 'employee', 'financial', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'petrghada', 'financial', 'jvxtfhkg', 'heptuizn', 'pethrywr', 'financial', 'dwfiykeo', 'argtxmvcumar', 'ok', 'jvxtfhkg', 'heptuizn', 'call', 'urgent', 'dwfiykeo', 'argtxmvcumar', 'ok', 'jvxtfhkg', 'heptuizn'] list_processed_text: [['vpn'], ['connection'], ['employee'], ['financial'], ['name'], ['jvxtfhkg'], ['heptuizn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['vpn'], ['connection'], ['employee'], ['financial'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['petrghada'], ['financial'], ['jvxtfhkg'], ['heptuizn'], ['pethrywr'], ['financial'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['jvxtfhkg'], ['heptuizn'], ['call'], ['urgent'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['jvxtfhkg'], ['heptuizn']] k: 1551 len: <class 'list'> Data: ['ticket', 'wireless', 'guest', 'access', 'hr', 'tool', 'trainer', 'hi', 'well', 'received'] processed_text: ['ticket', 'wireless', 'guest', 'access', 'hr', 'tool', 'trainer', 'hi', 'well', 'received'] list_processed_text: [['ticket'], ['wireless'], ['guest'], ['access'], ['hr'], ['tool'], ['trainer'], ['hi'], ['well'], ['received']] k: 1552 len: <class 'list'> Data: ['wifi', 'connection', 'intermittent', 'getting', 'frequently', 'disconnected', 'india', 'wifi', 'connection', 'intermittent', 'getting', 'frequently', 'disconnected', 'india', 'contact', 'intranet', 'getting', 'affected'] processed_text: ['wifi', 'connection', 'intermittent', 'getting', 'frequently', 'disconnected', 'india', 'wifi', 'connection', 'intermittent', 'getting', 'frequently', 'disconnected', 'india', 'contact', 'intranet', 'getting', 'affected'] list_processed_text: [['wifi'], ['connection'], ['intermittent'], ['getting'], ['frequently'], ['disconnected'], ['india'], ['wifi'], ['connection'], ['intermittent'], ['getting'], ['frequently'], ['disconnected'], ['india'], ['contact'], ['intranet'], ['getting'], ['affected']] k: 1553 len: <class 'list'> Data: ['erp', 'reroute', 'production', 'order', 'printer', 'mp', 'mp', 'production', 'order', 'printer', 'mp', 'need', 'routed', 'mp', 'erp', 'system', 'including', 'drawing', 'etc', 'unable', 'find', 'printer', 'mp', 'ticketing', 'tool', 'ad', 'erp', 'print', 'tool', 'rerouted', 'priter', 'name', 'prqmp', 'work'] processed_text: ['erp', 'reroute', 'production', 'order', 'printer', 'mp', 'mp', 'production', 'order', 'printer', 'mp', 'need', 'routed', 'mp', 'erp', 'system', 'including', 'drawing', 'etc', 'unable', 'find', 'printer', 'mp', 'ticketing', 'tool', 'ad', 'erp', 'print', 'tool', 'rerouted', 'priter', 'name', 'prqmp', 'work'] list_processed_text: [['erp'], ['reroute'], ['production'], ['order'], ['printer'], ['mp'], ['mp'], ['production'], ['order'], ['printer'], ['mp'], ['need'], ['routed'], ['mp'], ['erp'], ['system'], ['including'], ['drawing'], ['etc'], ['unable'], ['find'], ['printer'], ['mp'], ['ticketing'], ['tool'], ['ad'], ['erp'], ['print'], ['tool'], ['rerouted'], ['priter'], ['name'], ['prqmp'], ['work']] k: 1554 len: <class 'list'> Data: ['network', 'problem', 'india', 'office', 'telephone', 'summary', 'network', 'problem', 'india', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello'] processed_text: ['network', 'problem', 'india', 'office', 'telephone', 'summary', 'network', 'problem', 'india', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello'] list_processed_text: [['network'], ['problem'], ['india'], ['office'], ['telephone'], ['summary'], ['network'], ['problem'], ['india'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['dwfiykeo'], ['argtxmvcumar'], ['hello']] k: 1555 len: <class 'list'> Data: ['reset', 'password', 'usa', 'feather', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'usa', 'feather', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['usa'], ['feather'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1556 len: <class 'list'> Data: ['missing', 'punch', 'hello', 'punch', 'missing', 'erp', 'employee', 'ended', 'night', 'shift', 'today', 'morning', 'location', 'germany', 'germany', 'machining', 'please', 'help'] processed_text: ['missing', 'punch', 'hello', 'punch', 'missing', 'erp', 'employee', 'ended', 'night', 'shift', 'today', 'morning', 'location', 'germany', 'germany', 'machining', 'please', 'help'] list_processed_text: [['missing'], ['punch'], ['hello'], ['punch'], ['missing'], ['erp'], ['employee'], ['ended'], ['night'], ['shift'], ['today'], ['morning'], ['location'], ['germany'], ['germany'], ['machining'], ['please'], ['help']] k: 1557 len: <class 'list'> Data: ['upgrade', 'pc', 'ramdnty', 'raised', 'ticket', 'upgrade', 'system', 'ramdnty', 'mine', 'upgrade', 'gb', 'assign', 'sridthshar', 'herytur'] processed_text: ['upgrade', 'pc', 'ramdnty', 'raised', 'ticket', 'upgrade', 'system', 'ramdnty', 'mine', 'upgrade', 'gb', 'assign', 'sridthshar', 'herytur'] list_processed_text: [['upgrade'], ['pc'], ['ramdnty'], ['raised'], ['ticket'], ['upgrade'], ['system'], ['ramdnty'], ['mine'], ['upgrade'], ['gb'], ['assign'], ['sridthshar'], ['herytur']] k: 1558 len: <class 'list'> Data: ['ticket', 'wireless', 'guest', 'access', 'hr', 'tool', 'trainer', 'hi', 'please', 'find', 'credential', 'guest', 'access', 'annyhtie', 'zhothu'] processed_text: ['ticket', 'wireless', 'guest', 'access', 'hr', 'tool', 'trainer', 'hi', 'please', 'find', 'credential', 'guest', 'access', 'annyhtie', 'zhothu'] list_processed_text: [['ticket'], ['wireless'], ['guest'], ['access'], ['hr'], ['tool'], ['trainer'], ['hi'], ['please'], ['find'], ['credential'], ['guest'], ['access'], ['annyhtie'], ['zhothu']] k: 1559 len: <class 'list'> Data: ['link', 'open', 'link', 'open'] processed_text: ['link', 'open', 'link', 'open'] list_processed_text: [['link'], ['open'], ['link'], ['open']] k: 1560 len: <class 'list'> Data: ['grir', 'issue', 'plant', 'ice', 'alt', 'route', 'usa', 'email', 'maryhtutina', 'bauuyternfeyt', 'athyndy', 'eartyp', 'review', 'alternate', 'route', 'shipment', 'u', 'warehouse', 'discrepancy', 'posting', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note'] processed_text: ['grir', 'issue', 'plant', 'ice', 'alt', 'route', 'usa', 'email', 'maryhtutina', 'bauuyternfeyt', 'athyndy', 'eartyp', 'review', 'alternate', 'route', 'shipment', 'u', 'warehouse', 'discrepancy', 'posting', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note', 'inwarehouse', 'tool', 'cancelled', 'please', 'cancel', 'gr', 'well', 'delivery', 'note'] list_processed_text: [['grir'], ['issue'], ['plant'], ['ice'], ['alt'], ['route'], ['usa'], ['email'], ['maryhtutina'], ['bauuyternfeyt'], ['athyndy'], ['eartyp'], ['review'], ['alternate'], ['route'], ['shipment'], ['u'], ['warehouse'], ['discrepancy'], ['posting'], ['inwarehouse'], ['tool'], ['cancelled'], ['please'], ['cancel'], ['gr'], ['well'], ['delivery'], ['note'], ['inwarehouse'], ['tool'], ['cancelled'], ['please'], ['cancel'], ['gr'], ['well'], ['delivery'], ['note'], ['inwarehouse'], ['tool'], ['cancelled'], ['please'], ['cancel'], ['gr'], ['well'], ['delivery'], ['note']] k: 1561 len: <class 'list'> Data: ['account', 'blocked', 'hello', 'could', 'help', 'unlock', 'account', 'get'] processed_text: ['account', 'blocked', 'hello', 'could', 'help', 'unlock', 'account', 'get'] list_processed_text: [['account'], ['blocked'], ['hello'], ['could'], ['help'], ['unlock'], ['account'], ['get']] k: 1562 len: <class 'list'> Data: ['data', 'transfer', 'data', 'transfer', 'pc', 'machine', 'like', 'factory', 'plan', 'work', 'center', 'ebm', 'machine', 'pc', 'eemwx', 'programdntym', 'winprodnc', 'contact', 'person', 'wunthyder'] processed_text: ['data', 'transfer', 'data', 'transfer', 'pc', 'machine', 'like', 'factory', 'plan', 'work', 'center', 'ebm', 'machine', 'pc', 'eemwx', 'programdntym', 'winprodnc', 'contact', 'person', 'wunthyder'] list_processed_text: [['data'], ['transfer'], ['data'], ['transfer'], ['pc'], ['machine'], ['like'], ['factory'], ['plan'], ['work'], ['center'], ['ebm'], ['machine'], ['pc'], ['eemwx'], ['programdntym'], ['winprodnc'], ['contact'], ['person'], ['wunthyder']] k: 1563 len: <class 'list'> Data: ['es', 'portal', 'hello', 'unable', 'log', 'bex', 'website', 'es', 'portal', 'please', 'help'] processed_text: ['es', 'portal', 'hello', 'unable', 'log', 'bex', 'website', 'es', 'portal', 'please', 'help'] list_processed_text: [['es'], ['portal'], ['hello'], ['unable'], ['log'], ['bex'], ['website'], ['es'], ['portal'], ['please'], ['help']] k: 1564 len: <class 'list'> Data: ['current', 'learning', 'ethic', 'hi', 'month', 'usually', 'get', 'new', 'ethic', 'training', 'course', 'time', 'receive', 'ethic', 'mail', 'also', 'current', 'learning', 'empty', 'colleague', 'got', 'mail', 'complete', 'course', 'time', 'need', 'complete', 'course'] processed_text: ['current', 'learning', 'ethic', 'hi', 'month', 'usually', 'get', 'new', 'ethic', 'training', 'course', 'time', 'receive', 'ethic', 'mail', 'also', 'current', 'learning', 'empty', 'colleague', 'got', 'mail', 'complete', 'course', 'time', 'need', 'complete', 'course'] list_processed_text: [['current'], ['learning'], ['ethic'], ['hi'], ['month'], ['usually'], ['get'], ['new'], ['ethic'], ['training'], ['course'], ['time'], ['receive'], ['ethic'], ['mail'], ['also'], ['current'], ['learning'], ['empty'], ['colleague'], ['got'], ['mail'], ['complete'], ['course'], ['time'], ['need'], ['complete'], ['course']] k: 1565 len: <class 'list'> Data: ['production', 'order', 'cannot', 'released', 'hello', 'production', 'order', 'cannot', 'released', 'cer', 'active', 'business', 'ta', 'cannot', 'carried', 'please', 'see', 'attached', 'screenshot', 'please', 'solve', 'aerp', 'shipment', 'done', 'today'] processed_text: ['production', 'order', 'cannot', 'released', 'hello', 'production', 'order', 'cannot', 'released', 'cer', 'active', 'business', 'ta', 'cannot', 'carried', 'please', 'see', 'attached', 'screenshot', 'please', 'solve', 'aerp', 'shipment', 'done', 'today'] list_processed_text: [['production'], ['order'], ['cannot'], ['released'], ['hello'], ['production'], ['order'], ['cannot'], ['released'], ['cer'], ['active'], ['business'], ['ta'], ['cannot'], ['carried'], ['please'], ['see'], ['attached'], ['screenshot'], ['please'], ['solve'], ['aerp'], ['shipment'], ['done'], ['today']] k: 1566 len: <class 'list'> Data: ['usa', 'warehouse', 'long', 'distance', 'service', 'mdghayi', 'redytudy', 'zarlgjes', 'nxjvzcta', 'datacenter', 'tiyhum', 'kuyiomar', 'long', 'distance', 'service', 'hello', 'dac', 'alarm', 'one', 'circuit', 'id', 'dhec', 'usa', 'please', 'open', 'ticket', 'global', 'telecom', 'co', 'ordinate'] processed_text: ['usa', 'warehouse', 'long', 'distance', 'service', 'mdghayi', 'redytudy', 'zarlgjes', 'nxjvzcta', 'datacenter', 'tiyhum', 'kuyiomar', 'long', 'distance', 'service', 'hello', 'dac', 'alarm', 'one', 'circuit', 'id', 'dhec', 'usa', 'please', 'open', 'ticket', 'global', 'telecom', 'co', 'ordinate'] list_processed_text: [['usa'], ['warehouse'], ['long'], ['distance'], ['service'], ['mdghayi'], ['redytudy'], ['zarlgjes'], ['nxjvzcta'], ['datacenter'], ['tiyhum'], ['kuyiomar'], ['long'], ['distance'], ['service'], ['hello'], ['dac'], ['alarm'], ['one'], ['circuit'], ['id'], ['dhec'], ['usa'], ['please'], ['open'], ['ticket'], ['global'], ['telecom'], ['co'], ['ordinate']] k: 1567 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 1568 len: <class 'list'> Data: ['payment', 'method', 'change', 'employee', 'vendor', 'gnasmtvx', 'cwxtsvkm', 'pm', 'nathyresh', 'gayhtjula', 'rwuqydvo', 'anecdfps', 'pradyhtueep', 'yyufs', 'apt', 'run', 'hi', 'nathyresh', 'request', 'change', 'payment', 'method', 'instead', 'employee', 'master'] processed_text: ['payment', 'method', 'change', 'employee', 'vendor', 'gnasmtvx', 'cwxtsvkm', 'pm', 'nathyresh', 'gayhtjula', 'rwuqydvo', 'anecdfps', 'pradyhtueep', 'yyufs', 'apt', 'run', 'hi', 'nathyresh', 'request', 'change', 'payment', 'method', 'instead', 'employee', 'master'] list_processed_text: [['payment'], ['method'], ['change'], ['employee'], ['vendor'], ['gnasmtvx'], ['cwxtsvkm'], ['pm'], ['nathyresh'], ['gayhtjula'], ['rwuqydvo'], ['anecdfps'], ['pradyhtueep'], ['yyufs'], ['apt'], ['run'], ['hi'], ['nathyresh'], ['request'], ['change'], ['payment'], ['method'], ['instead'], ['employee'], ['master']] k: 1569 len: <class 'list'> Data: ['anti', 'fmxcnwpu', 'tcwrdqboinition', 'updated', 'long', 'time', 'anti', 'fmxcnwpu', 'tcwrdqboinition', 'updated', 'long', 'time', 'attached', 'screenshot'] processed_text: ['anti', 'fmxcnwpu', 'tcwrdqboinition', 'updated', 'long', 'time', 'anti', 'fmxcnwpu', 'tcwrdqboinition', 'updated', 'long', 'time', 'attached', 'screenshot'] list_processed_text: [['anti'], ['fmxcnwpu'], ['tcwrdqboinition'], ['updated'], ['long'], ['time'], ['anti'], ['fmxcnwpu'], ['tcwrdqboinition'], ['updated'], ['long'], ['time'], ['attached'], ['screenshot']] k: 1570 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1571 len: <class 'list'> Data: ['pricing', 'condition', 'issue', 'oa', 'hello', 'recent', 'past', 'facing', 'issue', 'pricing', 'condition', 'getting', 'changed', 'booking', 'order', 'though', 'override', 'pricing', 'condition', 'znr', 'pricing', 'condition', 'remains', 'zlp', 'example', 'oa', 'price', 'written', 'znr', 'condition', 'nett', 'price', 'r', 'still', 'pricing', 'condition', 'shown', 'zlp', 'standard', 'discount', 'observed', 'whenever', 'sub', 'delivery', 'item', 'created', 'due', 'non', 'availability', 'stock', 'issue', 'crop', 'challan', 'created', 'becomes', 'difficult', 'make', 'change', 'request', 'look', 'immediately', 'assign', 'sev', 'ticket', 'resolve', 'await', 'feedback'] processed_text: ['pricing', 'condition', 'issue', 'oa', 'hello', 'recent', 'past', 'facing', 'issue', 'pricing', 'condition', 'getting', 'changed', 'booking', 'order', 'though', 'override', 'pricing', 'condition', 'znr', 'pricing', 'condition', 'remains', 'zlp', 'example', 'oa', 'price', 'written', 'znr', 'condition', 'nett', 'price', 'r', 'still', 'pricing', 'condition', 'shown', 'zlp', 'standard', 'discount', 'observed', 'whenever', 'sub', 'delivery', 'item', 'created', 'due', 'non', 'availability', 'stock', 'issue', 'crop', 'challan', 'created', 'becomes', 'difficult', 'make', 'change', 'request', 'look', 'immediately', 'assign', 'sev', 'ticket', 'resolve', 'await', 'feedback'] list_processed_text: [['pricing'], ['condition'], ['issue'], ['oa'], ['hello'], ['recent'], ['past'], ['facing'], ['issue'], ['pricing'], ['condition'], ['getting'], ['changed'], ['booking'], ['order'], ['though'], ['override'], ['pricing'], ['condition'], ['znr'], ['pricing'], ['condition'], ['remains'], ['zlp'], ['example'], ['oa'], ['price'], ['written'], ['znr'], ['condition'], ['nett'], ['price'], ['r'], ['still'], ['pricing'], ['condition'], ['shown'], ['zlp'], ['standard'], ['discount'], ['observed'], ['whenever'], ['sub'], ['delivery'], ['item'], ['created'], ['due'], ['non'], ['availability'], ['stock'], ['issue'], ['crop'], ['challan'], ['created'], ['becomes'], ['difficult'], ['make'], ['change'], ['request'], ['look'], ['immediately'], ['assign'], ['sev'], ['ticket'], ['resolve'], ['await'], ['feedback']] k: 1572 len: <class 'list'> Data: ['need', 'network', 'connection', 'alicona', 'edgemaster', 'pu', 'helpdesk', 'please', 'provide', 'network', 'connection', 'alicona', 'edgemaster', 'hone', 'measuring', 'equipment', 'installed', 'pu', 'necessary', 'software', 'updating', 'also', 'shatryung', 'relevant', 'information', 'global', 'team'] processed_text: ['need', 'network', 'connection', 'alicona', 'edgemaster', 'pu', 'helpdesk', 'please', 'provide', 'network', 'connection', 'alicona', 'edgemaster', 'hone', 'measuring', 'equipment', 'installed', 'pu', 'necessary', 'software', 'updating', 'also', 'shatryung', 'relevant', 'information', 'global', 'team'] list_processed_text: [['need'], ['network'], ['connection'], ['alicona'], ['edgemaster'], ['pu'], ['helpdesk'], ['please'], ['provide'], ['network'], ['connection'], ['alicona'], ['edgemaster'], ['hone'], ['measuring'], ['equipment'], ['installed'], ['pu'], ['necessary'], ['software'], ['updating'], ['also'], ['shatryung'], ['relevant'], ['information'], ['global'], ['team']] k: 1573 len: <class 'list'> Data: ['printer', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'need', 'take', 'default', 'default', 'kryuisti', 'turleythy', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'fw', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'please', 'see', 'string', 'email', 'issue', 'happening', 'transfer', 'shipping', 'material', 'used', 'shipped', 'usa', 'shipped', 'usa', 'usa', 'printer', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'need', 'take', 'default', 'default', 'shipping', 'plant', 'please', 'let', 'know', 'need', 'information', 'know', 'triggering', 'print', 'usa', 'printer', 'issue', 'usa', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'kryuisti', 'turleythy', 'ebpwcfla', 'qoxvpbam', 'gmnhjfbw', 'farnwhji', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'issue', 'reason', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'printer', 'number', 'send', 'printer', 'future', 'order', 'save', 'delivery', 'go', 'extra', 'delivery', 'output', 'header', 'change', 'printer', 'communication', 'method', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'ebpwcfla', 'qoxvpbam', 'kryuisti', 'turleythy', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'item', 'line', 'picking', 'request', 'delivery', 'kryuisti', 'turleythy', 'ebpwcfla', 'qoxvpbam', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'give', 'order', 'number', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'ebpwcfla', 'qoxvpbam', 'kryuisti', 'turleythy', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'hi', 'kryuisti', 'trying', 'ship', 'order', 'bakyhrer', 'huhuyghes', 'picking', 'request', 'unable', 'print', 'delivery', 'note', 'way', 'help', 'kenny', 'know'] processed_text: ['printer', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'need', 'take', 'default', 'default', 'kryuisti', 'turleythy', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'fw', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'please', 'see', 'string', 'email', 'issue', 'happening', 'transfer', 'shipping', 'material', 'used', 'shipped', 'usa', 'shipped', 'usa', 'usa', 'printer', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'need', 'take', 'default', 'default', 'shipping', 'plant', 'please', 'let', 'know', 'need', 'information', 'know', 'triggering', 'print', 'usa', 'printer', 'issue', 'usa', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'kryuisti', 'turleythy', 'ebpwcfla', 'qoxvpbam', 'gmnhjfbw', 'farnwhji', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'issue', 'reason', 'defaulting', 'usa', 'printer', 'delivery', 'note', 'printer', 'number', 'send', 'printer', 'future', 'order', 'save', 'delivery', 'go', 'extra', 'delivery', 'output', 'header', 'change', 'printer', 'communication', 'method', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'ebpwcfla', 'qoxvpbam', 'kryuisti', 'turleythy', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'item', 'line', 'picking', 'request', 'delivery', 'kryuisti', 'turleythy', 'ebpwcfla', 'qoxvpbam', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'give', 'order', 'number', 'kryuisti', 'turleythy', 'usa', 'site', 'business', 'manager', 'ebpwcfla', 'qoxvpbam', 'kryuisti', 'turleythy', 'delivery', 'note', 'bakyhrer', 'huhuyghes', 'hi', 'kryuisti', 'trying', 'ship', 'order', 'bakyhrer', 'huhuyghes', 'picking', 'request', 'unable', 'print', 'delivery', 'note', 'way', 'help', 'kenny', 'know'] list_processed_text: [['printer'], ['defaulting'], ['usa'], ['printer'], ['delivery'], ['note'], ['need'], ['take'], ['default'], ['default'], ['kryuisti'], ['turleythy'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['fw'], ['delivery'], ['note'], ['bakyhrer'], ['huhuyghes'], ['please'], ['see'], ['string'], ['email'], ['issue'], ['happening'], ['transfer'], ['shipping'], ['material'], ['used'], ['shipped'], ['usa'], ['shipped'], ['usa'], ['usa'], ['printer'], ['defaulting'], ['usa'], ['printer'], ['delivery'], ['note'], ['need'], ['take'], ['default'], ['default'], ['shipping'], ['plant'], ['please'], ['let'], ['know'], ['need'], ['information'], ['know'], ['triggering'], ['print'], ['usa'], ['printer'], ['issue'], ['usa'], ['kryuisti'], ['turleythy'], ['usa'], ['site'], ['business'], ['manager'], ['kryuisti'], ['turleythy'], ['ebpwcfla'], ['qoxvpbam'], ['gmnhjfbw'], ['farnwhji'], ['delivery'], ['note'], ['bakyhrer'], ['huhuyghes'], ['issue'], ['reason'], ['defaulting'], ['usa'], ['printer'], ['delivery'], ['note'], ['printer'], ['number'], ['send'], ['printer'], ['future'], ['order'], ['save'], ['delivery'], ['go'], ['extra'], ['delivery'], ['output'], ['header'], ['change'], ['printer'], ['communication'], ['method'], ['kryuisti'], ['turleythy'], ['usa'], ['site'], ['business'], ['manager'], ['ebpwcfla'], ['qoxvpbam'], ['kryuisti'], ['turleythy'], ['delivery'], ['note'], ['bakyhrer'], ['huhuyghes'], ['item'], ['line'], ['picking'], ['request'], ['delivery'], ['kryuisti'], ['turleythy'], ['ebpwcfla'], ['qoxvpbam'], ['delivery'], ['note'], ['bakyhrer'], ['huhuyghes'], ['give'], ['order'], ['number'], ['kryuisti'], ['turleythy'], ['usa'], ['site'], ['business'], ['manager'], ['ebpwcfla'], ['qoxvpbam'], ['kryuisti'], ['turleythy'], ['delivery'], ['note'], ['bakyhrer'], ['huhuyghes'], ['hi'], ['kryuisti'], ['trying'], ['ship'], ['order'], ['bakyhrer'], ['huhuyghes'], ['picking'], ['request'], ['unable'], ['print'], ['delivery'], ['note'], ['way'], ['help'], ['kenny'], ['know']] k: 1574 len: <class 'list'> Data: ['folder', 'missing', 'dear', 'sir', 'pkj', 'folder', 'missing', 'guest', 'hostname', 'prakaythsh', 'kujigalore', 'senior', 'manager', 'engineering'] processed_text: ['folder', 'missing', 'dear', 'sir', 'pkj', 'folder', 'missing', 'guest', 'hostname', 'prakaythsh', 'kujigalore', 'senior', 'manager', 'engineering'] list_processed_text: [['folder'], ['missing'], ['dear'], ['sir'], ['pkj'], ['folder'], ['missing'], ['guest'], ['hostname'], ['prakaythsh'], ['kujigalore'], ['senior'], ['manager'], ['engineering']] k: 1575 len: <class 'list'> Data: ['window', 'account', 'frequently', 'getting', 'locked', 'window', 'account', 'frequently', 'getting', 'locked'] processed_text: ['window', 'account', 'frequently', 'getting', 'locked', 'window', 'account', 'frequently', 'getting', 'locked'] list_processed_text: [['window'], ['account'], ['frequently'], ['getting'], ['locked'], ['window'], ['account'], ['frequently'], ['getting'], ['locked']] k: 1576 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1577 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 1578 len: <class 'list'> Data: ['power', 'laptop', 'power', 'laptop'] processed_text: ['power', 'laptop', 'power', 'laptop'] list_processed_text: [['power'], ['laptop'], ['power'], ['laptop']] k: 1579 len: <class 'list'> Data: ['frequent', 'account', 'lockout', 'window', 'frequent', 'account', 'lockout', 'window'] processed_text: ['frequent', 'account', 'lockout', 'window', 'frequent', 'account', 'lockout', 'window'] list_processed_text: [['frequent'], ['account'], ['lockout'], ['window'], ['frequent'], ['account'], ['lockout'], ['window']] k: 1580 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1581 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1582 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'engineering', 'tool', 'working'] processed_text: ['engineering', 'tool', 'working', 'engineering', 'tool', 'working'] list_processed_text: [['engineering'], ['tool'], ['working'], ['engineering'], ['tool'], ['working']] k: 1583 len: <class 'list'> Data: ['need', 'help', 'resetting', 'one', 'team', 'member', 'hub', 'window', 'password', 'need', 'help', 'resetting', 'one', 'team', 'member', 'hub', 'window', 'password'] processed_text: ['need', 'help', 'resetting', 'one', 'team', 'member', 'hub', 'window', 'password', 'need', 'help', 'resetting', 'one', 'team', 'member', 'hub', 'window', 'password'] list_processed_text: [['need'], ['help'], ['resetting'], ['one'], ['team'], ['member'], ['hub'], ['window'], ['password'], ['need'], ['help'], ['resetting'], ['one'], ['team'], ['member'], ['hub'], ['window'], ['password']] k: 1584 len: <class 'list'> Data: ['password', 'reset', 'instruction', 'summary', 'hello', 'need', 'reset', 'one', 'team', 'member', 'password', 'name', 'mzyejqvd', 'xzbtcfar', 'user', 'id', 'gilbrmuyt'] processed_text: ['password', 'reset', 'instruction', 'summary', 'hello', 'need', 'reset', 'one', 'team', 'member', 'password', 'name', 'mzyejqvd', 'xzbtcfar', 'user', 'id', 'gilbrmuyt'] list_processed_text: [['password'], ['reset'], ['instruction'], ['summary'], ['hello'], ['need'], ['reset'], ['one'], ['team'], ['member'], ['password'], ['name'], ['mzyejqvd'], ['xzbtcfar'], ['user'], ['id'], ['gilbrmuyt']] k: 1585 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1586 len: <class 'list'> Data: ['please', 'give', 'schoegdythu', 'read', 'write', 'access', 'file', 'hostname', 'globalmfg', 'amerirtcas', 'manufacturing', 'infrastructure', 'please', 'give', 'schoegdythu', 'read', 'write', 'access', 'file', 'hostname', 'globalmfg', 'amerirtcas', 'manufacturing', 'infrastructure', 'mu'] processed_text: ['please', 'give', 'schoegdythu', 'read', 'write', 'access', 'file', 'hostname', 'globalmfg', 'amerirtcas', 'manufacturing', 'infrastructure', 'please', 'give', 'schoegdythu', 'read', 'write', 'access', 'file', 'hostname', 'globalmfg', 'amerirtcas', 'manufacturing', 'infrastructure', 'mu'] list_processed_text: [['please'], ['give'], ['schoegdythu'], ['read'], ['write'], ['access'], ['file'], ['hostname'], ['globalmfg'], ['amerirtcas'], ['manufacturing'], ['infrastructure'], ['please'], ['give'], ['schoegdythu'], ['read'], ['write'], ['access'], ['file'], ['hostname'], ['globalmfg'], ['amerirtcas'], ['manufacturing'], ['infrastructure'], ['mu']] k: 1587 len: <class 'list'> Data: ['please', 'give', 'gethyoff', 'schoemerujt', 'schoegdythu', 'access', 'server', 'hostname', 'mccoyimgs', 'please', 'give', 'gethyoff', 'schoemerujt', 'schoegdythu', 'access', 'server', 'hostname', 'mccoyimgs', 'phone'] processed_text: ['please', 'give', 'gethyoff', 'schoemerujt', 'schoegdythu', 'access', 'server', 'hostname', 'mccoyimgs', 'please', 'give', 'gethyoff', 'schoemerujt', 'schoegdythu', 'access', 'server', 'hostname', 'mccoyimgs', 'phone'] list_processed_text: [['please'], ['give'], ['gethyoff'], ['schoemerujt'], ['schoegdythu'], ['access'], ['server'], ['hostname'], ['mccoyimgs'], ['please'], ['give'], ['gethyoff'], ['schoemerujt'], ['schoegdythu'], ['access'], ['server'], ['hostname'], ['mccoyimgs'], ['phone']] k: 1588 len: <class 'list'> Data: ['skype', 'work', 'skype', 'load', 'phone', 'problem', 'last', 'week'] processed_text: ['skype', 'work', 'skype', 'load', 'phone', 'problem', 'last', 'week'] list_processed_text: [['skype'], ['work'], ['skype'], ['load'], ['phone'], ['problem'], ['last'], ['week']] k: 1589 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1590 len: <class 'list'> Data: ['unable', 'open', 'email', 'outlook', 'unable', 'open', 'email', 'outlook'] processed_text: ['unable', 'open', 'email', 'outlook', 'unable', 'open', 'email', 'outlook'] list_processed_text: [['unable'], ['open'], ['email'], ['outlook'], ['unable'], ['open'], ['email'], ['outlook']] k: 1591 len: <class 'list'> Data: ['access', 'hr', 'tool', 'denied', 'access', 'hr', 'tool', 'denied'] processed_text: ['access', 'hr', 'tool', 'denied', 'access', 'hr', 'tool', 'denied'] list_processed_text: [['access'], ['hr'], ['tool'], ['denied'], ['access'], ['hr'], ['tool'], ['denied']] k: 1592 len: <class 'list'> Data: ['access', 'engineering', 'tool', 'see', 'attachment', 'access', 'engineering', 'tool', 'see', 'attachment'] processed_text: ['access', 'engineering', 'tool', 'see', 'attachment', 'access', 'engineering', 'tool', 'see', 'attachment'] list_processed_text: [['access'], ['engineering'], ['tool'], ['see'], ['attachment'], ['access'], ['engineering'], ['tool'], ['see'], ['attachment']] k: 1593 len: <class 'list'> Data: ['vpn', 'shut', 'vpn', 'shut', 'clocking', 'back', 'lunch', 'phone', 'said', 'bee', 'gone', 'minute', 'warning'] processed_text: ['vpn', 'shut', 'vpn', 'shut', 'clocking', 'back', 'lunch', 'phone', 'said', 'bee', 'gone', 'minute', 'warning'] list_processed_text: [['vpn'], ['shut'], ['vpn'], ['shut'], ['clocking'], ['back'], ['lunch'], ['phone'], ['said'], ['bee'], ['gone'], ['minute'], ['warning']] k: 1594 len: <class 'list'> Data: ['outlook', 'start', 'tablet', 'dell', 'latitude', 'outlook', 'start', 'tablet', 'dell', 'latitude'] processed_text: ['outlook', 'start', 'tablet', 'dell', 'latitude', 'outlook', 'start', 'tablet', 'dell', 'latitude'] list_processed_text: [['outlook'], ['start'], ['tablet'], ['dell'], ['latitude'], ['outlook'], ['start'], ['tablet'], ['dell'], ['latitude']] k: 1595 len: <class 'list'> Data: ['notice', 'hub', 'expire', 'scheduled', 'expiry', 'date', 'notice', 'hub', 'expire', 'scheduled', 'expiry', 'date', 'notice', 'expired', 'still', 'actively', 'displayed', 'today', 'notice', 'expired', 'please', 'review', 'notice', 'well'] processed_text: ['notice', 'hub', 'expire', 'scheduled', 'expiry', 'date', 'notice', 'hub', 'expire', 'scheduled', 'expiry', 'date', 'notice', 'expired', 'still', 'actively', 'displayed', 'today', 'notice', 'expired', 'please', 'review', 'notice', 'well'] list_processed_text: [['notice'], ['hub'], ['expire'], ['scheduled'], ['expiry'], ['date'], ['notice'], ['hub'], ['expire'], ['scheduled'], ['expiry'], ['date'], ['notice'], ['expired'], ['still'], ['actively'], ['displayed'], ['today'], ['notice'], ['expired'], ['please'], ['review'], ['notice'], ['well']] k: 1596 len: <class 'list'> Data: ['call', 'coming', 'rerouting', 'showing', 'missed', 'call', 'call', 'coming', 'rerouting', 'showing', 'missed', 'call', 'telephony', 'software', 'ext'] processed_text: ['call', 'coming', 'rerouting', 'showing', 'missed', 'call', 'call', 'coming', 'rerouting', 'showing', 'missed', 'call', 'telephony', 'software', 'ext'] list_processed_text: [['call'], ['coming'], ['rerouting'], ['showing'], ['missed'], ['call'], ['call'], ['coming'], ['rerouting'], ['showing'], ['missed'], ['call'], ['telephony'], ['software'], ['ext']] k: 1597 len: <class 'list'> Data: ['erp', 'sid', 'able', 'access', 'sid', 'sid', 'however', 'access', 'sid', 'reason', 'getting', 'error', 'state', 'account', 'access', 'within', 'validity', 'date'] processed_text: ['erp', 'sid', 'able', 'access', 'sid', 'sid', 'however', 'access', 'sid', 'reason', 'getting', 'error', 'state', 'account', 'access', 'within', 'validity', 'date'] list_processed_text: [['erp'], ['sid'], ['able'], ['access'], ['sid'], ['sid'], ['however'], ['access'], ['sid'], ['reason'], ['getting'], ['error'], ['state'], ['account'], ['access'], ['within'], ['validity'], ['date']] k: 1598 len: <class 'list'> Data: ['application', 'erp', 'mii', 'node', 'hostname', 'hostname', 'application', 'erp', 'mii', 'node', 'hostname', 'hostname'] processed_text: ['application', 'erp', 'mii', 'node', 'hostname', 'hostname', 'application', 'erp', 'mii', 'node', 'hostname', 'hostname'] list_processed_text: [['application'], ['erp'], ['mii'], ['node'], ['hostname'], ['hostname'], ['application'], ['erp'], ['mii'], ['node'], ['hostname'], ['hostname']] k: 1599 len: <class 'list'> Data: ['m', 'office', 'word', 'issue', 'm', 'office', 'word', 'issue'] processed_text: ['m', 'office', 'word', 'issue', 'm', 'office', 'word', 'issue'] list_processed_text: [['m'], ['office'], ['word'], ['issue'], ['m'], ['office'], ['word'], ['issue']] k: 1600 len: <class 'list'> Data: ['access', 'sid', 'good', 'afternoon', 'would', 'please', 'check', 'error', 'sid', 'user', 'revelj', 'erp', 'sid', 'also', 'need', 'reset', 'password', 'sid', 'error', 'best'] processed_text: ['access', 'sid', 'good', 'afternoon', 'would', 'please', 'check', 'error', 'sid', 'user', 'revelj', 'erp', 'sid', 'also', 'need', 'reset', 'password', 'sid', 'error', 'best'] list_processed_text: [['access'], ['sid'], ['good'], ['afternoon'], ['would'], ['please'], ['check'], ['error'], ['sid'], ['user'], ['revelj'], ['erp'], ['sid'], ['also'], ['need'], ['reset'], ['password'], ['sid'], ['error'], ['best']] k: 1601 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 1602 len: <class 'list'> Data: ['unable', 'access', 'company', 'password', 'expired', 'unable', 'access', 'company', 'password', 'expired'] processed_text: ['unable', 'access', 'company', 'password', 'expired', 'unable', 'access', 'company', 'password', 'expired'] list_processed_text: [['unable'], ['access'], ['company'], ['password'], ['expired'], ['unable'], ['access'], ['company'], ['password'], ['expired']] k: 1603 len: <class 'list'> Data: ['danyhuie', 'deyhtwet', 'plant', 'manager', 'keep', 'showing', 'hr', 'skype', 'meeting', 'danyhuie', 'deyhtwet', 'plant', 'manager', 'keep', 'showing', 'hr', 'skype', 'meeting'] processed_text: ['danyhuie', 'deyhtwet', 'plant', 'manager', 'keep', 'showing', 'hr', 'skype', 'meeting', 'danyhuie', 'deyhtwet', 'plant', 'manager', 'keep', 'showing', 'hr', 'skype', 'meeting'] list_processed_text: [['danyhuie'], ['deyhtwet'], ['plant'], ['manager'], ['keep'], ['showing'], ['hr'], ['skype'], ['meeting'], ['danyhuie'], ['deyhtwet'], ['plant'], ['manager'], ['keep'], ['showing'], ['hr'], ['skype'], ['meeting']] k: 1604 len: <class 'list'> Data: ['wifi', 'hello', 'everyone', 'wifi', 'connection', 'displayed', 'home', 'longer', 'dial', 'please', 'help,', 'thank', 'you,', 'best', 'regard'] processed_text: ['wifi', 'hello', 'everyone', 'wifi', 'connection', 'displayed', 'home', 'longer', 'dial', 'please', 'help,', 'thank', 'you,', 'best', 'regard'] list_processed_text: [['wifi'], ['hello'], ['everyone'], ['wifi'], ['connection'], ['displayed'], ['home'], ['longer'], ['dial'], ['please'], ['help,'], ['thank'], ['you,'], ['best'], ['regard']] k: 1605 len: <class 'list'> Data: ['client', 'pc', 'rebooting', 'randomly', 'also', 'office', 'software', 'issue', 'client', 'pc', 'rebooting', 'randomly', 'also', 'office', 'software', 'issue'] processed_text: ['client', 'pc', 'rebooting', 'randomly', 'also', 'office', 'software', 'issue', 'client', 'pc', 'rebooting', 'randomly', 'also', 'office', 'software', 'issue'] list_processed_text: [['client'], ['pc'], ['rebooting'], ['randomly'], ['also'], ['office'], ['software'], ['issue'], ['client'], ['pc'], ['rebooting'], ['randomly'], ['also'], ['office'], ['software'], ['issue']] k: 1606 len: <class 'list'> Data: ['unable', 'see', 'previous', 'pay', 'slip', 'unable', 'see', 'previous', 'pay', 'slip'] processed_text: ['unable', 'see', 'previous', 'pay', 'slip', 'unable', 'see', 'previous', 'pay', 'slip'] list_processed_text: [['unable'], ['see'], ['previous'], ['pay'], ['slip'], ['unable'], ['see'], ['previous'], ['pay'], ['slip']] k: 1607 len: <class 'list'> Data: ['wifi', 'working', 'pennsylvania', 'wireless', 'issue', 'waynesboro', 'wifi', 'working', 'pennsylvania', 'access', 'point', 'working', 'work', 'stoppage', 'issue', 'tried', 'calling', 'christgry', 'twice', 'reached', 'warehouse', 'tool', 'mail', 'left', 'brief', 'message', 'dialed', 'able', 'reach', 'christgry'] processed_text: ['wifi', 'working', 'pennsylvania', 'wireless', 'issue', 'waynesboro', 'wifi', 'working', 'pennsylvania', 'access', 'point', 'working', 'work', 'stoppage', 'issue', 'tried', 'calling', 'christgry', 'twice', 'reached', 'warehouse', 'tool', 'mail', 'left', 'brief', 'message', 'dialed', 'able', 'reach', 'christgry'] list_processed_text: [['wifi'], ['working'], ['pennsylvania'], ['wireless'], ['issue'], ['waynesboro'], ['wifi'], ['working'], ['pennsylvania'], ['access'], ['point'], ['working'], ['work'], ['stoppage'], ['issue'], ['tried'], ['calling'], ['christgry'], ['twice'], ['reached'], ['warehouse'], ['tool'], ['mail'], ['left'], ['brief'], ['message'], ['dialed'], ['able'], ['reach'], ['christgry']] k: 1608 len: <class 'list'> Data: ['vpn', 'shut', 'fixing', 'order', 'went', 'answer', 'question', 'skype', 'noticed', 'skype', 'lost', 'connection', 'noticed', 'vpn', 'shutting', 'see', 'pop', 'note', 'vpn', 'shut'] processed_text: ['vpn', 'shut', 'fixing', 'order', 'went', 'answer', 'question', 'skype', 'noticed', 'skype', 'lost', 'connection', 'noticed', 'vpn', 'shutting', 'see', 'pop', 'note', 'vpn', 'shut'] list_processed_text: [['vpn'], ['shut'], ['fixing'], ['order'], ['went'], ['answer'], ['question'], ['skype'], ['noticed'], ['skype'], ['lost'], ['connection'], ['noticed'], ['vpn'], ['shutting'], ['see'], ['pop'], ['note'], ['vpn'], ['shut']] k: 1609 len: <class 'list'> Data: ['vpn', 'connectivity', 'issue', 'knocked', 'vpn', 'connection', 'anything', 'particular', 'finished', 'call'] processed_text: ['vpn', 'connectivity', 'issue', 'knocked', 'vpn', 'connection', 'anything', 'particular', 'finished', 'call'] list_processed_text: [['vpn'], ['connectivity'], ['issue'], ['knocked'], ['vpn'], ['connection'], ['anything'], ['particular'], ['finished'], ['call']] k: 1610 len: <class 'list'> Data: ['ultramdntyet', 'wrongful', 'inwarehouse', 'tool', 'good', 'morning', 'sent', 'request', 'found', 'data', 'received', 'attached', 'email', 'asking', 'look', 'issue', 'look', 'inwarehouse', 'tool', 'referenced', 'email', 'saw', 'sample', 'line', 'charged', 'cost', 'go', 'order', 'step', 'sample', 'line', 'go', 'document', 'flow', 'see', 'completely', 'different', 'inwarehouse', 'tool', 'number', 'referenced', 'inwarehouse', 'tool', 'highlight', 'cost', 'look', 'document', 'flow', 'entire', 'order', 'see', 'inwarehouse', 'tool', 'please', 'help', 'understand', 'customer', 'inwarehouse', 'toold', 'twice', 'sample', 'second', 'inwarehouse', 'tool', 'cost', 'let', 'know', 'need', 'end', 'help', 'please', 'record', 'inwarehouse', 'tool', 'sent', 'correct', 'best'] processed_text: ['ultramdntyet', 'wrongful', 'inwarehouse', 'tool', 'good', 'morning', 'sent', 'request', 'found', 'data', 'received', 'attached', 'email', 'asking', 'look', 'issue', 'look', 'inwarehouse', 'tool', 'referenced', 'email', 'saw', 'sample', 'line', 'charged', 'cost', 'go', 'order', 'step', 'sample', 'line', 'go', 'document', 'flow', 'see', 'completely', 'different', 'inwarehouse', 'tool', 'number', 'referenced', 'inwarehouse', 'tool', 'highlight', 'cost', 'look', 'document', 'flow', 'entire', 'order', 'see', 'inwarehouse', 'tool', 'please', 'help', 'understand', 'customer', 'inwarehouse', 'toold', 'twice', 'sample', 'second', 'inwarehouse', 'tool', 'cost', 'let', 'know', 'need', 'end', 'help', 'please', 'record', 'inwarehouse', 'tool', 'sent', 'correct', 'best'] list_processed_text: [['ultramdntyet'], ['wrongful'], ['inwarehouse'], ['tool'], ['good'], ['morning'], ['sent'], ['request'], ['found'], ['data'], ['received'], ['attached'], ['email'], ['asking'], ['look'], ['issue'], ['look'], ['inwarehouse'], ['tool'], ['referenced'], ['email'], ['saw'], ['sample'], ['line'], ['charged'], ['cost'], ['go'], ['order'], ['step'], ['sample'], ['line'], ['go'], ['document'], ['flow'], ['see'], ['completely'], ['different'], ['inwarehouse'], ['tool'], ['number'], ['referenced'], ['inwarehouse'], ['tool'], ['highlight'], ['cost'], ['look'], ['document'], ['flow'], ['entire'], ['order'], ['see'], ['inwarehouse'], ['tool'], ['please'], ['help'], ['understand'], ['customer'], ['inwarehouse'], ['toold'], ['twice'], ['sample'], ['second'], ['inwarehouse'], ['tool'], ['cost'], ['let'], ['know'], ['need'], ['end'], ['help'], ['please'], ['record'], ['inwarehouse'], ['tool'], ['sent'], ['correct'], ['best']] k: 1611 len: <class 'list'> Data: ['wrongful', 'inwarehouse', 'tool', 'good', 'morning', 'customer', 'ultramdntyet', 'inwarehouse', 'toold', 'sample', 'line', 'entered', 'charge', 'sample', 'erp', 'issuing', 'credit', 'customer', 'amount', 'charged', 'tell', 'inwarehouse', 'toold', 'begin', 'best'] processed_text: ['wrongful', 'inwarehouse', 'tool', 'good', 'morning', 'customer', 'ultramdntyet', 'inwarehouse', 'toold', 'sample', 'line', 'entered', 'charge', 'sample', 'erp', 'issuing', 'credit', 'customer', 'amount', 'charged', 'tell', 'inwarehouse', 'toold', 'begin', 'best'] list_processed_text: [['wrongful'], ['inwarehouse'], ['tool'], ['good'], ['morning'], ['customer'], ['ultramdntyet'], ['inwarehouse'], ['toold'], ['sample'], ['line'], ['entered'], ['charge'], ['sample'], ['erp'], ['issuing'], ['credit'], ['customer'], ['amount'], ['charged'], ['tell'], ['inwarehouse'], ['toold'], ['begin'], ['best']] k: 1612 len: <class 'list'> Data: ['vpn', 'shut', 'searching', 'quote', 'erp', 'vpn', 'shut', 'see', 'pop', 'note', 'first', 'clue', 'problem', 'erp', 'shut', 'saw', 'vpn', 'connection', 'shut'] processed_text: ['vpn', 'shut', 'searching', 'quote', 'erp', 'vpn', 'shut', 'see', 'pop', 'note', 'first', 'clue', 'problem', 'erp', 'shut', 'saw', 'vpn', 'connection', 'shut'] list_processed_text: [['vpn'], ['shut'], ['searching'], ['quote'], ['erp'], ['vpn'], ['shut'], ['see'], ['pop'], ['note'], ['first'], ['clue'], ['problem'], ['erp'], ['shut'], ['saw'], ['vpn'], ['connection'], ['shut']] k: 1613 len: <class 'list'> Data: ['unable', 'connect', 'companysecure', 'unable', 'connect', 'companyssecure'] processed_text: ['unable', 'connect', 'companysecure', 'unable', 'connect', 'companyssecure'] list_processed_text: [['unable'], ['connect'], ['companysecure'], ['unable'], ['connect'], ['companyssecure']] k: 1614 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 1615 len: <class 'list'> Data: ['vip', 'zip', 'file', 'large', 'zip', 'file', 'want', 'download', 'add', 'folder', 'hostname', 'intellectual', 'property', 'unzip', 'file', 'try', 'save', 'hostname', 'say', 'enough', 'space', 'lryturhyyth', 'ryhunan', 'chief', 'counsel', 'ip'] processed_text: ['vip', 'zip', 'file', 'large', 'zip', 'file', 'want', 'download', 'add', 'folder', 'hostname', 'intellectual', 'property', 'unzip', 'file', 'try', 'save', 'hostname', 'say', 'enough', 'space', 'lryturhyyth', 'ryhunan', 'chief', 'counsel', 'ip'] list_processed_text: [['vip'], ['zip'], ['file'], ['large'], ['zip'], ['file'], ['want'], ['download'], ['add'], ['folder'], ['hostname'], ['intellectual'], ['property'], ['unzip'], ['file'], ['try'], ['save'], ['hostname'], ['say'], ['enough'], ['space'], ['lryturhyyth'], ['ryhunan'], ['chief'], ['counsel'], ['ip']] k: 1616 len: <class 'list'> Data: ['need', 'find', 'old', 'email', 'outlook', 'need', 'find', 'old', 'email', 'outlook'] processed_text: ['need', 'find', 'old', 'email', 'outlook', 'need', 'find', 'old', 'email', 'outlook'] list_processed_text: [['need'], ['find'], ['old'], ['email'], ['outlook'], ['need'], ['find'], ['old'], ['email'], ['outlook']] k: 1617 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1618 len: <class 'list'> Data: ['opened', 'outlook', 'clicked', 'email,', 'blue', 'circle', 'come', 'rotates', 'nothing', 'please', 'urgently', 'help', 'mobile', 'tel'] processed_text: ['opened', 'outlook', 'clicked', 'email,', 'blue', 'circle', 'come', 'rotates', 'nothing', 'please', 'urgently', 'help', 'mobile', 'tel'] list_processed_text: [['opened'], ['outlook'], ['clicked'], ['email,'], ['blue'], ['circle'], ['come'], ['rotates'], ['nothing'], ['please'], ['urgently'], ['help'], ['mobile'], ['tel']] k: 1619 len: <class 'list'> Data: ['benefit', 'app', 'ssp', 'benefit', 'solver', 'application', 'single', 'sign', 'portal', 'someone', 'please', 'assist', 'getting', 'added'] processed_text: ['benefit', 'app', 'ssp', 'benefit', 'solver', 'application', 'single', 'sign', 'portal', 'someone', 'please', 'assist', 'getting', 'added'] list_processed_text: [['benefit'], ['app'], ['ssp'], ['benefit'], ['solver'], ['application'], ['single'], ['sign'], ['portal'], ['someone'], ['please'], ['assist'], ['getting'], ['added']] k: 1620 len: <class 'list'> Data: ['outlook', 'working', 'crm', 'issue', 'outlook', 'working', 'email', 'opening', 'crm', 'issue'] processed_text: ['outlook', 'working', 'crm', 'issue', 'outlook', 'working', 'email', 'opening', 'crm', 'issue'] list_processed_text: [['outlook'], ['working'], ['crm'], ['issue'], ['outlook'], ['working'], ['email'], ['opening'], ['crm'], ['issue']] k: 1621 len: <class 'list'> Data: ['locked', 'system', 'locked', 'system'] processed_text: ['locked', 'system', 'locked', 'system'] list_processed_text: [['locked'], ['system'], ['locked'], ['system']] k: 1622 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1623 len: <class 'list'> Data: ['tmunkaiv', 'ockthiyj', 'need', 'get', 'log', 'created', 'new', 'sr', 'production', 'specialist', 'tmunkaiv', 'ockthiyj'] processed_text: ['tmunkaiv', 'ockthiyj', 'need', 'get', 'log', 'created', 'new', 'sr', 'production', 'specialist', 'tmunkaiv', 'ockthiyj'] list_processed_text: [['tmunkaiv'], ['ockthiyj'], ['need'], ['get'], ['log'], ['created'], ['new'], ['sr'], ['production'], ['specialist'], ['tmunkaiv'], ['ockthiyj']] k: 1624 len: <class 'list'> Data: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] processed_text: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] list_processed_text: [['erp'], ['password'], ['reset'], ['sid'], ['erp'], ['password'], ['reset'], ['sid']] k: 1625 len: <class 'list'> Data: ['dw', 'print', 'job', 'error', 'dw', 'print', 'job', 'error'] processed_text: ['dw', 'print', 'job', 'error', 'dw', 'print', 'job', 'error'] list_processed_text: [['dw'], ['print'], ['job'], ['error'], ['dw'], ['print'], ['job'], ['error']] k: 1626 len: <class 'list'> Data: ['printer', 'printer', 'defective', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['printer', 'printer', 'defective', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['printer'], ['printer'], ['defective'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['excluded'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['message'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 1627 len: <class 'list'> Data: ['unable', 'login', 'impact', 'award', 'unable', 'login', 'impact', 'award', 'tried', 'password', 'reset', 'able', 'remember', 'security', 'question'] processed_text: ['unable', 'login', 'impact', 'award', 'unable', 'login', 'impact', 'award', 'tried', 'password', 'reset', 'able', 'remember', 'security', 'question'] list_processed_text: [['unable'], ['login'], ['impact'], ['award'], ['unable'], ['login'], ['impact'], ['award'], ['tried'], ['password'], ['reset'], ['able'], ['remember'], ['security'], ['question']] k: 1628 len: <class 'list'> Data: ['need', 'link', 'access', 'outlook', 'web', 'mail', 'need', 'link', 'access', 'outlook', 'web', 'mail'] processed_text: ['need', 'link', 'access', 'outlook', 'web', 'mail', 'need', 'link', 'access', 'outlook', 'web', 'mail'] list_processed_text: [['need'], ['link'], ['access'], ['outlook'], ['web'], ['mail'], ['need'], ['link'], ['access'], ['outlook'], ['web'], ['mail']] k: 1629 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1630 len: <class 'list'> Data: ['performance', 'problem', 'different', 'application', 'programdntyms', 'performance', 'problem', 'erp', 'ieas', 'eu', 'tool', 'especially', 'several', 'timeout', 'error', 'eu', 'tool', 'search', 'function', 'see', 'attachment', 'complete', 'day'] processed_text: ['performance', 'problem', 'different', 'application', 'programdntyms', 'performance', 'problem', 'erp', 'ieas', 'eu', 'tool', 'especially', 'several', 'timeout', 'error', 'eu', 'tool', 'search', 'function', 'see', 'attachment', 'complete', 'day'] list_processed_text: [['performance'], ['problem'], ['different'], ['application'], ['programdntyms'], ['performance'], ['problem'], ['erp'], ['ieas'], ['eu'], ['tool'], ['especially'], ['several'], ['timeout'], ['error'], ['eu'], ['tool'], ['search'], ['function'], ['see'], ['attachment'], ['complete'], ['day']] k: 1631 len: <class 'list'> Data: ['downloading', 'copying', 'collaboration', 'platform', 'file', 'purchasing', 'want', 'upload', 'directly', 'purchasing', 'pdf', 'file', 'saved', 'collaboration', 'platform', 'file', 'done', 'told', 'open', 'ticket', 'assigned', 'collaboration', 'development', 'group', 'skype'] processed_text: ['downloading', 'copying', 'collaboration', 'platform', 'file', 'purchasing', 'want', 'upload', 'directly', 'purchasing', 'pdf', 'file', 'saved', 'collaboration', 'platform', 'file', 'done', 'told', 'open', 'ticket', 'assigned', 'collaboration', 'development', 'group', 'skype'] list_processed_text: [['downloading'], ['copying'], ['collaboration'], ['platform'], ['file'], ['purchasing'], ['want'], ['upload'], ['directly'], ['purchasing'], ['pdf'], ['file'], ['saved'], ['collaboration'], ['platform'], ['file'], ['done'], ['told'], ['open'], ['ticket'], ['assigned'], ['collaboration'], ['development'], ['group'], ['skype']] k: 1632 len: <class 'list'> Data: ['cannot', 'print', 'cl', 'ever', 'since', 'recent', 'workstation', 'move', 'unable', 'print', 'cl', 'move', 'printed', 'cl', 'regularly', 'since', 'move', 'attempt', 'print', 'cl', 'prompt', 'install', 'driver', 'print', 'job', 'fails', 'regardless'] processed_text: ['cannot', 'print', 'cl', 'ever', 'since', 'recent', 'workstation', 'move', 'unable', 'print', 'cl', 'move', 'printed', 'cl', 'regularly', 'since', 'move', 'attempt', 'print', 'cl', 'prompt', 'install', 'driver', 'print', 'job', 'fails', 'regardless'] list_processed_text: [['cannot'], ['print'], ['cl'], ['ever'], ['since'], ['recent'], ['workstation'], ['move'], ['unable'], ['print'], ['cl'], ['move'], ['printed'], ['cl'], ['regularly'], ['since'], ['move'], ['attempt'], ['print'], ['cl'], ['prompt'], ['install'], ['driver'], ['print'], ['job'], ['fails'], ['regardless']] k: 1633 len: <class 'list'> Data: ['receiving', 'product', 'logical', 'warehouse', 'plant', 'batch', 'required', 'using', 'migo', 'good', 'receipt', 'receive', 'product', 'plant', 'batch', 'information', 'required', 'process', 'begun', 'happen', 'frequently', 'past', 'month', 'following', 'rqfhiong', 'zkwfqagbs', 'example', 'occurred', 'mm'] processed_text: ['receiving', 'product', 'logical', 'warehouse', 'plant', 'batch', 'required', 'using', 'migo', 'good', 'receipt', 'receive', 'product', 'plant', 'batch', 'information', 'required', 'process', 'begun', 'happen', 'frequently', 'past', 'month', 'following', 'rqfhiong', 'zkwfqagbs', 'example', 'occurred', 'mm'] list_processed_text: [['receiving'], ['product'], ['logical'], ['warehouse'], ['plant'], ['batch'], ['required'], ['using'], ['migo'], ['good'], ['receipt'], ['receive'], ['product'], ['plant'], ['batch'], ['information'], ['required'], ['process'], ['begun'], ['happen'], ['frequently'], ['past'], ['month'], ['following'], ['rqfhiong'], ['zkwfqagbs'], ['example'], ['occurred'], ['mm']] k: 1634 len: <class 'list'> Data: ['need', 'setup', 'aolhgbps', 'pbxqtcek', 'sid', 'sid', 'active', 'directory', 'need', 'create', 'aolhgbps', 'pbxqtcek', 'active', 'directory', 'assign', 'group', 'miioperatordev', 'miioperatorqa', 'let', 'barrtyh', 'know', 'aolhgbps', 'pbxqtcek', 'ready'] processed_text: ['need', 'setup', 'aolhgbps', 'pbxqtcek', 'sid', 'sid', 'active', 'directory', 'need', 'create', 'aolhgbps', 'pbxqtcek', 'active', 'directory', 'assign', 'group', 'miioperatordev', 'miioperatorqa', 'let', 'barrtyh', 'know', 'aolhgbps', 'pbxqtcek', 'ready'] list_processed_text: [['need'], ['setup'], ['aolhgbps'], ['pbxqtcek'], ['sid'], ['sid'], ['active'], ['directory'], ['need'], ['create'], ['aolhgbps'], ['pbxqtcek'], ['active'], ['directory'], ['assign'], ['group'], ['miioperatordev'], ['miioperatorqa'], ['let'], ['barrtyh'], ['know'], ['aolhgbps'], ['pbxqtcek'], ['ready']] k: 1635 len: <class 'list'> Data: ['hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['dev'], ['sid'], ['os'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['hostname'], ['volume'], ['dev'], ['sid'], ['os'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available']] k: 1636 len: <class 'list'> Data: ['calendar', 'visible', 'manager', 'calendar', 'visible', 'manager'] processed_text: ['calendar', 'visible', 'manager', 'calendar', 'visible', 'manager'] list_processed_text: [['calendar'], ['visible'], ['manager'], ['calendar'], ['visible'], ['manager']] k: 1637 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'error', 'logging', 'order', 'ypladjeu', 'wzfryxav', 'problem', 'eu', 'tool', 'error', 'logging', 'order', 'ypladjeu', 'wzfryxav'] processed_text: ['problem', 'eu', 'tool', 'error', 'logging', 'order', 'ypladjeu', 'wzfryxav', 'problem', 'eu', 'tool', 'error', 'logging', 'order', 'ypladjeu', 'wzfryxav'] list_processed_text: [['problem'], ['eu'], ['tool'], ['error'], ['logging'], ['order'], ['ypladjeu'], ['wzfryxav'], ['problem'], ['eu'], ['tool'], ['error'], ['logging'], ['order'], ['ypladjeu'], ['wzfryxav']] k: 1638 len: <class 'list'> Data: ['basis', 'call', 'shift', 'detail', 'dac', 'gso', 'basis', 'call', 'detail', 'modified', 'modified', 'placed', 'location', 'collaboration', 'platform', 'please', 'update', 'record', 'accordingly'] processed_text: ['basis', 'call', 'shift', 'detail', 'dac', 'gso', 'basis', 'call', 'detail', 'modified', 'modified', 'placed', 'location', 'collaboration', 'platform', 'please', 'update', 'record', 'accordingly'] list_processed_text: [['basis'], ['call'], ['shift'], ['detail'], ['dac'], ['gso'], ['basis'], ['call'], ['detail'], ['modified'], ['modified'], ['placed'], ['location'], ['collaboration'], ['platform'], ['please'], ['update'], ['record'], ['accordingly']] k: 1639 len: <class 'list'> Data: ['finance', 'app', 'system', 'still', 'need', 'system', 'retrieve', 'financial', 'information', 'quarterly', 'closing', 'finance', 'app', 'system', 'still', 'need', 'system', 'retrieve', 'financial', 'information', 'quarterly', 'closing'] processed_text: ['finance', 'app', 'system', 'still', 'need', 'system', 'retrieve', 'financial', 'information', 'quarterly', 'closing', 'finance', 'app', 'system', 'still', 'need', 'system', 'retrieve', 'financial', 'information', 'quarterly', 'closing'] list_processed_text: [['finance'], ['app'], ['system'], ['still'], ['need'], ['system'], ['retrieve'], ['financial'], ['information'], ['quarterly'], ['closing'], ['finance'], ['app'], ['system'], ['still'], ['need'], ['system'], ['retrieve'], ['financial'], ['information'], ['quarterly'], ['closing']] k: 1640 len: <class 'list'> Data: ['laptop', 'byclpwmv', 'esafrtbh', 'defective', 'laptop', 'byclpwmv', 'esafrtbh', 'defective'] processed_text: ['laptop', 'byclpwmv', 'esafrtbh', 'defective', 'laptop', 'byclpwmv', 'esafrtbh', 'defective'] list_processed_text: [['laptop'], ['byclpwmv'], ['esafrtbh'], ['defective'], ['laptop'], ['byclpwmv'], ['esafrtbh'], ['defective']] k: 1641 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 1642 len: <class 'list'> Data: ['mr', 'guruythupyhtyad', 'still', 'able', 'open', 'folder', 'ie', 'mtb', 'project', 'mgmt', 'servicing', 'jayatramdntydba', 'cvyg', 'pm', 'nwfodmhc', 'exurcwkm', 'bhayhtrathramdnty', 'mamilujli', 'amihtar', 'lalthy', 'fw', 'ticket', 'new', 'non', 'employee', 'gurublxkizmh', 'nvodbrfluppasadabasavaraj', 'vvkuthyrppg', 'hello', 'mr', 'guruythupyhtyad', 'still', 'able', 'open', 'folder', 'ie', 'mtb', 'project', 'mgmt', 'servicing', 'please', 'look', 'subject', 'provide', 'access', 'best'] processed_text: ['mr', 'guruythupyhtyad', 'still', 'able', 'open', 'folder', 'ie', 'mtb', 'project', 'mgmt', 'servicing', 'jayatramdntydba', 'cvyg', 'pm', 'nwfodmhc', 'exurcwkm', 'bhayhtrathramdnty', 'mamilujli', 'amihtar', 'lalthy', 'fw', 'ticket', 'new', 'non', 'employee', 'gurublxkizmh', 'nvodbrfluppasadabasavaraj', 'vvkuthyrppg', 'hello', 'mr', 'guruythupyhtyad', 'still', 'able', 'open', 'folder', 'ie', 'mtb', 'project', 'mgmt', 'servicing', 'please', 'look', 'subject', 'provide', 'access', 'best'] list_processed_text: [['mr'], ['guruythupyhtyad'], ['still'], ['able'], ['open'], ['folder'], ['ie'], ['mtb'], ['project'], ['mgmt'], ['servicing'], ['jayatramdntydba'], ['cvyg'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['bhayhtrathramdnty'], ['mamilujli'], ['amihtar'], ['lalthy'], ['fw'], ['ticket'], ['new'], ['non'], ['employee'], ['gurublxkizmh'], ['nvodbrfluppasadabasavaraj'], ['vvkuthyrppg'], ['hello'], ['mr'], ['guruythupyhtyad'], ['still'], ['able'], ['open'], ['folder'], ['ie'], ['mtb'], ['project'], ['mgmt'], ['servicing'], ['please'], ['look'], ['subject'], ['provide'], ['access'], ['best']] k: 1643 len: <class 'list'> Data: ['deployment', 'notification', 'm', 'net', 'framdntyework', 'business', 'client', 'sid', 'emea', 'issue', 'got', 'error', 'message', 'minute', 'think', 'update', 'done', 'correctly', 'could', 'please', 'check', 'computer', 'best'] processed_text: ['deployment', 'notification', 'm', 'net', 'framdntyework', 'business', 'client', 'sid', 'emea', 'issue', 'got', 'error', 'message', 'minute', 'think', 'update', 'done', 'correctly', 'could', 'please', 'check', 'computer', 'best'] list_processed_text: [['deployment'], ['notification'], ['m'], ['net'], ['framdntyework'], ['business'], ['client'], ['sid'], ['emea'], ['issue'], ['got'], ['error'], ['message'], ['minute'], ['think'], ['update'], ['done'], ['correctly'], ['could'], ['please'], ['check'], ['computer'], ['best']] k: 1644 len: <class 'list'> Data: ['printer', 'problem', 'em', 'germany', 'hello', 'everyone', 'printer', 'em', 'longer', 'print', 'via', 'letterhead', 'input', 'please', 'correct', 'setting', 'thank', 'advance', 'best', 'regard'] processed_text: ['printer', 'problem', 'em', 'germany', 'hello', 'everyone', 'printer', 'em', 'longer', 'print', 'via', 'letterhead', 'input', 'please', 'correct', 'setting', 'thank', 'advance', 'best', 'regard'] list_processed_text: [['printer'], ['problem'], ['em'], ['germany'], ['hello'], ['everyone'], ['printer'], ['em'], ['longer'], ['print'], ['via'], ['letterhead'], ['input'], ['please'], ['correct'], ['setting'], ['thank'], ['advance'], ['best'], ['regard']] k: 1645 len: <class 'list'> Data: ['need', 'help', 'good', 'morning', 'trouble', 'password', 'changed', 'password', 'possibility', 'connected', 'mail', 'connection', 'various', 'area', 'still', 'old', 'password', 'start', 'computer', 'request', 'change', 'password', 'using', 'ctrl', 'alt', 'delete', 'change', 'password', 'working', 'help'] processed_text: ['need', 'help', 'good', 'morning', 'trouble', 'password', 'changed', 'password', 'possibility', 'connected', 'mail', 'connection', 'various', 'area', 'still', 'old', 'password', 'start', 'computer', 'request', 'change', 'password', 'using', 'ctrl', 'alt', 'delete', 'change', 'password', 'working', 'help'] list_processed_text: [['need'], ['help'], ['good'], ['morning'], ['trouble'], ['password'], ['changed'], ['password'], ['possibility'], ['connected'], ['mail'], ['connection'], ['various'], ['area'], ['still'], ['old'], ['password'], ['start'], ['computer'], ['request'], ['change'], ['password'], ['using'], ['ctrl'], ['alt'], ['delete'], ['change'], ['password'], ['working'], ['help']] k: 1646 len: <class 'list'> Data: ['software', 'babiluntr', 'work', 'software', 'babiluntr', 'work'] processed_text: ['software', 'babiluntr', 'work', 'software', 'babiluntr', 'work'] list_processed_text: [['software'], ['babiluntr'], ['work'], ['software'], ['babiluntr'], ['work']] k: 1647 len: <class 'list'> Data: ['display', 'link', 'working', 'hello', 'laptop', 'display', 'link', 'working', 'pls', 'help', 'message', 'come', 'could', 'recognize', 'usb', 'device', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] processed_text: ['display', 'link', 'working', 'hello', 'laptop', 'display', 'link', 'working', 'pls', 'help', 'message', 'come', 'could', 'recognize', 'usb', 'device', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] list_processed_text: [['display'], ['link'], ['working'], ['hello'], ['laptop'], ['display'], ['link'], ['working'], ['pls'], ['help'], ['message'], ['come'], ['could'], ['recognize'], ['usb'], ['device'], ['vivthyek'], ['byuihand'], ['asst'], ['manager'], ['sale'], ['company'], ['india'], ['ltd'], ['india']] k: 1648 len: <class 'list'> Data: ['need', 'display', 'link', 'adaptor', 'simcard', 'holder', 'hello', 'please', 'note', 'display', 'link', 'adaptor', 'working', 'kindly', 'arrange', 'replacement', 'also', 'need', 'new', 'data', 'card', 'sim', 'card', 'holder', 'laptop', 'best'] processed_text: ['need', 'display', 'link', 'adaptor', 'simcard', 'holder', 'hello', 'please', 'note', 'display', 'link', 'adaptor', 'working', 'kindly', 'arrange', 'replacement', 'also', 'need', 'new', 'data', 'card', 'sim', 'card', 'holder', 'laptop', 'best'] list_processed_text: [['need'], ['display'], ['link'], ['adaptor'], ['simcard'], ['holder'], ['hello'], ['please'], ['note'], ['display'], ['link'], ['adaptor'], ['working'], ['kindly'], ['arrange'], ['replacement'], ['also'], ['need'], ['new'], ['data'], ['card'], ['sim'], ['card'], ['holder'], ['laptop'], ['best']] k: 1649 len: <class 'list'> Data: ['copy', 'desktop', 'file', 'kindly', 'copy', 'desktop', 'file', 'prithivrtyaj', 'user', 'id', 'vvyhtyumasp', 'guruythupyhtyad', 'vvkuthyrppg', 'local', 'folder', 'pc', 'awyw'] processed_text: ['copy', 'desktop', 'file', 'kindly', 'copy', 'desktop', 'file', 'prithivrtyaj', 'user', 'id', 'vvyhtyumasp', 'guruythupyhtyad', 'vvkuthyrppg', 'local', 'folder', 'pc', 'awyw'] list_processed_text: [['copy'], ['desktop'], ['file'], ['kindly'], ['copy'], ['desktop'], ['file'], ['prithivrtyaj'], ['user'], ['id'], ['vvyhtyumasp'], ['guruythupyhtyad'], ['vvkuthyrppg'], ['local'], ['folder'], ['pc'], ['awyw']] k: 1650 len: <class 'list'> Data: ['telephony', 'software', 'via', 'remote', 'number', 'hello', 'team', 'got', 'problem', 'call', 'working', 'remote', 'help'] processed_text: ['telephony', 'software', 'via', 'remote', 'number', 'hello', 'team', 'got', 'problem', 'call', 'working', 'remote', 'help'] list_processed_text: [['telephony'], ['software'], ['via'], ['remote'], ['number'], ['hello'], ['team'], ['got'], ['problem'], ['call'], ['working'], ['remote'], ['help']] k: 1651 len: <class 'list'> Data: ['outlook', 'repeatedly', 'asking', 'password', 'outlook', 'repeatedly', 'asking', 'password'] processed_text: ['outlook', 'repeatedly', 'asking', 'password', 'outlook', 'repeatedly', 'asking', 'password'] list_processed_text: [['outlook'], ['repeatedly'], ['asking'], ['password'], ['outlook'], ['repeatedly'], ['asking'], ['password']] k: 1652 len: <class 'list'> Data: ['problem', 'mit', 'eu', 'tool', 'tmqfjard', 'qzhgdoua', 'problem', 'mit', 'eu', 'tool', 'tmqfjard', 'qzhgdoua'] processed_text: ['problem', 'mit', 'eu', 'tool', 'tmqfjard', 'qzhgdoua', 'problem', 'mit', 'eu', 'tool', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['problem'], ['mit'], ['eu'], ['tool'], ['tmqfjard'], ['qzhgdoua'], ['problem'], ['mit'], ['eu'], ['tool'], ['tmqfjard'], ['qzhgdoua']] k: 1653 len: <class 'list'> Data: ['please', 'create', 'folder', 'team', 'drive', 'rth', 'would', 'please', 'create', 'folder', 'team', 'drive', 'rth', 'name', 'hr', 'tr', 'full', 'access', 'rtnzvplq', 'erhmuncq', '\u200b\u200brtgdcoun', 'pngufmvq', 'naruedlk', 'mpvhakdq', 'efodqiuh', 'tpfnzkli', 'rcwpvkyb', 'exgjscql', 'gabryltke', 'sch', 'tt', 'many', 'thanks', 'gabryltke', 'fqs', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strict', 'prohibited', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['please', 'create', 'folder', 'team', 'drive', 'rth', 'would', 'please', 'create', 'folder', 'team', 'drive', 'rth', 'name', 'hr', 'tr', 'full', 'access', 'rtnzvplq', 'erhmuncq', '\u200b\u200brtgdcoun', 'pngufmvq', 'naruedlk', 'mpvhakdq', 'efodqiuh', 'tpfnzkli', 'rcwpvkyb', 'exgjscql', 'gabryltke', 'sch', 'tt', 'many', 'thanks', 'gabryltke', 'fqs', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strict', 'prohibited', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['please'], ['create'], ['folder'], ['team'], ['drive'], ['rth'], ['would'], ['please'], ['create'], ['folder'], ['team'], ['drive'], ['rth'], ['name'], ['hr'], ['tr'], ['full'], ['access'], ['rtnzvplq'], ['erhmuncq'], ['\u200b\u200brtgdcoun'], ['pngufmvq'], ['naruedlk'], ['mpvhakdq'], ['efodqiuh'], ['tpfnzkli'], ['rcwpvkyb'], ['exgjscql'], ['gabryltke'], ['sch'], ['tt'], ['many'], ['thanks'], ['gabryltke'], ['fqs'], ['solely'], ['intended'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strict'], ['prohibited'], ['received'], ['message'], ['due'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 1654 len: <class 'list'> Data: ['job', 'dir', 'failed', 'job', 'scheduler', 'job', 'dir', 'failed', 'job', 'scheduler'] processed_text: ['job', 'dir', 'failed', 'job', 'scheduler', 'job', 'dir', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['dir'], ['failed'], ['job'], ['scheduler'], ['job'], ['dir'], ['failed'], ['job'], ['scheduler']] k: 1655 len: <class 'list'> Data: ['request', 'lauacyltoe', 'hxgaycze', 'version', 'outlook', 'update', 'dear', 'sir', 'laptop', 'currently', 'version', 'microsoft', 'outlook', 'kindly', 'help', 'getting', 'lauacyltoe', 'hxgaycze', 'version', 'best'] processed_text: ['request', 'lauacyltoe', 'hxgaycze', 'version', 'outlook', 'update', 'dear', 'sir', 'laptop', 'currently', 'version', 'microsoft', 'outlook', 'kindly', 'help', 'getting', 'lauacyltoe', 'hxgaycze', 'version', 'best'] list_processed_text: [['request'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['outlook'], ['update'], ['dear'], ['sir'], ['laptop'], ['currently'], ['version'], ['microsoft'], ['outlook'], ['kindly'], ['help'], ['getting'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['best']] k: 1656 len: <class 'list'> Data: ['latitude', 'tab', 'detecting', 'telecom', 'vendor', 'broadband', 'sim', 'latitude', 'tab', 'detecting', 'telecom', 'vendor', 'broadband', 'sim', 'phone'] processed_text: ['latitude', 'tab', 'detecting', 'telecom', 'vendor', 'broadband', 'sim', 'latitude', 'tab', 'detecting', 'telecom', 'vendor', 'broadband', 'sim', 'phone'] list_processed_text: [['latitude'], ['tab'], ['detecting'], ['telecom'], ['vendor'], ['broadband'], ['sim'], ['latitude'], ['tab'], ['detecting'], ['telecom'], ['vendor'], ['broadband'], ['sim'], ['phone']] k: 1657 len: <class 'list'> Data: ['owner', 'group', 'bhty', 'plc', 'yhhm', 'er', 'available', 'gave', 'approval', 'owner', 'group', 'bhty', 'plc', 'yhhm', 'er', 'available', 'gave', 'approval', 'add', 'ploxzuts', 'utvimnwo', 'attaching', 'approval', 'mail', 'thvnfs', 'anyhusppa', 'pm', 'gzjtweph', 'mnslwfqv', 'fw', 'inc', 'add', 'name', 'distribution', 'list', 'fyi', 'best'] processed_text: ['owner', 'group', 'bhty', 'plc', 'yhhm', 'er', 'available', 'gave', 'approval', 'owner', 'group', 'bhty', 'plc', 'yhhm', 'er', 'available', 'gave', 'approval', 'add', 'ploxzuts', 'utvimnwo', 'attaching', 'approval', 'mail', 'thvnfs', 'anyhusppa', 'pm', 'gzjtweph', 'mnslwfqv', 'fw', 'inc', 'add', 'name', 'distribution', 'list', 'fyi', 'best'] list_processed_text: [['owner'], ['group'], ['bhty'], ['plc'], ['yhhm'], ['er'], ['available'], ['gave'], ['approval'], ['owner'], ['group'], ['bhty'], ['plc'], ['yhhm'], ['er'], ['available'], ['gave'], ['approval'], ['add'], ['ploxzuts'], ['utvimnwo'], ['attaching'], ['approval'], ['mail'], ['thvnfs'], ['anyhusppa'], ['pm'], ['gzjtweph'], ['mnslwfqv'], ['fw'], ['inc'], ['add'], ['name'], ['distribution'], ['list'], ['fyi'], ['best']] k: 1658 len: <class 'list'> Data: ['gso', 'hotline', 'working', 'gso', 'hotline', 'working', 'new', 'well', 'old', 'number', 'tried', 'user', 'getting', 'welcome', 'message', 'blank', 'nothing', 'heard'] processed_text: ['gso', 'hotline', 'working', 'gso', 'hotline', 'working', 'new', 'well', 'old', 'number', 'tried', 'user', 'getting', 'welcome', 'message', 'blank', 'nothing', 'heard'] list_processed_text: [['gso'], ['hotline'], ['working'], ['gso'], ['hotline'], ['working'], ['new'], ['well'], ['old'], ['number'], ['tried'], ['user'], ['getting'], ['welcome'], ['message'], ['blank'], ['nothing'], ['heard']] k: 1659 len: <class 'list'> Data: ['reset', 'password', 'wcrbmgon', 'kcudbnrw', 'mail', 'reset', 'password', 'wcrbmgon', 'kcudbnrw', 'mail'] processed_text: ['reset', 'password', 'wcrbmgon', 'kcudbnrw', 'mail', 'reset', 'password', 'wcrbmgon', 'kcudbnrw', 'mail'] list_processed_text: [['reset'], ['password'], ['wcrbmgon'], ['kcudbnrw'], ['mail'], ['reset'], ['password'], ['wcrbmgon'], ['kcudbnrw'], ['mail']] k: 1660 len: <class 'list'> Data: ['machine', 'pc', 'without', 'function', 'please', 'check', 'machine', 'pc', 'without', 'function', 'please', 'check'] processed_text: ['machine', 'pc', 'without', 'function', 'please', 'check', 'machine', 'pc', 'without', 'function', 'please', 'check'] list_processed_text: [['machine'], ['pc'], ['without'], ['function'], ['please'], ['check'], ['machine'], ['pc'], ['without'], ['function'], ['please'], ['check']] k: 1661 len: <class 'list'> Data: ['faxen', 'von', 'purchase', 'order', 'direkt', 'au', 'der', 'po', 'schl', 'gt', 'seit', 'gestern', 'r', 'alle', 'fehl', 'faxen', 'von', 'purchase', 'order', 'direkt', 'au', 'der', 'po', 'schl', 'gt', 'seit', 'gestern', 'r', 'alle', 'fehl', 'faxing', 'purchase', 'order', 'directly', 'po', 'unsuccessful', 'since', 'yesterday'] processed_text: ['faxen', 'von', 'purchase', 'order', 'direkt', 'au', 'der', 'po', 'schl', 'gt', 'seit', 'gestern', 'r', 'alle', 'fehl', 'faxen', 'von', 'purchase', 'order', 'direkt', 'au', 'der', 'po', 'schl', 'gt', 'seit', 'gestern', 'r', 'alle', 'fehl', 'faxing', 'purchase', 'order', 'directly', 'po', 'unsuccessful', 'since', 'yesterday'] list_processed_text: [['faxen'], ['von'], ['purchase'], ['order'], ['direkt'], ['au'], ['der'], ['po'], ['schl'], ['gt'], ['seit'], ['gestern'], ['r'], ['alle'], ['fehl'], ['faxen'], ['von'], ['purchase'], ['order'], ['direkt'], ['au'], ['der'], ['po'], ['schl'], ['gt'], ['seit'], ['gestern'], ['r'], ['alle'], ['fehl'], ['faxing'], ['purchase'], ['order'], ['directly'], ['po'], ['unsuccessful'], ['since'], ['yesterday']] k: 1662 len: <class 'list'> Data: ['computer', 'r', 'erosion', 'machine', 'defective', 'youfzmgp', 'xvysrnmb', 'computer', 'r', 'erosion', 'machine', 'defective', 'youfzmgp', 'xvysrnmb'] processed_text: ['computer', 'r', 'erosion', 'machine', 'defective', 'youfzmgp', 'xvysrnmb', 'computer', 'r', 'erosion', 'machine', 'defective', 'youfzmgp', 'xvysrnmb'] list_processed_text: [['computer'], ['r'], ['erosion'], ['machine'], ['defective'], ['youfzmgp'], ['xvysrnmb'], ['computer'], ['r'], ['erosion'], ['machine'], ['defective'], ['youfzmgp'], ['xvysrnmb']] k: 1663 len: <class 'list'> Data: ['reset', 'password', 'xbsckemt', 'durnfyxb', 'hello', 'please', 'use', 'password', 'r', 'appricatehub', 'com', 'impact', 'award', 'security', 'question', 'like', 'first', 'school', 'attended', 'cannot', 'answered', 'correctly', 'thank'] processed_text: ['reset', 'password', 'xbsckemt', 'durnfyxb', 'hello', 'please', 'use', 'password', 'r', 'appricatehub', 'com', 'impact', 'award', 'security', 'question', 'like', 'first', 'school', 'attended', 'cannot', 'answered', 'correctly', 'thank'] list_processed_text: [['reset'], ['password'], ['xbsckemt'], ['durnfyxb'], ['hello'], ['please'], ['use'], ['password'], ['r'], ['appricatehub'], ['com'], ['impact'], ['award'], ['security'], ['question'], ['like'], ['first'], ['school'], ['attended'], ['cannot'], ['answered'], ['correctly'], ['thank']] k: 1664 len: <class 'list'> Data: ['new', 'customer', 'problme', 'created', 'new', 'customer', 'account', 'problem', 'showns', 'customer', 'markhtyed', 'deletion', 'sale', 'area', 'selected', 'please', 'help', 'handle'] processed_text: ['new', 'customer', 'problme', 'created', 'new', 'customer', 'account', 'problem', 'showns', 'customer', 'markhtyed', 'deletion', 'sale', 'area', 'selected', 'please', 'help', 'handle'] list_processed_text: [['new'], ['customer'], ['problme'], ['created'], ['new'], ['customer'], ['account'], ['problem'], ['showns'], ['customer'], ['markhtyed'], ['deletion'], ['sale'], ['area'], ['selected'], ['please'], ['help'], ['handle']] k: 1665 len: <class 'list'> Data: ['outlook', 'getting', 'mail', 'outlook', 'getting', 'mail', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'govind', 'hello', 'ic', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'please', 'click', 'link', 'run', 'twice', 'give', 'id', 'password', 'govind', 'day', 'back', 'created', 'folder', 'pollaurid', 'message', 'dwfiykeo', 'argtxmvcumar', 'ok', 'please', 'provide', 'access', 'system', 'govind', 'working', 'send', 'teamviewer', 'dwfiykeo', 'argtxmvcumar', 'please', 'try', 'link', 'govind', 'tinyurl', 'tinyurl'] processed_text: ['outlook', 'getting', 'mail', 'outlook', 'getting', 'mail', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'govind', 'hello', 'ic', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'please', 'click', 'link', 'run', 'twice', 'give', 'id', 'password', 'govind', 'day', 'back', 'created', 'folder', 'pollaurid', 'message', 'dwfiykeo', 'argtxmvcumar', 'ok', 'please', 'provide', 'access', 'system', 'govind', 'working', 'send', 'teamviewer', 'dwfiykeo', 'argtxmvcumar', 'please', 'try', 'link', 'govind', 'tinyurl', 'tinyurl'] list_processed_text: [['outlook'], ['getting'], ['mail'], ['outlook'], ['getting'], ['mail'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['govind'], ['hello'], ['ic'], ['website'], ['visitor'], ['joined'], ['conversation'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['please'], ['click'], ['link'], ['run'], ['twice'], ['give'], ['id'], ['password'], ['govind'], ['day'], ['back'], ['created'], ['folder'], ['pollaurid'], ['message'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['please'], ['provide'], ['access'], ['system'], ['govind'], ['working'], ['send'], ['teamviewer'], ['dwfiykeo'], ['argtxmvcumar'], ['please'], ['try'], ['link'], ['govind'], ['tinyurl'], ['tinyurl']] k: 1666 len: <class 'list'> Data: ['archiving', 'tool', 'viewer', 'archiving', 'tool', 'installed', 'pc', 'view', 'attachment', 'erp', 'could', 'please', 'help'] processed_text: ['archiving', 'tool', 'viewer', 'archiving', 'tool', 'installed', 'pc', 'view', 'attachment', 'erp', 'could', 'please', 'help'] list_processed_text: [['archiving'], ['tool'], ['viewer'], ['archiving'], ['tool'], ['installed'], ['pc'], ['view'], ['attachment'], ['erp'], ['could'], ['please'], ['help']] k: 1667 len: <class 'list'> Data: ['unable', 'submit', 'lean', 'tracker', 'unable', 'submit', 'lean', 'tracker'] processed_text: ['unable', 'submit', 'lean', 'tracker', 'unable', 'submit', 'lean', 'tracker'] list_processed_text: [['unable'], ['submit'], ['lean'], ['tracker'], ['unable'], ['submit'], ['lean'], ['tracker']] k: 1668 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1669 len: <class 'list'> Data: ['mouse', 'defect', 'niptbwdq', 'csenjruz', 'mouse', 'defect', 'niptbwdq', 'csenjruz'] processed_text: ['mouse', 'defect', 'niptbwdq', 'csenjruz', 'mouse', 'defect', 'niptbwdq', 'csenjruz'] list_processed_text: [['mouse'], ['defect'], ['niptbwdq'], ['csenjruz'], ['mouse'], ['defect'], ['niptbwdq'], ['csenjruz']] k: 1670 len: <class 'list'> Data: ['probleme', 'mit', 'w', 'cad', 'wsboedtj', 'yvlswgxb', 'probleme', 'mit', 'w', 'cad', 'wsboedtj', 'yvlswgxb'] processed_text: ['probleme', 'mit', 'w', 'cad', 'wsboedtj', 'yvlswgxb', 'probleme', 'mit', 'w', 'cad', 'wsboedtj', 'yvlswgxb'] list_processed_text: [['probleme'], ['mit'], ['w'], ['cad'], ['wsboedtj'], ['yvlswgxb'], ['probleme'], ['mit'], ['w'], ['cad'], ['wsboedtj'], ['yvlswgxb']] k: 1671 len: <class 'list'> Data: ['engineering', 'tool', 'urgent', 'customer', 'drawing', 'change', 'replace', 'file', 'possible', 'briefly', 'describe', 'trying', 'issue', 'encountered', 'possible', 'replace', 'original', 'file', 'following', 'error', 'message', 'occurs', 'please', 'refer', 'attached', 'picture', 'please', 'include', 'screenshot', 'error', 'message'] processed_text: ['engineering', 'tool', 'urgent', 'customer', 'drawing', 'change', 'replace', 'file', 'possible', 'briefly', 'describe', 'trying', 'issue', 'encountered', 'possible', 'replace', 'original', 'file', 'following', 'error', 'message', 'occurs', 'please', 'refer', 'attached', 'picture', 'please', 'include', 'screenshot', 'error', 'message'] list_processed_text: [['engineering'], ['tool'], ['urgent'], ['customer'], ['drawing'], ['change'], ['replace'], ['file'], ['possible'], ['briefly'], ['describe'], ['trying'], ['issue'], ['encountered'], ['possible'], ['replace'], ['original'], ['file'], ['following'], ['error'], ['message'], ['occurs'], ['please'], ['refer'], ['attached'], ['picture'], ['please'], ['include'], ['screenshot'], ['error'], ['message']] k: 1672 len: <class 'list'> Data: ['outlook', 'laptop', 'startup', 'anymore', 'errormessage', 'name', 'tuzkadxv', 'rxloutpn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'laptop', 'startup', 'anymore', 'errormessage', 'new', 'guard', 'page', 'stack', 'cannot', 'created'] processed_text: ['outlook', 'laptop', 'startup', 'anymore', 'errormessage', 'name', 'tuzkadxv', 'rxloutpn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'laptop', 'startup', 'anymore', 'errormessage', 'new', 'guard', 'page', 'stack', 'cannot', 'created'] list_processed_text: [['outlook'], ['laptop'], ['startup'], ['anymore'], ['errormessage'], ['name'], ['tuzkadxv'], ['rxloutpn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['laptop'], ['startup'], ['anymore'], ['errormessage'], ['new'], ['guard'], ['page'], ['stack'], ['cannot'], ['created']] k: 1673 len: <class 'list'> Data: ['unable', 'create', 'sto', 'mm', 'mm', 'unable', 'create', 'sto', 'mm', 'per', 'pr', 'mm', 'per', 'purrqs', 'found', 'error', 'message', 'per', 'attached', 'please', 'help', 'fixing', 'error', 'advise', 'back', 'u', 'aerp'] processed_text: ['unable', 'create', 'sto', 'mm', 'mm', 'unable', 'create', 'sto', 'mm', 'per', 'pr', 'mm', 'per', 'purrqs', 'found', 'error', 'message', 'per', 'attached', 'please', 'help', 'fixing', 'error', 'advise', 'back', 'u', 'aerp'] list_processed_text: [['unable'], ['create'], ['sto'], ['mm'], ['mm'], ['unable'], ['create'], ['sto'], ['mm'], ['per'], ['pr'], ['mm'], ['per'], ['purrqs'], ['found'], ['error'], ['message'], ['per'], ['attached'], ['please'], ['help'], ['fixing'], ['error'], ['advise'], ['back'], ['u'], ['aerp']] k: 1674 len: <class 'list'> Data: ['problem', 'skype', 'hello', 'dear', 'colleague', 'colleague', "can't", 'start', 'skype', 'error', 'message', 'always', 'come', 'dv', 'note', 'best', 'wish'] processed_text: ['problem', 'skype', 'hello', 'dear', 'colleague', 'colleague', "can't", 'start', 'skype', 'error', 'message', 'always', 'come', 'dv', 'note', 'best', 'wish'] list_processed_text: [['problem'], ['skype'], ['hello'], ['dear'], ['colleague'], ['colleague'], ["can't"], ['start'], ['skype'], ['error'], ['message'], ['always'], ['come'], ['dv'], ['note'], ['best'], ['wish']] k: 1675 len: <class 'list'> Data: ['accound', 'locked', 'ad', 'accound', 'locked', 'ad'] processed_text: ['accound', 'locked', 'ad', 'accound', 'locked', 'ad'] list_processed_text: [['accound'], ['locked'], ['ad'], ['accound'], ['locked'], ['ad']] k: 1676 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1677 len: <class 'list'> Data: ['sale', 'record', 'amy', 'li', 'pm', 'pradyhtueep', 'yyufs', 'mthyn', 'jtyhnifer', 'ayhtrvin', 'yzhao', 'crysyhtal', 'xithya', 'mathgie', 'ztyhng', 'alvrhn', 'twhyang', 'xamtgvnw', 'usdekfzq', 'sale', 'record', 'prathryep', 'want', 'understand', 'cost', 'high', 'mm', 'plant', 'select', 'one', 'example', 'mm', 'mm', 'manufactured', 'plant', 'ship', 'plant', 'sale', 'order', 'relevant', 'dn', 'intercompany', 'billing', 'billing', 'plant', 'shipment', 'cost', 'plant', 'rmb', 'understand', 'cost', 'plant', 'high', 'delivery', 'plant', 'sale', 'cost', 'plant', 'rmb', 'margin', 'report', 'plant', 'high', 'std', 'cost', 'plant', 'rmb', 'cost', 'plant', 'rmb', 'based', 'lot', 'size', 'qty', 'sale', 'order'] processed_text: ['sale', 'record', 'amy', 'li', 'pm', 'pradyhtueep', 'yyufs', 'mthyn', 'jtyhnifer', 'ayhtrvin', 'yzhao', 'crysyhtal', 'xithya', 'mathgie', 'ztyhng', 'alvrhn', 'twhyang', 'xamtgvnw', 'usdekfzq', 'sale', 'record', 'prathryep', 'want', 'understand', 'cost', 'high', 'mm', 'plant', 'select', 'one', 'example', 'mm', 'mm', 'manufactured', 'plant', 'ship', 'plant', 'sale', 'order', 'relevant', 'dn', 'intercompany', 'billing', 'billing', 'plant', 'shipment', 'cost', 'plant', 'rmb', 'understand', 'cost', 'plant', 'high', 'delivery', 'plant', 'sale', 'cost', 'plant', 'rmb', 'margin', 'report', 'plant', 'high', 'std', 'cost', 'plant', 'rmb', 'cost', 'plant', 'rmb', 'based', 'lot', 'size', 'qty', 'sale', 'order'] list_processed_text: [['sale'], ['record'], ['amy'], ['li'], ['pm'], ['pradyhtueep'], ['yyufs'], ['mthyn'], ['jtyhnifer'], ['ayhtrvin'], ['yzhao'], ['crysyhtal'], ['xithya'], ['mathgie'], ['ztyhng'], ['alvrhn'], ['twhyang'], ['xamtgvnw'], ['usdekfzq'], ['sale'], ['record'], ['prathryep'], ['want'], ['understand'], ['cost'], ['high'], ['mm'], ['plant'], ['select'], ['one'], ['example'], ['mm'], ['mm'], ['manufactured'], ['plant'], ['ship'], ['plant'], ['sale'], ['order'], ['relevant'], ['dn'], ['intercompany'], ['billing'], ['billing'], ['plant'], ['shipment'], ['cost'], ['plant'], ['rmb'], ['understand'], ['cost'], ['plant'], ['high'], ['delivery'], ['plant'], ['sale'], ['cost'], ['plant'], ['rmb'], ['margin'], ['report'], ['plant'], ['high'], ['std'], ['cost'], ['plant'], ['rmb'], ['cost'], ['plant'], ['rmb'], ['based'], ['lot'], ['size'], ['qty'], ['sale'], ['order']] k: 1678 len: <class 'list'> Data: ['credit', 'limit', 'revision', 'company', 'tooling', 'company', 'distributor', 'yhmwxsqj', 'ugnthxky', 'pradyhtueep', 'yyufs', 'fw', 'credit', 'limit', 'revision', 'pradtheyp', 'please', 'look', 'revision', 'request', 'company', 'tooling', 'company', 'credit', 'limit', 'distributor', 'one', 'ia', 'point', 'schedule', 'closure', 'sep', 'need', 'support', 'complete', 'activity', 'respond', 'ia', 'team', 'closure', 'point', 'best'] processed_text: ['credit', 'limit', 'revision', 'company', 'tooling', 'company', 'distributor', 'yhmwxsqj', 'ugnthxky', 'pradyhtueep', 'yyufs', 'fw', 'credit', 'limit', 'revision', 'pradtheyp', 'please', 'look', 'revision', 'request', 'company', 'tooling', 'company', 'credit', 'limit', 'distributor', 'one', 'ia', 'point', 'schedule', 'closure', 'sep', 'need', 'support', 'complete', 'activity', 'respond', 'ia', 'team', 'closure', 'point', 'best'] list_processed_text: [['credit'], ['limit'], ['revision'], ['company'], ['tooling'], ['company'], ['distributor'], ['yhmwxsqj'], ['ugnthxky'], ['pradyhtueep'], ['yyufs'], ['fw'], ['credit'], ['limit'], ['revision'], ['pradtheyp'], ['please'], ['look'], ['revision'], ['request'], ['company'], ['tooling'], ['company'], ['credit'], ['limit'], ['distributor'], ['one'], ['ia'], ['point'], ['schedule'], ['closure'], ['sep'], ['need'], ['support'], ['complete'], ['activity'], ['respond'], ['ia'], ['team'], ['closure'], ['point'], ['best']] k: 1679 len: <class 'list'> Data: ['account', 'getting', 'locked', 'daily', 'account', 'getting', 'locked', 'daily'] processed_text: ['account', 'getting', 'locked', 'daily', 'account', 'getting', 'locked', 'daily'] list_processed_text: [['account'], ['getting'], ['locked'], ['daily'], ['account'], ['getting'], ['locked'], ['daily']] k: 1680 len: <class 'list'> Data: ['unlock', 'erp', 'account', 'hello', 'could', 'please', 'help', 'unlock', 'erp', 'sid', 'account', 'user', 'id', 'lilp'] processed_text: ['unlock', 'erp', 'account', 'hello', 'could', 'please', 'help', 'unlock', 'erp', 'sid', 'account', 'user', 'id', 'lilp'] list_processed_text: [['unlock'], ['erp'], ['account'], ['hello'], ['could'], ['please'], ['help'], ['unlock'], ['erp'], ['sid'], ['account'], ['user'], ['id'], ['lilp']] k: 1681 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1682 len: <class 'list'> Data: ['engineering', 'tool', 'kpm', 'project', 'number', 'right', 'order', 'hello', 'engineering', 'tool', 'kpm', 'project', 'number', 'numerirtcal', 'right', 'order', 'anymore'] processed_text: ['engineering', 'tool', 'kpm', 'project', 'number', 'right', 'order', 'hello', 'engineering', 'tool', 'kpm', 'project', 'number', 'numerirtcal', 'right', 'order', 'anymore'] list_processed_text: [['engineering'], ['tool'], ['kpm'], ['project'], ['number'], ['right'], ['order'], ['hello'], ['engineering'], ['tool'], ['kpm'], ['project'], ['number'], ['numerirtcal'], ['right'], ['order'], ['anymore']] k: 1683 len: <class 'list'> Data: ['lan', 'connection', 'training', 'room', 'workig', 'also', 'need', 'mini', 'dp', 'vga', 'adapter', 'lan', 'connection', 'training', 'room', 'workig', 'also', 'need', 'mini', 'dp', 'vga', 'adapter'] processed_text: ['lan', 'connection', 'training', 'room', 'workig', 'also', 'need', 'mini', 'dp', 'vga', 'adapter', 'lan', 'connection', 'training', 'room', 'workig', 'also', 'need', 'mini', 'dp', 'vga', 'adapter'] list_processed_text: [['lan'], ['connection'], ['training'], ['room'], ['workig'], ['also'], ['need'], ['mini'], ['dp'], ['vga'], ['adapter'], ['lan'], ['connection'], ['training'], ['room'], ['workig'], ['also'], ['need'], ['mini'], ['dp'], ['vga'], ['adapter']] k: 1684 len: <class 'list'> Data: ['hostname', 'disk', 'space', 'label', 'dat', 'hostname', 'consumed', 'available', 'space', 'gb', 'gb', 'hostname', 'disk', 'space', 'label', 'dat', 'hostname', 'consumed', 'available', 'space', 'gb', 'gb'] processed_text: ['hostname', 'disk', 'space', 'label', 'dat', 'hostname', 'consumed', 'available', 'space', 'gb', 'gb', 'hostname', 'disk', 'space', 'label', 'dat', 'hostname', 'consumed', 'available', 'space', 'gb', 'gb'] list_processed_text: [['hostname'], ['disk'], ['space'], ['label'], ['dat'], ['hostname'], ['consumed'], ['available'], ['space'], ['gb'], ['gb'], ['hostname'], ['disk'], ['space'], ['label'], ['dat'], ['hostname'], ['consumed'], ['available'], ['space'], ['gb'], ['gb']] k: 1685 len: <class 'list'> Data: ['solid', 'work', 'issue', 'trying', 'give', 'print', 'solid', 'work', 'crash', 'solid', 'work', 'issue', 'trying', 'give', 'print', 'solid', 'work', 'crash', 'see', 'attachment', 'ph', 'ph'] processed_text: ['solid', 'work', 'issue', 'trying', 'give', 'print', 'solid', 'work', 'crash', 'solid', 'work', 'issue', 'trying', 'give', 'print', 'solid', 'work', 'crash', 'see', 'attachment', 'ph', 'ph'] list_processed_text: [['solid'], ['work'], ['issue'], ['trying'], ['give'], ['print'], ['solid'], ['work'], ['crash'], ['solid'], ['work'], ['issue'], ['trying'], ['give'], ['print'], ['solid'], ['work'], ['crash'], ['see'], ['attachment'], ['ph'], ['ph']] k: 1686 len: <class 'list'> Data: ['outlook', 'configuration', 'new', 'mobile', 'handset', 'hi', 'request', 'support', 'configure', 'setting', 'outlook', 'mail', 'new', 'motorola', 'moto', 'plus', 'handset'] processed_text: ['outlook', 'configuration', 'new', 'mobile', 'handset', 'hi', 'request', 'support', 'configure', 'setting', 'outlook', 'mail', 'new', 'motorola', 'moto', 'plus', 'handset'] list_processed_text: [['outlook'], ['configuration'], ['new'], ['mobile'], ['handset'], ['hi'], ['request'], ['support'], ['configure'], ['setting'], ['outlook'], ['mail'], ['new'], ['motorola'], ['moto'], ['plus'], ['handset']] k: 1687 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1688 len: <class 'list'> Data: ['able', 'login', 'ethic', 'dear', 'sir', 'able', 'login', 'ethic', 'portal', 'complete', 'course', 'kindly', 'needful', 'error', 'screen', 'shot', 'attached', 'reference', 'best'] processed_text: ['able', 'login', 'ethic', 'dear', 'sir', 'able', 'login', 'ethic', 'portal', 'complete', 'course', 'kindly', 'needful', 'error', 'screen', 'shot', 'attached', 'reference', 'best'] list_processed_text: [['able'], ['login'], ['ethic'], ['dear'], ['sir'], ['able'], ['login'], ['ethic'], ['portal'], ['complete'], ['course'], ['kindly'], ['needful'], ['error'], ['screen'], ['shot'], ['attached'], ['reference'], ['best']] k: 1689 len: <class 'list'> Data: ['reset', 'password', 'eglavnhx', 'uprodleq', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'eglavnhx', 'uprodleq', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['eglavnhx'], ['uprodleq'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1690 len: <class 'list'> Data: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler']] k: 1691 len: <class 'list'> Data: ['impact', 'award', 'login', 'issue', 'impact', 'award', 'login', 'issue'] processed_text: ['impact', 'award', 'login', 'issue', 'impact', 'award', 'login', 'issue'] list_processed_text: [['impact'], ['award'], ['login'], ['issue'], ['impact'], ['award'], ['login'], ['issue']] k: 1692 len: <class 'list'> Data: ['mm', 'pur', 'req', 'ko', 'assign', 'user', 'yeyhtung', 'kimthy', 'vvkuimtyu', 'sid', 'system', 'mm', 'pur', 'req', 'ko', 'assign', 'user', 'yeyhtung', 'kimthy', 'vvkuimtyu', 'sid', 'system', 'alkuozfr', 'bhqgdoiu', 'pm', 'sudghhahjkkarreddy', 'rangini', 'dbwkxalj', 'cnhgysju', 'suhtnhdyio', 'psfshytd', 'seocompanyxv', 'syxewkji', 'erp', 'purchasing', 'hr', 'global', 'datateam', 'ticket', 'erp', 'additional', 'access', 'role', 'requested', 'approved', 'numerous', 'time', 'past', 'role', 'approved', 'still', 'resolve', 'issue', 'hand', 'issue', 'deal', 'user', 'attribute', 'possibly', 'hr', 'org', 'data', 'please', 'loop', 'erp', 'purchasing', 'team', 'global', 'hr', 'data', 'team', 'get', 'completed', 'hell', 'doug', 'englehart', 'manager', 'global', 'sourcing', 'system', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com', 'sudghhahjkkarreddy', 'rangini', 'alkuozfr', 'bhqgdoiu', 'dbwkxalj', 'cnhgysju', 'suhtnhdyio', 'psfshytd', 'seocompanyxv', 'syxewkji', 'ticket', 'erp', 'additional', 'access', 'hi', 'douglas', 'purchase', 'role', 'assigned', 'user', 'issue', 'please', 'check', 'need', 'assign', 'role', 'user', 'seocompanyxv', 'syxewkji', 'vvkuimtyu', 'sid', 'system', 'please', 'provide', 'approval', 'role', 'mm', 'pur', 'req', 'ko'] processed_text: ['mm', 'pur', 'req', 'ko', 'assign', 'user', 'yeyhtung', 'kimthy', 'vvkuimtyu', 'sid', 'system', 'mm', 'pur', 'req', 'ko', 'assign', 'user', 'yeyhtung', 'kimthy', 'vvkuimtyu', 'sid', 'system', 'alkuozfr', 'bhqgdoiu', 'pm', 'sudghhahjkkarreddy', 'rangini', 'dbwkxalj', 'cnhgysju', 'suhtnhdyio', 'psfshytd', 'seocompanyxv', 'syxewkji', 'erp', 'purchasing', 'hr', 'global', 'datateam', 'ticket', 'erp', 'additional', 'access', 'role', 'requested', 'approved', 'numerous', 'time', 'past', 'role', 'approved', 'still', 'resolve', 'issue', 'hand', 'issue', 'deal', 'user', 'attribute', 'possibly', 'hr', 'org', 'data', 'please', 'loop', 'erp', 'purchasing', 'team', 'global', 'hr', 'data', 'team', 'get', 'completed', 'hell', 'doug', 'englehart', 'manager', 'global', 'sourcing', 'system', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com', 'sudghhahjkkarreddy', 'rangini', 'alkuozfr', 'bhqgdoiu', 'dbwkxalj', 'cnhgysju', 'suhtnhdyio', 'psfshytd', 'seocompanyxv', 'syxewkji', 'ticket', 'erp', 'additional', 'access', 'hi', 'douglas', 'purchase', 'role', 'assigned', 'user', 'issue', 'please', 'check', 'need', 'assign', 'role', 'user', 'seocompanyxv', 'syxewkji', 'vvkuimtyu', 'sid', 'system', 'please', 'provide', 'approval', 'role', 'mm', 'pur', 'req', 'ko'] list_processed_text: [['mm'], ['pur'], ['req'], ['ko'], ['assign'], ['user'], ['yeyhtung'], ['kimthy'], ['vvkuimtyu'], ['sid'], ['system'], ['mm'], ['pur'], ['req'], ['ko'], ['assign'], ['user'], ['yeyhtung'], ['kimthy'], ['vvkuimtyu'], ['sid'], ['system'], ['alkuozfr'], ['bhqgdoiu'], ['pm'], ['sudghhahjkkarreddy'], ['rangini'], ['dbwkxalj'], ['cnhgysju'], ['suhtnhdyio'], ['psfshytd'], ['seocompanyxv'], ['syxewkji'], ['erp'], ['purchasing'], ['hr'], ['global'], ['datateam'], ['ticket'], ['erp'], ['additional'], ['access'], ['role'], ['requested'], ['approved'], ['numerous'], ['time'], ['past'], ['role'], ['approved'], ['still'], ['resolve'], ['issue'], ['hand'], ['issue'], ['deal'], ['user'], ['attribute'], ['possibly'], ['hr'], ['org'], ['data'], ['please'], ['loop'], ['erp'], ['purchasing'], ['team'], ['global'], ['hr'], ['data'], ['team'], ['get'], ['completed'], ['hell'], ['doug'], ['englehart'], ['manager'], ['global'], ['sourcing'], ['system'], ['company'], ['inc'], ['technology'], ['way'], ['usa'], ['pa'], ['www'], ['company'], ['com'], ['sudghhahjkkarreddy'], ['rangini'], ['alkuozfr'], ['bhqgdoiu'], ['dbwkxalj'], ['cnhgysju'], ['suhtnhdyio'], ['psfshytd'], ['seocompanyxv'], ['syxewkji'], ['ticket'], ['erp'], ['additional'], ['access'], ['hi'], ['douglas'], ['purchase'], ['role'], ['assigned'], ['user'], ['issue'], ['please'], ['check'], ['need'], ['assign'], ['role'], ['user'], ['seocompanyxv'], ['syxewkji'], ['vvkuimtyu'], ['sid'], ['system'], ['please'], ['provide'], ['approval'], ['role'], ['mm'], ['pur'], ['req'], ['ko']] k: 1693 len: <class 'list'> Data: ['user', 'need', 'help', 'create', 'delivery', 'dear', 'would', 'pls', 'help', 'check'] processed_text: ['user', 'need', 'help', 'create', 'delivery', 'dear', 'would', 'pls', 'help', 'check'] list_processed_text: [['user'], ['need'], ['help'], ['create'], ['delivery'], ['dear'], ['would'], ['pls'], ['help'], ['check']] k: 1694 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1695 len: <class 'list'> Data: ['error', 'login', 'mii', 'system', 'error', 'login', 'mii', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'mii', 'system', 'error', 'login', 'mii', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['mii'], ['system'], ['error'], ['login'], ['mii'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1696 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'dat', 'hostname', 'eafe', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'eafe', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'label', 'dat', 'hostname', 'eafe', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'eafe', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['eafe'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['eafe'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1697 len: <class 'list'> Data: ['amssm', 'volume', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g', 'amssm', 'volume', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['amssm', 'volume', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g', 'amssm', 'volume', 'ef', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['amssm'], ['volume'], ['ef'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['amssm'], ['volume'], ['ef'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1698 len: <class 'list'> Data: ['unable', 'log', 'collaboration', 'platform', 'unable', 'log', 'collaboration', 'platform'] processed_text: ['unable', 'log', 'collaboration', 'platform', 'unable', 'log', 'collaboration', 'platform'] list_processed_text: [['unable'], ['log'], ['collaboration'], ['platform'], ['unable'], ['log'], ['collaboration'], ['platform']] k: 1699 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 1700 len: <class 'list'> Data: ['ticket', 'update', 'inc', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inc', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inc'], ['ticket'], ['update'], ['inplant']] k: 1701 len: <class 'list'> Data: ['power', 'laptop', 'power', 'laptop'] processed_text: ['power', 'laptop', 'power', 'laptop'] list_processed_text: [['power'], ['laptop'], ['power'], ['laptop']] k: 1702 len: <class 'list'> Data: ['erp', 'logon', 'changed', 'password', 'password', 'management', 'toolpasswordmanager', 'attempt', 'logon', 'erp', 'password', 'recognized', 'mthyike', 'voyyhuek', 'senior', 'material', 'engineer'] processed_text: ['erp', 'logon', 'changed', 'password', 'password', 'management', 'toolpasswordmanager', 'attempt', 'logon', 'erp', 'password', 'recognized', 'mthyike', 'voyyhuek', 'senior', 'material', 'engineer'] list_processed_text: [['erp'], ['logon'], ['changed'], ['password'], ['password'], ['management'], ['toolpasswordmanager'], ['attempt'], ['logon'], ['erp'], ['password'], ['recognized'], ['mthyike'], ['voyyhuek'], ['senior'], ['material'], ['engineer']] k: 1703 len: <class 'list'> Data: ['outlook', 'outlook'] processed_text: ['outlook', 'outlook'] list_processed_text: [['outlook'], ['outlook']] k: 1704 len: <class 'list'> Data: ['unable', 'update', 'password', 'using', 'password', 'management', 'tool', 'link', 'unable', 'update', 'password', 'using', 'password', 'management', 'tool', 'link'] processed_text: ['unable', 'update', 'password', 'using', 'password', 'management', 'tool', 'link', 'unable', 'update', 'password', 'using', 'password', 'management', 'tool', 'link'] list_processed_text: [['unable'], ['update'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['link'], ['unable'], ['update'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['link']] k: 1705 len: <class 'list'> Data: ['usa', 'file', 'server', 'responding', 'appears', 'crashed', 'usa', 'file', 'server', 'responding', 'appears', 'crashed'] processed_text: ['usa', 'file', 'server', 'responding', 'appears', 'crashed', 'usa', 'file', 'server', 'responding', 'appears', 'crashed'] list_processed_text: [['usa'], ['file'], ['server'], ['responding'], ['appears'], ['crashed'], ['usa'], ['file'], ['server'], ['responding'], ['appears'], ['crashed']] k: 1706 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1707 len: <class 'list'> Data: ['cannot', 'send', 'email', 'customer', 'rolcgqhx', 'ehndjmlv', 'communication', 'help', 'please', 'let', 'know', 'cannot', 'send', 'email', 'customer', 'best'] processed_text: ['cannot', 'send', 'email', 'customer', 'rolcgqhx', 'ehndjmlv', 'communication', 'help', 'please', 'let', 'know', 'cannot', 'send', 'email', 'customer', 'best'] list_processed_text: [['cannot'], ['send'], ['email'], ['customer'], ['rolcgqhx'], ['ehndjmlv'], ['communication'], ['help'], ['please'], ['let'], ['know'], ['cannot'], ['send'], ['email'], ['customer'], ['best']] k: 1708 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1709 len: <class 'list'> Data: ['please', 'reset', 'pas', 'word', 'sandop', 'please', 'reset', 'pas', 'word', 'sandop'] processed_text: ['please', 'reset', 'pas', 'word', 'sandop', 'please', 'reset', 'pas', 'word', 'sandop'] list_processed_text: [['please'], ['reset'], ['pas'], ['word'], ['sandop'], ['please'], ['reset'], ['pas'], ['word'], ['sandop']] k: 1710 len: <class 'list'> Data: ['provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'hello', 'could', 'please', 'provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'access', 'like', 'person', 'name', 'tyyhtuler', 'hiyhtull', 'hiyhllt', 'manager', 'name', 'user', 'id', 'vnjwsadx', 'iltywzjm', 'fidleyhtjp', 'best'] processed_text: ['provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'hello', 'could', 'please', 'provide', 'network', 'access', 'right', 'fuydxemo', 'fntmbpla', 'match', 'tyyhtuler', 'hiyhtull', 'access', 'like', 'person', 'name', 'tyyhtuler', 'hiyhtull', 'hiyhllt', 'manager', 'name', 'user', 'id', 'vnjwsadx', 'iltywzjm', 'fidleyhtjp', 'best'] list_processed_text: [['provide'], ['network'], ['access'], ['right'], ['fuydxemo'], ['fntmbpla'], ['match'], ['tyyhtuler'], ['hiyhtull'], ['provide'], ['network'], ['access'], ['right'], ['fuydxemo'], ['fntmbpla'], ['match'], ['tyyhtuler'], ['hiyhtull'], ['hello'], ['could'], ['please'], ['provide'], ['network'], ['access'], ['right'], ['fuydxemo'], ['fntmbpla'], ['match'], ['tyyhtuler'], ['hiyhtull'], ['access'], ['like'], ['person'], ['name'], ['tyyhtuler'], ['hiyhtull'], ['hiyhllt'], ['manager'], ['name'], ['user'], ['id'], ['vnjwsadx'], ['iltywzjm'], ['fidleyhtjp'], ['best']] k: 1711 len: <class 'list'> Data: ['unable', 'take', 'ethic', 'course', 'unable', 'take', 'ethic', 'course'] processed_text: ['unable', 'take', 'ethic', 'course', 'unable', 'take', 'ethic', 'course'] list_processed_text: [['unable'], ['take'], ['ethic'], ['course'], ['unable'], ['take'], ['ethic'], ['course']] k: 1712 len: <class 'list'> Data: ['monitor', 'bright', 'yellow', 'gtehdnyu', 'warms', 'monitor', 'bright', 'yellow', 'gtehdnyu', 'warms'] processed_text: ['monitor', 'bright', 'yellow', 'gtehdnyu', 'warms', 'monitor', 'bright', 'yellow', 'gtehdnyu', 'warms'] list_processed_text: [['monitor'], ['bright'], ['yellow'], ['gtehdnyu'], ['warms'], ['monitor'], ['bright'], ['yellow'], ['gtehdnyu'], ['warms']] k: 1713 len: <class 'list'> Data: ['discount', 'form', 'issue', 'infopath', 'discount', 'form', 'issue', 'infopath'] processed_text: ['discount', 'form', 'issue', 'infopath', 'discount', 'form', 'issue', 'infopath'] list_processed_text: [['discount'], ['form'], ['issue'], ['infopath'], ['discount'], ['form'], ['issue'], ['infopath']] k: 1714 len: <class 'list'> Data: ['prtqi', 'malfunction', 'prtqi', 'malfunction'] processed_text: ['prtqi', 'malfunction', 'prtqi', 'malfunction'] list_processed_text: [['prtqi'], ['malfunction'], ['prtqi'], ['malfunction']] k: 1715 len: <class 'list'> Data: ['need', 'print', 'pdf', 'software', 'need', 'adobe', 'professional', 'software', 'option', 'print', 'pdf', 'computer', 'name', 'lacl'] processed_text: ['need', 'print', 'pdf', 'software', 'need', 'adobe', 'professional', 'software', 'option', 'print', 'pdf', 'computer', 'name', 'lacl'] list_processed_text: [['need'], ['print'], ['pdf'], ['software'], ['need'], ['adobe'], ['professional'], ['software'], ['option'], ['print'], ['pdf'], ['computer'], ['name'], ['lacl']] k: 1716 len: <class 'list'> Data: ['user', 'unable', 'open', 'reporting', 'tool', 'user', 'unable', 'open', 'reporting', 'tool'] processed_text: ['user', 'unable', 'open', 'reporting', 'tool', 'user', 'unable', 'open', 'reporting', 'tool'] list_processed_text: [['user'], ['unable'], ['open'], ['reporting'], ['tool'], ['user'], ['unable'], ['open'], ['reporting'], ['tool']] k: 1717 len: <class 'list'> Data: ['finance', 'app', 'system', 'need', 'someone', 'db', 'group', 'verify', 'oracle', 'database', 'running', 'finance', 'app', 'system', 'need', 'someone', 'database', 'admin', 'group', 'verify', 'database', 'hfmp', 'server', 'hostname', 'running'] processed_text: ['finance', 'app', 'system', 'need', 'someone', 'db', 'group', 'verify', 'oracle', 'database', 'running', 'finance', 'app', 'system', 'need', 'someone', 'database', 'admin', 'group', 'verify', 'database', 'hfmp', 'server', 'hostname', 'running'] list_processed_text: [['finance'], ['app'], ['system'], ['need'], ['someone'], ['db'], ['group'], ['verify'], ['oracle'], ['database'], ['running'], ['finance'], ['app'], ['system'], ['need'], ['someone'], ['database'], ['admin'], ['group'], ['verify'], ['database'], ['hfmp'], ['server'], ['hostname'], ['running']] k: 1718 len: <class 'list'> Data: ['laptop', 'cannont', 'access', 'companysecure', 'companyguest', 'wifi', 'corporate', 'center', 'building', 'recently', 'received', 'gb', 'engineering', 'laptop', 'use', 'work', 'currently', 'work', 'tech', 'center', 'building', 'wired', 'docked', 'connection', 'wifi', 'company', 'secure', 'work', 'fine', 'two', 'meeting', 'today', 'corporate', 'center', 'building', 'cannot', 'connect', 'secure', 'wifi', 'network', 'frustrating', 'since', 'usually', 'require', 'laptop', 'internet', 'extent', 'meeting', 'please', 'assist'] processed_text: ['laptop', 'cannont', 'access', 'companysecure', 'companyguest', 'wifi', 'corporate', 'center', 'building', 'recently', 'received', 'gb', 'engineering', 'laptop', 'use', 'work', 'currently', 'work', 'tech', 'center', 'building', 'wired', 'docked', 'connection', 'wifi', 'company', 'secure', 'work', 'fine', 'two', 'meeting', 'today', 'corporate', 'center', 'building', 'cannot', 'connect', 'secure', 'wifi', 'network', 'frustrating', 'since', 'usually', 'require', 'laptop', 'internet', 'extent', 'meeting', 'please', 'assist'] list_processed_text: [['laptop'], ['cannont'], ['access'], ['companysecure'], ['companyguest'], ['wifi'], ['corporate'], ['center'], ['building'], ['recently'], ['received'], ['gb'], ['engineering'], ['laptop'], ['use'], ['work'], ['currently'], ['work'], ['tech'], ['center'], ['building'], ['wired'], ['docked'], ['connection'], ['wifi'], ['company'], ['secure'], ['work'], ['fine'], ['two'], ['meeting'], ['today'], ['corporate'], ['center'], ['building'], ['cannot'], ['connect'], ['secure'], ['wifi'], ['network'], ['frustrating'], ['since'], ['usually'], ['require'], ['laptop'], ['internet'], ['extent'], ['meeting'], ['please'], ['assist']] k: 1719 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1720 len: <class 'list'> Data: ['cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report', 'cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report'] processed_text: ['cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report', 'cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report'] list_processed_text: [['cyber'], ['security'], ['phish'], ['uacyltoe'], ['hxgaycze'], ['report'], ['cyber'], ['security'], ['phish'], ['uacyltoe'], ['hxgaycze'], ['report']] k: 1721 len: <class 'list'> Data: ['cannot', 'access', 'usa', 'usa', 'collaboration', 'platform', 'document', 'try', 'open', 'document', 'prompted', 'enter', 'email', 'address', 'password', 'process', 'repeat', 'change', 'password', 'today', 'know', 'anything'] processed_text: ['cannot', 'access', 'usa', 'usa', 'collaboration', 'platform', 'document', 'try', 'open', 'document', 'prompted', 'enter', 'email', 'address', 'password', 'process', 'repeat', 'change', 'password', 'today', 'know', 'anything'] list_processed_text: [['cannot'], ['access'], ['usa'], ['usa'], ['collaboration'], ['platform'], ['document'], ['try'], ['open'], ['document'], ['prompted'], ['enter'], ['email'], ['address'], ['password'], ['process'], ['repeat'], ['change'], ['password'], ['today'], ['know'], ['anything']] k: 1722 len: <class 'list'> Data: ['get', 'mysterious', 'java', 'error', 'every', 'boot', 'laptop', 'get', 'mysterious', 'java', 'error', 'every', 'boot', 'laptop'] processed_text: ['get', 'mysterious', 'java', 'error', 'every', 'boot', 'laptop', 'get', 'mysterious', 'java', 'error', 'every', 'boot', 'laptop'] list_processed_text: [['get'], ['mysterious'], ['java'], ['error'], ['every'], ['boot'], ['laptop'], ['get'], ['mysterious'], ['java'], ['error'], ['every'], ['boot'], ['laptop']] k: 1723 len: <class 'list'> Data: ['email', 'need', 'rckfthy', 'grind', 'added', 'microsoft', 'email'] processed_text: ['email', 'need', 'rckfthy', 'grind', 'added', 'microsoft', 'email'] list_processed_text: [['email'], ['need'], ['rckfthy'], ['grind'], ['added'], ['microsoft'], ['email']] k: 1724 len: <class 'list'> Data: ['cannot', 'print', 'paper', 'new', 'xerox', 'prtqx', 'cannot', 'print', 'paper', 'new', 'xerox', 'prtqx'] processed_text: ['cannot', 'print', 'paper', 'new', 'xerox', 'prtqx', 'cannot', 'print', 'paper', 'new', 'xerox', 'prtqx'] list_processed_text: [['cannot'], ['print'], ['paper'], ['new'], ['xerox'], ['prtqx'], ['cannot'], ['print'], ['paper'], ['new'], ['xerox'], ['prtqx']] k: 1725 len: <class 'list'> Data: ['password', 'reset', 'access', 'reporting', 'engineering', 'tool', 'password', 'reset', 'access', 'reporting', 'engineering', 'tool'] processed_text: ['password', 'reset', 'access', 'reporting', 'engineering', 'tool', 'password', 'reset', 'access', 'reporting', 'engineering', 'tool'] list_processed_text: [['password'], ['reset'], ['access'], ['reporting'], ['engineering'], ['tool'], ['password'], ['reset'], ['access'], ['reporting'], ['engineering'], ['tool']] k: 1726 len: <class 'list'> Data: ['skype', 'meeting', 'issue', 'skype', 'meeting', 'unable', 'use', 'skype', 'call', 'get', 'message', 'speaker', 'working', 'connect', 'audio', 'happened', 'yesterday', 'one', 'call', 'worked', 'later', 'day', 'today', 'able', 'join', 'via', 'skype', 'headset', 'work', 'fine', 'telephone', 'call', 'believe', 'headset'] processed_text: ['skype', 'meeting', 'issue', 'skype', 'meeting', 'unable', 'use', 'skype', 'call', 'get', 'message', 'speaker', 'working', 'connect', 'audio', 'happened', 'yesterday', 'one', 'call', 'worked', 'later', 'day', 'today', 'able', 'join', 'via', 'skype', 'headset', 'work', 'fine', 'telephone', 'call', 'believe', 'headset'] list_processed_text: [['skype'], ['meeting'], ['issue'], ['skype'], ['meeting'], ['unable'], ['use'], ['skype'], ['call'], ['get'], ['message'], ['speaker'], ['working'], ['connect'], ['audio'], ['happened'], ['yesterday'], ['one'], ['call'], ['worked'], ['later'], ['day'], ['today'], ['able'], ['join'], ['via'], ['skype'], ['headset'], ['work'], ['fine'], ['telephone'], ['call'], ['believe'], ['headset']] k: 1727 len: <class 'list'> Data: ['die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administra', 'lhejbwkc', 'xbmyvnqf', 'pm', 'nwfodmhc', 'exurcwkm', 'dan', 'fw', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'dear', 'please', 'activate', 'new', 'iphone', 'company', 'owned', 'device'] processed_text: ['die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administra', 'lhejbwkc', 'xbmyvnqf', 'pm', 'nwfodmhc', 'exurcwkm', 'dan', 'fw', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'dear', 'please', 'activate', 'new', 'iphone', 'company', 'owned', 'device'] list_processed_text: [['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administra'], ['lhejbwkc'], ['xbmyvnqf'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['dan'], ['fw'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['importance'], ['high'], ['dear'], ['please'], ['activate'], ['new'], ['iphone'], ['company'], ['owned'], ['device']] k: 1728 len: <class 'list'> Data: ['defect', 'scanner', 'printer', 'vh', 'plant', 'manager', 'controlling', 'byclpwmv', 'esafrtbh', 'pm', 'nwfodmhc', 'exurcwkm', 'geoyhtrge', 'wuryhtudack', 'trurthyuft', 'wg', 'ticket', 'r', 'drucker', 'hello', 'help', 'team', 'pls', 'enter', 'ticket', 'regarding', 'defect', 'scanner', 'printer', 'vh', 'plant', 'manager', 'controlling', 'local', 'already', 'working', 'external', 'supplier', 'make', 'sure', 'work', 'tracked', 'thx', 'marfhtyio', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['defect', 'scanner', 'printer', 'vh', 'plant', 'manager', 'controlling', 'byclpwmv', 'esafrtbh', 'pm', 'nwfodmhc', 'exurcwkm', 'geoyhtrge', 'wuryhtudack', 'trurthyuft', 'wg', 'ticket', 'r', 'drucker', 'hello', 'help', 'team', 'pls', 'enter', 'ticket', 'regarding', 'defect', 'scanner', 'printer', 'vh', 'plant', 'manager', 'controlling', 'local', 'already', 'working', 'external', 'supplier', 'make', 'sure', 'work', 'tracked', 'thx', 'marfhtyio', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['defect'], ['scanner'], ['printer'], ['vh'], ['plant'], ['manager'], ['controlling'], ['byclpwmv'], ['esafrtbh'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['geoyhtrge'], ['wuryhtudack'], ['trurthyuft'], ['wg'], ['ticket'], ['r'], ['drucker'], ['hello'], ['help'], ['team'], ['pls'], ['enter'], ['ticket'], ['regarding'], ['defect'], ['scanner'], ['printer'], ['vh'], ['plant'], ['manager'], ['controlling'], ['local'], ['already'], ['working'], ['external'], ['supplier'], ['make'], ['sure'], ['work'], ['tracked'], ['thx'], ['marfhtyio'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 1729 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1730 len: <class 'list'> Data: ['cert', 'open', 'usa', 'telephone', 'system', 'outage', 'disruption', 'long', 'distance', 'day', 'justrgun'] processed_text: ['cert', 'open', 'usa', 'telephone', 'system', 'outage', 'disruption', 'long', 'distance', 'day', 'justrgun'] list_processed_text: [['cert'], ['open'], ['usa'], ['telephone'], ['system'], ['outage'], ['disruption'], ['long'], ['distance'], ['day'], ['justrgun']] k: 1731 len: <class 'list'> Data: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rohit', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'ncoileu', 'last', 'name', 'boeyhthm', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rohit', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'ncoileu', 'last', 'name', 'boeyhthm', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['password'], ['reset'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['rohit'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['ncoileu'], ['last'], ['name'], ['boeyhthm'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 1732 len: <class 'list'> Data: ['supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'jmxrabzy', 'dpyvjcxr', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'finished', 'start', 'sandop', 'process', 'help', 'desk', 'please', 'check', 'johthryu', 'account', 'supply', 'chain', 'software'] processed_text: ['supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'jmxrabzy', 'dpyvjcxr', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'finished', 'start', 'sandop', 'process', 'help', 'desk', 'please', 'check', 'johthryu', 'account', 'supply', 'chain', 'software'] list_processed_text: [['supply'], ['chain'], ['software'], ['password'], ['reset'], ['ftnijxup'], ['sbltduco'], ['jmxrabzy'], ['dpyvjcxr'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['finished'], ['start'], ['sandop'], ['process'], ['help'], ['desk'], ['please'], ['check'], ['johthryu'], ['account'], ['supply'], ['chain'], ['software']] k: 1733 len: <class 'list'> Data: ['customer', 'unable', 'hear', 'user', 'telephony', 'software', 'signed', 'telephony', 'software', 'crm', 'using', 'soft', 'phone', 'phone', 'ring', 'select', 'pick', 'crm', 'answer', 'call', 'one', 'hear', 'telephony', 'software', 'extension', 'number', 'system', 'name', 'lfml', 'call', 'back', 'number'] processed_text: ['customer', 'unable', 'hear', 'user', 'telephony', 'software', 'signed', 'telephony', 'software', 'crm', 'using', 'soft', 'phone', 'phone', 'ring', 'select', 'pick', 'crm', 'answer', 'call', 'one', 'hear', 'telephony', 'software', 'extension', 'number', 'system', 'name', 'lfml', 'call', 'back', 'number'] list_processed_text: [['customer'], ['unable'], ['hear'], ['user'], ['telephony'], ['software'], ['signed'], ['telephony'], ['software'], ['crm'], ['using'], ['soft'], ['phone'], ['phone'], ['ring'], ['select'], ['pick'], ['crm'], ['answer'], ['call'], ['one'], ['hear'], ['telephony'], ['software'], ['extension'], ['number'], ['system'], ['name'], ['lfml'], ['call'], ['back'], ['number']] k: 1734 len: <class 'list'> Data: ['monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname', 'hostname', 'monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname', 'monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname'] processed_text: ['monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname', 'hostname', 'monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname', 'monitoring', 'tool', 'detected', 'event', 'window', 'event', 'log', 'id', 'host', 'hostname'] list_processed_text: [['monitoring'], ['tool'], ['detected'], ['event'], ['window'], ['event'], ['log'], ['id'], ['host'], ['hostname'], ['hostname'], ['monitoring'], ['tool'], ['detected'], ['event'], ['window'], ['event'], ['log'], ['id'], ['host'], ['hostname'], ['monitoring'], ['tool'], ['detected'], ['event'], ['window'], ['event'], ['log'], ['id'], ['host'], ['hostname']] k: 1735 len: <class 'list'> Data: ['phone', 'issue', 'phone', 'issue'] processed_text: ['phone', 'issue', 'phone', 'issue'] list_processed_text: [['phone'], ['issue'], ['phone'], ['issue']] k: 1736 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 1737 len: <class 'list'> Data: ['issue', 'hr', 'tool', 'try', 'put', 'vacation', 'request', 'hr', 'tool', 'request', 'show', 'calendar', 'need', 'cancel', 'date', 'show', 'cancel', 'supervisor', 'cannot', 'see', 'request', 'either'] processed_text: ['issue', 'hr', 'tool', 'try', 'put', 'vacation', 'request', 'hr', 'tool', 'request', 'show', 'calendar', 'need', 'cancel', 'date', 'show', 'cancel', 'supervisor', 'cannot', 'see', 'request', 'either'] list_processed_text: [['issue'], ['hr'], ['tool'], ['try'], ['put'], ['vacation'], ['request'], ['hr'], ['tool'], ['request'], ['show'], ['calendar'], ['need'], ['cancel'], ['date'], ['show'], ['cancel'], ['supervisor'], ['cannot'], ['see'], ['request'], ['either']] k: 1738 len: <class 'list'> Data: ['audio', 'issue', 'summary', 'since', 'outlook', 'crashed', 'yesterday', 'speaker', 'device', 'work', 'last', 'week', 'bios', 'upgrade', 'run', 'get', 'speaker', 'working'] processed_text: ['audio', 'issue', 'summary', 'since', 'outlook', 'crashed', 'yesterday', 'speaker', 'device', 'work', 'last', 'week', 'bios', 'upgrade', 'run', 'get', 'speaker', 'working'] list_processed_text: [['audio'], ['issue'], ['summary'], ['since'], ['outlook'], ['crashed'], ['yesterday'], ['speaker'], ['device'], ['work'], ['last'], ['week'], ['bios'], ['upgrade'], ['run'], ['get'], ['speaker'], ['working']] k: 1739 len: <class 'list'> Data: ['outlook', 'issue', 'crashing', 'responding', 'outlook', 'issue', 'crashing', 'responding'] processed_text: ['outlook', 'issue', 'crashing', 'responding', 'outlook', 'issue', 'crashing', 'responding'] list_processed_text: [['outlook'], ['issue'], ['crashing'], ['responding'], ['outlook'], ['issue'], ['crashing'], ['responding']] k: 1740 len: <class 'list'> Data: ['helped', 'user', 'crm', 'site', 'helped', 'user', 'crm', 'site', 'also', 'helped', 'user', 'vendor', 'number'] processed_text: ['helped', 'user', 'crm', 'site', 'helped', 'user', 'crm', 'site', 'also', 'helped', 'user', 'vendor', 'number'] list_processed_text: [['helped'], ['user'], ['crm'], ['site'], ['helped'], ['user'], ['crm'], ['site'], ['also'], ['helped'], ['user'], ['vendor'], ['number']] k: 1741 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 1742 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'hello', 'find', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'hello', 'find', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['hello'], ['find'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 1743 len: <class 'list'> Data: ['vip', 'window', 'account', 'unlock', 'vip', 'window', 'account', 'unlock'] processed_text: ['vip', 'window', 'account', 'unlock', 'vip', 'window', 'account', 'unlock'] list_processed_text: [['vip'], ['window'], ['account'], ['unlock'], ['vip'], ['window'], ['account'], ['unlock']] k: 1744 len: <class 'list'> Data: ['unable', 'reply', 'email', 'unable', 'reply', 'email'] processed_text: ['unable', 'reply', 'email', 'unable', 'reply', 'email'] list_processed_text: [['unable'], ['reply'], ['email'], ['unable'], ['reply'], ['email']] k: 1745 len: <class 'list'> Data: ['outlook', 'unable', 'connect', 'hello', 'team', 'outlook', 'unable', 'connect', 'mailserver', 'happened', 'renewed', 'password', 'password', 'management', 'tool', 'password', 'manager', 'upon', 'email', 'notification', 'problem', 'connecting', 'email', 'office', 'web', 'skype', 'business', 'could', 'please', 'take', 'look', 'user', 'gokcerthy', 'computer', 'aisl'] processed_text: ['outlook', 'unable', 'connect', 'hello', 'team', 'outlook', 'unable', 'connect', 'mailserver', 'happened', 'renewed', 'password', 'password', 'management', 'tool', 'password', 'manager', 'upon', 'email', 'notification', 'problem', 'connecting', 'email', 'office', 'web', 'skype', 'business', 'could', 'please', 'take', 'look', 'user', 'gokcerthy', 'computer', 'aisl'] list_processed_text: [['outlook'], ['unable'], ['connect'], ['hello'], ['team'], ['outlook'], ['unable'], ['connect'], ['mailserver'], ['happened'], ['renewed'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['upon'], ['email'], ['notification'], ['problem'], ['connecting'], ['email'], ['office'], ['web'], ['skype'], ['business'], ['could'], ['please'], ['take'], ['look'], ['user'], ['gokcerthy'], ['computer'], ['aisl']] k: 1746 len: <class 'list'> Data: ['lt', 'outlook', 'unable', 'connect', 'g', 'nderen', 'gacfhedw', 'iqustfzh', 'nderildi', 'ekim', 'sal', 'kime', 'nwfodmhc', 'exurcwkm', 'konu', 'outlook', 'unable', 'connect', 'hello', 'team', 'outlook', 'unable', 'connect', 'mailserver', 'happened', 'renewed', 'password', 'password', 'management', 'tool', 'password', 'manager', 'upon', 'email', 'notification', 'problem', 'connecting', 'email', 'office', 'web', 'skype', 'business', 'could', 'please', 'take', 'look', 'user', 'gokcerthy', 'computer', 'aisl'] processed_text: ['lt', 'outlook', 'unable', 'connect', 'g', 'nderen', 'gacfhedw', 'iqustfzh', 'nderildi', 'ekim', 'sal', 'kime', 'nwfodmhc', 'exurcwkm', 'konu', 'outlook', 'unable', 'connect', 'hello', 'team', 'outlook', 'unable', 'connect', 'mailserver', 'happened', 'renewed', 'password', 'password', 'management', 'tool', 'password', 'manager', 'upon', 'email', 'notification', 'problem', 'connecting', 'email', 'office', 'web', 'skype', 'business', 'could', 'please', 'take', 'look', 'user', 'gokcerthy', 'computer', 'aisl'] list_processed_text: [['lt'], ['outlook'], ['unable'], ['connect'], ['g'], ['nderen'], ['gacfhedw'], ['iqustfzh'], ['nderildi'], ['ekim'], ['sal'], ['kime'], ['nwfodmhc'], ['exurcwkm'], ['konu'], ['outlook'], ['unable'], ['connect'], ['hello'], ['team'], ['outlook'], ['unable'], ['connect'], ['mailserver'], ['happened'], ['renewed'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['upon'], ['email'], ['notification'], ['problem'], ['connecting'], ['email'], ['office'], ['web'], ['skype'], ['business'], ['could'], ['please'], ['take'], ['look'], ['user'], ['gokcerthy'], ['computer'], ['aisl']] k: 1747 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'query', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'query', 'password', 'reset'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'query', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'query', 'password', 'reset'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['query'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['query'], ['password'], ['reset']] k: 1748 len: <class 'list'> Data: ['please', 'provide', 'ip', 'user', 'white', 'ben', 'eva', 'li', 'stefyty', 'parkeyhrt', 'patience', 'rob', 'company', 'intepmov', 'imjukbqhing', 'plan', 'hi', 'eva', 'work', 'local', 'team', 'determine', 'desktop', 'ip', 'address', 'provide', 'dyhtuiel', 'stefyty', 'hi', 'dyhtuiel', 'stefyty', 'eva', 'miowvyrs', 'qkspyrdm', 'located', 'apac', 'office', 'please', 'check', 'routing', 'place', 'network', 'connect', 'vpn', 'hr', 'tool'] processed_text: ['please', 'provide', 'ip', 'user', 'white', 'ben', 'eva', 'li', 'stefyty', 'parkeyhrt', 'patience', 'rob', 'company', 'intepmov', 'imjukbqhing', 'plan', 'hi', 'eva', 'work', 'local', 'team', 'determine', 'desktop', 'ip', 'address', 'provide', 'dyhtuiel', 'stefyty', 'hi', 'dyhtuiel', 'stefyty', 'eva', 'miowvyrs', 'qkspyrdm', 'located', 'apac', 'office', 'please', 'check', 'routing', 'place', 'network', 'connect', 'vpn', 'hr', 'tool'] list_processed_text: [['please'], ['provide'], ['ip'], ['user'], ['white'], ['ben'], ['eva'], ['li'], ['stefyty'], ['parkeyhrt'], ['patience'], ['rob'], ['company'], ['intepmov'], ['imjukbqhing'], ['plan'], ['hi'], ['eva'], ['work'], ['local'], ['team'], ['determine'], ['desktop'], ['ip'], ['address'], ['provide'], ['dyhtuiel'], ['stefyty'], ['hi'], ['dyhtuiel'], ['stefyty'], ['eva'], ['miowvyrs'], ['qkspyrdm'], ['located'], ['apac'], ['office'], ['please'], ['check'], ['routing'], ['place'], ['network'], ['connect'], ['vpn'], ['hr'], ['tool']] k: 1749 len: <class 'list'> Data: ['unable', 'open', 'email', 'unable', 'open', 'email'] processed_text: ['unable', 'open', 'email', 'unable', 'open', 'email'] list_processed_text: [['unable'], ['open'], ['email'], ['unable'], ['open'], ['email']] k: 1750 len: <class 'list'> Data: ['unable', 'make', 'outbound', 'call', 'usa', 'using', 'siemens', 'hiapth', 'unable', 'make', 'outbound', 'call', 'usa', 'using', 'siemens', 'hiapth'] processed_text: ['unable', 'make', 'outbound', 'call', 'usa', 'using', 'siemens', 'hiapth', 'unable', 'make', 'outbound', 'call', 'usa', 'using', 'siemens', 'hiapth'] list_processed_text: [['unable'], ['make'], ['outbound'], ['call'], ['usa'], ['using'], ['siemens'], ['hiapth'], ['unable'], ['make'], ['outbound'], ['call'], ['usa'], ['using'], ['siemens'], ['hiapth']] k: 1751 len: <class 'list'> Data: ['vip', 'sending', 'email', 'behalf', 'offinance', 'vip', 'hello', 'delegate', 'finance', 'vip', 'email', 'set', 'send', 'email', 'behalf', 'finance', 'vip', 'recipient', 'receives', 'mail', 'say', 'lpoebzsc', 'grknswyo', 'behalf', 'offinance', 'vip', 'want', 'say', 'jk', 'name', 'like', 'sent', 'dtheb', 'mulhylen', 'othybin', 'graceuyt', 'email', 'set', 'way'] processed_text: ['vip', 'sending', 'email', 'behalf', 'offinance', 'vip', 'hello', 'delegate', 'finance', 'vip', 'email', 'set', 'send', 'email', 'behalf', 'finance', 'vip', 'recipient', 'receives', 'mail', 'say', 'lpoebzsc', 'grknswyo', 'behalf', 'offinance', 'vip', 'want', 'say', 'jk', 'name', 'like', 'sent', 'dtheb', 'mulhylen', 'othybin', 'graceuyt', 'email', 'set', 'way'] list_processed_text: [['vip'], ['sending'], ['email'], ['behalf'], ['offinance'], ['vip'], ['hello'], ['delegate'], ['finance'], ['vip'], ['email'], ['set'], ['send'], ['email'], ['behalf'], ['finance'], ['vip'], ['recipient'], ['receives'], ['mail'], ['say'], ['lpoebzsc'], ['grknswyo'], ['behalf'], ['offinance'], ['vip'], ['want'], ['say'], ['jk'], ['name'], ['like'], ['sent'], ['dtheb'], ['mulhylen'], ['othybin'], ['graceuyt'], ['email'], ['set'], ['way']] k: 1752 len: <class 'list'> Data: ['outlook', 'freeze', 'outlook', 'freeze'] processed_text: ['outlook', 'freeze', 'outlook', 'freeze'] list_processed_text: [['outlook'], ['freeze'], ['outlook'], ['freeze']] k: 1753 len: <class 'list'> Data: ['received', 'message', 'trying', 'open', 'website', 'unsupported', 'browser', 'asking', 'download', 'new', 'browser', 'continue'] processed_text: ['received', 'message', 'trying', 'open', 'website', 'unsupported', 'browser', 'asking', 'download', 'new', 'browser', 'continue'] list_processed_text: [['received'], ['message'], ['trying'], ['open'], ['website'], ['unsupported'], ['browser'], ['asking'], ['download'], ['new'], ['browser'], ['continue']] k: 1754 len: <class 'list'> Data: ['johthryu', 'erp', 'inbox', 'updating', 'since', 'johthryu', 'erp', 'inbox', 'updating', 'since'] processed_text: ['johthryu', 'erp', 'inbox', 'updating', 'since', 'johthryu', 'erp', 'inbox', 'updating', 'since'] list_processed_text: [['johthryu'], ['erp'], ['inbox'], ['updating'], ['since'], ['johthryu'], ['erp'], ['inbox'], ['updating'], ['since']] k: 1755 len: <class 'list'> Data: ['getting', 'virus', 'prompt', 'getting', 'virus', 'prompt', 'sep'] processed_text: ['getting', 'virus', 'prompt', 'getting', 'virus', 'prompt', 'sep'] list_processed_text: [['getting'], ['virus'], ['prompt'], ['getting'], ['virus'], ['prompt'], ['sep']] k: 1756 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'company', 'mpls', 'router', 'since', 'et', 'site', 'vpn', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'company', 'mpls', 'router', 'since', 'et', 'site', 'vpn', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['company'], ['mpls'], ['router'], ['since'], ['et'], ['site'], ['vpn'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1757 len: <class 'list'> Data: ['hand', 'scanner', 'pc', 'evhw', 'still', 'work', 'exchange', 'hand', 'scanner', 'pc', 'evhw', 'still', 'work', 'replacement,', 'please', 'check', 'replace', 'necessary'] processed_text: ['hand', 'scanner', 'pc', 'evhw', 'still', 'work', 'exchange', 'hand', 'scanner', 'pc', 'evhw', 'still', 'work', 'replacement,', 'please', 'check', 'replace', 'necessary'] list_processed_text: [['hand'], ['scanner'], ['pc'], ['evhw'], ['still'], ['work'], ['exchange'], ['hand'], ['scanner'], ['pc'], ['evhw'], ['still'], ['work'], ['replacement,'], ['please'], ['check'], ['replace'], ['necessary']] k: 1758 len: <class 'list'> Data: ['wg', 'visio', 'software', 'request', 'hello', 'support', 'team', 'need', 'visio', 'pc', 'please', 'install', 'software', 'request', 'approval', 'attached', 'best'] processed_text: ['wg', 'visio', 'software', 'request', 'hello', 'support', 'team', 'need', 'visio', 'pc', 'please', 'install', 'software', 'request', 'approval', 'attached', 'best'] list_processed_text: [['wg'], ['visio'], ['software'], ['request'], ['hello'], ['support'], ['team'], ['need'], ['visio'], ['pc'], ['please'], ['install'], ['software'], ['request'], ['approval'], ['attached'], ['best']] k: 1759 len: <class 'list'> Data: ['setup', 'ewewx', 'lxfnwyuv', 'bqmjyprz', 'setup', 'ewewx', 'lxfnwyuv', 'bqmjyprz'] processed_text: ['setup', 'ewewx', 'lxfnwyuv', 'bqmjyprz', 'setup', 'ewewx', 'lxfnwyuv', 'bqmjyprz'] list_processed_text: [['setup'], ['ewewx'], ['lxfnwyuv'], ['bqmjyprz'], ['setup'], ['ewewx'], ['lxfnwyuv'], ['bqmjyprz']] k: 1760 len: <class 'list'> Data: ['setup', 'ewew', 'lxfnwyuv', 'bqmjyprz', 'setup', 'ewew', 'lxfnwyuv', 'bqmjyprz'] processed_text: ['setup', 'ewew', 'lxfnwyuv', 'bqmjyprz', 'setup', 'ewew', 'lxfnwyuv', 'bqmjyprz'] list_processed_text: [['setup'], ['ewew'], ['lxfnwyuv'], ['bqmjyprz'], ['setup'], ['ewew'], ['lxfnwyuv'], ['bqmjyprz']] k: 1761 len: <class 'list'> Data: ['momitor', 'defect', 'niptbwdq', 'csenjruz', 'momitor', 'defect', 'niptbwdq', 'csenjruz'] processed_text: ['momitor', 'defect', 'niptbwdq', 'csenjruz', 'momitor', 'defect', 'niptbwdq', 'csenjruz'] list_processed_text: [['momitor'], ['defect'], ['niptbwdq'], ['csenjruz'], ['momitor'], ['defect'], ['niptbwdq'], ['csenjruz']] k: 1762 len: <class 'list'> Data: ['create', 'hip', 'replacement', 'hard', 'drive', 'create', 'hip', 'replacement', 'hard', 'drive'] processed_text: ['create', 'hip', 'replacement', 'hard', 'drive', 'create', 'hip', 'replacement', 'hard', 'drive'] list_processed_text: [['create'], ['hip'], ['replacement'], ['hard'], ['drive'], ['create'], ['hip'], ['replacement'], ['hard'], ['drive']] k: 1763 len: <class 'list'> Data: ['neuen', 'ordner', 'im', 'info', 'von', 'eu', 'tool', 'anlegen', 'please', 'create', 'new', 'folder', 'hallo', 'bitte', 'im', 'eu', 'tool', 'unter', 'info', 'einen', 'neuen', 'pfad', 'anlegen', 'unter', 'impact', 'award', 'ein', 'neues', 'verzeichnis', 'anlegen', 'al', 'bezeichnung', 'bitte', 'erp', 'pm', 'verwenden', 'die', 'dateien', 'zum', 'visualisieren', 'befinden', 'sich', 'auf', 'handb', 'cher', 'erp', 'pm', 'file', 'hostname', 'info', 'handb', 'cher', 'erp', 'pm', 'reason', 'pm', 'qavdrpfu', 'ylfwnbkr', 'created', 'traiyctrhbkm', 'plvnuxmrterial', 'shopflor', 'worker', 'new', 'erp', 'pm', 'system', 'creating', 'breakdown', 'notification', 'chance', 'look', 'traiyctrhbkm', 'plvnuxmrterial', 'want', 'notification', 'fjaqbgnld', 'yukdzwxs', 'people', 'still', 'started', 'erp', 'pm', 'old', 'system', 'part', 'eu', 'tool', 'called', 'azm', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['neuen', 'ordner', 'im', 'info', 'von', 'eu', 'tool', 'anlegen', 'please', 'create', 'new', 'folder', 'hallo', 'bitte', 'im', 'eu', 'tool', 'unter', 'info', 'einen', 'neuen', 'pfad', 'anlegen', 'unter', 'impact', 'award', 'ein', 'neues', 'verzeichnis', 'anlegen', 'al', 'bezeichnung', 'bitte', 'erp', 'pm', 'verwenden', 'die', 'dateien', 'zum', 'visualisieren', 'befinden', 'sich', 'auf', 'handb', 'cher', 'erp', 'pm', 'file', 'hostname', 'info', 'handb', 'cher', 'erp', 'pm', 'reason', 'pm', 'qavdrpfu', 'ylfwnbkr', 'created', 'traiyctrhbkm', 'plvnuxmrterial', 'shopflor', 'worker', 'new', 'erp', 'pm', 'system', 'creating', 'breakdown', 'notification', 'chance', 'look', 'traiyctrhbkm', 'plvnuxmrterial', 'want', 'notification', 'fjaqbgnld', 'yukdzwxs', 'people', 'still', 'started', 'erp', 'pm', 'old', 'system', 'part', 'eu', 'tool', 'called', 'azm', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['neuen'], ['ordner'], ['im'], ['info'], ['von'], ['eu'], ['tool'], ['anlegen'], ['please'], ['create'], ['new'], ['folder'], ['hallo'], ['bitte'], ['im'], ['eu'], ['tool'], ['unter'], ['info'], ['einen'], ['neuen'], ['pfad'], ['anlegen'], ['unter'], ['impact'], ['award'], ['ein'], ['neues'], ['verzeichnis'], ['anlegen'], ['al'], ['bezeichnung'], ['bitte'], ['erp'], ['pm'], ['verwenden'], ['die'], ['dateien'], ['zum'], ['visualisieren'], ['befinden'], ['sich'], ['auf'], ['handb'], ['cher'], ['erp'], ['pm'], ['file'], ['hostname'], ['info'], ['handb'], ['cher'], ['erp'], ['pm'], ['reason'], ['pm'], ['qavdrpfu'], ['ylfwnbkr'], ['created'], ['traiyctrhbkm'], ['plvnuxmrterial'], ['shopflor'], ['worker'], ['new'], ['erp'], ['pm'], ['system'], ['creating'], ['breakdown'], ['notification'], ['chance'], ['look'], ['traiyctrhbkm'], ['plvnuxmrterial'], ['want'], ['notification'], ['fjaqbgnld'], ['yukdzwxs'], ['people'], ['still'], ['started'], ['erp'], ['pm'], ['old'], ['system'], ['part'], ['eu'], ['tool'], ['called'], ['azm'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 1764 len: <class 'list'> Data: ['sandop', 'password', 'help', 'desk', 'please', 'check', 'stefyty', 'account', 'supply', 'chain', 'software'] processed_text: ['sandop', 'password', 'help', 'desk', 'please', 'check', 'stefyty', 'account', 'supply', 'chain', 'software'] list_processed_text: [['sandop'], ['password'], ['help'], ['desk'], ['please'], ['check'], ['stefyty'], ['account'], ['supply'], ['chain'], ['software']] k: 1765 len: <class 'list'> Data: ['replicate', 'hello', 'unfortunately', 'laptop', 'company', 'network', 'replicates', 'rudiment', 'iphone', 'get', 'latest', 'email', 'problem', 'also', 'colleague', 'best', 'regard'] processed_text: ['replicate', 'hello', 'unfortunately', 'laptop', 'company', 'network', 'replicates', 'rudiment', 'iphone', 'get', 'latest', 'email', 'problem', 'also', 'colleague', 'best', 'regard'] list_processed_text: [['replicate'], ['hello'], ['unfortunately'], ['laptop'], ['company'], ['network'], ['replicates'], ['rudiment'], ['iphone'], ['get'], ['latest'], ['email'], ['problem'], ['also'], ['colleague'], ['best'], ['regard']] k: 1766 len: <class 'list'> Data: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1767 len: <class 'list'> Data: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] processed_text: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] list_processed_text: [['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor']] k: 1768 len: <class 'list'> Data: ['unable', 'launch', 'citrix', 'unable', 'launch', 'citrix', 'error', 'message', 'atttached'] processed_text: ['unable', 'launch', 'citrix', 'unable', 'launch', 'citrix', 'error', 'message', 'atttached'] list_processed_text: [['unable'], ['launch'], ['citrix'], ['unable'], ['launch'], ['citrix'], ['error'], ['message'], ['atttached']] k: 1769 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1770 len: <class 'list'> Data: ['crm', 'dynamic', 'open', 'opportunity', 'lvdyrqfc', 'pfnmjsok', 'dear', 'lvdyrqfc', 'pfnmjsok', 'personnel', 'userid', 'webyutelc', 'lost', 'deleted', 'mistake', 'open', 'opportunity', 'week', 'ago', 'someone', 'please', 'check', 'open', 'opportunity', 'restored'] processed_text: ['crm', 'dynamic', 'open', 'opportunity', 'lvdyrqfc', 'pfnmjsok', 'dear', 'lvdyrqfc', 'pfnmjsok', 'personnel', 'userid', 'webyutelc', 'lost', 'deleted', 'mistake', 'open', 'opportunity', 'week', 'ago', 'someone', 'please', 'check', 'open', 'opportunity', 'restored'] list_processed_text: [['crm'], ['dynamic'], ['open'], ['opportunity'], ['lvdyrqfc'], ['pfnmjsok'], ['dear'], ['lvdyrqfc'], ['pfnmjsok'], ['personnel'], ['userid'], ['webyutelc'], ['lost'], ['deleted'], ['mistake'], ['open'], ['opportunity'], ['week'], ['ago'], ['someone'], ['please'], ['check'], ['open'], ['opportunity'], ['restored']] k: 1771 len: <class 'list'> Data: ['barcode', 'scanner', 'defective', 'paternoster', 'barcode', 'scanner', 'defective', 'paternoster'] processed_text: ['barcode', 'scanner', 'defective', 'paternoster', 'barcode', 'scanner', 'defective', 'paternoster'] list_processed_text: [['barcode'], ['scanner'], ['defective'], ['paternoster'], ['barcode'], ['scanner'], ['defective'], ['paternoster']] k: 1772 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1773 len: <class 'list'> Data: ['reset', 'erp', 'password', 'dear', 'admin', 'request', 'reset', 'erp', 'password', 'following', 'user', 'othyoiz'] processed_text: ['reset', 'erp', 'password', 'dear', 'admin', 'request', 'reset', 'erp', 'password', 'following', 'user', 'othyoiz'] list_processed_text: [['reset'], ['erp'], ['password'], ['dear'], ['admin'], ['request'], ['reset'], ['erp'], ['password'], ['following'], ['user'], ['othyoiz']] k: 1774 len: <class 'list'> Data: ['please', 'check', 'jeffrghryey', 'account', 'supply', 'chain', 'software', 'help', 'desk', 'please', 'check', 'jeffrghryey', 'account', 'supply', 'chain', 'software'] processed_text: ['please', 'check', 'jeffrghryey', 'account', 'supply', 'chain', 'software', 'help', 'desk', 'please', 'check', 'jeffrghryey', 'account', 'supply', 'chain', 'software'] list_processed_text: [['please'], ['check'], ['jeffrghryey'], ['account'], ['supply'], ['chain'], ['software'], ['help'], ['desk'], ['please'], ['check'], ['jeffrghryey'], ['account'], ['supply'], ['chain'], ['software']] k: 1775 len: <class 'list'> Data: ['check', 'setting', 'alfa', 'set', 'messger', 'setting', 'rollomatic', 'alfa', 'set', 'measuring', 'device', 'must', 'checked', 'according', 'instruction'] processed_text: ['check', 'setting', 'alfa', 'set', 'messger', 'setting', 'rollomatic', 'alfa', 'set', 'measuring', 'device', 'must', 'checked', 'according', 'instruction'] list_processed_text: [['check'], ['setting'], ['alfa'], ['set'], ['messger'], ['setting'], ['rollomatic'], ['alfa'], ['set'], ['measuring'], ['device'], ['must'], ['checked'], ['according'], ['instruction']] k: 1776 len: <class 'list'> Data: ['reset', 'password', 'eglavnhx', 'uprodleq', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'user', 'franhtyuj', 'entered', 'incorrectly', 'several', 'time', 'thanks'] processed_text: ['reset', 'password', 'eglavnhx', 'uprodleq', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'user', 'franhtyuj', 'entered', 'incorrectly', 'several', 'time', 'thanks'] list_processed_text: [['reset'], ['password'], ['eglavnhx'], ['uprodleq'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password'], ['user'], ['franhtyuj'], ['entered'], ['incorrectly'], ['several'], ['time'], ['thanks']] k: 1777 len: <class 'list'> Data: ['power', 'outage', 'india', 'plant', 'india', 'telecom', 'vendor', 'mbps', 'secondary', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'india', 'plant', 'india', 'telecom', 'vendor', 'mbps', 'secondary', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['india'], ['plant'], ['india'], ['telecom'], ['vendor'], ['mbps'], ['secondary'], ['circuit'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1778 len: <class 'list'> Data: ['po', 'number', 'posted', 'gr', 'incorrect', 'gl', 'account', 'po', 'number', 'posted', 'gr', 'incorrect', 'gl', 'account'] processed_text: ['po', 'number', 'posted', 'gr', 'incorrect', 'gl', 'account', 'po', 'number', 'posted', 'gr', 'incorrect', 'gl', 'account'] list_processed_text: [['po'], ['number'], ['posted'], ['gr'], ['incorrect'], ['gl'], ['account'], ['po'], ['number'], ['posted'], ['gr'], ['incorrect'], ['gl'], ['account']] k: 1779 len: <class 'list'> Data: ['please', 'check', 'brook', 'account', 'supply', 'chain', 'software', 'please', 'check', 'brook', 'account', 'supply', 'chain', 'software'] processed_text: ['please', 'check', 'brook', 'account', 'supply', 'chain', 'software', 'please', 'check', 'brook', 'account', 'supply', 'chain', 'software'] list_processed_text: [['please'], ['check'], ['brook'], ['account'], ['supply'], ['chain'], ['software'], ['please'], ['check'], ['brook'], ['account'], ['supply'], ['chain'], ['software']] k: 1780 len: <class 'list'> Data: ['erp', 'training', 'room', 'cannot', 'connect', 'projector', 'erp', 'training', 'room', 'cannot', 'connect', 'projector'] processed_text: ['erp', 'training', 'room', 'cannot', 'connect', 'projector', 'erp', 'training', 'room', 'cannot', 'connect', 'projector'] list_processed_text: [['erp'], ['training'], ['room'], ['cannot'], ['connect'], ['projector'], ['erp'], ['training'], ['room'], ['cannot'], ['connect'], ['projector']] k: 1781 len: <class 'list'> Data: ['passwordproblems', 'hi', 'tried', 'change', 'password', 'via', 'passwordmanager', 'locked', 'totally', 'would', 'please', 'kind', 'unlock', 'change', 'best', 'regard', 'agjzikpf', 'nhfrbxek', 'analyst', 'logistics', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'message', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['passwordproblems', 'hi', 'tried', 'change', 'password', 'via', 'passwordmanager', 'locked', 'totally', 'would', 'please', 'kind', 'unlock', 'change', 'best', 'regard', 'agjzikpf', 'nhfrbxek', 'analyst', 'logistics', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'message', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['passwordproblems'], ['hi'], ['tried'], ['change'], ['password'], ['via'], ['passwordmanager'], ['locked'], ['totally'], ['would'], ['please'], ['kind'], ['unlock'], ['change'], ['best'], ['regard'], ['agjzikpf'], ['nhfrbxek'], ['analyst'], ['logistics'], ['company'], ['shared'], ['service'], ['gmbh'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['message'], ['solely'], ['intended'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 1782 len: <class 'list'> Data: ['interface', 'switch', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'core', 'sw', 'since', 'et', 'interface', 'switch', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'core', 'sw', 'since', 'et'] processed_text: ['interface', 'switch', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'core', 'sw', 'since', 'et', 'interface', 'switch', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'core', 'sw', 'since', 'et'] list_processed_text: [['interface'], ['switch'], ['company'], ['eu'], ['deu'], ['d'], ['germany'], ['edksw'], ['core'], ['sw'], ['since'], ['et'], ['interface'], ['switch'], ['company'], ['eu'], ['deu'], ['d'], ['germany'], ['edksw'], ['core'], ['sw'], ['since'], ['et']] k: 1783 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'company', 'eu', 'deu', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'company', 'eu', 'deu', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['company'], ['eu'], ['deu'], ['erkheim'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1784 len: <class 'list'> Data: ['rush', 'monitor', 'defective', 'monitor', 'defective', 'hr', 'tjzohmve', 'wusgaozx', 'new', 'building', 'stock'] processed_text: ['rush', 'monitor', 'defective', 'monitor', 'defective', 'hr', 'tjzohmve', 'wusgaozx', 'new', 'building', 'stock'] list_processed_text: [['rush'], ['monitor'], ['defective'], ['monitor'], ['defective'], ['hr'], ['tjzohmve'], ['wusgaozx'], ['new'], ['building'], ['stock']] k: 1785 len: <class 'list'> Data: ['erp', 'gui', 'login', 'profile', 'missing', 'erp', 'gui', 'login', 'profile', 'missing', 'erp', 'cannot', 'login'] processed_text: ['erp', 'gui', 'login', 'profile', 'missing', 'erp', 'gui', 'login', 'profile', 'missing', 'erp', 'cannot', 'login'] list_processed_text: [['erp'], ['gui'], ['login'], ['profile'], ['missing'], ['erp'], ['gui'], ['login'], ['profile'], ['missing'], ['erp'], ['cannot'], ['login']] k: 1786 len: <class 'list'> Data: ['device', 'properly', 'boot', 'window', 'system', 'hang', 'user', 'login', 'device', 'properly', 'boot', 'window', 'system', 'hang', 'user', 'login'] processed_text: ['device', 'properly', 'boot', 'window', 'system', 'hang', 'user', 'login', 'device', 'properly', 'boot', 'window', 'system', 'hang', 'user', 'login'] list_processed_text: [['device'], ['properly'], ['boot'], ['window'], ['system'], ['hang'], ['user'], ['login'], ['device'], ['properly'], ['boot'], ['window'], ['system'], ['hang'], ['user'], ['login']] k: 1787 len: <class 'list'> Data: ['pls', 'help', 'run', 'dn', 'sto', 'thx', 'dear', 'team', 'got', 'stock', 'recall', 'noticplant', 'mm', 'return', 'pc', 'material', 'plant', 'created', 'sto', 'base', 'recall', 'dn', 'pc', 'created', 'sto', 'pls', 'help', 'run', 'dn', 'rest', 'pc', 'thx', 'lot', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['pls', 'help', 'run', 'dn', 'sto', 'thx', 'dear', 'team', 'got', 'stock', 'recall', 'noticplant', 'mm', 'return', 'pc', 'material', 'plant', 'created', 'sto', 'base', 'recall', 'dn', 'pc', 'created', 'sto', 'pls', 'help', 'run', 'dn', 'rest', 'pc', 'thx', 'lot', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['pls'], ['help'], ['run'], ['dn'], ['sto'], ['thx'], ['dear'], ['team'], ['got'], ['stock'], ['recall'], ['noticplant'], ['mm'], ['return'], ['pc'], ['material'], ['plant'], ['created'], ['sto'], ['base'], ['recall'], ['dn'], ['pc'], ['created'], ['sto'], ['pls'], ['help'], ['run'], ['dn'], ['rest'], ['pc'], ['thx'], ['lot'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 1788 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1789 len: <class 'list'> Data: ['msd', 'crm', 'please', 'provide', 'detail', 'issue', 'able', 'view', 'attachment', 'customer', 'yesterday', 'received', 'hourglass', 'loging', 'solve', 'issue', 'today', 'following', 'message', 'displaying', 'bottom', 'javascript', 'void'] processed_text: ['msd', 'crm', 'please', 'provide', 'detail', 'issue', 'able', 'view', 'attachment', 'customer', 'yesterday', 'received', 'hourglass', 'loging', 'solve', 'issue', 'today', 'following', 'message', 'displaying', 'bottom', 'javascript', 'void'] list_processed_text: [['msd'], ['crm'], ['please'], ['provide'], ['detail'], ['issue'], ['able'], ['view'], ['attachment'], ['customer'], ['yesterday'], ['received'], ['hourglass'], ['loging'], ['solve'], ['issue'], ['today'], ['following'], ['message'], ['displaying'], ['bottom'], ['javascript'], ['void']] k: 1790 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1791 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1792 len: <class 'list'> Data: ['ki', 'zebra', 'print', 'dear', 'jay', 'plant', 'plant', 'receives', 'airwaybill', 'label', 'erp', 'whenever', 'pgi', 'export', 'sometimes', 'zebra', 'printer', 'print', 'label', 'plant', 'cancel', 'shipment', 'pgi', 'another', 'way', 'u', 'label', 'cancel', 'pgi', 'pgi'] processed_text: ['ki', 'zebra', 'print', 'dear', 'jay', 'plant', 'plant', 'receives', 'airwaybill', 'label', 'erp', 'whenever', 'pgi', 'export', 'sometimes', 'zebra', 'printer', 'print', 'label', 'plant', 'cancel', 'shipment', 'pgi', 'another', 'way', 'u', 'label', 'cancel', 'pgi', 'pgi'] list_processed_text: [['ki'], ['zebra'], ['print'], ['dear'], ['jay'], ['plant'], ['plant'], ['receives'], ['airwaybill'], ['label'], ['erp'], ['whenever'], ['pgi'], ['export'], ['sometimes'], ['zebra'], ['printer'], ['print'], ['label'], ['plant'], ['cancel'], ['shipment'], ['pgi'], ['another'], ['way'], ['u'], ['label'], ['cancel'], ['pgi'], ['pgi']] k: 1793 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1794 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 1795 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 1796 len: <class 'list'> Data: ['wifi', 'wifi'] processed_text: ['wifi', 'wifi'] list_processed_text: [['wifi'], ['wifi']] k: 1797 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 1798 len: <class 'list'> Data: ['skype', 'outlook', 'skype', 'online', 'meeting', 'skype', 'outlook', 'skype', 'online', 'meeting'] processed_text: ['skype', 'outlook', 'skype', 'online', 'meeting', 'skype', 'outlook', 'skype', 'online', 'meeting'] list_processed_text: [['skype'], ['outlook'], ['skype'], ['online'], ['meeting'], ['skype'], ['outlook'], ['skype'], ['online'], ['meeting']] k: 1799 len: <class 'list'> Data: ['outlook', 'outlook', 'dizquolf', 'hlykecxa', 'ap', 'accountant'] processed_text: ['outlook', 'outlook', 'dizquolf', 'hlykecxa', 'ap', 'accountant'] list_processed_text: [['outlook'], ['outlook'], ['dizquolf'], ['hlykecxa'], ['ap'], ['accountant']] k: 1800 len: <class 'list'> Data: ['posed', 'inwarehouse', 'tool', 'cannot', 'shown', 'erp', 'posed', 'po', 'miro', 'erp', 'issued', 'however', 'voucher', 'exist', 'fb', 'attachment', 'shown', 'men', 'ir', 'cannot', 'found', 'making', 'gr', 'fbln', 'transaction', 'still', 'exist', 'mir', 'shown', 'posed', 'inwarehouse', 'tool', 'please', 'tell', 'u', 'resolve', 'problem'] processed_text: ['posed', 'inwarehouse', 'tool', 'cannot', 'shown', 'erp', 'posed', 'po', 'miro', 'erp', 'issued', 'however', 'voucher', 'exist', 'fb', 'attachment', 'shown', 'men', 'ir', 'cannot', 'found', 'making', 'gr', 'fbln', 'transaction', 'still', 'exist', 'mir', 'shown', 'posed', 'inwarehouse', 'tool', 'please', 'tell', 'u', 'resolve', 'problem'] list_processed_text: [['posed'], ['inwarehouse'], ['tool'], ['cannot'], ['shown'], ['erp'], ['posed'], ['po'], ['miro'], ['erp'], ['issued'], ['however'], ['voucher'], ['exist'], ['fb'], ['attachment'], ['shown'], ['men'], ['ir'], ['cannot'], ['found'], ['making'], ['gr'], ['fbln'], ['transaction'], ['still'], ['exist'], ['mir'], ['shown'], ['posed'], ['inwarehouse'], ['tool'], ['please'], ['tell'], ['u'], ['resolve'], ['problem']] k: 1801 len: <class 'list'> Data: ['carrier', 'order', 'processing', 'carrier', 'order', 'processing', 'label', 'shipping', 'system', 'erp', 'getting', 'following', 'error', 'message', 'server', 'unable', 'process', 'request'] processed_text: ['carrier', 'order', 'processing', 'carrier', 'order', 'processing', 'label', 'shipping', 'system', 'erp', 'getting', 'following', 'error', 'message', 'server', 'unable', 'process', 'request'] list_processed_text: [['carrier'], ['order'], ['processing'], ['carrier'], ['order'], ['processing'], ['label'], ['shipping'], ['system'], ['erp'], ['getting'], ['following'], ['error'], ['message'], ['server'], ['unable'], ['process'], ['request']] k: 1802 len: <class 'list'> Data: ['unable', 'connect', 'glog', 'old', 'search', 'old', 'data', 'please', 'assign', 'ticket', 'keyhtyvin', 'toriaytun', 'glovia', 'database'] processed_text: ['unable', 'connect', 'glog', 'old', 'search', 'old', 'data', 'please', 'assign', 'ticket', 'keyhtyvin', 'toriaytun', 'glovia', 'database'] list_processed_text: [['unable'], ['connect'], ['glog'], ['old'], ['search'], ['old'], ['data'], ['please'], ['assign'], ['ticket'], ['keyhtyvin'], ['toriaytun'], ['glovia'], ['database']] k: 1803 len: <class 'list'> Data: ['sale', 'order', 'updating', 'correct', 'delivery', 'date', 'reference', 'started', 'email', 'called', 'company', 'spoke', 'wkpnlvts', 'oumeaxcz', 'confirmed', 'item', 'route', 'germany', 'scheduled', 'get', 'turn', 'around', 'ship', 'u', 'new', 'delivery', 'date', 'sure', 'date', 'company', 'center', 'investigating', 'looking', 'screen', 'shot', 'provided', 'heidi', 'happening', 'manufacturing', 'updated', 'information', 'system', 'csr', 'ran', 'apo', 'availability', 'check', 'art', 'could', 'see', 'updated', 'date', 'update', 'delivery', 'date', 'order', 'went', 'order', 'manually', 'ran', 'apo', 'stock', 'update', 'order', 'updated', 'delivery', 'date', 'customer', 'look', 'company', 'center', 'would', 'see', 'delivery', 'date', 'manufacturing', 'update', 'delivery', 'time', 'order', 'update', 'open', 'order', 'item', 'case', 'loosing', 'order', 'issue', 'going', 'time', 'first', 'time', 'documented', 'screen', 'shot', 'going', 'csrs', 'run', 'apo', 'every', 'time', 'date', 'changed', 'erp', 'automated', 'anything', 'le', 'unacceptable'] processed_text: ['sale', 'order', 'updating', 'correct', 'delivery', 'date', 'reference', 'started', 'email', 'called', 'company', 'spoke', 'wkpnlvts', 'oumeaxcz', 'confirmed', 'item', 'route', 'germany', 'scheduled', 'get', 'turn', 'around', 'ship', 'u', 'new', 'delivery', 'date', 'sure', 'date', 'company', 'center', 'investigating', 'looking', 'screen', 'shot', 'provided', 'heidi', 'happening', 'manufacturing', 'updated', 'information', 'system', 'csr', 'ran', 'apo', 'availability', 'check', 'art', 'could', 'see', 'updated', 'date', 'update', 'delivery', 'date', 'order', 'went', 'order', 'manually', 'ran', 'apo', 'stock', 'update', 'order', 'updated', 'delivery', 'date', 'customer', 'look', 'company', 'center', 'would', 'see', 'delivery', 'date', 'manufacturing', 'update', 'delivery', 'time', 'order', 'update', 'open', 'order', 'item', 'case', 'loosing', 'order', 'issue', 'going', 'time', 'first', 'time', 'documented', 'screen', 'shot', 'going', 'csrs', 'run', 'apo', 'every', 'time', 'date', 'changed', 'erp', 'automated', 'anything', 'le', 'unacceptable'] list_processed_text: [['sale'], ['order'], ['updating'], ['correct'], ['delivery'], ['date'], ['reference'], ['started'], ['email'], ['called'], ['company'], ['spoke'], ['wkpnlvts'], ['oumeaxcz'], ['confirmed'], ['item'], ['route'], ['germany'], ['scheduled'], ['get'], ['turn'], ['around'], ['ship'], ['u'], ['new'], ['delivery'], ['date'], ['sure'], ['date'], ['company'], ['center'], ['investigating'], ['looking'], ['screen'], ['shot'], ['provided'], ['heidi'], ['happening'], ['manufacturing'], ['updated'], ['information'], ['system'], ['csr'], ['ran'], ['apo'], ['availability'], ['check'], ['art'], ['could'], ['see'], ['updated'], ['date'], ['update'], ['delivery'], ['date'], ['order'], ['went'], ['order'], ['manually'], ['ran'], ['apo'], ['stock'], ['update'], ['order'], ['updated'], ['delivery'], ['date'], ['customer'], ['look'], ['company'], ['center'], ['would'], ['see'], ['delivery'], ['date'], ['manufacturing'], ['update'], ['delivery'], ['time'], ['order'], ['update'], ['open'], ['order'], ['item'], ['case'], ['loosing'], ['order'], ['issue'], ['going'], ['time'], ['first'], ['time'], ['documented'], ['screen'], ['shot'], ['going'], ['csrs'], ['run'], ['apo'], ['every'], ['time'], ['date'], ['changed'], ['erp'], ['automated'], ['anything'], ['le'], ['unacceptable']] k: 1804 len: <class 'list'> Data: ['need', 'ticket', 'item', 'manufactured', 'plant', 'received', 'plant', 'received', 'stock', 'plant', 'point', 'would', 'expected', 'system', 'automatically', 'moved', 'product', 'plant', 'safety', 'stock', 'forecast', 'please', 'advise', 'process', 'working', 'working', 'please', 'advise', 'item', 'move', 'dqplrwoy', 'cutpwjie', 'supply', 'chain', 'planner', 'strategic', 'sourcing', 'supply', 'planning', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com'] processed_text: ['need', 'ticket', 'item', 'manufactured', 'plant', 'received', 'plant', 'received', 'stock', 'plant', 'point', 'would', 'expected', 'system', 'automatically', 'moved', 'product', 'plant', 'safety', 'stock', 'forecast', 'please', 'advise', 'process', 'working', 'working', 'please', 'advise', 'item', 'move', 'dqplrwoy', 'cutpwjie', 'supply', 'chain', 'planner', 'strategic', 'sourcing', 'supply', 'planning', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com'] list_processed_text: [['need'], ['ticket'], ['item'], ['manufactured'], ['plant'], ['received'], ['plant'], ['received'], ['stock'], ['plant'], ['point'], ['would'], ['expected'], ['system'], ['automatically'], ['moved'], ['product'], ['plant'], ['safety'], ['stock'], ['forecast'], ['please'], ['advise'], ['process'], ['working'], ['working'], ['please'], ['advise'], ['item'], ['move'], ['dqplrwoy'], ['cutpwjie'], ['supply'], ['chain'], ['planner'], ['strategic'], ['sourcing'], ['supply'], ['planning'], ['company'], ['inc'], ['technology'], ['way'], ['usa'], ['pa'], ['www'], ['company'], ['com']] k: 1805 len: <class 'list'> Data: ['problem', 'downloading', 'dxf', 'file', 'error', 'certificate', 'exist', 'business', 'client', 'product', 'engineering', 'contact', 'sitmzuje', 'ckrpsabm', 'unable', 'save', 'download', 'dxf', 'file', 'using', 'business', 'client', 'screenshot', 'attached', 'error', 'message', 'persists', 'attempting', 'download', 'dxf', 'engineering', 'drawing', 'tool', 'file', 'business', 'client', 'web', 'based', 'format', 'path', 'business', 'client', 'product', 'engineering', 'drawing', 'search', 'display', 'document', 'select', 'document', 'g', 'n', 'dxf', 'copy', 'select', 'directory', 'user', 'mazurjw', 'document', 'drawing', 'result', 'certificate', 'exist'] processed_text: ['problem', 'downloading', 'dxf', 'file', 'error', 'certificate', 'exist', 'business', 'client', 'product', 'engineering', 'contact', 'sitmzuje', 'ckrpsabm', 'unable', 'save', 'download', 'dxf', 'file', 'using', 'business', 'client', 'screenshot', 'attached', 'error', 'message', 'persists', 'attempting', 'download', 'dxf', 'engineering', 'drawing', 'tool', 'file', 'business', 'client', 'web', 'based', 'format', 'path', 'business', 'client', 'product', 'engineering', 'drawing', 'search', 'display', 'document', 'select', 'document', 'g', 'n', 'dxf', 'copy', 'select', 'directory', 'user', 'mazurjw', 'document', 'drawing', 'result', 'certificate', 'exist'] list_processed_text: [['problem'], ['downloading'], ['dxf'], ['file'], ['error'], ['certificate'], ['exist'], ['business'], ['client'], ['product'], ['engineering'], ['contact'], ['sitmzuje'], ['ckrpsabm'], ['unable'], ['save'], ['download'], ['dxf'], ['file'], ['using'], ['business'], ['client'], ['screenshot'], ['attached'], ['error'], ['message'], ['persists'], ['attempting'], ['download'], ['dxf'], ['engineering'], ['drawing'], ['tool'], ['file'], ['business'], ['client'], ['web'], ['based'], ['format'], ['path'], ['business'], ['client'], ['product'], ['engineering'], ['drawing'], ['search'], ['display'], ['document'], ['select'], ['document'], ['g'], ['n'], ['dxf'], ['copy'], ['select'], ['directory'], ['user'], ['mazurjw'], ['document'], ['drawing'], ['result'], ['certificate'], ['exist']] k: 1806 len: <class 'list'> Data: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'theydbar', 'last', 'name', 'brrgtyanthet', 'perry', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'theydbar', 'last', 'name', 'brrgtyanthet', 'perry', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['password'], ['reset'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['amar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['theydbar'], ['last'], ['name'], ['brrgtyanthet'], ['perry'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 1807 len: <class 'list'> Data: ['unable', 'take', 'screenshot', 'unable', 'take', 'screenshot'] processed_text: ['unable', 'take', 'screenshot', 'unable', 'take', 'screenshot'] list_processed_text: [['unable'], ['take'], ['screenshot'], ['unable'], ['take'], ['screenshot']] k: 1808 len: <class 'list'> Data: ['vip', 'reset', 'password', 'buyoipdj', 'fceymwtz', 'phone', 'system', 'interaction', 'desktop', 'need', 'password', 'rest', 'phone', 'office'] processed_text: ['vip', 'reset', 'password', 'buyoipdj', 'fceymwtz', 'phone', 'system', 'interaction', 'desktop', 'need', 'password', 'rest', 'phone', 'office'] list_processed_text: [['vip'], ['reset'], ['password'], ['buyoipdj'], ['fceymwtz'], ['phone'], ['system'], ['interaction'], ['desktop'], ['need'], ['password'], ['rest'], ['phone'], ['office']] k: 1809 len: <class 'list'> Data: ['unable', 'open', 'website', 'unable', 'open', 'website'] processed_text: ['unable', 'open', 'website', 'unable', 'open', 'website'] list_processed_text: [['unable'], ['open'], ['website'], ['unable'], ['open'], ['website']] k: 1810 len: <class 'list'> Data: ['printer', 'configure', 'bit', 'printer', 'driver', 'installation', 'new', 'laptop'] processed_text: ['printer', 'configure', 'bit', 'printer', 'driver', 'installation', 'new', 'laptop'] list_processed_text: [['printer'], ['configure'], ['bit'], ['printer'], ['driver'], ['installation'], ['new'], ['laptop']] k: 1811 len: <class 'list'> Data: ['customer', 'able', 'call', 'company', 'toll', 'free', 'number', 'received', 'call', 'sale', 'person', 'badgknqs', 'xwelumfz', 'st', 'louis', 'mo', 'stating', 'tried', 'call', 'toll', 'free', 'number', 'time', 'received', 'message', 'number', 'service', 'checked', 'number', 'dialing', 'dialing', 'correct', 'number', 'urgent'] processed_text: ['customer', 'able', 'call', 'company', 'toll', 'free', 'number', 'received', 'call', 'sale', 'person', 'badgknqs', 'xwelumfz', 'st', 'louis', 'mo', 'stating', 'tried', 'call', 'toll', 'free', 'number', 'time', 'received', 'message', 'number', 'service', 'checked', 'number', 'dialing', 'dialing', 'correct', 'number', 'urgent'] list_processed_text: [['customer'], ['able'], ['call'], ['company'], ['toll'], ['free'], ['number'], ['received'], ['call'], ['sale'], ['person'], ['badgknqs'], ['xwelumfz'], ['st'], ['louis'], ['mo'], ['stating'], ['tried'], ['call'], ['toll'], ['free'], ['number'], ['time'], ['received'], ['message'], ['number'], ['service'], ['checked'], ['number'], ['dialing'], ['dialing'], ['correct'], ['number'], ['urgent']] k: 1812 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 1813 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1814 len: <class 'list'> Data: ['issue', 'outlook', 'responding', 'issue', 'outlook', 'responding'] processed_text: ['issue', 'outlook', 'responding', 'issue', 'outlook', 'responding'] list_processed_text: [['issue'], ['outlook'], ['responding'], ['issue'], ['outlook'], ['responding']] k: 1815 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1816 len: <class 'list'> Data: ['outlook', 'working', 'correctly', 'outlook', 'working', 'correctly', 'freezing'] processed_text: ['outlook', 'working', 'correctly', 'outlook', 'working', 'correctly', 'freezing'] list_processed_text: [['outlook'], ['working'], ['correctly'], ['outlook'], ['working'], ['correctly'], ['freezing']] k: 1817 len: <class 'list'> Data: ['msd', 'crm', 'outlook', 'stop', 'responding', 'ensured', 'ipv', 'unchecked', 'network', 'connection', 'good', 'limited', 'initially', 'went', 'normal', 'denghyrt', 'disconnected', 'vpn', 'checked', 'outlook', 'work', 'okay', 'safe', 'mode', 'reduced', 'offline', 'folder', 'setting', 'month', 'month', 'uninstalled', 'reinstalled', 'crm', 'dynamic', 'repair', 'help', 'denghyrt', 'im', 'issue', 'task', 'reminder', 'crm'] processed_text: ['msd', 'crm', 'outlook', 'stop', 'responding', 'ensured', 'ipv', 'unchecked', 'network', 'connection', 'good', 'limited', 'initially', 'went', 'normal', 'denghyrt', 'disconnected', 'vpn', 'checked', 'outlook', 'work', 'okay', 'safe', 'mode', 'reduced', 'offline', 'folder', 'setting', 'month', 'month', 'uninstalled', 'reinstalled', 'crm', 'dynamic', 'repair', 'help', 'denghyrt', 'im', 'issue', 'task', 'reminder', 'crm'] list_processed_text: [['msd'], ['crm'], ['outlook'], ['stop'], ['responding'], ['ensured'], ['ipv'], ['unchecked'], ['network'], ['connection'], ['good'], ['limited'], ['initially'], ['went'], ['normal'], ['denghyrt'], ['disconnected'], ['vpn'], ['checked'], ['outlook'], ['work'], ['okay'], ['safe'], ['mode'], ['reduced'], ['offline'], ['folder'], ['setting'], ['month'], ['month'], ['uninstalled'], ['reinstalled'], ['crm'], ['dynamic'], ['repair'], ['help'], ['denghyrt'], ['im'], ['issue'], ['task'], ['reminder'], ['crm']] k: 1818 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 1819 len: <class 'list'> Data: ['issue', 'outlook', 'vpn', 'issue', 'outlook', 'vpn'] processed_text: ['issue', 'outlook', 'vpn', 'issue', 'outlook', 'vpn'] list_processed_text: [['issue'], ['outlook'], ['vpn'], ['issue'], ['outlook'], ['vpn']] k: 1820 len: <class 'list'> Data: ["can't", 'open', 'vpn', "can't", 'open', 'vpn'] processed_text: ["can't", 'open', 'vpn', "can't", 'open', 'vpn'] list_processed_text: [["can't"], ['open'], ['vpn'], ["can't"], ['open'], ['vpn']] k: 1821 len: <class 'list'> Data: ['unable', 'open', 'record', 'engineering', 'tool', 'engineering', 'tool', 'downloading', 'report', 'kpr', 'format', 'engineering', 'tool', 'crash', 'reinstalling', 'engineering', 'tool', 'crashing'] processed_text: ['unable', 'open', 'record', 'engineering', 'tool', 'engineering', 'tool', 'downloading', 'report', 'kpr', 'format', 'engineering', 'tool', 'crash', 'reinstalling', 'engineering', 'tool', 'crashing'] list_processed_text: [['unable'], ['open'], ['record'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['downloading'], ['report'], ['kpr'], ['format'], ['engineering'], ['tool'], ['crash'], ['reinstalling'], ['engineering'], ['tool'], ['crashing']] k: 1822 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 1823 len: <class 'list'> Data: ['knocked', 'vpn', 'unable', 'get', 'na', 'remote', 'knocked', 'vpn', 'unable', 'log', 'back', 'via', 'na', 'remote'] processed_text: ['knocked', 'vpn', 'unable', 'get', 'na', 'remote', 'knocked', 'vpn', 'unable', 'log', 'back', 'via', 'na', 'remote'] list_processed_text: [['knocked'], ['vpn'], ['unable'], ['get'], ['na'], ['remote'], ['knocked'], ['vpn'], ['unable'], ['log'], ['back'], ['via'], ['na'], ['remote']] k: 1824 len: <class 'list'> Data: ['etime', 'working', 'name', 'esqcuwbg', 'gdcuhzqw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'time', 'populate', 'name', 'employee'] processed_text: ['etime', 'working', 'name', 'esqcuwbg', 'gdcuhzqw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'time', 'populate', 'name', 'employee'] list_processed_text: [['etime'], ['working'], ['name'], ['esqcuwbg'], ['gdcuhzqw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['time'], ['populate'], ['name'], ['employee']] k: 1825 len: <class 'list'> Data: ['reset', 'password', 'hybiaxlk', 'lawptzir', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'hybiaxlk', 'lawptzir', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['hybiaxlk'], ['lawptzir'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1826 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1827 len: <class 'list'> Data: ['erp', 'front', 'end', 'missing', 'noticed', 'erp', 'front', 'end', 'programdnty', 'seems', 'gone', 'reason', 'need', 'returned', 'immediately', 'desktop', 'prior', 'level', 'access', 'set'] processed_text: ['erp', 'front', 'end', 'missing', 'noticed', 'erp', 'front', 'end', 'programdnty', 'seems', 'gone', 'reason', 'need', 'returned', 'immediately', 'desktop', 'prior', 'level', 'access', 'set'] list_processed_text: [['erp'], ['front'], ['end'], ['missing'], ['noticed'], ['erp'], ['front'], ['end'], ['programdnty'], ['seems'], ['gone'], ['reason'], ['need'], ['returned'], ['immediately'], ['desktop'], ['prior'], ['level'], ['access'], ['set']] k: 1828 len: <class 'list'> Data: ['unable', 'access', 'erp', 'unable', 'access', 'erp', 'user', 'contacted', 'issue', 'unable', 'access', 'erp', 'id', 'got', 'changed', 'last', 'checked', 'password', 'management', 'tool', 'showing', 'erp', 'account', 'name', 'show', 'active', 'directory', 'server', 'please', 'help', 'check', 'user', 'earliest', 'need', 'access', 'erp', 'sid', 'erp', 'production', 'old', 'user', 'id', 'coppthsy', 'new', 'user', 'id', 'humthyphk'] processed_text: ['unable', 'access', 'erp', 'unable', 'access', 'erp', 'user', 'contacted', 'issue', 'unable', 'access', 'erp', 'id', 'got', 'changed', 'last', 'checked', 'password', 'management', 'tool', 'showing', 'erp', 'account', 'name', 'show', 'active', 'directory', 'server', 'please', 'help', 'check', 'user', 'earliest', 'need', 'access', 'erp', 'sid', 'erp', 'production', 'old', 'user', 'id', 'coppthsy', 'new', 'user', 'id', 'humthyphk'] list_processed_text: [['unable'], ['access'], ['erp'], ['unable'], ['access'], ['erp'], ['user'], ['contacted'], ['issue'], ['unable'], ['access'], ['erp'], ['id'], ['got'], ['changed'], ['last'], ['checked'], ['password'], ['management'], ['tool'], ['showing'], ['erp'], ['account'], ['name'], ['show'], ['active'], ['directory'], ['server'], ['please'], ['help'], ['check'], ['user'], ['earliest'], ['need'], ['access'], ['erp'], ['sid'], ['erp'], ['production'], ['old'], ['user'], ['id'], ['coppthsy'], ['new'], ['user'], ['id'], ['humthyphk']] k: 1829 len: <class 'list'> Data: ['unable', 'share', 'calendar', 'unable', 'share', 'calendar'] processed_text: ['unable', 'share', 'calendar', 'unable', 'share', 'calendar'] list_processed_text: [['unable'], ['share'], ['calendar'], ['unable'], ['share'], ['calendar']] k: 1830 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching'] processed_text: ['outlook', 'launching', 'outlook', 'launching'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching']] k: 1831 len: <class 'list'> Data: ['zebra', 'pinter', 'working', 'name', 'lzapwbnc', 'yrjekzqv', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'automatci', 'upgrade', 'cannot', 'print', 'zebra', 'printer', 'anymore', 'error', 'message', 'runtime', 'error', 'type', 'mismatch', 'give', 'support'] processed_text: ['zebra', 'pinter', 'working', 'name', 'lzapwbnc', 'yrjekzqv', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'automatci', 'upgrade', 'cannot', 'print', 'zebra', 'printer', 'anymore', 'error', 'message', 'runtime', 'error', 'type', 'mismatch', 'give', 'support'] list_processed_text: [['zebra'], ['pinter'], ['working'], ['name'], ['lzapwbnc'], ['yrjekzqv'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hi'], ['automatci'], ['upgrade'], ['cannot'], ['print'], ['zebra'], ['printer'], ['anymore'], ['error'], ['message'], ['runtime'], ['error'], ['type'], ['mismatch'], ['give'], ['support']] k: 1832 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] processed_text: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['gso'], ['blank'], ['call'], ['loud'], ['noise'], ['gso']] k: 1833 len: <class 'list'> Data: ['way', 'access', 'hr', 'tool', 'time', 'mobile', 'device', 'name', 'bgflmyar', 'xgufkidq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'way', 'access', 'hr', 'tool', 'time', 'mobile', 'device'] processed_text: ['way', 'access', 'hr', 'tool', 'time', 'mobile', 'device', 'name', 'bgflmyar', 'xgufkidq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'way', 'access', 'hr', 'tool', 'time', 'mobile', 'device'] list_processed_text: [['way'], ['access'], ['hr'], ['tool'], ['time'], ['mobile'], ['device'], ['name'], ['bgflmyar'], ['xgufkidq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['way'], ['access'], ['hr'], ['tool'], ['time'], ['mobile'], ['device']] k: 1834 len: <class 'list'> Data: ['unable', 'open', 'website', 'unable', 'open', 'website'] processed_text: ['unable', 'open', 'website', 'unable', 'open', 'website'] list_processed_text: [['unable'], ['open'], ['website'], ['unable'], ['open'], ['website']] k: 1835 len: <class 'list'> Data: ['company', 'center', 'pulling', 'information', 'erp', 'several', 'company', 'center', 'account', 'pulling', 'information', 'erp', 'checked', 'make', 'sure', 'created', 'correctly', 'effecting', 'channel', 'partner', 'ability', 'use', 'company', 'center'] processed_text: ['company', 'center', 'pulling', 'information', 'erp', 'several', 'company', 'center', 'account', 'pulling', 'information', 'erp', 'checked', 'make', 'sure', 'created', 'correctly', 'effecting', 'channel', 'partner', 'ability', 'use', 'company', 'center'] list_processed_text: [['company'], ['center'], ['pulling'], ['information'], ['erp'], ['several'], ['company'], ['center'], ['account'], ['pulling'], ['information'], ['erp'], ['checked'], ['make'], ['sure'], ['created'], ['correctly'], ['effecting'], ['channel'], ['partner'], ['ability'], ['use'], ['company'], ['center']] k: 1836 len: <class 'list'> Data: ['vpn', 'vpn', 'vpn', 'working'] processed_text: ['vpn', 'vpn', 'vpn', 'working'] list_processed_text: [['vpn'], ['vpn'], ['vpn'], ['working']] k: 1837 len: <class 'list'> Data: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] processed_text: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] list_processed_text: [['erp'], ['sid'], ['locked'], ['erp'], ['sid'], ['locked']] k: 1838 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'sid', 'password', 'reset', 'erp', 'sid', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'erp', 'sid', 'password', 'reset', 'erp', 'sid', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['erp'], ['sid'], ['password'], ['reset']] k: 1839 len: <class 'list'> Data: ['ethic', 'flash', 'player', 'issue', 'ethic', 'flash', 'player', 'issue'] processed_text: ['ethic', 'flash', 'player', 'issue', 'ethic', 'flash', 'player', 'issue'] list_processed_text: [['ethic'], ['flash'], ['player'], ['issue'], ['ethic'], ['flash'], ['player'], ['issue']] k: 1840 len: <class 'list'> Data: ['reset', 'password', 'fylrosuk', 'kedgmiul', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'fylrosuk', 'kedgmiul', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['fylrosuk'], ['kedgmiul'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1841 len: <class 'list'> Data: ['reset', 'password', 'fylrosuk', 'kedgmiul', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'fylrosuk', 'kedgmiul', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['fylrosuk'], ['kedgmiul'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1842 len: <class 'list'> Data: ['please', 'extend', 'user', 'validation', 'development', 'environment', 'sid', 'still', 'expired', 'user', 'vvamrtryot', 'please', 'extend', 'user', 'validation', 'development', 'environment', 'sid', 'still', 'expired', 'user', 'vvamrtryot'] processed_text: ['please', 'extend', 'user', 'validation', 'development', 'environment', 'sid', 'still', 'expired', 'user', 'vvamrtryot', 'please', 'extend', 'user', 'validation', 'development', 'environment', 'sid', 'still', 'expired', 'user', 'vvamrtryot'] list_processed_text: [['please'], ['extend'], ['user'], ['validation'], ['development'], ['environment'], ['sid'], ['still'], ['expired'], ['user'], ['vvamrtryot'], ['please'], ['extend'], ['user'], ['validation'], ['development'], ['environment'], ['sid'], ['still'], ['expired'], ['user'], ['vvamrtryot']] k: 1843 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'working'] processed_text: ['vpn', 'working', 'vpn', 'working'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['working']] k: 1844 len: <class 'list'> Data: ['u', 'plant', 'plant', 'server', 'connecting', 'plant', 'server', 'hostname', 'lrrsm', 'connecting', 'see', 'gtehdnyu', 'light', 'front', 'server', 'blinking'] processed_text: ['u', 'plant', 'plant', 'server', 'connecting', 'plant', 'server', 'hostname', 'lrrsm', 'connecting', 'see', 'gtehdnyu', 'light', 'front', 'server', 'blinking'] list_processed_text: [['u'], ['plant'], ['plant'], ['server'], ['connecting'], ['plant'], ['server'], ['hostname'], ['lrrsm'], ['connecting'], ['see'], ['gtehdnyu'], ['light'], ['front'], ['server'], ['blinking']] k: 1845 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'zebra', 'label', 'printer', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'usa', 'zebra', 'label', 'printer', 'sm', 'model', 'detailed', 'description', 'problem', 'zebra', 'print', 'software', 'connect', 'erp', 'see', 'attached', 'photo', 'error', 'received', 'type', 'document', 'printing', 'product', 'label', 'system', 'application', 'used', 'time', 'problem', 'zebra', 'print', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'printer', 'able', 'print', 'window', 'uacyltoe', 'hxgaycze', 'page', 'appear', 'pc', 'network', 'printer', 'issue', 'erp', 'system', 'system', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'zebra', 'label', 'printer', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'usa', 'zebra', 'label', 'printer', 'sm', 'model', 'detailed', 'description', 'problem', 'zebra', 'print', 'software', 'connect', 'erp', 'see', 'attached', 'photo', 'error', 'received', 'type', 'document', 'printing', 'product', 'label', 'system', 'application', 'used', 'time', 'problem', 'zebra', 'print', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'printer', 'able', 'print', 'window', 'uacyltoe', 'hxgaycze', 'page', 'appear', 'pc', 'network', 'printer', 'issue', 'erp', 'system', 'system', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['zebra'], ['label'], ['printer'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['usa'], ['zebra'], ['label'], ['printer'], ['sm'], ['model'], ['detailed'], ['description'], ['problem'], ['zebra'], ['print'], ['software'], ['connect'], ['erp'], ['see'], ['attached'], ['photo'], ['error'], ['received'], ['type'], ['document'], ['printing'], ['product'], ['label'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['zebra'], ['print'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['printer'], ['able'], ['print'], ['window'], ['uacyltoe'], ['hxgaycze'], ['page'], ['appear'], ['pc'], ['network'], ['printer'], ['issue'], ['erp'], ['system'], ['system'], ['sid'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 1846 len: <class 'list'> Data: ['reset', 'password', 'kslhobgj', 'cyhvefna', 'interaction', 'desktop', 'reset', 'password', 'kslhobgj', 'cyhvefna', 'interaction', 'desktop'] processed_text: ['reset', 'password', 'kslhobgj', 'cyhvefna', 'interaction', 'desktop', 'reset', 'password', 'kslhobgj', 'cyhvefna', 'interaction', 'desktop'] list_processed_text: [['reset'], ['password'], ['kslhobgj'], ['cyhvefna'], ['interaction'], ['desktop'], ['reset'], ['password'], ['kslhobgj'], ['cyhvefna'], ['interaction'], ['desktop']] k: 1847 len: <class 'list'> Data: ['drive', 'missing', 'drive', 'missing'] processed_text: ['drive', 'missing', 'drive', 'missing'] list_processed_text: [['drive'], ['missing'], ['drive'], ['missing']] k: 1848 len: <class 'list'> Data: ['dw', 'unlock', 'erp', 'sid', 'dw', 'unlock', 'erp', 'sid'] processed_text: ['dw', 'unlock', 'erp', 'sid', 'dw', 'unlock', 'erp', 'sid'] list_processed_text: [['dw'], ['unlock'], ['erp'], ['sid'], ['dw'], ['unlock'], ['erp'], ['sid']] k: 1849 len: <class 'list'> Data: ['unable', 'reach', 'collaboration', 'platform', 'crm', 'error', 'information', 'help', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'bdacd', 'beb', 'adddf', 'date', 'time', 'url', 'sitepages', 'home', 'aspx', 'user', 'issue', 'type', 'user', 'directory', 'best'] processed_text: ['unable', 'reach', 'collaboration', 'platform', 'crm', 'error', 'information', 'help', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'bdacd', 'beb', 'adddf', 'date', 'time', 'url', 'sitepages', 'home', 'aspx', 'user', 'issue', 'type', 'user', 'directory', 'best'] list_processed_text: [['unable'], ['reach'], ['collaboration'], ['platform'], ['crm'], ['error'], ['information'], ['help'], ['contact'], ['support'], ['team'], ['include'], ['technical'], ['detail'], ['correlation'], ['id'], ['bdacd'], ['beb'], ['adddf'], ['date'], ['time'], ['url'], ['sitepages'], ['home'], ['aspx'], ['user'], ['issue'], ['type'], ['user'], ['directory'], ['best']] k: 1850 len: <class 'list'> Data: [] processed_text: [] list_processed_text: [] k: 1851 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'unlock', 'password', 'reset', 'ipglathybel', 'ipglathybel', 'qlhmawgi', 'sgwipoxn', 'password', 'reset', 'erp'] processed_text: ['qlhmawgi', 'sgwipoxn', 'unlock', 'password', 'reset', 'ipglathybel', 'ipglathybel', 'qlhmawgi', 'sgwipoxn', 'password', 'reset', 'erp'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['unlock'], ['password'], ['reset'], ['ipglathybel'], ['ipglathybel'], ['qlhmawgi'], ['sgwipoxn'], ['password'], ['reset'], ['erp']] k: 1852 len: <class 'list'> Data: ['network', 'outage', 'germany', 'germany', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'germany', 'germany', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['germany'], ['germany'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1853 len: <class 'list'> Data: ['outlook', 'send', 'receive', 'progress', 'error', 'unable', 'send', 'email', 'problem', 'last', 'week', 'see', 'screenshot', 'error'] processed_text: ['outlook', 'send', 'receive', 'progress', 'error', 'unable', 'send', 'email', 'problem', 'last', 'week', 'see', 'screenshot', 'error'] list_processed_text: [['outlook'], ['send'], ['receive'], ['progress'], ['error'], ['unable'], ['send'], ['email'], ['problem'], ['last'], ['week'], ['see'], ['screenshot'], ['error']] k: 1854 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 1855 len: <class 'list'> Data: ['zebra', 'printer', 'working', 'update', 'hello', 'try', 'print', 'zebra', 'error', 'message', 'appair', 'please', 'see', 'screen', 'shot', 'message', 'seems', 'problem', 'erp', 'connection'] processed_text: ['zebra', 'printer', 'working', 'update', 'hello', 'try', 'print', 'zebra', 'error', 'message', 'appair', 'please', 'see', 'screen', 'shot', 'message', 'seems', 'problem', 'erp', 'connection'] list_processed_text: [['zebra'], ['printer'], ['working'], ['update'], ['hello'], ['try'], ['print'], ['zebra'], ['error'], ['message'], ['appair'], ['please'], ['see'], ['screen'], ['shot'], ['message'], ['seems'], ['problem'], ['erp'], ['connection']] k: 1856 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 1857 len: <class 'list'> Data: ['problem', 'laser', 'pfjwinbg', 'ljtzbdqg', 'problem', 'laser', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['problem', 'laser', 'pfjwinbg', 'ljtzbdqg', 'problem', 'laser', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['problem'], ['laser'], ['pfjwinbg'], ['ljtzbdqg'], ['problem'], ['laser'], ['pfjwinbg'], ['ljtzbdqg']] k: 1858 len: <class 'list'> Data: ['problem', 'lasplant', 'pfjwinbg', 'ljtzbdqg', 'problem', 'lasplant', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['problem', 'lasplant', 'pfjwinbg', 'ljtzbdqg', 'problem', 'lasplant', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['problem'], ['lasplant'], ['pfjwinbg'], ['ljtzbdqg'], ['problem'], ['lasplant'], ['pfjwinbg'], ['ljtzbdqg']] k: 1859 len: <class 'list'> Data: ['archiving', 'tool', 'client', 'log', 'file', 'dear', 'team', 'archiving', 'tool', 'archive', 'open', 'inwarehouse', 'tool', 'please', 'repair'] processed_text: ['archiving', 'tool', 'client', 'log', 'file', 'dear', 'team', 'archiving', 'tool', 'archive', 'open', 'inwarehouse', 'tool', 'please', 'repair'] list_processed_text: [['archiving'], ['tool'], ['client'], ['log'], ['file'], ['dear'], ['team'], ['archiving'], ['tool'], ['archive'], ['open'], ['inwarehouse'], ['tool'], ['please'], ['repair']] k: 1860 len: <class 'list'> Data: ['plant', 'erp', 'error', 'getting', 'error', 'trying', 'print', 'label', 'using', 'zebra', 'printer', 'shipping', 'thoyhts', 'brthyrtiv', 'dpuifqeo', 'eglwsfkn', 'imp', 'yes', 'erp', 'error', 'message'] processed_text: ['plant', 'erp', 'error', 'getting', 'error', 'trying', 'print', 'label', 'using', 'zebra', 'printer', 'shipping', 'thoyhts', 'brthyrtiv', 'dpuifqeo', 'eglwsfkn', 'imp', 'yes', 'erp', 'error', 'message'] list_processed_text: [['plant'], ['erp'], ['error'], ['getting'], ['error'], ['trying'], ['print'], ['label'], ['using'], ['zebra'], ['printer'], ['shipping'], ['thoyhts'], ['brthyrtiv'], ['dpuifqeo'], ['eglwsfkn'], ['imp'], ['yes'], ['erp'], ['error'], ['message']] k: 1861 len: <class 'list'> Data: ['user', 'vvhthyoffc', 'blocked', 'citrix', 'user', 'vvbthryhn', 'blocked', 'citrix', 'access', 'please', 'unlock'] processed_text: ['user', 'vvhthyoffc', 'blocked', 'citrix', 'user', 'vvbthryhn', 'blocked', 'citrix', 'access', 'please', 'unlock'] list_processed_text: [['user'], ['vvhthyoffc'], ['blocked'], ['citrix'], ['user'], ['vvbthryhn'], ['blocked'], ['citrix'], ['access'], ['please'], ['unlock']] k: 1862 len: <class 'list'> Data: ['r', 'cksetzung', 'der', 'passw', 'rter', 'r', 'account', 'vvwtyeidt', 'vvftgors', 'vvnergtubj', 'vvthygschj', 'r', 'cksetzung', 'der', 'passw', 'rter', 'r', 'account', 'vvwtyeidt', 'vvftgors', 'vvnergtubj', 'vvthygschj'] processed_text: ['r', 'cksetzung', 'der', 'passw', 'rter', 'r', 'account', 'vvwtyeidt', 'vvftgors', 'vvnergtubj', 'vvthygschj', 'r', 'cksetzung', 'der', 'passw', 'rter', 'r', 'account', 'vvwtyeidt', 'vvftgors', 'vvnergtubj', 'vvthygschj'] list_processed_text: [['r'], ['cksetzung'], ['der'], ['passw'], ['rter'], ['r'], ['account'], ['vvwtyeidt'], ['vvftgors'], ['vvnergtubj'], ['vvthygschj'], ['r'], ['cksetzung'], ['der'], ['passw'], ['rter'], ['r'], ['account'], ['vvwtyeidt'], ['vvftgors'], ['vvnergtubj'], ['vvthygschj']] k: 1863 len: <class 'list'> Data: ['lean', 'event', 'added', 'lean', 'event', 'added'] processed_text: ['lean', 'event', 'added', 'lean', 'event', 'added'] list_processed_text: [['lean'], ['event'], ['added'], ['lean'], ['event'], ['added']] k: 1864 len: <class 'list'> Data: ['scm', 'software', 'supply', 'chain', 'software', 'scm', 'software', 'password', 'locked', 'please', 'reset', 'log', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['scm', 'software', 'supply', 'chain', 'software', 'scm', 'software', 'password', 'locked', 'please', 'reset', 'log', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['scm'], ['software'], ['supply'], ['chain'], ['software'], ['scm'], ['software'], ['password'], ['locked'], ['please'], ['reset'], ['log'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 1865 len: <class 'list'> Data: ['usa', 'dell', 'rack', 'system', 'bfrx', 'hardware', 'component', 'warning', 'critical', 'state', 'detected', 'iom', 'sensor', 'chassis', 'internal', 'power', 'supply', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] processed_text: ['usa', 'dell', 'rack', 'system', 'bfrx', 'hardware', 'component', 'warning', 'critical', 'state', 'detected', 'iom', 'sensor', 'chassis', 'internal', 'power', 'supply', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] list_processed_text: [['usa'], ['dell'], ['rack'], ['system'], ['bfrx'], ['hardware'], ['component'], ['warning'], ['critical'], ['state'], ['detected'], ['iom'], ['sensor'], ['chassis'], ['internal'], ['power'], ['supply'], ['reporting'], ['non'], ['critical'], ['alert'], ['could'], ['please'], ['investigate'], ['advise']] k: 1866 len: <class 'list'> Data: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'ip', 'error', 'attachment', 'label', 'getting', 'printed'] processed_text: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'ip', 'error', 'attachment', 'label', 'getting', 'printed'] list_processed_text: [['zebra'], ['printer'], ['issue'], ['label'], ['printer'], ['working'], ['error'], ['connection'], ['erp'], ['could'], ['made'], ['ip'], ['error'], ['attachment'], ['label'], ['getting'], ['printed']] k: 1867 len: <class 'list'> Data: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'printer', 'name', 'prtoplant', 'multiple', 'location', 'affected', 'usa', 'germany', 'also', 'issue'] processed_text: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'printer', 'name', 'prtoplant', 'multiple', 'location', 'affected', 'usa', 'germany', 'also', 'issue'] list_processed_text: [['zebra'], ['printer'], ['issue'], ['label'], ['printer'], ['working'], ['error'], ['connection'], ['erp'], ['could'], ['made'], ['printer'], ['name'], ['prtoplant'], ['multiple'], ['location'], ['affected'], ['usa'], ['germany'], ['also'], ['issue']] k: 1868 len: <class 'list'> Data: ['submitted', 'filled', 'engineering', 'tool', 'system', 'created', 'engineering', 'tool', 'filled', 'data', 'click', 'submit', 'button', 'given', 'error', 'message', 'please', 'see', 'message', 'detail'] processed_text: ['submitted', 'filled', 'engineering', 'tool', 'system', 'created', 'engineering', 'tool', 'filled', 'data', 'click', 'submit', 'button', 'given', 'error', 'message', 'please', 'see', 'message', 'detail'] list_processed_text: [['submitted'], ['filled'], ['engineering'], ['tool'], ['system'], ['created'], ['engineering'], ['tool'], ['filled'], ['data'], ['click'], ['submit'], ['button'], ['given'], ['error'], ['message'], ['please'], ['see'], ['message'], ['detail']] k: 1869 len: <class 'list'> Data: ['erp', 'crm', 'instant', 'timeout', 'user', 'kubyhtuaa', 'issue', 'working', 'erp', 'crm', 'user', 'encounter', 'instant', 'timeouts', 'please', 'resolve', 'advise', 'resolve'] processed_text: ['erp', 'crm', 'instant', 'timeout', 'user', 'kubyhtuaa', 'issue', 'working', 'erp', 'crm', 'user', 'encounter', 'instant', 'timeouts', 'please', 'resolve', 'advise', 'resolve'] list_processed_text: [['erp'], ['crm'], ['instant'], ['timeout'], ['user'], ['kubyhtuaa'], ['issue'], ['working'], ['erp'], ['crm'], ['user'], ['encounter'], ['instant'], ['timeouts'], ['please'], ['resolve'], ['advise'], ['resolve']] k: 1870 len: <class 'list'> Data: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'printer', 'name', 'prtor', 'prtor', 'label', 'getting', 'printed'] processed_text: ['zebra', 'printer', 'issue', 'label', 'printer', 'working', 'error', 'connection', 'erp', 'could', 'made', 'printer', 'name', 'prtor', 'prtor', 'label', 'getting', 'printed'] list_processed_text: [['zebra'], ['printer'], ['issue'], ['label'], ['printer'], ['working'], ['error'], ['connection'], ['erp'], ['could'], ['made'], ['printer'], ['name'], ['prtor'], ['prtor'], ['label'], ['getting'], ['printed']] k: 1871 len: <class 'list'> Data: ['set', 'abc', 'code', 'erp', 'crm', 'set', 'abc', 'code', 'erp', 'crm', 'erp', 'ok'] processed_text: ['set', 'abc', 'code', 'erp', 'crm', 'set', 'abc', 'code', 'erp', 'crm', 'erp', 'ok'] list_processed_text: [['set'], ['abc'], ['code'], ['erp'], ['crm'], ['set'], ['abc'], ['code'], ['erp'], ['crm'], ['erp'], ['ok']] k: 1872 len: <class 'list'> Data: ['locked', 'account', 'please', 'help', 'reset', 'password', 'login', 'dabhrujirthy', 'password', 'ryljar'] processed_text: ['locked', 'account', 'please', 'help', 'reset', 'password', 'login', 'dabhrujirthy', 'password', 'ryljar'] list_processed_text: [['locked'], ['account'], ['please'], ['help'], ['reset'], ['password'], ['login'], ['dabhrujirthy'], ['password'], ['ryljar']] k: 1873 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1874 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 1875 len: <class 'list'> Data: ['automatic', 'registration', 'call', 'outlook', 'computer', 'also', 'want', 'connect', 'collaboration', 'platform', 'time,', 'is,', 'log', 'business', 'school', 'account', 'enter', 'email', 'address', 'password', 'nothing', 'happens'] processed_text: ['automatic', 'registration', 'call', 'outlook', 'computer', 'also', 'want', 'connect', 'collaboration', 'platform', 'time,', 'is,', 'log', 'business', 'school', 'account', 'enter', 'email', 'address', 'password', 'nothing', 'happens'] list_processed_text: [['automatic'], ['registration'], ['call'], ['outlook'], ['computer'], ['also'], ['want'], ['connect'], ['collaboration'], ['platform'], ['time,'], ['is,'], ['log'], ['business'], ['school'], ['account'], ['enter'], ['email'], ['address'], ['password'], ['nothing'], ['happens']] k: 1876 len: <class 'list'> Data: ['cannot', 'access', 'dob', 'report', 'able', 'access', 'need', 'report', 'global', 'busienss', 'cannot', 'access', 'dob', 'report', 'able', 'access', 'need', 'report', 'global', 'busienss'] processed_text: ['cannot', 'access', 'dob', 'report', 'able', 'access', 'need', 'report', 'global', 'busienss', 'cannot', 'access', 'dob', 'report', 'able', 'access', 'need', 'report', 'global', 'busienss'] list_processed_text: [['cannot'], ['access'], ['dob'], ['report'], ['able'], ['access'], ['need'], ['report'], ['global'], ['busienss'], ['cannot'], ['access'], ['dob'], ['report'], ['able'], ['access'], ['need'], ['report'], ['global'], ['busienss']] k: 1877 len: <class 'list'> Data: ['printer', 'ag', 'printing', 'ink', 'empty', 'hello', 'support', 'team', 'printer', 'ag', 'need', 'printing', 'ink', 'get', 'paper', 'printer', 'ask', 'support'] processed_text: ['printer', 'ag', 'printing', 'ink', 'empty', 'hello', 'support', 'team', 'printer', 'ag', 'need', 'printing', 'ink', 'get', 'paper', 'printer', 'ask', 'support'] list_processed_text: [['printer'], ['ag'], ['printing'], ['ink'], ['empty'], ['hello'], ['support'], ['team'], ['printer'], ['ag'], ['need'], ['printing'], ['ink'], ['get'], ['paper'], ['printer'], ['ask'], ['support']] k: 1878 len: <class 'list'> Data: ['able', 'connect', 'vpn', 'able', 'connect', 'vpn'] processed_text: ['able', 'connect', 'vpn', 'able', 'connect', 'vpn'] list_processed_text: [['able'], ['connect'], ['vpn'], ['able'], ['connect'], ['vpn']] k: 1879 len: <class 'list'> Data: ['unable', 'process', 'break', 'bulk', 'sto', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'close', 'break', 'bulk', 'sto', 'ec', 'system', 'due', 'nothing', 'system', 'completely', 'bulk', 'plant', 'plant', 'sto', 'ec', 'system', 'nothing', 'shown', 'attached', 'reference', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] processed_text: ['unable', 'process', 'break', 'bulk', 'sto', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'close', 'break', 'bulk', 'sto', 'ec', 'system', 'due', 'nothing', 'system', 'completely', 'bulk', 'plant', 'plant', 'sto', 'ec', 'system', 'nothing', 'shown', 'attached', 'reference', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] list_processed_text: [['unable'], ['process'], ['break'], ['bulk'], ['sto'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['close'], ['break'], ['bulk'], ['sto'], ['ec'], ['system'], ['due'], ['nothing'], ['system'], ['completely'], ['bulk'], ['plant'], ['plant'], ['sto'], ['ec'], ['system'], ['nothing'], ['shown'], ['attached'], ['reference'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['asia'], ['regional'], ['distribution'], ['centre'], ['email']] k: 1880 len: <class 'list'> Data: ['abholen', 'alte', 'equipment', 'cad', 'w', 'nd', 'monitor', 'umykjweg', 'jpwrfuhk', 'abholen', 'alte', 'equipment', 'cad', 'w', 'nd', 'monitor', 'umykjweg', 'jpwrfuhk'] processed_text: ['abholen', 'alte', 'equipment', 'cad', 'w', 'nd', 'monitor', 'umykjweg', 'jpwrfuhk', 'abholen', 'alte', 'equipment', 'cad', 'w', 'nd', 'monitor', 'umykjweg', 'jpwrfuhk'] list_processed_text: [['abholen'], ['alte'], ['equipment'], ['cad'], ['w'], ['nd'], ['monitor'], ['umykjweg'], ['jpwrfuhk'], ['abholen'], ['alte'], ['equipment'], ['cad'], ['w'], ['nd'], ['monitor'], ['umykjweg'], ['jpwrfuhk']] k: 1881 len: <class 'list'> Data: ['reset', 'password', 'good', 'day', 'please', 'assist', 'resetting', 'erp', 'password', 'user', 'name', 'krugew', 'kind'] processed_text: ['reset', 'password', 'good', 'day', 'please', 'assist', 'resetting', 'erp', 'password', 'user', 'name', 'krugew', 'kind'] list_processed_text: [['reset'], ['password'], ['good'], ['day'], ['please'], ['assist'], ['resetting'], ['erp'], ['password'], ['user'], ['name'], ['krugew'], ['kind']] k: 1882 len: <class 'list'> Data: ['bug', 'list', 'operator', 'dashbankrd', 'please', 'find', 'attachment', 'issue', 'detail'] processed_text: ['bug', 'list', 'operator', 'dashbankrd', 'please', 'find', 'attachment', 'issue', 'detail'] list_processed_text: [['bug'], ['list'], ['operator'], ['dashbankrd'], ['please'], ['find'], ['attachment'], ['issue'], ['detail']] k: 1883 len: <class 'list'> Data: ['network', 'outage', 'juarez', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'juarez', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['juarez'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1884 len: <class 'list'> Data: ['eu', 'remote', 'fails', 'connect', 'na', 'remote', 'terminates', 'automatically', 'trying', 'connect', 'eu', 'remote', 'get', 'session', 'finished', 'logged', 'successfully'] processed_text: ['eu', 'remote', 'fails', 'connect', 'na', 'remote', 'terminates', 'automatically', 'trying', 'connect', 'eu', 'remote', 'get', 'session', 'finished', 'logged', 'successfully'] list_processed_text: [['eu'], ['remote'], ['fails'], ['connect'], ['na'], ['remote'], ['terminates'], ['automatically'], ['trying'], ['connect'], ['eu'], ['remote'], ['get'], ['session'], ['finished'], ['logged'], ['successfully']] k: 1885 len: <class 'list'> Data: ['erp', 'password', 'change', 'password', 'management', 'tool', 'error', 'password', 'change', 'failed', 'old', 'password', 'invalidated', 'hi', 'gso', 'tried', 'thrgxqsuojr', 'xwbesorfs', 'renew', 'password', 'erp', 'password', 'management', 'tool', 'password', 'manager', 'doesnt', 'work', 'error', 'message', 'error', 'password', 'change', 'failed', 'old', 'password', 'invalidated', 'please', 'try', 'using', 'different', 'password', 'failed', 'perform', 'operation', 'reset', 'please', 'reset', 'password'] processed_text: ['erp', 'password', 'change', 'password', 'management', 'tool', 'error', 'password', 'change', 'failed', 'old', 'password', 'invalidated', 'hi', 'gso', 'tried', 'thrgxqsuojr', 'xwbesorfs', 'renew', 'password', 'erp', 'password', 'management', 'tool', 'password', 'manager', 'doesnt', 'work', 'error', 'message', 'error', 'password', 'change', 'failed', 'old', 'password', 'invalidated', 'please', 'try', 'using', 'different', 'password', 'failed', 'perform', 'operation', 'reset', 'please', 'reset', 'password'] list_processed_text: [['erp'], ['password'], ['change'], ['password'], ['management'], ['tool'], ['error'], ['password'], ['change'], ['failed'], ['old'], ['password'], ['invalidated'], ['hi'], ['gso'], ['tried'], ['thrgxqsuojr'], ['xwbesorfs'], ['renew'], ['password'], ['erp'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['doesnt'], ['work'], ['error'], ['message'], ['error'], ['password'], ['change'], ['failed'], ['old'], ['password'], ['invalidated'], ['please'], ['try'], ['using'], ['different'], ['password'], ['failed'], ['perform'], ['operation'], ['reset'], ['please'], ['reset'], ['password']] k: 1886 len: <class 'list'> Data: ['install', 'hardcopy', 'ewew', 'rhaycqjg', 'arcgonvy', 'install', 'hardcopy', 'ewew', 'rhaycqjg', 'arcgonvy'] processed_text: ['install', 'hardcopy', 'ewew', 'rhaycqjg', 'arcgonvy', 'install', 'hardcopy', 'ewew', 'rhaycqjg', 'arcgonvy'] list_processed_text: [['install'], ['hardcopy'], ['ewew'], ['rhaycqjg'], ['arcgonvy'], ['install'], ['hardcopy'], ['ewew'], ['rhaycqjg'], ['arcgonvy']] k: 1887 len: <class 'list'> Data: ['connect', 'hana', 'server', 'via', 'u', 'vpn', 'using', 'u', 'vpn', 'european', 'one', 'fjaqbgnld', 'yukdzwxs', 'reach', 'hana', 'box', 'connect', 'machine', 'network', 'attached', 'reporting', 'tool', 'failure', 'tracert', 'box', 'rebooted', 'machine', 'broadband'] processed_text: ['connect', 'hana', 'server', 'via', 'u', 'vpn', 'using', 'u', 'vpn', 'european', 'one', 'fjaqbgnld', 'yukdzwxs', 'reach', 'hana', 'box', 'connect', 'machine', 'network', 'attached', 'reporting', 'tool', 'failure', 'tracert', 'box', 'rebooted', 'machine', 'broadband'] list_processed_text: [['connect'], ['hana'], ['server'], ['via'], ['u'], ['vpn'], ['using'], ['u'], ['vpn'], ['european'], ['one'], ['fjaqbgnld'], ['yukdzwxs'], ['reach'], ['hana'], ['box'], ['connect'], ['machine'], ['network'], ['attached'], ['reporting'], ['tool'], ['failure'], ['tracert'], ['box'], ['rebooted'], ['machine'], ['broadband']] k: 1888 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['erkheim'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1889 len: <class 'list'> Data: ['problem', 'printer', 'queue', 'currently', 'running', 'fdyietau', 'dvsyxwbu', 'problem', 'printer', 'queue', 'currently', 'running', 'fdyietau', 'dvsyxwbu'] processed_text: ['problem', 'printer', 'queue', 'currently', 'running', 'fdyietau', 'dvsyxwbu', 'problem', 'printer', 'queue', 'currently', 'running', 'fdyietau', 'dvsyxwbu'] list_processed_text: [['problem'], ['printer'], ['queue'], ['currently'], ['running'], ['fdyietau'], ['dvsyxwbu'], ['problem'], ['printer'], ['queue'], ['currently'], ['running'], ['fdyietau'], ['dvsyxwbu']] k: 1890 len: <class 'list'> Data: ['paper', 'jam', 'insert', 'printer', 'paper', 'jam', 'insert', 'printer'] processed_text: ['paper', 'jam', 'insert', 'printer', 'paper', 'jam', 'insert', 'printer'] list_processed_text: [['paper'], ['jam'], ['insert'], ['printer'], ['paper'], ['jam'], ['insert'], ['printer']] k: 1891 len: <class 'list'> Data: ['different', 'problem', 'please', 'reinstall', 'eagw', 'current', 'fy', 'company', 'image', 'upgrade', 'ramdnty', 'gb', 'different', 'problem', 'please', 'reinstall', 'eagw', 'current', 'fy', 'company', 'image', 'upgrade', 'ramdnty', 'gb'] processed_text: ['different', 'problem', 'please', 'reinstall', 'eagw', 'current', 'fy', 'company', 'image', 'upgrade', 'ramdnty', 'gb', 'different', 'problem', 'please', 'reinstall', 'eagw', 'current', 'fy', 'company', 'image', 'upgrade', 'ramdnty', 'gb'] list_processed_text: [['different'], ['problem'], ['please'], ['reinstall'], ['eagw'], ['current'], ['fy'], ['company'], ['image'], ['upgrade'], ['ramdnty'], ['gb'], ['different'], ['problem'], ['please'], ['reinstall'], ['eagw'], ['current'], ['fy'], ['company'], ['image'], ['upgrade'], ['ramdnty'], ['gb']] k: 1892 len: <class 'list'> Data: ['enter', 'edit', 'link', 'need', 'enter', 'edit', 'link', 'ef', 'fdd', 'cd', 'da', 'andfile', 'apac', 'approved', 'exception', 'list', 'xlsxandaction', 'default'] processed_text: ['enter', 'edit', 'link', 'need', 'enter', 'edit', 'link', 'ef', 'fdd', 'cd', 'da', 'andfile', 'apac', 'approved', 'exception', 'list', 'xlsxandaction', 'default'] list_processed_text: [['enter'], ['edit'], ['link'], ['need'], ['enter'], ['edit'], ['link'], ['ef'], ['fdd'], ['cd'], ['da'], ['andfile'], ['apac'], ['approved'], ['exception'], ['list'], ['xlsxandaction'], ['default']] k: 1893 len: <class 'list'> Data: ['vpn', 'getting', 'log', 'name', 'vithrkas', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'getting', 'log'] processed_text: ['vpn', 'getting', 'log', 'name', 'vithrkas', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'getting', 'log'] list_processed_text: [['vpn'], ['getting'], ['log'], ['name'], ['vithrkas'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['vpn'], ['getting'], ['log']] k: 1894 len: <class 'list'> Data: ['cant', 'preview', 'picture', 'explorer', 'see', 'icon', 'cant', 'preview', 'picture', 'explorer', 'see', 'icon'] processed_text: ['cant', 'preview', 'picture', 'explorer', 'see', 'icon', 'cant', 'preview', 'picture', 'explorer', 'see', 'icon'] list_processed_text: [['cant'], ['preview'], ['picture'], ['explorer'], ['see'], ['icon'], ['cant'], ['preview'], ['picture'], ['explorer'], ['see'], ['icon']] k: 1895 len: <class 'list'> Data: ['host', 'hostname', 'disconnected', 'vsphere', 'host', 'hostname', 'disconnected', 'vsphere'] processed_text: ['host', 'hostname', 'disconnected', 'vsphere', 'host', 'hostname', 'disconnected', 'vsphere'] list_processed_text: [['host'], ['hostname'], ['disconnected'], ['vsphere'], ['host'], ['hostname'], ['disconnected'], ['vsphere']] k: 1896 len: <class 'list'> Data: ['vpn', 'connection', 'issue', 'hi', 'cannot', 'access', 'vpn', 'click', 'open', 'new', 'session', 'nothing', 'happens'] processed_text: ['vpn', 'connection', 'issue', 'hi', 'cannot', 'access', 'vpn', 'click', 'open', 'new', 'session', 'nothing', 'happens'] list_processed_text: [['vpn'], ['connection'], ['issue'], ['hi'], ['cannot'], ['access'], ['vpn'], ['click'], ['open'], ['new'], ['session'], ['nothing'], ['happens']] k: 1897 len: <class 'list'> Data: ['erp', 'password', 'password', 'reg', 'sir', 'user', 'id', 'bathylardb', 'given', 'password', 'india', 'im', 'unable', 'login', 'erp', 'request', 'reset', 'password', 'send'] processed_text: ['erp', 'password', 'password', 'reg', 'sir', 'user', 'id', 'bathylardb', 'given', 'password', 'india', 'im', 'unable', 'login', 'erp', 'request', 'reset', 'password', 'send'] list_processed_text: [['erp'], ['password'], ['password'], ['reg'], ['sir'], ['user'], ['id'], ['bathylardb'], ['given'], ['password'], ['india'], ['im'], ['unable'], ['login'], ['erp'], ['request'], ['reset'], ['password'], ['send']] k: 1898 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1899 len: <class 'list'> Data: ['india', 'pbx', 'awyl', 'since', 'et', 'india', 'awyl', 'since', 'et'] processed_text: ['india', 'pbx', 'awyl', 'since', 'et', 'india', 'awyl', 'since', 'et'] list_processed_text: [['india'], ['pbx'], ['awyl'], ['since'], ['et'], ['india'], ['awyl'], ['since'], ['et']] k: 1900 len: <class 'list'> Data: ['add', 'user', 'ashtusis', 'pyhuule', 'phufsav', 'active', 'directory', 'eagcutview', 'add', 'user', 'ashtusis', 'pyhuule', 'phufsav', 'active', 'directory', 'eagcutview', 'remove', 'user', 'yhru', 'manyhsu', 'ayujdm', 'ad'] processed_text: ['add', 'user', 'ashtusis', 'pyhuule', 'phufsav', 'active', 'directory', 'eagcutview', 'add', 'user', 'ashtusis', 'pyhuule', 'phufsav', 'active', 'directory', 'eagcutview', 'remove', 'user', 'yhru', 'manyhsu', 'ayujdm', 'ad'] list_processed_text: [['add'], ['user'], ['ashtusis'], ['pyhuule'], ['phufsav'], ['active'], ['directory'], ['eagcutview'], ['add'], ['user'], ['ashtusis'], ['pyhuule'], ['phufsav'], ['active'], ['directory'], ['eagcutview'], ['remove'], ['user'], ['yhru'], ['manyhsu'], ['ayujdm'], ['ad']] k: 1901 len: <class 'list'> Data: ['germany', 'germany', 'gigabitethernet', 'germany', 'edksw', 'stack', 'sw', 'went', 'et', 'germany', 'germany', 'gigabitethernet', 'germany', 'edksw', 'stack', 'sw', 'went', 'et'] processed_text: ['germany', 'germany', 'gigabitethernet', 'germany', 'edksw', 'stack', 'sw', 'went', 'et', 'germany', 'germany', 'gigabitethernet', 'germany', 'edksw', 'stack', 'sw', 'went', 'et'] list_processed_text: [['germany'], ['germany'], ['gigabitethernet'], ['germany'], ['edksw'], ['stack'], ['sw'], ['went'], ['et'], ['germany'], ['germany'], ['gigabitethernet'], ['germany'], ['edksw'], ['stack'], ['sw'], ['went'], ['et']] k: 1902 len: <class 'list'> Data: ['reset', 'password', 'erp', 'sid', 'gso', 'please', 'kindly', 'reset', 'password', 'zhhtyangq', 'erp', 'sid'] processed_text: ['reset', 'password', 'erp', 'sid', 'gso', 'please', 'kindly', 'reset', 'password', 'zhhtyangq', 'erp', 'sid'] list_processed_text: [['reset'], ['password'], ['erp'], ['sid'], ['gso'], ['please'], ['kindly'], ['reset'], ['password'], ['zhhtyangq'], ['erp'], ['sid']] k: 1903 len: <class 'list'> Data: ['reeset', 'password', 'reeset', 'password'] processed_text: ['reeset', 'password', 'reeset', 'password'] list_processed_text: [['reeset'], ['password'], ['reeset'], ['password']] k: 1904 len: <class 'list'> Data: ['skype', 'pc', 'skype', 'loaded', 'browser', 'even', 'long', 'wait'] processed_text: ['skype', 'pc', 'skype', 'loaded', 'browser', 'even', 'long', 'wait'] list_processed_text: [['skype'], ['pc'], ['skype'], ['loaded'], ['browser'], ['even'], ['long'], ['wait']] k: 1905 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 1906 len: <class 'list'> Data: ['unlock', 'erp', 'sid', 'gso', 'please', 'unlock', 'erp', 'sid', 'linz'] processed_text: ['unlock', 'erp', 'sid', 'gso', 'please', 'unlock', 'erp', 'sid', 'linz'] list_processed_text: [['unlock'], ['erp'], ['sid'], ['gso'], ['please'], ['unlock'], ['erp'], ['sid'], ['linz']] k: 1907 len: <class 'list'> Data: ['skype', 'work', 'dear', 'team', 'skype', 'work', 'best'] processed_text: ['skype', 'work', 'dear', 'team', 'skype', 'work', 'best'] list_processed_text: [['skype'], ['work'], ['dear'], ['team'], ['skype'], ['work'], ['best']] k: 1908 len: <class 'list'> Data: ['vpn', 'access', 'pls', 'help', 'hi', 'helpdesk', 'trying', 'access', 'vpn', 'following', 'message', 'appears', 'unable', 'get', 'clicking', 'click', 'pls', 'help', 'ppm', 'review', 'outside', 'company', 'office', 'team', 'today', 'need', 'access', 'data', 'company', 'folder', 'thx', 'micheyi', 'gyhus', 'vice', 'president', 'company', 'inc', 'www', 'company', 'com'] processed_text: ['vpn', 'access', 'pls', 'help', 'hi', 'helpdesk', 'trying', 'access', 'vpn', 'following', 'message', 'appears', 'unable', 'get', 'clicking', 'click', 'pls', 'help', 'ppm', 'review', 'outside', 'company', 'office', 'team', 'today', 'need', 'access', 'data', 'company', 'folder', 'thx', 'micheyi', 'gyhus', 'vice', 'president', 'company', 'inc', 'www', 'company', 'com'] list_processed_text: [['vpn'], ['access'], ['pls'], ['help'], ['hi'], ['helpdesk'], ['trying'], ['access'], ['vpn'], ['following'], ['message'], ['appears'], ['unable'], ['get'], ['clicking'], ['click'], ['pls'], ['help'], ['ppm'], ['review'], ['outside'], ['company'], ['office'], ['team'], ['today'], ['need'], ['access'], ['data'], ['company'], ['folder'], ['thx'], ['micheyi'], ['gyhus'], ['vice'], ['president'], ['company'], ['inc'], ['www'], ['company'], ['com']] k: 1909 len: <class 'list'> Data: ['germany', 'connect', 'using', 'vpn', 'network', 'phone', 'email', 'germany', 'connect', 'local', 'network', 'using', 'vpn', 'connection', 'worked', 'morning', 'got', 'screen', 'logoff', 'successfully', 'called', 'phone', 'support', 'fixed', 'logon', 'reach', 'erp', 'server', 'plant', 'ping', 'failed', 'please', 'fix', 'external', 'employee', 'work'] processed_text: ['germany', 'connect', 'using', 'vpn', 'network', 'phone', 'email', 'germany', 'connect', 'local', 'network', 'using', 'vpn', 'connection', 'worked', 'morning', 'got', 'screen', 'logoff', 'successfully', 'called', 'phone', 'support', 'fixed', 'logon', 'reach', 'erp', 'server', 'plant', 'ping', 'failed', 'please', 'fix', 'external', 'employee', 'work'] list_processed_text: [['germany'], ['connect'], ['using'], ['vpn'], ['network'], ['phone'], ['email'], ['germany'], ['connect'], ['local'], ['network'], ['using'], ['vpn'], ['connection'], ['worked'], ['morning'], ['got'], ['screen'], ['logoff'], ['successfully'], ['called'], ['phone'], ['support'], ['fixed'], ['logon'], ['reach'], ['erp'], ['server'], ['plant'], ['ping'], ['failed'], ['please'], ['fix'], ['external'], ['employee'], ['work']] k: 1910 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1911 len: <class 'list'> Data: ['cant', 'connect', 'network', 'mobile', 'hot', 'spot', 'also', 'connecting', 'telecom', 'vendor', 'g', 'cant', 'connect', 'network', 'mobile', 'hot', 'spot', 'also', 'connecting', 'telecom', 'vendor', 'hecked', 'network', 'connection', 'setting', 'restarted', 'system', 'tried', 'connect', 'getting', 'limited', 'ph'] processed_text: ['cant', 'connect', 'network', 'mobile', 'hot', 'spot', 'also', 'connecting', 'telecom', 'vendor', 'g', 'cant', 'connect', 'network', 'mobile', 'hot', 'spot', 'also', 'connecting', 'telecom', 'vendor', 'hecked', 'network', 'connection', 'setting', 'restarted', 'system', 'tried', 'connect', 'getting', 'limited', 'ph'] list_processed_text: [['cant'], ['connect'], ['network'], ['mobile'], ['hot'], ['spot'], ['also'], ['connecting'], ['telecom'], ['vendor'], ['g'], ['cant'], ['connect'], ['network'], ['mobile'], ['hot'], ['spot'], ['also'], ['connecting'], ['telecom'], ['vendor'], ['hecked'], ['network'], ['connection'], ['setting'], ['restarted'], ['system'], ['tried'], ['connect'], ['getting'], ['limited'], ['ph']] k: 1912 len: <class 'list'> Data: ['eu', 'tool', 'batch', 'management', 'pdv', 'eu', 'tool', 'batch', 'management', 'pdv', 'system', 'run', 'absolutely', 'poorly', "can't", 'really', 'work', 'like'] processed_text: ['eu', 'tool', 'batch', 'management', 'pdv', 'eu', 'tool', 'batch', 'management', 'pdv', 'system', 'run', 'absolutely', 'poorly', "can't", 'really', 'work', 'like'] list_processed_text: [['eu'], ['tool'], ['batch'], ['management'], ['pdv'], ['eu'], ['tool'], ['batch'], ['management'], ['pdv'], ['system'], ['run'], ['absolutely'], ['poorly'], ["can't"], ['really'], ['work'], ['like']] k: 1913 len: <class 'list'> Data: ['server', 'hostname', 'c', 'user', 'virakv', 'ping', 'hostname', 'company', 'company', 'com', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] processed_text: ['server', 'hostname', 'c', 'user', 'virakv', 'ping', 'hostname', 'company', 'company', 'com', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] list_processed_text: [['server'], ['hostname'], ['c'], ['user'], ['virakv'], ['ping'], ['hostname'], ['company'], ['company'], ['com'], ['pinging'], ['hostname'], ['company'], ['company'], ['com'], ['byte'], ['data'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['ping'], ['statistic'], ['packet'], ['sent'], ['received'], ['lost'], ['loss']] k: 1914 len: <class 'list'> Data: ['unable', 'generate', 'sto', 'per', 'purrqs', 'unable', 'generate', 'sto', 'per', 'purrqs', 'please', 'find', 'error', 'message', 'attached', 'file', 'please', 'help', 'fixing', 'issue', 'aerp'] processed_text: ['unable', 'generate', 'sto', 'per', 'purrqs', 'unable', 'generate', 'sto', 'per', 'purrqs', 'please', 'find', 'error', 'message', 'attached', 'file', 'please', 'help', 'fixing', 'issue', 'aerp'] list_processed_text: [['unable'], ['generate'], ['sto'], ['per'], ['purrqs'], ['unable'], ['generate'], ['sto'], ['per'], ['purrqs'], ['please'], ['find'], ['error'], ['message'], ['attached'], ['file'], ['please'], ['help'], ['fixing'], ['issue'], ['aerp']] k: 1915 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1916 len: <class 'list'> Data: ['vpn', 'issue', 'hello', 'vpn', 'page', 'responding', 'unable', 'connect'] processed_text: ['vpn', 'issue', 'hello', 'vpn', 'page', 'responding', 'unable', 'connect'] list_processed_text: [['vpn'], ['issue'], ['hello'], ['vpn'], ['page'], ['responding'], ['unable'], ['connect']] k: 1917 len: <class 'list'> Data: ['cannot', 'start', 'outlook', 'email', 'hi', 'team', 'since', 'yesterday', 'laptop', 'unable', 'start', 'outlook', 'mail', 'could', 'use', 'web', 'mail', 'assistance', 'resolve', 'appreciated', 'best'] processed_text: ['cannot', 'start', 'outlook', 'email', 'hi', 'team', 'since', 'yesterday', 'laptop', 'unable', 'start', 'outlook', 'mail', 'could', 'use', 'web', 'mail', 'assistance', 'resolve', 'appreciated', 'best'] list_processed_text: [['cannot'], ['start'], ['outlook'], ['email'], ['hi'], ['team'], ['since'], ['yesterday'], ['laptop'], ['unable'], ['start'], ['outlook'], ['mail'], ['could'], ['use'], ['web'], ['mail'], ['assistance'], ['resolve'], ['appreciated'], ['best']] k: 1918 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1919 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1920 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 1921 len: <class 'list'> Data: ['laptop', 'cannot', 'connect', 'companysecure', 'wifi', 'network', 'laptop', 'cannot', 'connect', 'companysecure', 'wifi', 'network'] processed_text: ['laptop', 'cannot', 'connect', 'companysecure', 'wifi', 'network', 'laptop', 'cannot', 'connect', 'companysecure', 'wifi', 'network'] list_processed_text: [['laptop'], ['cannot'], ['connect'], ['companysecure'], ['wifi'], ['network'], ['laptop'], ['cannot'], ['connect'], ['companysecure'], ['wifi'], ['network']] k: 1922 len: <class 'list'> Data: ['server', 'hostname', 'reachable', 'c', 'user', 'virakv', 'ping', 'hostname', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] processed_text: ['server', 'hostname', 'reachable', 'c', 'user', 'virakv', 'ping', 'hostname', 'pinging', 'hostname', 'company', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] list_processed_text: [['server'], ['hostname'], ['reachable'], ['c'], ['user'], ['virakv'], ['ping'], ['hostname'], ['pinging'], ['hostname'], ['company'], ['company'], ['com'], ['byte'], ['data'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['ping'], ['statistic'], ['packet'], ['sent'], ['received'], ['lost'], ['loss']] k: 1923 len: <class 'list'> Data: ['please', 'help', 'vpn', 'connection', 'try', 'contacted', 'name', 'wanayht', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'help', 'vpn', 'connection', 'try', 'contacted'] processed_text: ['please', 'help', 'vpn', 'connection', 'try', 'contacted', 'name', 'wanayht', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'help', 'vpn', 'connection', 'try', 'contacted'] list_processed_text: [['please'], ['help'], ['vpn'], ['connection'], ['try'], ['contacted'], ['name'], ['wanayht'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['help'], ['vpn'], ['connection'], ['try'], ['contacted']] k: 1924 len: <class 'list'> Data: ['dell', 'laptop', 'stay', 'connected', 'internet', 'name', 'stgyott', 'gdhdyrham', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'sartlgeo', 'lhqksbd', 'summary', 'hi', 'dell', 'latitude', 'use', 'home', 'office', 'remotely', 'laptop', 'stay', 'connected', 'internet', 'assist', 'please'] processed_text: ['dell', 'laptop', 'stay', 'connected', 'internet', 'name', 'stgyott', 'gdhdyrham', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'sartlgeo', 'lhqksbd', 'summary', 'hi', 'dell', 'latitude', 'use', 'home', 'office', 'remotely', 'laptop', 'stay', 'connected', 'internet', 'assist', 'please'] list_processed_text: [['dell'], ['laptop'], ['stay'], ['connected'], ['internet'], ['name'], ['stgyott'], ['gdhdyrham'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['sartlgeo'], ['lhqksbd'], ['summary'], ['hi'], ['dell'], ['latitude'], ['use'], ['home'], ['office'], ['remotely'], ['laptop'], ['stay'], ['connected'], ['internet'], ['assist'], ['please']] k: 1925 len: <class 'list'> Data: ['msd', 'crm', 'outlook', 'please', 'provide', 'detail', 'issue', 'outlook'] processed_text: ['msd', 'crm', 'outlook', 'please', 'provide', 'detail', 'issue', 'outlook'] list_processed_text: [['msd'], ['crm'], ['outlook'], ['please'], ['provide'], ['detail'], ['issue'], ['outlook']] k: 1926 len: <class 'list'> Data: ['erp', 'sid', 'password', 'gso', 'please', 'reset', 'password', 'hanx'] processed_text: ['erp', 'sid', 'password', 'gso', 'please', 'reset', 'password', 'hanx'] list_processed_text: [['erp'], ['sid'], ['password'], ['gso'], ['please'], ['reset'], ['password'], ['hanx']] k: 1927 len: <class 'list'> Data: ['hpqc', 'installation', 'hi', 'trying', 'install', 'hpqc', 'travel', 'tool', 'uacyltoe', 'hxgayczeing', 'window', 'user', 'name', 'password', 'following', 'error', 'message', 'best'] processed_text: ['hpqc', 'installation', 'hi', 'trying', 'install', 'hpqc', 'travel', 'tool', 'uacyltoe', 'hxgayczeing', 'window', 'user', 'name', 'password', 'following', 'error', 'message', 'best'] list_processed_text: [['hpqc'], ['installation'], ['hi'], ['trying'], ['install'], ['hpqc'], ['travel'], ['tool'], ['uacyltoe'], ['hxgayczeing'], ['window'], ['user'], ['name'], ['password'], ['following'], ['error'], ['message'], ['best']] k: 1928 len: <class 'list'> Data: ['vpn', 'working', 'rjeyfxlg', 'ltfskygw', 'lzspyjki', 'smdbqnef', 'ok', 'lzspyjki', 'smdbqnef', 'bring', 'notepad', 'name', 'oyunatye'] processed_text: ['vpn', 'working', 'rjeyfxlg', 'ltfskygw', 'lzspyjki', 'smdbqnef', 'ok', 'lzspyjki', 'smdbqnef', 'bring', 'notepad', 'name', 'oyunatye'] list_processed_text: [['vpn'], ['working'], ['rjeyfxlg'], ['ltfskygw'], ['lzspyjki'], ['smdbqnef'], ['ok'], ['lzspyjki'], ['smdbqnef'], ['bring'], ['notepad'], ['name'], ['oyunatye']] k: 1929 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1930 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1931 len: <class 'list'> Data: ['node', 'hostname', 'located', 'usa', 'since', 'node', 'hostname', 'located', 'usa', 'since', 'node', 'due', 'power', 'flap', 'check', 'site', 'admin', 'business', 'hour'] processed_text: ['node', 'hostname', 'located', 'usa', 'since', 'node', 'hostname', 'located', 'usa', 'since', 'node', 'due', 'power', 'flap', 'check', 'site', 'admin', 'business', 'hour'] list_processed_text: [['node'], ['hostname'], ['located'], ['usa'], ['since'], ['node'], ['hostname'], ['located'], ['usa'], ['since'], ['node'], ['due'], ['power'], ['flap'], ['check'], ['site'], ['admin'], ['business'], ['hour']] k: 1932 len: <class 'list'> Data: ['hostname', 'application', 'plm', 'dsc', 'file', 'node', 'hostname', 'unreachable', 'hostname', 'application', 'plm', 'dsc', 'file', 'node', 'hostname', 'unreachable'] processed_text: ['hostname', 'application', 'plm', 'dsc', 'file', 'node', 'hostname', 'unreachable', 'hostname', 'application', 'plm', 'dsc', 'file', 'node', 'hostname', 'unreachable'] list_processed_text: [['hostname'], ['application'], ['plm'], ['dsc'], ['file'], ['node'], ['hostname'], ['unreachable'], ['hostname'], ['application'], ['plm'], ['dsc'], ['file'], ['node'], ['hostname'], ['unreachable']] k: 1933 len: <class 'list'> Data: ['hostname', 'application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'action', 'hostname', 'application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'action'] processed_text: ['hostname', 'application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'action', 'hostname', 'application', 'plm', 'conversion', 'server', 'node', 'hostname', 'warning', 'action'] list_processed_text: [['hostname'], ['application'], ['plm'], ['conversion'], ['server'], ['node'], ['hostname'], ['warning'], ['action'], ['hostname'], ['application'], ['plm'], ['conversion'], ['server'], ['node'], ['hostname'], ['warning'], ['action']] k: 1934 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1935 len: <class 'list'> Data: ['resetting', 'erp', 'password', 'hi', 'request', 'reset', 'erp', 'password'] processed_text: ['resetting', 'erp', 'password', 'hi', 'request', 'reset', 'erp', 'password'] list_processed_text: [['resetting'], ['erp'], ['password'], ['hi'], ['request'], ['reset'], ['erp'], ['password']] k: 1936 len: <class 'list'> Data: ['dpozkmie', 'vjuybcwz', 'erp', 'account', 'locked', 'please', 'unlock', 'account'] processed_text: ['dpozkmie', 'vjuybcwz', 'erp', 'account', 'locked', 'please', 'unlock', 'account'] list_processed_text: [['dpozkmie'], ['vjuybcwz'], ['erp'], ['account'], ['locked'], ['please'], ['unlock'], ['account']] k: 1937 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1938 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 1939 len: <class 'list'> Data: ['hostname', 'application', 'tax', 'interface', 'proc', 'count', 'node', 'hostname', 'critical', 'tax', 'interface', 'webpage', 'reporting', 'status', 'hostname', 'application', 'tax', 'interface', 'proc', 'count', 'node', 'hostname', 'critical', 'application', 'tax', 'interface', 'prod', 'app', 'server', 'node', 'hostname', 'dow'] processed_text: ['hostname', 'application', 'tax', 'interface', 'proc', 'count', 'node', 'hostname', 'critical', 'tax', 'interface', 'webpage', 'reporting', 'status', 'hostname', 'application', 'tax', 'interface', 'proc', 'count', 'node', 'hostname', 'critical', 'application', 'tax', 'interface', 'prod', 'app', 'server', 'node', 'hostname', 'dow'] list_processed_text: [['hostname'], ['application'], ['tax'], ['interface'], ['proc'], ['count'], ['node'], ['hostname'], ['critical'], ['tax'], ['interface'], ['webpage'], ['reporting'], ['status'], ['hostname'], ['application'], ['tax'], ['interface'], ['proc'], ['count'], ['node'], ['hostname'], ['critical'], ['application'], ['tax'], ['interface'], ['prod'], ['app'], ['server'], ['node'], ['hostname'], ['dow']] k: 1940 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1941 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1942 len: <class 'list'> Data: ['unable', 'create', 'customer', 'engineering', 'tool', 'name', 'ilhcgoqf', 'xlibynvc', 'email', 'telephone', 'summary', 'hello', 'problem', 'engineering', 'tool', 'impossible', 'create', 'new', 'customer'] processed_text: ['unable', 'create', 'customer', 'engineering', 'tool', 'name', 'ilhcgoqf', 'xlibynvc', 'email', 'telephone', 'summary', 'hello', 'problem', 'engineering', 'tool', 'impossible', 'create', 'new', 'customer'] list_processed_text: [['unable'], ['create'], ['customer'], ['engineering'], ['tool'], ['name'], ['ilhcgoqf'], ['xlibynvc'], ['email'], ['telephone'], ['summary'], ['hello'], ['problem'], ['engineering'], ['tool'], ['impossible'], ['create'], ['new'], ['customer']] k: 1943 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1944 len: <class 'list'> Data: ['eu', 'tool', 'worklist', 'available', 'confirmation', 'also', 'possible', 'last', 'worklist', 'created'] processed_text: ['eu', 'tool', 'worklist', 'available', 'confirmation', 'also', 'possible', 'last', 'worklist', 'created'] list_processed_text: [['eu'], ['tool'], ['worklist'], ['available'], ['confirmation'], ['also'], ['possible'], ['last'], ['worklist'], ['created']] k: 1945 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1946 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1947 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 1948 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1949 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 1950 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1951 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 1952 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'pm', 'unable', 'allocate', 'processing', 'resource', 'error', 'backup', 'proxy', 'offline', 'outdated', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'pm', 'unable', 'allocate', 'processing', 'resource', 'error', 'backup', 'proxy', 'offline', 'outdated', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['pm'], ['unable'], ['allocate'], ['processing'], ['resource'], ['error'], ['backup'], ['proxy'], ['offline'], ['outdated'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1953 len: <class 'list'> Data: ['customer', 'account', 'contact', 'list', 'populating', 'crm', 'dynamic', 'hello', 'issue', 'contact', 'designated', 'track', 'crm', 'showing', 'crm', 'sure', 'see', 'screen', 'shot', 'biyhll', 'kthyarg', 'sale', 'engineer', 'wc', 'team'] processed_text: ['customer', 'account', 'contact', 'list', 'populating', 'crm', 'dynamic', 'hello', 'issue', 'contact', 'designated', 'track', 'crm', 'showing', 'crm', 'sure', 'see', 'screen', 'shot', 'biyhll', 'kthyarg', 'sale', 'engineer', 'wc', 'team'] list_processed_text: [['customer'], ['account'], ['contact'], ['list'], ['populating'], ['crm'], ['dynamic'], ['hello'], ['issue'], ['contact'], ['designated'], ['track'], ['crm'], ['showing'], ['crm'], ['sure'], ['see'], ['screen'], ['shot'], ['biyhll'], ['kthyarg'], ['sale'], ['engineer'], ['wc'], ['team']] k: 1954 len: <class 'list'> Data: ['password', 'resset', 'request', 'rakthyesh', 'ramdntythanjesh', 'kzishqfu', 'bmdawzoi', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'dear', 'dene', 'account', 'status', 'unlocked', 'user', 'please', 'note', 'following', 'url', 'using', 'unlock', 'account', 'setup', 'one', 'single', 'password', 'access', 'across', 'system', 'pc', 'connected', 'company', 'network', 'step', 'step', 'guide', 'use', 'site', 'click', 'following', 'link', 'let', 'know', 'need', 'information', 'assistance', 'matheywter', 'kind'] processed_text: ['password', 'resset', 'request', 'rakthyesh', 'ramdntythanjesh', 'kzishqfu', 'bmdawzoi', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'dear', 'dene', 'account', 'status', 'unlocked', 'user', 'please', 'note', 'following', 'url', 'using', 'unlock', 'account', 'setup', 'one', 'single', 'password', 'access', 'across', 'system', 'pc', 'connected', 'company', 'network', 'step', 'step', 'guide', 'use', 'site', 'click', 'following', 'link', 'let', 'know', 'need', 'information', 'assistance', 'matheywter', 'kind'] list_processed_text: [['password'], ['resset'], ['request'], ['rakthyesh'], ['ramdntythanjesh'], ['kzishqfu'], ['bmdawzoi'], ['tiyhum'], ['kuyiomar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['dear'], ['dene'], ['account'], ['status'], ['unlocked'], ['user'], ['please'], ['note'], ['following'], ['url'], ['using'], ['unlock'], ['account'], ['setup'], ['one'], ['single'], ['password'], ['access'], ['across'], ['system'], ['pc'], ['connected'], ['company'], ['network'], ['step'], ['step'], ['guide'], ['use'], ['site'], ['click'], ['following'], ['link'], ['let'], ['know'], ['need'], ['information'], ['assistance'], ['matheywter'], ['kind']] k: 1955 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 1956 len: <class 'list'> Data: ['distributor', 'tool', 'npr', 'error', 'code', 'email', 'screen', 'shot', 'error', 'duane', 'said', 'remember', 'seeing', 'similar', 'error', 'uacyltoe', 'hxgayczeing', 'resolved', 'customer', 'master', 'think', 'uacyltoe', 'hxgaycze', 'request', 'using', 'actual', 'customer', 'rather', 'requester', 'tandd', 'customer', 'npr', 'quote', 'tandd', 'order'] processed_text: ['distributor', 'tool', 'npr', 'error', 'code', 'email', 'screen', 'shot', 'error', 'duane', 'said', 'remember', 'seeing', 'similar', 'error', 'uacyltoe', 'hxgayczeing', 'resolved', 'customer', 'master', 'think', 'uacyltoe', 'hxgaycze', 'request', 'using', 'actual', 'customer', 'rather', 'requester', 'tandd', 'customer', 'npr', 'quote', 'tandd', 'order'] list_processed_text: [['distributor'], ['tool'], ['npr'], ['error'], ['code'], ['email'], ['screen'], ['shot'], ['error'], ['duane'], ['said'], ['remember'], ['seeing'], ['similar'], ['error'], ['uacyltoe'], ['hxgayczeing'], ['resolved'], ['customer'], ['master'], ['think'], ['uacyltoe'], ['hxgaycze'], ['request'], ['using'], ['actual'], ['customer'], ['rather'], ['requester'], ['tandd'], ['customer'], ['npr'], ['quote'], ['tandd'], ['order']] k: 1957 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 1958 len: <class 'list'> Data: ['erp', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'ramdntythanjesh', 'ramdntythanjesh', 'hi', 'rakthyesh', 'rakthyesh', 'ramdntythanjesh'] processed_text: ['erp', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'ramdntythanjesh', 'ramdntythanjesh', 'hi', 'rakthyesh', 'rakthyesh', 'ramdntythanjesh'] list_processed_text: [['erp'], ['password'], ['reset'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['ramdntythanjesh'], ['ramdntythanjesh'], ['hi'], ['rakthyesh'], ['rakthyesh'], ['ramdntythanjesh']] k: 1959 len: <class 'list'> Data: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 1960 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1961 len: <class 'list'> Data: ['tax', 'rate', 'mismatch', 'hello', 'ongoing', 'internal', 'audit', 'conducted', 'eandy', 'observed', 'list', 'inwarehouse', 'tool', 'attached', 'tax', 'rate', 'different', 'one', 'updated', 'product', 'hierarchy', 'request', 'look', 'reason', 'sample', 'identify', 'reason', 'incorrect', 'tax', 'rate', 'captured', 'inwarehouse', 'tool', 'tax', 'per', 'product', 'hierarchy', 'also', 'let', 'u', 'know', 'whether', 'system', 'error'] processed_text: ['tax', 'rate', 'mismatch', 'hello', 'ongoing', 'internal', 'audit', 'conducted', 'eandy', 'observed', 'list', 'inwarehouse', 'tool', 'attached', 'tax', 'rate', 'different', 'one', 'updated', 'product', 'hierarchy', 'request', 'look', 'reason', 'sample', 'identify', 'reason', 'incorrect', 'tax', 'rate', 'captured', 'inwarehouse', 'tool', 'tax', 'per', 'product', 'hierarchy', 'also', 'let', 'u', 'know', 'whether', 'system', 'error'] list_processed_text: [['tax'], ['rate'], ['mismatch'], ['hello'], ['ongoing'], ['internal'], ['audit'], ['conducted'], ['eandy'], ['observed'], ['list'], ['inwarehouse'], ['tool'], ['attached'], ['tax'], ['rate'], ['different'], ['one'], ['updated'], ['product'], ['hierarchy'], ['request'], ['look'], ['reason'], ['sample'], ['identify'], ['reason'], ['incorrect'], ['tax'], ['rate'], ['captured'], ['inwarehouse'], ['tool'], ['tax'], ['per'], ['product'], ['hierarchy'], ['also'], ['let'], ['u'], ['know'], ['whether'], ['system'], ['error']] k: 1962 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1963 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'ftnijxup', 'sbltduco', 'pm', 'nwfodmhc', 'exurcwkm', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'help', 'desk', 'please', 'take', 'new', 'iphone', 'quarantine'] processed_text: ['mobile', 'device', 'activation', 'ftnijxup', 'sbltduco', 'pm', 'nwfodmhc', 'exurcwkm', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'help', 'desk', 'please', 'take', 'new', 'iphone', 'quarantine'] list_processed_text: [['mobile'], ['device'], ['activation'], ['ftnijxup'], ['sbltduco'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['wg'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['help'], ['desk'], ['please'], ['take'], ['new'], ['iphone'], ['quarantine']] k: 1964 len: <class 'list'> Data: ['please', 'reset', 'erp', 'locked', 'nabjwvtd', 'sprhouiv'] processed_text: ['please', 'reset', 'erp', 'locked', 'nabjwvtd', 'sprhouiv'] list_processed_text: [['please'], ['reset'], ['erp'], ['locked'], ['nabjwvtd'], ['sprhouiv']] k: 1965 len: <class 'list'> Data: ['unable', 'see', 'email', 'older', 'day', 'unable', 'see', 'email', 'older', 'day'] processed_text: ['unable', 'see', 'email', 'older', 'day', 'unable', 'see', 'email', 'older', 'day'] list_processed_text: [['unable'], ['see'], ['email'], ['older'], ['day'], ['unable'], ['see'], ['email'], ['older'], ['day']] k: 1966 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1967 len: <class 'list'> Data: ['network', 'outage', 'india', 'orelikon', 'balzers', 'coating', 'india', 'limited', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'orelikon', 'balzers', 'coating', 'india', 'limited', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['orelikon'], ['balzers'], ['coating'], ['india'], ['limited'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1968 len: <class 'list'> Data: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] processed_text: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['gso'], ['loud'], ['noise'], ['blank'], ['call'], ['gso'], ['loud'], ['noise']] k: 1969 len: <class 'list'> Data: ['telephone', 'repair', 'pu', 'shop', 'floor', 'connection', 'dear', 'sir', 'request', 'depute', 'telephone', 'repair', 'person', 'pu', 'shop', 'floor', 'shop', 'floor', 'connection', 'working', 'segvwfyn', 'mogtrevn', 'assistant', 'manager', 'manufacturing'] processed_text: ['telephone', 'repair', 'pu', 'shop', 'floor', 'connection', 'dear', 'sir', 'request', 'depute', 'telephone', 'repair', 'person', 'pu', 'shop', 'floor', 'shop', 'floor', 'connection', 'working', 'segvwfyn', 'mogtrevn', 'assistant', 'manager', 'manufacturing'] list_processed_text: [['telephone'], ['repair'], ['pu'], ['shop'], ['floor'], ['connection'], ['dear'], ['sir'], ['request'], ['depute'], ['telephone'], ['repair'], ['person'], ['pu'], ['shop'], ['floor'], ['shop'], ['floor'], ['connection'], ['working'], ['segvwfyn'], ['mogtrevn'], ['assistant'], ['manager'], ['manufacturing']] k: 1970 len: <class 'list'> Data: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] processed_text: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] list_processed_text: [['call'], ['came'], ['got'], ['disconnected'], ['call'], ['came'], ['got'], ['disconnected']] k: 1971 len: <class 'list'> Data: ['supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'pm', 'qaohugxw', 'kdeqjncw', 'nwfodmhc', 'exurcwkm', 'access', 'supply', 'chain', 'software', 'blocked', 'help', 'desk', 'please', 'check', 'pathuick', 'account', 'supply', 'chain', 'software'] processed_text: ['supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'pm', 'qaohugxw', 'kdeqjncw', 'nwfodmhc', 'exurcwkm', 'access', 'supply', 'chain', 'software', 'blocked', 'help', 'desk', 'please', 'check', 'pathuick', 'account', 'supply', 'chain', 'software'] list_processed_text: [['supply'], ['chain'], ['software'], ['password'], ['reset'], ['ftnijxup'], ['sbltduco'], ['pm'], ['qaohugxw'], ['kdeqjncw'], ['nwfodmhc'], ['exurcwkm'], ['access'], ['supply'], ['chain'], ['software'], ['blocked'], ['help'], ['desk'], ['please'], ['check'], ['pathuick'], ['account'], ['supply'], ['chain'], ['software']] k: 1972 len: <class 'list'> Data: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'pm', 'thsyrley', 'shi', 'nwfodmhc', 'exurcwkm', 'finished', 'start', 'sandop', 'process', 'help', 'desk', 'please', 'check', 'thsyrley', 'account', 'supply', 'chain', 'software', 'assist', 'sign'] processed_text: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset', 'ftnijxup', 'sbltduco', 'pm', 'thsyrley', 'shi', 'nwfodmhc', 'exurcwkm', 'finished', 'start', 'sandop', 'process', 'help', 'desk', 'please', 'check', 'thsyrley', 'account', 'supply', 'chain', 'software', 'assist', 'sign'] list_processed_text: [['supply'], ['chain'], ['software'], ['password'], ['reset'], ['supply'], ['chain'], ['software'], ['password'], ['reset'], ['ftnijxup'], ['sbltduco'], ['pm'], ['thsyrley'], ['shi'], ['nwfodmhc'], ['exurcwkm'], ['finished'], ['start'], ['sandop'], ['process'], ['help'], ['desk'], ['please'], ['check'], ['thsyrley'], ['account'], ['supply'], ['chain'], ['software'], ['assist'], ['sign']] k: 1973 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 1974 len: <class 'list'> Data: ['usa', 'plant', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et', 'usa', 'plant', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et'] processed_text: ['usa', 'plant', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et', 'usa', 'plant', 'company', 'na', 'usa', 'usa', 'plant', 'bld', 'qa', 'carb', 'access', 'sw', 'switch', 'since', 'et'] list_processed_text: [['usa'], ['plant'], ['company'], ['na'], ['usa'], ['usa'], ['plant'], ['bld'], ['qa'], ['carb'], ['access'], ['sw'], ['switch'], ['since'], ['et'], ['usa'], ['plant'], ['company'], ['na'], ['usa'], ['usa'], ['plant'], ['bld'], ['qa'], ['carb'], ['access'], ['sw'], ['switch'], ['since'], ['et']] k: 1975 len: <class 'list'> Data: ['reset', 'password', 'jvpkulxw', 'ovuweygj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'jvpkulxw', 'ovuweygj', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'jvpkulxw', 'ovuweygj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'jvpkulxw', 'ovuweygj', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['jvpkulxw'], ['ovuweygj'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['jvpkulxw'], ['ovuweygj'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 1976 len: <class 'list'> Data: ['account', 'got', 'locked', 'account', 'got', 'locked'] processed_text: ['account', 'got', 'locked', 'account', 'got', 'locked'] list_processed_text: [['account'], ['got'], ['locked'], ['account'], ['got'], ['locked']] k: 1977 len: <class 'list'> Data: ['send', 'mail', 'engineering', 'tool', 'work', 'anymore', 'since', 'possible', 'send', 'mail', 'user', 'detail', 'dialog', 'anymore', 'mail', 'address', 'used', 'work', 'function', 'helpful', 'end', 'user', 'contact', 'designer', 'issue', 'question', 'directly', 'engineering', 'tool', 'without', 'leaving', 'engineering', 'tool', 'see', 'attachment', 'dialog', 'error', 'message'] processed_text: ['send', 'mail', 'engineering', 'tool', 'work', 'anymore', 'since', 'possible', 'send', 'mail', 'user', 'detail', 'dialog', 'anymore', 'mail', 'address', 'used', 'work', 'function', 'helpful', 'end', 'user', 'contact', 'designer', 'issue', 'question', 'directly', 'engineering', 'tool', 'without', 'leaving', 'engineering', 'tool', 'see', 'attachment', 'dialog', 'error', 'message'] list_processed_text: [['send'], ['mail'], ['engineering'], ['tool'], ['work'], ['anymore'], ['since'], ['possible'], ['send'], ['mail'], ['user'], ['detail'], ['dialog'], ['anymore'], ['mail'], ['address'], ['used'], ['work'], ['function'], ['helpful'], ['end'], ['user'], ['contact'], ['designer'], ['issue'], ['question'], ['directly'], ['engineering'], ['tool'], ['without'], ['leaving'], ['engineering'], ['tool'], ['see'], ['attachment'], ['dialog'], ['error'], ['message']] k: 1978 len: <class 'list'> Data: ['m', 'outlook', 'please', 'provide', 'detail', 'issue', 'm', 'outlook'] processed_text: ['m', 'outlook', 'please', 'provide', 'detail', 'issue', 'm', 'outlook'] list_processed_text: [['m'], ['outlook'], ['please'], ['provide'], ['detail'], ['issue'], ['m'], ['outlook']] k: 1979 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1980 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1981 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1982 len: <class 'list'> Data: ['unable', 'ki', 'dn', 'dear', 'pls', 'help', 'check', 'dn', 'unable', 'ki', 'dn'] processed_text: ['unable', 'ki', 'dn', 'dear', 'pls', 'help', 'check', 'dn', 'unable', 'ki', 'dn'] list_processed_text: [['unable'], ['ki'], ['dn'], ['dear'], ['pls'], ['help'], ['check'], ['dn'], ['unable'], ['ki'], ['dn']] k: 1983 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 1984 len: <class 'list'> Data: ['erp', 'sid', 'account', 'gso', 'please', 'unlock', 'reset', 'password', 'lijsyte', 'also', 'send', 'password', 'jinxyhdi', 'luji'] processed_text: ['erp', 'sid', 'account', 'gso', 'please', 'unlock', 'reset', 'password', 'lijsyte', 'also', 'send', 'password', 'jinxyhdi', 'luji'] list_processed_text: [['erp'], ['sid'], ['account'], ['gso'], ['please'], ['unlock'], ['reset'], ['password'], ['lijsyte'], ['also'], ['send'], ['password'], ['jinxyhdi'], ['luji']] k: 1985 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1986 len: <class 'list'> Data: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 1987 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1988 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 1989 len: <class 'list'> Data: ['account', 'expired', 'gso', 'account', 'vvlixthy', 'expired', 'could', 'extend', 'account', 'date', 'jacyhky', 'liuhyt', 'sponsor', 'jacyhky', 'liuhyt'] processed_text: ['account', 'expired', 'gso', 'account', 'vvlixthy', 'expired', 'could', 'extend', 'account', 'date', 'jacyhky', 'liuhyt', 'sponsor', 'jacyhky', 'liuhyt'] list_processed_text: [['account'], ['expired'], ['gso'], ['account'], ['vvlixthy'], ['expired'], ['could'], ['extend'], ['account'], ['date'], ['jacyhky'], ['liuhyt'], ['sponsor'], ['jacyhky'], ['liuhyt']] k: 1990 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 1991 len: <class 'list'> Data: ['password', 'management', 'tool', 'hi', 'please', 'reset', 'password', 'sid', 'entering', 'error', 'time', 'user', 'name', 'caoryhuq', 'best'] processed_text: ['password', 'management', 'tool', 'hi', 'please', 'reset', 'password', 'sid', 'entering', 'error', 'time', 'user', 'name', 'caoryhuq', 'best'] list_processed_text: [['password'], ['management'], ['tool'], ['hi'], ['please'], ['reset'], ['password'], ['sid'], ['entering'], ['error'], ['time'], ['user'], ['name'], ['caoryhuq'], ['best']] k: 1992 len: <class 'list'> Data: ['password', 'reset', 'using', 'password', 'management', 'tool', 'password', 'reset', 'using', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'using', 'password', 'management', 'tool', 'password', 'reset', 'using', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['using'], ['password'], ['management'], ['tool']] k: 1993 len: <class 'list'> Data: ['node', 'usa', 'pbx', 'located', 'usa', 'since', 'pm', 'et', 'node', 'usa', 'pbx', 'located', 'usa', 'since', 'pm', 'et'] processed_text: ['node', 'usa', 'pbx', 'located', 'usa', 'since', 'pm', 'et', 'node', 'usa', 'pbx', 'located', 'usa', 'since', 'pm', 'et'] list_processed_text: [['node'], ['usa'], ['pbx'], ['located'], ['usa'], ['since'], ['pm'], ['et'], ['node'], ['usa'], ['pbx'], ['located'], ['usa'], ['since'], ['pm'], ['et']] k: 1994 len: <class 'list'> Data: ['unable', 'save', 'excel', 'document', 'unable', 'save', 'excel', 'document'] processed_text: ['unable', 'save', 'excel', 'document', 'unable', 'save', 'excel', 'document'] list_processed_text: [['unable'], ['save'], ['excel'], ['document'], ['unable'], ['save'], ['excel'], ['document']] k: 1995 len: <class 'list'> Data: ['unable', 'sync', 'file', 'collaboration', 'platform', 'unable', 'sync', 'file', 'collaboration', 'platform'] processed_text: ['unable', 'sync', 'file', 'collaboration', 'platform', 'unable', 'sync', 'file', 'collaboration', 'platform'] list_processed_text: [['unable'], ['sync'], ['file'], ['collaboration'], ['platform'], ['unable'], ['sync'], ['file'], ['collaboration'], ['platform']] k: 1996 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1997 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 1998 len: <class 'list'> Data: ['unable', 'log', 'engineering', 'tool', 'unable', 'log', 'engineering', 'tool'] processed_text: ['unable', 'log', 'engineering', 'tool', 'unable', 'log', 'engineering', 'tool'] list_processed_text: [['unable'], ['log'], ['engineering'], ['tool'], ['unable'], ['log'], ['engineering'], ['tool']] k: 1999 len: <class 'list'> Data: ['blue', 'screen', 'start', 'blue', 'screen', 'start'] processed_text: ['blue', 'screen', 'start', 'blue', 'screen', 'start'] list_processed_text: [['blue'], ['screen'], ['start'], ['blue'], ['screen'], ['start']] k: 2000 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'meeting', 'unable', 'sign', 'skype', 'meeting'] processed_text: ['unable', 'sign', 'skype', 'meeting', 'unable', 'sign', 'skype', 'meeting'] list_processed_text: [['unable'], ['sign'], ['skype'], ['meeting'], ['unable'], ['sign'], ['skype'], ['meeting']] k: 2001 len: <class 'list'> Data: ['outlook', 'opening', 'stuck', 'loading', 'screen', 'outlook', 'opening', 'stuck', 'loading', 'screen'] processed_text: ['outlook', 'opening', 'stuck', 'loading', 'screen', 'outlook', 'opening', 'stuck', 'loading', 'screen'] list_processed_text: [['outlook'], ['opening'], ['stuck'], ['loading'], ['screen'], ['outlook'], ['opening'], ['stuck'], ['loading'], ['screen']] k: 2002 len: <class 'list'> Data: ['vpn', 'issue', 'telephone', 'summary', 'cannot', 'get', 'vpn', 'connect', 'computer'] processed_text: ['vpn', 'issue', 'telephone', 'summary', 'cannot', 'get', 'vpn', 'connect', 'computer'] list_processed_text: [['vpn'], ['issue'], ['telephone'], ['summary'], ['cannot'], ['get'], ['vpn'], ['connect'], ['computer']] k: 2003 len: <class 'list'> Data: ['engineering', 'tool', 'infopath', 'issue', 'sqlcuhep', 'railgnfb', 'called', 'issue', 'unable', 'launch', 'engineering', 'tool', 'unable', 'fill', 'discount', 'form'] processed_text: ['engineering', 'tool', 'infopath', 'issue', 'sqlcuhep', 'railgnfb', 'called', 'issue', 'unable', 'launch', 'engineering', 'tool', 'unable', 'fill', 'discount', 'form'] list_processed_text: [['engineering'], ['tool'], ['infopath'], ['issue'], ['sqlcuhep'], ['railgnfb'], ['called'], ['issue'], ['unable'], ['launch'], ['engineering'], ['tool'], ['unable'], ['fill'], ['discount'], ['form']] k: 2004 len: <class 'list'> Data: ['unable', 'view', 'mail', 'day', 'unable', 'view', 'mail', 'day'] processed_text: ['unable', 'view', 'mail', 'day', 'unable', 'view', 'mail', 'day'] list_processed_text: [['unable'], ['view'], ['mail'], ['day'], ['unable'], ['view'], ['mail'], ['day']] k: 2005 len: <class 'list'> Data: ['jabra', 'headset', 'issue', 'needed', 'hand', 'setting', 'jabra', 'pro', 'headset', 'skype', 'call', 'installed', 'driver', 'sure', 'else', 'need', 'done', 'contact'] processed_text: ['jabra', 'headset', 'issue', 'needed', 'hand', 'setting', 'jabra', 'pro', 'headset', 'skype', 'call', 'installed', 'driver', 'sure', 'else', 'need', 'done', 'contact'] list_processed_text: [['jabra'], ['headset'], ['issue'], ['needed'], ['hand'], ['setting'], ['jabra'], ['pro'], ['headset'], ['skype'], ['call'], ['installed'], ['driver'], ['sure'], ['else'], ['need'], ['done'], ['contact']] k: 2006 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'vhjkdqop', 'tkhafgrc', 'id', 'sanchrtyn', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'vhjkdqop', 'tkhafgrc', 'id', 'sanchrtyn'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'vhjkdqop', 'tkhafgrc', 'id', 'sanchrtyn', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'vhjkdqop', 'tkhafgrc', 'id', 'sanchrtyn'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['vhjkdqop'], ['tkhafgrc'], ['id'], ['sanchrtyn'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['vhjkdqop'], ['tkhafgrc'], ['id'], ['sanchrtyn']] k: 2007 len: <class 'list'> Data: ['qhjkxoyw', 'lgiovknd', 'called', 'wanted', 'speak', 'tiyhum', 'kuyiomar', 'qhjkxoyw', 'lgiovknd', 'called', 'wanted', 'speak', 'tiyhum', 'kuyiomar'] processed_text: ['qhjkxoyw', 'lgiovknd', 'called', 'wanted', 'speak', 'tiyhum', 'kuyiomar', 'qhjkxoyw', 'lgiovknd', 'called', 'wanted', 'speak', 'tiyhum', 'kuyiomar'] list_processed_text: [['qhjkxoyw'], ['lgiovknd'], ['called'], ['wanted'], ['speak'], ['tiyhum'], ['kuyiomar'], ['qhjkxoyw'], ['lgiovknd'], ['called'], ['wanted'], ['speak'], ['tiyhum'], ['kuyiomar']] k: 2008 len: <class 'list'> Data: ['unable', 'log', 'supply', 'chain', 'software', 'unable', 'log', 'supply', 'chain', 'software'] processed_text: ['unable', 'log', 'supply', 'chain', 'software', 'unable', 'log', 'supply', 'chain', 'software'] list_processed_text: [['unable'], ['log'], ['supply'], ['chain'], ['software'], ['unable'], ['log'], ['supply'], ['chain'], ['software']] k: 2009 len: <class 'list'> Data: ['call', 'vythytalyst', 'uploading', 'group', 'contact', 'crm', 'call', 'vythytalyst', 'uploading', 'group', 'contact', 'crm', 'issue', 'contact', 'synchronizing', 'contact', 'outlook', 'crm', 'synchronizing', 'complete', 'list', 'contact', 'moving', 'contact', 'outlook', 'keeping', 'crm'] processed_text: ['call', 'vythytalyst', 'uploading', 'group', 'contact', 'crm', 'call', 'vythytalyst', 'uploading', 'group', 'contact', 'crm', 'issue', 'contact', 'synchronizing', 'contact', 'outlook', 'crm', 'synchronizing', 'complete', 'list', 'contact', 'moving', 'contact', 'outlook', 'keeping', 'crm'] list_processed_text: [['call'], ['vythytalyst'], ['uploading'], ['group'], ['contact'], ['crm'], ['call'], ['vythytalyst'], ['uploading'], ['group'], ['contact'], ['crm'], ['issue'], ['contact'], ['synchronizing'], ['contact'], ['outlook'], ['crm'], ['synchronizing'], ['complete'], ['list'], ['contact'], ['moving'], ['contact'], ['outlook'], ['keeping'], ['crm']] k: 2010 len: <class 'list'> Data: ['need', 'fixed', 'access', 'prerequisite', 'must', 'infopath', 'filler', 'client', 'complete', 'submit', 'lra', 'form', 'please', 'contact', 'gsc', 'open', 'remedy', 'ticket', 'pc', 'support', 'group', 'infopath', 'filler', 'client', 'determine', 'infopath', 'filler', 'client', 'click', 'start', 'button', 'choose', 'programdntys', 'click', 'microsoft', 'office', 'group', 'see', 'microsoft', 'infopath', 'filler', 'client', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['need', 'fixed', 'access', 'prerequisite', 'must', 'infopath', 'filler', 'client', 'complete', 'submit', 'lra', 'form', 'please', 'contact', 'gsc', 'open', 'remedy', 'ticket', 'pc', 'support', 'group', 'infopath', 'filler', 'client', 'determine', 'infopath', 'filler', 'client', 'click', 'start', 'button', 'choose', 'programdntys', 'click', 'microsoft', 'office', 'group', 'see', 'microsoft', 'infopath', 'filler', 'client', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['need'], ['fixed'], ['access'], ['prerequisite'], ['must'], ['infopath'], ['filler'], ['client'], ['complete'], ['submit'], ['lra'], ['form'], ['please'], ['contact'], ['gsc'], ['open'], ['remedy'], ['ticket'], ['pc'], ['support'], ['group'], ['infopath'], ['filler'], ['client'], ['determine'], ['infopath'], ['filler'], ['client'], ['click'], ['start'], ['button'], ['choose'], ['programdntys'], ['click'], ['microsoft'], ['office'], ['group'], ['see'], ['microsoft'], ['infopath'], ['filler'], ['client'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 2011 len: <class 'list'> Data: ['unable', 'open', 'engineering', 'tool', 'application', 'unable', 'open', 'engineering', 'tool', 'application'] processed_text: ['unable', 'open', 'engineering', 'tool', 'application', 'unable', 'open', 'engineering', 'tool', 'application'] list_processed_text: [['unable'], ['open'], ['engineering'], ['tool'], ['application'], ['unable'], ['open'], ['engineering'], ['tool'], ['application']] k: 2012 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue'] processed_text: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['engineering'], ['tool'], ['issue']] k: 2013 len: <class 'list'> Data: ['business', 'client', 'net', 'error', 'message', 'business', 'client', 'net', 'error', 'message'] processed_text: ['business', 'client', 'net', 'error', 'message', 'business', 'client', 'net', 'error', 'message'] list_processed_text: [['business'], ['client'], ['net'], ['error'], ['message'], ['business'], ['client'], ['net'], ['error'], ['message']] k: 2014 len: <class 'list'> Data: ['unable', 'enter', 'mileage', 'detail', 'site', 'loading', 'unable', 'enter', 'mileage', 'detail'] processed_text: ['unable', 'enter', 'mileage', 'detail', 'site', 'loading', 'unable', 'enter', 'mileage', 'detail'] list_processed_text: [['unable'], ['enter'], ['mileage'], ['detail'], ['site'], ['loading'], ['unable'], ['enter'], ['mileage'], ['detail']] k: 2015 len: <class 'list'> Data: ['ticketing', 'tool', 'issue', 'cannot', 'seem', 'create', 'new', 'subtask', 'ticketing', 'tool', 'console', 'ticketing', 'tool', 'issue', 'cannot', 'seem', 'create', 'new', 'subtask', 'ticketing', 'tool', 'console', 'area', 'create', 'new', 'sub', 'task', 'seems', 'missing', 'asked', 'create', 'separate', 'task', 'server', 'decommissioning', 'neither', 'ron', 'mcgee', 'seem', 'create', 'sub', 'task', 'ticket'] processed_text: ['ticketing', 'tool', 'issue', 'cannot', 'seem', 'create', 'new', 'subtask', 'ticketing', 'tool', 'console', 'ticketing', 'tool', 'issue', 'cannot', 'seem', 'create', 'new', 'subtask', 'ticketing', 'tool', 'console', 'area', 'create', 'new', 'sub', 'task', 'seems', 'missing', 'asked', 'create', 'separate', 'task', 'server', 'decommissioning', 'neither', 'ron', 'mcgee', 'seem', 'create', 'sub', 'task', 'ticket'] list_processed_text: [['ticketing'], ['tool'], ['issue'], ['cannot'], ['seem'], ['create'], ['new'], ['subtask'], ['ticketing'], ['tool'], ['console'], ['ticketing'], ['tool'], ['issue'], ['cannot'], ['seem'], ['create'], ['new'], ['subtask'], ['ticketing'], ['tool'], ['console'], ['area'], ['create'], ['new'], ['sub'], ['task'], ['seems'], ['missing'], ['asked'], ['create'], ['separate'], ['task'], ['server'], ['decommissioning'], ['neither'], ['ron'], ['mcgee'], ['seem'], ['create'], ['sub'], ['task'], ['ticket']] k: 2016 len: <class 'list'> Data: ['client', 'issue', 'excel', 'crashing', 'client', 'issue', 'excel', 'crashing'] processed_text: ['client', 'issue', 'excel', 'crashing', 'client', 'issue', 'excel', 'crashing'] list_processed_text: [['client'], ['issue'], ['excel'], ['crashing'], ['client'], ['issue'], ['excel'], ['crashing']] k: 2017 len: <class 'list'> Data: ['hpqc', 'uacyltoe', 'hxgaycze', 'installation', 'summary', 'need', 'help', 'downloading', 'uacyltoe', 'hxgaycze', 'application', 'someone', 'take', 'screen', 'help'] processed_text: ['hpqc', 'uacyltoe', 'hxgaycze', 'installation', 'summary', 'need', 'help', 'downloading', 'uacyltoe', 'hxgaycze', 'application', 'someone', 'take', 'screen', 'help'] list_processed_text: [['hpqc'], ['uacyltoe'], ['hxgaycze'], ['installation'], ['summary'], ['need'], ['help'], ['downloading'], ['uacyltoe'], ['hxgaycze'], ['application'], ['someone'], ['take'], ['screen'], ['help']] k: 2018 len: <class 'list'> Data: ['subbathykrisyuhnyrt', 'shhuivashankar', 'company', 'provided', 'phone', 'activation', 'subbathykrisyuhnyrt', 'shhuivashankar', 'company', 'provided', 'phone', 'activation'] processed_text: ['subbathykrisyuhnyrt', 'shhuivashankar', 'company', 'provided', 'phone', 'activation', 'subbathykrisyuhnyrt', 'shhuivashankar', 'company', 'provided', 'phone', 'activation'] list_processed_text: [['subbathykrisyuhnyrt'], ['shhuivashankar'], ['company'], ['provided'], ['phone'], ['activation'], ['subbathykrisyuhnyrt'], ['shhuivashankar'], ['company'], ['provided'], ['phone'], ['activation']] k: 2019 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2020 len: <class 'list'> Data: ['unable', 'access', 'easyterritory', 'map', 'view', 'builder', 'unable', 'access', 'easyterritory', 'map', 'view', 'builder'] processed_text: ['unable', 'access', 'easyterritory', 'map', 'view', 'builder', 'unable', 'access', 'easyterritory', 'map', 'view', 'builder'] list_processed_text: [['unable'], ['access'], ['easyterritory'], ['map'], ['view'], ['builder'], ['unable'], ['access'], ['easyterritory'], ['map'], ['view'], ['builder']] k: 2021 len: <class 'list'> Data: ['crm', 'voucher', 'email', 'resend', 'issue', 'attempting', 'email', 'voucher', 'following', 'standard', 'procedure', 'enter', 'email', 'address', 'press', 'send', 'email', 'page', 'go', 'completely', 'blank', 'need', 'resign', 'onto', 'sid', 'email', 'sent', 'please', 'review', 'correct', 'aerp'] processed_text: ['crm', 'voucher', 'email', 'resend', 'issue', 'attempting', 'email', 'voucher', 'following', 'standard', 'procedure', 'enter', 'email', 'address', 'press', 'send', 'email', 'page', 'go', 'completely', 'blank', 'need', 'resign', 'onto', 'sid', 'email', 'sent', 'please', 'review', 'correct', 'aerp'] list_processed_text: [['crm'], ['voucher'], ['email'], ['resend'], ['issue'], ['attempting'], ['email'], ['voucher'], ['following'], ['standard'], ['procedure'], ['enter'], ['email'], ['address'], ['press'], ['send'], ['email'], ['page'], ['go'], ['completely'], ['blank'], ['need'], ['resign'], ['onto'], ['sid'], ['email'], ['sent'], ['please'], ['review'], ['correct'], ['aerp']] k: 2022 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 2023 len: <class 'list'> Data: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'plase', 'unlook', 'password', 'chrithysgd,', 'best', 'regard'] processed_text: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'plase', 'unlook', 'password', 'chrithysgd,', 'best', 'regard'] list_processed_text: [['password'], ['geoyhurg'], ['chriuimjiann'], ['please'], ['activate'], ['password'], ['plase'], ['unlook'], ['password'], ['chrithysgd,'], ['best'], ['regard']] k: 2024 len: <class 'list'> Data: ['external', 'recipient', 'unable', 'share', 'screen', 'internal', 'company', 'employee', 'pstn', 'conference', 'call', 'external', 'recipient', 'unable', 'share', 'screen', 'internal', 'company', 'employee', 'pstn', 'conference', 'call', 'error', 'message', 'company', 'user', 'saw', 'message', 'read', 'something', 'like', 'presentation', 'failed', 'since', 'presenter', 'left', 'meeting', 'even', 'though', 'still', 'meeting', 'agreed', 'end', 'meeting', 'join', 'issue', 'go', 'away'] processed_text: ['external', 'recipient', 'unable', 'share', 'screen', 'internal', 'company', 'employee', 'pstn', 'conference', 'call', 'external', 'recipient', 'unable', 'share', 'screen', 'internal', 'company', 'employee', 'pstn', 'conference', 'call', 'error', 'message', 'company', 'user', 'saw', 'message', 'read', 'something', 'like', 'presentation', 'failed', 'since', 'presenter', 'left', 'meeting', 'even', 'though', 'still', 'meeting', 'agreed', 'end', 'meeting', 'join', 'issue', 'go', 'away'] list_processed_text: [['external'], ['recipient'], ['unable'], ['share'], ['screen'], ['internal'], ['company'], ['employee'], ['pstn'], ['conference'], ['call'], ['external'], ['recipient'], ['unable'], ['share'], ['screen'], ['internal'], ['company'], ['employee'], ['pstn'], ['conference'], ['call'], ['error'], ['message'], ['company'], ['user'], ['saw'], ['message'], ['read'], ['something'], ['like'], ['presentation'], ['failed'], ['since'], ['presenter'], ['left'], ['meeting'], ['even'], ['though'], ['still'], ['meeting'], ['agreed'], ['end'], ['meeting'], ['join'], ['issue'], ['go'], ['away']] k: 2025 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 2026 len: <class 'list'> Data: ['general', 'query', 'general', 'query'] processed_text: ['general', 'query', 'general', 'query'] list_processed_text: [['general'], ['query'], ['general'], ['query']] k: 2027 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2028 len: <class 'list'> Data: ['need', 'converion', 'tool', 'export', 'pdf', 'excel', 'summary', 'hello', 'saw', 'pdf', 'option', 'possible', 'export', 'pdf', 'excel', 'know', 'contact', 'company', 'get', 'conversion', 'tool'] processed_text: ['need', 'converion', 'tool', 'export', 'pdf', 'excel', 'summary', 'hello', 'saw', 'pdf', 'option', 'possible', 'export', 'pdf', 'excel', 'know', 'contact', 'company', 'get', 'conversion', 'tool'] list_processed_text: [['need'], ['converion'], ['tool'], ['export'], ['pdf'], ['excel'], ['summary'], ['hello'], ['saw'], ['pdf'], ['option'], ['possible'], ['export'], ['pdf'], ['excel'], ['know'], ['contact'], ['company'], ['get'], ['conversion'], ['tool']] k: 2029 len: <class 'list'> Data: ['browser', 'issue', 'etime', 'flash', 'player', 'issue', 'addin', 'issue', 'browser', 'issue', 'etime', 'flash', 'player', 'issue', 'addin', 'issue'] processed_text: ['browser', 'issue', 'etime', 'flash', 'player', 'issue', 'addin', 'issue', 'browser', 'issue', 'etime', 'flash', 'player', 'issue', 'addin', 'issue'] list_processed_text: [['browser'], ['issue'], ['etime'], ['flash'], ['player'], ['issue'], ['addin'], ['issue'], ['browser'], ['issue'], ['etime'], ['flash'], ['player'], ['issue'], ['addin'], ['issue']] k: 2030 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] processed_text: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] list_processed_text: [['unable'], ['sign'], ['skype'], ['unable'], ['sign'], ['skype']] k: 2031 len: <class 'list'> Data: ['erp', 'changing', 'order', 'qty', 'issue', 'please', 'look', 'sale', 'order', 'csr', 'zektaqof', 'cgxlqtiz', 'released', 'order', 'workflow', 'qty', 'went', 'pc', 'pc', 'showing', 'csr', 'changed', 'qty', 'csr', 'change', 'qty', 'please', 'review', 'possible', 'issue', 'maybe', 'wf', 'batch', 'issue'] processed_text: ['erp', 'changing', 'order', 'qty', 'issue', 'please', 'look', 'sale', 'order', 'csr', 'zektaqof', 'cgxlqtiz', 'released', 'order', 'workflow', 'qty', 'went', 'pc', 'pc', 'showing', 'csr', 'changed', 'qty', 'csr', 'change', 'qty', 'please', 'review', 'possible', 'issue', 'maybe', 'wf', 'batch', 'issue'] list_processed_text: [['erp'], ['changing'], ['order'], ['qty'], ['issue'], ['please'], ['look'], ['sale'], ['order'], ['csr'], ['zektaqof'], ['cgxlqtiz'], ['released'], ['order'], ['workflow'], ['qty'], ['went'], ['pc'], ['pc'], ['showing'], ['csr'], ['changed'], ['qty'], ['csr'], ['change'], ['qty'], ['please'], ['review'], ['possible'], ['issue'], ['maybe'], ['wf'], ['batch'], ['issue']] k: 2032 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] processed_text: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['uacyltoe'], ['hxgaycze']] k: 2033 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 2034 len: <class 'list'> Data: ['excel', 'keep', 'exiting', 'excel', 'keep', 'exiting'] processed_text: ['excel', 'keep', 'exiting', 'excel', 'keep', 'exiting'] list_processed_text: [['excel'], ['keep'], ['exiting'], ['excel'], ['keep'], ['exiting']] k: 2035 len: <class 'list'> Data: ['unable', 'update', 'mileage', 'detail', 'site', 'loading', 'unable', 'update', 'mileage', 'detail', 'site', 'loading'] processed_text: ['unable', 'update', 'mileage', 'detail', 'site', 'loading', 'unable', 'update', 'mileage', 'detail', 'site', 'loading'] list_processed_text: [['unable'], ['update'], ['mileage'], ['detail'], ['site'], ['loading'], ['unable'], ['update'], ['mileage'], ['detail'], ['site'], ['loading']] k: 2036 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2037 len: <class 'list'> Data: ['skype', 'meeting', 'good', 'morning', 'please', 'assist', 'getting', 'skype', 'meeting', 'back', 'running', 'came', 'longer', 'option'] processed_text: ['skype', 'meeting', 'good', 'morning', 'please', 'assist', 'getting', 'skype', 'meeting', 'back', 'running', 'came', 'longer', 'option'] list_processed_text: [['skype'], ['meeting'], ['good'], ['morning'], ['please'], ['assist'], ['getting'], ['skype'], ['meeting'], ['back'], ['running'], ['came'], ['longer'], ['option']] k: 2038 len: <class 'list'> Data: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] processed_text: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] list_processed_text: [['skype'], ['issue'], ['personal'], ['certificate'], ['error'], ['skype'], ['issue'], ['personal'], ['certificate'], ['error']] k: 2039 len: <class 'list'> Data: ['po', 'data', 'update', 'navdgtya', 'kuhyakose', 'pm', 'htsnaodb', 'adjtmlzn', 'petgvwch', 'zevpkogu', 'khfgharla', 'mwdjuli', 'vthuzanc', 'fqdgotvx', 'rzucjgvp', 'ioqjgmah', 'nawkpdtx', 'gwcvmbhn', 'po', 'septemer', 'hi', 'karghyuen', 'compared', 'po', 'data', 'crm', 'bi', 'data', 'sync', 'run', 'programdnty', 'update', 'table', 'zcp', 'crm', 'bi', 'count', 'mandt', 'sum', 'toengineering', 'tool', 'sum', 'counter', 'sum', 'total', 'distributor', 'cost'] processed_text: ['po', 'data', 'update', 'navdgtya', 'kuhyakose', 'pm', 'htsnaodb', 'adjtmlzn', 'petgvwch', 'zevpkogu', 'khfgharla', 'mwdjuli', 'vthuzanc', 'fqdgotvx', 'rzucjgvp', 'ioqjgmah', 'nawkpdtx', 'gwcvmbhn', 'po', 'septemer', 'hi', 'karghyuen', 'compared', 'po', 'data', 'crm', 'bi', 'data', 'sync', 'run', 'programdnty', 'update', 'table', 'zcp', 'crm', 'bi', 'count', 'mandt', 'sum', 'toengineering', 'tool', 'sum', 'counter', 'sum', 'total', 'distributor', 'cost'] list_processed_text: [['po'], ['data'], ['update'], ['navdgtya'], ['kuhyakose'], ['pm'], ['htsnaodb'], ['adjtmlzn'], ['petgvwch'], ['zevpkogu'], ['khfgharla'], ['mwdjuli'], ['vthuzanc'], ['fqdgotvx'], ['rzucjgvp'], ['ioqjgmah'], ['nawkpdtx'], ['gwcvmbhn'], ['po'], ['septemer'], ['hi'], ['karghyuen'], ['compared'], ['po'], ['data'], ['crm'], ['bi'], ['data'], ['sync'], ['run'], ['programdnty'], ['update'], ['table'], ['zcp'], ['crm'], ['bi'], ['count'], ['mandt'], ['sum'], ['toengineering'], ['tool'], ['sum'], ['counter'], ['sum'], ['total'], ['distributor'], ['cost']] k: 2040 len: <class 'list'> Data: ['unable', 'access', 'vpn', 'unable', 'access', 'vpn'] processed_text: ['unable', 'access', 'vpn', 'unable', 'access', 'vpn'] list_processed_text: [['unable'], ['access'], ['vpn'], ['unable'], ['access'], ['vpn']] k: 2041 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'issue', 'hr', 'tool', 'etime', 'issue'] processed_text: ['hr', 'tool', 'etime', 'issue', 'hr', 'tool', 'etime', 'issue'] list_processed_text: [['hr'], ['tool'], ['etime'], ['issue'], ['hr'], ['tool'], ['etime'], ['issue']] k: 2042 len: <class 'list'> Data: ['error', 'window', 'build', 'copy', 'window', 'genuine', 'error', 'window', 'build', 'copy', 'window', 'genuine', 'next', 'week', 'usa', 'contact'] processed_text: ['error', 'window', 'build', 'copy', 'window', 'genuine', 'error', 'window', 'build', 'copy', 'window', 'genuine', 'next', 'week', 'usa', 'contact'] list_processed_text: [['error'], ['window'], ['build'], ['copy'], ['window'], ['genuine'], ['error'], ['window'], ['build'], ['copy'], ['window'], ['genuine'], ['next'], ['week'], ['usa'], ['contact']] k: 2043 len: <class 'list'> Data: ['audio', 'issue', 'skype', 'audio', 'issue', 'skype'] processed_text: ['audio', 'issue', 'skype', 'audio', 'issue', 'skype'] list_processed_text: [['audio'], ['issue'], ['skype'], ['audio'], ['issue'], ['skype']] k: 2044 len: <class 'list'> Data: ['please', 'allow', 'access', 'using', 'printer', 'india', 'office', 'please', 'allow', 'access', 'using', 'printer', 'india', 'office', 'please', 'refer', 'attachment'] processed_text: ['please', 'allow', 'access', 'using', 'printer', 'india', 'office', 'please', 'allow', 'access', 'using', 'printer', 'india', 'office', 'please', 'refer', 'attachment'] list_processed_text: [['please'], ['allow'], ['access'], ['using'], ['printer'], ['india'], ['office'], ['please'], ['allow'], ['access'], ['using'], ['printer'], ['india'], ['office'], ['please'], ['refer'], ['attachment']] k: 2045 len: <class 'list'> Data: ['please', 'provide', 'access', 'solman', 'environment', 'user', 'vvamrtryot', 'please', 'provide', 'access', 'solman', 'environment', 'solman', 'sid', 'production', 'user', 'vvamrtryot', 'need', 'access', 'open', 'request', 'thesis', 'charm'] processed_text: ['please', 'provide', 'access', 'solman', 'environment', 'user', 'vvamrtryot', 'please', 'provide', 'access', 'solman', 'environment', 'solman', 'sid', 'production', 'user', 'vvamrtryot', 'need', 'access', 'open', 'request', 'thesis', 'charm'] list_processed_text: [['please'], ['provide'], ['access'], ['solman'], ['environment'], ['user'], ['vvamrtryot'], ['please'], ['provide'], ['access'], ['solman'], ['environment'], ['solman'], ['sid'], ['production'], ['user'], ['vvamrtryot'], ['need'], ['access'], ['open'], ['request'], ['thesis'], ['charm']] k: 2046 len: <class 'list'> Data: ['engineering', 'tool', 'installation', 'engineering', 'tool', 'installation'] processed_text: ['engineering', 'tool', 'installation', 'engineering', 'tool', 'installation'] list_processed_text: [['engineering'], ['tool'], ['installation'], ['engineering'], ['tool'], ['installation']] k: 2047 len: <class 'list'> Data: ['outlook', 'opening', 'outlook', 'opening'] processed_text: ['outlook', 'opening', 'outlook', 'opening'] list_processed_text: [['outlook'], ['opening'], ['outlook'], ['opening']] k: 2048 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] processed_text: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['gso'], ['blank'], ['call'], ['loud'], ['noise'], ['gso']] k: 2049 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 2050 len: <class 'list'> Data: ['unable', 'see', 'workflow', 'erp', 'sid', 'unable', 'see', 'workflow', 'erp', 'sid'] processed_text: ['unable', 'see', 'workflow', 'erp', 'sid', 'unable', 'see', 'workflow', 'erp', 'sid'] list_processed_text: [['unable'], ['see'], ['workflow'], ['erp'], ['sid'], ['unable'], ['see'], ['workflow'], ['erp'], ['sid']] k: 2051 len: <class 'list'> Data: ['anleitung', 'fuer', 'password', 'management', 'tool', 'anleitung', 'fuer', 'password', 'management', 'tool'] processed_text: ['anleitung', 'fuer', 'password', 'management', 'tool', 'anleitung', 'fuer', 'password', 'management', 'tool'] list_processed_text: [['anleitung'], ['fuer'], ['password'], ['management'], ['tool'], ['anleitung'], ['fuer'], ['password'], ['management'], ['tool']] k: 2052 len: <class 'list'> Data: ['access', 'hr', 'tool', 'etime', 'dear', 'help', 'desk', 'access', 'hr', 'tool', 'etime', 'see', 'error', 'page', 'trying', 'reach', 'available', 'internal', 'server', 'error', 'raised', 'jdamieul', 'fandyhgg', 'senior', 'staff', 'engineer'] processed_text: ['access', 'hr', 'tool', 'etime', 'dear', 'help', 'desk', 'access', 'hr', 'tool', 'etime', 'see', 'error', 'page', 'trying', 'reach', 'available', 'internal', 'server', 'error', 'raised', 'jdamieul', 'fandyhgg', 'senior', 'staff', 'engineer'] list_processed_text: [['access'], ['hr'], ['tool'], ['etime'], ['dear'], ['help'], ['desk'], ['access'], ['hr'], ['tool'], ['etime'], ['see'], ['error'], ['page'], ['trying'], ['reach'], ['available'], ['internal'], ['server'], ['error'], ['raised'], ['jdamieul'], ['fandyhgg'], ['senior'], ['staff'], ['engineer']] k: 2053 len: <class 'list'> Data: ['wifi', 'working', 'webpage', 'loading', 'wifi', 'working', 'webpage', 'loading'] processed_text: ['wifi', 'working', 'webpage', 'loading', 'wifi', 'working', 'webpage', 'loading'] list_processed_text: [['wifi'], ['working'], ['webpage'], ['loading'], ['wifi'], ['working'], ['webpage'], ['loading']] k: 2054 len: <class 'list'> Data: ['delay', 'presenting', 'cal', 'polycom', 'phone', 'call', 'come', 'first', 'presented', 'computer', 'screen', 'sec', 'later', 'phone', 'start', 'ringing', 'time', 'around', 'sec'] processed_text: ['delay', 'presenting', 'cal', 'polycom', 'phone', 'call', 'come', 'first', 'presented', 'computer', 'screen', 'sec', 'later', 'phone', 'start', 'ringing', 'time', 'around', 'sec'] list_processed_text: [['delay'], ['presenting'], ['cal'], ['polycom'], ['phone'], ['call'], ['come'], ['first'], ['presented'], ['computer'], ['screen'], ['sec'], ['later'], ['phone'], ['start'], ['ringing'], ['time'], ['around'], ['sec']] k: 2055 len: <class 'list'> Data: ['user', 'manager', 'manager', 'pointing', 'wrongly', 'vtykrubi', 'whsipqno', 'example', 'given', 'shesyhur', 'report', 'davidthd', 'davidthd', 'reporting', 'chukhyt', 'ron', 'like', 'wise', 'managing', 'director', 'reporting', 'happened', 'record', 'updated', 'today', 'see', 'attached', 'screenshots'] processed_text: ['user', 'manager', 'manager', 'pointing', 'wrongly', 'vtykrubi', 'whsipqno', 'example', 'given', 'shesyhur', 'report', 'davidthd', 'davidthd', 'reporting', 'chukhyt', 'ron', 'like', 'wise', 'managing', 'director', 'reporting', 'happened', 'record', 'updated', 'today', 'see', 'attached', 'screenshots'] list_processed_text: [['user'], ['manager'], ['manager'], ['pointing'], ['wrongly'], ['vtykrubi'], ['whsipqno'], ['example'], ['given'], ['shesyhur'], ['report'], ['davidthd'], ['davidthd'], ['reporting'], ['chukhyt'], ['ron'], ['like'], ['wise'], ['managing'], ['director'], ['reporting'], ['happened'], ['record'], ['updated'], ['today'], ['see'], ['attached'], ['screenshots']] k: 2056 len: <class 'list'> Data: ['call', 'vendor', 'crm', 'call', 'vendor', 'crm'] processed_text: ['call', 'vendor', 'crm', 'call', 'vendor', 'crm'] list_processed_text: [['call'], ['vendor'], ['crm'], ['call'], ['vendor'], ['crm']] k: 2057 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] processed_text: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['uacyltoe'], ['hxgaycze']] k: 2058 len: <class 'list'> Data: ['hand', 'scanner', 'pc', 'evhw', 'without', 'function', 'rep', 'replace', 'hand', 'scanner', 'pc', 'evhw', 'without', 'function', 'rep', 'replace', 'pc', 'hall', 'erp', 'terminal'] processed_text: ['hand', 'scanner', 'pc', 'evhw', 'without', 'function', 'rep', 'replace', 'hand', 'scanner', 'pc', 'evhw', 'without', 'function', 'rep', 'replace', 'pc', 'hall', 'erp', 'terminal'] list_processed_text: [['hand'], ['scanner'], ['pc'], ['evhw'], ['without'], ['function'], ['rep'], ['replace'], ['hand'], ['scanner'], ['pc'], ['evhw'], ['without'], ['function'], ['rep'], ['replace'], ['pc'], ['hall'], ['erp'], ['terminal']] k: 2059 len: <class 'list'> Data: ['get', 'logged', 'outlook', 'problem', 'started', 'around', 'pm', 'reichlhdyl', 'usa', 'skype', 'working'] processed_text: ['get', 'logged', 'outlook', 'problem', 'started', 'around', 'pm', 'reichlhdyl', 'usa', 'skype', 'working'] list_processed_text: [['get'], ['logged'], ['outlook'], ['problem'], ['started'], ['around'], ['pm'], ['reichlhdyl'], ['usa'], ['skype'], ['working']] k: 2060 len: <class 'list'> Data: ['erp', 'access', 'issue', 'authorized', 'transaction', 'vf', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'hellej', 'transaction', 'code', 'user', 'need', 'working', 'vf', 'describe', 'issue', 'authorized', 'transaction', 'vf', 'sid', 'please', 'find', 'attached', 'error', 'message', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'maryhtutina', 'bauuyternfeyt'] processed_text: ['erp', 'access', 'issue', 'authorized', 'transaction', 'vf', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'hellej', 'transaction', 'code', 'user', 'need', 'working', 'vf', 'describe', 'issue', 'authorized', 'transaction', 'vf', 'sid', 'please', 'find', 'attached', 'error', 'message', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'maryhtutina', 'bauuyternfeyt'] list_processed_text: [['erp'], ['access'], ['issue'], ['authorized'], ['transaction'], ['vf'], ['sid'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['hellej'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['vf'], ['describe'], ['issue'], ['authorized'], ['transaction'], ['vf'], ['sid'], ['please'], ['find'], ['attached'], ['error'], ['message'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user'], ['maryhtutina'], ['bauuyternfeyt']] k: 2061 len: <class 'list'> Data: ['please', 'reset', 'password', 'please', 'reset', 'password'] processed_text: ['please', 'reset', 'password', 'please', 'reset', 'password'] list_processed_text: [['please'], ['reset'], ['password'], ['please'], ['reset'], ['password']] k: 2062 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2063 len: <class 'list'> Data: ['pc', 'defekt', 'empw', 'defekt', 'code', 'xed', 'blue', 'screen'] processed_text: ['pc', 'defekt', 'empw', 'defekt', 'code', 'xed', 'blue', 'screen'] list_processed_text: [['pc'], ['defekt'], ['empw'], ['defekt'], ['code'], ['xed'], ['blue'], ['screen']] k: 2064 len: <class 'list'> Data: ['crm', 'button', 'recently', 'upgraded', 'calendar', 'outlook', 'crm', 'software', 'upgrade', 'track', 'set', 'regarding', 'toolbar', 'selection', 'seen', 'snap', 'shot', 'install', 'complete', 'need', 'server', 'side', 'synchronization', 'incoming', 'email', 'corrected', 'crm', 'application', 'permission', 'correct', 'believe', 'another', 'issue', 'let', 'know', 'phone', 'issue', 'thus', 'notebook', 'issue', 'please', 'review', 'snap', 'shot', 'sent', 'advise'] processed_text: ['crm', 'button', 'recently', 'upgraded', 'calendar', 'outlook', 'crm', 'software', 'upgrade', 'track', 'set', 'regarding', 'toolbar', 'selection', 'seen', 'snap', 'shot', 'install', 'complete', 'need', 'server', 'side', 'synchronization', 'incoming', 'email', 'corrected', 'crm', 'application', 'permission', 'correct', 'believe', 'another', 'issue', 'let', 'know', 'phone', 'issue', 'thus', 'notebook', 'issue', 'please', 'review', 'snap', 'shot', 'sent', 'advise'] list_processed_text: [['crm'], ['button'], ['recently'], ['upgraded'], ['calendar'], ['outlook'], ['crm'], ['software'], ['upgrade'], ['track'], ['set'], ['regarding'], ['toolbar'], ['selection'], ['seen'], ['snap'], ['shot'], ['install'], ['complete'], ['need'], ['server'], ['side'], ['synchronization'], ['incoming'], ['email'], ['corrected'], ['crm'], ['application'], ['permission'], ['correct'], ['believe'], ['another'], ['issue'], ['let'], ['know'], ['phone'], ['issue'], ['thus'], ['notebook'], ['issue'], ['please'], ['review'], ['snap'], ['shot'], ['sent'], ['advise']] k: 2065 len: <class 'list'> Data: ['network', 'outage', 'russia', 'engineering', 'toolkuznetsk', 'site', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'engineering', 'toolkuznetsk', 'site', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['engineering'], ['toolkuznetsk'], ['site'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2066 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2067 len: <class 'list'> Data: ['install', 'drucker', 'ewew', 'hnyeajrw', 'ctxjsolz', 'install', 'drucker', 'ewew', 'hnyeajrw', 'ctxjsolz'] processed_text: ['install', 'drucker', 'ewew', 'hnyeajrw', 'ctxjsolz', 'install', 'drucker', 'ewew', 'hnyeajrw', 'ctxjsolz'] list_processed_text: [['install'], ['drucker'], ['ewew'], ['hnyeajrw'], ['ctxjsolz'], ['install'], ['drucker'], ['ewew'], ['hnyeajrw'], ['ctxjsolz']] k: 2068 len: <class 'list'> Data: ['install', 'printer', 'ewew', 'lxfnwyuv', 'bqmjyprz', 'install', 'printer', 'ewew', 'lxfnwyuv', 'bqmjyprz'] processed_text: ['install', 'printer', 'ewew', 'lxfnwyuv', 'bqmjyprz', 'install', 'printer', 'ewew', 'lxfnwyuv', 'bqmjyprz'] list_processed_text: [['install'], ['printer'], ['ewew'], ['lxfnwyuv'], ['bqmjyprz'], ['install'], ['printer'], ['ewew'], ['lxfnwyuv'], ['bqmjyprz']] k: 2069 len: <class 'list'> Data: ['printing', 'language', 'sa', 'reporting', 'rfumsv', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'kq', 'hp', 'laserjet', 'px', 'detailed', 'description', 'problem', 'wrong', 'carahcters', 'printing', 'reporting', 'rfumsv', 'error', 'message', 'pjl', 'enter', 'language', 'pcl', 'type', 'document', 'printing', 'sa', 'reporting', 'rfumsv', 'tax', 'sl', 'purch', 'advanced', 'return', 'system', 'application', 'used', 'time', 'problem', 'erp', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'print', 'wrong', 'language', 'character', 'erp', 'system', 'system', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'tried', 'another', 'erp', 'printer', 'issue', 'persits', 'printer', 'rerouted', 'applicable', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket', 'file', 'attached', 'nia', 'pereira', 'accounting', 'report', 'analyst', 'finance'] processed_text: ['printing', 'language', 'sa', 'reporting', 'rfumsv', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'kq', 'hp', 'laserjet', 'px', 'detailed', 'description', 'problem', 'wrong', 'carahcters', 'printing', 'reporting', 'rfumsv', 'error', 'message', 'pjl', 'enter', 'language', 'pcl', 'type', 'document', 'printing', 'sa', 'reporting', 'rfumsv', 'tax', 'sl', 'purch', 'advanced', 'return', 'system', 'application', 'used', 'time', 'problem', 'erp', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'print', 'wrong', 'language', 'character', 'erp', 'system', 'system', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'tried', 'another', 'erp', 'printer', 'issue', 'persits', 'printer', 'rerouted', 'applicable', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket', 'file', 'attached', 'nia', 'pereira', 'accounting', 'report', 'analyst', 'finance'] list_processed_text: [['printing'], ['language'], ['sa'], ['reporting'], ['rfumsv'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['kq'], ['hp'], ['laserjet'], ['px'], ['detailed'], ['description'], ['problem'], ['wrong'], ['carahcters'], ['printing'], ['reporting'], ['rfumsv'], ['error'], ['message'], ['pjl'], ['enter'], ['language'], ['pcl'], ['type'], ['document'], ['printing'], ['sa'], ['reporting'], ['rfumsv'], ['tax'], ['sl'], ['purch'], ['advanced'], ['return'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['erp'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['print'], ['wrong'], ['language'], ['character'], ['erp'], ['system'], ['system'], ['sid'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['tried'], ['another'], ['erp'], ['printer'], ['issue'], ['persits'], ['printer'], ['rerouted'], ['applicable'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket'], ['file'], ['attached'], ['nia'], ['pereira'], ['accounting'], ['report'], ['analyst'], ['finance']] k: 2070 len: <class 'list'> Data: ['kindly', 'install', 'software', 'paint', 'shop', 'winzip', 'kindly', 'install', 'software', 'paint', 'shop', 'winzip'] processed_text: ['kindly', 'install', 'software', 'paint', 'shop', 'winzip', 'kindly', 'install', 'software', 'paint', 'shop', 'winzip'] list_processed_text: [['kindly'], ['install'], ['software'], ['paint'], ['shop'], ['winzip'], ['kindly'], ['install'], ['software'], ['paint'], ['shop'], ['winzip']] k: 2071 len: <class 'list'> Data: ['install', 'printer', 'oziflwma', 'nhgvmqdl', 'install', 'printer', 'oziflwma', 'nhgvmqdl'] processed_text: ['install', 'printer', 'oziflwma', 'nhgvmqdl', 'install', 'printer', 'oziflwma', 'nhgvmqdl'] list_processed_text: [['install'], ['printer'], ['oziflwma'], ['nhgvmqdl'], ['install'], ['printer'], ['oziflwma'], ['nhgvmqdl']] k: 2072 len: <class 'list'> Data: ['need', 'numeric', 'keypad', 'r', 'left', 'hand', 'hello', 'need', 'numeric', 'keypad', 'r', 'left', 'hand'] processed_text: ['need', 'numeric', 'keypad', 'r', 'left', 'hand', 'hello', 'need', 'numeric', 'keypad', 'r', 'left', 'hand'] list_processed_text: [['need'], ['numeric'], ['keypad'], ['r'], ['left'], ['hand'], ['hello'], ['need'], ['numeric'], ['keypad'], ['r'], ['left'], ['hand']] k: 2073 len: <class 'list'> Data: ['eu', 'tool', 'ufs', 'slowly', 'germany', 'factory', 'ck', 'message', 'longer', 'entered', 'runtime', 'error', 'currently', 'c-messages', 'entered', 'eu', 'tool', 'error', 'runtime', 'error'] processed_text: ['eu', 'tool', 'ufs', 'slowly', 'germany', 'factory', 'ck', 'message', 'longer', 'entered', 'runtime', 'error', 'currently', 'c-messages', 'entered', 'eu', 'tool', 'error', 'runtime', 'error'] list_processed_text: [['eu'], ['tool'], ['ufs'], ['slowly'], ['germany'], ['factory'], ['ck'], ['message'], ['longer'], ['entered'], ['runtime'], ['error'], ['currently'], ['c-messages'], ['entered'], ['eu'], ['tool'], ['error'], ['runtime'], ['error']] k: 2074 len: <class 'list'> Data: ['stocktransfer', 'go', 'mm', 'hello', 'ist', 'possible', 'create', 'delivery', 'note', 'best'] processed_text: ['stocktransfer', 'go', 'mm', 'hello', 'ist', 'possible', 'create', 'delivery', 'note', 'best'] list_processed_text: [['stocktransfer'], ['go'], ['mm'], ['hello'], ['ist'], ['possible'], ['create'], ['delivery'], ['note'], ['best']] k: 2075 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2076 len: <class 'list'> Data: ['ethic', 'webportal', 'login', 'issue', 'able', 'login', 'ethic', 'website', 'please', 'find', 'screenshot', 'kindly', 'help', 'regarding', 'issue'] processed_text: ['ethic', 'webportal', 'login', 'issue', 'able', 'login', 'ethic', 'website', 'please', 'find', 'screenshot', 'kindly', 'help', 'regarding', 'issue'] list_processed_text: [['ethic'], ['webportal'], ['login'], ['issue'], ['able'], ['login'], ['ethic'], ['website'], ['please'], ['find'], ['screenshot'], ['kindly'], ['help'], ['regarding'], ['issue']] k: 2077 len: <class 'list'> Data: ['pulverleitstand', 'chargenverwaltung', 'work', 'corectly', 'pulverleitstand', 'chargenverwaltung', 'work', 'correctly', 'either', 'run', 'slow', 'crash', 'error', 'message', 'time', 'eu', 'tool', 'also', 'run', 'slow'] processed_text: ['pulverleitstand', 'chargenverwaltung', 'work', 'corectly', 'pulverleitstand', 'chargenverwaltung', 'work', 'correctly', 'either', 'run', 'slow', 'crash', 'error', 'message', 'time', 'eu', 'tool', 'also', 'run', 'slow'] list_processed_text: [['pulverleitstand'], ['chargenverwaltung'], ['work'], ['corectly'], ['pulverleitstand'], ['chargenverwaltung'], ['work'], ['correctly'], ['either'], ['run'], ['slow'], ['crash'], ['error'], ['message'], ['time'], ['eu'], ['tool'], ['also'], ['run'], ['slow']] k: 2078 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2079 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2080 len: <class 'list'> Data: ['automatic', 'data', 'processing', 'qa', 'work', 'automatic', 'data', 'processing', 'work'] processed_text: ['automatic', 'data', 'processing', 'qa', 'work', 'automatic', 'data', 'processing', 'work'] list_processed_text: [['automatic'], ['data'], ['processing'], ['qa'], ['work'], ['automatic'], ['data'], ['processing'], ['work']] k: 2081 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2082 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'company', 'eu', 'deu', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'company', 'eu', 'deu', 'erkheim', 'dmvpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['company'], ['eu'], ['deu'], ['erkheim'], ['dmvpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2083 len: <class 'list'> Data: ['outlook', 'working', 'good', 'morning', 'yesterday', 'started', 'outlook', 'morning', 'every', 'morning', 'started', 'quick', 'tryed', 'open', 'mail', 'received', 'white', 'screen', 'tried', 'several', 'new', 'computer', 'start', 'nothing', 'changed', 'decided', 'work', 'via', 'collaboration', 'platform', 'right', 'well', 'today', 'negative', 'result', 'outlook', 'start', 'quick', 'chance', 'read', 'email', 'write', 'one', 'please', 'alook', 'matheywter', 'working', 'via', 'collaboration', 'platform', 'sle', 'comfortable', 'slowing'] processed_text: ['outlook', 'working', 'good', 'morning', 'yesterday', 'started', 'outlook', 'morning', 'every', 'morning', 'started', 'quick', 'tryed', 'open', 'mail', 'received', 'white', 'screen', 'tried', 'several', 'new', 'computer', 'start', 'nothing', 'changed', 'decided', 'work', 'via', 'collaboration', 'platform', 'right', 'well', 'today', 'negative', 'result', 'outlook', 'start', 'quick', 'chance', 'read', 'email', 'write', 'one', 'please', 'alook', 'matheywter', 'working', 'via', 'collaboration', 'platform', 'sle', 'comfortable', 'slowing'] list_processed_text: [['outlook'], ['working'], ['good'], ['morning'], ['yesterday'], ['started'], ['outlook'], ['morning'], ['every'], ['morning'], ['started'], ['quick'], ['tryed'], ['open'], ['mail'], ['received'], ['white'], ['screen'], ['tried'], ['several'], ['new'], ['computer'], ['start'], ['nothing'], ['changed'], ['decided'], ['work'], ['via'], ['collaboration'], ['platform'], ['right'], ['well'], ['today'], ['negative'], ['result'], ['outlook'], ['start'], ['quick'], ['chance'], ['read'], ['email'], ['write'], ['one'], ['please'], ['alook'], ['matheywter'], ['working'], ['via'], ['collaboration'], ['platform'], ['sle'], ['comfortable'], ['slowing']] k: 2084 len: <class 'list'> Data: ['dba', 'team', 'imwveudk', 'mykcourx', 'processor', 'stopped', 'please', 'restart', 'dba', 'team', 'job', 'processor', 'engg', 'application', 'stopped', 'please', 'restart', 'soon', 'possible', 'dmqxwkfr', 'olmwqzpu'] processed_text: ['dba', 'team', 'imwveudk', 'mykcourx', 'processor', 'stopped', 'please', 'restart', 'dba', 'team', 'job', 'processor', 'engg', 'application', 'stopped', 'please', 'restart', 'soon', 'possible', 'dmqxwkfr', 'olmwqzpu'] list_processed_text: [['dba'], ['team'], ['imwveudk'], ['mykcourx'], ['processor'], ['stopped'], ['please'], ['restart'], ['dba'], ['team'], ['job'], ['processor'], ['engg'], ['application'], ['stopped'], ['please'], ['restart'], ['soon'], ['possible'], ['dmqxwkfr'], ['olmwqzpu']] k: 2085 len: <class 'list'> Data: ['plant', 'plant', 'eu', 'tool', 'system', 'running', 'slowly', 'big', 'problem', 'enter', 'production', 'plan', 'plant', 'plant', 'eu', 'tool', 'system', 'running', 'slowly', 'big', 'problem', 'enter', 'production', 'plan'] processed_text: ['plant', 'plant', 'eu', 'tool', 'system', 'running', 'slowly', 'big', 'problem', 'enter', 'production', 'plan', 'plant', 'plant', 'eu', 'tool', 'system', 'running', 'slowly', 'big', 'problem', 'enter', 'production', 'plan'] list_processed_text: [['plant'], ['plant'], ['eu'], ['tool'], ['system'], ['running'], ['slowly'], ['big'], ['problem'], ['enter'], ['production'], ['plan'], ['plant'], ['plant'], ['eu'], ['tool'], ['system'], ['running'], ['slowly'], ['big'], ['problem'], ['enter'], ['production'], ['plan']] k: 2086 len: <class 'list'> Data: ['abend', 'job', 'bkwin', 'list', 'daily', 'interface', 'material', 'job', 'name', 'bkwin', 'list', 'daily', 'interface', 'material'] processed_text: ['abend', 'job', 'bkwin', 'list', 'daily', 'interface', 'material', 'job', 'name', 'bkwin', 'list', 'daily', 'interface', 'material'] list_processed_text: [['abend'], ['job'], ['bkwin'], ['list'], ['daily'], ['interface'], ['material'], ['job'], ['name'], ['bkwin'], ['list'], ['daily'], ['interface'], ['material']] k: 2087 len: <class 'list'> Data: ['purchasing', 'online', 'catalog', 'de', 'technical', 'trade', 'work', 'purchasing', 'online', 'catalog', 'de', 'technical', 'trade', 'work'] processed_text: ['purchasing', 'online', 'catalog', 'de', 'technical', 'trade', 'work', 'purchasing', 'online', 'catalog', 'de', 'technical', 'trade', 'work'] list_processed_text: [['purchasing'], ['online'], ['catalog'], ['de'], ['technical'], ['trade'], ['work'], ['purchasing'], ['online'], ['catalog'], ['de'], ['technical'], ['trade'], ['work']] k: 2088 len: <class 'list'> Data: ['routing', 'fix', 'germany', 'please', 'add', 'static', 'route', 'lan', 'switch', 'germany', 'ensure', 'access', 'shop', 'floor', 'network', 'disrupted', 'downtime', 'vpn', 'router', 'company', 'eu', 'deu', 'germany', 'emsw', 'core', 'sw', 'conf', 'ip', 'route', 'exit', 'copy', 'running', 'config', 'startup', 'config'] processed_text: ['routing', 'fix', 'germany', 'please', 'add', 'static', 'route', 'lan', 'switch', 'germany', 'ensure', 'access', 'shop', 'floor', 'network', 'disrupted', 'downtime', 'vpn', 'router', 'company', 'eu', 'deu', 'germany', 'emsw', 'core', 'sw', 'conf', 'ip', 'route', 'exit', 'copy', 'running', 'config', 'startup', 'config'] list_processed_text: [['routing'], ['fix'], ['germany'], ['please'], ['add'], ['static'], ['route'], ['lan'], ['switch'], ['germany'], ['ensure'], ['access'], ['shop'], ['floor'], ['network'], ['disrupted'], ['downtime'], ['vpn'], ['router'], ['company'], ['eu'], ['deu'], ['germany'], ['emsw'], ['core'], ['sw'], ['conf'], ['ip'], ['route'], ['exit'], ['copy'], ['running'], ['config'], ['startup'], ['config']] k: 2089 len: <class 'list'> Data: ['need', 'access', 'hello', 'need', 'access', 'email', 'address', 'modify', 'required', 'please', 'provide', 'access', 'mentioned', 'mailing', 'address', 'bnthygl', 'pdu', 'hdjm', 'er', 'bhrtty', 'pdlc', 'yhhm', 'er', 'best'] processed_text: ['need', 'access', 'hello', 'need', 'access', 'email', 'address', 'modify', 'required', 'please', 'provide', 'access', 'mentioned', 'mailing', 'address', 'bnthygl', 'pdu', 'hdjm', 'er', 'bhrtty', 'pdlc', 'yhhm', 'er', 'best'] list_processed_text: [['need'], ['access'], ['hello'], ['need'], ['access'], ['email'], ['address'], ['modify'], ['required'], ['please'], ['provide'], ['access'], ['mentioned'], ['mailing'], ['address'], ['bnthygl'], ['pdu'], ['hdjm'], ['er'], ['bhrtty'], ['pdlc'], ['yhhm'], ['er'], ['best']] k: 2090 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 2091 len: <class 'list'> Data: ['hrt', 'archive', 'job', 'failing', 'hrt', 'archive', 'job', 'failing', 'error', 'os', 'account', 'locked', 'brw', 'connect', 'database', 'instance', 'hrt', 'failed'] processed_text: ['hrt', 'archive', 'job', 'failing', 'hrt', 'archive', 'job', 'failing', 'error', 'os', 'account', 'locked', 'brw', 'connect', 'database', 'instance', 'hrt', 'failed'] list_processed_text: [['hrt'], ['archive'], ['job'], ['failing'], ['hrt'], ['archive'], ['job'], ['failing'], ['error'], ['os'], ['account'], ['locked'], ['brw'], ['connect'], ['database'], ['instance'], ['hrt'], ['failed']] k: 2092 len: <class 'list'> Data: ['job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['tax'], ['interface'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['tax'], ['interface'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 2093 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2094 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2095 len: <class 'list'> Data: ['cannot', 'extract', 'finance', 'app', 'data', 'pls', 'resolve', 'immediately', 'uagqromi', 'sqgtkmci', 'controller', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['cannot', 'extract', 'finance', 'app', 'data', 'pls', 'resolve', 'immediately', 'uagqromi', 'sqgtkmci', 'controller', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['cannot'], ['extract'], ['finance'], ['app'], ['data'], ['pls'], ['resolve'], ['immediately'], ['uagqromi'], ['sqgtkmci'], ['controller'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 2096 len: <class 'list'> Data: ['unable', 'install', 'crm', 'outlook', 'unable', 'install', 'crm', 'outlook'] processed_text: ['unable', 'install', 'crm', 'outlook', 'unable', 'install', 'crm', 'outlook'] list_processed_text: [['unable'], ['install'], ['crm'], ['outlook'], ['unable'], ['install'], ['crm'], ['outlook']] k: 2097 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2098 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2099 len: <class 'list'> Data: ['outlook', 'programdnty', 'take', 'min', 'load', 'outlook', 'programdnty', 'take', 'min', 'load'] processed_text: ['outlook', 'programdnty', 'take', 'min', 'load', 'outlook', 'programdnty', 'take', 'min', 'load'] list_processed_text: [['outlook'], ['programdnty'], ['take'], ['min'], ['load'], ['outlook'], ['programdnty'], ['take'], ['min'], ['load']] k: 2100 len: <class 'list'> Data: ['password', 'reset', 'login', 'hub', 'password', 'reset', 'login', 'hub'] processed_text: ['password', 'reset', 'login', 'hub', 'password', 'reset', 'login', 'hub'] list_processed_text: [['password'], ['reset'], ['login'], ['hub'], ['password'], ['reset'], ['login'], ['hub']] k: 2101 len: <class 'list'> Data: ['need', 'access', 'folder', 'hello', 'need', 'access', 'quality', 'folder', 'lan', 'drive', 'usa'] processed_text: ['need', 'access', 'folder', 'hello', 'need', 'access', 'quality', 'folder', 'lan', 'drive', 'usa'] list_processed_text: [['need'], ['access'], ['folder'], ['hello'], ['need'], ['access'], ['quality'], ['folder'], ['lan'], ['drive'], ['usa']] k: 2102 len: <class 'list'> Data: ['engineering', 'tool', 'page', 'opening', 'engineering', 'tool', 'page', 'opening'] processed_text: ['engineering', 'tool', 'page', 'opening', 'engineering', 'tool', 'page', 'opening'] list_processed_text: [['engineering'], ['tool'], ['page'], ['opening'], ['engineering'], ['tool'], ['page'], ['opening']] k: 2103 len: <class 'list'> Data: ['analysis', 'add', 'keep', 'getting', 'removed', 'analysis', 'add', 'keep', 'getting', 'removed'] processed_text: ['analysis', 'add', 'keep', 'getting', 'removed', 'analysis', 'add', 'keep', 'getting', 'removed'] list_processed_text: [['analysis'], ['add'], ['keep'], ['getting'], ['removed'], ['analysis'], ['add'], ['keep'], ['getting'], ['removed']] k: 2104 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2105 len: <class 'list'> Data: ['sale', 'order', 'generated', 'delivery', 'date', 'despite', 'order', 'markhtyed', 'day', 'air', 'nibaotpy', 'vmxathog'] processed_text: ['sale', 'order', 'generated', 'delivery', 'date', 'despite', 'order', 'markhtyed', 'day', 'air', 'nibaotpy', 'vmxathog'] list_processed_text: [['sale'], ['order'], ['generated'], ['delivery'], ['date'], ['despite'], ['order'], ['markhtyed'], ['day'], ['air'], ['nibaotpy'], ['vmxathog']] k: 2106 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 2107 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'dmvpn', 'rtr', 'since', 'pm', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'min', 'yes', 'na', 'start', 'pm', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'dmvpn', 'rtr', 'since', 'pm', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'min', 'yes', 'na', 'start', 'pm', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['min'], ['yes'], ['na'], ['start'], ['pm'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2108 len: <class 'list'> Data: ['please', 'unlock', 'user', 'vvamrtryot', 'environment', 'sid', 'please', 'unlock', 'user', 'vvamrtryot', 'environment', 'sid', 'seems', 'still', 'locked', 'sid', 'everything', 'fine'] processed_text: ['please', 'unlock', 'user', 'vvamrtryot', 'environment', 'sid', 'please', 'unlock', 'user', 'vvamrtryot', 'environment', 'sid', 'seems', 'still', 'locked', 'sid', 'everything', 'fine'] list_processed_text: [['please'], ['unlock'], ['user'], ['vvamrtryot'], ['environment'], ['sid'], ['please'], ['unlock'], ['user'], ['vvamrtryot'], ['environment'], ['sid'], ['seems'], ['still'], ['locked'], ['sid'], ['everything'], ['fine']] k: 2109 len: <class 'list'> Data: ['request', 'team', 'viewer', 'need', 'access', 'pc', 'skype'] processed_text: ['request', 'team', 'viewer', 'need', 'access', 'pc', 'skype'] list_processed_text: [['request'], ['team'], ['viewer'], ['need'], ['access'], ['pc'], ['skype']] k: 2110 len: <class 'list'> Data: ['hpqc', 'uacyltoe', 'hxgaycze', 'installation', 'hpqc', 'uacyltoe', 'hxgaycze', 'installation'] processed_text: ['hpqc', 'uacyltoe', 'hxgaycze', 'installation', 'hpqc', 'uacyltoe', 'hxgaycze', 'installation'] list_processed_text: [['hpqc'], ['uacyltoe'], ['hxgaycze'], ['installation'], ['hpqc'], ['uacyltoe'], ['hxgaycze'], ['installation']] k: 2111 len: <class 'list'> Data: ['change', 'offline', 'cache', 'mode', 'outlook', 'month', 'change', 'offline', 'cache', 'mode', 'outlook', 'month'] processed_text: ['change', 'offline', 'cache', 'mode', 'outlook', 'month', 'change', 'offline', 'cache', 'mode', 'outlook', 'month'] list_processed_text: [['change'], ['offline'], ['cache'], ['mode'], ['outlook'], ['month'], ['change'], ['offline'], ['cache'], ['mode'], ['outlook'], ['month']] k: 2112 len: <class 'list'> Data: ['erp', 'close', 'opening', 'attachment', 'md', 'erp', 'close', 'opening', 'attachment', 'md'] processed_text: ['erp', 'close', 'opening', 'attachment', 'md', 'erp', 'close', 'opening', 'attachment', 'md'] list_processed_text: [['erp'], ['close'], ['opening'], ['attachment'], ['md'], ['erp'], ['close'], ['opening'], ['attachment'], ['md']] k: 2113 len: <class 'list'> Data: ['purchasing', 'purchasing', 'add', 'user', 'purchasingupstreamsso', 'ad', 'group', 'log', 'purchasing', 'choose', 'company', 'catalog', 'window', 'never', 'load'] processed_text: ['purchasing', 'purchasing', 'add', 'user', 'purchasingupstreamsso', 'ad', 'group', 'log', 'purchasing', 'choose', 'company', 'catalog', 'window', 'never', 'load'] list_processed_text: [['purchasing'], ['purchasing'], ['add'], ['user'], ['purchasingupstreamsso'], ['ad'], ['group'], ['log'], ['purchasing'], ['choose'], ['company'], ['catalog'], ['window'], ['never'], ['load']] k: 2114 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2115 len: <class 'list'> Data: ['m', 'dynamic', 'synched', 'outlook', 'm', 'dynamic', 'synched', 'outlook'] processed_text: ['m', 'dynamic', 'synched', 'outlook', 'm', 'dynamic', 'synched', 'outlook'] list_processed_text: [['m'], ['dynamic'], ['synched'], ['outlook'], ['m'], ['dynamic'], ['synched'], ['outlook']] k: 2116 len: <class 'list'> Data: ['issue', 'outlook', 'profile', 'skype', 'business', 'ugyothfz', 'ugrmkdhx', 'ambals', 'issue', 'opening', 'outlook', 'skype', 'business', 'reached', 'pc', 'service', 'investigate', 'issue'] processed_text: ['issue', 'outlook', 'profile', 'skype', 'business', 'ugyothfz', 'ugrmkdhx', 'ambals', 'issue', 'opening', 'outlook', 'skype', 'business', 'reached', 'pc', 'service', 'investigate', 'issue'] list_processed_text: [['issue'], ['outlook'], ['profile'], ['skype'], ['business'], ['ugyothfz'], ['ugrmkdhx'], ['ambals'], ['issue'], ['opening'], ['outlook'], ['skype'], ['business'], ['reached'], ['pc'], ['service'], ['investigate'], ['issue']] k: 2117 len: <class 'list'> Data: ['unable', 'login', 'erp', 'distributor', 'tool', 'unable', 'login', 'erp', 'distributor', 'tool'] processed_text: ['unable', 'login', 'erp', 'distributor', 'tool', 'unable', 'login', 'erp', 'distributor', 'tool'] list_processed_text: [['unable'], ['login'], ['erp'], ['distributor'], ['tool'], ['unable'], ['login'], ['erp'], ['distributor'], ['tool']] k: 2118 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 2119 len: <class 'list'> Data: ['dn', 'required', 'oclock', 'est', 'team', 'please', 'create', 'dn', 'warehouse', 'today', 'cut', 'time'] processed_text: ['dn', 'required', 'oclock', 'est', 'team', 'please', 'create', 'dn', 'warehouse', 'today', 'cut', 'time'] list_processed_text: [['dn'], ['required'], ['oclock'], ['est'], ['team'], ['please'], ['create'], ['dn'], ['warehouse'], ['today'], ['cut'], ['time']] k: 2120 len: <class 'list'> Data: ['installation', 'skype', 'installation', 'skype'] processed_text: ['installation', 'skype', 'installation', 'skype'] list_processed_text: [['installation'], ['skype'], ['installation'], ['skype']] k: 2121 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 2122 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 2123 len: <class 'list'> Data: ['nda', 'email', 'getting', 'sent', 'ramdnty', 'think', 'workflow', 'need', 'looked', 'nda', 'several', 'ttemplates', 'working', 'note', 'outage', 'several', 'workflow', 'lost', 'setting', 'redo', 'case', 'nda'] processed_text: ['nda', 'email', 'getting', 'sent', 'ramdnty', 'think', 'workflow', 'need', 'looked', 'nda', 'several', 'ttemplates', 'working', 'note', 'outage', 'several', 'workflow', 'lost', 'setting', 'redo', 'case', 'nda'] list_processed_text: [['nda'], ['email'], ['getting'], ['sent'], ['ramdnty'], ['think'], ['workflow'], ['need'], ['looked'], ['nda'], ['several'], ['ttemplates'], ['working'], ['note'], ['outage'], ['several'], ['workflow'], ['lost'], ['setting'], ['redo'], ['case'], ['nda']] k: 2124 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2125 len: <class 'list'> Data: ['adding', 'user', 'dinthyesh', 'achthyardk', 'distribution', 'group', 'ethyxekirty', 'etyhumpdil', 'adding', 'user', 'dinthyesh', 'achthyardk', 'distribution', 'group', 'exekirty', 'empkirty'] processed_text: ['adding', 'user', 'dinthyesh', 'achthyardk', 'distribution', 'group', 'ethyxekirty', 'etyhumpdil', 'adding', 'user', 'dinthyesh', 'achthyardk', 'distribution', 'group', 'exekirty', 'empkirty'] list_processed_text: [['adding'], ['user'], ['dinthyesh'], ['achthyardk'], ['distribution'], ['group'], ['ethyxekirty'], ['etyhumpdil'], ['adding'], ['user'], ['dinthyesh'], ['achthyardk'], ['distribution'], ['group'], ['exekirty'], ['empkirty']] k: 2126 len: <class 'list'> Data: ['software', 'read', 'text', 'scanned', 'page', 'software', 'read', 'text', 'scanned', 'page'] processed_text: ['software', 'read', 'text', 'scanned', 'page', 'software', 'read', 'text', 'scanned', 'page'] list_processed_text: [['software'], ['read'], ['text'], ['scanned'], ['page'], ['software'], ['read'], ['text'], ['scanned'], ['page']] k: 2127 len: <class 'list'> Data: ['unable', 'view', 'subject', 'option', 'outlook', 'unable', 'view', 'subject', 'option', 'outlook'] processed_text: ['unable', 'view', 'subject', 'option', 'outlook', 'unable', 'view', 'subject', 'option', 'outlook'] list_processed_text: [['unable'], ['view'], ['subject'], ['option'], ['outlook'], ['unable'], ['view'], ['subject'], ['option'], ['outlook']] k: 2128 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 2129 len: <class 'list'> Data: ['skype', 'call', 'join', 'end', 'bad', 'call', 'blank', 'multiple', 'attempt', 'skype', 'call', 'join', 'end', 'bad', 'call', 'blank', 'multiple', 'attempt'] processed_text: ['skype', 'call', 'join', 'end', 'bad', 'call', 'blank', 'multiple', 'attempt', 'skype', 'call', 'join', 'end', 'bad', 'call', 'blank', 'multiple', 'attempt'] list_processed_text: [['skype'], ['call'], ['join'], ['end'], ['bad'], ['call'], ['blank'], ['multiple'], ['attempt'], ['skype'], ['call'], ['join'], ['end'], ['bad'], ['call'], ['blank'], ['multiple'], ['attempt']] k: 2130 len: <class 'list'> Data: ['login', 'option', 'erp', 'netweaver', 'installing', 'possible', 'log', 'erp', 'user', 'name', 'nagdyiyst'] processed_text: ['login', 'option', 'erp', 'netweaver', 'installing', 'possible', 'log', 'erp', 'user', 'name', 'nagdyiyst'] list_processed_text: [['login'], ['option'], ['erp'], ['netweaver'], ['installing'], ['possible'], ['log'], ['erp'], ['user'], ['name'], ['nagdyiyst']] k: 2131 len: <class 'list'> Data: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'account', 'sincerely'] processed_text: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'account', 'sincerely'] list_processed_text: [['password'], ['geoyhurg'], ['chriuimjiann'], ['please'], ['activate'], ['password'], ['account'], ['sincerely']] k: 2132 len: <class 'list'> Data: ['sykpe', 'work', 'skype', 'log', 'turn', 'computer', 'phone'] processed_text: ['sykpe', 'work', 'skype', 'log', 'turn', 'computer', 'phone'] list_processed_text: [['sykpe'], ['work'], ['skype'], ['log'], ['turn'], ['computer'], ['phone']] k: 2133 len: <class 'list'> Data: ['user', 'account', 'validity', 'date', 'unable', 'login', 'erp', 'sid', 'error', 'user', 'account', 'validity', 'date'] processed_text: ['user', 'account', 'validity', 'date', 'unable', 'login', 'erp', 'sid', 'error', 'user', 'account', 'validity', 'date'] list_processed_text: [['user'], ['account'], ['validity'], ['date'], ['unable'], ['login'], ['erp'], ['sid'], ['error'], ['user'], ['account'], ['validity'], ['date']] k: 2134 len: <class 'list'> Data: ['issue', 'hello', 'team', 'reason', 'go', 'folder', 'got', 'message', 'belwo', 'cannot', 'open', 'folder', 'appears', 'message', 'appreciate', 'support'] processed_text: ['issue', 'hello', 'team', 'reason', 'go', 'folder', 'got', 'message', 'belwo', 'cannot', 'open', 'folder', 'appears', 'message', 'appreciate', 'support'] list_processed_text: [['issue'], ['hello'], ['team'], ['reason'], ['go'], ['folder'], ['got'], ['message'], ['belwo'], ['cannot'], ['open'], ['folder'], ['appears'], ['message'], ['appreciate'], ['support']] k: 2135 len: <class 'list'> Data: ['collaboration', 'platform', 'table', 'crm', 'hello', 'please', 'add', 'user', 'delthybid', 'jeknosml', 'gkcoltsy', 'collaboration', 'platform', 'table', 'crm'] processed_text: ['collaboration', 'platform', 'table', 'crm', 'hello', 'please', 'add', 'user', 'delthybid', 'jeknosml', 'gkcoltsy', 'collaboration', 'platform', 'table', 'crm'] list_processed_text: [['collaboration'], ['platform'], ['table'], ['crm'], ['hello'], ['please'], ['add'], ['user'], ['delthybid'], ['jeknosml'], ['gkcoltsy'], ['collaboration'], ['platform'], ['table'], ['crm']] k: 2136 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'account', 'locked', 'ad', 'account'] processed_text: ['account', 'locked', 'ad', 'account', 'account', 'locked', 'ad', 'account'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['account'], ['locked'], ['ad'], ['account']] k: 2137 len: <class 'list'> Data: ['able', 'print', 'hr', 'tool', 'able', 'print', 'hr', 'tool'] processed_text: ['able', 'print', 'hr', 'tool', 'able', 'print', 'hr', 'tool'] list_processed_text: [['able'], ['print'], ['hr'], ['tool'], ['able'], ['print'], ['hr'], ['tool']] k: 2138 len: <class 'list'> Data: ['reset', 'password', 'gjisfonb', 'odwfhmze', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'gjisfonb', 'odwfhmze', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['gjisfonb'], ['odwfhmze'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2139 len: <class 'list'> Data: ['analysis', 'microsoft', 'excel', 'longer', 'available', 'analysis', 'microsoft', 'excel', 'longer', 'available', 'attached', 'find', 'note'] processed_text: ['analysis', 'microsoft', 'excel', 'longer', 'available', 'analysis', 'microsoft', 'excel', 'longer', 'available', 'attached', 'find', 'note'] list_processed_text: [['analysis'], ['microsoft'], ['excel'], ['longer'], ['available'], ['analysis'], ['microsoft'], ['excel'], ['longer'], ['available'], ['attached'], ['find'], ['note']] k: 2140 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'hohlbfgtu', 'describe', 'issue', 'unlock', 'password', 'logon'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'hohlbfgtu', 'describe', 'issue', 'unlock', 'password', 'logon'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['hohlbfgtu'], ['describe'], ['issue'], ['unlock'], ['password'], ['logon']] k: 2141 len: <class 'list'> Data: ['vpn', 'access', 'achthyardk', 'computer', 'name', 'awyl', 'summary', 'need', 'vpn', 'provision', 'access', 'drive', 'away', 'office'] processed_text: ['vpn', 'access', 'achthyardk', 'computer', 'name', 'awyl', 'summary', 'need', 'vpn', 'provision', 'access', 'drive', 'away', 'office'] list_processed_text: [['vpn'], ['access'], ['achthyardk'], ['computer'], ['name'], ['awyl'], ['summary'], ['need'], ['vpn'], ['provision'], ['access'], ['drive'], ['away'], ['office']] k: 2142 len: <class 'list'> Data: ['gflewxmn', 'qnxhoryg', 'term', 'date', 'network', 'folder', 'access', 'never', 'received', 'access', 'tghkris', 'wickhamtf', 'person', 'folder', 'network', 'drive', 'get', 'access', 'collaboration', 'platform', 'drive', 'network', 'folder', 'know', 'network', 'folder', 'saved', 'lot', 'information', 'really', 'need', 'access', 'folder', 'access', 'document', 'also', 'sure', 'communication', 'receiving', 'regarding', 'collaboration', 'platform', 'collaboration', 'platform', 'german', 'die', 'endg', 'ltige', 'schung', 'de', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'ist', 'tagen', 'geplant', 'sie', 'haben', 'immer', 'noch', 'zeit', 'um', 'wichtige', 'dokumente', 'einen', 'anderen', 'speicherort', 'zu', 'kopieren', 'nach', 'tagen', 'wird', 'da', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'endg', 'ltig', 'gel', 'scht', 'wechseln', 'sie', 'zum', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'unter'] processed_text: ['gflewxmn', 'qnxhoryg', 'term', 'date', 'network', 'folder', 'access', 'never', 'received', 'access', 'tghkris', 'wickhamtf', 'person', 'folder', 'network', 'drive', 'get', 'access', 'collaboration', 'platform', 'drive', 'network', 'folder', 'know', 'network', 'folder', 'saved', 'lot', 'information', 'really', 'need', 'access', 'folder', 'access', 'document', 'also', 'sure', 'communication', 'receiving', 'regarding', 'collaboration', 'platform', 'collaboration', 'platform', 'german', 'die', 'endg', 'ltige', 'schung', 'de', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'ist', 'tagen', 'geplant', 'sie', 'haben', 'immer', 'noch', 'zeit', 'um', 'wichtige', 'dokumente', 'einen', 'anderen', 'speicherort', 'zu', 'kopieren', 'nach', 'tagen', 'wird', 'da', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'endg', 'ltig', 'gel', 'scht', 'wechseln', 'sie', 'zum', 'collaboration', 'platform', 'business', 'von', 'gflewxmn', 'qnxhoryg', 'unter'] list_processed_text: [['gflewxmn'], ['qnxhoryg'], ['term'], ['date'], ['network'], ['folder'], ['access'], ['never'], ['received'], ['access'], ['tghkris'], ['wickhamtf'], ['person'], ['folder'], ['network'], ['drive'], ['get'], ['access'], ['collaboration'], ['platform'], ['drive'], ['network'], ['folder'], ['know'], ['network'], ['folder'], ['saved'], ['lot'], ['information'], ['really'], ['need'], ['access'], ['folder'], ['access'], ['document'], ['also'], ['sure'], ['communication'], ['receiving'], ['regarding'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['german'], ['die'], ['endg'], ['ltige'], ['schung'], ['de'], ['collaboration'], ['platform'], ['business'], ['von'], ['gflewxmn'], ['qnxhoryg'], ['ist'], ['tagen'], ['geplant'], ['sie'], ['haben'], ['immer'], ['noch'], ['zeit'], ['um'], ['wichtige'], ['dokumente'], ['einen'], ['anderen'], ['speicherort'], ['zu'], ['kopieren'], ['nach'], ['tagen'], ['wird'], ['da'], ['collaboration'], ['platform'], ['business'], ['von'], ['gflewxmn'], ['qnxhoryg'], ['endg'], ['ltig'], ['gel'], ['scht'], ['wechseln'], ['sie'], ['zum'], ['collaboration'], ['platform'], ['business'], ['von'], ['gflewxmn'], ['qnxhoryg'], ['unter']] k: 2143 len: <class 'list'> Data: ['probleme', 'mit', 'com', 'port', 'maschine', 'st', 'hrmann', 'eaodcgsw', 'trmzwbyc', 'probleme', 'mit', 'com', 'port', 'maschine', 'st', 'hrmann', 'eaodcgsw', 'trmzwbyc'] processed_text: ['probleme', 'mit', 'com', 'port', 'maschine', 'st', 'hrmann', 'eaodcgsw', 'trmzwbyc', 'probleme', 'mit', 'com', 'port', 'maschine', 'st', 'hrmann', 'eaodcgsw', 'trmzwbyc'] list_processed_text: [['probleme'], ['mit'], ['com'], ['port'], ['maschine'], ['st'], ['hrmann'], ['eaodcgsw'], ['trmzwbyc'], ['probleme'], ['mit'], ['com'], ['port'], ['maschine'], ['st'], ['hrmann'], ['eaodcgsw'], ['trmzwbyc']] k: 2144 len: <class 'list'> Data: ['cannot', 'access', 'workflow', 'collaboration', 'platform', 'designer', 'recently', 'received', 'new', 'machine', 'work', 'downloaded', 'collaboration', 'platform', 'designer', 'access', 'workflow', 'product', 'move', 'system', 'linking', 'site', 'tried', 'open', 'workflow', 'give', 'error', 'saying', 'cannot', 'access', 'restart', 'designer', 'try', 'tried', 'restarting', 'multiple', 'time', 'please', 'assist'] processed_text: ['cannot', 'access', 'workflow', 'collaboration', 'platform', 'designer', 'recently', 'received', 'new', 'machine', 'work', 'downloaded', 'collaboration', 'platform', 'designer', 'access', 'workflow', 'product', 'move', 'system', 'linking', 'site', 'tried', 'open', 'workflow', 'give', 'error', 'saying', 'cannot', 'access', 'restart', 'designer', 'try', 'tried', 'restarting', 'multiple', 'time', 'please', 'assist'] list_processed_text: [['cannot'], ['access'], ['workflow'], ['collaboration'], ['platform'], ['designer'], ['recently'], ['received'], ['new'], ['machine'], ['work'], ['downloaded'], ['collaboration'], ['platform'], ['designer'], ['access'], ['workflow'], ['product'], ['move'], ['system'], ['linking'], ['site'], ['tried'], ['open'], ['workflow'], ['give'], ['error'], ['saying'], ['cannot'], ['access'], ['restart'], ['designer'], ['try'], ['tried'], ['restarting'], ['multiple'], ['time'], ['please'], ['assist']] k: 2145 len: <class 'list'> Data: ['unable', 'share', 'screen', 'name', 'jadqhguy', 'fvwhyenp', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'share', 'screen', 'skype'] processed_text: ['unable', 'share', 'screen', 'name', 'jadqhguy', 'fvwhyenp', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'share', 'screen', 'skype'] list_processed_text: [['unable'], ['share'], ['screen'], ['name'], ['jadqhguy'], ['fvwhyenp'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unable'], ['share'], ['screen'], ['skype']] k: 2146 len: <class 'list'> Data: ['cannot', 'add', 'new', 'customer', 'engineering', 'tool', 'application', 'dear', 'company', 'help', 'cannot', 'adding', 'new', 'customer', 'engineering', 'tool', 'application', 'happened', 'downloading', 'new', 'update', 'application'] processed_text: ['cannot', 'add', 'new', 'customer', 'engineering', 'tool', 'application', 'dear', 'company', 'help', 'cannot', 'adding', 'new', 'customer', 'engineering', 'tool', 'application', 'happened', 'downloading', 'new', 'update', 'application'] list_processed_text: [['cannot'], ['add'], ['new'], ['customer'], ['engineering'], ['tool'], ['application'], ['dear'], ['company'], ['help'], ['cannot'], ['adding'], ['new'], ['customer'], ['engineering'], ['tool'], ['application'], ['happened'], ['downloading'], ['new'], ['update'], ['application']] k: 2147 len: <class 'list'> Data: ['transfer', 'pricing', 'sto', 'inter', 'company', 'sto', 'computing', 'transfer', 'price', 'material', 'priced', 'euro', 'per', 'pc', 'order', 'pc', 'change', 'order', 'pc'] processed_text: ['transfer', 'pricing', 'sto', 'inter', 'company', 'sto', 'computing', 'transfer', 'price', 'material', 'priced', 'euro', 'per', 'pc', 'order', 'pc', 'change', 'order', 'pc'] list_processed_text: [['transfer'], ['pricing'], ['sto'], ['inter'], ['company'], ['sto'], ['computing'], ['transfer'], ['price'], ['material'], ['priced'], ['euro'], ['per'], ['pc'], ['order'], ['pc'], ['change'], ['order'], ['pc']] k: 2148 len: <class 'list'> Data: ['unable', 'make', 'change', 'expense', 'report', 'name', 'xmeytziq', 'dcgwuvfk', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'telephone', 'summary', 'earlier', 'week', 'trying', 'put', 'expense', 'report', 'let', 'change', 'cost', 'center', 'suppose', 'ticket', 'wondering', 'going', 'received', 'notification', 'issue'] processed_text: ['unable', 'make', 'change', 'expense', 'report', 'name', 'xmeytziq', 'dcgwuvfk', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'telephone', 'summary', 'earlier', 'week', 'trying', 'put', 'expense', 'report', 'let', 'change', 'cost', 'center', 'suppose', 'ticket', 'wondering', 'going', 'received', 'notification', 'issue'] list_processed_text: [['unable'], ['make'], ['change'], ['expense'], ['report'], ['name'], ['xmeytziq'], ['dcgwuvfk'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['email'], ['telephone'], ['summary'], ['earlier'], ['week'], ['trying'], ['put'], ['expense'], ['report'], ['let'], ['change'], ['cost'], ['center'], ['suppose'], ['ticket'], ['wondering'], ['going'], ['received'], ['notification'], ['issue']] k: 2149 len: <class 'list'> Data: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'sincerely'] processed_text: ['password', 'geoyhurg', 'chriuimjiann', 'please', 'activate', 'password', 'sincerely'] list_processed_text: [['password'], ['geoyhurg'], ['chriuimjiann'], ['please'], ['activate'], ['password'], ['sincerely']] k: 2150 len: <class 'list'> Data: ['configair', 'server', 'available', 'production', 'sid', 'error', 'message', 'service', 'available', 'configair', 'server', 'available', 'production', 'sid', 'error', 'message', 'service', 'available'] processed_text: ['configair', 'server', 'available', 'production', 'sid', 'error', 'message', 'service', 'available', 'configair', 'server', 'available', 'production', 'sid', 'error', 'message', 'service', 'available'] list_processed_text: [['configair'], ['server'], ['available'], ['production'], ['sid'], ['error'], ['message'], ['service'], ['available'], ['configair'], ['server'], ['available'], ['production'], ['sid'], ['error'], ['message'], ['service'], ['available']] k: 2151 len: <class 'list'> Data: ['engineering', 'tool', 'distributor', 'tool', 'error', 'engineering', 'tool', 'distributor', 'tool', 'error', 'unable', 'see', 'customer', 'detail'] processed_text: ['engineering', 'tool', 'distributor', 'tool', 'error', 'engineering', 'tool', 'distributor', 'tool', 'error', 'unable', 'see', 'customer', 'detail'] list_processed_text: [['engineering'], ['tool'], ['distributor'], ['tool'], ['error'], ['engineering'], ['tool'], ['distributor'], ['tool'], ['error'], ['unable'], ['see'], ['customer'], ['detail']] k: 2152 len: <class 'list'> Data: ['frequent', 'account', 'lock', 'wothyehre', 'frequent', 'account', 'lock', 'wothyehre'] processed_text: ['frequent', 'account', 'lock', 'wothyehre', 'frequent', 'account', 'lock', 'wothyehre'] list_processed_text: [['frequent'], ['account'], ['lock'], ['wothyehre'], ['frequent'], ['account'], ['lock'], ['wothyehre']] k: 2153 len: <class 'list'> Data: ['telephony', 'software', 'allow', 'pick', 'call', 'make', 'call', 'telephony', 'software', 'allow', 'pick', 'call', 'make', 'call', 'phone'] processed_text: ['telephony', 'software', 'allow', 'pick', 'call', 'make', 'call', 'telephony', 'software', 'allow', 'pick', 'call', 'make', 'call', 'phone'] list_processed_text: [['telephony'], ['software'], ['allow'], ['pick'], ['call'], ['make'], ['call'], ['telephony'], ['software'], ['allow'], ['pick'], ['call'], ['make'], ['call'], ['phone']] k: 2154 len: <class 'list'> Data: ['delivery', 'note', 'created', 'total', 'pc', 'plant', 'plant', 'plant', 'customer', 'order', 'hello', 'could', 'please', 'check', 'delivery', 'note', 'created', 'total', 'pc', 'plant', 'plant', 'plant', 'customer', 'order', 'pc', 'order', 'plant', 'waiting', 'material', 'appeared', 'plant', 'stock', 'dn', 'company', 'europe', 'gmbh', 'plant', 'created', 'ask', 'plant', 'team', 'cancelation', 'creation', 'dn', 'order', 'many'] processed_text: ['delivery', 'note', 'created', 'total', 'pc', 'plant', 'plant', 'plant', 'customer', 'order', 'hello', 'could', 'please', 'check', 'delivery', 'note', 'created', 'total', 'pc', 'plant', 'plant', 'plant', 'customer', 'order', 'pc', 'order', 'plant', 'waiting', 'material', 'appeared', 'plant', 'stock', 'dn', 'company', 'europe', 'gmbh', 'plant', 'created', 'ask', 'plant', 'team', 'cancelation', 'creation', 'dn', 'order', 'many'] list_processed_text: [['delivery'], ['note'], ['created'], ['total'], ['pc'], ['plant'], ['plant'], ['plant'], ['customer'], ['order'], ['hello'], ['could'], ['please'], ['check'], ['delivery'], ['note'], ['created'], ['total'], ['pc'], ['plant'], ['plant'], ['plant'], ['customer'], ['order'], ['pc'], ['order'], ['plant'], ['waiting'], ['material'], ['appeared'], ['plant'], ['stock'], ['dn'], ['company'], ['europe'], ['gmbh'], ['plant'], ['created'], ['ask'], ['plant'], ['team'], ['cancelation'], ['creation'], ['dn'], ['order'], ['many']] k: 2155 len: <class 'list'> Data: ['upload', 'monthly', 'report', 'sid', 'hana', 'table', 'zmc', 'upload', 'monthly', 'report', 'sid', 'hana', 'table', 'zmc'] processed_text: ['upload', 'monthly', 'report', 'sid', 'hana', 'table', 'zmc', 'upload', 'monthly', 'report', 'sid', 'hana', 'table', 'zmc'] list_processed_text: [['upload'], ['monthly'], ['report'], ['sid'], ['hana'], ['table'], ['zmc'], ['upload'], ['monthly'], ['report'], ['sid'], ['hana'], ['table'], ['zmc']] k: 2156 len: <class 'list'> Data: ['query', 'ticket', 'status', 'ticket', 'antjuyhony', 'usa', 'ticket', 'antjuyhony', 'usa'] processed_text: ['query', 'ticket', 'status', 'ticket', 'antjuyhony', 'usa', 'ticket', 'antjuyhony', 'usa'] list_processed_text: [['query'], ['ticket'], ['status'], ['ticket'], ['antjuyhony'], ['usa'], ['ticket'], ['antjuyhony'], ['usa']] k: 2157 len: <class 'list'> Data: ['wifi', 'working', 'conference', 'room', 'usa', 'oh', 'wifi', 'working', 'conference', 'room', 'usa', 'oh'] processed_text: ['wifi', 'working', 'conference', 'room', 'usa', 'oh', 'wifi', 'working', 'conference', 'room', 'usa', 'oh'] list_processed_text: [['wifi'], ['working'], ['conference'], ['room'], ['usa'], ['oh'], ['wifi'], ['working'], ['conference'], ['room'], ['usa'], ['oh']] k: 2158 len: <class 'list'> Data: ['system', 'pc', 'high-pressure', 'inter-system', 'hip', 'start', 'system', 'pc', 'high-pressure', 'inter-system', 'hip', 'start'] processed_text: ['system', 'pc', 'high-pressure', 'inter-system', 'hip', 'start', 'system', 'pc', 'high-pressure', 'inter-system', 'hip', 'start'] list_processed_text: [['system'], ['pc'], ['high-pressure'], ['inter-system'], ['hip'], ['start'], ['system'], ['pc'], ['high-pressure'], ['inter-system'], ['hip'], ['start']] k: 2159 len: <class 'list'> Data: ['vip', 'upgrade', 'ie', 'vip', 'upgrade', 'ie'] processed_text: ['vip', 'upgrade', 'ie', 'vip', 'upgrade', 'ie'] list_processed_text: [['vip'], ['upgrade'], ['ie'], ['vip'], ['upgrade'], ['ie']] k: 2160 len: <class 'list'> Data: ['able', 'see', 'email', 'outlook', 'able', 'see', 'email', 'outlook'] processed_text: ['able', 'see', 'email', 'outlook', 'able', 'see', 'email', 'outlook'] list_processed_text: [['able'], ['see'], ['email'], ['outlook'], ['able'], ['see'], ['email'], ['outlook']] k: 2161 len: <class 'list'> Data: ['kpm', 'hour', 'punched', 'hr', 'e', 'engineering', 'tool', 'showing', 'hr', 'kpm'] processed_text: ['kpm', 'hour', 'punched', 'hr', 'e', 'engineering', 'tool', 'showing', 'hr', 'kpm'] list_processed_text: [['kpm'], ['hour'], ['punched'], ['hr'], ['e'], ['engineering'], ['tool'], ['showing'], ['hr'], ['kpm']] k: 2162 len: <class 'list'> Data: ['able', 'access', 'bobj', 'via', 'ie', 'tab', 'missing', 'open', 'chrome', 'user', 'able', 'access', 'report', 'via', 'ie', 'hence', 'installed', 'chrome', 'access', 'report', 'via', 'myportal', 'company', 'com', 'user', 'able', 'open', 'report', 'via', 'chrome', 'well', 'tab', 'dierppeared', 'user', 'able', 'connect', 'vpn', 'via', 'chrome', 'related', 'business', 'analytics', 'tech', 'team', 'erp', 'bi', 'bw', 'something', 'related', 'browser', 'setting'] processed_text: ['able', 'access', 'bobj', 'via', 'ie', 'tab', 'missing', 'open', 'chrome', 'user', 'able', 'access', 'report', 'via', 'ie', 'hence', 'installed', 'chrome', 'access', 'report', 'via', 'myportal', 'company', 'com', 'user', 'able', 'open', 'report', 'via', 'chrome', 'well', 'tab', 'dierppeared', 'user', 'able', 'connect', 'vpn', 'via', 'chrome', 'related', 'business', 'analytics', 'tech', 'team', 'erp', 'bi', 'bw', 'something', 'related', 'browser', 'setting'] list_processed_text: [['able'], ['access'], ['bobj'], ['via'], ['ie'], ['tab'], ['missing'], ['open'], ['chrome'], ['user'], ['able'], ['access'], ['report'], ['via'], ['ie'], ['hence'], ['installed'], ['chrome'], ['access'], ['report'], ['via'], ['myportal'], ['company'], ['com'], ['user'], ['able'], ['open'], ['report'], ['via'], ['chrome'], ['well'], ['tab'], ['dierppeared'], ['user'], ['able'], ['connect'], ['vpn'], ['via'], ['chrome'], ['related'], ['business'], ['analytics'], ['tech'], ['team'], ['erp'], ['bi'], ['bw'], ['something'], ['related'], ['browser'], ['setting']] k: 2163 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2164 len: <class 'list'> Data: ['latitude', 'battery', 'issue', 'latitude', 'battery', 'issue', 'battery', 'light', 'constantly', 'blinking', 'red', 'charging', 'user', 'constantly', 'connected', 'ac', 'adapter', 'might', 'require', 'battery', 'replacement', 'phone'] processed_text: ['latitude', 'battery', 'issue', 'latitude', 'battery', 'issue', 'battery', 'light', 'constantly', 'blinking', 'red', 'charging', 'user', 'constantly', 'connected', 'ac', 'adapter', 'might', 'require', 'battery', 'replacement', 'phone'] list_processed_text: [['latitude'], ['battery'], ['issue'], ['latitude'], ['battery'], ['issue'], ['battery'], ['light'], ['constantly'], ['blinking'], ['red'], ['charging'], ['user'], ['constantly'], ['connected'], ['ac'], ['adapter'], ['might'], ['require'], ['battery'], ['replacement'], ['phone']] k: 2165 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'rrc', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'rrc', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['rrc'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2166 len: <class 'list'> Data: ['bobj', 'acces', 'name', 'maaryuyten', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'bobj', 'acces', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'maaryuyten', 'hi', 'log', 'bobj', 'error', 'message', 'get', 'dwfiykeo', 'argtxmvcumar', 'hello', 'maaryuyten', 'io', 'error', 'error', 'dwfiykeo', 'argtxmvcumar', 'get', 'better', 'understanding', 'issue', 'would', 'like', 'take', 'look', 'computer', 'teamviewer', 'please', 'click', 'maaryuyten', 'id', 'pw', 'maaryuyten', 'sre', 'still', 'dwfiykeo', 'argtxmvcumar', 'yes', 'maaryuyten', 'see', 'issie', 'dwfiykeo', 'argtxmvcumar', 'let', 'take', 'screen', 'shot', 'dwfiykeo', 'argtxmvcumar', 'assign', 'erp', 'bw', 'bi', 'look'] processed_text: ['bobj', 'acces', 'name', 'maaryuyten', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'bobj', 'acces', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'maaryuyten', 'hi', 'log', 'bobj', 'error', 'message', 'get', 'dwfiykeo', 'argtxmvcumar', 'hello', 'maaryuyten', 'io', 'error', 'error', 'dwfiykeo', 'argtxmvcumar', 'get', 'better', 'understanding', 'issue', 'would', 'like', 'take', 'look', 'computer', 'teamviewer', 'please', 'click', 'maaryuyten', 'id', 'pw', 'maaryuyten', 'sre', 'still', 'dwfiykeo', 'argtxmvcumar', 'yes', 'maaryuyten', 'see', 'issie', 'dwfiykeo', 'argtxmvcumar', 'let', 'take', 'screen', 'shot', 'dwfiykeo', 'argtxmvcumar', 'assign', 'erp', 'bw', 'bi', 'look'] list_processed_text: [['bobj'], ['acces'], ['name'], ['maaryuyten'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['bobj'], ['acces'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['maaryuyten'], ['hi'], ['log'], ['bobj'], ['error'], ['message'], ['get'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['maaryuyten'], ['io'], ['error'], ['error'], ['dwfiykeo'], ['argtxmvcumar'], ['get'], ['better'], ['understanding'], ['issue'], ['would'], ['like'], ['take'], ['look'], ['computer'], ['teamviewer'], ['please'], ['click'], ['maaryuyten'], ['id'], ['pw'], ['maaryuyten'], ['sre'], ['still'], ['dwfiykeo'], ['argtxmvcumar'], ['yes'], ['maaryuyten'], ['see'], ['issie'], ['dwfiykeo'], ['argtxmvcumar'], ['let'], ['take'], ['screen'], ['shot'], ['dwfiykeo'], ['argtxmvcumar'], ['assign'], ['erp'], ['bw'], ['bi'], ['look']] k: 2167 len: <class 'list'> Data: ['problem', 'proof', 'salary', 'print', 'eaodcgsw', 'trmzwbyc', 'problem', 'proof', 'salary', 'print', 'eaodcgsw', 'trmzwbyc'] processed_text: ['problem', 'proof', 'salary', 'print', 'eaodcgsw', 'trmzwbyc', 'problem', 'proof', 'salary', 'print', 'eaodcgsw', 'trmzwbyc'] list_processed_text: [['problem'], ['proof'], ['salary'], ['print'], ['eaodcgsw'], ['trmzwbyc'], ['problem'], ['proof'], ['salary'], ['print'], ['eaodcgsw'], ['trmzwbyc']] k: 2168 len: <class 'list'> Data: ['uacyltoe', 'hxgayczeing', 'email', 'notification', 'uacyltoe', 'hxgayczeing', 'email', 'notification'] processed_text: ['uacyltoe', 'hxgayczeing', 'email', 'notification', 'uacyltoe', 'hxgayczeing', 'email', 'notification'] list_processed_text: [['uacyltoe'], ['hxgayczeing'], ['email'], ['notification'], ['uacyltoe'], ['hxgayczeing'], ['email'], ['notification']] k: 2169 len: <class 'list'> Data: ['probleme', 'mit', 'wlan', 'laptop', 'weszfyok', 'fbadnjhu', 'probleme', 'mit', 'wlan', 'laptop', 'weszfyok', 'fbadnjhu'] processed_text: ['probleme', 'mit', 'wlan', 'laptop', 'weszfyok', 'fbadnjhu', 'probleme', 'mit', 'wlan', 'laptop', 'weszfyok', 'fbadnjhu'] list_processed_text: [['probleme'], ['mit'], ['wlan'], ['laptop'], ['weszfyok'], ['fbadnjhu'], ['probleme'], ['mit'], ['wlan'], ['laptop'], ['weszfyok'], ['fbadnjhu']] k: 2170 len: <class 'list'> Data: ['account', 'unlock', 'wu', 'account', 'unlock', 'wu'] processed_text: ['account', 'unlock', 'wu', 'account', 'unlock', 'wu'] list_processed_text: [['account'], ['unlock'], ['wu'], ['account'], ['unlock'], ['wu']] k: 2171 len: <class 'list'> Data: ['crm', 'screen', 'advanced', 'find', 'create', 'view', 'dear', 'select', 'crm', 'advanced', 'find', 'next', 'screen', 'scrolled', 'symbol', 'moved', 'query', 'nearly', 'impossible', 'create', 'view'] processed_text: ['crm', 'screen', 'advanced', 'find', 'create', 'view', 'dear', 'select', 'crm', 'advanced', 'find', 'next', 'screen', 'scrolled', 'symbol', 'moved', 'query', 'nearly', 'impossible', 'create', 'view'] list_processed_text: [['crm'], ['screen'], ['advanced'], ['find'], ['create'], ['view'], ['dear'], ['select'], ['crm'], ['advanced'], ['find'], ['next'], ['screen'], ['scrolled'], ['symbol'], ['moved'], ['query'], ['nearly'], ['impossible'], ['create'], ['view']] k: 2172 len: <class 'list'> Data: ['infopath', 'working', 'infopath', 'working'] processed_text: ['infopath', 'working', 'infopath', 'working'] list_processed_text: [['infopath'], ['working'], ['infopath'], ['working']] k: 2173 len: <class 'list'> Data: ['probleme', 'mit', 'wu', 'jionmpsf', 'wnkpzcmv', 'probleme', 'mit', 'wu', 'jionmpsf', 'wnkpzcmv'] processed_text: ['probleme', 'mit', 'wu', 'jionmpsf', 'wnkpzcmv', 'probleme', 'mit', 'wu', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['probleme'], ['mit'], ['wu'], ['jionmpsf'], ['wnkpzcmv'], ['probleme'], ['mit'], ['wu'], ['jionmpsf'], ['wnkpzcmv']] k: 2174 len: <class 'list'> Data: ['rfa', 'analyzer', 'monitor', 'defective', 'hello', 'drop', 'laboratory', 'monitor', 'rfa', 'analyzer', 'defective', 'rclqfpgt', 'tbnovp', 'contact', 'person'] processed_text: ['rfa', 'analyzer', 'monitor', 'defective', 'hello', 'drop', 'laboratory', 'monitor', 'rfa', 'analyzer', 'defective', 'rclqfpgt', 'tbnovp', 'contact', 'person'] list_processed_text: [['rfa'], ['analyzer'], ['monitor'], ['defective'], ['hello'], ['drop'], ['laboratory'], ['monitor'], ['rfa'], ['analyzer'], ['defective'], ['rclqfpgt'], ['tbnovp'], ['contact'], ['person']] k: 2175 len: <class 'list'> Data: ['problem', 'changing', 'password', 'hello', 'trying', 'change', 'password'] processed_text: ['problem', 'changing', 'password', 'hello', 'trying', 'change', 'password'] list_processed_text: [['problem'], ['changing'], ['password'], ['hello'], ['trying'], ['change'], ['password']] k: 2176 len: <class 'list'> Data: ['file', 'shatryung', 'help', 'required', 'hi', 'need', 'send', 'video', 'machine', 'customer', 'urgent', 'basis', 'file', 'size', 'mb', 'kindly', 'let', 'know', 'send'] processed_text: ['file', 'shatryung', 'help', 'required', 'hi', 'need', 'send', 'video', 'machine', 'customer', 'urgent', 'basis', 'file', 'size', 'mb', 'kindly', 'let', 'know', 'send'] list_processed_text: [['file'], ['shatryung'], ['help'], ['required'], ['hi'], ['need'], ['send'], ['video'], ['machine'], ['customer'], ['urgent'], ['basis'], ['file'], ['size'], ['mb'], ['kindly'], ['let'], ['know'], ['send']] k: 2177 len: <class 'list'> Data: ['issue', 'adding', 'lean', 'tracker', 'collaboration', 'platform', 'issue', 'help', 'desk', 'today', 'tried', 'open', 'add', 'lean', 'event', 'tracker', 'link', 'enter', 'new', 'project', 'detail', 'got', 'error', 'message', 'screen', 'shot', 'attached', 'reference', 'please', 'go', 'needful', 'enter', 'detail', 'lean', 'tracker', 'clarification', 'please', 'revert', 'back'] processed_text: ['issue', 'adding', 'lean', 'tracker', 'collaboration', 'platform', 'issue', 'help', 'desk', 'today', 'tried', 'open', 'add', 'lean', 'event', 'tracker', 'link', 'enter', 'new', 'project', 'detail', 'got', 'error', 'message', 'screen', 'shot', 'attached', 'reference', 'please', 'go', 'needful', 'enter', 'detail', 'lean', 'tracker', 'clarification', 'please', 'revert', 'back'] list_processed_text: [['issue'], ['adding'], ['lean'], ['tracker'], ['collaboration'], ['platform'], ['issue'], ['help'], ['desk'], ['today'], ['tried'], ['open'], ['add'], ['lean'], ['event'], ['tracker'], ['link'], ['enter'], ['new'], ['project'], ['detail'], ['got'], ['error'], ['message'], ['screen'], ['shot'], ['attached'], ['reference'], ['please'], ['go'], ['needful'], ['enter'], ['detail'], ['lean'], ['tracker'], ['clarification'], ['please'], ['revert'], ['back']] k: 2178 len: <class 'list'> Data: ['add', 'name', 'distribution', 'list', 'dear', 'sir', 'madam', 'pl', 'add', 'name', 'distribution', 'list', 'warm'] processed_text: ['add', 'name', 'distribution', 'list', 'dear', 'sir', 'madam', 'pl', 'add', 'name', 'distribution', 'list', 'warm'] list_processed_text: [['add'], ['name'], ['distribution'], ['list'], ['dear'], ['sir'], ['madam'], ['pl'], ['add'], ['name'], ['distribution'], ['list'], ['warm']] k: 2179 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] processed_text: ['uacyltoe', 'hxgaycze', 'uacyltoe', 'hxgaycze'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['uacyltoe'], ['hxgaycze']] k: 2180 len: <class 'list'> Data: ['pls', 'unlock', 'window', 'account', 'user', 'vvgoythttu', 'pls', 'unlock', 'window', 'account', 'user', 'vvgoythttu'] processed_text: ['pls', 'unlock', 'window', 'account', 'user', 'vvgoythttu', 'pls', 'unlock', 'window', 'account', 'user', 'vvgoythttu'] list_processed_text: [['pls'], ['unlock'], ['window'], ['account'], ['user'], ['vvgoythttu'], ['pls'], ['unlock'], ['window'], ['account'], ['user'], ['vvgoythttu']] k: 2181 len: <class 'list'> Data: ['skype', 'business', 'work', 'hello', 'need', 'help', 'skype', 'business', 'work', 'laptop', 'print', 'screen', 'attached', 'teamviewer', 'id', 'sartlgeo', 'lhqksbdx', 'password'] processed_text: ['skype', 'business', 'work', 'hello', 'need', 'help', 'skype', 'business', 'work', 'laptop', 'print', 'screen', 'attached', 'teamviewer', 'id', 'sartlgeo', 'lhqksbdx', 'password'] list_processed_text: [['skype'], ['business'], ['work'], ['hello'], ['need'], ['help'], ['skype'], ['business'], ['work'], ['laptop'], ['print'], ['screen'], ['attached'], ['teamviewer'], ['id'], ['sartlgeo'], ['lhqksbdx'], ['password']] k: 2182 len: <class 'list'> Data: ['password', 'vpn', 'distributor', 'tool', 'sync', 'hi', 'seem', 'problem', 'logging', 'vpn', 'distributor', 'tool', 'etc', 'cannot', 'access', 'change', 'password', 'need', 'vpn', 'advice', 'would', 'greatly', 'appreciated'] processed_text: ['password', 'vpn', 'distributor', 'tool', 'sync', 'hi', 'seem', 'problem', 'logging', 'vpn', 'distributor', 'tool', 'etc', 'cannot', 'access', 'change', 'password', 'need', 'vpn', 'advice', 'would', 'greatly', 'appreciated'] list_processed_text: [['password'], ['vpn'], ['distributor'], ['tool'], ['sync'], ['hi'], ['seem'], ['problem'], ['logging'], ['vpn'], ['distributor'], ['tool'], ['etc'], ['cannot'], ['access'], ['change'], ['password'], ['need'], ['vpn'], ['advice'], ['would'], ['greatly'], ['appreciated']] k: 2183 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2184 len: <class 'list'> Data: ['telephony', 'software', 'log', 'issue', 'window', 'update', 'issue', 'user', 'voethrylke', 'unable', 'log', 'telephony', 'software', 'following', 'reason', 'authentication', 'failed', 'remote', 'party', 'closed', 'transport', 'stream', 'see', 'attachment', 'well'] processed_text: ['telephony', 'software', 'log', 'issue', 'window', 'update', 'issue', 'user', 'voethrylke', 'unable', 'log', 'telephony', 'software', 'following', 'reason', 'authentication', 'failed', 'remote', 'party', 'closed', 'transport', 'stream', 'see', 'attachment', 'well'] list_processed_text: [['telephony'], ['software'], ['log'], ['issue'], ['window'], ['update'], ['issue'], ['user'], ['voethrylke'], ['unable'], ['log'], ['telephony'], ['software'], ['following'], ['reason'], ['authentication'], ['failed'], ['remote'], ['party'], ['closed'], ['transport'], ['stream'], ['see'], ['attachment'], ['well']] k: 2185 len: <class 'list'> Data: ['user', 'gokcerthy', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'hello', 'team', 'cannot', 'login', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'could', 'please', 'check', 'best'] processed_text: ['user', 'gokcerthy', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'hello', 'team', 'cannot', 'login', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'could', 'please', 'check', 'best'] list_processed_text: [['user'], ['gokcerthy'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['system'], ['hello'], ['team'], ['cannot'], ['login'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['system'], ['could'], ['please'], ['check'], ['best']] k: 2186 len: <class 'list'> Data: ['need', 'new', 'mouse', 'pc', 'eemw', 'computer', 'mouse', 'pc', 'eemw', 'malefunktion'] processed_text: ['need', 'new', 'mouse', 'pc', 'eemw', 'computer', 'mouse', 'pc', 'eemw', 'malefunktion'] list_processed_text: [['need'], ['new'], ['mouse'], ['pc'], ['eemw'], ['computer'], ['mouse'], ['pc'], ['eemw'], ['malefunktion']] k: 2187 len: <class 'list'> Data: ['hostname', 'australia', 'patching', 'antivirus', 'sw', 'site', 'server', 'offline', 'offline', 'since'] processed_text: ['hostname', 'australia', 'patching', 'antivirus', 'sw', 'site', 'server', 'offline', 'offline', 'since'] list_processed_text: [['hostname'], ['australia'], ['patching'], ['antivirus'], ['sw'], ['site'], ['server'], ['offline'], ['offline'], ['since']] k: 2188 len: <class 'list'> Data: ['aiiw', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'site', 'server', 'offline', 'offline', 'since'] processed_text: ['aiiw', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'site', 'server', 'offline', 'offline', 'since'] list_processed_text: [['aiiw'], ['india'], ['patching'], ['antivirus'], ['sw'], ['desktop'], ['site'], ['server'], ['offline'], ['offline'], ['since']] k: 2189 len: <class 'list'> Data: ['unable', 'log', 'skype', 'certificate', 'error', 'unable', 'log', 'skype', 'certificate', 'error'] processed_text: ['unable', 'log', 'skype', 'certificate', 'error', 'unable', 'log', 'skype', 'certificate', 'error'] list_processed_text: [['unable'], ['log'], ['skype'], ['certificate'], ['error'], ['unable'], ['log'], ['skype'], ['certificate'], ['error']] k: 2190 len: <class 'list'> Data: ['reset', 'sid', 'password', 'request', 'reset', 'sid', 'password', 'send', 'across'] processed_text: ['reset', 'sid', 'password', 'request', 'reset', 'sid', 'password', 'send', 'across'] list_processed_text: [['reset'], ['sid'], ['password'], ['request'], ['reset'], ['sid'], ['password'], ['send'], ['across']] k: 2191 len: <class 'list'> Data: ['missing', 'confirmation', 'erp', 'since', 'clock', 'seems', 'transfer', 'eu', 'tool', 'erp', 'stopped', 'delay', 'since', 'clock', 'german', 'time', 'please', 'attachment'] processed_text: ['missing', 'confirmation', 'erp', 'since', 'clock', 'seems', 'transfer', 'eu', 'tool', 'erp', 'stopped', 'delay', 'since', 'clock', 'german', 'time', 'please', 'attachment'] list_processed_text: [['missing'], ['confirmation'], ['erp'], ['since'], ['clock'], ['seems'], ['transfer'], ['eu'], ['tool'], ['erp'], ['stopped'], ['delay'], ['since'], ['clock'], ['german'], ['time'], ['please'], ['attachment']] k: 2192 len: <class 'list'> Data: ['new', 'document', 'type', 'showing', 'list', 'creating', 'new', 'document', 'engineering', 'tool', 'seeing', 'three', 'doctypes', 'previously', 'showing', 'someone', 'added', 'recently', 'showing', 'sid', 'sid', 'sid'] processed_text: ['new', 'document', 'type', 'showing', 'list', 'creating', 'new', 'document', 'engineering', 'tool', 'seeing', 'three', 'doctypes', 'previously', 'showing', 'someone', 'added', 'recently', 'showing', 'sid', 'sid', 'sid'] list_processed_text: [['new'], ['document'], ['type'], ['showing'], ['list'], ['creating'], ['new'], ['document'], ['engineering'], ['tool'], ['seeing'], ['three'], ['doctypes'], ['previously'], ['showing'], ['someone'], ['added'], ['recently'], ['showing'], ['sid'], ['sid'], ['sid']] k: 2193 len: <class 'list'> Data: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'router', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'router', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['poncacity'], ['schlumhdyhter'], ['dmvpn'], ['router'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2194 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'germany', 'user', 'id', 'ad', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'erp', 'sid', 'slow', 'take', 'second', 'build', 'page', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'germany', 'user', 'id', 'ad', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'erp', 'sid', 'slow', 'take', 'second', 'build', 'page', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['please'], ['provide'], ['detail'], ['template'], ['multiple'], ['application'], ['impacted'], ['please'], ['use'], ['quick'], ['ticket'], ['template'], ['operation'], ['folder'], ['site'], ['location'], ['germany'], ['user'], ['id'], ['ad'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['erp'], ['sid'], ['slow'], ['take'], ['second'], ['build'], ['page'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['issue'], ['replicated'], ['support'], ['group'], ['user'], ['seeing'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred']] k: 2195 len: <class 'list'> Data: ['power', 'outage', 'germany', 'fine', 'machining', 'company', 'secondary', 'vpn', 'circuit', 'server', 'showing', 'since', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'germany', 'fine', 'machining', 'company', 'secondary', 'vpn', 'circuit', 'server', 'showing', 'since', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['germany'], ['fine'], ['machining'], ['company'], ['secondary'], ['vpn'], ['circuit'], ['server'], ['showing'], ['since'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2196 len: <class 'list'> Data: ['erp', 'working', 'multiple', 'user', 'erp', 'working', 'multiple', 'user', 'server', 'hostname', 'pinging'] processed_text: ['erp', 'working', 'multiple', 'user', 'erp', 'working', 'multiple', 'user', 'server', 'hostname', 'pinging'] list_processed_text: [['erp'], ['working'], ['multiple'], ['user'], ['erp'], ['working'], ['multiple'], ['user'], ['server'], ['hostname'], ['pinging']] k: 2197 len: <class 'list'> Data: ['urgent', 'eu', 'tool', 'germany', 'currently', 'possible', 'close', 'order', 'reference', 'ticket', 'data', 'entry', 'affected', 'received', 'several', 'report', 'currently', 'possible', 'close', 'complete', 'order', 'order', 'currently', 'missing'] processed_text: ['urgent', 'eu', 'tool', 'germany', 'currently', 'possible', 'close', 'order', 'reference', 'ticket', 'data', 'entry', 'affected', 'received', 'several', 'report', 'currently', 'possible', 'close', 'complete', 'order', 'order', 'currently', 'missing'] list_processed_text: [['urgent'], ['eu'], ['tool'], ['germany'], ['currently'], ['possible'], ['close'], ['order'], ['reference'], ['ticket'], ['data'], ['entry'], ['affected'], ['received'], ['several'], ['report'], ['currently'], ['possible'], ['close'], ['complete'], ['order'], ['order'], ['currently'], ['missing']] k: 2198 len: <class 'list'> Data: ['data', 'comparison', 'eu', 'tool', 'erp', 'germany', 'data', 'comparison', 'eu', 'tool', 'erp', 'germany'] processed_text: ['data', 'comparison', 'eu', 'tool', 'erp', 'germany', 'data', 'comparison', 'eu', 'tool', 'erp', 'germany'] list_processed_text: [['data'], ['comparison'], ['eu'], ['tool'], ['erp'], ['germany'], ['data'], ['comparison'], ['eu'], ['tool'], ['erp'], ['germany']] k: 2199 len: <class 'list'> Data: ['network', 'access', 'access', 'internal', 'hard', 'drive', 'pc.', 'printing', 'work', 'access', 'printer', 'server'] processed_text: ['network', 'access', 'access', 'internal', 'hard', 'drive', 'pc.', 'printing', 'work', 'access', 'printer', 'server'] list_processed_text: [['network'], ['access'], ['access'], ['internal'], ['hard'], ['drive'], ['pc.'], ['printing'], ['work'], ['access'], ['printer'], ['server']] k: 2200 len: <class 'list'> Data: ['password', 'reset', 'please', 'reset', 'password', 'user', 'quality', 'uacyltoe', 'hxgaycze', 'erp', 'user', 'rayhtuorv'] processed_text: ['password', 'reset', 'please', 'reset', 'password', 'user', 'quality', 'uacyltoe', 'hxgaycze', 'erp', 'user', 'rayhtuorv'] list_processed_text: [['password'], ['reset'], ['please'], ['reset'], ['password'], ['user'], ['quality'], ['uacyltoe'], ['hxgaycze'], ['erp'], ['user'], ['rayhtuorv']] k: 2201 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2202 len: <class 'list'> Data: ['ie', 'flash', 'player', 'issue', 'hi', 'unable', 'take', 'ethic', 'training', 'course', 'ie', 'showing', 'shown', 'error', 'please', 'needful', 'error', 'show', 'even', 'updating', 'flash', 'player'] processed_text: ['ie', 'flash', 'player', 'issue', 'hi', 'unable', 'take', 'ethic', 'training', 'course', 'ie', 'showing', 'shown', 'error', 'please', 'needful', 'error', 'show', 'even', 'updating', 'flash', 'player'] list_processed_text: [['ie'], ['flash'], ['player'], ['issue'], ['hi'], ['unable'], ['take'], ['ethic'], ['training'], ['course'], ['ie'], ['showing'], ['shown'], ['error'], ['please'], ['needful'], ['error'], ['show'], ['even'], ['updating'], ['flash'], ['player']] k: 2203 len: <class 'list'> Data: ['problem', 'lean', 'tracker', 'hello', 'problem', 'creating', 'new', 'lean', 'tracker', 'click', 'save', 'upgrade', 'option', 'please', 'resolve'] processed_text: ['problem', 'lean', 'tracker', 'hello', 'problem', 'creating', 'new', 'lean', 'tracker', 'click', 'save', 'upgrade', 'option', 'please', 'resolve'] list_processed_text: [['problem'], ['lean'], ['tracker'], ['hello'], ['problem'], ['creating'], ['new'], ['lean'], ['tracker'], ['click'], ['save'], ['upgrade'], ['option'], ['please'], ['resolve']] k: 2204 len: <class 'list'> Data: ['access', 'shared', 'mail', 'box', 'investor', 'relation', 'hello', 'please', 'usa', 'access', 'add', 'mr', 'shryresh', 'rdyrty', 'shared', 'mail', 'box', 'investor', 'relation', 'kindly', 'needful'] processed_text: ['access', 'shared', 'mail', 'box', 'investor', 'relation', 'hello', 'please', 'usa', 'access', 'add', 'mr', 'shryresh', 'rdyrty', 'shared', 'mail', 'box', 'investor', 'relation', 'kindly', 'needful'] list_processed_text: [['access'], ['shared'], ['mail'], ['box'], ['investor'], ['relation'], ['hello'], ['please'], ['usa'], ['access'], ['add'], ['mr'], ['shryresh'], ['rdyrty'], ['shared'], ['mail'], ['box'], ['investor'], ['relation'], ['kindly'], ['needful']] k: 2205 len: <class 'list'> Data: ['oracle', 'listener', 'monitor', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate', 'oracle', 'listener', 'monitor', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate'] processed_text: ['oracle', 'listener', 'monitor', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate', 'oracle', 'listener', 'monitor', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate'] list_processed_text: [['oracle'], ['listener'], ['monitor'], ['reporting'], ['warning'], ['status'], ['hostname'], ['please'], ['investigate'], ['oracle'], ['listener'], ['monitor'], ['reporting'], ['warning'], ['status'], ['hostname'], ['please'], ['investigate']] k: 2206 len: <class 'list'> Data: ['outlook', 'user', 'got', 'crm', 'outlook', 'configured', 'yesterday', 'outlook', 'version', 'earlier', 'old', 'new', 'version', 'installed', 'along', 'crm', 'mail', 'get', 'downloaded', 'every', 'time', 'specially', 'one', 'folder'] processed_text: ['outlook', 'user', 'got', 'crm', 'outlook', 'configured', 'yesterday', 'outlook', 'version', 'earlier', 'old', 'new', 'version', 'installed', 'along', 'crm', 'mail', 'get', 'downloaded', 'every', 'time', 'specially', 'one', 'folder'] list_processed_text: [['outlook'], ['user'], ['got'], ['crm'], ['outlook'], ['configured'], ['yesterday'], ['outlook'], ['version'], ['earlier'], ['old'], ['new'], ['version'], ['installed'], ['along'], ['crm'], ['mail'], ['get'], ['downloaded'], ['every'], ['time'], ['specially'], ['one'], ['folder']] k: 2207 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2208 len: <class 'list'> Data: ['net', 'framdntyework', 'installed', 'wgpimkle', 'kijhcwur', 'mail', 'nwfodmhc', 'exurcwkm', 'erp', 'error', 'microsoft', 'net', 'framdntyework', 'installed', 'help', 'desk', 'tried', 'approve', 'credit', 'memo', 'per', 'attached', 'workflow', 'mail', 'message', 'shown', 'could', 'open', 'programdnty', 'please', 'fix', 'issue', 'aerp', 'need', 'issue', 'credit', 'memo', 'soon', 'best'] processed_text: ['net', 'framdntyework', 'installed', 'wgpimkle', 'kijhcwur', 'mail', 'nwfodmhc', 'exurcwkm', 'erp', 'error', 'microsoft', 'net', 'framdntyework', 'installed', 'help', 'desk', 'tried', 'approve', 'credit', 'memo', 'per', 'attached', 'workflow', 'mail', 'message', 'shown', 'could', 'open', 'programdnty', 'please', 'fix', 'issue', 'aerp', 'need', 'issue', 'credit', 'memo', 'soon', 'best'] list_processed_text: [['net'], ['framdntyework'], ['installed'], ['wgpimkle'], ['kijhcwur'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['erp'], ['error'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['help'], ['desk'], ['tried'], ['approve'], ['credit'], ['memo'], ['per'], ['attached'], ['workflow'], ['mail'], ['message'], ['shown'], ['could'], ['open'], ['programdnty'], ['please'], ['fix'], ['issue'], ['aerp'], ['need'], ['issue'], ['credit'], ['memo'], ['soon'], ['best']] k: 2209 len: <class 'list'> Data: ['erp', 'incident', 'status', 'change', 'sid'] processed_text: ['erp', 'incident', 'status', 'change', 'sid'] list_processed_text: [['erp'], ['incident'], ['status'], ['change'], ['sid']] k: 2210 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2211 len: <class 'list'> Data: ['get', 'audio', 'skype', 'need', 'urgently', 'meeting', 'today', 'name', 'jashtyckie', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'urgent', 'get', 'audio', 'skype', 'need', 'urgently', 'meeting', 'today'] processed_text: ['get', 'audio', 'skype', 'need', 'urgently', 'meeting', 'today', 'name', 'jashtyckie', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'urgent', 'get', 'audio', 'skype', 'need', 'urgently', 'meeting', 'today'] list_processed_text: [['get'], ['audio'], ['skype'], ['need'], ['urgently'], ['meeting'], ['today'], ['name'], ['jashtyckie'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['urgent'], ['get'], ['audio'], ['skype'], ['need'], ['urgently'], ['meeting'], ['today']] k: 2212 len: <class 'list'> Data: ['hostname', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'volume', 'dev', 'sid', 'data', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['dev'], ['sid'], ['data'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['dev'], ['sid'], ['data'], ['space'], ['consumed'], ['space'], ['available'], ['volume'], ['dev'], ['sid'], ['data'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 2213 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2214 len: <class 'list'> Data: ['unable', 'open', 'attachment', 'outlook', 'unable', 'open', 'attachment', 'outlook'] processed_text: ['unable', 'open', 'attachment', 'outlook', 'unable', 'open', 'attachment', 'outlook'] list_processed_text: [['unable'], ['open'], ['attachment'], ['outlook'], ['unable'], ['open'], ['attachment'], ['outlook']] k: 2215 len: <class 'list'> Data: ['access', 'server', 'file', 'ldg', 'sm', 'new', 'plant', 'manager', 'usa', 'facility', 'need', 'access', 'server', 'drive', 'ldg', 'sm', 'drive', 'drive', 'access', 'similar', 'previous', 'plant', 'manager', 'misuhet', 'milsytr'] processed_text: ['access', 'server', 'file', 'ldg', 'sm', 'new', 'plant', 'manager', 'usa', 'facility', 'need', 'access', 'server', 'drive', 'ldg', 'sm', 'drive', 'drive', 'access', 'similar', 'previous', 'plant', 'manager', 'misuhet', 'milsytr'] list_processed_text: [['access'], ['server'], ['file'], ['ldg'], ['sm'], ['new'], ['plant'], ['manager'], ['usa'], ['facility'], ['need'], ['access'], ['server'], ['drive'], ['ldg'], ['sm'], ['drive'], ['drive'], ['access'], ['similar'], ['previous'], ['plant'], ['manager'], ['misuhet'], ['milsytr']] k: 2216 len: <class 'list'> Data: ['unable', 'update', 'password', 'unable', 'update', 'password'] processed_text: ['unable', 'update', 'password', 'unable', 'update', 'password'] list_processed_text: [['unable'], ['update'], ['password'], ['unable'], ['update'], ['password']] k: 2217 len: <class 'list'> Data: ['node', 'lhqsm', 'located', 'usa', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et'] processed_text: ['node', 'lhqsm', 'located', 'usa', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et'] list_processed_text: [['node'], ['lhqsm'], ['located'], ['usa'], ['node'], ['lhqsm'], ['located'], ['usa'], ['since'], ['pm'], ['et']] k: 2218 len: <class 'list'> Data: ['vip', 'able', 'login', 'window', 'able', 'login', 'window'] processed_text: ['vip', 'able', 'login', 'window', 'able', 'login', 'window'] list_processed_text: [['vip'], ['able'], ['login'], ['window'], ['able'], ['login'], ['window']] k: 2219 len: <class 'list'> Data: ['outlook', 'frozen', 'unable', 'open', 'came', 'folder', 'updated', 'since', 'exited', 'tried', 'get', 'back', 'open'] processed_text: ['outlook', 'frozen', 'unable', 'open', 'came', 'folder', 'updated', 'since', 'exited', 'tried', 'get', 'back', 'open'] list_processed_text: [['outlook'], ['frozen'], ['unable'], ['open'], ['came'], ['folder'], ['updated'], ['since'], ['exited'], ['tried'], ['get'], ['back'], ['open']] k: 2220 len: <class 'list'> Data: ['system', 'slowing', 'processing', 'shipment', 'plant', 'every', 'evening', 'pm', 'pm', 'system', 'slowing', 'processing', 'shipment', 'plant', 'every', 'evening', 'pm', 'pm', 'sometimes', 'chk', 'process', 'sometimes', 'ki', 'shipping', 'tool', 'shippping', 'system', 'process', 'going', 'last', 'couple', 'month', 'fyzceglp', 'vfnraqxc', 'shipping', 'supervisor', 'shift', 'contacted', 'additional', 'information', 'needed', 'ticket', 'entered', 'last', 'night', 'closed', 'morning', 'system', 'slow', 'morning', 'happens', 'night'] processed_text: ['system', 'slowing', 'processing', 'shipment', 'plant', 'every', 'evening', 'pm', 'pm', 'system', 'slowing', 'processing', 'shipment', 'plant', 'every', 'evening', 'pm', 'pm', 'sometimes', 'chk', 'process', 'sometimes', 'ki', 'shipping', 'tool', 'shippping', 'system', 'process', 'going', 'last', 'couple', 'month', 'fyzceglp', 'vfnraqxc', 'shipping', 'supervisor', 'shift', 'contacted', 'additional', 'information', 'needed', 'ticket', 'entered', 'last', 'night', 'closed', 'morning', 'system', 'slow', 'morning', 'happens', 'night'] list_processed_text: [['system'], ['slowing'], ['processing'], ['shipment'], ['plant'], ['every'], ['evening'], ['pm'], ['pm'], ['system'], ['slowing'], ['processing'], ['shipment'], ['plant'], ['every'], ['evening'], ['pm'], ['pm'], ['sometimes'], ['chk'], ['process'], ['sometimes'], ['ki'], ['shipping'], ['tool'], ['shippping'], ['system'], ['process'], ['going'], ['last'], ['couple'], ['month'], ['fyzceglp'], ['vfnraqxc'], ['shipping'], ['supervisor'], ['shift'], ['contacted'], ['additional'], ['information'], ['needed'], ['ticket'], ['entered'], ['last'], ['night'], ['closed'], ['morning'], ['system'], ['slow'], ['morning'], ['happens'], ['night']] k: 2221 len: <class 'list'> Data: ['erp', 'access', 'issue', 'userid', 'uacyltoe', 'hxgayczekurtyar', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'uacyltoe', 'hxgayczekurtyar', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'userid', 'uacyltoe', 'hxgayczekurtyar', 'needed', 'validation', 'uacyltoe', 'hxgayczeing', 'sid', 'please', 'extend', 'account', 'month', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'userid', 'uacyltoe', 'hxgayczekurtyar', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'uacyltoe', 'hxgayczekurtyar', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'userid', 'uacyltoe', 'hxgayczekurtyar', 'needed', 'validation', 'uacyltoe', 'hxgayczeing', 'sid', 'please', 'extend', 'account', 'month', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['userid'], ['uacyltoe'], ['hxgayczekurtyar'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['uacyltoe'], ['hxgayczekurtyar'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['userid'], ['uacyltoe'], ['hxgayczekurtyar'], ['needed'], ['validation'], ['uacyltoe'], ['hxgayczeing'], ['sid'], ['please'], ['extend'], ['account'], ['month'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 2222 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2223 len: <class 'list'> Data: ['unable', 'schedule', 'skype', 'meeting', 'option', 'longer', 'outlook', 'unable', 'schedule', 'skype', 'meeting', 'option', 'longer', 'outlook'] processed_text: ['unable', 'schedule', 'skype', 'meeting', 'option', 'longer', 'outlook', 'unable', 'schedule', 'skype', 'meeting', 'option', 'longer', 'outlook'] list_processed_text: [['unable'], ['schedule'], ['skype'], ['meeting'], ['option'], ['longer'], ['outlook'], ['unable'], ['schedule'], ['skype'], ['meeting'], ['option'], ['longer'], ['outlook']] k: 2224 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2225 len: <class 'list'> Data: ['key', 'figure', 'taken', 'bex', 'analyzer', 'key', 'figure', 'taken', 'bex', 'analyzer', 'sale', 'revenue', 'key', 'figure', 'get', 'removed', 'autamatically'] processed_text: ['key', 'figure', 'taken', 'bex', 'analyzer', 'key', 'figure', 'taken', 'bex', 'analyzer', 'sale', 'revenue', 'key', 'figure', 'get', 'removed', 'autamatically'] list_processed_text: [['key'], ['figure'], ['taken'], ['bex'], ['analyzer'], ['key'], ['figure'], ['taken'], ['bex'], ['analyzer'], ['sale'], ['revenue'], ['key'], ['figure'], ['get'], ['removed'], ['autamatically']] k: 2226 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2227 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 2228 len: <class 'list'> Data: ['call', 'routing', 'laptop', 'telephony', 'software', 'phone', 'call', 'routing', 'laptop', 'telephony', 'software', 'phone', 'phone'] processed_text: ['call', 'routing', 'laptop', 'telephony', 'software', 'phone', 'call', 'routing', 'laptop', 'telephony', 'software', 'phone', 'phone'] list_processed_text: [['call'], ['routing'], ['laptop'], ['telephony'], ['software'], ['phone'], ['call'], ['routing'], ['laptop'], ['telephony'], ['software'], ['phone'], ['phone']] k: 2229 len: <class 'list'> Data: ['connecting', 'wireless', 'outside', 'company', 'usa', 'wireless', 'attachment', 'connection', 'available', 'need', 'wireless', 'please', 'review', 'figure', 'wireless', 'available', 'company', 'usa', 'also', 'hotel', 'access', 'available'] processed_text: ['connecting', 'wireless', 'outside', 'company', 'usa', 'wireless', 'attachment', 'connection', 'available', 'need', 'wireless', 'please', 'review', 'figure', 'wireless', 'available', 'company', 'usa', 'also', 'hotel', 'access', 'available'] list_processed_text: [['connecting'], ['wireless'], ['outside'], ['company'], ['usa'], ['wireless'], ['attachment'], ['connection'], ['available'], ['need'], ['wireless'], ['please'], ['review'], ['figure'], ['wireless'], ['available'], ['company'], ['usa'], ['also'], ['hotel'], ['access'], ['available']] k: 2230 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2231 len: <class 'list'> Data: ['access', 'collaboration', 'platform', 'link', 'access', 'collaboration', 'platform', 'link'] processed_text: ['access', 'collaboration', 'platform', 'link', 'access', 'collaboration', 'platform', 'link'] list_processed_text: [['access'], ['collaboration'], ['platform'], ['link'], ['access'], ['collaboration'], ['platform'], ['link']] k: 2232 len: <class 'list'> Data: ['adding', 'shared', 'mailbox', 'outlook', 'summary', 'file', 'shared', 'mailbox', 'dierppeared', 'left', 'side', 'screen'] processed_text: ['adding', 'shared', 'mailbox', 'outlook', 'summary', 'file', 'shared', 'mailbox', 'dierppeared', 'left', 'side', 'screen'] list_processed_text: [['adding'], ['shared'], ['mailbox'], ['outlook'], ['summary'], ['file'], ['shared'], ['mailbox'], ['dierppeared'], ['left'], ['side'], ['screen']] k: 2233 len: <class 'list'> Data: ['housekeep', 'core', 'file', 'hostname', 'could', 'please', 'check', 'feasibility', 'add', 'additional', 'space', 'hostname', 'dev', 'gpfsfs', 'justification', 'bw', 'report', 'failing', 'due', 'space', 'issue', 'mentioned', 'mount', 'point'] processed_text: ['housekeep', 'core', 'file', 'hostname', 'could', 'please', 'check', 'feasibility', 'add', 'additional', 'space', 'hostname', 'dev', 'gpfsfs', 'justification', 'bw', 'report', 'failing', 'due', 'space', 'issue', 'mentioned', 'mount', 'point'] list_processed_text: [['housekeep'], ['core'], ['file'], ['hostname'], ['could'], ['please'], ['check'], ['feasibility'], ['add'], ['additional'], ['space'], ['hostname'], ['dev'], ['gpfsfs'], ['justification'], ['bw'], ['report'], ['failing'], ['due'], ['space'], ['issue'], ['mentioned'], ['mount'], ['point']] k: 2234 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'keshyslsj', 'transaction', 'code', 'user', 'need', 'working', 'sid', 'describe', 'issue', 'forgot', 'password', 'sid', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'keshyslsj', 'transaction', 'code', 'user', 'need', 'working', 'sid', 'describe', 'issue', 'forgot', 'password', 'sid', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['keshyslsj'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['sid'], ['describe'], ['issue'], ['forgot'], ['password'], ['sid'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 2235 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 2236 len: <class 'list'> Data: ['crm', 'add', 'missing', 'crm', 'add', 'missing'] processed_text: ['crm', 'add', 'missing', 'crm', 'add', 'missing'] list_processed_text: [['crm'], ['add'], ['missing'], ['crm'], ['add'], ['missing']] k: 2237 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2238 len: <class 'list'> Data: ['knocked', 'vpn', 'vpn', 'disconnected', 'incoming', 'call'] processed_text: ['knocked', 'vpn', 'vpn', 'disconnected', 'incoming', 'call'] list_processed_text: [['knocked'], ['vpn'], ['vpn'], ['disconnected'], ['incoming'], ['call']] k: 2239 len: <class 'list'> Data: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] processed_text: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] list_processed_text: [['skype'], ['audio'], ['working'], ['skype'], ['audio'], ['working']] k: 2240 len: <class 'list'> Data: ['m', 'crm', 'dynamic', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'outlook', 'issue'] processed_text: ['m', 'crm', 'dynamic', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'outlook', 'issue'] list_processed_text: [['m'], ['crm'], ['dynamic'], ['outlook'], ['issue'], ['m'], ['crm'], ['dynamic'], ['outlook'], ['issue']] k: 2241 len: <class 'list'> Data: ['appears', 'po', 'file', 'processing', 'working', 'apps', 'devt', 'maint', 'ebus', 'appears', 'po', 'file', 'submitted', 'channel', 'partner', 'processing', 'please', 'see', 'attached', 'log', 'appears', 'last', 'time', 'file', 'processed'] processed_text: ['appears', 'po', 'file', 'processing', 'working', 'apps', 'devt', 'maint', 'ebus', 'appears', 'po', 'file', 'submitted', 'channel', 'partner', 'processing', 'please', 'see', 'attached', 'log', 'appears', 'last', 'time', 'file', 'processed'] list_processed_text: [['appears'], ['po'], ['file'], ['processing'], ['working'], ['apps'], ['devt'], ['maint'], ['ebus'], ['appears'], ['po'], ['file'], ['submitted'], ['channel'], ['partner'], ['processing'], ['please'], ['see'], ['attached'], ['log'], ['appears'], ['last'], ['time'], ['file'], ['processed']] k: 2242 len: <class 'list'> Data: ['unable', 'access', 'bobj', 'explorer', 'report', 'unable', 'access', 'bobj', 'explorer', 'report', 'getting', 'p', 'p', 'error', 'please', 'look'] processed_text: ['unable', 'access', 'bobj', 'explorer', 'report', 'unable', 'access', 'bobj', 'explorer', 'report', 'getting', 'p', 'p', 'error', 'please', 'look'] list_processed_text: [['unable'], ['access'], ['bobj'], ['explorer'], ['report'], ['unable'], ['access'], ['bobj'], ['explorer'], ['report'], ['getting'], ['p'], ['p'], ['error'], ['please'], ['look']] k: 2243 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2244 len: <class 'list'> Data: ['soon', 'select', 'financial', 'toolscal', 'year', 'financial', 'toolcal', 'month', 'company', 'overall', 'value', 'get', 'data', 'found', 'contact', 'summary', 'bex', 'show', 'result', 'soon', 'limit', 'time', 'period', 'sind', 'approx', 'min', 'gneral', 'bex', 'issue', 'moment', 'need', 'create', 'reporting', 'upper', 'management', 'get', 'sale', 'infomation', 'soon', 'select', 'financial', 'toolscal', 'year', 'financial', 'toolcal', 'month', 'company', 'overall', 'value', 'get', 'data', 'found', 'staerted', 'bex', 'several', 'time', 'na', 'even', 'rebooted', 'pc', 'note', 'issue', 'urgent', 'finally', 'review', 'data', 'tomorrow', 'morning', 'time', 'upper', 'management', 'need', 'pull', 'bunch', 'sale', 'data', 'checked', 'another', 'colleague', 'appears', 'issue'] processed_text: ['soon', 'select', 'financial', 'toolscal', 'year', 'financial', 'toolcal', 'month', 'company', 'overall', 'value', 'get', 'data', 'found', 'contact', 'summary', 'bex', 'show', 'result', 'soon', 'limit', 'time', 'period', 'sind', 'approx', 'min', 'gneral', 'bex', 'issue', 'moment', 'need', 'create', 'reporting', 'upper', 'management', 'get', 'sale', 'infomation', 'soon', 'select', 'financial', 'toolscal', 'year', 'financial', 'toolcal', 'month', 'company', 'overall', 'value', 'get', 'data', 'found', 'staerted', 'bex', 'several', 'time', 'na', 'even', 'rebooted', 'pc', 'note', 'issue', 'urgent', 'finally', 'review', 'data', 'tomorrow', 'morning', 'time', 'upper', 'management', 'need', 'pull', 'bunch', 'sale', 'data', 'checked', 'another', 'colleague', 'appears', 'issue'] list_processed_text: [['soon'], ['select'], ['financial'], ['toolscal'], ['year'], ['financial'], ['toolcal'], ['month'], ['company'], ['overall'], ['value'], ['get'], ['data'], ['found'], ['contact'], ['summary'], ['bex'], ['show'], ['result'], ['soon'], ['limit'], ['time'], ['period'], ['sind'], ['approx'], ['min'], ['gneral'], ['bex'], ['issue'], ['moment'], ['need'], ['create'], ['reporting'], ['upper'], ['management'], ['get'], ['sale'], ['infomation'], ['soon'], ['select'], ['financial'], ['toolscal'], ['year'], ['financial'], ['toolcal'], ['month'], ['company'], ['overall'], ['value'], ['get'], ['data'], ['found'], ['staerted'], ['bex'], ['several'], ['time'], ['na'], ['even'], ['rebooted'], ['pc'], ['note'], ['issue'], ['urgent'], ['finally'], ['review'], ['data'], ['tomorrow'], ['morning'], ['time'], ['upper'], ['management'], ['need'], ['pull'], ['bunch'], ['sale'], ['data'], ['checked'], ['another'], ['colleague'], ['appears'], ['issue']] k: 2245 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2246 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2247 len: <class 'list'> Data: ['probleme', 'mit', 'pf', 'port', 'hallo', 'port', 'r', 'ewew', 'pf', 'port', 'liefert', 'keine', 'richtige', 'ip', 'bitte', 'pr', 'fen'] processed_text: ['probleme', 'mit', 'pf', 'port', 'hallo', 'port', 'r', 'ewew', 'pf', 'port', 'liefert', 'keine', 'richtige', 'ip', 'bitte', 'pr', 'fen'] list_processed_text: [['probleme'], ['mit'], ['pf'], ['port'], ['hallo'], ['port'], ['r'], ['ewew'], ['pf'], ['port'], ['liefert'], ['keine'], ['richtige'], ['ip'], ['bitte'], ['pr'], ['fen']] k: 2248 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2249 len: <class 'list'> Data: ['unable', 'connect', 'outlook', 'home', 'network', 'unable', 'connect', 'outlook', 'home', 'network'] processed_text: ['unable', 'connect', 'outlook', 'home', 'network', 'unable', 'connect', 'outlook', 'home', 'network'] list_processed_text: [['unable'], ['connect'], ['outlook'], ['home'], ['network'], ['unable'], ['connect'], ['outlook'], ['home'], ['network']] k: 2250 len: <class 'list'> Data: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'issue', 'week', 'ago', 'ticket', 'inc', 'week', 'ago', 'ticket', 'inc', 'please', 'identify', 'solve', 'cause', 'problem', 'impact', 'virtual', 'center', 'server'] processed_text: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'issue', 'week', 'ago', 'ticket', 'inc', 'week', 'ago', 'ticket', 'inc', 'please', 'identify', 'solve', 'cause', 'problem', 'impact', 'virtual', 'center', 'server'] list_processed_text: [['system'], ['disk'], ['server'], ['hostname'], ['full'], ['hello'], ['system'], ['disk'], ['server'], ['hostname'], ['full'], ['please'], ['check'], ['issue'], ['week'], ['ago'], ['ticket'], ['inc'], ['week'], ['ago'], ['ticket'], ['inc'], ['please'], ['identify'], ['solve'], ['cause'], ['problem'], ['impact'], ['virtual'], ['center'], ['server']] k: 2251 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 2252 len: <class 'list'> Data: ['printer', 'issue', 'delivery', 'note', 'window', 'printer', 'prtgt', 'gt', 'prtgt', 'gt', 'printer', 'issue', 'delivery', 'note', 'window', 'printer', 'prtgt', 'prtgt', 'contact', 'error', 'message', 'install', 'driver', 'access', 'denied', 'printing', 'window', 'erp'] processed_text: ['printer', 'issue', 'delivery', 'note', 'window', 'printer', 'prtgt', 'gt', 'prtgt', 'gt', 'printer', 'issue', 'delivery', 'note', 'window', 'printer', 'prtgt', 'prtgt', 'contact', 'error', 'message', 'install', 'driver', 'access', 'denied', 'printing', 'window', 'erp'] list_processed_text: [['printer'], ['issue'], ['delivery'], ['note'], ['window'], ['printer'], ['prtgt'], ['gt'], ['prtgt'], ['gt'], ['printer'], ['issue'], ['delivery'], ['note'], ['window'], ['printer'], ['prtgt'], ['prtgt'], ['contact'], ['error'], ['message'], ['install'], ['driver'], ['access'], ['denied'], ['printing'], ['window'], ['erp']] k: 2253 len: <class 'list'> Data: ['report', 'none', 'lookup', 'sort', 'feature', 'available', 'access', 'report', 'reporting', 'tool', 'however', 'go', 'report', 'none', 'lookup', 'sort', 'feature', 'available', 'field', 'upper', 'right', 'corner', 'allow', 'manipulate', 'report', 'however', 'show', 'available', 'show', 'blank', 'screen', 'shot', 'please', 'refer', 'attachment'] processed_text: ['report', 'none', 'lookup', 'sort', 'feature', 'available', 'access', 'report', 'reporting', 'tool', 'however', 'go', 'report', 'none', 'lookup', 'sort', 'feature', 'available', 'field', 'upper', 'right', 'corner', 'allow', 'manipulate', 'report', 'however', 'show', 'available', 'show', 'blank', 'screen', 'shot', 'please', 'refer', 'attachment'] list_processed_text: [['report'], ['none'], ['lookup'], ['sort'], ['feature'], ['available'], ['access'], ['report'], ['reporting'], ['tool'], ['however'], ['go'], ['report'], ['none'], ['lookup'], ['sort'], ['feature'], ['available'], ['field'], ['upper'], ['right'], ['corner'], ['allow'], ['manipulate'], ['report'], ['however'], ['show'], ['available'], ['show'], ['blank'], ['screen'], ['shot'], ['please'], ['refer'], ['attachment']] k: 2254 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'contact'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'contact'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['contact']] k: 2255 len: <class 'list'> Data: ['ticket', 'follow', 'inplant', 'summary', 'open', 'incident', 'request', 'inco', 'rakthyesh', 'resolve'] processed_text: ['ticket', 'follow', 'inplant', 'summary', 'open', 'incident', 'request', 'inco', 'rakthyesh', 'resolve'] list_processed_text: [['ticket'], ['follow'], ['inplant'], ['summary'], ['open'], ['incident'], ['request'], ['inco'], ['rakthyesh'], ['resolve']] k: 2256 len: <class 'list'> Data: ['job', 'bwhrchgr', 'failed', 'job', 'scheduler', 'job', 'bwhrchgr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrchgr', 'failed', 'job', 'scheduler', 'job', 'bwhrchgr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrchgr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrchgr'], ['failed'], ['job'], ['scheduler']] k: 2257 len: <class 'list'> Data: ['townhall', 'meeting', 'need', 'nwfoucba', 'dzbujamc', 'germany', 'germany', 'preparation', 'technology', 'town', 'hall', 'meeting', 'beginning', 'meeting', 'clock'] processed_text: ['townhall', 'meeting', 'need', 'nwfoucba', 'dzbujamc', 'germany', 'germany', 'preparation', 'technology', 'town', 'hall', 'meeting', 'beginning', 'meeting', 'clock'] list_processed_text: [['townhall'], ['meeting'], ['need'], ['nwfoucba'], ['dzbujamc'], ['germany'], ['germany'], ['preparation'], ['technology'], ['town'], ['hall'], ['meeting'], ['beginning'], ['meeting'], ['clock']] k: 2258 len: <class 'list'> Data: ['unable', 'access', 'bobj', 'report', 'unable', 'access', 'bobj', 'report'] processed_text: ['unable', 'access', 'bobj', 'report', 'unable', 'access', 'bobj', 'report'] list_processed_text: [['unable'], ['access'], ['bobj'], ['report'], ['unable'], ['access'], ['bobj'], ['report']] k: 2259 len: <class 'list'> Data: ['circuit', 'outage', 'vpn', 'router', 'rtr', 'et', 'site', 'rtro', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'vpn', 'router', 'rtr', 'et', 'site', 'rtro', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['vpn'], ['router'], ['rtr'], ['et'], ['site'], ['rtro'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2260 len: <class 'list'> Data: ['email', 'setting', 'issue', 'summary', 'hit', 'wrong', 'button', 'messed', 'mail', 'format', 'delete', 'anything', 'go', 'home', 'button', 'delete'] processed_text: ['email', 'setting', 'issue', 'summary', 'hit', 'wrong', 'button', 'messed', 'mail', 'format', 'delete', 'anything', 'go', 'home', 'button', 'delete'] list_processed_text: [['email'], ['setting'], ['issue'], ['summary'], ['hit'], ['wrong'], ['button'], ['messed'], ['mail'], ['format'], ['delete'], ['anything'], ['go'], ['home'], ['button'], ['delete']] k: 2261 len: <class 'list'> Data: ['user', 'called', 'speak', 'nicdhylas', 'hidhys', 'asked', 'user', 'send', 'email', 'skype', 'available', 'user', 'called', 'speak', 'nicdhylas', 'hidhys', 'asked', 'user', 'send', 'email', 'skype', 'available'] processed_text: ['user', 'called', 'speak', 'nicdhylas', 'hidhys', 'asked', 'user', 'send', 'email', 'skype', 'available', 'user', 'called', 'speak', 'nicdhylas', 'hidhys', 'asked', 'user', 'send', 'email', 'skype', 'available'] list_processed_text: [['user'], ['called'], ['speak'], ['nicdhylas'], ['hidhys'], ['asked'], ['user'], ['send'], ['email'], ['skype'], ['available'], ['user'], ['called'], ['speak'], ['nicdhylas'], ['hidhys'], ['asked'], ['user'], ['send'], ['email'], ['skype'], ['available']] k: 2262 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2263 len: <class 'list'> Data: ['static', 'noise', 'interaction', 'id', 'static', 'noise', 'interaction', 'id'] processed_text: ['static', 'noise', 'interaction', 'id', 'static', 'noise', 'interaction', 'id'] list_processed_text: [['static'], ['noise'], ['interaction'], ['id'], ['static'], ['noise'], ['interaction'], ['id']] k: 2264 len: <class 'list'> Data: ['computer', 'name', 'hello', 'need', 'new', 'computer', 'name', 'service', 'tag', 'ddwjm'] processed_text: ['computer', 'name', 'hello', 'need', 'new', 'computer', 'name', 'service', 'tag', 'ddwjm'] list_processed_text: [['computer'], ['name'], ['hello'], ['need'], ['new'], ['computer'], ['name'], ['service'], ['tag'], ['ddwjm']] k: 2265 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 2266 len: <class 'list'> Data: ['name', 'issue', 'engineering', 'tool', 'system', 'hello', 'feel', 'sorry', 'say', 'late', 'facing', 'lot', 'issue', 'engineering', 'tool', 'system', 'please', 'note', 'name', 'appearing', 'ascending', 'order', 'alphabet', 'looking', 'particular', 'name', 'become', 'nightmare', 'best'] processed_text: ['name', 'issue', 'engineering', 'tool', 'system', 'hello', 'feel', 'sorry', 'say', 'late', 'facing', 'lot', 'issue', 'engineering', 'tool', 'system', 'please', 'note', 'name', 'appearing', 'ascending', 'order', 'alphabet', 'looking', 'particular', 'name', 'become', 'nightmare', 'best'] list_processed_text: [['name'], ['issue'], ['engineering'], ['tool'], ['system'], ['hello'], ['feel'], ['sorry'], ['say'], ['late'], ['facing'], ['lot'], ['issue'], ['engineering'], ['tool'], ['system'], ['please'], ['note'], ['name'], ['appearing'], ['ascending'], ['order'], ['alphabet'], ['looking'], ['particular'], ['name'], ['become'], ['nightmare'], ['best']] k: 2267 len: <class 'list'> Data: ['creating', 'inspection', 'plan', 'working', 'creating', 'inspection', 'plan', 'seem', 'working', 'created', 'able', 'view', 'batch', 'number', 'inspection', 'plan', 'qa', 'tried', 'create', 'lot', 'well', 'working', 'either', 'valid', 'inspection', 'type', 'material', 'found', 'selected', 'warning', 'please', 'assist', 'material', 'alloy', 'mm', 'need', 'ship', 'today', 'contact', 'phone', 'number'] processed_text: ['creating', 'inspection', 'plan', 'working', 'creating', 'inspection', 'plan', 'seem', 'working', 'created', 'able', 'view', 'batch', 'number', 'inspection', 'plan', 'qa', 'tried', 'create', 'lot', 'well', 'working', 'either', 'valid', 'inspection', 'type', 'material', 'found', 'selected', 'warning', 'please', 'assist', 'material', 'alloy', 'mm', 'need', 'ship', 'today', 'contact', 'phone', 'number'] list_processed_text: [['creating'], ['inspection'], ['plan'], ['working'], ['creating'], ['inspection'], ['plan'], ['seem'], ['working'], ['created'], ['able'], ['view'], ['batch'], ['number'], ['inspection'], ['plan'], ['qa'], ['tried'], ['create'], ['lot'], ['well'], ['working'], ['either'], ['valid'], ['inspection'], ['type'], ['material'], ['found'], ['selected'], ['warning'], ['please'], ['assist'], ['material'], ['alloy'], ['mm'], ['need'], ['ship'], ['today'], ['contact'], ['phone'], ['number']] k: 2268 len: <class 'list'> Data: ['able', 'make', 'outbound', 'call', 'siemens', 'phone', 'system', 'able', 'make', 'outbound', 'call', 'siemens', 'phone', 'system'] processed_text: ['able', 'make', 'outbound', 'call', 'siemens', 'phone', 'system', 'able', 'make', 'outbound', 'call', 'siemens', 'phone', 'system'] list_processed_text: [['able'], ['make'], ['outbound'], ['call'], ['siemens'], ['phone'], ['system'], ['able'], ['make'], ['outbound'], ['call'], ['siemens'], ['phone'], ['system']] k: 2269 len: <class 'list'> Data: ['wk', 'qdxyifhj', 'zbwtunpy', 'halo', 'printer', 'causing', 'problem', 'printing', 'please', 'check', 'setting', 'thanks', 'uwe'] processed_text: ['wk', 'qdxyifhj', 'zbwtunpy', 'halo', 'printer', 'causing', 'problem', 'printing', 'please', 'check', 'setting', 'thanks', 'uwe'] list_processed_text: [['wk'], ['qdxyifhj'], ['zbwtunpy'], ['halo'], ['printer'], ['causing'], ['problem'], ['printing'], ['please'], ['check'], ['setting'], ['thanks'], ['uwe']] k: 2270 len: <class 'list'> Data: ['authorisation', 'pl', 'provide', 'pm', 'supervisor', 'role', 'user', 'haajksjp', 'plant', 'plant', 'system', 'sid', 'sent', 'iphone'] processed_text: ['authorisation', 'pl', 'provide', 'pm', 'supervisor', 'role', 'user', 'haajksjp', 'plant', 'plant', 'system', 'sid', 'sent', 'iphone'] list_processed_text: [['authorisation'], ['pl'], ['provide'], ['pm'], ['supervisor'], ['role'], ['user'], ['haajksjp'], ['plant'], ['plant'], ['system'], ['sid'], ['sent'], ['iphone']] k: 2271 len: <class 'list'> Data: ['network', 'outage', 'site', 'engineering', 'toolkuznetsk', 'russia', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'site', 'engineering', 'toolkuznetsk', 'russia', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['site'], ['engineering'], ['toolkuznetsk'], ['russia'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2272 len: <class 'list'> Data: ['probleme', 'mit', 'vpn', 'weszfyok', 'fbadnjhu', 'probleme', 'mit', 'vpn', 'weszfyok', 'fbadnjhu'] processed_text: ['probleme', 'mit', 'vpn', 'weszfyok', 'fbadnjhu', 'probleme', 'mit', 'vpn', 'weszfyok', 'fbadnjhu'] list_processed_text: [['probleme'], ['mit'], ['vpn'], ['weszfyok'], ['fbadnjhu'], ['probleme'], ['mit'], ['vpn'], ['weszfyok'], ['fbadnjhu']] k: 2273 len: <class 'list'> Data: ['problem', 'urbghty', 'fringe', 'portal', 'problem', 'urbghty', 'fringe', 'portal'] processed_text: ['problem', 'urbghty', 'fringe', 'portal', 'problem', 'urbghty', 'fringe', 'portal'] list_processed_text: [['problem'], ['urbghty'], ['fringe'], ['portal'], ['problem'], ['urbghty'], ['fringe'], ['portal']] k: 2274 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 2275 len: <class 'list'> Data: ['russia', 'interface', 'vlan', 'russia', 'engineering', 'tool', 'wharehouse', 'lan', 'company', 'eu', 'ru', 'engineering', 'toolkuznetsk', 'dmvpn', 'rtr', 'company', 'com', 'russia', 'interface', 'vlan', 'russia', 'engineering', 'tool', 'wharehouse', 'lan', 'company', 'eu', 'ru', 'engineering', 'toolkuznetsk', 'dmvpn', 'rtr', 'company', 'com'] processed_text: ['russia', 'interface', 'vlan', 'russia', 'engineering', 'tool', 'wharehouse', 'lan', 'company', 'eu', 'ru', 'engineering', 'toolkuznetsk', 'dmvpn', 'rtr', 'company', 'com', 'russia', 'interface', 'vlan', 'russia', 'engineering', 'tool', 'wharehouse', 'lan', 'company', 'eu', 'ru', 'engineering', 'toolkuznetsk', 'dmvpn', 'rtr', 'company', 'com'] list_processed_text: [['russia'], ['interface'], ['vlan'], ['russia'], ['engineering'], ['tool'], ['wharehouse'], ['lan'], ['company'], ['eu'], ['ru'], ['engineering'], ['toolkuznetsk'], ['dmvpn'], ['rtr'], ['company'], ['com'], ['russia'], ['interface'], ['vlan'], ['russia'], ['engineering'], ['tool'], ['wharehouse'], ['lan'], ['company'], ['eu'], ['ru'], ['engineering'], ['toolkuznetsk'], ['dmvpn'], ['rtr'], ['company'], ['com']] k: 2276 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2277 len: <class 'list'> Data: ['problem', 'outlook', 'client', 'database', 'synchronizing', 'problem', 'outlook', 'client', 'database', 'synchronizing'] processed_text: ['problem', 'outlook', 'client', 'database', 'synchronizing', 'problem', 'outlook', 'client', 'database', 'synchronizing'] list_processed_text: [['problem'], ['outlook'], ['client'], ['database'], ['synchronizing'], ['problem'], ['outlook'], ['client'], ['database'], ['synchronizing']] k: 2278 len: <class 'list'> Data: ['microsoft', 'outlook', 'issue', 'hi', 'team', 'unable', 'get', 'mail', 'intermittently', 'time', 'need', 'update', 'folder', 'get', 'mail', 'sometimes', 'work', 'like', 'please', 'look', 'issue'] processed_text: ['microsoft', 'outlook', 'issue', 'hi', 'team', 'unable', 'get', 'mail', 'intermittently', 'time', 'need', 'update', 'folder', 'get', 'mail', 'sometimes', 'work', 'like', 'please', 'look', 'issue'] list_processed_text: [['microsoft'], ['outlook'], ['issue'], ['hi'], ['team'], ['unable'], ['get'], ['mail'], ['intermittently'], ['time'], ['need'], ['update'], ['folder'], ['get'], ['mail'], ['sometimes'], ['work'], ['like'], ['please'], ['look'], ['issue']] k: 2279 len: <class 'list'> Data: ['upgrade', 'office', 'currently', 'two', 'version', 'office', 'computer', 'installed', 'office', 'bit', 'folder', 'office', 'bit', 'folder', 'pls', 'delete', 'old', 'repair', 'new', 'one'] processed_text: ['upgrade', 'office', 'currently', 'two', 'version', 'office', 'computer', 'installed', 'office', 'bit', 'folder', 'office', 'bit', 'folder', 'pls', 'delete', 'old', 'repair', 'new', 'one'] list_processed_text: [['upgrade'], ['office'], ['currently'], ['two'], ['version'], ['office'], ['computer'], ['installed'], ['office'], ['bit'], ['folder'], ['office'], ['bit'], ['folder'], ['pls'], ['delete'], ['old'], ['repair'], ['new'], ['one']] k: 2280 len: <class 'list'> Data: ['erp', 'intercompany', 'inwarehouse', 'tool', 'issue', 'sto', 'batia', 'ben', 'shloosh', 'pm', 'huji', 'uhytry', 'rujteoza', 'mcoswhjuanthila', 'yayuel', 'sayatgr', 'hkfipags', 'sdilxrfk', 'rzucjgvp', 'ioqjgmah', 'jhdythua', 'htayhil', 'udmbwocs', 'kegsjdva', 'mm', 'n', 'hello', 'please', 'find', 'lauacyltoe', 'hxgaycze', 'sto', 'please', 'informed', 'currency', 'problem', 'occurred', 'new', 'shipment', 'n', 'pc', 'mm', 'n', 'inwarehouse', 'tool', 'show', 'total', 'amount', 'u', 'real', 'value', 'show', 'sto', 'number', 'please', 'check', 'issue', 'urgently', 'shipment', 'currently', 'hold', 'warehouse', 'please', 'see', 'correspondence', 'previous', 'shipment'] processed_text: ['erp', 'intercompany', 'inwarehouse', 'tool', 'issue', 'sto', 'batia', 'ben', 'shloosh', 'pm', 'huji', 'uhytry', 'rujteoza', 'mcoswhjuanthila', 'yayuel', 'sayatgr', 'hkfipags', 'sdilxrfk', 'rzucjgvp', 'ioqjgmah', 'jhdythua', 'htayhil', 'udmbwocs', 'kegsjdva', 'mm', 'n', 'hello', 'please', 'find', 'lauacyltoe', 'hxgaycze', 'sto', 'please', 'informed', 'currency', 'problem', 'occurred', 'new', 'shipment', 'n', 'pc', 'mm', 'n', 'inwarehouse', 'tool', 'show', 'total', 'amount', 'u', 'real', 'value', 'show', 'sto', 'number', 'please', 'check', 'issue', 'urgently', 'shipment', 'currently', 'hold', 'warehouse', 'please', 'see', 'correspondence', 'previous', 'shipment'] list_processed_text: [['erp'], ['intercompany'], ['inwarehouse'], ['tool'], ['issue'], ['sto'], ['batia'], ['ben'], ['shloosh'], ['pm'], ['huji'], ['uhytry'], ['rujteoza'], ['mcoswhjuanthila'], ['yayuel'], ['sayatgr'], ['hkfipags'], ['sdilxrfk'], ['rzucjgvp'], ['ioqjgmah'], ['jhdythua'], ['htayhil'], ['udmbwocs'], ['kegsjdva'], ['mm'], ['n'], ['hello'], ['please'], ['find'], ['lauacyltoe'], ['hxgaycze'], ['sto'], ['please'], ['informed'], ['currency'], ['problem'], ['occurred'], ['new'], ['shipment'], ['n'], ['pc'], ['mm'], ['n'], ['inwarehouse'], ['tool'], ['show'], ['total'], ['amount'], ['u'], ['real'], ['value'], ['show'], ['sto'], ['number'], ['please'], ['check'], ['issue'], ['urgently'], ['shipment'], ['currently'], ['hold'], ['warehouse'], ['please'], ['see'], ['correspondence'], ['previous'], ['shipment']] k: 2281 len: <class 'list'> Data: ['login', 'possible', 'hello', 'colleague', 'please', 'check', 'colleague', 'diehm', 'asked', 'question', 'click', 'cannot', 'log', 'thanks', 'gru', 'cid', 'hardcopy', 'cid'] processed_text: ['login', 'possible', 'hello', 'colleague', 'please', 'check', 'colleague', 'diehm', 'asked', 'question', 'click', 'cannot', 'log', 'thanks', 'gru', 'cid', 'hardcopy', 'cid'] list_processed_text: [['login'], ['possible'], ['hello'], ['colleague'], ['please'], ['check'], ['colleague'], ['diehm'], ['asked'], ['question'], ['click'], ['cannot'], ['log'], ['thanks'], ['gru'], ['cid'], ['hardcopy'], ['cid']] k: 2282 len: <class 'list'> Data: ['erp', 'user', 'id', 'password', 'working', 'dear', 'sir', 'madam', 'pl', 'needful', 'regarding', 'subject', 'matheywter', 'message', 'shown', 'wrong', 'user', 'id', 'password', 'fyi', 'na', 'warm'] processed_text: ['erp', 'user', 'id', 'password', 'working', 'dear', 'sir', 'madam', 'pl', 'needful', 'regarding', 'subject', 'matheywter', 'message', 'shown', 'wrong', 'user', 'id', 'password', 'fyi', 'na', 'warm'] list_processed_text: [['erp'], ['user'], ['id'], ['password'], ['working'], ['dear'], ['sir'], ['madam'], ['pl'], ['needful'], ['regarding'], ['subject'], ['matheywter'], ['message'], ['shown'], ['wrong'], ['user'], ['id'], ['password'], ['fyi'], ['na'], ['warm']] k: 2283 len: <class 'list'> Data: ['could', 'logon', 'erp', 'via', 'vpn', 'error', 'message', 'system', 'sid', 'sid', 'partner', 'reached', 'error', 'connection', 'refused'] processed_text: ['could', 'logon', 'erp', 'via', 'vpn', 'error', 'message', 'system', 'sid', 'sid', 'partner', 'reached', 'error', 'connection', 'refused'] list_processed_text: [['could'], ['logon'], ['erp'], ['via'], ['vpn'], ['error'], ['message'], ['system'], ['sid'], ['sid'], ['partner'], ['reached'], ['error'], ['connection'], ['refused']] k: 2284 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2285 len: <class 'list'> Data: ['please', 'create', 'dn', 'plant', 'plant', 'pc', 'mm', 'create', 'please', 'create', 'dn', 'plant', 'plant', 'pc', 'mm', 'urgent', 'shipping', 'point', 'dns'] processed_text: ['please', 'create', 'dn', 'plant', 'plant', 'pc', 'mm', 'create', 'please', 'create', 'dn', 'plant', 'plant', 'pc', 'mm', 'urgent', 'shipping', 'point', 'dns'] list_processed_text: [['please'], ['create'], ['dn'], ['plant'], ['plant'], ['pc'], ['mm'], ['create'], ['please'], ['create'], ['dn'], ['plant'], ['plant'], ['pc'], ['mm'], ['urgent'], ['shipping'], ['point'], ['dns']] k: 2286 len: <class 'list'> Data: ['lean', 'certificate', 'getting', 'sent', 'automatically', 'hi', 'khadfhty', 'today', 'created', 'another', 'lean', 'event', 'still', 'certificate', 'sent', 'automatically', 'recipient', 'see', 'certificate', 'certificate', 'list', 'section', 'also', 'co', 'facilitator', 'name', 'appearing', 'certificate', 'happened', 'past', 'event', 'request', 'kindly', 'fix', 'issue', 'priority'] processed_text: ['lean', 'certificate', 'getting', 'sent', 'automatically', 'hi', 'khadfhty', 'today', 'created', 'another', 'lean', 'event', 'still', 'certificate', 'sent', 'automatically', 'recipient', 'see', 'certificate', 'certificate', 'list', 'section', 'also', 'co', 'facilitator', 'name', 'appearing', 'certificate', 'happened', 'past', 'event', 'request', 'kindly', 'fix', 'issue', 'priority'] list_processed_text: [['lean'], ['certificate'], ['getting'], ['sent'], ['automatically'], ['hi'], ['khadfhty'], ['today'], ['created'], ['another'], ['lean'], ['event'], ['still'], ['certificate'], ['sent'], ['automatically'], ['recipient'], ['see'], ['certificate'], ['certificate'], ['list'], ['section'], ['also'], ['co'], ['facilitator'], ['name'], ['appearing'], ['certificate'], ['happened'], ['past'], ['event'], ['request'], ['kindly'], ['fix'], ['issue'], ['priority']] k: 2287 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2288 len: <class 'list'> Data: ['probleme', 'mit', 'alicona', 'nach', 'update', 'jionmpsf', 'wnkpzcmv', 'probleme', 'mit', 'alicona', 'nach', 'update', 'jionmpsf', 'wnkpzcmv'] processed_text: ['probleme', 'mit', 'alicona', 'nach', 'update', 'jionmpsf', 'wnkpzcmv', 'probleme', 'mit', 'alicona', 'nach', 'update', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['probleme'], ['mit'], ['alicona'], ['nach'], ['update'], ['jionmpsf'], ['wnkpzcmv'], ['probleme'], ['mit'], ['alicona'], ['nach'], ['update'], ['jionmpsf'], ['wnkpzcmv']] k: 2289 len: <class 'list'> Data: ['setup', 'wu', 'jionmpsf', 'wnkpzcmv', 'setup', 'wu', 'jionmpsf', 'wnkpzcmv'] processed_text: ['setup', 'wu', 'jionmpsf', 'wnkpzcmv', 'setup', 'wu', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['setup'], ['wu'], ['jionmpsf'], ['wnkpzcmv'], ['setup'], ['wu'], ['jionmpsf'], ['wnkpzcmv']] k: 2290 len: <class 'list'> Data: ['chg', 'stop', 'reminder', 'hello', 'received', 'ten', 'mail', 'far', 'approval', 'ticket', 'sample', 'mail', 'attached', 'pl', 'take', 'immediate', 'step', 'stop', 'reminder', 'already', 'approved', 'ticket', 'best'] processed_text: ['chg', 'stop', 'reminder', 'hello', 'received', 'ten', 'mail', 'far', 'approval', 'ticket', 'sample', 'mail', 'attached', 'pl', 'take', 'immediate', 'step', 'stop', 'reminder', 'already', 'approved', 'ticket', 'best'] list_processed_text: [['chg'], ['stop'], ['reminder'], ['hello'], ['received'], ['ten'], ['mail'], ['far'], ['approval'], ['ticket'], ['sample'], ['mail'], ['attached'], ['pl'], ['take'], ['immediate'], ['step'], ['stop'], ['reminder'], ['already'], ['approved'], ['ticket'], ['best']] k: 2291 len: <class 'list'> Data: ['reset', 'password', 'dear', 'could', 'please', 'reset', 'password', 'dpajkrhy', 'hwvjympt', 'websty', 'immediately', 'let', 'know', 'best'] processed_text: ['reset', 'password', 'dear', 'could', 'please', 'reset', 'password', 'dpajkrhy', 'hwvjympt', 'websty', 'immediately', 'let', 'know', 'best'] list_processed_text: [['reset'], ['password'], ['dear'], ['could'], ['please'], ['reset'], ['password'], ['dpajkrhy'], ['hwvjympt'], ['websty'], ['immediately'], ['let'], ['know'], ['best']] k: 2292 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2293 len: <class 'list'> Data: ['issue', 'engineering', 'tooled', 'software', 'hello', 'able', 'see', 'option', 'creating', 'new', 'customer', 'new', 'dealer', 'name', 'engineering', 'tool', 'software', 'please', 'help', 'resolve', 'issue'] processed_text: ['issue', 'engineering', 'tooled', 'software', 'hello', 'able', 'see', 'option', 'creating', 'new', 'customer', 'new', 'dealer', 'name', 'engineering', 'tool', 'software', 'please', 'help', 'resolve', 'issue'] list_processed_text: [['issue'], ['engineering'], ['tooled'], ['software'], ['hello'], ['able'], ['see'], ['option'], ['creating'], ['new'], ['customer'], ['new'], ['dealer'], ['name'], ['engineering'], ['tool'], ['software'], ['please'], ['help'], ['resolve'], ['issue']] k: 2294 len: <class 'list'> Data: ['problem', 'accessing', 'drawing', 'netweaver', 'business', 'clint', 'dear', 'colleague', 'cannot', 'open', 'netweaver', 'business', 'clint', 'press', 'corresponding', 'app', 'via', 'vpn', 'already', 'connected', 'following', 'note', 'come', 'please', 'support'] processed_text: ['problem', 'accessing', 'drawing', 'netweaver', 'business', 'clint', 'dear', 'colleague', 'cannot', 'open', 'netweaver', 'business', 'clint', 'press', 'corresponding', 'app', 'via', 'vpn', 'already', 'connected', 'following', 'note', 'come', 'please', 'support'] list_processed_text: [['problem'], ['accessing'], ['drawing'], ['netweaver'], ['business'], ['clint'], ['dear'], ['colleague'], ['cannot'], ['open'], ['netweaver'], ['business'], ['clint'], ['press'], ['corresponding'], ['app'], ['via'], ['vpn'], ['already'], ['connected'], ['following'], ['note'], ['come'], ['please'], ['support']] k: 2295 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2296 len: <class 'list'> Data: ['outlook', 'crm', 'getting', 'sync', 'outlook', 'crm', 'getting', 'sync'] processed_text: ['outlook', 'crm', 'getting', 'sync', 'outlook', 'crm', 'getting', 'sync'] list_processed_text: [['outlook'], ['crm'], ['getting'], ['sync'], ['outlook'], ['crm'], ['getting'], ['sync']] k: 2297 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2298 len: <class 'list'> Data: ['seek', 'support', 'network', 'related', 'issue', 'hello', 'able', 'access', 'erp', 'file', 'network', 'facing', 'problem', 'past', 'week', 'daily', 'basis', 'issue', 'addressed', 'local', 'team', 'getting', 'resolved', 'case', 'case', 'basis', 'causing', 'lot', 'disturbance', 'seek', 'suppor', 'resolve', 'issue', 'error', 'message', 'tried', 'log', 'sid', 'day', 'connect', 'network', 'connected', 'companyguest', 'network', 'need', 'change', 'companysecure', 'also', 'facing', 'problem'] processed_text: ['seek', 'support', 'network', 'related', 'issue', 'hello', 'able', 'access', 'erp', 'file', 'network', 'facing', 'problem', 'past', 'week', 'daily', 'basis', 'issue', 'addressed', 'local', 'team', 'getting', 'resolved', 'case', 'case', 'basis', 'causing', 'lot', 'disturbance', 'seek', 'suppor', 'resolve', 'issue', 'error', 'message', 'tried', 'log', 'sid', 'day', 'connect', 'network', 'connected', 'companyguest', 'network', 'need', 'change', 'companysecure', 'also', 'facing', 'problem'] list_processed_text: [['seek'], ['support'], ['network'], ['related'], ['issue'], ['hello'], ['able'], ['access'], ['erp'], ['file'], ['network'], ['facing'], ['problem'], ['past'], ['week'], ['daily'], ['basis'], ['issue'], ['addressed'], ['local'], ['team'], ['getting'], ['resolved'], ['case'], ['case'], ['basis'], ['causing'], ['lot'], ['disturbance'], ['seek'], ['suppor'], ['resolve'], ['issue'], ['error'], ['message'], ['tried'], ['log'], ['sid'], ['day'], ['connect'], ['network'], ['connected'], ['companyguest'], ['network'], ['need'], ['change'], ['companysecure'], ['also'], ['facing'], ['problem']] k: 2299 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2300 len: <class 'list'> Data: ['interface', 'fastethernet', 'timeclock', 'clhr', 'toollant', 'since', 'interface', 'fastethernet', 'timeclock', 'clhr', 'toollant', 'since'] processed_text: ['interface', 'fastethernet', 'timeclock', 'clhr', 'toollant', 'since', 'interface', 'fastethernet', 'timeclock', 'clhr', 'toollant', 'since'] list_processed_text: [['interface'], ['fastethernet'], ['timeclock'], ['clhr'], ['toollant'], ['since'], ['interface'], ['fastethernet'], ['timeclock'], ['clhr'], ['toollant'], ['since']] k: 2301 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2302 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2303 len: <class 'list'> Data: ['access', 'erp', 'vpn', 'help', 'login', 'erp', 'sid', 'home', 'vpn', 'error', 'message', 'help', 'juhu', 'jojfufn', 'ap', 'logistics', 'manager', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['access', 'erp', 'vpn', 'help', 'login', 'erp', 'sid', 'home', 'vpn', 'error', 'message', 'help', 'juhu', 'jojfufn', 'ap', 'logistics', 'manager', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['access'], ['erp'], ['vpn'], ['help'], ['login'], ['erp'], ['sid'], ['home'], ['vpn'], ['error'], ['message'], ['help'], ['juhu'], ['jojfufn'], ['ap'], ['logistics'], ['manager'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 2304 len: <class 'list'> Data: ['ey', 'consultant', 'unable', 'login', 'citrix', 'attached', 'error', 'screenshot', 'ey', 'consultant', 'unable', 'login', 'citrix', 'attached', 'error', 'screenshot', 'kindly', 'needful'] processed_text: ['ey', 'consultant', 'unable', 'login', 'citrix', 'attached', 'error', 'screenshot', 'ey', 'consultant', 'unable', 'login', 'citrix', 'attached', 'error', 'screenshot', 'kindly', 'needful'] list_processed_text: [['ey'], ['consultant'], ['unable'], ['login'], ['citrix'], ['attached'], ['error'], ['screenshot'], ['ey'], ['consultant'], ['unable'], ['login'], ['citrix'], ['attached'], ['error'], ['screenshot'], ['kindly'], ['needful']] k: 2305 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 2306 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2307 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 2308 len: <class 'list'> Data: ['australia', 'australia', 'currently', 'experiencing', 'long', 'loading', 'time', 'erp', 'name', 'elituyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'australia', 'australia', 'currently', 'experiencing', 'long', 'loading', 'time', 'erp', 'please', 'look'] processed_text: ['australia', 'australia', 'currently', 'experiencing', 'long', 'loading', 'time', 'erp', 'name', 'elituyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'australia', 'australia', 'currently', 'experiencing', 'long', 'loading', 'time', 'erp', 'please', 'look'] list_processed_text: [['australia'], ['australia'], ['currently'], ['experiencing'], ['long'], ['loading'], ['time'], ['erp'], ['name'], ['elituyt'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['australia'], ['australia'], ['currently'], ['experiencing'], ['long'], ['loading'], ['time'], ['erp'], ['please'], ['look']] k: 2309 len: <class 'list'> Data: ['erp', 'hi', 'erp', 'running', 'incredibly', 'slow', 'try', 'load', 'page', 'kick', 'kind'] processed_text: ['erp', 'hi', 'erp', 'running', 'incredibly', 'slow', 'try', 'load', 'page', 'kick', 'kind'] list_processed_text: [['erp'], ['hi'], ['erp'], ['running'], ['incredibly'], ['slow'], ['try'], ['load'], ['page'], ['kick'], ['kind']] k: 2310 len: <class 'list'> Data: ['erp', 'slow', 'happens', 'every', 'night', 'starting', 'pm', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'slow', 'happens', 'every', 'night', 'starting', 'pm'] processed_text: ['erp', 'slow', 'happens', 'every', 'night', 'starting', 'pm', 'name', 'fyzceglp', 'vfnraqxc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'slow', 'happens', 'every', 'night', 'starting', 'pm'] list_processed_text: [['erp'], ['slow'], ['happens'], ['every'], ['night'], ['starting'], ['pm'], ['name'], ['fyzceglp'], ['vfnraqxc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['slow'], ['happens'], ['every'], ['night'], ['starting'], ['pm']] k: 2311 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2312 len: <class 'list'> Data: ['vip', 'processed', 'payment', 'potentional', 'security', 'attempt', 'xmjwanes', 'astmvqhc', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'fw', 'processed', 'payment', 'potentional', 'security', 'attempt', 'open', 'see', 'attached', 'received', 'earlier', 'today', 'marc', 'xmjwanes', 'astmvqhc', 'director', 'human', 'resource', 'original', 'message', 'mail', 'pm', 'xmjwanes', 'astmvqhc', 'processed', 'payment', 'made', 'list', 'item', 'need', 'find', 'company', 'com', 'offer', 'discount', 'bulk', 'order', 'find', 'contact', 'detail', 'item', 'list', 'attached'] processed_text: ['vip', 'processed', 'payment', 'potentional', 'security', 'attempt', 'xmjwanes', 'astmvqhc', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'fw', 'processed', 'payment', 'potentional', 'security', 'attempt', 'open', 'see', 'attached', 'received', 'earlier', 'today', 'marc', 'xmjwanes', 'astmvqhc', 'director', 'human', 'resource', 'original', 'message', 'mail', 'pm', 'xmjwanes', 'astmvqhc', 'processed', 'payment', 'made', 'list', 'item', 'need', 'find', 'company', 'com', 'offer', 'discount', 'bulk', 'order', 'find', 'contact', 'detail', 'item', 'list', 'attached'] list_processed_text: [['vip'], ['processed'], ['payment'], ['potentional'], ['security'], ['attempt'], ['xmjwanes'], ['astmvqhc'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['fw'], ['processed'], ['payment'], ['potentional'], ['security'], ['attempt'], ['open'], ['see'], ['attached'], ['received'], ['earlier'], ['today'], ['marc'], ['xmjwanes'], ['astmvqhc'], ['director'], ['human'], ['resource'], ['original'], ['message'], ['mail'], ['pm'], ['xmjwanes'], ['astmvqhc'], ['processed'], ['payment'], ['made'], ['list'], ['item'], ['need'], ['find'], ['company'], ['com'], ['offer'], ['discount'], ['bulk'], ['order'], ['find'], ['contact'], ['detail'], ['item'], ['list'], ['attached']] k: 2313 len: <class 'list'> Data: ['window', 'locked', 'user', 'id', 'laijuttryhr', 'hi', 'help', 'desk', 'team', 'window', 'id', 'locked', 'please', 'assist', 'unlock', 'immediately'] processed_text: ['window', 'locked', 'user', 'id', 'laijuttryhr', 'hi', 'help', 'desk', 'team', 'window', 'id', 'locked', 'please', 'assist', 'unlock', 'immediately'] list_processed_text: [['window'], ['locked'], ['user'], ['id'], ['laijuttryhr'], ['hi'], ['help'], ['desk'], ['team'], ['window'], ['id'], ['locked'], ['please'], ['assist'], ['unlock'], ['immediately']] k: 2314 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2315 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2316 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2317 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2318 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2319 len: <class 'list'> Data: ['missing', 'owtlmpuv', 'oicrjsfh', 'team', 'calendar', 'page', 'missing', 'one', 'person', 'gl', 'team', 'calendar', 'page', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['missing', 'owtlmpuv', 'oicrjsfh', 'team', 'calendar', 'page', 'missing', 'one', 'person', 'gl', 'team', 'calendar', 'page', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['missing'], ['owtlmpuv'], ['oicrjsfh'], ['team'], ['calendar'], ['page'], ['missing'], ['one'], ['person'], ['gl'], ['team'], ['calendar'], ['page'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 2320 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'updating', 'password', 'unable', 'connect', 'vpn', 'updating', 'password'] processed_text: ['unable', 'connect', 'vpn', 'updating', 'password', 'unable', 'connect', 'vpn', 'updating', 'password'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['updating'], ['password'], ['unable'], ['connect'], ['vpn'], ['updating'], ['password']] k: 2321 len: <class 'list'> Data: ['password', 'expired', 'password', 'expired'] processed_text: ['password', 'expired', 'password', 'expired'] list_processed_text: [['password'], ['expired'], ['password'], ['expired']] k: 2322 len: <class 'list'> Data: ['m', 'crm', 'dynamic', 'error', 'outlook', 'addin', 'm', 'crm', 'dynamic', 'error', 'outlook', 'addin'] processed_text: ['m', 'crm', 'dynamic', 'error', 'outlook', 'addin', 'm', 'crm', 'dynamic', 'error', 'outlook', 'addin'] list_processed_text: [['m'], ['crm'], ['dynamic'], ['error'], ['outlook'], ['addin'], ['m'], ['crm'], ['dynamic'], ['error'], ['outlook'], ['addin']] k: 2323 len: <class 'list'> Data: ['user', 'want', 'crm', 'mobile', 'app', 'donwloaded', 'mobile', 'user', 'want', 'crm', 'mobile', 'app', 'donwloaded', 'mobile'] processed_text: ['user', 'want', 'crm', 'mobile', 'app', 'donwloaded', 'mobile', 'user', 'want', 'crm', 'mobile', 'app', 'donwloaded', 'mobile'] list_processed_text: [['user'], ['want'], ['crm'], ['mobile'], ['app'], ['donwloaded'], ['mobile'], ['user'], ['want'], ['crm'], ['mobile'], ['app'], ['donwloaded'], ['mobile']] k: 2324 len: <class 'list'> Data: ['access', 'denied', 'collaboration', 'platform', 'cannot', 'access', 'go', 'library', 'collaboration', 'platform', 'need', 'access', 'application', 'support', 'call', 'mail', 'transfer', 'member', 'put', 'call', 'hold', 'someone', 'else', 'available', 'search', 'message', 'getting', 'problem', 'persists', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'ebaad', 'ad', 'bd', 'aaa', 'date', 'time', 'pm', 'user', 'issue', 'type', 'user', 'permission'] processed_text: ['access', 'denied', 'collaboration', 'platform', 'cannot', 'access', 'go', 'library', 'collaboration', 'platform', 'need', 'access', 'application', 'support', 'call', 'mail', 'transfer', 'member', 'put', 'call', 'hold', 'someone', 'else', 'available', 'search', 'message', 'getting', 'problem', 'persists', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'ebaad', 'ad', 'bd', 'aaa', 'date', 'time', 'pm', 'user', 'issue', 'type', 'user', 'permission'] list_processed_text: [['access'], ['denied'], ['collaboration'], ['platform'], ['cannot'], ['access'], ['go'], ['library'], ['collaboration'], ['platform'], ['need'], ['access'], ['application'], ['support'], ['call'], ['mail'], ['transfer'], ['member'], ['put'], ['call'], ['hold'], ['someone'], ['else'], ['available'], ['search'], ['message'], ['getting'], ['problem'], ['persists'], ['contact'], ['support'], ['team'], ['include'], ['technical'], ['detail'], ['correlation'], ['id'], ['ebaad'], ['ad'], ['bd'], ['aaa'], ['date'], ['time'], ['pm'], ['user'], ['issue'], ['type'], ['user'], ['permission']] k: 2325 len: <class 'list'> Data: ['need', 'crm', 'added', 'outlook', 'ribbon', 'microsoft', 'outlook', 'crm', 'mfg', 'tooltion', 'need', 'crm', 'added', 'outlook', 'ribbon', 'microsoft', 'outlook', 'crm', 'mfg', 'tooltion'] processed_text: ['need', 'crm', 'added', 'outlook', 'ribbon', 'microsoft', 'outlook', 'crm', 'mfg', 'tooltion', 'need', 'crm', 'added', 'outlook', 'ribbon', 'microsoft', 'outlook', 'crm', 'mfg', 'tooltion'] list_processed_text: [['need'], ['crm'], ['added'], ['outlook'], ['ribbon'], ['microsoft'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['need'], ['crm'], ['added'], ['outlook'], ['ribbon'], ['microsoft'], ['outlook'], ['crm'], ['mfg'], ['tooltion']] k: 2326 len: <class 'list'> Data: ['power', 'management', 'query', 'power', 'management', 'query'] processed_text: ['power', 'management', 'query', 'power', 'management', 'query'] list_processed_text: [['power'], ['management'], ['query'], ['power'], ['management'], ['query']] k: 2327 len: <class 'list'> Data: ['vip', 'unable', 'load', 'collaboration', 'platform', 'site', 'unable', 'load', 'collaboration', 'platform', 'site'] processed_text: ['vip', 'unable', 'load', 'collaboration', 'platform', 'site', 'unable', 'load', 'collaboration', 'platform', 'site'] list_processed_text: [['vip'], ['unable'], ['load'], ['collaboration'], ['platform'], ['site'], ['unable'], ['load'], ['collaboration'], ['platform'], ['site']] k: 2328 len: <class 'list'> Data: ['company', 'home', 'page', 'loading', 'best'] processed_text: ['company', 'home', 'page', 'loading', 'best'] list_processed_text: [['company'], ['home'], ['page'], ['loading'], ['best']] k: 2329 len: <class 'list'> Data: ['usa', 'access', 'finance', 'corporateaccounting', 'partner', 'cash', 'bank', 'reconciliation', 'misc', 'cash', 'account', 'pjxclyhs', 'fcniljtu', 'pm', 'nwfodmhc', 'exurcwkm', 'jwoiyzfp', 'zlftrkpq', 'liz', 'domasky', 'trupthyti', 'fw', 'folder', 'access', 'ticket', 'please', 'usa', 'read', 'access', 'following', 'folder', 'finance', 'corporateaccounting', 'partner', 'cash', 'bank', 'reconciliation', 'misc', 'cash', 'account', 'kind'] processed_text: ['usa', 'access', 'finance', 'corporateaccounting', 'partner', 'cash', 'bank', 'reconciliation', 'misc', 'cash', 'account', 'pjxclyhs', 'fcniljtu', 'pm', 'nwfodmhc', 'exurcwkm', 'jwoiyzfp', 'zlftrkpq', 'liz', 'domasky', 'trupthyti', 'fw', 'folder', 'access', 'ticket', 'please', 'usa', 'read', 'access', 'following', 'folder', 'finance', 'corporateaccounting', 'partner', 'cash', 'bank', 'reconciliation', 'misc', 'cash', 'account', 'kind'] list_processed_text: [['usa'], ['access'], ['finance'], ['corporateaccounting'], ['partner'], ['cash'], ['bank'], ['reconciliation'], ['misc'], ['cash'], ['account'], ['pjxclyhs'], ['fcniljtu'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['jwoiyzfp'], ['zlftrkpq'], ['liz'], ['domasky'], ['trupthyti'], ['fw'], ['folder'], ['access'], ['ticket'], ['please'], ['usa'], ['read'], ['access'], ['following'], ['folder'], ['finance'], ['corporateaccounting'], ['partner'], ['cash'], ['bank'], ['reconciliation'], ['misc'], ['cash'], ['account'], ['kind']] k: 2330 len: <class 'list'> Data: ['lhqsm', 'patching', 'antivirus', 'sw', 'prod', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et', 'lhqsm', 'patching', 'antivirus', 'sw', 'prod', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et'] processed_text: ['lhqsm', 'patching', 'antivirus', 'sw', 'prod', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et', 'lhqsm', 'patching', 'antivirus', 'sw', 'prod', 'node', 'lhqsm', 'located', 'usa', 'since', 'pm', 'et'] list_processed_text: [['lhqsm'], ['patching'], ['antivirus'], ['sw'], ['prod'], ['node'], ['lhqsm'], ['located'], ['usa'], ['since'], ['pm'], ['et'], ['lhqsm'], ['patching'], ['antivirus'], ['sw'], ['prod'], ['node'], ['lhqsm'], ['located'], ['usa'], ['since'], ['pm'], ['et']] k: 2331 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 2332 len: <class 'list'> Data: ['collaboration', 'platform', 'working', 'server', 'busy', 'unavailable', 'collaboration', 'platform', 'working', 'server', 'busy', 'unavailable'] processed_text: ['collaboration', 'platform', 'working', 'server', 'busy', 'unavailable', 'collaboration', 'platform', 'working', 'server', 'busy', 'unavailable'] list_processed_text: [['collaboration'], ['platform'], ['working'], ['server'], ['busy'], ['unavailable'], ['collaboration'], ['platform'], ['working'], ['server'], ['busy'], ['unavailable']] k: 2333 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'royhtub', 'haujtimpton', 'unable', 'access', 'crm', 'thru', 'outlook'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'royhtub', 'haujtimpton', 'unable', 'access', 'crm', 'thru', 'outlook'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['royhtub'], ['haujtimpton'], ['unable'], ['access'], ['crm'], ['thru'], ['outlook']] k: 2334 len: <class 'list'> Data: ['change', 'owner', 'collaboration', 'platform', 'link', 'change', 'owner', 'collaboration', 'platform', 'link'] processed_text: ['change', 'owner', 'collaboration', 'platform', 'link', 'change', 'owner', 'collaboration', 'platform', 'link'] list_processed_text: [['change'], ['owner'], ['collaboration'], ['platform'], ['link'], ['change'], ['owner'], ['collaboration'], ['platform'], ['link']] k: 2335 len: <class 'list'> Data: ['coffee', 'spillage', 'keybankrd', 'coffee', 'spillage', 'keybankrd'] processed_text: ['coffee', 'spillage', 'keybankrd', 'coffee', 'spillage', 'keybankrd'] list_processed_text: [['coffee'], ['spillage'], ['keybankrd'], ['coffee'], ['spillage'], ['keybankrd']] k: 2336 len: <class 'list'> Data: ['please', 'check', 'marftgytin', 'pfner', 'userid', 'hoepftyhum', 'get', 'crm', 'error', 'message', 'trying', 'open', 'fore', 'please', 'check', 'marftgytin', 'pfner', 'userid', 'hoepftyhum', 'get', 'crm', 'error', 'message', 'trying', 'open', 'forecast', 'plan', 'dashbankrd'] processed_text: ['please', 'check', 'marftgytin', 'pfner', 'userid', 'hoepftyhum', 'get', 'crm', 'error', 'message', 'trying', 'open', 'fore', 'please', 'check', 'marftgytin', 'pfner', 'userid', 'hoepftyhum', 'get', 'crm', 'error', 'message', 'trying', 'open', 'forecast', 'plan', 'dashbankrd'] list_processed_text: [['please'], ['check'], ['marftgytin'], ['pfner'], ['userid'], ['hoepftyhum'], ['get'], ['crm'], ['error'], ['message'], ['trying'], ['open'], ['fore'], ['please'], ['check'], ['marftgytin'], ['pfner'], ['userid'], ['hoepftyhum'], ['get'], ['crm'], ['error'], ['message'], ['trying'], ['open'], ['forecast'], ['plan'], ['dashbankrd']] k: 2337 len: <class 'list'> Data: ['saved', 'excel', 'file', 'accidentally', 'saved', 'excel', 'spreadsheet', 'another', 'file', 'way', 'recover', 'day', 'ago'] processed_text: ['saved', 'excel', 'file', 'accidentally', 'saved', 'excel', 'spreadsheet', 'another', 'file', 'way', 'recover', 'day', 'ago'] list_processed_text: [['saved'], ['excel'], ['file'], ['accidentally'], ['saved'], ['excel'], ['spreadsheet'], ['another'], ['file'], ['way'], ['recover'], ['day'], ['ago']] k: 2338 len: <class 'list'> Data: ['query', 'crm', 'app', 'query', 'crm', 'app'] processed_text: ['query', 'crm', 'app', 'query', 'crm', 'app'] list_processed_text: [['query'], ['crm'], ['app'], ['query'], ['crm'], ['app']] k: 2339 len: <class 'list'> Data: ['printer', 'configure', 'id', 'printer', 'laptop'] processed_text: ['printer', 'configure', 'id', 'printer', 'laptop'] list_processed_text: [['printer'], ['configure'], ['id'], ['printer'], ['laptop']] k: 2340 len: <class 'list'> Data: ['locked', 'poruxnwb', 'yfaqhceo', 'hi', 'tried', 'changing', 'password', 'poruxnwb', 'yfaqhceo', 'yesterday', 'oracle', 'fusion', 'middleware', 'production', 'entering', 'old', 'new', 'password', 'log', 'box', 'kept', 'popping', 'let', 'log', 'somehow', 'backed', 'let', 'access', 'system', 'today', 'neither', 'old', 'new', 'password', 'work', 'happen', 'past', 'szewiguc', 'nvajphfm', 'would', 'unlock', 'someone', 'help', 'get', 'corrected'] processed_text: ['locked', 'poruxnwb', 'yfaqhceo', 'hi', 'tried', 'changing', 'password', 'poruxnwb', 'yfaqhceo', 'yesterday', 'oracle', 'fusion', 'middleware', 'production', 'entering', 'old', 'new', 'password', 'log', 'box', 'kept', 'popping', 'let', 'log', 'somehow', 'backed', 'let', 'access', 'system', 'today', 'neither', 'old', 'new', 'password', 'work', 'happen', 'past', 'szewiguc', 'nvajphfm', 'would', 'unlock', 'someone', 'help', 'get', 'corrected'] list_processed_text: [['locked'], ['poruxnwb'], ['yfaqhceo'], ['hi'], ['tried'], ['changing'], ['password'], ['poruxnwb'], ['yfaqhceo'], ['yesterday'], ['oracle'], ['fusion'], ['middleware'], ['production'], ['entering'], ['old'], ['new'], ['password'], ['log'], ['box'], ['kept'], ['popping'], ['let'], ['log'], ['somehow'], ['backed'], ['let'], ['access'], ['system'], ['today'], ['neither'], ['old'], ['new'], ['password'], ['work'], ['happen'], ['past'], ['szewiguc'], ['nvajphfm'], ['would'], ['unlock'], ['someone'], ['help'], ['get'], ['corrected']] k: 2341 len: <class 'list'> Data: ['audio', 'lat', 'audio', 'lat'] processed_text: ['audio', 'lat', 'audio', 'lat'] list_processed_text: [['audio'], ['lat'], ['audio'], ['lat']] k: 2342 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2343 len: <class 'list'> Data: ['circuit', 'outage', 'south', 'amerirtca', 'south', 'amerirtca', 'vpn', 'router', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'south', 'amerirtca', 'south', 'amerirtca', 'vpn', 'router', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['south'], ['amerirtca'], ['south'], ['amerirtca'], ['vpn'], ['router'], ['pm'], ['et'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2344 len: <class 'list'> Data: ['issue', 'user', 'profile', 'hostname', 'user', 'profile', 'seem', 'messed', 'server', 'creating', 'trying', 'investigate', 'monitoring', 'tool', 'monitoring', 'issue', 'came', 'across', 'error', 'message', 'attached', 'screenshot', 'please', 'investigate'] processed_text: ['issue', 'user', 'profile', 'hostname', 'user', 'profile', 'seem', 'messed', 'server', 'creating', 'trying', 'investigate', 'monitoring', 'tool', 'monitoring', 'issue', 'came', 'across', 'error', 'message', 'attached', 'screenshot', 'please', 'investigate'] list_processed_text: [['issue'], ['user'], ['profile'], ['hostname'], ['user'], ['profile'], ['seem'], ['messed'], ['server'], ['creating'], ['trying'], ['investigate'], ['monitoring'], ['tool'], ['monitoring'], ['issue'], ['came'], ['across'], ['error'], ['message'], ['attached'], ['screenshot'], ['please'], ['investigate']] k: 2345 len: <class 'list'> Data: ['renew', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'hello', 'discussed', 'please', 'assist', 'renewing', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'tool'] processed_text: ['renew', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'hello', 'discussed', 'please', 'assist', 'renewing', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'tool'] list_processed_text: [['renew'], ['internal'], ['certificate'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['hello'], ['discussed'], ['please'], ['assist'], ['renewing'], ['internal'], ['certificate'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['tool']] k: 2346 len: <class 'list'> Data: ['ticket', 'upadate', 'inplant', 'ticket', 'upadate', 'inplant'] processed_text: ['ticket', 'upadate', 'inplant', 'ticket', 'upadate', 'inplant'] list_processed_text: [['ticket'], ['upadate'], ['inplant'], ['ticket'], ['upadate'], ['inplant']] k: 2347 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2348 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2349 len: <class 'list'> Data: ['urgent', 'able', 'share', 'company', 'catalog', 'data', 'external', 'user', 'summary', 'help', 'collaboration', 'platform', 'issue', 'shared', 'directory', 'file', 'collaboration', 'platform', 'external', 'user', 'telling', 'shared', 'column'] processed_text: ['urgent', 'able', 'share', 'company', 'catalog', 'data', 'external', 'user', 'summary', 'help', 'collaboration', 'platform', 'issue', 'shared', 'directory', 'file', 'collaboration', 'platform', 'external', 'user', 'telling', 'shared', 'column'] list_processed_text: [['urgent'], ['able'], ['share'], ['company'], ['catalog'], ['data'], ['external'], ['user'], ['summary'], ['help'], ['collaboration'], ['platform'], ['issue'], ['shared'], ['directory'], ['file'], ['collaboration'], ['platform'], ['external'], ['user'], ['telling'], ['shared'], ['column']] k: 2350 len: <class 'list'> Data: ['user', 'usa', 'receiving', 'inbound', 'external', 'call', 'user', 'usa', 'receiving', 'inbound', 'external', 'call', 'internal', 'extension', 'extension', 'call', 'working', 'outbound', 'call', 'working'] processed_text: ['user', 'usa', 'receiving', 'inbound', 'external', 'call', 'user', 'usa', 'receiving', 'inbound', 'external', 'call', 'internal', 'extension', 'extension', 'call', 'working', 'outbound', 'call', 'working'] list_processed_text: [['user'], ['usa'], ['receiving'], ['inbound'], ['external'], ['call'], ['user'], ['usa'], ['receiving'], ['inbound'], ['external'], ['call'], ['internal'], ['extension'], ['extension'], ['call'], ['working'], ['outbound'], ['call'], ['working']] k: 2351 len: <class 'list'> Data: ['missing', 'email', 'access', 'previously', 'access', 'amerirtcas', 'hrssc', 'mail', 'box', 'outlook', 'longer', 'available', 'set', 'vpksyfco', 'chosuygq'] processed_text: ['missing', 'email', 'access', 'previously', 'access', 'amerirtcas', 'hrssc', 'mail', 'box', 'outlook', 'longer', 'available', 'set', 'vpksyfco', 'chosuygq'] list_processed_text: [['missing'], ['email'], ['access'], ['previously'], ['access'], ['amerirtcas'], ['hrssc'], ['mail'], ['box'], ['outlook'], ['longer'], ['available'], ['set'], ['vpksyfco'], ['chosuygq']] k: 2352 len: <class 'list'> Data: ['unlock', 'reset', 'password', 'user', 'vvamrtryot', 'inform', 'user', 'vvamrtryot', 'seems', 'expired', 'password', 'sid', 'sid', 'sid', 'proceed', 'checking', 'also', 'reset', 'password'] processed_text: ['unlock', 'reset', 'password', 'user', 'vvamrtryot', 'inform', 'user', 'vvamrtryot', 'seems', 'expired', 'password', 'sid', 'sid', 'sid', 'proceed', 'checking', 'also', 'reset', 'password'] list_processed_text: [['unlock'], ['reset'], ['password'], ['user'], ['vvamrtryot'], ['inform'], ['user'], ['vvamrtryot'], ['seems'], ['expired'], ['password'], ['sid'], ['sid'], ['sid'], ['proceed'], ['checking'], ['also'], ['reset'], ['password']] k: 2353 len: <class 'list'> Data: ['outlook', 'stuck', 'processing', 'outlook', 'stuck', 'processing'] processed_text: ['outlook', 'stuck', 'processing', 'outlook', 'stuck', 'processing'] list_processed_text: [['outlook'], ['stuck'], ['processing'], ['outlook'], ['stuck'], ['processing']] k: 2354 len: <class 'list'> Data: ['erp', 'gui', 'missing', 'login', 'option', 'xhaomnjl', 'ctusaqpr', 'erp', 'gui', 'missing', 'login', 'option', 'xhaomnjl', 'ctusaqpr'] processed_text: ['erp', 'gui', 'missing', 'login', 'option', 'xhaomnjl', 'ctusaqpr', 'erp', 'gui', 'missing', 'login', 'option', 'xhaomnjl', 'ctusaqpr'] list_processed_text: [['erp'], ['gui'], ['missing'], ['login'], ['option'], ['xhaomnjl'], ['ctusaqpr'], ['erp'], ['gui'], ['missing'], ['login'], ['option'], ['xhaomnjl'], ['ctusaqpr']] k: 2355 len: <class 'list'> Data: ['xhaomnjl', 'ctusaqpr', 'called', 'erp', 'account', 'unlock', 'xhaomnjl', 'ctusaqpr', 'called', 'erp', 'account', 'unlock'] processed_text: ['xhaomnjl', 'ctusaqpr', 'called', 'erp', 'account', 'unlock', 'xhaomnjl', 'ctusaqpr', 'called', 'erp', 'account', 'unlock'] list_processed_text: [['xhaomnjl'], ['ctusaqpr'], ['called'], ['erp'], ['account'], ['unlock'], ['xhaomnjl'], ['ctusaqpr'], ['called'], ['erp'], ['account'], ['unlock']] k: 2356 len: <class 'list'> Data: ['window', 'acccount', 'lockout', 'window', 'acccount', 'lockout'] processed_text: ['window', 'acccount', 'lockout', 'window', 'acccount', 'lockout'] list_processed_text: [['window'], ['acccount'], ['lockout'], ['window'], ['acccount'], ['lockout']] k: 2357 len: <class 'list'> Data: ['update', 'inwarehouse', 'tool', 'document', 'list', 'sale', 'org', 'germany', 'office', 'move', 'main', 'inwarehouse', 'tool', 'printer', 'fdv', 'got', 'temporarily', 'totally', 'deleted', 'accident', 'erp', 'big', 'bulk', 'inwarehouse', 'tool', 'already', 'reissued', 'billing', 'document', 'dated', 'output', 'yet', 'see', 'list', 'attached', 'update', 'done', 'billing', 'via', 'vf', 'correct', 'output', 'type', 'get', 'automatically', 'added', 'therefore', 'need', 'mass', 'update', 'done', 'go', 'change', 'mode', 'save', 'missing', 'printout', 'get', 'added', 'issued', 'appropriate', 'printer', 'billing', 'existing', 'output', 'might', 'amongst', 'list', 'good', 'action', 'required', 'important', 'mass', 'update', 'done', 'please', 'regular', 'billing', 'job', 'time', 'note', 'issued', 'document', 'erp', 'spool', 'list', 'billing', 'attached', 'might', 'also', 'document', 'output', 'assigned', 'printer', 'fdv', 'billing', 'correct', 'accounting', 'department', 'however', 'would', 'need', 'list', 'billing', 'output', 'would', 'get', 'generated', 'customer', 'might', 'get', 'reminder', 'dunnings', 'need', 'clearly', 'trace', 'billing', 'document', 'output', 'generated', 'audit', 'reason', 'need', 'get', 'print', 'out', 'soon', 'possible', 'please', 'help', 'support', 'request', 'soon', 'possible', 'customer', 'get', 'annoyed', 'wrong', 'dunnings', 'question', 'hesitate', 'contact'] processed_text: ['update', 'inwarehouse', 'tool', 'document', 'list', 'sale', 'org', 'germany', 'office', 'move', 'main', 'inwarehouse', 'tool', 'printer', 'fdv', 'got', 'temporarily', 'totally', 'deleted', 'accident', 'erp', 'big', 'bulk', 'inwarehouse', 'tool', 'already', 'reissued', 'billing', 'document', 'dated', 'output', 'yet', 'see', 'list', 'attached', 'update', 'done', 'billing', 'via', 'vf', 'correct', 'output', 'type', 'get', 'automatically', 'added', 'therefore', 'need', 'mass', 'update', 'done', 'go', 'change', 'mode', 'save', 'missing', 'printout', 'get', 'added', 'issued', 'appropriate', 'printer', 'billing', 'existing', 'output', 'might', 'amongst', 'list', 'good', 'action', 'required', 'important', 'mass', 'update', 'done', 'please', 'regular', 'billing', 'job', 'time', 'note', 'issued', 'document', 'erp', 'spool', 'list', 'billing', 'attached', 'might', 'also', 'document', 'output', 'assigned', 'printer', 'fdv', 'billing', 'correct', 'accounting', 'department', 'however', 'would', 'need', 'list', 'billing', 'output', 'would', 'get', 'generated', 'customer', 'might', 'get', 'reminder', 'dunnings', 'need', 'clearly', 'trace', 'billing', 'document', 'output', 'generated', 'audit', 'reason', 'need', 'get', 'print', 'out', 'soon', 'possible', 'please', 'help', 'support', 'request', 'soon', 'possible', 'customer', 'get', 'annoyed', 'wrong', 'dunnings', 'question', 'hesitate', 'contact'] list_processed_text: [['update'], ['inwarehouse'], ['tool'], ['document'], ['list'], ['sale'], ['org'], ['germany'], ['office'], ['move'], ['main'], ['inwarehouse'], ['tool'], ['printer'], ['fdv'], ['got'], ['temporarily'], ['totally'], ['deleted'], ['accident'], ['erp'], ['big'], ['bulk'], ['inwarehouse'], ['tool'], ['already'], ['reissued'], ['billing'], ['document'], ['dated'], ['output'], ['yet'], ['see'], ['list'], ['attached'], ['update'], ['done'], ['billing'], ['via'], ['vf'], ['correct'], ['output'], ['type'], ['get'], ['automatically'], ['added'], ['therefore'], ['need'], ['mass'], ['update'], ['done'], ['go'], ['change'], ['mode'], ['save'], ['missing'], ['printout'], ['get'], ['added'], ['issued'], ['appropriate'], ['printer'], ['billing'], ['existing'], ['output'], ['might'], ['amongst'], ['list'], ['good'], ['action'], ['required'], ['important'], ['mass'], ['update'], ['done'], ['please'], ['regular'], ['billing'], ['job'], ['time'], ['note'], ['issued'], ['document'], ['erp'], ['spool'], ['list'], ['billing'], ['attached'], ['might'], ['also'], ['document'], ['output'], ['assigned'], ['printer'], ['fdv'], ['billing'], ['correct'], ['accounting'], ['department'], ['however'], ['would'], ['need'], ['list'], ['billing'], ['output'], ['would'], ['get'], ['generated'], ['customer'], ['might'], ['get'], ['reminder'], ['dunnings'], ['need'], ['clearly'], ['trace'], ['billing'], ['document'], ['output'], ['generated'], ['audit'], ['reason'], ['need'], ['get'], ['print'], ['out'], ['soon'], ['possible'], ['please'], ['help'], ['support'], ['request'], ['soon'], ['possible'], ['customer'], ['get'], ['annoyed'], ['wrong'], ['dunnings'], ['question'], ['hesitate'], ['contact']] k: 2358 len: <class 'list'> Data: ['client', 'laptop', 'turn', 'client', 'laptop', 'turn'] processed_text: ['client', 'laptop', 'turn', 'client', 'laptop', 'turn'] list_processed_text: [['client'], ['laptop'], ['turn'], ['client'], ['laptop'], ['turn']] k: 2359 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2360 len: <class 'list'> Data: ['product', 'management', 'master', 'key', 'figure', 'dierppear', 'sample', 'refresh', 'refresh', 'best'] processed_text: ['product', 'management', 'master', 'key', 'figure', 'dierppear', 'sample', 'refresh', 'refresh', 'best'] list_processed_text: [['product'], ['management'], ['master'], ['key'], ['figure'], ['dierppear'], ['sample'], ['refresh'], ['refresh'], ['best']] k: 2361 len: <class 'list'> Data: ['received', 'error', 'trying', 'log', 'ethic', 'q', 'error', 'received', 'say', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory'] processed_text: ['received', 'error', 'trying', 'log', 'ethic', 'q', 'error', 'received', 'say', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory'] list_processed_text: [['received'], ['error'], ['trying'], ['log'], ['ethic'], ['q'], ['error'], ['received'], ['say'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory']] k: 2362 len: <class 'list'> Data: ['email', 'address', 'newly', 'blocked', 'sending', 'attachment', 'please', 'remove', 'block', 'email', 'address', 'newly', 'blocked', 'sending', 'attachment', 'please', 'remove', 'block'] processed_text: ['email', 'address', 'newly', 'blocked', 'sending', 'attachment', 'please', 'remove', 'block', 'email', 'address', 'newly', 'blocked', 'sending', 'attachment', 'please', 'remove', 'block'] list_processed_text: [['email'], ['address'], ['newly'], ['blocked'], ['sending'], ['attachment'], ['please'], ['remove'], ['block'], ['email'], ['address'], ['newly'], ['blocked'], ['sending'], ['attachment'], ['please'], ['remove'], ['block']] k: 2363 len: <class 'list'> Data: ['erp', 'font', 'small', 'received', 'new', 'laptop', 'latitude', 'image', 'installation', 'erp', 'little', 'definition', 'try', 'logon', 'see', 'little', 'charatcher', 'indication'] processed_text: ['erp', 'font', 'small', 'received', 'new', 'laptop', 'latitude', 'image', 'installation', 'erp', 'little', 'definition', 'try', 'logon', 'see', 'little', 'charatcher', 'indication'] list_processed_text: [['erp'], ['font'], ['small'], ['received'], ['new'], ['laptop'], ['latitude'], ['image'], ['installation'], ['erp'], ['little'], ['definition'], ['try'], ['logon'], ['see'], ['little'], ['charatcher'], ['indication']] k: 2364 len: <class 'list'> Data: ['skype', 'login', 'changing', 'password', 'hello', 'recently', 'changed', 'company', 'network', 'password', 'log', 'email', 'vpn', 'etc', 'cannot', 'sign', 'skype', 'business', 'anymore', 'get', 'notification', 'saying', 'problem', 'acquiring', 'personal', 'certificate', 'assistance', 'provide', 'would', 'greatly', 'appreciated'] processed_text: ['skype', 'login', 'changing', 'password', 'hello', 'recently', 'changed', 'company', 'network', 'password', 'log', 'email', 'vpn', 'etc', 'cannot', 'sign', 'skype', 'business', 'anymore', 'get', 'notification', 'saying', 'problem', 'acquiring', 'personal', 'certificate', 'assistance', 'provide', 'would', 'greatly', 'appreciated'] list_processed_text: [['skype'], ['login'], ['changing'], ['password'], ['hello'], ['recently'], ['changed'], ['company'], ['network'], ['password'], ['log'], ['email'], ['vpn'], ['etc'], ['cannot'], ['sign'], ['skype'], ['business'], ['anymore'], ['get'], ['notification'], ['saying'], ['problem'], ['acquiring'], ['personal'], ['certificate'], ['assistance'], ['provide'], ['would'], ['greatly'], ['appreciated']] k: 2365 len: <class 'list'> Data: ['second', 'monitor', 'working', 'hello', 'second', 'monitor', 'stopped', 'working', 'cannot', 'get', 'picture', 'someone', 'please', 'come', 'take', 'look'] processed_text: ['second', 'monitor', 'working', 'hello', 'second', 'monitor', 'stopped', 'working', 'cannot', 'get', 'picture', 'someone', 'please', 'come', 'take', 'look'] list_processed_text: [['second'], ['monitor'], ['working'], ['hello'], ['second'], ['monitor'], ['stopped'], ['working'], ['cannot'], ['get'], ['picture'], ['someone'], ['please'], ['come'], ['take'], ['look']] k: 2366 len: <class 'list'> Data: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'sid', 'erp', 'production', 'sid', 'bw', 'production'] processed_text: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'sid', 'erp', 'production', 'sid', 'bw', 'production'] list_processed_text: [['reset'], ['password'], ['fueiklyv'], ['jargqpkm'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password'], ['sid'], ['erp'], ['production'], ['sid'], ['bw'], ['production']] k: 2367 len: <class 'list'> Data: ['need', 'removed', 'profile', 'updated', 'profile', 'new', 'single', 'sign', 'yet', 'still', 'appears', 'affected', 'number', 'outlook', 'well', 'anyone', 'contact', 'list', 'number', 'associated', 'profile', 'employee', 'search', 'outlook', 'see', 'number'] processed_text: ['need', 'removed', 'profile', 'updated', 'profile', 'new', 'single', 'sign', 'yet', 'still', 'appears', 'affected', 'number', 'outlook', 'well', 'anyone', 'contact', 'list', 'number', 'associated', 'profile', 'employee', 'search', 'outlook', 'see', 'number'] list_processed_text: [['need'], ['removed'], ['profile'], ['updated'], ['profile'], ['new'], ['single'], ['sign'], ['yet'], ['still'], ['appears'], ['affected'], ['number'], ['outlook'], ['well'], ['anyone'], ['contact'], ['list'], ['number'], ['associated'], ['profile'], ['employee'], ['search'], ['outlook'], ['see'], ['number']] k: 2368 len: <class 'list'> Data: ['password', 'reset', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'donnathyr', 'last', 'name', 'welling', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['password', 'reset', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'donnathyr', 'last', 'name', 'welling', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['password'], ['reset'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['donnathyr'], ['last'], ['name'], ['welling'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 2369 len: <class 'list'> Data: ['eu', 'tool', 'w', 'ewew', 'funktioniert', 'nicht', 'jionmpsf', 'wnkpzcmv', 'eu', 'tool', 'w', 'ewew', 'funktioniert', 'nicht', 'jionmpsf', 'wnkpzcmv'] processed_text: ['eu', 'tool', 'w', 'ewew', 'funktioniert', 'nicht', 'jionmpsf', 'wnkpzcmv', 'eu', 'tool', 'w', 'ewew', 'funktioniert', 'nicht', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['eu'], ['tool'], ['w'], ['ewew'], ['funktioniert'], ['nicht'], ['jionmpsf'], ['wnkpzcmv'], ['eu'], ['tool'], ['w'], ['ewew'], ['funktioniert'], ['nicht'], ['jionmpsf'], ['wnkpzcmv']] k: 2370 len: <class 'list'> Data: ['bluescreen', 'ewew', 'wrcktgbd', 'wzrgyunp', 'hello', 'pc', 'show', 'blue', 'side', 'lot', 'white', 'letter', 'pc', 'type', 'optiplex', 'please', 'help', 'best'] processed_text: ['bluescreen', 'ewew', 'wrcktgbd', 'wzrgyunp', 'hello', 'pc', 'show', 'blue', 'side', 'lot', 'white', 'letter', 'pc', 'type', 'optiplex', 'please', 'help', 'best'] list_processed_text: [['bluescreen'], ['ewew'], ['wrcktgbd'], ['wzrgyunp'], ['hello'], ['pc'], ['show'], ['blue'], ['side'], ['lot'], ['white'], ['letter'], ['pc'], ['type'], ['optiplex'], ['please'], ['help'], ['best']] k: 2371 len: <class 'list'> Data: ['key', 'figure', 'dierppears', 'urgent', 'refer', 'inplant', 'updating', 'existing', 'product', 'management', 'master', 'key', 'figure', 'dierppear', 'shown', 'column', 'also', 'column', 'dierppear', 'download', 'distrtgoyed', 'last', 'month', 'issue', 'anybody', 'made', 'change', 'product', 'management', 'master', 'pallutyr', 'pande', 'corrected', 'back', 'maybe', 'involve', 'bussy', 'month', 'end', 'data', 'immediately', 'need', 'correct', 'setting', 'sample', 'refresh', 'best'] processed_text: ['key', 'figure', 'dierppears', 'urgent', 'refer', 'inplant', 'updating', 'existing', 'product', 'management', 'master', 'key', 'figure', 'dierppear', 'shown', 'column', 'also', 'column', 'dierppear', 'download', 'distrtgoyed', 'last', 'month', 'issue', 'anybody', 'made', 'change', 'product', 'management', 'master', 'pallutyr', 'pande', 'corrected', 'back', 'maybe', 'involve', 'bussy', 'month', 'end', 'data', 'immediately', 'need', 'correct', 'setting', 'sample', 'refresh', 'best'] list_processed_text: [['key'], ['figure'], ['dierppears'], ['urgent'], ['refer'], ['inplant'], ['updating'], ['existing'], ['product'], ['management'], ['master'], ['key'], ['figure'], ['dierppear'], ['shown'], ['column'], ['also'], ['column'], ['dierppear'], ['download'], ['distrtgoyed'], ['last'], ['month'], ['issue'], ['anybody'], ['made'], ['change'], ['product'], ['management'], ['master'], ['pallutyr'], ['pande'], ['corrected'], ['back'], ['maybe'], ['involve'], ['bussy'], ['month'], ['end'], ['data'], ['immediately'], ['need'], ['correct'], ['setting'], ['sample'], ['refresh'], ['best']] k: 2372 len: <class 'list'> Data: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] processed_text: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] list_processed_text: [['skype'], ['issue'], ['personal'], ['certificate'], ['error'], ['skype'], ['issue'], ['personal'], ['certificate'], ['error']] k: 2373 len: <class 'list'> Data: ['password', 'reset', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'hyeonthygwon', 'last', 'name', 'lethre', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['password', 'reset', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'hyeonthygwon', 'last', 'name', 'lethre', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['password'], ['reset'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['hyeonthygwon'], ['last'], ['name'], ['lethre'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 2374 len: <class 'list'> Data: ['account', 'got', 'locked', 'account', 'got', 'locked'] processed_text: ['account', 'got', 'locked', 'account', 'got', 'locked'] list_processed_text: [['account'], ['got'], ['locked'], ['account'], ['got'], ['locked']] k: 2375 len: <class 'list'> Data: ['system', 'took', 'long', 'time', 'respond', 'password', 'reset', 'system', 'took', 'long', 'time', 'respond', 'password', 'reset', 'stack', 'guard', 'error', 'came', 'outlook'] processed_text: ['system', 'took', 'long', 'time', 'respond', 'password', 'reset', 'system', 'took', 'long', 'time', 'respond', 'password', 'reset', 'stack', 'guard', 'error', 'came', 'outlook'] list_processed_text: [['system'], ['took'], ['long'], ['time'], ['respond'], ['password'], ['reset'], ['system'], ['took'], ['long'], ['time'], ['respond'], ['password'], ['reset'], ['stack'], ['guard'], ['error'], ['came'], ['outlook']] k: 2376 len: <class 'list'> Data: ['user', 'lndypaqg', 'dhqwtcsr', 'gogtyekthyto', 'password', 'erp', 'sid', 'verggermany', 'user', 'lndypaqg', 'dhqwtcsr', 'gogtyekthyto', 'password', 'erp', 'sid', 'verggermany'] processed_text: ['user', 'lndypaqg', 'dhqwtcsr', 'gogtyekthyto', 'password', 'erp', 'sid', 'verggermany', 'user', 'lndypaqg', 'dhqwtcsr', 'gogtyekthyto', 'password', 'erp', 'sid', 'verggermany'] list_processed_text: [['user'], ['lndypaqg'], ['dhqwtcsr'], ['gogtyekthyto'], ['password'], ['erp'], ['sid'], ['verggermany'], ['user'], ['lndypaqg'], ['dhqwtcsr'], ['gogtyekthyto'], ['password'], ['erp'], ['sid'], ['verggermany']] k: 2377 len: <class 'list'> Data: ['unable', 'connect', 'expense', 'reimbursement', 'webpage', 'unable', 'connect', 'expense', 'reimbursement', 'webpage', 'page', 'fails', 'load'] processed_text: ['unable', 'connect', 'expense', 'reimbursement', 'webpage', 'unable', 'connect', 'expense', 'reimbursement', 'webpage', 'page', 'fails', 'load'] list_processed_text: [['unable'], ['connect'], ['expense'], ['reimbursement'], ['webpage'], ['unable'], ['connect'], ['expense'], ['reimbursement'], ['webpage'], ['page'], ['fails'], ['load']] k: 2378 len: <class 'list'> Data: ['distributor', 'tool', 'list', 'favorite', 'customer', 'issue', 'occurred', 'recent', 'password', 'change'] processed_text: ['distributor', 'tool', 'list', 'favorite', 'customer', 'issue', 'occurred', 'recent', 'password', 'change'] list_processed_text: [['distributor'], ['tool'], ['list'], ['favorite'], ['customer'], ['issue'], ['occurred'], ['recent'], ['password'], ['change']] k: 2379 len: <class 'list'> Data: ['gurts', 'lrupiepens', 'email', 'forwarding', 'gurts', 'lrupiepens', 'left', 'company', 'usa', 'il', 'facility', 'assuming', 'partial', 'responsibility', 'gu', 'please', 'set', 'email', 'forwarding', 'correspondence', 'email', 'address', 'please', 'advise', 'anything', 'else', 'required', 'part', 'manager', 'xpoqcrtb', 'zwrypjqv'] processed_text: ['gurts', 'lrupiepens', 'email', 'forwarding', 'gurts', 'lrupiepens', 'left', 'company', 'usa', 'il', 'facility', 'assuming', 'partial', 'responsibility', 'gu', 'please', 'set', 'email', 'forwarding', 'correspondence', 'email', 'address', 'please', 'advise', 'anything', 'else', 'required', 'part', 'manager', 'xpoqcrtb', 'zwrypjqv'] list_processed_text: [['gurts'], ['lrupiepens'], ['email'], ['forwarding'], ['gurts'], ['lrupiepens'], ['left'], ['company'], ['usa'], ['il'], ['facility'], ['assuming'], ['partial'], ['responsibility'], ['gu'], ['please'], ['set'], ['email'], ['forwarding'], ['correspondence'], ['email'], ['address'], ['please'], ['advise'], ['anything'], ['else'], ['required'], ['part'], ['manager'], ['xpoqcrtb'], ['zwrypjqv']] k: 2380 len: <class 'list'> Data: ['please', 'reset', 'password', 'hana', 'sid', 'sid', 'sid', 'please', 'reset', 'password', 'hana', 'sid', 'sid', 'sid', 'userid', 'bathishry'] processed_text: ['please', 'reset', 'password', 'hana', 'sid', 'sid', 'sid', 'please', 'reset', 'password', 'hana', 'sid', 'sid', 'sid', 'userid', 'bathishry'] list_processed_text: [['please'], ['reset'], ['password'], ['hana'], ['sid'], ['sid'], ['sid'], ['please'], ['reset'], ['password'], ['hana'], ['sid'], ['sid'], ['sid'], ['userid'], ['bathishry']] k: 2381 len: <class 'list'> Data: ['erp', 'password', 'reset', 'erp', 'sid', 'erp', 'password', 'reset', 'erp', 'sid'] processed_text: ['erp', 'password', 'reset', 'erp', 'sid', 'erp', 'password', 'reset', 'erp', 'sid'] list_processed_text: [['erp'], ['password'], ['reset'], ['erp'], ['sid'], ['erp'], ['password'], ['reset'], ['erp'], ['sid']] k: 2382 len: <class 'list'> Data: ['hostname', 'rfcserver', 'exe', 'process', 'count', 'service', 'et', 'hostname', 'rfcserver', 'exe', 'process', 'count', 'service', 'et'] processed_text: ['hostname', 'rfcserver', 'exe', 'process', 'count', 'service', 'et', 'hostname', 'rfcserver', 'exe', 'process', 'count', 'service', 'et'] list_processed_text: [['hostname'], ['rfcserver'], ['exe'], ['process'], ['count'], ['service'], ['et'], ['hostname'], ['rfcserver'], ['exe'], ['process'], ['count'], ['service'], ['et']] k: 2383 len: <class 'list'> Data: ['xceliron', 'process', 'po', 'auto', 'received', 'working', 'designed', 'resulting', 'blocked', 'inwarehouse', 'tool', 'xceliron', 'process', 'po', 'auto', 'received', 'working', 'designed', 'resulting', 'blocked', 'inwarehouse', 'tool', 'resulting', 'additional', 'work', 'ap', 'buyer', 'cannot', 'control', 'process', 'please', 'correct', 'missing', 'good', 'receipt', 'attached', 'file', 'make', 'permanent', 'correction', 'good', 'receipt', 'done', 'timely', 'fashion', 'going', 'forward', 'please', 'close', 'ticket', 'permanent', 'fix', 'uacyltoe', 'hxgayczeed', 'place'] processed_text: ['xceliron', 'process', 'po', 'auto', 'received', 'working', 'designed', 'resulting', 'blocked', 'inwarehouse', 'tool', 'xceliron', 'process', 'po', 'auto', 'received', 'working', 'designed', 'resulting', 'blocked', 'inwarehouse', 'tool', 'resulting', 'additional', 'work', 'ap', 'buyer', 'cannot', 'control', 'process', 'please', 'correct', 'missing', 'good', 'receipt', 'attached', 'file', 'make', 'permanent', 'correction', 'good', 'receipt', 'done', 'timely', 'fashion', 'going', 'forward', 'please', 'close', 'ticket', 'permanent', 'fix', 'uacyltoe', 'hxgayczeed', 'place'] list_processed_text: [['xceliron'], ['process'], ['po'], ['auto'], ['received'], ['working'], ['designed'], ['resulting'], ['blocked'], ['inwarehouse'], ['tool'], ['xceliron'], ['process'], ['po'], ['auto'], ['received'], ['working'], ['designed'], ['resulting'], ['blocked'], ['inwarehouse'], ['tool'], ['resulting'], ['additional'], ['work'], ['ap'], ['buyer'], ['cannot'], ['control'], ['process'], ['please'], ['correct'], ['missing'], ['good'], ['receipt'], ['attached'], ['file'], ['make'], ['permanent'], ['correction'], ['good'], ['receipt'], ['done'], ['timely'], ['fashion'], ['going'], ['forward'], ['please'], ['close'], ['ticket'], ['permanent'], ['fix'], ['uacyltoe'], ['hxgayczeed'], ['place']] k: 2384 len: <class 'list'> Data: ['crm', 'app', 'io', 'crm', 'app', 'io'] processed_text: ['crm', 'app', 'io', 'crm', 'app', 'io'] list_processed_text: [['crm'], ['app'], ['io'], ['crm'], ['app'], ['io']] k: 2385 len: <class 'list'> Data: ['schnafk', 'docking', 'station', 'need', 'replacement', 'desk', 'cubicle', 'number', 'customer', 'service', 'department', 'usa', 'phone', 'number', 'laptop', 'model', 'latitude', 'direct', 'connection', 'monitor', 'work', 'docking', 'station', 'go'] processed_text: ['schnafk', 'docking', 'station', 'need', 'replacement', 'desk', 'cubicle', 'number', 'customer', 'service', 'department', 'usa', 'phone', 'number', 'laptop', 'model', 'latitude', 'direct', 'connection', 'monitor', 'work', 'docking', 'station', 'go'] list_processed_text: [['schnafk'], ['docking'], ['station'], ['need'], ['replacement'], ['desk'], ['cubicle'], ['number'], ['customer'], ['service'], ['department'], ['usa'], ['phone'], ['number'], ['laptop'], ['model'], ['latitude'], ['direct'], ['connection'], ['monitor'], ['work'], ['docking'], ['station'], ['go']] k: 2386 len: <class 'list'> Data: ['collaboration', 'platform', 'access', 'hello', 'project', 'documentation', 'collaboration', 'platform', 'link', 'longer', 'accessible', 'error', 'message', 'jaytya', 'created', 'left', 'meanwhile', 'perhaps', 'deactivation', 'account', 'could', 'reason', 'anyway', 'please', 'help', 'get', 'access', 'provide', 'instruction', 'change', 'owner'] processed_text: ['collaboration', 'platform', 'access', 'hello', 'project', 'documentation', 'collaboration', 'platform', 'link', 'longer', 'accessible', 'error', 'message', 'jaytya', 'created', 'left', 'meanwhile', 'perhaps', 'deactivation', 'account', 'could', 'reason', 'anyway', 'please', 'help', 'get', 'access', 'provide', 'instruction', 'change', 'owner'] list_processed_text: [['collaboration'], ['platform'], ['access'], ['hello'], ['project'], ['documentation'], ['collaboration'], ['platform'], ['link'], ['longer'], ['accessible'], ['error'], ['message'], ['jaytya'], ['created'], ['left'], ['meanwhile'], ['perhaps'], ['deactivation'], ['account'], ['could'], ['reason'], ['anyway'], ['please'], ['help'], ['get'], ['access'], ['provide'], ['instruction'], ['change'], ['owner']] k: 2387 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] processed_text: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] list_processed_text: [['unable'], ['sign'], ['skype'], ['unable'], ['sign'], ['skype']] k: 2388 len: <class 'list'> Data: ['view', 'drawing', 'engineering', 'tool', 'erp', 'gui', 'business', 'client', 'take', 'long', 'normal', 'since', 'couple', 'day', 'see', 'huge', 'performance', 'issue', 'fue', 'view', 'drawing', 'erp'] processed_text: ['view', 'drawing', 'engineering', 'tool', 'erp', 'gui', 'business', 'client', 'take', 'long', 'normal', 'since', 'couple', 'day', 'see', 'huge', 'performance', 'issue', 'fue', 'view', 'drawing', 'erp'] list_processed_text: [['view'], ['drawing'], ['engineering'], ['tool'], ['erp'], ['gui'], ['business'], ['client'], ['take'], ['long'], ['normal'], ['since'], ['couple'], ['day'], ['see'], ['huge'], ['performance'], ['issue'], ['fue'], ['view'], ['drawing'], ['erp']] k: 2389 len: <class 'list'> Data: ['updation', 'required', 'flash', 'player', 'hello', 'please', 'find', 'compatibility', 'check', 'getting', 'launching', 'ethic', 'kindly', 'go', 'thru', 'needful', 'system', 'detail', 'provided', 'quick', 'view'] processed_text: ['updation', 'required', 'flash', 'player', 'hello', 'please', 'find', 'compatibility', 'check', 'getting', 'launching', 'ethic', 'kindly', 'go', 'thru', 'needful', 'system', 'detail', 'provided', 'quick', 'view'] list_processed_text: [['updation'], ['required'], ['flash'], ['player'], ['hello'], ['please'], ['find'], ['compatibility'], ['check'], ['getting'], ['launching'], ['ethic'], ['kindly'], ['go'], ['thru'], ['needful'], ['system'], ['detail'], ['provided'], ['quick'], ['view']] k: 2390 len: <class 'list'> Data: ['plm', 'engineering', 'tool', 'pdf', 'file', 'cannot', 'opened', 'error', 'attached', 'hello', 'opening', 'pdf', 'file', 'engineering', 'tool', 'take', 'extremely', 'long', 'time', 'nowadays', 'sometimes', 'message', 'also', 'appears', 'without', 'file', 'opened', 'kind', 'regard'] processed_text: ['plm', 'engineering', 'tool', 'pdf', 'file', 'cannot', 'opened', 'error', 'attached', 'hello', 'opening', 'pdf', 'file', 'engineering', 'tool', 'take', 'extremely', 'long', 'time', 'nowadays', 'sometimes', 'message', 'also', 'appears', 'without', 'file', 'opened', 'kind', 'regard'] list_processed_text: [['plm'], ['engineering'], ['tool'], ['pdf'], ['file'], ['cannot'], ['opened'], ['error'], ['attached'], ['hello'], ['opening'], ['pdf'], ['file'], ['engineering'], ['tool'], ['take'], ['extremely'], ['long'], ['time'], ['nowadays'], ['sometimes'], ['message'], ['also'], ['appears'], ['without'], ['file'], ['opened'], ['kind'], ['regard']] k: 2391 len: <class 'list'> Data: ['info', 'type', 'missing', 'personal', 'number', 'qkmvosen', 'opundxsk', 'pm', 'nyifqpmv', 'kfirxjag', 'travel', 'expense', 'manager', 'hello', 'transaktion', 'pr', 'work', 'personal', 'number', 'please', 'check'] processed_text: ['info', 'type', 'missing', 'personal', 'number', 'qkmvosen', 'opundxsk', 'pm', 'nyifqpmv', 'kfirxjag', 'travel', 'expense', 'manager', 'hello', 'transaktion', 'pr', 'work', 'personal', 'number', 'please', 'check'] list_processed_text: [['info'], ['type'], ['missing'], ['personal'], ['number'], ['qkmvosen'], ['opundxsk'], ['pm'], ['nyifqpmv'], ['kfirxjag'], ['travel'], ['expense'], ['manager'], ['hello'], ['transaktion'], ['pr'], ['work'], ['personal'], ['number'], ['please'], ['check']] k: 2392 len: <class 'list'> Data: ['problem', 'ie', 'vzqomdgt', 'jwoqbuml', 'problem', 'ie', 'vzqomdgt', 'jwoqbuml'] processed_text: ['problem', 'ie', 'vzqomdgt', 'jwoqbuml', 'problem', 'ie', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['problem'], ['ie'], ['vzqomdgt'], ['jwoqbuml'], ['problem'], ['ie'], ['vzqomdgt'], ['jwoqbuml']] k: 2393 len: <class 'list'> Data: ['sinic', 'general', 'error', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'query', 'timeout', 'jionmpsf', 'wnkpzcmv', 'sinic', 'general', 'error', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'query', 'timeout', 'jionmpsf', 'wnkpzcmv'] processed_text: ['sinic', 'general', 'error', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'query', 'timeout', 'jionmpsf', 'wnkpzcmv', 'sinic', 'general', 'error', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'query', 'timeout', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['sinic'], ['general'], ['error'], ['odbc'], ['vmsliazh'], ['ltksxmyv'], ['driver'], ['query'], ['timeout'], ['jionmpsf'], ['wnkpzcmv'], ['sinic'], ['general'], ['error'], ['odbc'], ['vmsliazh'], ['ltksxmyv'], ['driver'], ['query'], ['timeout'], ['jionmpsf'], ['wnkpzcmv']] k: 2394 len: <class 'list'> Data: ['problem', 'printer', 'fdyietau', 'dvsyxwbu', 'hello', 'copier', 'classroom', 'also', 'defective', 'minolta', 'please', 'look'] processed_text: ['problem', 'printer', 'fdyietau', 'dvsyxwbu', 'hello', 'copier', 'classroom', 'also', 'defective', 'minolta', 'please', 'look'] list_processed_text: [['problem'], ['printer'], ['fdyietau'], ['dvsyxwbu'], ['hello'], ['copier'], ['classroom'], ['also'], ['defective'], ['minolta'], ['please'], ['look']] k: 2395 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2396 len: <class 'list'> Data: ['msd', 'crm', 'urgent', 'help', 'required', 'cant', 'link', 'appointment', 'account', 'crm', 'tab', 'outlook', 'enter', 'appointment', 'go', 'set', 'regarding', 'put', 'account', 'nothing', 'come', 'account', 'appointment'] processed_text: ['msd', 'crm', 'urgent', 'help', 'required', 'cant', 'link', 'appointment', 'account', 'crm', 'tab', 'outlook', 'enter', 'appointment', 'go', 'set', 'regarding', 'put', 'account', 'nothing', 'come', 'account', 'appointment'] list_processed_text: [['msd'], ['crm'], ['urgent'], ['help'], ['required'], ['cant'], ['link'], ['appointment'], ['account'], ['crm'], ['tab'], ['outlook'], ['enter'], ['appointment'], ['go'], ['set'], ['regarding'], ['put'], ['account'], ['nothing'], ['come'], ['account'], ['appointment']] k: 2397 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2398 len: <class 'list'> Data: ['outlook', 'issue', 'pull', 'send', 'email', 'delay', 'hour', 'login', 'peathryucoj', 'issue', 'email', 'outlook', 'today', 'delay', 'pulling', 'email', 'sending', 'getting', 'email', 'almost', 'hour', 'delay', 'also', 'issue', 'sending', 'email', 'hanging', 'outbox', 'long', 'time', 'finally', 'go'] processed_text: ['outlook', 'issue', 'pull', 'send', 'email', 'delay', 'hour', 'login', 'peathryucoj', 'issue', 'email', 'outlook', 'today', 'delay', 'pulling', 'email', 'sending', 'getting', 'email', 'almost', 'hour', 'delay', 'also', 'issue', 'sending', 'email', 'hanging', 'outbox', 'long', 'time', 'finally', 'go'] list_processed_text: [['outlook'], ['issue'], ['pull'], ['send'], ['email'], ['delay'], ['hour'], ['login'], ['peathryucoj'], ['issue'], ['email'], ['outlook'], ['today'], ['delay'], ['pulling'], ['email'], ['sending'], ['getting'], ['email'], ['almost'], ['hour'], ['delay'], ['also'], ['issue'], ['sending'], ['email'], ['hanging'], ['outbox'], ['long'], ['time'], ['finally'], ['go']] k: 2399 len: <class 'list'> Data: ['cannot', 'pick', 'call', 'phone', 'ebhl', 'ring', 'call'] processed_text: ['cannot', 'pick', 'call', 'phone', 'ebhl', 'ring', 'call'] list_processed_text: [['cannot'], ['pick'], ['call'], ['phone'], ['ebhl'], ['ring'], ['call']] k: 2400 len: <class 'list'> Data: ['infopath', 'working', 'infopath', 'working'] processed_text: ['infopath', 'working', 'infopath', 'working'] list_processed_text: [['infopath'], ['working'], ['infopath'], ['working']] k: 2401 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'request', 'account', 'locked', 'password', 'reset', 'request'] processed_text: ['account', 'locked', 'password', 'reset', 'request', 'account', 'locked', 'password', 'reset', 'request'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['request'], ['account'], ['locked'], ['password'], ['reset'], ['request']] k: 2402 len: <class 'list'> Data: ['need', 'access', 'scan', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'benutzer', 'id', 'user', 'id', 'ahujajtyhur', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'executive', 'sale', 'admin', 'verzeichnis', 'folder', 'scan', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control', 'full', 'name', 'de', 'vorgesetzten', 'manager', 'name', 'cobsfvjz', 'apkqmrdu', 'hi', 'please', 'help', 'assign', 'scanner', 'system', 'best'] processed_text: ['need', 'access', 'scan', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'benutzer', 'id', 'user', 'id', 'ahujajtyhur', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'executive', 'sale', 'admin', 'verzeichnis', 'folder', 'scan', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control', 'full', 'name', 'de', 'vorgesetzten', 'manager', 'name', 'cobsfvjz', 'apkqmrdu', 'hi', 'please', 'help', 'assign', 'scanner', 'system', 'best'] list_processed_text: [['need'], ['access'], ['scan'], ['zugriff'], ['auf'], ['verzeichnis'], ['angefragt'], ['folder'], ['access'], ['requested'], ['benutzer'], ['id'], ['user'], ['id'], ['ahujajtyhur'], ['benutzer'], ['die'], ['position'], ['titel'], ['user'], ['position'], ['title'], ['executive'], ['sale'], ['admin'], ['verzeichnis'], ['folder'], ['scan'], ['art'], ['de'], ['zugriffs'], ['type'], ['access'], ['read'], ['full'], ['control'], ['full'], ['name'], ['de'], ['vorgesetzten'], ['manager'], ['name'], ['cobsfvjz'], ['apkqmrdu'], ['hi'], ['please'], ['help'], ['assign'], ['scanner'], ['system'], ['best']] k: 2403 len: <class 'list'> Data: ['need', 'help', 'hello', 'desk', 'sent', 'emal', 'thru', 'web', 'mail', 'open', 'm', 'office', 'outrlook', 'due', 'error', 'message', 'error', 'message', 'say', 'cannot', 'create', 'new', 'gard', 'page', 'stack', 'thing', 'changed', 'pas', 'word', 'recently', 'accordance', 'auto', 'notification', 'system', 'please', 'help', 'solve', 'trouble', 'quickly', 'start', 'use', 'outlook', 'daily', 'work', 'email', 'address', 'id', 'yathryu', 'mobile', 'phone', 'asistance', 'highly', 'appreciated', 'best'] processed_text: ['need', 'help', 'hello', 'desk', 'sent', 'emal', 'thru', 'web', 'mail', 'open', 'm', 'office', 'outrlook', 'due', 'error', 'message', 'error', 'message', 'say', 'cannot', 'create', 'new', 'gard', 'page', 'stack', 'thing', 'changed', 'pas', 'word', 'recently', 'accordance', 'auto', 'notification', 'system', 'please', 'help', 'solve', 'trouble', 'quickly', 'start', 'use', 'outlook', 'daily', 'work', 'email', 'address', 'id', 'yathryu', 'mobile', 'phone', 'asistance', 'highly', 'appreciated', 'best'] list_processed_text: [['need'], ['help'], ['hello'], ['desk'], ['sent'], ['emal'], ['thru'], ['web'], ['mail'], ['open'], ['m'], ['office'], ['outrlook'], ['due'], ['error'], ['message'], ['error'], ['message'], ['say'], ['cannot'], ['create'], ['new'], ['gard'], ['page'], ['stack'], ['thing'], ['changed'], ['pas'], ['word'], ['recently'], ['accordance'], ['auto'], ['notification'], ['system'], ['please'], ['help'], ['solve'], ['trouble'], ['quickly'], ['start'], ['use'], ['outlook'], ['daily'], ['work'], ['email'], ['address'], ['id'], ['yathryu'], ['mobile'], ['phone'], ['asistance'], ['highly'], ['appreciated'], ['best']] k: 2404 len: <class 'list'> Data: ['wifi', 'connecting', 'wifi', 'connecting'] processed_text: ['wifi', 'connecting', 'wifi', 'connecting'] list_processed_text: [['wifi'], ['connecting'], ['wifi'], ['connecting']] k: 2405 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2406 len: <class 'list'> Data: ['crm', 'extension', 'forecast', 'view', 'dear', 'crm', 'extension', 'forecast', 'button', 'gone', 'instead', 'potential', 'spends', 'someone', 'please', 'readd', 'forecast'] processed_text: ['crm', 'extension', 'forecast', 'view', 'dear', 'crm', 'extension', 'forecast', 'button', 'gone', 'instead', 'potential', 'spends', 'someone', 'please', 'readd', 'forecast'] list_processed_text: [['crm'], ['extension'], ['forecast'], ['view'], ['dear'], ['crm'], ['extension'], ['forecast'], ['button'], ['gone'], ['instead'], ['potential'], ['spends'], ['someone'], ['please'], ['readd'], ['forecast']] k: 2407 len: <class 'list'> Data: ['app', 'problem', 'hello', 'colleague', 'outlook', 'come', 'field', 'app', 'problem', 'best', 'regard'] processed_text: ['app', 'problem', 'hello', 'colleague', 'outlook', 'come', 'field', 'app', 'problem', 'best', 'regard'] list_processed_text: [['app'], ['problem'], ['hello'], ['colleague'], ['outlook'], ['come'], ['field'], ['app'], ['problem'], ['best'], ['regard']] k: 2408 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message']] k: 2409 len: <class 'list'> Data: ['unable', 'ethic', 'course', 'received', 'mail', 'ethic', 'since', 'long', 'time', 'mr', 'kothyherr', 'received', 'mail', 'ethic', 'since', 'long', 'time', 'think', 'received', 'least', 'mail', 'period', 'unable', 'course', 'insists', 'ethic', 'look', 'hello', 'colleague', 'actually', 'proceed', 'ethic', 'get', 'reminder', 'information', 'link', 'get', 'portal,', 'tried', 'get', 'portal', 'via', 'hub', 'sincerely'] processed_text: ['unable', 'ethic', 'course', 'received', 'mail', 'ethic', 'since', 'long', 'time', 'mr', 'kothyherr', 'received', 'mail', 'ethic', 'since', 'long', 'time', 'think', 'received', 'least', 'mail', 'period', 'unable', 'course', 'insists', 'ethic', 'look', 'hello', 'colleague', 'actually', 'proceed', 'ethic', 'get', 'reminder', 'information', 'link', 'get', 'portal,', 'tried', 'get', 'portal', 'via', 'hub', 'sincerely'] list_processed_text: [['unable'], ['ethic'], ['course'], ['received'], ['mail'], ['ethic'], ['since'], ['long'], ['time'], ['mr'], ['kothyherr'], ['received'], ['mail'], ['ethic'], ['since'], ['long'], ['time'], ['think'], ['received'], ['least'], ['mail'], ['period'], ['unable'], ['course'], ['insists'], ['ethic'], ['look'], ['hello'], ['colleague'], ['actually'], ['proceed'], ['ethic'], ['get'], ['reminder'], ['information'], ['link'], ['get'], ['portal,'], ['tried'], ['get'], ['portal'], ['via'], ['hub'], ['sincerely']] k: 2410 len: <class 'list'> Data: ['frequent', 'account', 'locked', 'frequent', 'account', 'locked'] processed_text: ['frequent', 'account', 'locked', 'frequent', 'account', 'locked'] list_processed_text: [['frequent'], ['account'], ['locked'], ['frequent'], ['account'], ['locked']] k: 2411 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 2412 len: <class 'list'> Data: ['prognose', 'crm', 'forecast', 'plan', 'dashbankrd', 'working', 'resource', 'found', 'error', 'dear', 'one', 'user', 'affected', 'got', 'sale', 'rep', 'indicating', 'open', 'crm', 'forecast', 'plan', 'dashbankrd', 'get', 'resource', 'found', 'error'] processed_text: ['prognose', 'crm', 'forecast', 'plan', 'dashbankrd', 'working', 'resource', 'found', 'error', 'dear', 'one', 'user', 'affected', 'got', 'sale', 'rep', 'indicating', 'open', 'crm', 'forecast', 'plan', 'dashbankrd', 'get', 'resource', 'found', 'error'] list_processed_text: [['prognose'], ['crm'], ['forecast'], ['plan'], ['dashbankrd'], ['working'], ['resource'], ['found'], ['error'], ['dear'], ['one'], ['user'], ['affected'], ['got'], ['sale'], ['rep'], ['indicating'], ['open'], ['crm'], ['forecast'], ['plan'], ['dashbankrd'], ['get'], ['resource'], ['found'], ['error']] k: 2413 len: <class 'list'> Data: ['outlook', 'updating', 'outlook', 'updating'] processed_text: ['outlook', 'updating', 'outlook', 'updating'] list_processed_text: [['outlook'], ['updating'], ['outlook'], ['updating']] k: 2414 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2415 len: <class 'list'> Data: ['still', 'unable', 'salesperson', 'uacyltoe', 'hxgaycze', 'performed', 'engineering', 'tool', 'could', 'help', 'name', 'alparslanthyr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'still', 'unable', 'salesperson', 'uacyltoe', 'hxgaycze', 'performed', 'engineering', 'tool', 'could', 'help'] processed_text: ['still', 'unable', 'salesperson', 'uacyltoe', 'hxgaycze', 'performed', 'engineering', 'tool', 'could', 'help', 'name', 'alparslanthyr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'still', 'unable', 'salesperson', 'uacyltoe', 'hxgaycze', 'performed', 'engineering', 'tool', 'could', 'help'] list_processed_text: [['still'], ['unable'], ['salesperson'], ['uacyltoe'], ['hxgaycze'], ['performed'], ['engineering'], ['tool'], ['could'], ['help'], ['name'], ['alparslanthyr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['still'], ['unable'], ['salesperson'], ['uacyltoe'], ['hxgaycze'], ['performed'], ['engineering'], ['tool'], ['could'], ['help']] k: 2416 len: <class 'list'> Data: ['able', 'login', 'ethic', 'portal', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'able', 'login', 'ethic', 'portal', 'error', 'screen', 'shot', 'attached', 'kindly', 'need', 'full', 'best'] processed_text: ['able', 'login', 'ethic', 'portal', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'able', 'login', 'ethic', 'portal', 'error', 'screen', 'shot', 'attached', 'kindly', 'need', 'full', 'best'] list_processed_text: [['able'], ['login'], ['ethic'], ['portal'], ['kxmidsga'], ['zokivdfa'], ['dear'], ['sir'], ['able'], ['login'], ['ethic'], ['portal'], ['error'], ['screen'], ['shot'], ['attached'], ['kindly'], ['need'], ['full'], ['best']] k: 2417 len: <class 'list'> Data: ['please', 'provide', 'access', 'drive', 'dear', 'team', 'good', 'morning', 'please', 'provide', 'full', 'control', 'access', 'path', 'member', 'markhtyed', 'cc', 'department', 'hostname', 'file', 'hostname', 'k', 'scorecard', 'india', 'iscl', 'department', 'hostname', 'file', 'hostname', 'k', 'update', 'india', 'iscl', 'sagfhoshgzpkmilu', 'skwbuvjyheelavant', 'fahdlecz', 'erathyur', 'ihkolepb', 'ozhnjyef', 'culixwse', 'pmrvxbnjhivaramdntyaiah'] processed_text: ['please', 'provide', 'access', 'drive', 'dear', 'team', 'good', 'morning', 'please', 'provide', 'full', 'control', 'access', 'path', 'member', 'markhtyed', 'cc', 'department', 'hostname', 'file', 'hostname', 'k', 'scorecard', 'india', 'iscl', 'department', 'hostname', 'file', 'hostname', 'k', 'update', 'india', 'iscl', 'sagfhoshgzpkmilu', 'skwbuvjyheelavant', 'fahdlecz', 'erathyur', 'ihkolepb', 'ozhnjyef', 'culixwse', 'pmrvxbnjhivaramdntyaiah'] list_processed_text: [['please'], ['provide'], ['access'], ['drive'], ['dear'], ['team'], ['good'], ['morning'], ['please'], ['provide'], ['full'], ['control'], ['access'], ['path'], ['member'], ['markhtyed'], ['cc'], ['department'], ['hostname'], ['file'], ['hostname'], ['k'], ['scorecard'], ['india'], ['iscl'], ['department'], ['hostname'], ['file'], ['hostname'], ['k'], ['update'], ['india'], ['iscl'], ['sagfhoshgzpkmilu'], ['skwbuvjyheelavant'], ['fahdlecz'], ['erathyur'], ['ihkolepb'], ['ozhnjyef'], ['culixwse'], ['pmrvxbnjhivaramdntyaiah']] k: 2418 len: <class 'list'> Data: ['issue', 'bobj', 'dear', 'please', 'fix', 'bobj', 'problem', 'mjvfxnka', 'zvjxuahe', 'see', 'error', 'message'] processed_text: ['issue', 'bobj', 'dear', 'please', 'fix', 'bobj', 'problem', 'mjvfxnka', 'zvjxuahe', 'see', 'error', 'message'] list_processed_text: [['issue'], ['bobj'], ['dear'], ['please'], ['fix'], ['bobj'], ['problem'], ['mjvfxnka'], ['zvjxuahe'], ['see'], ['error'], ['message']] k: 2419 len: <class 'list'> Data: ['problem', 'wifi', 'good', 'morning', 'use', 'dell', 'latitude', 'home', 'office', 'using', 'wifi', 'network', 'internet', 'access', 'often', 'wake', 'powersave', 'mode', 'still', 'connected', 'local', 'wifi', 'network', 'identified', 'network', 'internet', 'connection', 'private', 'owned', 'device', 'pc', 'smartphone', 'tablet', 'still', 'work', 'fine', 'shut', 'restart', 'dell', 'get', 'proper', 'connection', 'please', 'advise', 'restarting', 'dell', 'couple', 'time', 'day', 'annoying', 'time', 'kirtyling', 'best'] processed_text: ['problem', 'wifi', 'good', 'morning', 'use', 'dell', 'latitude', 'home', 'office', 'using', 'wifi', 'network', 'internet', 'access', 'often', 'wake', 'powersave', 'mode', 'still', 'connected', 'local', 'wifi', 'network', 'identified', 'network', 'internet', 'connection', 'private', 'owned', 'device', 'pc', 'smartphone', 'tablet', 'still', 'work', 'fine', 'shut', 'restart', 'dell', 'get', 'proper', 'connection', 'please', 'advise', 'restarting', 'dell', 'couple', 'time', 'day', 'annoying', 'time', 'kirtyling', 'best'] list_processed_text: [['problem'], ['wifi'], ['good'], ['morning'], ['use'], ['dell'], ['latitude'], ['home'], ['office'], ['using'], ['wifi'], ['network'], ['internet'], ['access'], ['often'], ['wake'], ['powersave'], ['mode'], ['still'], ['connected'], ['local'], ['wifi'], ['network'], ['identified'], ['network'], ['internet'], ['connection'], ['private'], ['owned'], ['device'], ['pc'], ['smartphone'], ['tablet'], ['still'], ['work'], ['fine'], ['shut'], ['restart'], ['dell'], ['get'], ['proper'], ['connection'], ['please'], ['advise'], ['restarting'], ['dell'], ['couple'], ['time'], ['day'], ['annoying'], ['time'], ['kirtyling'], ['best']] k: 2420 len: <class 'list'> Data: ['timecard', 'access', 'ticketing', 'tool', 'noticed', 'access', 'timecard', 'ticketing', 'tool', 'enabled'] processed_text: ['timecard', 'access', 'ticketing', 'tool', 'noticed', 'access', 'timecard', 'ticketing', 'tool', 'enabled'] list_processed_text: [['timecard'], ['access'], ['ticketing'], ['tool'], ['noticed'], ['access'], ['timecard'], ['ticketing'], ['tool'], ['enabled']] k: 2421 len: <class 'list'> Data: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler']] k: 2422 len: <class 'list'> Data: ['pgi', 'delivery', 'note', 'possible', 'pgi', 'delivery', 'note', 'possible', 'please', 'see', 'enclosed', 'message'] processed_text: ['pgi', 'delivery', 'note', 'possible', 'pgi', 'delivery', 'note', 'possible', 'please', 'see', 'enclosed', 'message'] list_processed_text: [['pgi'], ['delivery'], ['note'], ['possible'], ['pgi'], ['delivery'], ['note'], ['possible'], ['please'], ['see'], ['enclosed'], ['message']] k: 2423 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 2424 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2425 len: <class 'list'> Data: ['login', 'login'] processed_text: ['login', 'login'] list_processed_text: [['login'], ['login']] k: 2426 len: <class 'list'> Data: ['worry', 'sincerely,', 'gru', 'child'] processed_text: ['worry', 'sincerely,', 'gru', 'child'] list_processed_text: [['worry'], ['sincerely,'], ['gru'], ['child']] k: 2427 len: <class 'list'> Data: ['unable', 'login', 'hostname', 'vsphere', 'client', 'unable', 'login', 'hostname', 'vsphere', 'client', 'vmware', 'virtualcenter', 'server', 'service', 'stopped', 'state'] processed_text: ['unable', 'login', 'hostname', 'vsphere', 'client', 'unable', 'login', 'hostname', 'vsphere', 'client', 'vmware', 'virtualcenter', 'server', 'service', 'stopped', 'state'] list_processed_text: [['unable'], ['login'], ['hostname'], ['vsphere'], ['client'], ['unable'], ['login'], ['hostname'], ['vsphere'], ['client'], ['vmware'], ['virtualcenter'], ['server'], ['service'], ['stopped'], ['state']] k: 2428 len: <class 'list'> Data: ['material', 'specification', 'code', 'material', 'code', 'trn', 'hdt', 'kmc', 'available', 'erp', 'system', 'selecting', 'engineering', 'tool', 'error', 'material', 'code', 'exists'] processed_text: ['material', 'specification', 'code', 'material', 'code', 'trn', 'hdt', 'kmc', 'available', 'erp', 'system', 'selecting', 'engineering', 'tool', 'error', 'material', 'code', 'exists'] list_processed_text: [['material'], ['specification'], ['code'], ['material'], ['code'], ['trn'], ['hdt'], ['kmc'], ['available'], ['erp'], ['system'], ['selecting'], ['engineering'], ['tool'], ['error'], ['material'], ['code'], ['exists']] k: 2429 len: <class 'list'> Data: ['plm', 'enterprise', 'search', 'engineering', 'record', 'working', 'hello', 'since', 'plm', 'enterprise', 'search', 'engineering', 'record', 'working', 'pc', 'plugin', 'missing', 'according', 'error', 'message', 'status', 'bar', 'see', 'attachment'] processed_text: ['plm', 'enterprise', 'search', 'engineering', 'record', 'working', 'hello', 'since', 'plm', 'enterprise', 'search', 'engineering', 'record', 'working', 'pc', 'plugin', 'missing', 'according', 'error', 'message', 'status', 'bar', 'see', 'attachment'] list_processed_text: [['plm'], ['enterprise'], ['search'], ['engineering'], ['record'], ['working'], ['hello'], ['since'], ['plm'], ['enterprise'], ['search'], ['engineering'], ['record'], ['working'], ['pc'], ['plugin'], ['missing'], ['according'], ['error'], ['message'], ['status'], ['bar'], ['see'], ['attachment']] k: 2430 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'tyhufrey', 'last', 'name', 'thyel', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'tyhufrey', 'last', 'name', 'thyel', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['tyhufrey'], ['last'], ['name'], ['thyel'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc']] k: 2431 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2432 len: <class 'list'> Data: ['vh', 'werk', 'germany', 'fehlende', 'druckauftr', 'ge', 'eilt', 'monatswechsel', 'bei', 'drucker', 'vh', 'keine', 'ausgabe', 'der', 'druckauftr', 'ge', 'au', 'erp', 'hrp', 'druck', 'au', 'word', 'excel', 'funktioniert', 'drucker', 'wurde', 'bereits', 'ausgeschaltet', 'und', 'neu', 'gestartet', 'ohne', 'erfolg', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['vh', 'werk', 'germany', 'fehlende', 'druckauftr', 'ge', 'eilt', 'monatswechsel', 'bei', 'drucker', 'vh', 'keine', 'ausgabe', 'der', 'druckauftr', 'ge', 'au', 'erp', 'hrp', 'druck', 'au', 'word', 'excel', 'funktioniert', 'drucker', 'wurde', 'bereits', 'ausgeschaltet', 'und', 'neu', 'gestartet', 'ohne', 'erfolg', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['vh'], ['werk'], ['germany'], ['fehlende'], ['druckauftr'], ['ge'], ['eilt'], ['monatswechsel'], ['bei'], ['drucker'], ['vh'], ['keine'], ['ausgabe'], ['der'], ['druckauftr'], ['ge'], ['au'], ['erp'], ['hrp'], ['druck'], ['au'], ['word'], ['excel'], ['funktioniert'], ['drucker'], ['wurde'], ['bereits'], ['ausgeschaltet'], ['und'], ['neu'], ['gestartet'], ['ohne'], ['erfolg'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['detailed'], ['description'], ['problem'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 2433 len: <class 'list'> Data: ['ethic', 'application', 'found', 'hello', 'able', 'open', 'ethic', 'training', 'course', 'please', 'see', 'error', 'screenshot'] processed_text: ['ethic', 'application', 'found', 'hello', 'able', 'open', 'ethic', 'training', 'course', 'please', 'see', 'error', 'screenshot'] list_processed_text: [['ethic'], ['application'], ['found'], ['hello'], ['able'], ['open'], ['ethic'], ['training'], ['course'], ['please'], ['see'], ['error'], ['screenshot']] k: 2434 len: <class 'list'> Data: ['ethic', 'login', 'issue', 'hi', 'please', 'see', 'highlighted', 'error', 'resolve', 'urgent', 'basis', 'best'] processed_text: ['ethic', 'login', 'issue', 'hi', 'please', 'see', 'highlighted', 'error', 'resolve', 'urgent', 'basis', 'best'] list_processed_text: [['ethic'], ['login'], ['issue'], ['hi'], ['please'], ['see'], ['highlighted'], ['error'], ['resolve'], ['urgent'], ['basis'], ['best']] k: 2435 len: <class 'list'> Data: ['unable', 'login', 'ethic', 'training', 'course', 'hi', 'trying', 'login', 'ethic', 'training', 'course', 'get', 'web', 'page', 'unregistered', 'user', 'please', 'help'] processed_text: ['unable', 'login', 'ethic', 'training', 'course', 'hi', 'trying', 'login', 'ethic', 'training', 'course', 'get', 'web', 'page', 'unregistered', 'user', 'please', 'help'] list_processed_text: [['unable'], ['login'], ['ethic'], ['training'], ['course'], ['hi'], ['trying'], ['login'], ['ethic'], ['training'], ['course'], ['get'], ['web'], ['page'], ['unregistered'], ['user'], ['please'], ['help']] k: 2436 len: <class 'list'> Data: ['issue', 'playing', 'courage', 'change', 'win', 'video', 'hello', 'please', 'help', 'message', 'got', 'tried', 'open', 'lauacyltoe', 'hxgaycze', 'video', 'courage', 'change', 'win'] processed_text: ['issue', 'playing', 'courage', 'change', 'win', 'video', 'hello', 'please', 'help', 'message', 'got', 'tried', 'open', 'lauacyltoe', 'hxgaycze', 'video', 'courage', 'change', 'win'] list_processed_text: [['issue'], ['playing'], ['courage'], ['change'], ['win'], ['video'], ['hello'], ['please'], ['help'], ['message'], ['got'], ['tried'], ['open'], ['lauacyltoe'], ['hxgaycze'], ['video'], ['courage'], ['change'], ['win']] k: 2437 len: <class 'list'> Data: ['unable', 'print', 'wy', 'printer', 'unable', 'print', 'wy', 'printer', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'zheqafyo', 'bqirpxag', 'hi', 'good', 'moryctrhbkm', 'plvnuxmrnoj', 'could', 'print', 'wy', 'printer', 'india', 'zheqafyo', 'bqirpxag', 'hi', 'dwfiykeo', 'argtxmvcumar', 'yes', 'zheqafyo', 'bqirpxag', 'problem', 'happens', 'every', 'month', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'check', 'local', 'right', 'deppt'] processed_text: ['unable', 'print', 'wy', 'printer', 'unable', 'print', 'wy', 'printer', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'dwfiykeo', 'argtxmvcumar', 'hello', 'zheqafyo', 'bqirpxag', 'hi', 'good', 'moryctrhbkm', 'plvnuxmrnoj', 'could', 'print', 'wy', 'printer', 'india', 'zheqafyo', 'bqirpxag', 'hi', 'dwfiykeo', 'argtxmvcumar', 'yes', 'zheqafyo', 'bqirpxag', 'problem', 'happens', 'every', 'month', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'check', 'local', 'right', 'deppt'] list_processed_text: [['unable'], ['print'], ['wy'], ['printer'], ['unable'], ['print'], ['wy'], ['printer'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['zheqafyo'], ['bqirpxag'], ['hi'], ['good'], ['moryctrhbkm'], ['plvnuxmrnoj'], ['could'], ['print'], ['wy'], ['printer'], ['india'], ['zheqafyo'], ['bqirpxag'], ['hi'], ['dwfiykeo'], ['argtxmvcumar'], ['yes'], ['zheqafyo'], ['bqirpxag'], ['problem'], ['happens'], ['every'], ['month'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['let'], ['check'], ['local'], ['right'], ['deppt']] k: 2438 len: <class 'list'> Data: ['install', 'lauacyltoe', 'hxgaycze', 'version', 'flash', 'player', 'hello', 'please', 'install', 'lauacyltoe', 'hxgaycze', 'version', 'flash', 'player', 'system', 'got', 'message', 'shown', 'tried', 'complete', 'ethic', 'course', 'collaboration', 'platform', 'site'] processed_text: ['install', 'lauacyltoe', 'hxgaycze', 'version', 'flash', 'player', 'hello', 'please', 'install', 'lauacyltoe', 'hxgaycze', 'version', 'flash', 'player', 'system', 'got', 'message', 'shown', 'tried', 'complete', 'ethic', 'course', 'collaboration', 'platform', 'site'] list_processed_text: [['install'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['flash'], ['player'], ['hello'], ['please'], ['install'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['flash'], ['player'], ['system'], ['got'], ['message'], ['shown'], ['tried'], ['complete'], ['ethic'], ['course'], ['collaboration'], ['platform'], ['site']] k: 2439 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 2440 len: <class 'list'> Data: ['sid', 'password', 'hi', 'please', 'reset', 'password', 'sid', 'daypay'] processed_text: ['sid', 'password', 'hi', 'please', 'reset', 'password', 'sid', 'daypay'] list_processed_text: [['sid'], ['password'], ['hi'], ['please'], ['reset'], ['password'], ['sid'], ['daypay']] k: 2441 len: <class 'list'> Data: ['erp', 'performance', 'morning', 'via', 'vpn', 'germany', 'hi', 'started', 'report', 'morning', 'take', 'normal', 'minute', 'get', 'result', 'current', 'report', 'ist', 'still', 'running', 'minute', 'performance', 'issue', 'erp', 'user', 'id', 'wethruiberg'] processed_text: ['erp', 'performance', 'morning', 'via', 'vpn', 'germany', 'hi', 'started', 'report', 'morning', 'take', 'normal', 'minute', 'get', 'result', 'current', 'report', 'ist', 'still', 'running', 'minute', 'performance', 'issue', 'erp', 'user', 'id', 'wethruiberg'] list_processed_text: [['erp'], ['performance'], ['morning'], ['via'], ['vpn'], ['germany'], ['hi'], ['started'], ['report'], ['morning'], ['take'], ['normal'], ['minute'], ['get'], ['result'], ['current'], ['report'], ['ist'], ['still'], ['running'], ['minute'], ['performance'], ['issue'], ['erp'], ['user'], ['id'], ['wethruiberg']] k: 2442 len: <class 'list'> Data: ['collaboration', 'platform', 'site', 'opening', 'collaboration', 'platform', 'site', 'opening'] processed_text: ['collaboration', 'platform', 'site', 'opening', 'collaboration', 'platform', 'site', 'opening'] list_processed_text: [['collaboration'], ['platform'], ['site'], ['opening'], ['collaboration'], ['platform'], ['site'], ['opening']] k: 2443 len: <class 'list'> Data: ['change', 'ad', 'hi', 'reporting', 'line', 'outlook', 'organization', 'system', 'wrong', 'relocated', 'usa', 'apac', 'report', 'vlpfgjyz', 'dvzrfsbo', 'title', 'sr', 'engineer', 'randd', 'reflected', 'system', 'please', 'help', 'correct'] processed_text: ['change', 'ad', 'hi', 'reporting', 'line', 'outlook', 'organization', 'system', 'wrong', 'relocated', 'usa', 'apac', 'report', 'vlpfgjyz', 'dvzrfsbo', 'title', 'sr', 'engineer', 'randd', 'reflected', 'system', 'please', 'help', 'correct'] list_processed_text: [['change'], ['ad'], ['hi'], ['reporting'], ['line'], ['outlook'], ['organization'], ['system'], ['wrong'], ['relocated'], ['usa'], ['apac'], ['report'], ['vlpfgjyz'], ['dvzrfsbo'], ['title'], ['sr'], ['engineer'], ['randd'], ['reflected'], ['system'], ['please'], ['help'], ['correct']] k: 2444 len: <class 'list'> Data: ['flash', 'player', 'version', 'hi', 'please', 'help', 'assist', 'following', 'issue'] processed_text: ['flash', 'player', 'version', 'hi', 'please', 'help', 'assist', 'following', 'issue'] list_processed_text: [['flash'], ['player'], ['version'], ['hi'], ['please'], ['help'], ['assist'], ['following'], ['issue']] k: 2445 len: <class 'list'> Data: ['log', 'vpn', 'ticketing', 'tool', 'changed', 'password', 'morning', 'working', 'dartnl', 'porwrloisky', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'login', 'problem', 'vpn', 'hi', 'log', 'vpn', 'ticketing', 'tool', 'changed', 'password', 'morning', 'working', 'please', 'reset', 'login', 'username', 'poloidgthyl', 'keep', 'getting', 'error', 'danl', 'poloisky', 'territory', 'manager', 'f', 'federal', 'signal', 'dr', 'usa', 'il'] processed_text: ['log', 'vpn', 'ticketing', 'tool', 'changed', 'password', 'morning', 'working', 'dartnl', 'porwrloisky', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'login', 'problem', 'vpn', 'hi', 'log', 'vpn', 'ticketing', 'tool', 'changed', 'password', 'morning', 'working', 'please', 'reset', 'login', 'username', 'poloidgthyl', 'keep', 'getting', 'error', 'danl', 'poloisky', 'territory', 'manager', 'f', 'federal', 'signal', 'dr', 'usa', 'il'] list_processed_text: [['log'], ['vpn'], ['ticketing'], ['tool'], ['changed'], ['password'], ['morning'], ['working'], ['dartnl'], ['porwrloisky'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['login'], ['problem'], ['vpn'], ['hi'], ['log'], ['vpn'], ['ticketing'], ['tool'], ['changed'], ['password'], ['morning'], ['working'], ['please'], ['reset'], ['login'], ['username'], ['poloidgthyl'], ['keep'], ['getting'], ['error'], ['danl'], ['poloisky'], ['territory'], ['manager'], ['f'], ['federal'], ['signal'], ['dr'], ['usa'], ['il']] k: 2446 len: <class 'list'> Data: ['summary', 'run', 'wip', 'list', 'try', 'report', 'get', 'run', 'time', 'error', 'pivot', 'table', 'field', 'name', 'valid', 'summary', 'run', 'wip', 'list', 'try', 'report', 'get', 'run', 'time', 'error', 'pivot', 'table', 'field', 'name', 'valid'] processed_text: ['summary', 'run', 'wip', 'list', 'try', 'report', 'get', 'run', 'time', 'error', 'pivot', 'table', 'field', 'name', 'valid', 'summary', 'run', 'wip', 'list', 'try', 'report', 'get', 'run', 'time', 'error', 'pivot', 'table', 'field', 'name', 'valid'] list_processed_text: [['summary'], ['run'], ['wip'], ['list'], ['try'], ['report'], ['get'], ['run'], ['time'], ['error'], ['pivot'], ['table'], ['field'], ['name'], ['valid'], ['summary'], ['run'], ['wip'], ['list'], ['try'], ['report'], ['get'], ['run'], ['time'], ['error'], ['pivot'], ['table'], ['field'], ['name'], ['valid']] k: 2447 len: <class 'list'> Data: ['issue', 'crm', 'dynamic', 'issue', 'crm', 'dynamic', 'need', 'permission', 'opening', 'record', 'user', 'getting', 'error', 'record', 'unavailable', 'request', 'record', 'found', 'sufficient', 'permission', 'view'] processed_text: ['issue', 'crm', 'dynamic', 'issue', 'crm', 'dynamic', 'need', 'permission', 'opening', 'record', 'user', 'getting', 'error', 'record', 'unavailable', 'request', 'record', 'found', 'sufficient', 'permission', 'view'] list_processed_text: [['issue'], ['crm'], ['dynamic'], ['issue'], ['crm'], ['dynamic'], ['need'], ['permission'], ['opening'], ['record'], ['user'], ['getting'], ['error'], ['record'], ['unavailable'], ['request'], ['record'], ['found'], ['sufficient'], ['permission'], ['view']] k: 2448 len: <class 'list'> Data: ['account', 'expire', 'soon', 'please', 'help', 'extend', 'vvwhtyuy', 'account', 'one', 'year', 'user', 'vvwhtyuy', 'manager', 'name', 'mikdhyu', 'lihy', 'account', 'expire', 'soon', 'please', 'help', 'extend', 'vvwhtyuy', 'account', 'one', 'year', 'user', 'vvwhtyuy', 'manager', 'name', 'mikdhyu', 'lihy'] processed_text: ['account', 'expire', 'soon', 'please', 'help', 'extend', 'vvwhtyuy', 'account', 'one', 'year', 'user', 'vvwhtyuy', 'manager', 'name', 'mikdhyu', 'lihy', 'account', 'expire', 'soon', 'please', 'help', 'extend', 'vvwhtyuy', 'account', 'one', 'year', 'user', 'vvwhtyuy', 'manager', 'name', 'mikdhyu', 'lihy'] list_processed_text: [['account'], ['expire'], ['soon'], ['please'], ['help'], ['extend'], ['vvwhtyuy'], ['account'], ['one'], ['year'], ['user'], ['vvwhtyuy'], ['manager'], ['name'], ['mikdhyu'], ['lihy'], ['account'], ['expire'], ['soon'], ['please'], ['help'], ['extend'], ['vvwhtyuy'], ['account'], ['one'], ['year'], ['user'], ['vvwhtyuy'], ['manager'], ['name'], ['mikdhyu'], ['lihy']] k: 2449 len: <class 'list'> Data: ['receive', 'information', 'hi', 'team', 'originally', 'enquiry', 'start', 'nothing', 'amended', 'currently', 'receive', 'email', 'notification', 'like', 'ethic', 'ethical', 'moment', 'sipppr', 'tried', 'log', 'ethic', 'via', 'collaboration', 'platform', 'received', 'following', 'error', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'please', 'assist', 'aerp', 'setting', 'notification'] processed_text: ['receive', 'information', 'hi', 'team', 'originally', 'enquiry', 'start', 'nothing', 'amended', 'currently', 'receive', 'email', 'notification', 'like', 'ethic', 'ethical', 'moment', 'sipppr', 'tried', 'log', 'ethic', 'via', 'collaboration', 'platform', 'received', 'following', 'error', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'please', 'assist', 'aerp', 'setting', 'notification'] list_processed_text: [['receive'], ['information'], ['hi'], ['team'], ['originally'], ['enquiry'], ['start'], ['nothing'], ['amended'], ['currently'], ['receive'], ['email'], ['notification'], ['like'], ['ethic'], ['ethical'], ['moment'], ['sipppr'], ['tried'], ['log'], ['ethic'], ['via'], ['collaboration'], ['platform'], ['received'], ['following'], ['error'], ['message'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp'], ['please'], ['assist'], ['aerp'], ['setting'], ['notification']] k: 2450 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 2451 len: <class 'list'> Data: ['kicked', 'vpn', 'kicked', 'vpn', 'time', 'today'] processed_text: ['kicked', 'vpn', 'kicked', 'vpn', 'time', 'today'] list_processed_text: [['kicked'], ['vpn'], ['kicked'], ['vpn'], ['time'], ['today']] k: 2452 len: <class 'list'> Data: ['potential', 'security', 'issue', 'io', 'update', 'potential', 'security', 'issue', 'io', 'update'] processed_text: ['potential', 'security', 'issue', 'io', 'update', 'potential', 'security', 'issue', 'io', 'update'] list_processed_text: [['potential'], ['security'], ['issue'], ['io'], ['update'], ['potential'], ['security'], ['issue'], ['io'], ['update']] k: 2453 len: <class 'list'> Data: ['outlook', 'error', 'outlook', 'error'] processed_text: ['outlook', 'error', 'outlook', 'error'] list_processed_text: [['outlook'], ['error'], ['outlook'], ['error']] k: 2454 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'hello', 'crm', 'tab', 'outlook', 'ribbon', 'please', 'advise', 'fjohugzb', 'fhagjskd', 'sr', 'channel', 'partner', 'specialist', 'company', 'inc', 'office', 'technical', 'support', 'www', 'company', 'com'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'hello', 'crm', 'tab', 'outlook', 'ribbon', 'please', 'advise', 'fjohugzb', 'fhagjskd', 'sr', 'channel', 'partner', 'specialist', 'company', 'inc', 'office', 'technical', 'support', 'www', 'company', 'com'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['hello'], ['crm'], ['tab'], ['outlook'], ['ribbon'], ['please'], ['advise'], ['fjohugzb'], ['fhagjskd'], ['sr'], ['channel'], ['partner'], ['specialist'], ['company'], ['inc'], ['office'], ['technical'], ['support'], ['www'], ['company'], ['com']] k: 2455 len: <class 'list'> Data: ['unable', 'connect', 'wireless', 'user', 'called', 'issue', 'able', 'connect', 'wireless', 'network', 'using', 'dell', 'tablet', 'device'] processed_text: ['unable', 'connect', 'wireless', 'user', 'called', 'issue', 'able', 'connect', 'wireless', 'network', 'using', 'dell', 'tablet', 'device'] list_processed_text: [['unable'], ['connect'], ['wireless'], ['user'], ['called'], ['issue'], ['able'], ['connect'], ['wireless'], ['network'], ['using'], ['dell'], ['tablet'], ['device']] k: 2456 len: <class 'list'> Data: ['unable', 'update', 'new', 'password', 'iphone', 'unable', 'update', 'new', 'password', 'iphone'] processed_text: ['unable', 'update', 'new', 'password', 'iphone', 'unable', 'update', 'new', 'password', 'iphone'] list_processed_text: [['unable'], ['update'], ['new'], ['password'], ['iphone'], ['unable'], ['update'], ['new'], ['password'], ['iphone']] k: 2457 len: <class 'list'> Data: ['unable', 'update', 'password', 'account', 'unable', 'update', 'password', 'account'] processed_text: ['unable', 'update', 'password', 'account', 'unable', 'update', 'password', 'account'] list_processed_text: [['unable'], ['update'], ['password'], ['account'], ['unable'], ['update'], ['password'], ['account']] k: 2458 len: <class 'list'> Data: ['network', 'outage', 'cantabria', 'mecftgobusa', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'cantabria', 'mecftgobusa', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['cantabria'], ['mecftgobusa'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2459 len: <class 'list'> Data: ['ethic', 'training', 'hello', 'started', 'ethic', 'training', 'became', 'stuck', 'page', 'please', 'contact', 'aerp', 'best'] processed_text: ['ethic', 'training', 'hello', 'started', 'ethic', 'training', 'became', 'stuck', 'page', 'please', 'contact', 'aerp', 'best'] list_processed_text: [['ethic'], ['training'], ['hello'], ['started'], ['ethic'], ['training'], ['became'], ['stuck'], ['page'], ['please'], ['contact'], ['aerp'], ['best']] k: 2460 len: <class 'list'> Data: ['unable', 'open', 'edit', 'expense', 'report', 'employee', 'unable', 'open', 'edit', 'expense', 'report', 'employee'] processed_text: ['unable', 'open', 'edit', 'expense', 'report', 'employee', 'unable', 'open', 'edit', 'expense', 'report', 'employee'] list_processed_text: [['unable'], ['open'], ['edit'], ['expense'], ['report'], ['employee'], ['unable'], ['open'], ['edit'], ['expense'], ['report'], ['employee']] k: 2461 len: <class 'list'> Data: ['cannot', 'log', 'marty', 'nevins', 'username', 'nevinmw', 'cannot', 'login', 'computer', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] processed_text: ['cannot', 'log', 'marty', 'nevins', 'username', 'nevinmw', 'cannot', 'login', 'computer', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] list_processed_text: [['cannot'], ['log'], ['marty'], ['nevins'], ['username'], ['nevinmw'], ['cannot'], ['login'], ['computer'], ['shrugott'], ['tyhuellis'], ['usa'], ['facility'], ['mgr']] k: 2462 len: <class 'list'> Data: ['unable', 'safe', 'attachment', 'erp', 'try', 'safe', 'file', 'sale', 'order', 'erp', 'received', 'fallowing', 'error', 'error', 'occurred', 'uploading', 'erp', 'knowledge', 'provider'] processed_text: ['unable', 'safe', 'attachment', 'erp', 'try', 'safe', 'file', 'sale', 'order', 'erp', 'received', 'fallowing', 'error', 'error', 'occurred', 'uploading', 'erp', 'knowledge', 'provider'] list_processed_text: [['unable'], ['safe'], ['attachment'], ['erp'], ['try'], ['safe'], ['file'], ['sale'], ['order'], ['erp'], ['received'], ['fallowing'], ['error'], ['error'], ['occurred'], ['uploading'], ['erp'], ['knowledge'], ['provider']] k: 2463 len: <class 'list'> Data: ['sale', 'history', 'correct', 'apo', 'dp', 'jochgthen', 'team', 'appears', 'issue', 'history', 'apo', 'history', 'look', 'correct'] processed_text: ['sale', 'history', 'correct', 'apo', 'dp', 'jochgthen', 'team', 'appears', 'issue', 'history', 'apo', 'history', 'look', 'correct'] list_processed_text: [['sale'], ['history'], ['correct'], ['apo'], ['dp'], ['jochgthen'], ['team'], ['appears'], ['issue'], ['history'], ['apo'], ['history'], ['look'], ['correct']] k: 2464 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2465 len: <class 'list'> Data: ['external', 'site', 'loading', 'external', 'site', 'loading'] processed_text: ['external', 'site', 'loading', 'external', 'site', 'loading'] list_processed_text: [['external'], ['site'], ['loading'], ['external'], ['site'], ['loading']] k: 2466 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 2467 len: <class 'list'> Data: ['crm', 'outlook', 'working', 'grethyg', 'crm', 'outlook', 'working', 'grethyg'] processed_text: ['crm', 'outlook', 'working', 'grethyg', 'crm', 'outlook', 'working', 'grethyg'] list_processed_text: [['crm'], ['outlook'], ['working'], ['grethyg'], ['crm'], ['outlook'], ['working'], ['grethyg']] k: 2468 len: <class 'list'> Data: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] processed_text: ['window', 'account', 'unlock', 'window', 'account', 'unlock'] list_processed_text: [['window'], ['account'], ['unlock'], ['window'], ['account'], ['unlock']] k: 2469 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 2470 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2471 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] processed_text: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] list_processed_text: [['unable'], ['sign'], ['skype'], ['unable'], ['sign'], ['skype']] k: 2472 len: <class 'list'> Data: ['getting', 'knocked', 'vpn', 'knocked', 'vpn', 'et', 'today', 'et', 'problem', 'knocked', 'almost', 'every', 'day'] processed_text: ['getting', 'knocked', 'vpn', 'knocked', 'vpn', 'et', 'today', 'et', 'problem', 'knocked', 'almost', 'every', 'day'] list_processed_text: [['getting'], ['knocked'], ['vpn'], ['knocked'], ['vpn'], ['et'], ['today'], ['et'], ['problem'], ['knocked'], ['almost'], ['every'], ['day']] k: 2473 len: <class 'list'> Data: ['purchasing', 'supplier', 'u', 'stated', 'use', 'purchasing', 'catalog', 'longer', 'try', 'select', 'u', 'supplier', 'say', 'use'] processed_text: ['purchasing', 'supplier', 'u', 'stated', 'use', 'purchasing', 'catalog', 'longer', 'try', 'select', 'u', 'supplier', 'say', 'use'] list_processed_text: [['purchasing'], ['supplier'], ['u'], ['stated'], ['use'], ['purchasing'], ['catalog'], ['longer'], ['try'], ['select'], ['u'], ['supplier'], ['say'], ['use']] k: 2474 len: <class 'list'> Data: ['vpn', 'connectivity', 'issue', 'vpn', 'dropped', 'twice', 'morning', 'twice', 'since', 'lunch'] processed_text: ['vpn', 'connectivity', 'issue', 'vpn', 'dropped', 'twice', 'morning', 'twice', 'since', 'lunch'] list_processed_text: [['vpn'], ['connectivity'], ['issue'], ['vpn'], ['dropped'], ['twice'], ['morning'], ['twice'], ['since'], ['lunch']] k: 2475 len: <class 'list'> Data: ['unable', 'enter', 'estimated', 'value', 'opportunity', 'm', 'crm', 'unable', 'enter', 'estimated', 'value', 'opportunity', 'm', 'crm'] processed_text: ['unable', 'enter', 'estimated', 'value', 'opportunity', 'm', 'crm', 'unable', 'enter', 'estimated', 'value', 'opportunity', 'm', 'crm'] list_processed_text: [['unable'], ['enter'], ['estimated'], ['value'], ['opportunity'], ['m'], ['crm'], ['unable'], ['enter'], ['estimated'], ['value'], ['opportunity'], ['m'], ['crm']] k: 2476 len: <class 'list'> Data: ['unable', 'sign', 'outlook', 'unable', 'sign', 'outlook'] processed_text: ['unable', 'sign', 'outlook', 'unable', 'sign', 'outlook'] list_processed_text: [['unable'], ['sign'], ['outlook'], ['unable'], ['sign'], ['outlook']] k: 2477 len: <class 'list'> Data: ['reset', 'window', 'password', 'account', 'reset', 'window', 'password', 'account'] processed_text: ['reset', 'window', 'password', 'account', 'reset', 'window', 'password', 'account'] list_processed_text: [['reset'], ['window'], ['password'], ['account'], ['reset'], ['window'], ['password'], ['account']] k: 2478 len: <class 'list'> Data: ['unable', 'login', 'erp', 'unable', 'login', 'erp'] processed_text: ['unable', 'login', 'erp', 'unable', 'login', 'erp'] list_processed_text: [['unable'], ['login'], ['erp'], ['unable'], ['login'], ['erp']] k: 2479 len: <class 'list'> Data: ['printing', 'request', 'request', 'transaction', 'print', 'different', 'printer', 'please', 'contact', 'omiwzbue', 'auvolfhp', 'info', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'prtqv', 'prtqv', 'detailed', 'description', 'problem', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'erp', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'erp', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'currently', 'qv', 'routed', 'qv', 'qv', 'fixed', 'need', 'erp', 'job', 'print', 'qv', 'qv', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printing', 'request', 'request', 'transaction', 'print', 'different', 'printer', 'please', 'contact', 'omiwzbue', 'auvolfhp', 'info', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'prtqv', 'prtqv', 'detailed', 'description', 'problem', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'erp', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'erp', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'currently', 'qv', 'routed', 'qv', 'qv', 'fixed', 'need', 'erp', 'job', 'print', 'qv', 'qv', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printing'], ['request'], ['request'], ['transaction'], ['print'], ['different'], ['printer'], ['please'], ['contact'], ['omiwzbue'], ['auvolfhp'], ['info'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['prtqv'], ['prtqv'], ['detailed'], ['description'], ['problem'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['erp'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['erp'], ['window'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['sid'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['currently'], ['qv'], ['routed'], ['qv'], ['qv'], ['fixed'], ['need'], ['erp'], ['job'], ['print'], ['qv'], ['qv'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 2480 len: <class 'list'> Data: ['password', 'change', 'password', 'change'] processed_text: ['password', 'change', 'password', 'change'] list_processed_text: [['password'], ['change'], ['password'], ['change']] k: 2481 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 2482 len: <class 'list'> Data: ['old', 'version', 'ethic', 'training', 'account', 'please', 'help', 'thank', 'old', 'version', 'ethic', 'training', 'account', 'please', 'help'] processed_text: ['old', 'version', 'ethic', 'training', 'account', 'please', 'help', 'thank', 'old', 'version', 'ethic', 'training', 'account', 'please', 'help'] list_processed_text: [['old'], ['version'], ['ethic'], ['training'], ['account'], ['please'], ['help'], ['thank'], ['old'], ['version'], ['ethic'], ['training'], ['account'], ['please'], ['help']] k: 2483 len: <class 'list'> Data: ['map', 'drive', 'map', 'drive'] processed_text: ['map', 'drive', 'map', 'drive'] list_processed_text: [['map'], ['drive'], ['map'], ['drive']] k: 2484 len: <class 'list'> Data: ['crm', 'synching', 'mail', 'crm', 'synching', 'mail'] processed_text: ['crm', 'synching', 'mail', 'crm', 'synching', 'mail'] list_processed_text: [['crm'], ['synching'], ['mail'], ['crm'], ['synching'], ['mail']] k: 2485 len: <class 'list'> Data: ['vpn', 'erp', 'log', 'getting', 'tiresome', 'logged', 'vpn', 'automatically', 'working', 'erp', 'cant', 'seem', 'get', 'much', 'done', 'keep', 'logging', 'back', 'need', 'fixed', 'mnlvhtug', 'imvetgoa', 'sr', 'application', 'engineer', 'general', 'engineering', 'company', 'inc'] processed_text: ['vpn', 'erp', 'log', 'getting', 'tiresome', 'logged', 'vpn', 'automatically', 'working', 'erp', 'cant', 'seem', 'get', 'much', 'done', 'keep', 'logging', 'back', 'need', 'fixed', 'mnlvhtug', 'imvetgoa', 'sr', 'application', 'engineer', 'general', 'engineering', 'company', 'inc'] list_processed_text: [['vpn'], ['erp'], ['log'], ['getting'], ['tiresome'], ['logged'], ['vpn'], ['automatically'], ['working'], ['erp'], ['cant'], ['seem'], ['get'], ['much'], ['done'], ['keep'], ['logging'], ['back'], ['need'], ['fixed'], ['mnlvhtug'], ['imvetgoa'], ['sr'], ['application'], ['engineer'], ['general'], ['engineering'], ['company'], ['inc']] k: 2486 len: <class 'list'> Data: ['user', 'wish', 'set', 'lan', 'first', 'priority', 'internet', 'user', 'wish', 'set', 'lan', 'first', 'priority', 'internet', 'laptop', 'make', 'wireless', 'first', 'priority', 'disconnect', 'lan', 'connect', 'wireless', 'pc', 'name', 'ldvl'] processed_text: ['user', 'wish', 'set', 'lan', 'first', 'priority', 'internet', 'user', 'wish', 'set', 'lan', 'first', 'priority', 'internet', 'laptop', 'make', 'wireless', 'first', 'priority', 'disconnect', 'lan', 'connect', 'wireless', 'pc', 'name', 'ldvl'] list_processed_text: [['user'], ['wish'], ['set'], ['lan'], ['first'], ['priority'], ['internet'], ['user'], ['wish'], ['set'], ['lan'], ['first'], ['priority'], ['internet'], ['laptop'], ['make'], ['wireless'], ['first'], ['priority'], ['disconnect'], ['lan'], ['connect'], ['wireless'], ['pc'], ['name'], ['ldvl']] k: 2487 len: <class 'list'> Data: ['external', 'caller', 'asking', 'vtykrubi', 'whsipqno', 'email', 'address', 'external', 'caller', 'asking', 'vtykrubi', 'whsipqno', 'email', 'address'] processed_text: ['external', 'caller', 'asking', 'vtykrubi', 'whsipqno', 'email', 'address', 'external', 'caller', 'asking', 'vtykrubi', 'whsipqno', 'email', 'address'] list_processed_text: [['external'], ['caller'], ['asking'], ['vtykrubi'], ['whsipqno'], ['email'], ['address'], ['external'], ['caller'], ['asking'], ['vtykrubi'], ['whsipqno'], ['email'], ['address']] k: 2488 len: <class 'list'> Data: ['unable', 'open', 'website', 'unable', 'open', 'website'] processed_text: ['unable', 'open', 'website', 'unable', 'open', 'website'] list_processed_text: [['unable'], ['open'], ['website'], ['unable'], ['open'], ['website']] k: 2489 len: <class 'list'> Data: ['unlock', 'erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account'] processed_text: ['unlock', 'erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account'] list_processed_text: [['unlock'], ['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account']] k: 2490 len: <class 'list'> Data: ['help', 'install', 'engineering', 'tool', 'people', 'company', 'hi', 'team', 'need', 'help', 'people', 'employee', 'company', 'needed', 'install', 'engineering', 'tool', 'computer', 'client', 'company', 'id', 'ccfterguss', 'acces', 'site', 'engineering', 'tool', 'hour', 'install', 'appears', 'error', 'attachment', 'instruction', 'install', 'computer', 'company'] processed_text: ['help', 'install', 'engineering', 'tool', 'people', 'company', 'hi', 'team', 'need', 'help', 'people', 'employee', 'company', 'needed', 'install', 'engineering', 'tool', 'computer', 'client', 'company', 'id', 'ccfterguss', 'acces', 'site', 'engineering', 'tool', 'hour', 'install', 'appears', 'error', 'attachment', 'instruction', 'install', 'computer', 'company'] list_processed_text: [['help'], ['install'], ['engineering'], ['tool'], ['people'], ['company'], ['hi'], ['team'], ['need'], ['help'], ['people'], ['employee'], ['company'], ['needed'], ['install'], ['engineering'], ['tool'], ['computer'], ['client'], ['company'], ['id'], ['ccfterguss'], ['acces'], ['site'], ['engineering'], ['tool'], ['hour'], ['install'], ['appears'], ['error'], ['attachment'], ['instruction'], ['install'], ['computer'], ['company']] k: 2491 len: <class 'list'> Data: ['monitor', 'wire', 'pc', 'monitor', 'wire', 'pc'] processed_text: ['monitor', 'wire', 'pc', 'monitor', 'wire', 'pc'] list_processed_text: [['monitor'], ['wire'], ['pc'], ['monitor'], ['wire'], ['pc']] k: 2492 len: <class 'list'> Data: ['unable', 'find', 'name', 'sale', 'person', 'engineering', 'tool', 'unable', 'find', 'name', 'sale', 'person', 'engineering', 'tool', 'phone'] processed_text: ['unable', 'find', 'name', 'sale', 'person', 'engineering', 'tool', 'unable', 'find', 'name', 'sale', 'person', 'engineering', 'tool', 'phone'] list_processed_text: [['unable'], ['find'], ['name'], ['sale'], ['person'], ['engineering'], ['tool'], ['unable'], ['find'], ['name'], ['sale'], ['person'], ['engineering'], ['tool'], ['phone']] k: 2493 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 2494 len: <class 'list'> Data: ['usa', 'plant', 'switch', 'server', 'site', 'et', 'usa', 'plant', 'switch', 'server', 'site', 'et'] processed_text: ['usa', 'plant', 'switch', 'server', 'site', 'et', 'usa', 'plant', 'switch', 'server', 'site', 'et'] list_processed_text: [['usa'], ['plant'], ['switch'], ['server'], ['site'], ['et'], ['usa'], ['plant'], ['switch'], ['server'], ['site'], ['et']] k: 2495 len: <class 'list'> Data: ['internet', 'lwgytuxq', 'qspdztiw', 'called', 'issue', 'internet', 'completely', 'unable', 'access', 'internet', 'erp', 'application', 'contact'] processed_text: ['internet', 'lwgytuxq', 'qspdztiw', 'called', 'issue', 'internet', 'completely', 'unable', 'access', 'internet', 'erp', 'application', 'contact'] list_processed_text: [['internet'], ['lwgytuxq'], ['qspdztiw'], ['called'], ['issue'], ['internet'], ['completely'], ['unable'], ['access'], ['internet'], ['erp'], ['application'], ['contact']] k: 2496 len: <class 'list'> Data: ['outlook', 'calendar', 'shatryung', 'tried', 'share', 'calendar', 'outlook', 'manager', 'rick', 'orelli', 'got', 'error', 'message', 'biintll', 'tujutnis', 'senior', 'sale', 'engineer', 'wc', 'team', 'www', 'company', 'com'] processed_text: ['outlook', 'calendar', 'shatryung', 'tried', 'share', 'calendar', 'outlook', 'manager', 'rick', 'orelli', 'got', 'error', 'message', 'biintll', 'tujutnis', 'senior', 'sale', 'engineer', 'wc', 'team', 'www', 'company', 'com'] list_processed_text: [['outlook'], ['calendar'], ['shatryung'], ['tried'], ['share'], ['calendar'], ['outlook'], ['manager'], ['rick'], ['orelli'], ['got'], ['error'], ['message'], ['biintll'], ['tujutnis'], ['senior'], ['sale'], ['engineer'], ['wc'], ['team'], ['www'], ['company'], ['com']] k: 2497 len: <class 'list'> Data: ['quote', 'workflow', 'wjslkzfr', 'jxlbzwrp', 'pm', 'nwfodmhc', 'exurcwkm', 'quote', 'workflow', 'hi', 'item', 'workflow', 'unable', 'save', 'appears', 'quote', 'deleted', 'line', 'please', 'help', 'get', 'saved'] processed_text: ['quote', 'workflow', 'wjslkzfr', 'jxlbzwrp', 'pm', 'nwfodmhc', 'exurcwkm', 'quote', 'workflow', 'hi', 'item', 'workflow', 'unable', 'save', 'appears', 'quote', 'deleted', 'line', 'please', 'help', 'get', 'saved'] list_processed_text: [['quote'], ['workflow'], ['wjslkzfr'], ['jxlbzwrp'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['quote'], ['workflow'], ['hi'], ['item'], ['workflow'], ['unable'], ['save'], ['appears'], ['quote'], ['deleted'], ['line'], ['please'], ['help'], ['get'], ['saved']] k: 2498 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'changing', 'password', 'unable', 'open', 'outlook', 'changing', 'password'] processed_text: ['unable', 'open', 'outlook', 'changing', 'password', 'unable', 'open', 'outlook', 'changing', 'password'] list_processed_text: [['unable'], ['open'], ['outlook'], ['changing'], ['password'], ['unable'], ['open'], ['outlook'], ['changing'], ['password']] k: 2499 len: <class 'list'> Data: ['unable', 'login', 'skype', 'name', 'ksgytjqr', 'ojdukgzc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'sign', 'skype'] processed_text: ['unable', 'login', 'skype', 'name', 'ksgytjqr', 'ojdukgzc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'sign', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['name'], ['ksgytjqr'], ['ojdukgzc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['sign'], ['skype']] k: 2500 len: <class 'list'> Data: ['ethic', 'made', 'several', 'attempt', 'access', 'ethic', 'training', 'connect', 'soujqrxw', 'mvwduljx', 'company', 'inc', 'sale', 'engineer', 'usa', 'cell', 'customer', 'service', 'product', 'support'] processed_text: ['ethic', 'made', 'several', 'attempt', 'access', 'ethic', 'training', 'connect', 'soujqrxw', 'mvwduljx', 'company', 'inc', 'sale', 'engineer', 'usa', 'cell', 'customer', 'service', 'product', 'support'] list_processed_text: [['ethic'], ['made'], ['several'], ['attempt'], ['access'], ['ethic'], ['training'], ['connect'], ['soujqrxw'], ['mvwduljx'], ['company'], ['inc'], ['sale'], ['engineer'], ['usa'], ['cell'], ['customer'], ['service'], ['product'], ['support']] k: 2501 len: <class 'list'> Data: ['audio', 'device', 'audio', 'device', 'pc', 'failed', 'play', 'uacyltoe', 'hxgaycze', 'tone'] processed_text: ['audio', 'device', 'audio', 'device', 'pc', 'failed', 'play', 'uacyltoe', 'hxgaycze', 'tone'] list_processed_text: [['audio'], ['device'], ['audio'], ['device'], ['pc'], ['failed'], ['play'], ['uacyltoe'], ['hxgaycze'], ['tone']] k: 2502 len: <class 'list'> Data: ['vpn', 'issue', 'hello', 'team', 'vpn', 'accept', 'username', 'password', 'please', 'contact', 'earliest', 'convenience', 'best'] processed_text: ['vpn', 'issue', 'hello', 'team', 'vpn', 'accept', 'username', 'password', 'please', 'contact', 'earliest', 'convenience', 'best'] list_processed_text: [['vpn'], ['issue'], ['hello'], ['team'], ['vpn'], ['accept'], ['username'], ['password'], ['please'], ['contact'], ['earliest'], ['convenience'], ['best']] k: 2503 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 2504 len: <class 'list'> Data: ['vip', 'ie', 'crash', 'opening', 'mii', 'es', 'portal', 'vip', 'ie', 'crash', 'opening', 'mii', 'es', 'portal', 'phone'] processed_text: ['vip', 'ie', 'crash', 'opening', 'mii', 'es', 'portal', 'vip', 'ie', 'crash', 'opening', 'mii', 'es', 'portal', 'phone'] list_processed_text: [['vip'], ['ie'], ['crash'], ['opening'], ['mii'], ['es'], ['portal'], ['vip'], ['ie'], ['crash'], ['opening'], ['mii'], ['es'], ['portal'], ['phone']] k: 2505 len: <class 'list'> Data: ['renew', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'renew', 'internal', 'certificate', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['renew', 'internal', 'certificate', 'password', 'management', 'tool', 'id', 'password', 'manager', 'renew', 'internal', 'certificate', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['renew'], ['internal'], ['certificate'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['renew'], ['internal'], ['certificate'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 2506 len: <class 'list'> Data: ['e', 'mail', 'certificate', 'going', 'lean', 'participant', 'today', 'created', 'lean', 'event', 'collaboration', 'platform', 'lean', 'tracker', 'submitting', 'event', 'participant', 'got', 'mail', 'lean', 'certificate', 'lean', 'tracker', 'id', 'event', 'created'] processed_text: ['e', 'mail', 'certificate', 'going', 'lean', 'participant', 'today', 'created', 'lean', 'event', 'collaboration', 'platform', 'lean', 'tracker', 'submitting', 'event', 'participant', 'got', 'mail', 'lean', 'certificate', 'lean', 'tracker', 'id', 'event', 'created'] list_processed_text: [['e'], ['mail'], ['certificate'], ['going'], ['lean'], ['participant'], ['today'], ['created'], ['lean'], ['event'], ['collaboration'], ['platform'], ['lean'], ['tracker'], ['submitting'], ['event'], ['participant'], ['got'], ['mail'], ['lean'], ['certificate'], ['lean'], ['tracker'], ['id'], ['event'], ['created']] k: 2507 len: <class 'list'> Data: ['unable', 'create', 'collaboration', 'platform', 'collaboration', 'platform', 'workbook', 'account', 'due', 'duplicate', 'detetection', 'pollaurid', 'unable', 'enable', 'sp', 'account', 'without', 'getting', 'error', 'indicating', 'potential', 'duplicate', 'account', 'different', 'use', 'email', 'address', 'believe', 'dup', 'detection', 'based', 'attempt', 'save', 'anyways', 'get', 'business', 'process', 'error', 'pls', 'refer', 'account', 'example', 'well', 'attached', 'screen', 'shot'] processed_text: ['unable', 'create', 'collaboration', 'platform', 'collaboration', 'platform', 'workbook', 'account', 'due', 'duplicate', 'detetection', 'pollaurid', 'unable', 'enable', 'sp', 'account', 'without', 'getting', 'error', 'indicating', 'potential', 'duplicate', 'account', 'different', 'use', 'email', 'address', 'believe', 'dup', 'detection', 'based', 'attempt', 'save', 'anyways', 'get', 'business', 'process', 'error', 'pls', 'refer', 'account', 'example', 'well', 'attached', 'screen', 'shot'] list_processed_text: [['unable'], ['create'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['workbook'], ['account'], ['due'], ['duplicate'], ['detetection'], ['pollaurid'], ['unable'], ['enable'], ['sp'], ['account'], ['without'], ['getting'], ['error'], ['indicating'], ['potential'], ['duplicate'], ['account'], ['different'], ['use'], ['email'], ['address'], ['believe'], ['dup'], ['detection'], ['based'], ['attempt'], ['save'], ['anyways'], ['get'], ['business'], ['process'], ['error'], ['pls'], ['refer'], ['account'], ['example'], ['well'], ['attached'], ['screen'], ['shot']] k: 2508 len: <class 'list'> Data: ['issue', 'viewing', 'pay', 'statement', 'hr', 'tool', 'appears', 'browser', 'issue', 'viewing', 'pay', 'statement', 'hr', 'tool', 'see', 'email', 'able', 'help', 'view', 'screen'] processed_text: ['issue', 'viewing', 'pay', 'statement', 'hr', 'tool', 'appears', 'browser', 'issue', 'viewing', 'pay', 'statement', 'hr', 'tool', 'see', 'email', 'able', 'help', 'view', 'screen'] list_processed_text: [['issue'], ['viewing'], ['pay'], ['statement'], ['hr'], ['tool'], ['appears'], ['browser'], ['issue'], ['viewing'], ['pay'], ['statement'], ['hr'], ['tool'], ['see'], ['email'], ['able'], ['help'], ['view'], ['screen']] k: 2509 len: <class 'list'> Data: ['global', 'telecom', 'number', 'global', 'telecom', 'number'] processed_text: ['global', 'telecom', 'number', 'global', 'telecom', 'number'] list_processed_text: [['global'], ['telecom'], ['number'], ['global'], ['telecom'], ['number']] k: 2510 len: <class 'list'> Data: ['telephony', 'software', 'password', 'reset', 'good', 'morning', 'need', 'password', 'reset', 'telephony', 'software', 'vfjsubao', 'yihelxgp', 'id', 'taylthyuoaj', 'workstation', 'ldgl'] processed_text: ['telephony', 'software', 'password', 'reset', 'good', 'morning', 'need', 'password', 'reset', 'telephony', 'software', 'vfjsubao', 'yihelxgp', 'id', 'taylthyuoaj', 'workstation', 'ldgl'] list_processed_text: [['telephony'], ['software'], ['password'], ['reset'], ['good'], ['morning'], ['need'], ['password'], ['reset'], ['telephony'], ['software'], ['vfjsubao'], ['yihelxgp'], ['id'], ['taylthyuoaj'], ['workstation'], ['ldgl']] k: 2511 len: <class 'list'> Data: ['printer', 'printing', 'printer', 'printing'] processed_text: ['printer', 'printing', 'printer', 'printing'] list_processed_text: [['printer'], ['printing'], ['printer'], ['printing']] k: 2512 len: <class 'list'> Data: ['cad', 'team', 'code', 'characteristic', 'please', 'add', 'manuf', 'eng', 'u', 'plant'] processed_text: ['cad', 'team', 'code', 'characteristic', 'please', 'add', 'manuf', 'eng', 'u', 'plant'] list_processed_text: [['cad'], ['team'], ['code'], ['characteristic'], ['please'], ['add'], ['manuf'], ['eng'], ['u'], ['plant']] k: 2513 len: <class 'list'> Data: ['minitab', 'license', 'issue', 'cannot', 'run', 'minitab', 'early', 'minitab', 'license', 'issue', 'cannot', 'run', 'minitab', 'early', 'minitab', 'throw', 'license', 'server', 'found', 'error', 'affecting', 'production', 'usa', 'site'] processed_text: ['minitab', 'license', 'issue', 'cannot', 'run', 'minitab', 'early', 'minitab', 'license', 'issue', 'cannot', 'run', 'minitab', 'early', 'minitab', 'throw', 'license', 'server', 'found', 'error', 'affecting', 'production', 'usa', 'site'] list_processed_text: [['minitab'], ['license'], ['issue'], ['cannot'], ['run'], ['minitab'], ['early'], ['minitab'], ['license'], ['issue'], ['cannot'], ['run'], ['minitab'], ['early'], ['minitab'], ['throw'], ['license'], ['server'], ['found'], ['error'], ['affecting'], ['production'], ['usa'], ['site']] k: 2514 len: <class 'list'> Data: ['hr', 'tool', 'time', 'application', 'morning', 'time', 'stamp', 'selection', 'timecard', 'cannot', 'log', 'clock', 'hr', 'tool', 'time', 'application', 'morning', 'time', 'stamp', 'selection', 'timecard', 'cannot', 'log', 'clock', 'time', 'morning', 'cannot', 'clock', 'local', 'stefyty', 'dabhruji', 'already', 'looked', 'appears', 'something', 'wrong', 'account', 'application', 'phone', 'email'] processed_text: ['hr', 'tool', 'time', 'application', 'morning', 'time', 'stamp', 'selection', 'timecard', 'cannot', 'log', 'clock', 'hr', 'tool', 'time', 'application', 'morning', 'time', 'stamp', 'selection', 'timecard', 'cannot', 'log', 'clock', 'time', 'morning', 'cannot', 'clock', 'local', 'stefyty', 'dabhruji', 'already', 'looked', 'appears', 'something', 'wrong', 'account', 'application', 'phone', 'email'] list_processed_text: [['hr'], ['tool'], ['time'], ['application'], ['morning'], ['time'], ['stamp'], ['selection'], ['timecard'], ['cannot'], ['log'], ['clock'], ['hr'], ['tool'], ['time'], ['application'], ['morning'], ['time'], ['stamp'], ['selection'], ['timecard'], ['cannot'], ['log'], ['clock'], ['time'], ['morning'], ['cannot'], ['clock'], ['local'], ['stefyty'], ['dabhruji'], ['already'], ['looked'], ['appears'], ['something'], ['wrong'], ['account'], ['application'], ['phone'], ['email']] k: 2515 len: <class 'list'> Data: ['crm', 'issue', 'iphone', 'hi', 'trying', 'set', 'crm', 'iphone', 'asks', 'company', 'crm', 'address'] processed_text: ['crm', 'issue', 'iphone', 'hi', 'trying', 'set', 'crm', 'iphone', 'asks', 'company', 'crm', 'address'] list_processed_text: [['crm'], ['issue'], ['iphone'], ['hi'], ['trying'], ['set'], ['crm'], ['iphone'], ['asks'], ['company'], ['crm'], ['address']] k: 2516 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 2517 len: <class 'list'> Data: ['url', 'working', 'url', 'working'] processed_text: ['url', 'working', 'url', 'working'] list_processed_text: [['url'], ['working'], ['url'], ['working']] k: 2518 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'change', 'someone', 'please', 'advise', 'still', 'utilizing', 'password', 'management', 'tool', 'password', 'manager', 'connect', 'site', 'mass', 'update', 'new', 'password', 'account'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'change', 'someone', 'please', 'advise', 'still', 'utilizing', 'password', 'management', 'tool', 'password', 'manager', 'connect', 'site', 'mass', 'update', 'new', 'password', 'account'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['change'], ['someone'], ['please'], ['advise'], ['still'], ['utilizing'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['connect'], ['site'], ['mass'], ['update'], ['new'], ['password'], ['account']] k: 2519 len: <class 'list'> Data: ['reset', 'password', 'qwsjptlo', 'hnlasbed', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qwsjptlo', 'hnlasbed', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qwsjptlo'], ['hnlasbed'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2520 len: <class 'list'> Data: ['reset', 'password', 'qwsjptlo', 'hnlasbed', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qwsjptlo', 'hnlasbed', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qwsjptlo'], ['hnlasbed'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2521 len: <class 'list'> Data: ['business', 'client', 'issue', 'hi', 'support', 'one', 'user', 'problem', 'running', 'business', 'client', 'client', 'still', 'getting', 'error', 'message', 'net', 'framdntyework', 'installed', 'pc', 'tried', 'reinstall', 'success', 'known', 'issue', 'please', 'help', 'u', 'solve'] processed_text: ['business', 'client', 'issue', 'hi', 'support', 'one', 'user', 'problem', 'running', 'business', 'client', 'client', 'still', 'getting', 'error', 'message', 'net', 'framdntyework', 'installed', 'pc', 'tried', 'reinstall', 'success', 'known', 'issue', 'please', 'help', 'u', 'solve'] list_processed_text: [['business'], ['client'], ['issue'], ['hi'], ['support'], ['one'], ['user'], ['problem'], ['running'], ['business'], ['client'], ['client'], ['still'], ['getting'], ['error'], ['message'], ['net'], ['framdntyework'], ['installed'], ['pc'], ['tried'], ['reinstall'], ['success'], ['known'], ['issue'], ['please'], ['help'], ['u'], ['solve']] k: 2522 len: <class 'list'> Data: ['hardware', 'item', 'coming', 'wrong', 'labeling', 'warehouse', 'tool', 'please', 'change', 'erp', 'logic', 'currently', 'identifies', 'hardware', 'item', 'warehouse', 'tool', 'include', 'rqfhiong', 'zkwfqagb', 'classification', 'hdw', 'see', 'attached', 'email', 'assign', 'vamthrsee', 'krisyuhnyrt'] processed_text: ['hardware', 'item', 'coming', 'wrong', 'labeling', 'warehouse', 'tool', 'please', 'change', 'erp', 'logic', 'currently', 'identifies', 'hardware', 'item', 'warehouse', 'tool', 'include', 'rqfhiong', 'zkwfqagb', 'classification', 'hdw', 'see', 'attached', 'email', 'assign', 'vamthrsee', 'krisyuhnyrt'] list_processed_text: [['hardware'], ['item'], ['coming'], ['wrong'], ['labeling'], ['warehouse'], ['tool'], ['please'], ['change'], ['erp'], ['logic'], ['currently'], ['identifies'], ['hardware'], ['item'], ['warehouse'], ['tool'], ['include'], ['rqfhiong'], ['zkwfqagb'], ['classification'], ['hdw'], ['see'], ['attached'], ['email'], ['assign'], ['vamthrsee'], ['krisyuhnyrt']] k: 2523 len: <class 'list'> Data: ['problem', 'opening', 'password', 'management', 'tool', 'password', 'manager', 'screenshot', 'message', 'received', 'tried', 'open', 'password', 'management', 'tool', 'password', 'manager', 'site', 'morning', 'reset', 'password', 'please', 'advise'] processed_text: ['problem', 'opening', 'password', 'management', 'tool', 'password', 'manager', 'screenshot', 'message', 'received', 'tried', 'open', 'password', 'management', 'tool', 'password', 'manager', 'site', 'morning', 'reset', 'password', 'please', 'advise'] list_processed_text: [['problem'], ['opening'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['screenshot'], ['message'], ['received'], ['tried'], ['open'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['site'], ['morning'], ['reset'], ['password'], ['please'], ['advise']] k: 2524 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'carrier', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'carrier', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['carrier'], ['company'], ['ap'], ['ind'], ['carrier'], ['dmvpn'], ['rtr'], ['et'], ['site'], ['secondary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2525 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sid', 'please', 'reset', 'following', 'password', 'erp', 'sid', 'u', 'plant', 'employee', 'knemilvx', 'dvqtziya', 'nabjwvtd', 'sprhouiv'] processed_text: ['password', 'reset', 'erp', 'sid', 'please', 'reset', 'following', 'password', 'erp', 'sid', 'u', 'plant', 'employee', 'knemilvx', 'dvqtziya', 'nabjwvtd', 'sprhouiv'] list_processed_text: [['password'], ['reset'], ['erp'], ['sid'], ['please'], ['reset'], ['following'], ['password'], ['erp'], ['sid'], ['u'], ['plant'], ['employee'], ['knemilvx'], ['dvqtziya'], ['nabjwvtd'], ['sprhouiv']] k: 2526 len: <class 'list'> Data: ['reset', 'password', 'jmusidzr', 'sratdeol', 'erp', 'production', 'hcm', 'reset', 'password', 'jmusidzr', 'sratdeol', 'erp', 'production', 'hcm'] processed_text: ['reset', 'password', 'jmusidzr', 'sratdeol', 'erp', 'production', 'hcm', 'reset', 'password', 'jmusidzr', 'sratdeol', 'erp', 'production', 'hcm'] list_processed_text: [['reset'], ['password'], ['jmusidzr'], ['sratdeol'], ['erp'], ['production'], ['hcm'], ['reset'], ['password'], ['jmusidzr'], ['sratdeol'], ['erp'], ['production'], ['hcm']] k: 2527 len: <class 'list'> Data: ['united', 'kingdom', 'problem', 'making', 'outbound', 'call', 'united', 'kingdom', 'issue', 'making', 'outbound', 'call', 'telephony', 'software', 'siemens', 'pbx'] processed_text: ['united', 'kingdom', 'problem', 'making', 'outbound', 'call', 'united', 'kingdom', 'issue', 'making', 'outbound', 'call', 'telephony', 'software', 'siemens', 'pbx'] list_processed_text: [['united'], ['kingdom'], ['problem'], ['making'], ['outbound'], ['call'], ['united'], ['kingdom'], ['issue'], ['making'], ['outbound'], ['call'], ['telephony'], ['software'], ['siemens'], ['pbx']] k: 2528 len: <class 'list'> Data: ['user', 'able', 'add', 'zj', 'partner', 'sid', 'security', 'please', 'advise', 'fixed', 'someone', 'service', 'center', 'able', 'successfully', 'add', 'zj', 'partner', 'existing', 'customer', 'master', 'account', 'sid', 'set', 'user', 'assigned', 'sd', 'cust', 'mast', 'partner', 'func', 'zj', 'role', 'would', 'add', 'edit', 'delete', 'access', 'partner', 'function', 'summary', 'happened', 'per', 'lillanna', 'ujxvrlzg', 'pkaegicn', 'using', 'sid', 'ecc', 'strange', 'system', 'gave', 'warning', 'allowed', 'add', 'zj', 'partner', 'function', 'could', 'even', 'save', 'change', 'cleared', 'zj', 'field', 'seems', 'system', 'added', 'zj', 'partner', 'function', 'anyway', 'saved', 'account', 'account', 'added', 'zj', 'partner'] processed_text: ['user', 'able', 'add', 'zj', 'partner', 'sid', 'security', 'please', 'advise', 'fixed', 'someone', 'service', 'center', 'able', 'successfully', 'add', 'zj', 'partner', 'existing', 'customer', 'master', 'account', 'sid', 'set', 'user', 'assigned', 'sd', 'cust', 'mast', 'partner', 'func', 'zj', 'role', 'would', 'add', 'edit', 'delete', 'access', 'partner', 'function', 'summary', 'happened', 'per', 'lillanna', 'ujxvrlzg', 'pkaegicn', 'using', 'sid', 'ecc', 'strange', 'system', 'gave', 'warning', 'allowed', 'add', 'zj', 'partner', 'function', 'could', 'even', 'save', 'change', 'cleared', 'zj', 'field', 'seems', 'system', 'added', 'zj', 'partner', 'function', 'anyway', 'saved', 'account', 'account', 'added', 'zj', 'partner'] list_processed_text: [['user'], ['able'], ['add'], ['zj'], ['partner'], ['sid'], ['security'], ['please'], ['advise'], ['fixed'], ['someone'], ['service'], ['center'], ['able'], ['successfully'], ['add'], ['zj'], ['partner'], ['existing'], ['customer'], ['master'], ['account'], ['sid'], ['set'], ['user'], ['assigned'], ['sd'], ['cust'], ['mast'], ['partner'], ['func'], ['zj'], ['role'], ['would'], ['add'], ['edit'], ['delete'], ['access'], ['partner'], ['function'], ['summary'], ['happened'], ['per'], ['lillanna'], ['ujxvrlzg'], ['pkaegicn'], ['using'], ['sid'], ['ecc'], ['strange'], ['system'], ['gave'], ['warning'], ['allowed'], ['add'], ['zj'], ['partner'], ['function'], ['could'], ['even'], ['save'], ['change'], ['cleared'], ['zj'], ['field'], ['seems'], ['system'], ['added'], ['zj'], ['partner'], ['function'], ['anyway'], ['saved'], ['account'], ['account'], ['added'], ['zj'], ['partner']] k: 2529 len: <class 'list'> Data: ['po', 'data', 'please', 'provide', 'po', 'data', 'month'] processed_text: ['po', 'data', 'please', 'provide', 'po', 'data', 'month'] list_processed_text: [['po'], ['data'], ['please'], ['provide'], ['po'], ['data'], ['month']] k: 2530 len: <class 'list'> Data: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'tiyhum', 'kuyiomar', 'password', 'reset', 'hi', 'shivakuhdty', 'account', 'locked', 'unlocked', 'account', 'please', 'try', 'login', 'existing', 'password', 'es', 'user', 'changed', 'password', 'please', 'replay', 'back', 'issue'] processed_text: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'tiyhum', 'kuyiomar', 'password', 'reset', 'hi', 'shivakuhdty', 'account', 'locked', 'unlocked', 'account', 'please', 'try', 'login', 'existing', 'password', 'es', 'user', 'changed', 'password', 'please', 'replay', 'back', 'issue'] list_processed_text: [['password'], ['reset'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['tiyhum'], ['kuyiomar'], ['password'], ['reset'], ['hi'], ['shivakuhdty'], ['account'], ['locked'], ['unlocked'], ['account'], ['please'], ['try'], ['login'], ['existing'], ['password'], ['es'], ['user'], ['changed'], ['password'], ['please'], ['replay'], ['back'], ['issue']] k: 2531 len: <class 'list'> Data: ['outlook', 'security', 'certificate', 'notification', 'dear', 'sir', 'mam', 'kindly', 'refer', 'screenshot', 'notification', 'prompting', 'best'] processed_text: ['outlook', 'security', 'certificate', 'notification', 'dear', 'sir', 'mam', 'kindly', 'refer', 'screenshot', 'notification', 'prompting', 'best'] list_processed_text: [['outlook'], ['security'], ['certificate'], ['notification'], ['dear'], ['sir'], ['mam'], ['kindly'], ['refer'], ['screenshot'], ['notification'], ['prompting'], ['best']] k: 2532 len: <class 'list'> Data: ['sale', 'office', 'mw', 'defined', 'sale', 'area', 'sartlgeo', 'lhqksbdx', 'opened', 'new', 'order', 'got', 'communicate', 'tahat', 'order', 'incomplete', 'sale', 'office', 'determinated', 'try', 'enter', 'right', 'sale', 'office', 'mw', 'add', 'chanhes', 'print', 'screen', 'attached'] processed_text: ['sale', 'office', 'mw', 'defined', 'sale', 'area', 'sartlgeo', 'lhqksbdx', 'opened', 'new', 'order', 'got', 'communicate', 'tahat', 'order', 'incomplete', 'sale', 'office', 'determinated', 'try', 'enter', 'right', 'sale', 'office', 'mw', 'add', 'chanhes', 'print', 'screen', 'attached'] list_processed_text: [['sale'], ['office'], ['mw'], ['defined'], ['sale'], ['area'], ['sartlgeo'], ['lhqksbdx'], ['opened'], ['new'], ['order'], ['got'], ['communicate'], ['tahat'], ['order'], ['incomplete'], ['sale'], ['office'], ['determinated'], ['try'], ['enter'], ['right'], ['sale'], ['office'], ['mw'], ['add'], ['chanhes'], ['print'], ['screen'], ['attached']] k: 2533 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2534 len: <class 'list'> Data: ['issue', 'resolved', 'error', 'certificate', 'list', 'pse', 'ssl', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'error', 'certificate', 'list', 'pse', 'ssl', 'client', 'standard', 'end', 'day'] processed_text: ['issue', 'resolved', 'error', 'certificate', 'list', 'pse', 'ssl', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'error', 'certificate', 'list', 'pse', 'ssl', 'client', 'standard', 'end', 'day'] list_processed_text: [['issue'], ['resolved'], ['error'], ['certificate'], ['list'], ['pse'], ['ssl'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['error'], ['certificate'], ['list'], ['pse'], ['ssl'], ['client'], ['standard'], ['end'], ['day']] k: 2535 len: <class 'list'> Data: ['reset', 'password', 'dqowbefk', 'prgxwzco', 'erp', 'production', 'hcm', 'changed', 'password', 'expiration', 'erp', 'accept', 'new', 'password', 'say', 'name', 'password', 'correct', 'please', 'fix'] processed_text: ['reset', 'password', 'dqowbefk', 'prgxwzco', 'erp', 'production', 'hcm', 'changed', 'password', 'expiration', 'erp', 'accept', 'new', 'password', 'say', 'name', 'password', 'correct', 'please', 'fix'] list_processed_text: [['reset'], ['password'], ['dqowbefk'], ['prgxwzco'], ['erp'], ['production'], ['hcm'], ['changed'], ['password'], ['expiration'], ['erp'], ['accept'], ['new'], ['password'], ['say'], ['name'], ['password'], ['correct'], ['please'], ['fix']] k: 2536 len: <class 'list'> Data: ['engineering', 'tool', 'erp', 'system', 'message', 'user', 'reported', 'seeing', 'attached', 'error', 'message', 'today', 'regarding', 'certificate', 'validity'] processed_text: ['engineering', 'tool', 'erp', 'system', 'message', 'user', 'reported', 'seeing', 'attached', 'error', 'message', 'today', 'regarding', 'certificate', 'validity'] list_processed_text: [['engineering'], ['tool'], ['erp'], ['system'], ['message'], ['user'], ['reported'], ['seeing'], ['attached'], ['error'], ['message'], ['today'], ['regarding'], ['certificate'], ['validity']] k: 2537 len: <class 'list'> Data: ['bex', 'analyzer', 'bex', 'designer', 'working', 'bex', 'analyzer', 'bex', 'designer', 'working'] processed_text: ['bex', 'analyzer', 'bex', 'designer', 'working', 'bex', 'analyzer', 'bex', 'designer', 'working'] list_processed_text: [['bex'], ['analyzer'], ['bex'], ['designer'], ['working'], ['bex'], ['analyzer'], ['bex'], ['designer'], ['working']] k: 2538 len: <class 'list'> Data: ['erpsys', 'certificate', 'error', 'hi', 'started', 'system', 'massage', 'prompt', 'every', 'time', 'move', 'erp', 'nord', 'nord', 'bothering', 'please', 'advise', 'qgrbnjiu', 'hidzlfma', 'manager', 'warehouse', 'distribution', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['erpsys', 'certificate', 'error', 'hi', 'started', 'system', 'massage', 'prompt', 'every', 'time', 'move', 'erp', 'nord', 'nord', 'bothering', 'please', 'advise', 'qgrbnjiu', 'hidzlfma', 'manager', 'warehouse', 'distribution', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['erpsys'], ['certificate'], ['error'], ['hi'], ['started'], ['system'], ['massage'], ['prompt'], ['every'], ['time'], ['move'], ['erp'], ['nord'], ['nord'], ['bothering'], ['please'], ['advise'], ['qgrbnjiu'], ['hidzlfma'], ['manager'], ['warehouse'], ['distribution'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 2539 len: <class 'list'> Data: ['office', 'upgraded', 'office', 'upgraded'] processed_text: ['office', 'upgraded', 'office', 'upgraded'] list_processed_text: [['office'], ['upgraded'], ['office'], ['upgraded']] k: 2540 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2541 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2542 len: <class 'list'> Data: ['look', 'identifying', 'root', 'cause', 'solution', 'inter', 'co', 'intransit', 'dn', 'received', 'dn', 'mm', 'qty', 'arrived', 'duplicated', 'please', 'help', 'finding', 'root', 'cause', 'duplicated', 'dn', 'could', 'pgi', 'since', 'dn', 'already', 'received', 'plant', 'able', 'perform', 'gr', 'intransit', 'please', 'provide', 'best', 'solution', 'process', 'gr'] processed_text: ['look', 'identifying', 'root', 'cause', 'solution', 'inter', 'co', 'intransit', 'dn', 'received', 'dn', 'mm', 'qty', 'arrived', 'duplicated', 'please', 'help', 'finding', 'root', 'cause', 'duplicated', 'dn', 'could', 'pgi', 'since', 'dn', 'already', 'received', 'plant', 'able', 'perform', 'gr', 'intransit', 'please', 'provide', 'best', 'solution', 'process', 'gr'] list_processed_text: [['look'], ['identifying'], ['root'], ['cause'], ['solution'], ['inter'], ['co'], ['intransit'], ['dn'], ['received'], ['dn'], ['mm'], ['qty'], ['arrived'], ['duplicated'], ['please'], ['help'], ['finding'], ['root'], ['cause'], ['duplicated'], ['dn'], ['could'], ['pgi'], ['since'], ['dn'], ['already'], ['received'], ['plant'], ['able'], ['perform'], ['gr'], ['intransit'], ['please'], ['provide'], ['best'], ['solution'], ['process'], ['gr']] k: 2543 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'hello', 'please', 'support', 'dealer', 'engineering', 'tool', 'installation', 'contact', 'detail', 'best'] processed_text: ['engineering', 'tool', 'working', 'hello', 'please', 'support', 'dealer', 'engineering', 'tool', 'installation', 'contact', 'detail', 'best'] list_processed_text: [['engineering'], ['tool'], ['working'], ['hello'], ['please'], ['support'], ['dealer'], ['engineering'], ['tool'], ['installation'], ['contact'], ['detail'], ['best']] k: 2544 len: <class 'list'> Data: ['server', 'access', 'right', 'hpmjtgik', 'blrmfvyh', 'help', 'desk', 'please', 'usa', 'access', 'right', 'hpmjtgik', 'blrmfvyh', 'following', 'folder', 'hostname', 'department', 'finance', 'new', 'staff', 'eh', 'japan', 'finance', 'department', 'reportncqulao', 'qauighdpnager', 'best'] processed_text: ['server', 'access', 'right', 'hpmjtgik', 'blrmfvyh', 'help', 'desk', 'please', 'usa', 'access', 'right', 'hpmjtgik', 'blrmfvyh', 'following', 'folder', 'hostname', 'department', 'finance', 'new', 'staff', 'eh', 'japan', 'finance', 'department', 'reportncqulao', 'qauighdpnager', 'best'] list_processed_text: [['server'], ['access'], ['right'], ['hpmjtgik'], ['blrmfvyh'], ['help'], ['desk'], ['please'], ['usa'], ['access'], ['right'], ['hpmjtgik'], ['blrmfvyh'], ['following'], ['folder'], ['hostname'], ['department'], ['finance'], ['new'], ['staff'], ['eh'], ['japan'], ['finance'], ['department'], ['reportncqulao'], ['qauighdpnager'], ['best']] k: 2545 len: <class 'list'> Data: ['access', 'drive', 'please', 'provide', 'access', 'mtb', 'mt', 'sale', 'drive', 'clarification', 'pl', 'call', 'back', 'best'] processed_text: ['access', 'drive', 'please', 'provide', 'access', 'mtb', 'mt', 'sale', 'drive', 'clarification', 'pl', 'call', 'back', 'best'] list_processed_text: [['access'], ['drive'], ['please'], ['provide'], ['access'], ['mtb'], ['mt'], ['sale'], ['drive'], ['clarification'], ['pl'], ['call'], ['back'], ['best']] k: 2546 len: <class 'list'> Data: ['mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'us', 'personal', 'device'] processed_text: ['mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'us', 'personal', 'device'] list_processed_text: [['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['us'], ['personal'], ['device']] k: 2547 len: <class 'list'> Data: ['lbxugpjw', 'cnmfbdui', 'mobile', 'phone', 'changed', 'hello', 'changed', 'mobile', 'phone', 'information', 'belong', 'personal', 'phone', 'could', 'provide', 'use', 'new', 'mobile', 'phone', 'device', 'mail'] processed_text: ['lbxugpjw', 'cnmfbdui', 'mobile', 'phone', 'changed', 'hello', 'changed', 'mobile', 'phone', 'information', 'belong', 'personal', 'phone', 'could', 'provide', 'use', 'new', 'mobile', 'phone', 'device', 'mail'] list_processed_text: [['lbxugpjw'], ['cnmfbdui'], ['mobile'], ['phone'], ['changed'], ['hello'], ['changed'], ['mobile'], ['phone'], ['information'], ['belong'], ['personal'], ['phone'], ['could'], ['provide'], ['use'], ['new'], ['mobile'], ['phone'], ['device'], ['mail']] k: 2548 len: <class 'list'> Data: ['network', 'outage', 'russia', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['russia'], ['warehouse'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2549 len: <class 'list'> Data: ['account', 'expired', 'vvamirsdwnp', 'pallutyr', 'able', 'log', 'kuhyndan', 'lalthy', 'nwfodmhc', 'exurcwkm', 'qjgnkhso', 'vahgolwx', 'user', 'id', 'vvamirsdwnp', 'pallutyr', 'able', 'log', 'pallutyr', 'user', 'id', 'vvamirsdwnp', 'able', 'log', 'window', 'etc', 'check', 'urgently', 'kindly', 'provide', 'access', 'upto'] processed_text: ['account', 'expired', 'vvamirsdwnp', 'pallutyr', 'able', 'log', 'kuhyndan', 'lalthy', 'nwfodmhc', 'exurcwkm', 'qjgnkhso', 'vahgolwx', 'user', 'id', 'vvamirsdwnp', 'pallutyr', 'able', 'log', 'pallutyr', 'user', 'id', 'vvamirsdwnp', 'able', 'log', 'window', 'etc', 'check', 'urgently', 'kindly', 'provide', 'access', 'upto'] list_processed_text: [['account'], ['expired'], ['vvamirsdwnp'], ['pallutyr'], ['able'], ['log'], ['kuhyndan'], ['lalthy'], ['nwfodmhc'], ['exurcwkm'], ['qjgnkhso'], ['vahgolwx'], ['user'], ['id'], ['vvamirsdwnp'], ['pallutyr'], ['able'], ['log'], ['pallutyr'], ['user'], ['id'], ['vvamirsdwnp'], ['able'], ['log'], ['window'], ['etc'], ['check'], ['urgently'], ['kindly'], ['provide'], ['access'], ['upto']] k: 2550 len: <class 'list'> Data: ['lehsm', 'lehsm', 'usa', 'company', 'since', 'et', 'lehsm', 'lehsm', 'since', 'et'] processed_text: ['lehsm', 'lehsm', 'usa', 'company', 'since', 'et', 'lehsm', 'lehsm', 'since', 'et'] list_processed_text: [['lehsm'], ['lehsm'], ['usa'], ['company'], ['since'], ['et'], ['lehsm'], ['lehsm'], ['since'], ['et']] k: 2551 len: <class 'list'> Data: ['network', 'port', 'working', 'network', 'port', 'work', 'wifi', 'network', 'poor'] processed_text: ['network', 'port', 'working', 'network', 'port', 'work', 'wifi', 'network', 'poor'] list_processed_text: [['network'], ['port'], ['working'], ['network'], ['port'], ['work'], ['wifi'], ['network'], ['poor']] k: 2552 len: <class 'list'> Data: ['unable', 'post', 'billing', 'account', 'billed', 'quantity', 'unable', 'post', 'billing', 'account', 'billed', 'quantity', 'ic', 'ziv', 'vvsallz', 'ic', 'ic', 'ziv', 'oprbatch', 'ic'] processed_text: ['unable', 'post', 'billing', 'account', 'billed', 'quantity', 'unable', 'post', 'billing', 'account', 'billed', 'quantity', 'ic', 'ziv', 'vvsallz', 'ic', 'ic', 'ziv', 'oprbatch', 'ic'] list_processed_text: [['unable'], ['post'], ['billing'], ['account'], ['billed'], ['quantity'], ['unable'], ['post'], ['billing'], ['account'], ['billed'], ['quantity'], ['ic'], ['ziv'], ['vvsallz'], ['ic'], ['ic'], ['ziv'], ['oprbatch'], ['ic']] k: 2553 len: <class 'list'> Data: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool'] processed_text: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool'] list_processed_text: [['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool']] k: 2554 len: <class 'list'> Data: ['volume', 'label', 'sys', 'lhqsm', 'aa', 'server', 'lhqsm', 'volume', 'label', 'sys', 'lhqsm', 'aa', 'server', 'lhqsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['volume', 'label', 'sys', 'lhqsm', 'aa', 'server', 'lhqsm', 'volume', 'label', 'sys', 'lhqsm', 'aa', 'server', 'lhqsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['volume'], ['label'], ['sys'], ['lhqsm'], ['aa'], ['server'], ['lhqsm'], ['volume'], ['label'], ['sys'], ['lhqsm'], ['aa'], ['server'], ['lhqsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 2555 len: <class 'list'> Data: ['job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 2556 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2557 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2558 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2559 len: <class 'list'> Data: ['reset', 'password', 'prgewfly', 'ndtfvple', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'prgewfly', 'ndtfvple', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['prgewfly'], ['ndtfvple'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2560 len: <class 'list'> Data: ['hostname', 'volume', 'dev', 'sid', 'os', 'space', 'consumed', 'hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'dev', 'sid', 'os', 'space', 'consumed', 'hostname', 'volume', 'dev', 'sid', 'os', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['dev'], ['sid'], ['os'], ['space'], ['consumed'], ['hostname'], ['volume'], ['dev'], ['sid'], ['os'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available']] k: 2561 len: <class 'list'> Data: ['always', 'upservice', 'exe', 'running', 'hostname', 'always', 'upservice', 'exe', 'running', 'hostname'] processed_text: ['always', 'upservice', 'exe', 'running', 'hostname', 'always', 'upservice', 'exe', 'running', 'hostname'] list_processed_text: [['always'], ['upservice'], ['exe'], ['running'], ['hostname'], ['always'], ['upservice'], ['exe'], ['running'], ['hostname']] k: 2562 len: <class 'list'> Data: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] processed_text: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] list_processed_text: [['wireless'], ['outage'], ['taiwan'], ['hello'], ['wireless'], ['companysecure'], ['outage'], ['taiwan'], ['please'], ['help']] k: 2563 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2564 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2565 len: <class 'list'> Data: ['zifujpvr', 'vxfkwaqh', 'zifujpvr', 'vxfkwaqh', 'email', 'working', 'get', 'update', 'email', 'still', 'working'] processed_text: ['zifujpvr', 'vxfkwaqh', 'zifujpvr', 'vxfkwaqh', 'email', 'working', 'get', 'update', 'email', 'still', 'working'] list_processed_text: [['zifujpvr'], ['vxfkwaqh'], ['zifujpvr'], ['vxfkwaqh'], ['email'], ['working'], ['get'], ['update'], ['email'], ['still'], ['working']] k: 2566 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2567 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 2568 len: <class 'list'> Data: ['email', 'working', 'server', 'contacted', 'message', 'contact', 'phone', 'company', 'email', 'working', 'server', 'contacted', 'error', 'message', 'owa', 'also', 'working'] processed_text: ['email', 'working', 'server', 'contacted', 'message', 'contact', 'phone', 'company', 'email', 'working', 'server', 'contacted', 'error', 'message', 'owa', 'also', 'working'] list_processed_text: [['email'], ['working'], ['server'], ['contacted'], ['message'], ['contact'], ['phone'], ['company'], ['email'], ['working'], ['server'], ['contacted'], ['error'], ['message'], ['owa'], ['also'], ['working']] k: 2569 len: <class 'list'> Data: ['ie', 'browser', 'issue', 'website', 'loading', 'content', 'completely', 'ie', 'browser', 'issue', 'website', 'loading', 'content', 'completely'] processed_text: ['ie', 'browser', 'issue', 'website', 'loading', 'content', 'completely', 'ie', 'browser', 'issue', 'website', 'loading', 'content', 'completely'] list_processed_text: [['ie'], ['browser'], ['issue'], ['website'], ['loading'], ['content'], ['completely'], ['ie'], ['browser'], ['issue'], ['website'], ['loading'], ['content'], ['completely']] k: 2570 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 2571 len: <class 'list'> Data: ['frequent', 'account', 'lock', 'frequent', 'account', 'lock', 'ran', 'lock', 'status', 'account', 'getting', 'locked', 'one', 'wifi', 'device', 'took', 'control', 'machine', 'started', 'credential', 'manager', 'service', 'deleted', 'bunch', 'password', 'saved', 'credential', 'manager', 'asked', 'user', 'remove', 'company', 'secure', 'mobile', 'device', 'keep', 'wifi', 'disabled', 'couple', 'day', 'enable', 'home', 'also', 'undocked', 'computer', 'docked', 'back', 'tried', 'login', 'worked', 'locked', 'system', 'unlocked', 'difficulty', 'keeping', 'account', 'ticket', 'observation', 'arranging', 'call', 'back', 'tomorrow', 'ooo'] processed_text: ['frequent', 'account', 'lock', 'frequent', 'account', 'lock', 'ran', 'lock', 'status', 'account', 'getting', 'locked', 'one', 'wifi', 'device', 'took', 'control', 'machine', 'started', 'credential', 'manager', 'service', 'deleted', 'bunch', 'password', 'saved', 'credential', 'manager', 'asked', 'user', 'remove', 'company', 'secure', 'mobile', 'device', 'keep', 'wifi', 'disabled', 'couple', 'day', 'enable', 'home', 'also', 'undocked', 'computer', 'docked', 'back', 'tried', 'login', 'worked', 'locked', 'system', 'unlocked', 'difficulty', 'keeping', 'account', 'ticket', 'observation', 'arranging', 'call', 'back', 'tomorrow', 'ooo'] list_processed_text: [['frequent'], ['account'], ['lock'], ['frequent'], ['account'], ['lock'], ['ran'], ['lock'], ['status'], ['account'], ['getting'], ['locked'], ['one'], ['wifi'], ['device'], ['took'], ['control'], ['machine'], ['started'], ['credential'], ['manager'], ['service'], ['deleted'], ['bunch'], ['password'], ['saved'], ['credential'], ['manager'], ['asked'], ['user'], ['remove'], ['company'], ['secure'], ['mobile'], ['device'], ['keep'], ['wifi'], ['disabled'], ['couple'], ['day'], ['enable'], ['home'], ['also'], ['undocked'], ['computer'], ['docked'], ['back'], ['tried'], ['login'], ['worked'], ['locked'], ['system'], ['unlocked'], ['difficulty'], ['keeping'], ['account'], ['ticket'], ['observation'], ['arranging'], ['call'], ['back'], ['tomorrow'], ['ooo']] k: 2572 len: <class 'list'> Data: ['cannot', 'access', 'mail', 'device', 'using', 'owa', 'outlook', 'lost', 'access', 'mail', 'went', 'checked', 'setting', 'account', 'found', 'error', 'attached', 'error', 'account', 'removed', 'license', 'applied', 'see', 'would', 'resolve', 'issue', 'still', 'get', 'email', 'try', 'accessing', 'account', 'via', 'owa', 'get', 'attrachment', 'error', 'issue', 'license', 'expired', 'cannot', 'receive', 'email', 'receive', 'reply', 'email', 'concerning', 'ticket'] processed_text: ['cannot', 'access', 'mail', 'device', 'using', 'owa', 'outlook', 'lost', 'access', 'mail', 'went', 'checked', 'setting', 'account', 'found', 'error', 'attached', 'error', 'account', 'removed', 'license', 'applied', 'see', 'would', 'resolve', 'issue', 'still', 'get', 'email', 'try', 'accessing', 'account', 'via', 'owa', 'get', 'attrachment', 'error', 'issue', 'license', 'expired', 'cannot', 'receive', 'email', 'receive', 'reply', 'email', 'concerning', 'ticket'] list_processed_text: [['cannot'], ['access'], ['mail'], ['device'], ['using'], ['owa'], ['outlook'], ['lost'], ['access'], ['mail'], ['went'], ['checked'], ['setting'], ['account'], ['found'], ['error'], ['attached'], ['error'], ['account'], ['removed'], ['license'], ['applied'], ['see'], ['would'], ['resolve'], ['issue'], ['still'], ['get'], ['email'], ['try'], ['accessing'], ['account'], ['via'], ['owa'], ['get'], ['attrachment'], ['error'], ['issue'], ['license'], ['expired'], ['cannot'], ['receive'], ['email'], ['receive'], ['reply'], ['email'], ['concerning'], ['ticket']] k: 2573 len: <class 'list'> Data: ['reminder', 'approval', 'requisition', 'already', 'approved', 'request', 'erp', 'reminder', 'approval', 'requisition', 'already', 'approved', 'request', 'erp'] processed_text: ['reminder', 'approval', 'requisition', 'already', 'approved', 'request', 'erp', 'reminder', 'approval', 'requisition', 'already', 'approved', 'request', 'erp'] list_processed_text: [['reminder'], ['approval'], ['requisition'], ['already'], ['approved'], ['request'], ['erp'], ['reminder'], ['approval'], ['requisition'], ['already'], ['approved'], ['request'], ['erp']] k: 2574 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2575 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2576 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 2577 len: <class 'list'> Data: ['erp', 'running', 'slow', 'israel', 'internet', 'working', 'fine', 'erp', 'running', 'slow', 'internet', 'working', 'fine', 'transaction', 'running', 'slow', 'contact', 'erp', 'system', 'sid', 'transaction', 'checking', 'dac', 'team'] processed_text: ['erp', 'running', 'slow', 'israel', 'internet', 'working', 'fine', 'erp', 'running', 'slow', 'internet', 'working', 'fine', 'transaction', 'running', 'slow', 'contact', 'erp', 'system', 'sid', 'transaction', 'checking', 'dac', 'team'] list_processed_text: [['erp'], ['running'], ['slow'], ['israel'], ['internet'], ['working'], ['fine'], ['erp'], ['running'], ['slow'], ['internet'], ['working'], ['fine'], ['transaction'], ['running'], ['slow'], ['contact'], ['erp'], ['system'], ['sid'], ['transaction'], ['checking'], ['dac'], ['team']] k: 2578 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2579 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'qux', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'qux', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'qux', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'qux', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['qux'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['qux'], ['failed'], ['job'], ['scheduler']] k: 2580 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 2581 len: <class 'list'> Data: ['want', 'make', 'sure', 'erp', 'maintenance', 'right', 'name', 'kvrmnuix', 'yicpojmf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'connect', 'company', 'server'] processed_text: ['want', 'make', 'sure', 'erp', 'maintenance', 'right', 'name', 'kvrmnuix', 'yicpojmf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'connect', 'company', 'server'] list_processed_text: [['want'], ['make'], ['sure'], ['erp'], ['maintenance'], ['right'], ['name'], ['kvrmnuix'], ['yicpojmf'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['connect'], ['company'], ['server']] k: 2582 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2583 len: <class 'list'> Data: ['job', 'oemcold', 'failed', 'job', 'scheduler', 'job', 'oemcold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'oemcold', 'failed', 'job', 'scheduler', 'job', 'oemcold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['oemcold'], ['failed'], ['job'], ['scheduler'], ['job'], ['oemcold'], ['failed'], ['job'], ['scheduler']] k: 2584 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2585 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2586 len: <class 'list'> Data: ['call', 'conference', 'nahytu', 'call', 'conference', 'nahytu'] processed_text: ['call', 'conference', 'nahytu', 'call', 'conference', 'nahytu'] list_processed_text: [['call'], ['conference'], ['nahytu'], ['call'], ['conference'], ['nahytu']] k: 2587 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 2588 len: <class 'list'> Data: ['mail', 'account', 'horeduca', 'ogrhivnm', 'come', 'outlook', 'folder', 'serious', 'breach', 'security', 'hr', 'please', 'correct', 'immediately'] processed_text: ['mail', 'account', 'horeduca', 'ogrhivnm', 'come', 'outlook', 'folder', 'serious', 'breach', 'security', 'hr', 'please', 'correct', 'immediately'] list_processed_text: [['mail'], ['account'], ['horeduca'], ['ogrhivnm'], ['come'], ['outlook'], ['folder'], ['serious'], ['breach'], ['security'], ['hr'], ['please'], ['correct'], ['immediately']] k: 2589 len: <class 'list'> Data: ['reset', 'password', 'wvjoct', 'ckxwtoam', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'wvjoct', 'ckxwtoam', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['wvjoct'], ['ckxwtoam'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2590 len: <class 'list'> Data: ['trying', 'hit', 'one', 'note', 'button', 'existing', 'crm', 'opportunity', 'give', 'attached', 'errir', 'message', 'm', 'crm', 'dynamic', 'issue', 'collaboration', 'platform', 'mfg', 'toolting', 'crm', 'enabled', 'collaboration', 'platform', 'collaboration', 'platform', 'mfg', 'tooltion', 'saved', 'change', 'go', 'added', 'site', 'compatibility', 'mode', 'reset', 'cleared', 'cooky', 'cache', 'go', 'user', 'really', 'sure', 'worked', 'past'] processed_text: ['trying', 'hit', 'one', 'note', 'button', 'existing', 'crm', 'opportunity', 'give', 'attached', 'errir', 'message', 'm', 'crm', 'dynamic', 'issue', 'collaboration', 'platform', 'mfg', 'toolting', 'crm', 'enabled', 'collaboration', 'platform', 'collaboration', 'platform', 'mfg', 'tooltion', 'saved', 'change', 'go', 'added', 'site', 'compatibility', 'mode', 'reset', 'cleared', 'cooky', 'cache', 'go', 'user', 'really', 'sure', 'worked', 'past'] list_processed_text: [['trying'], ['hit'], ['one'], ['note'], ['button'], ['existing'], ['crm'], ['opportunity'], ['give'], ['attached'], ['errir'], ['message'], ['m'], ['crm'], ['dynamic'], ['issue'], ['collaboration'], ['platform'], ['mfg'], ['toolting'], ['crm'], ['enabled'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['mfg'], ['tooltion'], ['saved'], ['change'], ['go'], ['added'], ['site'], ['compatibility'], ['mode'], ['reset'], ['cleared'], ['cooky'], ['cache'], ['go'], ['user'], ['really'], ['sure'], ['worked'], ['past']] k: 2591 len: <class 'list'> Data: ['nan', 'hi', 'link', 'working', 'kindly', 'resolve', 'yhe', 'issue', 'urgent', 'basis', 'best'] processed_text: ['nan', 'hi', 'link', 'working', 'kindly', 'resolve', 'yhe', 'issue', 'urgent', 'basis', 'best'] list_processed_text: [['nan'], ['hi'], ['link'], ['working'], ['kindly'], ['resolve'], ['yhe'], ['issue'], ['urgent'], ['basis'], ['best']] k: 2592 len: <class 'list'> Data: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['ytzpxhql'], ['ntfxgpms'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2593 len: <class 'list'> Data: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] processed_text: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] list_processed_text: [['erp'], ['password'], ['reset'], ['sid'], ['erp'], ['password'], ['reset'], ['sid']] k: 2594 len: <class 'list'> Data: ['vpn', 'issue', 'summary', 'log', 'vpn', 'na'] processed_text: ['vpn', 'issue', 'summary', 'log', 'vpn', 'na'] list_processed_text: [['vpn'], ['issue'], ['summary'], ['log'], ['vpn'], ['na']] k: 2595 len: <class 'list'> Data: ['window', 'account', 'locked', 'unlocked', 'account', 'window', 'account', 'locked', 'unlocked', 'account'] processed_text: ['window', 'account', 'locked', 'unlocked', 'account', 'window', 'account', 'locked', 'unlocked', 'account'] list_processed_text: [['window'], ['account'], ['locked'], ['unlocked'], ['account'], ['window'], ['account'], ['locked'], ['unlocked'], ['account']] k: 2596 len: <class 'list'> Data: ['engineering', 'tool', 'installation', 'sathyrui', 'shiragavi', 'user', 'id', 'cpinsety', 'cpinsety', 'channel', 'partner', 'inspiron', 'enterprise', 'replied', 'email', 'sending', 'instruction', 'install', 'engineering', 'tool'] processed_text: ['engineering', 'tool', 'installation', 'sathyrui', 'shiragavi', 'user', 'id', 'cpinsety', 'cpinsety', 'channel', 'partner', 'inspiron', 'enterprise', 'replied', 'email', 'sending', 'instruction', 'install', 'engineering', 'tool'] list_processed_text: [['engineering'], ['tool'], ['installation'], ['sathyrui'], ['shiragavi'], ['user'], ['id'], ['cpinsety'], ['cpinsety'], ['channel'], ['partner'], ['inspiron'], ['enterprise'], ['replied'], ['email'], ['sending'], ['instruction'], ['install'], ['engineering'], ['tool']] k: 2597 len: <class 'list'> Data: ['problem', 'clicking', 'shop', 'link', 'purchasing', 'using', 'internet', 'explorer', 'alkuozfr', 'bhqgdoiu', 'pm', 'zbpdhxvk', 'nowxjztk', 'mpihysnw', 'wrctgoan', 'aghynilthykurtyar', 'gorlithy', 'inxsupmy', 'zhwmifvx', 'oxlqvika', 'zrvbahym', 'rujteoza', 'mcoswhjuanthila', 'dctviemg', 'muapxkns', 'wfgtyill', 'hannathry', 'nwfodmhc', 'exurcwkm', 'ie', 'issue', 'encountered', 'getting', 'problem', 'clicking', 'shop', 'link', 'purchasing', 'using', 'internet', 'explorer', 'error', 'message', 'pop', 'get', 'list', 'catalog', 'sends', 'screen', 'second', 'screen', 'shot', 'sure', 'problem', 'widespread'] processed_text: ['problem', 'clicking', 'shop', 'link', 'purchasing', 'using', 'internet', 'explorer', 'alkuozfr', 'bhqgdoiu', 'pm', 'zbpdhxvk', 'nowxjztk', 'mpihysnw', 'wrctgoan', 'aghynilthykurtyar', 'gorlithy', 'inxsupmy', 'zhwmifvx', 'oxlqvika', 'zrvbahym', 'rujteoza', 'mcoswhjuanthila', 'dctviemg', 'muapxkns', 'wfgtyill', 'hannathry', 'nwfodmhc', 'exurcwkm', 'ie', 'issue', 'encountered', 'getting', 'problem', 'clicking', 'shop', 'link', 'purchasing', 'using', 'internet', 'explorer', 'error', 'message', 'pop', 'get', 'list', 'catalog', 'sends', 'screen', 'second', 'screen', 'shot', 'sure', 'problem', 'widespread'] list_processed_text: [['problem'], ['clicking'], ['shop'], ['link'], ['purchasing'], ['using'], ['internet'], ['explorer'], ['alkuozfr'], ['bhqgdoiu'], ['pm'], ['zbpdhxvk'], ['nowxjztk'], ['mpihysnw'], ['wrctgoan'], ['aghynilthykurtyar'], ['gorlithy'], ['inxsupmy'], ['zhwmifvx'], ['oxlqvika'], ['zrvbahym'], ['rujteoza'], ['mcoswhjuanthila'], ['dctviemg'], ['muapxkns'], ['wfgtyill'], ['hannathry'], ['nwfodmhc'], ['exurcwkm'], ['ie'], ['issue'], ['encountered'], ['getting'], ['problem'], ['clicking'], ['shop'], ['link'], ['purchasing'], ['using'], ['internet'], ['explorer'], ['error'], ['message'], ['pop'], ['get'], ['list'], ['catalog'], ['sends'], ['screen'], ['second'], ['screen'], ['shot'], ['sure'], ['problem'], ['widespread']] k: 2598 len: <class 'list'> Data: ['travel', 'expense', 'accounting', 'erp', 'hello', 'travel', 'expense', 'accounting', 'erp', 'unfortunately', 'identical', 'see', 'error', 'message', 'best', 'regard'] processed_text: ['travel', 'expense', 'accounting', 'erp', 'hello', 'travel', 'expense', 'accounting', 'erp', 'unfortunately', 'identical', 'see', 'error', 'message', 'best', 'regard'] list_processed_text: [['travel'], ['expense'], ['accounting'], ['erp'], ['hello'], ['travel'], ['expense'], ['accounting'], ['erp'], ['unfortunately'], ['identical'], ['see'], ['error'], ['message'], ['best'], ['regard']] k: 2599 len: <class 'list'> Data: ['power', 'outage', 'usa', 'company', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'usa', 'company', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['usa'], ['company'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2600 len: <class 'list'> Data: ['engineering', 'tool', 'new', 'customer', 'creation', 'please', 'refer', 'inplant', 'hi', 'still', 'able', 'create', 'new', 'customer', 'engineering', 'tool', 'please', 'resolve', 'issue', 'earliest', 'warm'] processed_text: ['engineering', 'tool', 'new', 'customer', 'creation', 'please', 'refer', 'inplant', 'hi', 'still', 'able', 'create', 'new', 'customer', 'engineering', 'tool', 'please', 'resolve', 'issue', 'earliest', 'warm'] list_processed_text: [['engineering'], ['tool'], ['new'], ['customer'], ['creation'], ['please'], ['refer'], ['inplant'], ['hi'], ['still'], ['able'], ['create'], ['new'], ['customer'], ['engineering'], ['tool'], ['please'], ['resolve'], ['issue'], ['earliest'], ['warm']] k: 2601 len: <class 'list'> Data: ['problem', 'access', 'erp', 'hana', 'urgent', 'dear', 'issue', 'repeated', 'problem', 'use', 'programdnty', 'please', 'help', 'solve', 'issue', 'aerp', 'need', 'run', 'submit', 'report', 'best'] processed_text: ['problem', 'access', 'erp', 'hana', 'urgent', 'dear', 'issue', 'repeated', 'problem', 'use', 'programdnty', 'please', 'help', 'solve', 'issue', 'aerp', 'need', 'run', 'submit', 'report', 'best'] list_processed_text: [['problem'], ['access'], ['erp'], ['hana'], ['urgent'], ['dear'], ['issue'], ['repeated'], ['problem'], ['use'], ['programdnty'], ['please'], ['help'], ['solve'], ['issue'], ['aerp'], ['need'], ['run'], ['submit'], ['report'], ['best']] k: 2602 len: <class 'list'> Data: ['email', 'id', 'spelling', 'error', 'dear', 'sir', 'madam', 'correction', 'needed', 'spelling', 'email', 'id', 'existing', 'email', 'id', 'email', 'id', 'changed', 'pl', 'needful'] processed_text: ['email', 'id', 'spelling', 'error', 'dear', 'sir', 'madam', 'correction', 'needed', 'spelling', 'email', 'id', 'existing', 'email', 'id', 'email', 'id', 'changed', 'pl', 'needful'] list_processed_text: [['email'], ['id'], ['spelling'], ['error'], ['dear'], ['sir'], ['madam'], ['correction'], ['needed'], ['spelling'], ['email'], ['id'], ['existing'], ['email'], ['id'], ['email'], ['id'], ['changed'], ['pl'], ['needful']] k: 2603 len: <class 'list'> Data: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler']] k: 2604 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 2605 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2606 len: <class 'list'> Data: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2607 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 2608 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2609 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2610 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2611 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2612 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 2613 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 2614 len: <class 'list'> Data: ['skype', 'call', 'programdnty', 'locked', 'restarting', 'computer', 'several', 'time', 'log', 'skype', 'fre', 'name', 'wpdxlbhz', 'etvzjmhx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'call', 'programdnty', 'locked', 'restarting', 'computer', 'several', 'time', 'log', 'skype', 'freeze', 'every', 'time', 'also', 'get', 'speaker', 'laptop', 'dell', 'device'] processed_text: ['skype', 'call', 'programdnty', 'locked', 'restarting', 'computer', 'several', 'time', 'log', 'skype', 'fre', 'name', 'wpdxlbhz', 'etvzjmhx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'call', 'programdnty', 'locked', 'restarting', 'computer', 'several', 'time', 'log', 'skype', 'freeze', 'every', 'time', 'also', 'get', 'speaker', 'laptop', 'dell', 'device'] list_processed_text: [['skype'], ['call'], ['programdnty'], ['locked'], ['restarting'], ['computer'], ['several'], ['time'], ['log'], ['skype'], ['fre'], ['name'], ['wpdxlbhz'], ['etvzjmhx'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['skype'], ['call'], ['programdnty'], ['locked'], ['restarting'], ['computer'], ['several'], ['time'], ['log'], ['skype'], ['freeze'], ['every'], ['time'], ['also'], ['get'], ['speaker'], ['laptop'], ['dell'], ['device']] k: 2615 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2616 len: <class 'list'> Data: ['laptop', 'battery', 'full', 'charge', 'indicates', 'hr', 'mint', 'actual', 'life', 'hour', 'seeking', 'replacement', 'original', 'battery', 'two', 'year', 'old', 'model', 'dell', 'asset', 'number', 'also', 'rubber', 'around', 'screen', 'separating', 'replaced', 'reattached', 'super', 'glue'] processed_text: ['laptop', 'battery', 'full', 'charge', 'indicates', 'hr', 'mint', 'actual', 'life', 'hour', 'seeking', 'replacement', 'original', 'battery', 'two', 'year', 'old', 'model', 'dell', 'asset', 'number', 'also', 'rubber', 'around', 'screen', 'separating', 'replaced', 'reattached', 'super', 'glue'] list_processed_text: [['laptop'], ['battery'], ['full'], ['charge'], ['indicates'], ['hr'], ['mint'], ['actual'], ['life'], ['hour'], ['seeking'], ['replacement'], ['original'], ['battery'], ['two'], ['year'], ['old'], ['model'], ['dell'], ['asset'], ['number'], ['also'], ['rubber'], ['around'], ['screen'], ['separating'], ['replaced'], ['reattached'], ['super'], ['glue']] k: 2617 len: <class 'list'> Data: ['vpv', 'get', 'message', 'try', 'log', 'erp', 'using', 'vpn', 'lately', 'everything', 'else', 'work', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] processed_text: ['vpv', 'get', 'message', 'try', 'log', 'erp', 'using', 'vpn', 'lately', 'everything', 'else', 'work', 'bwfhtumx', 'japznrvb', 'regional', 'controller'] list_processed_text: [['vpv'], ['get'], ['message'], ['try'], ['log'], ['erp'], ['using'], ['vpn'], ['lately'], ['everything'], ['else'], ['work'], ['bwfhtumx'], ['japznrvb'], ['regional'], ['controller']] k: 2618 len: <class 'list'> Data: ['new', 'laptop', 'tried', 'log', 'name', 'danyhuie', 'deyhtwet', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'new', 'laptop', 'tried', 'log', 'enter', 'employee', 'recognition', 'site'] processed_text: ['new', 'laptop', 'tried', 'log', 'name', 'danyhuie', 'deyhtwet', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'new', 'laptop', 'tried', 'log', 'enter', 'employee', 'recognition', 'site'] list_processed_text: [['new'], ['laptop'], ['tried'], ['log'], ['name'], ['danyhuie'], ['deyhtwet'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['new'], ['laptop'], ['tried'], ['log'], ['enter'], ['employee'], ['recognition'], ['site']] k: 2619 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'educated', 'user', 'use', 'engineering', 'tool', 'issue', 'resolved'] processed_text: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'educated', 'user', 'use', 'engineering', 'tool', 'issue', 'resolved'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['engineering'], ['tool'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['educated'], ['user'], ['use'], ['engineering'], ['tool'], ['issue'], ['resolved']] k: 2620 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 2621 len: <class 'list'> Data: ['unable', 'inwarehouse', 'tool', 'unable', 'force', 'inwarehouse', 'tool', 'also', 'consigned', 'material', 'need', 'inwarehouse', 'tool', 'end', 'today', 'please', 'help'] processed_text: ['unable', 'inwarehouse', 'tool', 'unable', 'force', 'inwarehouse', 'tool', 'also', 'consigned', 'material', 'need', 'inwarehouse', 'tool', 'end', 'today', 'please', 'help'] list_processed_text: [['unable'], ['inwarehouse'], ['tool'], ['unable'], ['force'], ['inwarehouse'], ['tool'], ['also'], ['consigned'], ['material'], ['need'], ['inwarehouse'], ['tool'], ['end'], ['today'], ['please'], ['help']] k: 2622 len: <class 'list'> Data: ['end', 'month', 'billing', 'good', 'afternoon', 'unable', 'force', 'billing', 'consigned', 'material', 'need', 'inwarehouse', 'tool', 'end', 'today', 'please', 'help'] processed_text: ['end', 'month', 'billing', 'good', 'afternoon', 'unable', 'force', 'billing', 'consigned', 'material', 'need', 'inwarehouse', 'tool', 'end', 'today', 'please', 'help'] list_processed_text: [['end'], ['month'], ['billing'], ['good'], ['afternoon'], ['unable'], ['force'], ['billing'], ['consigned'], ['material'], ['need'], ['inwarehouse'], ['tool'], ['end'], ['today'], ['please'], ['help']] k: 2623 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 2624 len: <class 'list'> Data: ['global', 'erp', 'crm', 'party', 'change', 'complaint', 'cause', 'blank', 'screen', 'upon', 'saving', 'change', 'saved', 'global', 'erp', 'crm', 'party', 'change', 'complaint', 'cause', 'blank', 'screen', 'upon', 'saving', 'change', 'saved', 'please', 'investigate', 'happening', 'fix', 'problem'] processed_text: ['global', 'erp', 'crm', 'party', 'change', 'complaint', 'cause', 'blank', 'screen', 'upon', 'saving', 'change', 'saved', 'global', 'erp', 'crm', 'party', 'change', 'complaint', 'cause', 'blank', 'screen', 'upon', 'saving', 'change', 'saved', 'please', 'investigate', 'happening', 'fix', 'problem'] list_processed_text: [['global'], ['erp'], ['crm'], ['party'], ['change'], ['complaint'], ['cause'], ['blank'], ['screen'], ['upon'], ['saving'], ['change'], ['saved'], ['global'], ['erp'], ['crm'], ['party'], ['change'], ['complaint'], ['cause'], ['blank'], ['screen'], ['upon'], ['saving'], ['change'], ['saved'], ['please'], ['investigate'], ['happening'], ['fix'], ['problem']] k: 2625 len: <class 'list'> Data: ['m', 'crm', 'dymanics', 'outlook', 'client', 'issue', 'summary', 'help', 'set', 'crm', 'tab', 'outlook', 'ribbon'] processed_text: ['m', 'crm', 'dymanics', 'outlook', 'client', 'issue', 'summary', 'help', 'set', 'crm', 'tab', 'outlook', 'ribbon'] list_processed_text: [['m'], ['crm'], ['dymanics'], ['outlook'], ['client'], ['issue'], ['summary'], ['help'], ['set'], ['crm'], ['tab'], ['outlook'], ['ribbon']] k: 2626 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2627 len: <class 'list'> Data: ['audio', 'issue', 'window', 'audio', 'issue', 'audio', 'issue', 'window', 'audio', 'issue'] processed_text: ['audio', 'issue', 'window', 'audio', 'issue', 'audio', 'issue', 'window', 'audio', 'issue'] list_processed_text: [['audio'], ['issue'], ['window'], ['audio'], ['issue'], ['audio'], ['issue'], ['window'], ['audio'], ['issue']] k: 2628 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2629 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 2630 len: <class 'list'> Data: ['insufficient', 'permission', 'web', 'crm', 'insufficient', 'permission', 'web', 'crm'] processed_text: ['insufficient', 'permission', 'web', 'crm', 'insufficient', 'permission', 'web', 'crm'] list_processed_text: [['insufficient'], ['permission'], ['web'], ['crm'], ['insufficient'], ['permission'], ['web'], ['crm']] k: 2631 len: <class 'list'> Data: ['company', 'distributor', 'tool', 'messed', 'enter', 'engineering', 'tool', 'provide', 'quote', 'error', 'ship', 'account', 'entered', 'matheywter', 'account', 'number', 'use', 'major', 'inconvenience'] processed_text: ['company', 'distributor', 'tool', 'messed', 'enter', 'engineering', 'tool', 'provide', 'quote', 'error', 'ship', 'account', 'entered', 'matheywter', 'account', 'number', 'use', 'major', 'inconvenience'] list_processed_text: [['company'], ['distributor'], ['tool'], ['messed'], ['enter'], ['engineering'], ['tool'], ['provide'], ['quote'], ['error'], ['ship'], ['account'], ['entered'], ['matheywter'], ['account'], ['number'], ['use'], ['major'], ['inconvenience']] k: 2632 len: <class 'list'> Data: ['m', 'crm', 'dynamic', 'outlook', 'issue', 'summary', 'need', 'crm', 'tab', 'added', 'computer'] processed_text: ['m', 'crm', 'dynamic', 'outlook', 'issue', 'summary', 'need', 'crm', 'tab', 'added', 'computer'] list_processed_text: [['m'], ['crm'], ['dynamic'], ['outlook'], ['issue'], ['summary'], ['need'], ['crm'], ['tab'], ['added'], ['computer']] k: 2633 len: <class 'list'> Data: ['solution', 'needed', 'find', 'permanent', 'fix', 'able', 'use', 'memotech', 'solution', 'needed', 'find', 'permanent', 'fix', 'able', 'use', 'memotech', 'add', 'ken', 'mstipsolutions', 'com', 'compatibility', 'list'] processed_text: ['solution', 'needed', 'find', 'permanent', 'fix', 'able', 'use', 'memotech', 'solution', 'needed', 'find', 'permanent', 'fix', 'able', 'use', 'memotech', 'add', 'ken', 'mstipsolutions', 'com', 'compatibility', 'list'] list_processed_text: [['solution'], ['needed'], ['find'], ['permanent'], ['fix'], ['able'], ['use'], ['memotech'], ['solution'], ['needed'], ['find'], ['permanent'], ['fix'], ['able'], ['use'], ['memotech'], ['add'], ['ken'], ['mstipsolutions'], ['com'], ['compatibility'], ['list']] k: 2634 len: <class 'list'> Data: ['reset', 'password', 'constance', 'wgtyillsford', 'erp', 'production', 'bw', 'reset', 'password', 'constance', 'wgtyillsford', 'erp', 'production', 'bw'] processed_text: ['reset', 'password', 'constance', 'wgtyillsford', 'erp', 'production', 'bw', 'reset', 'password', 'constance', 'wgtyillsford', 'erp', 'production', 'bw'] list_processed_text: [['reset'], ['password'], ['constance'], ['wgtyillsford'], ['erp'], ['production'], ['bw'], ['reset'], ['password'], ['constance'], ['wgtyillsford'], ['erp'], ['production'], ['bw']] k: 2635 len: <class 'list'> Data: ['euromote', 'entry', 'error', 'hello', 'could', 'please', 'help', 'entering', 'euromote', 'open', 'erp', 'personel', 'wireless', 'best'] processed_text: ['euromote', 'entry', 'error', 'hello', 'could', 'please', 'help', 'entering', 'euromote', 'open', 'erp', 'personel', 'wireless', 'best'] list_processed_text: [['euromote'], ['entry'], ['error'], ['hello'], ['could'], ['please'], ['help'], ['entering'], ['euromote'], ['open'], ['erp'], ['personel'], ['wireless'], ['best']] k: 2636 len: <class 'list'> Data: ['urgent', 'password', 'change', 'sign', 'skype', 'dell', 'happened', 'requires', 'access', 'computer', 'delete', 'file', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com'] processed_text: ['urgent', 'password', 'change', 'sign', 'skype', 'dell', 'happened', 'requires', 'access', 'computer', 'delete', 'file', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com'] list_processed_text: [['urgent'], ['password'], ['change'], ['sign'], ['skype'], ['dell'], ['happened'], ['requires'], ['access'], ['computer'], ['delete'], ['file'], ['tommyth'], ['duyhurmont'], ['channel'], ['partner'], ['sale'], ['engineer'], ['company'], ['inc'], ['www'], ['company'], ['com']] k: 2637 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 2638 len: <class 'list'> Data: ['vip', 'finance', 'vip', 'unable', 'approve', 'expense', 'report', 'showing', 'worklist', 'lpoebzsc', 'grknswyo', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'expense', 'report', 'submitted', 'good', 'afternoon', 'tried', 'entering', 'expense', 'report', 'martha', 'bank', 'sent', 'finance', 'vip', 'approval', 'showing', 'worklist', 'recently', 'began', 'supporting', 'finance', 'vip', 'team', 'month', 'ago', 'perhaps', 'something', 'need', 'updated', 'system', 'able', 'enter', 'expense', 'report', 'behalf', 'past', 'issue', 'es', 'contacted', 'kyefsrjc', 'eadmpzcn', 'however', 'vacation', 'today', 'assistance', 'matheywter', 'greatly', 'appreciated'] processed_text: ['vip', 'finance', 'vip', 'unable', 'approve', 'expense', 'report', 'showing', 'worklist', 'lpoebzsc', 'grknswyo', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'expense', 'report', 'submitted', 'good', 'afternoon', 'tried', 'entering', 'expense', 'report', 'martha', 'bank', 'sent', 'finance', 'vip', 'approval', 'showing', 'worklist', 'recently', 'began', 'supporting', 'finance', 'vip', 'team', 'month', 'ago', 'perhaps', 'something', 'need', 'updated', 'system', 'able', 'enter', 'expense', 'report', 'behalf', 'past', 'issue', 'es', 'contacted', 'kyefsrjc', 'eadmpzcn', 'however', 'vacation', 'today', 'assistance', 'matheywter', 'greatly', 'appreciated'] list_processed_text: [['vip'], ['finance'], ['vip'], ['unable'], ['approve'], ['expense'], ['report'], ['showing'], ['worklist'], ['lpoebzsc'], ['grknswyo'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['expense'], ['report'], ['submitted'], ['good'], ['afternoon'], ['tried'], ['entering'], ['expense'], ['report'], ['martha'], ['bank'], ['sent'], ['finance'], ['vip'], ['approval'], ['showing'], ['worklist'], ['recently'], ['began'], ['supporting'], ['finance'], ['vip'], ['team'], ['month'], ['ago'], ['perhaps'], ['something'], ['need'], ['updated'], ['system'], ['able'], ['enter'], ['expense'], ['report'], ['behalf'], ['past'], ['issue'], ['es'], ['contacted'], ['kyefsrjc'], ['eadmpzcn'], ['however'], ['vacation'], ['today'], ['assistance'], ['matheywter'], ['greatly'], ['appreciated']] k: 2639 len: <class 'list'> Data: ['back', 'tape', 'still', 'ejecting', 'back', 'tape', 'ejected', 'today', 'unable', 'switch', 'tape', 'previously', 'switched', 'daily'] processed_text: ['back', 'tape', 'still', 'ejecting', 'back', 'tape', 'ejected', 'today', 'unable', 'switch', 'tape', 'previously', 'switched', 'daily'] list_processed_text: [['back'], ['tape'], ['still'], ['ejecting'], ['back'], ['tape'], ['ejected'], ['today'], ['unable'], ['switch'], ['tape'], ['previously'], ['switched'], ['daily']] k: 2640 len: <class 'list'> Data: ['rma', 'rma', 'workflow', 'error', 'rma', 'need', 'processed', 'end', 'today'] processed_text: ['rma', 'rma', 'workflow', 'error', 'rma', 'need', 'processed', 'end', 'today'] list_processed_text: [['rma'], ['rma'], ['workflow'], ['error'], ['rma'], ['need'], ['processed'], ['end'], ['today']] k: 2641 len: <class 'list'> Data: ['unable', 'access', 'engineering', 'tool', 'dear', 'sir', 'unable', 'access', 'engineering', 'tool', 'following', 'error', 'message', 'shown', 'request', 'support', 'resolve'] processed_text: ['unable', 'access', 'engineering', 'tool', 'dear', 'sir', 'unable', 'access', 'engineering', 'tool', 'following', 'error', 'message', 'shown', 'request', 'support', 'resolve'] list_processed_text: [['unable'], ['access'], ['engineering'], ['tool'], ['dear'], ['sir'], ['unable'], ['access'], ['engineering'], ['tool'], ['following'], ['error'], ['message'], ['shown'], ['request'], ['support'], ['resolve']] k: 2642 len: <class 'list'> Data: ['vitalyst', 'crm', 'configuration', 'outlook', 'vitalyst', 'crm', 'configuration', 'outlook'] processed_text: ['vitalyst', 'crm', 'configuration', 'outlook', 'vitalyst', 'crm', 'configuration', 'outlook'] list_processed_text: [['vitalyst'], ['crm'], ['configuration'], ['outlook'], ['vitalyst'], ['crm'], ['configuration'], ['outlook']] k: 2643 len: <class 'list'> Data: ['unable', 'log', 'window', 'update', 'password', 'password', 'management', 'tool', 'unable', 'log', 'window', 'update', 'password', 'password', 'management', 'tool'] processed_text: ['unable', 'log', 'window', 'update', 'password', 'password', 'management', 'tool', 'unable', 'log', 'window', 'update', 'password', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['log'], ['window'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['log'], ['window'], ['update'], ['password'], ['password'], ['management'], ['tool']] k: 2644 len: <class 'list'> Data: ['m', 'crm', 'dynamic', 'issue', 'summary', 'lost', 'crm', 'ribbon', 'outlook'] processed_text: ['m', 'crm', 'dynamic', 'issue', 'summary', 'lost', 'crm', 'ribbon', 'outlook'] list_processed_text: [['m'], ['crm'], ['dynamic'], ['issue'], ['summary'], ['lost'], ['crm'], ['ribbon'], ['outlook']] k: 2645 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2646 len: <class 'list'> Data: ['job', 'bwsdslspln', 'failed', 'job', 'scheduler', 'job', 'bwsdslspln', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwsdslspln', 'failed', 'job', 'scheduler', 'job', 'bwsdslspln', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwsdslspln'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwsdslspln'], ['failed'], ['job'], ['scheduler']] k: 2647 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'fine', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'fine', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['fine'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 2648 len: <class 'list'> Data: ['unable', 'port', 'crm', 'dynamic', 'com', 'name', 'zdcheloy', 'aevzsogn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'port', 'crm', 'dynamic', 'com'] processed_text: ['unable', 'port', 'crm', 'dynamic', 'com', 'name', 'zdcheloy', 'aevzsogn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'port', 'crm', 'dynamic', 'com'] list_processed_text: [['unable'], ['port'], ['crm'], ['dynamic'], ['com'], ['name'], ['zdcheloy'], ['aevzsogn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unable'], ['port'], ['crm'], ['dynamic'], ['com']] k: 2649 len: <class 'list'> Data: ['unable', 'login', 'distributor', 'tool', 'password', 'expired', 'unable', 'login', 'distributor', 'tool', 'password', 'expired'] processed_text: ['unable', 'login', 'distributor', 'tool', 'password', 'expired', 'unable', 'login', 'distributor', 'tool', 'password', 'expired'] list_processed_text: [['unable'], ['login'], ['distributor'], ['tool'], ['password'], ['expired'], ['unable'], ['login'], ['distributor'], ['tool'], ['password'], ['expired']] k: 2650 len: <class 'list'> Data: ['company', 'mobile', 'device', 'activation', 'company', 'mobile', 'device', 'activation'] processed_text: ['company', 'mobile', 'device', 'activation', 'company', 'mobile', 'device', 'activation'] list_processed_text: [['company'], ['mobile'], ['device'], ['activation'], ['company'], ['mobile'], ['device'], ['activation']] k: 2651 len: <class 'list'> Data: ['user', 'kehtxprg', 'uekapfzt', 'able', 'access', 'erp', 'sid', 'hi', 'team', 'need', 'help', 'request', 'check', 'user', 'kehtxprg', 'uekapfzt', 'able', 'access', 'erp', 'sid', 'turn', 'blocking', 'approve', 'pr'] processed_text: ['user', 'kehtxprg', 'uekapfzt', 'able', 'access', 'erp', 'sid', 'hi', 'team', 'need', 'help', 'request', 'check', 'user', 'kehtxprg', 'uekapfzt', 'able', 'access', 'erp', 'sid', 'turn', 'blocking', 'approve', 'pr'] list_processed_text: [['user'], ['kehtxprg'], ['uekapfzt'], ['able'], ['access'], ['erp'], ['sid'], ['hi'], ['team'], ['need'], ['help'], ['request'], ['check'], ['user'], ['kehtxprg'], ['uekapfzt'], ['able'], ['access'], ['erp'], ['sid'], ['turn'], ['blocking'], ['approve'], ['pr']] k: 2652 len: <class 'list'> Data: ['audio', 'driver', 'issue', 'summary', 'hello', 'pc', 'formatheywted', 'local', 'sound', 'think', 'audio', 'driver', 'installed', 'properly', 'could', 'help'] processed_text: ['audio', 'driver', 'issue', 'summary', 'hello', 'pc', 'formatheywted', 'local', 'sound', 'think', 'audio', 'driver', 'installed', 'properly', 'could', 'help'] list_processed_text: [['audio'], ['driver'], ['issue'], ['summary'], ['hello'], ['pc'], ['formatheywted'], ['local'], ['sound'], ['think'], ['audio'], ['driver'], ['installed'], ['properly'], ['could'], ['help']] k: 2653 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 2654 len: <class 'list'> Data: ['sid', 'password', 'reset', 'name', 'mityhuch', 'ervuyin', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'netweaver'] processed_text: ['sid', 'password', 'reset', 'name', 'mityhuch', 'ervuyin', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'netweaver'] list_processed_text: [['sid'], ['password'], ['reset'], ['name'], ['mityhuch'], ['ervuyin'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['log'], ['netweaver']] k: 2655 len: <class 'list'> Data: ['engineering', 'tool', 'access', 'query', 'engineering', 'tool', 'access', 'query'] processed_text: ['engineering', 'tool', 'access', 'query', 'engineering', 'tool', 'access', 'query'] list_processed_text: [['engineering'], ['tool'], ['access'], ['query'], ['engineering'], ['tool'], ['access'], ['query']] k: 2656 len: <class 'list'> Data: ['dba', 'team', 'disk', 'space', 'engg', 'dba', 'full', 'create', 'safety', 'data', 'sheet', 'figured', 'create', 'new', 'sd', 'production', 'system', 'engg', 'expert', 'came', 'back', 'following', 'issue', 'hi', 'drive', 'engg', 'prod', 'db', 'life', 'full', 'dba', 'make', 'bigger', 'matheywter', 'enough', 'disk', 'space', 'let', 'know'] processed_text: ['dba', 'team', 'disk', 'space', 'engg', 'dba', 'full', 'create', 'safety', 'data', 'sheet', 'figured', 'create', 'new', 'sd', 'production', 'system', 'engg', 'expert', 'came', 'back', 'following', 'issue', 'hi', 'drive', 'engg', 'prod', 'db', 'life', 'full', 'dba', 'make', 'bigger', 'matheywter', 'enough', 'disk', 'space', 'let', 'know'] list_processed_text: [['dba'], ['team'], ['disk'], ['space'], ['engg'], ['dba'], ['full'], ['create'], ['safety'], ['data'], ['sheet'], ['figured'], ['create'], ['new'], ['sd'], ['production'], ['system'], ['engg'], ['expert'], ['came'], ['back'], ['following'], ['issue'], ['hi'], ['drive'], ['engg'], ['prod'], ['db'], ['life'], ['full'], ['dba'], ['make'], ['bigger'], ['matheywter'], ['enough'], ['disk'], ['space'], ['let'], ['know']] k: 2657 len: <class 'list'> Data: ['ooo', 'oct', 'hostname', 'team', 'material', 'ooo', 'oct', 'need', 'access', 'hostname', 'team', 'material', 'file', 'hostname', 'team', 'material', 'computer', 'system'] processed_text: ['ooo', 'oct', 'hostname', 'team', 'material', 'ooo', 'oct', 'need', 'access', 'hostname', 'team', 'material', 'file', 'hostname', 'team', 'material', 'computer', 'system'] list_processed_text: [['ooo'], ['oct'], ['hostname'], ['team'], ['material'], ['ooo'], ['oct'], ['need'], ['access'], ['hostname'], ['team'], ['material'], ['file'], ['hostname'], ['team'], ['material'], ['computer'], ['system']] k: 2658 len: <class 'list'> Data: ['password', 'engineering', 'tool', 'let', 'password', 'expire', 'need', 'help', 'getting', 'back', 'system'] processed_text: ['password', 'engineering', 'tool', 'let', 'password', 'expire', 'need', 'help', 'getting', 'back', 'system'] list_processed_text: [['password'], ['engineering'], ['tool'], ['let'], ['password'], ['expire'], ['need'], ['help'], ['getting'], ['back'], ['system']] k: 2659 len: <class 'list'> Data: ['please', 'delete', 'transport', 'sid', 'k', 'delete', 'transport', 'buffer', 'sid', 'k'] processed_text: ['please', 'delete', 'transport', 'sid', 'k', 'delete', 'transport', 'buffer', 'sid', 'k'] list_processed_text: [['please'], ['delete'], ['transport'], ['sid'], ['k'], ['delete'], ['transport'], ['buffer'], ['sid'], ['k']] k: 2660 len: <class 'list'> Data: ['abap', 'report', 'zsd', 'price', 'field', 'update', 'update', 'rqfhiong', 'zkwfqagb', 'field', 'working', 'please', 'note', 'receiving', 'error', 'message', 'trying', 'update', 'rqfhiong', 'zkwfqagb', 'field', 'using', 'zsd', 'price', 'field', 'update', 'abap', 'programdnty', 'please', 'see', 'screenshots', 'error', 'message', 'also', 'attached', 'uacyltoe', 'hxgaycze', 'file', 'uploading', 'able', 'change', 'material', 'pricing', 'group', 'transaction', 'mm', 'therefore', 'think', 'security', 'problem'] processed_text: ['abap', 'report', 'zsd', 'price', 'field', 'update', 'update', 'rqfhiong', 'zkwfqagb', 'field', 'working', 'please', 'note', 'receiving', 'error', 'message', 'trying', 'update', 'rqfhiong', 'zkwfqagb', 'field', 'using', 'zsd', 'price', 'field', 'update', 'abap', 'programdnty', 'please', 'see', 'screenshots', 'error', 'message', 'also', 'attached', 'uacyltoe', 'hxgaycze', 'file', 'uploading', 'able', 'change', 'material', 'pricing', 'group', 'transaction', 'mm', 'therefore', 'think', 'security', 'problem'] list_processed_text: [['abap'], ['report'], ['zsd'], ['price'], ['field'], ['update'], ['update'], ['rqfhiong'], ['zkwfqagb'], ['field'], ['working'], ['please'], ['note'], ['receiving'], ['error'], ['message'], ['trying'], ['update'], ['rqfhiong'], ['zkwfqagb'], ['field'], ['using'], ['zsd'], ['price'], ['field'], ['update'], ['abap'], ['programdnty'], ['please'], ['see'], ['screenshots'], ['error'], ['message'], ['also'], ['attached'], ['uacyltoe'], ['hxgaycze'], ['file'], ['uploading'], ['able'], ['change'], ['material'], ['pricing'], ['group'], ['transaction'], ['mm'], ['therefore'], ['think'], ['security'], ['problem']] k: 2661 len: <class 'list'> Data: ['crm', 'app', 'hello', 'trying', 'load', 'mobile', 'crm', 'app', 'iphone', 'trying', 'run', 'putting', 'sorry', 'server', 'available', 'support', 'application', 'vybmcrxo', 'kirspz', 'application', 'engineer'] processed_text: ['crm', 'app', 'hello', 'trying', 'load', 'mobile', 'crm', 'app', 'iphone', 'trying', 'run', 'putting', 'sorry', 'server', 'available', 'support', 'application', 'vybmcrxo', 'kirspz', 'application', 'engineer'] list_processed_text: [['crm'], ['app'], ['hello'], ['trying'], ['load'], ['mobile'], ['crm'], ['app'], ['iphone'], ['trying'], ['run'], ['putting'], ['sorry'], ['server'], ['available'], ['support'], ['application'], ['vybmcrxo'], ['kirspz'], ['application'], ['engineer']] k: 2662 len: <class 'list'> Data: ['cannot', 'access', 'hostname', 'engineering', 'application', 'vpn', 'company', 'using', 'vvblothryor', 'inc', 'closed', 'fixed', 'cannot', 'access', 'hostname', 'engineering', 'application', 'vpn', 'company', 'using', 'vvbloor', 'inc', 'closed', 'fixed', 'please', 'assign', 'vidya', 'computer', 'lbdl', 'access', 'hostname', 'engineering', 'application', 'using', 'sign', 'ons', 'dudekm', 'signed', 'onto', 'computer', 'work', 'vvbloor', 'sign', 'computer', 'use', 'dudekm', 'sign', 'vpn', 'work', 'work', 'vvbloor', 'sign', 'vpn', 'vvblorytor', 'access', 'server', 'hostname', 'hostname', 'cannot', 'access', 'hostname'] processed_text: ['cannot', 'access', 'hostname', 'engineering', 'application', 'vpn', 'company', 'using', 'vvblothryor', 'inc', 'closed', 'fixed', 'cannot', 'access', 'hostname', 'engineering', 'application', 'vpn', 'company', 'using', 'vvbloor', 'inc', 'closed', 'fixed', 'please', 'assign', 'vidya', 'computer', 'lbdl', 'access', 'hostname', 'engineering', 'application', 'using', 'sign', 'ons', 'dudekm', 'signed', 'onto', 'computer', 'work', 'vvbloor', 'sign', 'computer', 'use', 'dudekm', 'sign', 'vpn', 'work', 'work', 'vvbloor', 'sign', 'vpn', 'vvblorytor', 'access', 'server', 'hostname', 'hostname', 'cannot', 'access', 'hostname'] list_processed_text: [['cannot'], ['access'], ['hostname'], ['engineering'], ['application'], ['vpn'], ['company'], ['using'], ['vvblothryor'], ['inc'], ['closed'], ['fixed'], ['cannot'], ['access'], ['hostname'], ['engineering'], ['application'], ['vpn'], ['company'], ['using'], ['vvbloor'], ['inc'], ['closed'], ['fixed'], ['please'], ['assign'], ['vidya'], ['computer'], ['lbdl'], ['access'], ['hostname'], ['engineering'], ['application'], ['using'], ['sign'], ['ons'], ['dudekm'], ['signed'], ['onto'], ['computer'], ['work'], ['vvbloor'], ['sign'], ['computer'], ['use'], ['dudekm'], ['sign'], ['vpn'], ['work'], ['work'], ['vvbloor'], ['sign'], ['vpn'], ['vvblorytor'], ['access'], ['server'], ['hostname'], ['hostname'], ['cannot'], ['access'], ['hostname']] k: 2663 len: <class 'list'> Data: ['travel', 'tool', 'manager', 'changed', 'mhtyike', 'szumyhtulas', 'travel', 'still', 'going', 'previous', 'manager', 'qvhixotw', 'rxutkyha', 'tried', 'change', 'travel', 'tool', 'greyed', 'changed', 'correct', 'manager', 'zdcheloy', 'aevzsogn', 'manager', 'business', 'operational', 'excellence'] processed_text: ['travel', 'tool', 'manager', 'changed', 'mhtyike', 'szumyhtulas', 'travel', 'still', 'going', 'previous', 'manager', 'qvhixotw', 'rxutkyha', 'tried', 'change', 'travel', 'tool', 'greyed', 'changed', 'correct', 'manager', 'zdcheloy', 'aevzsogn', 'manager', 'business', 'operational', 'excellence'] list_processed_text: [['travel'], ['tool'], ['manager'], ['changed'], ['mhtyike'], ['szumyhtulas'], ['travel'], ['still'], ['going'], ['previous'], ['manager'], ['qvhixotw'], ['rxutkyha'], ['tried'], ['change'], ['travel'], ['tool'], ['greyed'], ['changed'], ['correct'], ['manager'], ['zdcheloy'], ['aevzsogn'], ['manager'], ['business'], ['operational'], ['excellence']] k: 2664 len: <class 'list'> Data: ['help', 'file', 'engineering', 'tool', 'error', 'hi', 'team', 'could', 'please', 'help', 'user', 'urgapyzt', 'tnxiuramdnty', 'open', 'file', 'engineering', 'tool', 'engineering', 'tool', 'downloaded', 'file', 'site', 'error', 'verification', 'name', 'file', 'ktr', 'file', 'error', 'message', 'appears', 'file', 'site', 'attachment', 'including', 'screen', 'error', 'file', 'zip', 'let', 'know', 'doubt', 'contact', 'user'] processed_text: ['help', 'file', 'engineering', 'tool', 'error', 'hi', 'team', 'could', 'please', 'help', 'user', 'urgapyzt', 'tnxiuramdnty', 'open', 'file', 'engineering', 'tool', 'engineering', 'tool', 'downloaded', 'file', 'site', 'error', 'verification', 'name', 'file', 'ktr', 'file', 'error', 'message', 'appears', 'file', 'site', 'attachment', 'including', 'screen', 'error', 'file', 'zip', 'let', 'know', 'doubt', 'contact', 'user'] list_processed_text: [['help'], ['file'], ['engineering'], ['tool'], ['error'], ['hi'], ['team'], ['could'], ['please'], ['help'], ['user'], ['urgapyzt'], ['tnxiuramdnty'], ['open'], ['file'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['downloaded'], ['file'], ['site'], ['error'], ['verification'], ['name'], ['file'], ['ktr'], ['file'], ['error'], ['message'], ['appears'], ['file'], ['site'], ['attachment'], ['including'], ['screen'], ['error'], ['file'], ['zip'], ['let'], ['know'], ['doubt'], ['contact'], ['user']] k: 2665 len: <class 'list'> Data: ['unable', 'login', 'pc', 'window', 'account', 'locked'] processed_text: ['unable', 'login', 'pc', 'window', 'account', 'locked'] list_processed_text: [['unable'], ['login'], ['pc'], ['window'], ['account'], ['locked']] k: 2666 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] processed_text: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] list_processed_text: [['logon'], ['balancing'], ['error'], ['erp'], ['logon'], ['balancing'], ['error'], ['erp']] k: 2667 len: <class 'list'> Data: ['login', 'citrix', 'tro', 'access', 'erp', 'vvparthyrra', 'password', 'change', 'request', 'manager', 'login', 'citrix', 'tro', 'access', 'erp', 'vvparthyrra', 'password', 'change', 'request', 'manager'] processed_text: ['login', 'citrix', 'tro', 'access', 'erp', 'vvparthyrra', 'password', 'change', 'request', 'manager', 'login', 'citrix', 'tro', 'access', 'erp', 'vvparthyrra', 'password', 'change', 'request', 'manager'] list_processed_text: [['login'], ['citrix'], ['tro'], ['access'], ['erp'], ['vvparthyrra'], ['password'], ['change'], ['request'], ['manager'], ['login'], ['citrix'], ['tro'], ['access'], ['erp'], ['vvparthyrra'], ['password'], ['change'], ['request'], ['manager']] k: 2668 len: <class 'list'> Data: ['laptop', 'booting', 'qksrtvzb', 'vjkftuai', 'said', 'spilled', 'coffee', 'laptop', 'yesterday', 'since', 'machine', 'booting', 'want', 'get', 'checked', 'replaced', 'necessary'] processed_text: ['laptop', 'booting', 'qksrtvzb', 'vjkftuai', 'said', 'spilled', 'coffee', 'laptop', 'yesterday', 'since', 'machine', 'booting', 'want', 'get', 'checked', 'replaced', 'necessary'] list_processed_text: [['laptop'], ['booting'], ['qksrtvzb'], ['vjkftuai'], ['said'], ['spilled'], ['coffee'], ['laptop'], ['yesterday'], ['since'], ['machine'], ['booting'], ['want'], ['get'], ['checked'], ['replaced'], ['necessary']] k: 2669 len: <class 'list'> Data: ['please', 'create', 'rma', 'nov', 'tx', 'return', 'please', 'see', 'attachment'] processed_text: ['please', 'create', 'rma', 'nov', 'tx', 'return', 'please', 'see', 'attachment'] list_processed_text: [['please'], ['create'], ['rma'], ['nov'], ['tx'], ['return'], ['please'], ['see'], ['attachment']] k: 2670 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'update'] processed_text: ['ticket', 'update', 'ticket', 'update'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['update']] k: 2671 len: <class 'list'> Data: ['extend', 'account', 'vvnewthey', 'urgent', 'account', 'expired', 'th', 'need', 'extend', 'account', 'end', 'year', 'need', 'done', 'soon', 'possible', 'employee', 'assisting', 'task', 'related', 'employee', 'leaving', 'company', 'today', 'please', 'expedite'] processed_text: ['extend', 'account', 'vvnewthey', 'urgent', 'account', 'expired', 'th', 'need', 'extend', 'account', 'end', 'year', 'need', 'done', 'soon', 'possible', 'employee', 'assisting', 'task', 'related', 'employee', 'leaving', 'company', 'today', 'please', 'expedite'] list_processed_text: [['extend'], ['account'], ['vvnewthey'], ['urgent'], ['account'], ['expired'], ['th'], ['need'], ['extend'], ['account'], ['end'], ['year'], ['need'], ['done'], ['soon'], ['possible'], ['employee'], ['assisting'], ['task'], ['related'], ['employee'], ['leaving'], ['company'], ['today'], ['please'], ['expedite']] k: 2672 len: <class 'list'> Data: ['m', 'crm', 'dymanics', 'giving', 'error', 'message', 'loading', 'outlook', 'm', 'crm', 'dymanics', 'giving', 'error', 'message', 'loading', 'outlook'] processed_text: ['m', 'crm', 'dymanics', 'giving', 'error', 'message', 'loading', 'outlook', 'm', 'crm', 'dymanics', 'giving', 'error', 'message', 'loading', 'outlook'] list_processed_text: [['m'], ['crm'], ['dymanics'], ['giving'], ['error'], ['message'], ['loading'], ['outlook'], ['m'], ['crm'], ['dymanics'], ['giving'], ['error'], ['message'], ['loading'], ['outlook']] k: 2673 len: <class 'list'> Data: ['need', 'update', 'inplant', 'need', 'update', 'inplant'] processed_text: ['need', 'update', 'inplant', 'need', 'update', 'inplant'] list_processed_text: [['need'], ['update'], ['inplant'], ['need'], ['update'], ['inplant']] k: 2674 len: <class 'list'> Data: ['synchronization', 'log', 'mail', 'accepting', 'calendar', 'invite', 'synchronization', 'log', 'mail', 'accepting', 'calendar', 'invite'] processed_text: ['synchronization', 'log', 'mail', 'accepting', 'calendar', 'invite', 'synchronization', 'log', 'mail', 'accepting', 'calendar', 'invite'] list_processed_text: [['synchronization'], ['log'], ['mail'], ['accepting'], ['calendar'], ['invite'], ['synchronization'], ['log'], ['mail'], ['accepting'], ['calendar'], ['invite']] k: 2675 len: <class 'list'> Data: ['infopath', 'installation', 'infopath', 'installation'] processed_text: ['infopath', 'installation', 'infopath', 'installation'] list_processed_text: [['infopath'], ['installation'], ['infopath'], ['installation']] k: 2676 len: <class 'list'> Data: ['phishing', 'email', 'uacyltoe', 'hxgaycze', 'query', 'phishing', 'email', 'uacyltoe', 'hxgaycze', 'query'] processed_text: ['phishing', 'email', 'uacyltoe', 'hxgaycze', 'query', 'phishing', 'email', 'uacyltoe', 'hxgaycze', 'query'] list_processed_text: [['phishing'], ['email'], ['uacyltoe'], ['hxgaycze'], ['query'], ['phishing'], ['email'], ['uacyltoe'], ['hxgaycze'], ['query']] k: 2677 len: <class 'list'> Data: ['usa', 'order', 'moving', 'list', 'hour', 'confirmation', 'please', 'see', 'attached', 'ppt', 'op', 'confirmed', 'order', 'showing', 'op', 'list', 'even', 'hour', 'ops', 'work', 'center', 'understanding', 'background', 'job', 'run', 'every', 'minute'] processed_text: ['usa', 'order', 'moving', 'list', 'hour', 'confirmation', 'please', 'see', 'attached', 'ppt', 'op', 'confirmed', 'order', 'showing', 'op', 'list', 'even', 'hour', 'ops', 'work', 'center', 'understanding', 'background', 'job', 'run', 'every', 'minute'] list_processed_text: [['usa'], ['order'], ['moving'], ['list'], ['hour'], ['confirmation'], ['please'], ['see'], ['attached'], ['ppt'], ['op'], ['confirmed'], ['order'], ['showing'], ['op'], ['list'], ['even'], ['hour'], ['ops'], ['work'], ['center'], ['understanding'], ['background'], ['job'], ['run'], ['every'], ['minute']] k: 2678 len: <class 'list'> Data: ['printer', 'driver', 'loading', 'properly', 'usa', 'bd', 'printer', 'say', 'need', 'driver', 'updated', 'continually', 'fails', 'update', 'allow', 'printing'] processed_text: ['printer', 'driver', 'loading', 'properly', 'usa', 'bd', 'printer', 'say', 'need', 'driver', 'updated', 'continually', 'fails', 'update', 'allow', 'printing'] list_processed_text: [['printer'], ['driver'], ['loading'], ['properly'], ['usa'], ['bd'], ['printer'], ['say'], ['need'], ['driver'], ['updated'], ['continually'], ['fails'], ['update'], ['allow'], ['printing']] k: 2679 len: <class 'list'> Data: ['engineering', 'tool', 'experiencing', 'reoccurring', 'issue', 'erp', 'engineering', 'tool', 'able', 'display', 'original', 'file', 'pdf', 'stp', 'major', 'function', 'role', 'unable', 'complete', 'work', 'unless', 'resolved', 'issue', 'occurs', 'every', 'time', 'upgrade', 'occurs', 'erp', 'engineering', 'tool'] processed_text: ['engineering', 'tool', 'experiencing', 'reoccurring', 'issue', 'erp', 'engineering', 'tool', 'able', 'display', 'original', 'file', 'pdf', 'stp', 'major', 'function', 'role', 'unable', 'complete', 'work', 'unless', 'resolved', 'issue', 'occurs', 'every', 'time', 'upgrade', 'occurs', 'erp', 'engineering', 'tool'] list_processed_text: [['engineering'], ['tool'], ['experiencing'], ['reoccurring'], ['issue'], ['erp'], ['engineering'], ['tool'], ['able'], ['display'], ['original'], ['file'], ['pdf'], ['stp'], ['major'], ['function'], ['role'], ['unable'], ['complete'], ['work'], ['unless'], ['resolved'], ['issue'], ['occurs'], ['every'], ['time'], ['upgrade'], ['occurs'], ['erp'], ['engineering'], ['tool']] k: 2680 len: <class 'list'> Data: ['spam', 'email', 'vkzwafuh', 'tcjnuswg', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'must', 'validate', 'account', 'hi', 'legitimate', 'email', 'scam', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng', 'cyber', 'crime', 'dept', 'mail', 'vkzwafuh', 'tcjnuswg', 'must', 'validate', 'account', 'dear', 'mail', 'user', 'part', 'security', 'measure', 'secure', 'email', 'user', 'across', 'world', 'email', 'user', 'mandated', 'account', 'detail', 'registered', 'requested', 'cyber', 'crime', 'dept', 'required', 'validate', 'account', 'within', 'hour', 'email', 'account', 'suspended', 'deleted', 'world', 'email', 'server', 'kindly', 'validate', 'email', 'account', 'account', 'registered', 'please', 'click'] processed_text: ['spam', 'email', 'vkzwafuh', 'tcjnuswg', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'must', 'validate', 'account', 'hi', 'legitimate', 'email', 'scam', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng', 'cyber', 'crime', 'dept', 'mail', 'vkzwafuh', 'tcjnuswg', 'must', 'validate', 'account', 'dear', 'mail', 'user', 'part', 'security', 'measure', 'secure', 'email', 'user', 'across', 'world', 'email', 'user', 'mandated', 'account', 'detail', 'registered', 'requested', 'cyber', 'crime', 'dept', 'required', 'validate', 'account', 'within', 'hour', 'email', 'account', 'suspended', 'deleted', 'world', 'email', 'server', 'kindly', 'validate', 'email', 'account', 'account', 'registered', 'please', 'click'] list_processed_text: [['spam'], ['email'], ['vkzwafuh'], ['tcjnuswg'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['must'], ['validate'], ['account'], ['hi'], ['legitimate'], ['email'], ['scam'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng'], ['cyber'], ['crime'], ['dept'], ['mail'], ['vkzwafuh'], ['tcjnuswg'], ['must'], ['validate'], ['account'], ['dear'], ['mail'], ['user'], ['part'], ['security'], ['measure'], ['secure'], ['email'], ['user'], ['across'], ['world'], ['email'], ['user'], ['mandated'], ['account'], ['detail'], ['registered'], ['requested'], ['cyber'], ['crime'], ['dept'], ['required'], ['validate'], ['account'], ['within'], ['hour'], ['email'], ['account'], ['suspended'], ['deleted'], ['world'], ['email'], ['server'], ['kindly'], ['validate'], ['email'], ['account'], ['account'], ['registered'], ['please'], ['click']] k: 2681 len: <class 'list'> Data: ['need', 'tc', 'printer', 'set', 'trying', 'connect', 'network', 'printer', 'tc', 'located', 'tech', 'center', 'computer', 'issue', 'finding', 'correct', 'driver', 'link', 'printer', 'please', 'assist'] processed_text: ['need', 'tc', 'printer', 'set', 'trying', 'connect', 'network', 'printer', 'tc', 'located', 'tech', 'center', 'computer', 'issue', 'finding', 'correct', 'driver', 'link', 'printer', 'please', 'assist'] list_processed_text: [['need'], ['tc'], ['printer'], ['set'], ['trying'], ['connect'], ['network'], ['printer'], ['tc'], ['located'], ['tech'], ['center'], ['computer'], ['issue'], ['finding'], ['correct'], ['driver'], ['link'], ['printer'], ['please'], ['assist']] k: 2682 len: <class 'list'> Data: ['outlook', 'calendar', 'invite', 'issue', 'outloook', 'calendar', 'invite', 'automatically', 'creating', 'multiple', 'meeting', 'request', 'single', 'meeting', 'entry', 'sent', 'causing', 'issue', 'customer', 'internal', 'external', 'filling', 'inboxes', 'multiple', 'invite', 'meeting', 'resending', 'invite', 'every', 'day', 'meeting', 'causing', 'confusion', 'please', 'advise', 'help', 'aerp'] processed_text: ['outlook', 'calendar', 'invite', 'issue', 'outloook', 'calendar', 'invite', 'automatically', 'creating', 'multiple', 'meeting', 'request', 'single', 'meeting', 'entry', 'sent', 'causing', 'issue', 'customer', 'internal', 'external', 'filling', 'inboxes', 'multiple', 'invite', 'meeting', 'resending', 'invite', 'every', 'day', 'meeting', 'causing', 'confusion', 'please', 'advise', 'help', 'aerp'] list_processed_text: [['outlook'], ['calendar'], ['invite'], ['issue'], ['outloook'], ['calendar'], ['invite'], ['automatically'], ['creating'], ['multiple'], ['meeting'], ['request'], ['single'], ['meeting'], ['entry'], ['sent'], ['causing'], ['issue'], ['customer'], ['internal'], ['external'], ['filling'], ['inboxes'], ['multiple'], ['invite'], ['meeting'], ['resending'], ['invite'], ['every'], ['day'], ['meeting'], ['causing'], ['confusion'], ['please'], ['advise'], ['help'], ['aerp']] k: 2683 len: <class 'list'> Data: ['computer', 'tool', 'cutter', 'computer', 'tool', 'cutter'] processed_text: ['computer', 'tool', 'cutter', 'computer', 'tool', 'cutter'] list_processed_text: [['computer'], ['tool'], ['cutter'], ['computer'], ['tool'], ['cutter']] k: 2684 len: <class 'list'> Data: ['log', 'outlook', 'log', 'outlook', 'since', 'changing', 'password', 'equal', 'tel'] processed_text: ['log', 'outlook', 'log', 'outlook', 'since', 'changing', 'password', 'equal', 'tel'] list_processed_text: [['log'], ['outlook'], ['log'], ['outlook'], ['since'], ['changing'], ['password'], ['equal'], ['tel']] k: 2685 len: <class 'list'> Data: ['adding', 'shared', 'mailbox', 'outlook', 'adding', 'shared', 'mailbox', 'outlook'] processed_text: ['adding', 'shared', 'mailbox', 'outlook', 'adding', 'shared', 'mailbox', 'outlook'] list_processed_text: [['adding'], ['shared'], ['mailbox'], ['outlook'], ['adding'], ['shared'], ['mailbox'], ['outlook']] k: 2686 len: <class 'list'> Data: ['workcenter', 'description', 'showing', 'user', 'id', 'issue', 'reported', 'u', 'plant', 'please', 'see', 'attached', 'picture'] processed_text: ['workcenter', 'description', 'showing', 'user', 'id', 'issue', 'reported', 'u', 'plant', 'please', 'see', 'attached', 'picture'] list_processed_text: [['workcenter'], ['description'], ['showing'], ['user'], ['id'], ['issue'], ['reported'], ['u'], ['plant'], ['please'], ['see'], ['attached'], ['picture']] k: 2687 len: <class 'list'> Data: ['company', 'center', 'password', 'work', 'need', 'fixed', 'aerp', 'hi', 'created', 'account', 'company', 'center', 'working', 'someone', 'please', 'call', 'soon', 'possible', 'would', 'great', 'person', 'contact', 'access', 'active', 'directory', 'think', 'problem'] processed_text: ['company', 'center', 'password', 'work', 'need', 'fixed', 'aerp', 'hi', 'created', 'account', 'company', 'center', 'working', 'someone', 'please', 'call', 'soon', 'possible', 'would', 'great', 'person', 'contact', 'access', 'active', 'directory', 'think', 'problem'] list_processed_text: [['company'], ['center'], ['password'], ['work'], ['need'], ['fixed'], ['aerp'], ['hi'], ['created'], ['account'], ['company'], ['center'], ['working'], ['someone'], ['please'], ['call'], ['soon'], ['possible'], ['would'], ['great'], ['person'], ['contact'], ['access'], ['active'], ['directory'], ['think'], ['problem']] k: 2688 len: <class 'list'> Data: ['account', 'got', 'locked', 'account', 'got', 'locked'] processed_text: ['account', 'got', 'locked', 'account', 'got', 'locked'] list_processed_text: [['account'], ['got'], ['locked'], ['account'], ['got'], ['locked']] k: 2689 len: <class 'list'> Data: ['engineering', 'tool', 'install', 'request', 'non', 'company', 'pc', 'window', 'operating', 'system', 'surthryr', 'stahyru'] processed_text: ['engineering', 'tool', 'install', 'request', 'non', 'company', 'pc', 'window', 'operating', 'system', 'surthryr', 'stahyru'] list_processed_text: [['engineering'], ['tool'], ['install'], ['request'], ['non'], ['company'], ['pc'], ['window'], ['operating'], ['system'], ['surthryr'], ['stahyru']] k: 2690 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 2691 len: <class 'list'> Data: ['need', 'retrieve', 'deleted', 'email', 'need', 'retrieve', 'deleted', 'email'] processed_text: ['need', 'retrieve', 'deleted', 'email', 'need', 'retrieve', 'deleted', 'email'] list_processed_text: [['need'], ['retrieve'], ['deleted'], ['email'], ['need'], ['retrieve'], ['deleted'], ['email']] k: 2692 len: <class 'list'> Data: ['z', 'chk', 'issue', 'del', 'hello', 'facing', 'issue', 'screen', 'shot', 'please', 'help', 'u', 'resolve', 'issue', 'urgent', 'complete', 'stragiht', 'away'] processed_text: ['z', 'chk', 'issue', 'del', 'hello', 'facing', 'issue', 'screen', 'shot', 'please', 'help', 'u', 'resolve', 'issue', 'urgent', 'complete', 'stragiht', 'away'] list_processed_text: [['z'], ['chk'], ['issue'], ['del'], ['hello'], ['facing'], ['issue'], ['screen'], ['shot'], ['please'], ['help'], ['u'], ['resolve'], ['issue'], ['urgent'], ['complete'], ['stragiht'], ['away']] k: 2693 len: <class 'list'> Data: ['remote', 'sid', 'connection', 'open', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'please', 'copy', 'role', 'kawtidthry', 'transaction', 'code', 'user', 'need', 'working', 'va', 'describe', 'issue', 'please', 'open', 'sid', 'connection', 'erp', 'provide', 'remote', 'login', 'data', 'erp', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['remote', 'sid', 'connection', 'open', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'please', 'copy', 'role', 'kawtidthry', 'transaction', 'code', 'user', 'need', 'working', 'va', 'describe', 'issue', 'please', 'open', 'sid', 'connection', 'erp', 'provide', 'remote', 'login', 'data', 'erp', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['remote'], ['sid'], ['connection'], ['open'], ['os'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['vv'], ['please'], ['copy'], ['role'], ['kawtidthry'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['va'], ['describe'], ['issue'], ['please'], ['open'], ['sid'], ['connection'], ['erp'], ['provide'], ['remote'], ['login'], ['data'], ['erp'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 2694 len: <class 'list'> Data: ['india', 'high', 'latency', 'packet', 'drop', 'telecom', 'vendor', 'sr', 'india', 'high', 'latency', 'packet', 'drop'] processed_text: ['india', 'high', 'latency', 'packet', 'drop', 'telecom', 'vendor', 'sr', 'india', 'high', 'latency', 'packet', 'drop'] list_processed_text: [['india'], ['high'], ['latency'], ['packet'], ['drop'], ['telecom'], ['vendor'], ['sr'], ['india'], ['high'], ['latency'], ['packet'], ['drop']] k: 2695 len: <class 'list'> Data: ['hello', 'please', 'urgently', 'fix', 'mwst', 'error', 'mm', 'best', 'regard', 'hello', 'please', 'urgently', 'fix', 'mwst', 'error', 'mm', 'best'] processed_text: ['hello', 'please', 'urgently', 'fix', 'mwst', 'error', 'mm', 'best', 'regard', 'hello', 'please', 'urgently', 'fix', 'mwst', 'error', 'mm', 'best'] list_processed_text: [['hello'], ['please'], ['urgently'], ['fix'], ['mwst'], ['error'], ['mm'], ['best'], ['regard'], ['hello'], ['please'], ['urgently'], ['fix'], ['mwst'], ['error'], ['mm'], ['best']] k: 2696 len: <class 'list'> Data: ['problem', 'printing', 'surveying', 'machine', 'r', 'st', 'eaodcgsw', 'trmzwbyc', 'problem', 'printing', 'surveying', 'machine', 'r', 'st', 'eaodcgsw', 'trmzwbyc'] processed_text: ['problem', 'printing', 'surveying', 'machine', 'r', 'st', 'eaodcgsw', 'trmzwbyc', 'problem', 'printing', 'surveying', 'machine', 'r', 'st', 'eaodcgsw', 'trmzwbyc'] list_processed_text: [['problem'], ['printing'], ['surveying'], ['machine'], ['r'], ['st'], ['eaodcgsw'], ['trmzwbyc'], ['problem'], ['printing'], ['surveying'], ['machine'], ['r'], ['st'], ['eaodcgsw'], ['trmzwbyc']] k: 2697 len: <class 'list'> Data: ['support', 'r', 'alicona', 'jionmpsf', 'wnkpzcmv', 'support', 'r', 'alicona', 'jionmpsf', 'wnkpzcmv'] processed_text: ['support', 'r', 'alicona', 'jionmpsf', 'wnkpzcmv', 'support', 'r', 'alicona', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['support'], ['r'], ['alicona'], ['jionmpsf'], ['wnkpzcmv'], ['support'], ['r'], ['alicona'], ['jionmpsf'], ['wnkpzcmv']] k: 2698 len: <class 'list'> Data: ['error', 'qualifying', 'lead', 'user', 'prarthyr', 'jhr', 'refer', 'email', 'sent'] processed_text: ['error', 'qualifying', 'lead', 'user', 'prarthyr', 'jhr', 'refer', 'email', 'sent'] list_processed_text: [['error'], ['qualifying'], ['lead'], ['user'], ['prarthyr'], ['jhr'], ['refer'], ['email'], ['sent']] k: 2699 len: <class 'list'> Data: ['restart', 'company', 'service', 'hostname', 'restart', 'company', 'service', 'hostname'] processed_text: ['restart', 'company', 'service', 'hostname', 'restart', 'company', 'service', 'hostname'] list_processed_text: [['restart'], ['company'], ['service'], ['hostname'], ['restart'], ['company'], ['service'], ['hostname']] k: 2700 len: <class 'list'> Data: ['fw', 'must', 'validate', 'account', 'dear', 'help', 'got', 'email', 'corporate', 'instruction', 'external', 'party', 'need', 'follow', 'please', 'advice', 'best'] processed_text: ['fw', 'must', 'validate', 'account', 'dear', 'help', 'got', 'email', 'corporate', 'instruction', 'external', 'party', 'need', 'follow', 'please', 'advice', 'best'] list_processed_text: [['fw'], ['must'], ['validate'], ['account'], ['dear'], ['help'], ['got'], ['email'], ['corporate'], ['instruction'], ['external'], ['party'], ['need'], ['follow'], ['please'], ['advice'], ['best']] k: 2701 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 2702 len: <class 'list'> Data: ['german', 'call', 'german', 'call'] processed_text: ['german', 'call', 'german', 'call'] list_processed_text: [['german'], ['call'], ['german'], ['call']] k: 2703 len: <class 'list'> Data: ['need', 'addiitional', 'software', 'email', 'setting', 'checked', 'wykigmnz', 'wvdgopybrumugam', 'mgyhnsat', 'aswubnyd', 'sridthshar', 'herytur', 'mvfnbces', 'urbckxna', 'dargthya', 'jayartheuy', 'amihtar', 'lalthy', 'tcqpyuei', 'becoxvqkahadikar', 'jayatramdntydba', 'cvyg', 'old', 'laptop', 'dear', 'mr', 'started', 'using', 'new', 'laptop', 'following', 'issue', 'facing', 'requirement', 'problem', 'remarkhtys', 'csm', 'module', 'working', 'properly', 'wrench', 'engineering', 'toolent', 'software', 'available', 'fanuc', 'ladder', 'software', 'available', 'mail', 'option', 'working', 'properly', 'dwg', 'true', 'viewer', 'software', 'required', 'please', 'needful', 'best'] processed_text: ['need', 'addiitional', 'software', 'email', 'setting', 'checked', 'wykigmnz', 'wvdgopybrumugam', 'mgyhnsat', 'aswubnyd', 'sridthshar', 'herytur', 'mvfnbces', 'urbckxna', 'dargthya', 'jayartheuy', 'amihtar', 'lalthy', 'tcqpyuei', 'becoxvqkahadikar', 'jayatramdntydba', 'cvyg', 'old', 'laptop', 'dear', 'mr', 'started', 'using', 'new', 'laptop', 'following', 'issue', 'facing', 'requirement', 'problem', 'remarkhtys', 'csm', 'module', 'working', 'properly', 'wrench', 'engineering', 'toolent', 'software', 'available', 'fanuc', 'ladder', 'software', 'available', 'mail', 'option', 'working', 'properly', 'dwg', 'true', 'viewer', 'software', 'required', 'please', 'needful', 'best'] list_processed_text: [['need'], ['addiitional'], ['software'], ['email'], ['setting'], ['checked'], ['wykigmnz'], ['wvdgopybrumugam'], ['mgyhnsat'], ['aswubnyd'], ['sridthshar'], ['herytur'], ['mvfnbces'], ['urbckxna'], ['dargthya'], ['jayartheuy'], ['amihtar'], ['lalthy'], ['tcqpyuei'], ['becoxvqkahadikar'], ['jayatramdntydba'], ['cvyg'], ['old'], ['laptop'], ['dear'], ['mr'], ['started'], ['using'], ['new'], ['laptop'], ['following'], ['issue'], ['facing'], ['requirement'], ['problem'], ['remarkhtys'], ['csm'], ['module'], ['working'], ['properly'], ['wrench'], ['engineering'], ['toolent'], ['software'], ['available'], ['fanuc'], ['ladder'], ['software'], ['available'], ['mail'], ['option'], ['working'], ['properly'], ['dwg'], ['true'], ['viewer'], ['software'], ['required'], ['please'], ['needful'], ['best']] k: 2704 len: <class 'list'> Data: ['log', 'balancing', 'error', 'log', 'balancing', 'error'] processed_text: ['log', 'balancing', 'error', 'log', 'balancing', 'error'] list_processed_text: [['log'], ['balancing'], ['error'], ['log'], ['balancing'], ['error']] k: 2705 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 2706 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'dear', 'sir', 'ivohcdpw', 'ixcanwbm', 'able', 'access', 'engineering', 'tool', 'requested', 'help', 'also', 'till', 'date', 'nothing', 'moved', 'ahead', 'please', 'help', 'nthryitin', 'get', 'access', 'engineering', 'tool', 'install', 'earliest', 'best'] processed_text: ['engineering', 'tool', 'working', 'dear', 'sir', 'ivohcdpw', 'ixcanwbm', 'able', 'access', 'engineering', 'tool', 'requested', 'help', 'also', 'till', 'date', 'nothing', 'moved', 'ahead', 'please', 'help', 'nthryitin', 'get', 'access', 'engineering', 'tool', 'install', 'earliest', 'best'] list_processed_text: [['engineering'], ['tool'], ['working'], ['dear'], ['sir'], ['ivohcdpw'], ['ixcanwbm'], ['able'], ['access'], ['engineering'], ['tool'], ['requested'], ['help'], ['also'], ['till'], ['date'], ['nothing'], ['moved'], ['ahead'], ['please'], ['help'], ['nthryitin'], ['get'], ['access'], ['engineering'], ['tool'], ['install'], ['earliest'], ['best']] k: 2707 len: <class 'list'> Data: ['german', 'call', 'german', 'call'] processed_text: ['german', 'call', 'german', 'call'] list_processed_text: [['german'], ['call'], ['german'], ['call']] k: 2708 len: <class 'list'> Data: ['drucker', 'em', 'druckt', 'mit', 'bi', 'zu', 'std', 'verz', 'gerung', 'printer', 'pinged', 'see', 'attachment', 'drucker', 'em', 'druckt', 'mit', 'bi', 'zu', 'std', 'verz', 'gerung', 'wird', 'von', 'pc', 'eemw', 'au', 'gedruckt', 'ce', 'ap', 'messecke', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'em', 'detailed', 'description', 'problem', 'printer', 'take', 'long', 'time', 'print', 'error', 'ff', 'error', 'turn', 'printer', 'restarted', 'couple', 'time', 'help', 'printer', 'pinged', 'see', 'attachment', 'look', 'like', 'non', 'existing', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'data', 'access', 'datenbank', 'excel', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'window'] processed_text: ['drucker', 'em', 'druckt', 'mit', 'bi', 'zu', 'std', 'verz', 'gerung', 'printer', 'pinged', 'see', 'attachment', 'drucker', 'em', 'druckt', 'mit', 'bi', 'zu', 'std', 'verz', 'gerung', 'wird', 'von', 'pc', 'eemw', 'au', 'gedruckt', 'ce', 'ap', 'messecke', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'em', 'detailed', 'description', 'problem', 'printer', 'take', 'long', 'time', 'print', 'error', 'ff', 'error', 'turn', 'printer', 'restarted', 'couple', 'time', 'help', 'printer', 'pinged', 'see', 'attachment', 'look', 'like', 'non', 'existing', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'data', 'access', 'datenbank', 'excel', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'window'] list_processed_text: [['drucker'], ['em'], ['druckt'], ['mit'], ['bi'], ['zu'], ['std'], ['verz'], ['gerung'], ['printer'], ['pinged'], ['see'], ['attachment'], ['drucker'], ['em'], ['druckt'], ['mit'], ['bi'], ['zu'], ['std'], ['verz'], ['gerung'], ['wird'], ['von'], ['pc'], ['eemw'], ['au'], ['gedruckt'], ['ce'], ['ap'], ['messecke'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['em'], ['detailed'], ['description'], ['problem'], ['printer'], ['take'], ['long'], ['time'], ['print'], ['error'], ['ff'], ['error'], ['turn'], ['printer'], ['restarted'], ['couple'], ['time'], ['help'], ['printer'], ['pinged'], ['see'], ['attachment'], ['look'], ['like'], ['non'], ['existing'], ['printer'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['data'], ['access'], ['datenbank'], ['excel'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['window']] k: 2709 len: <class 'list'> Data: ['info', 'type', 'missing', 'personal', 'number', 'lmwohkbd', 'ucziatex', 'nyifqpmv', 'kfirxjag', 'aw', 'travel', 'expense', 'manager', 'hello', 'transaktion', 'pr', 'also', 'work', 'personal', 'mit', 'freundlichen', 'gr', 'en', 'lmwohkbd', 'ucziatex', 'programdnty', 'engineering', 'europe', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'von', 'lmwohkbd', 'ucziatex', 'gesendet', 'freitag', 'nyifqpmv', 'kfirxjag', 'betreff', 'travel', 'expense', 'manager', 'hello', 'travel', 'expense', 'manager', 'work', 'mit', 'freundlichen', 'gr', 'en', 'lmwohkbd', 'ucziatex', 'programdnty', 'engineering', 'europe'] processed_text: ['info', 'type', 'missing', 'personal', 'number', 'lmwohkbd', 'ucziatex', 'nyifqpmv', 'kfirxjag', 'aw', 'travel', 'expense', 'manager', 'hello', 'transaktion', 'pr', 'also', 'work', 'personal', 'mit', 'freundlichen', 'gr', 'en', 'lmwohkbd', 'ucziatex', 'programdnty', 'engineering', 'europe', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'von', 'lmwohkbd', 'ucziatex', 'gesendet', 'freitag', 'nyifqpmv', 'kfirxjag', 'betreff', 'travel', 'expense', 'manager', 'hello', 'travel', 'expense', 'manager', 'work', 'mit', 'freundlichen', 'gr', 'en', 'lmwohkbd', 'ucziatex', 'programdnty', 'engineering', 'europe'] list_processed_text: [['info'], ['type'], ['missing'], ['personal'], ['number'], ['lmwohkbd'], ['ucziatex'], ['nyifqpmv'], ['kfirxjag'], ['aw'], ['travel'], ['expense'], ['manager'], ['hello'], ['transaktion'], ['pr'], ['also'], ['work'], ['personal'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['lmwohkbd'], ['ucziatex'], ['programdnty'], ['engineering'], ['europe'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['von'], ['lmwohkbd'], ['ucziatex'], ['gesendet'], ['freitag'], ['nyifqpmv'], ['kfirxjag'], ['betreff'], ['travel'], ['expense'], ['manager'], ['hello'], ['travel'], ['expense'], ['manager'], ['work'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['lmwohkbd'], ['ucziatex'], ['programdnty'], ['engineering'], ['europe']] k: 2710 len: <class 'list'> Data: ['vpn', 'access', 'elcpduzg', 'eujpstxi', 'graurkart', 'hello', 'please', 'set', 'vpn', 'access', 'elcpduzg', 'eujpstxi', 'graurkart', 'rudolf', 'kennmetal', 'owned', 'laptop', 'eeml'] processed_text: ['vpn', 'access', 'elcpduzg', 'eujpstxi', 'graurkart', 'hello', 'please', 'set', 'vpn', 'access', 'elcpduzg', 'eujpstxi', 'graurkart', 'rudolf', 'kennmetal', 'owned', 'laptop', 'eeml'] list_processed_text: [['vpn'], ['access'], ['elcpduzg'], ['eujpstxi'], ['graurkart'], ['hello'], ['please'], ['set'], ['vpn'], ['access'], ['elcpduzg'], ['eujpstxi'], ['graurkart'], ['rudolf'], ['kennmetal'], ['owned'], ['laptop'], ['eeml']] k: 2711 len: <class 'list'> Data: ['outlook', 'accepting', 'password', 'user', 'change', 'password', 'vpn', 'user', 'getting', 'password', 'prompt'] processed_text: ['outlook', 'accepting', 'password', 'user', 'change', 'password', 'vpn', 'user', 'getting', 'password', 'prompt'] list_processed_text: [['outlook'], ['accepting'], ['password'], ['user'], ['change'], ['password'], ['vpn'], ['user'], ['getting'], ['password'], ['prompt']] k: 2712 len: <class 'list'> Data: ['script', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'data', 'revert', 'back', 'delta', 'extraction', 'process', 'refreshing', 'history', 'rr', 'need', 'modify', 'bobj', 'script', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'new', 'pricing', 'sale', 'data', 'zsd', 'giving', 'date', 'range', 'need', 'move', 'change', 'production', 'extract', 'data', 'today', 'data', 'extracted', 'revert', 'back', 'programdnty', 'jb', 'ecc', 'bw', 'zsd', 'extract', 'delta', 'data'] processed_text: ['script', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'data', 'revert', 'back', 'delta', 'extraction', 'process', 'refreshing', 'history', 'rr', 'need', 'modify', 'bobj', 'script', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'new', 'pricing', 'sale', 'data', 'zsd', 'giving', 'date', 'range', 'need', 'move', 'change', 'production', 'extract', 'data', 'today', 'data', 'extracted', 'revert', 'back', 'programdnty', 'jb', 'ecc', 'bw', 'zsd', 'extract', 'delta', 'data'] list_processed_text: [['script'], ['jb'], ['ecc'], ['bw'], ['zsd'], ['pull'], ['month'], ['data'], ['revert'], ['back'], ['delta'], ['extraction'], ['process'], ['refreshing'], ['history'], ['rr'], ['need'], ['modify'], ['bobj'], ['script'], ['jb'], ['ecc'], ['bw'], ['zsd'], ['pull'], ['month'], ['new'], ['pricing'], ['sale'], ['data'], ['zsd'], ['giving'], ['date'], ['range'], ['need'], ['move'], ['change'], ['production'], ['extract'], ['data'], ['today'], ['data'], ['extracted'], ['revert'], ['back'], ['programdnty'], ['jb'], ['ecc'], ['bw'], ['zsd'], ['extract'], ['delta'], ['data']] k: 2713 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2714 len: <class 'list'> Data: ['problem', 'skype', 'outlook', 'user', 'dardabthyr', 'problem', 'skype', 'outlook', 'user', 'dardabthyr'] processed_text: ['problem', 'skype', 'outlook', 'user', 'dardabthyr', 'problem', 'skype', 'outlook', 'user', 'dardabthyr'] list_processed_text: [['problem'], ['skype'], ['outlook'], ['user'], ['dardabthyr'], ['problem'], ['skype'], ['outlook'], ['user'], ['dardabthyr']] k: 2715 len: <class 'list'> Data: ['problem', 'skype', 'outlook', 'dardabthyr', 'problem', 'skype', 'outlook', 'dardabthyr'] processed_text: ['problem', 'skype', 'outlook', 'dardabthyr', 'problem', 'skype', 'outlook', 'dardabthyr'] list_processed_text: [['problem'], ['skype'], ['outlook'], ['dardabthyr'], ['problem'], ['skype'], ['outlook'], ['dardabthyr']] k: 2716 len: <class 'list'> Data: ['please', 'get', 'usb', 'stick', 'gb', 'one', 'u', 'broke', 'please', 'get', 'usb', 'stick', 'gb', 'one', 'u', 'broke'] processed_text: ['please', 'get', 'usb', 'stick', 'gb', 'one', 'u', 'broke', 'please', 'get', 'usb', 'stick', 'gb', 'one', 'u', 'broke'] list_processed_text: [['please'], ['get'], ['usb'], ['stick'], ['gb'], ['one'], ['u'], ['broke'], ['please'], ['get'], ['usb'], ['stick'], ['gb'], ['one'], ['u'], ['broke']] k: 2717 len: <class 'list'> Data: ['copier', 'hp', 'laserjet', 'show', 'error', 'message', 'transfer', 'unit', 'missing', 'copier', 'hp', 'laserjet', 'show', 'error', 'message', 'transfer', 'unit', 'missing'] processed_text: ['copier', 'hp', 'laserjet', 'show', 'error', 'message', 'transfer', 'unit', 'missing', 'copier', 'hp', 'laserjet', 'show', 'error', 'message', 'transfer', 'unit', 'missing'] list_processed_text: [['copier'], ['hp'], ['laserjet'], ['show'], ['error'], ['message'], ['transfer'], ['unit'], ['missing'], ['copier'], ['hp'], ['laserjet'], ['show'], ['error'], ['message'], ['transfer'], ['unit'], ['missing']] k: 2718 len: <class 'list'> Data: ['erp', 'access', 'issue', 'refrence', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'transaction', 'code', 'user', 'need', 'working', 'va', 'please', 'copy', 'role', 'user', 'id', 'kawtidthry', 'describe', 'issue', 'please', 'provide', 'remote', 'login', 'credential', 'update', 'os', 'secure', 'connection', 'area', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'refrence', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'transaction', 'code', 'user', 'need', 'working', 'va', 'please', 'copy', 'role', 'user', 'id', 'kawtidthry', 'describe', 'issue', 'please', 'provide', 'remote', 'login', 'credential', 'update', 'os', 'secure', 'connection', 'area', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['refrence'], ['os'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['vv'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['va'], ['please'], ['copy'], ['role'], ['user'], ['id'], ['kawtidthry'], ['describe'], ['issue'], ['please'], ['provide'], ['remote'], ['login'], ['credential'], ['update'], ['os'], ['secure'], ['connection'], ['area'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 2719 len: <class 'list'> Data: ['ir', 'posting', 'error', 'urgently', 'hi', 'team', 'kindly', 'create', 'ticket', 'assign'] processed_text: ['ir', 'posting', 'error', 'urgently', 'hi', 'team', 'kindly', 'create', 'ticket', 'assign'] list_processed_text: [['ir'], ['posting'], ['error'], ['urgently'], ['hi'], ['team'], ['kindly'], ['create'], ['ticket'], ['assign']] k: 2720 len: <class 'list'> Data: ['enterprise', 'scanner', 'freezing', 'enterprise', 'scanner', 'freezing', 'telephone'] processed_text: ['enterprise', 'scanner', 'freezing', 'enterprise', 'scanner', 'freezing', 'telephone'] list_processed_text: [['enterprise'], ['scanner'], ['freezing'], ['enterprise'], ['scanner'], ['freezing'], ['telephone']] k: 2721 len: <class 'list'> Data: ['job', 'bk', 'biaprod', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'job', 'bk', 'biaprod', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'biaprod', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'job', 'bk', 'biaprod', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['biaprod'], ['failed'], ['job'], ['scheduler'], ['major'], ['lib'], ['drive'], ['time'], ['dev'], ['rmt'], ['cannot'], ['write'], ['device'], ['error'], ['job'], ['bk'], ['biaprod'], ['failed'], ['job'], ['scheduler']] k: 2722 len: <class 'list'> Data: ['ir', 'posting', 'error', 'urgently', 'dear', 'team', 'kindly', 'fixed', 'transaction', 'error', 'within', 'avoid', 'difference', 'intercompany', 'reconciliation', 'ir', 'transaction', 'posted', 'duplicate', 'ir', 'transaction', 'best'] processed_text: ['ir', 'posting', 'error', 'urgently', 'dear', 'team', 'kindly', 'fixed', 'transaction', 'error', 'within', 'avoid', 'difference', 'intercompany', 'reconciliation', 'ir', 'transaction', 'posted', 'duplicate', 'ir', 'transaction', 'best'] list_processed_text: [['ir'], ['posting'], ['error'], ['urgently'], ['dear'], ['team'], ['kindly'], ['fixed'], ['transaction'], ['error'], ['within'], ['avoid'], ['difference'], ['intercompany'], ['reconciliation'], ['ir'], ['transaction'], ['posted'], ['duplicate'], ['ir'], ['transaction'], ['best']] k: 2723 len: <class 'list'> Data: ['vpn', 'vpn', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] processed_text: ['vpn', 'vpn', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] list_processed_text: [['vpn'], ['vpn'], ['tuqrvowp'], ['fxmzkvqo'], ['human'], ['resource']] k: 2724 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2725 len: <class 'list'> Data: ['please', 'approve', 'primary', 'email', 'jeknosml', 'gkcoltsy', 'm', 'crm', 'hello', 'please', 'approve', 'primary', 'email', 'jeknosml', 'gkcoltsy', 'm', 'crm', 'prod', 'train', 'email'] processed_text: ['please', 'approve', 'primary', 'email', 'jeknosml', 'gkcoltsy', 'm', 'crm', 'hello', 'please', 'approve', 'primary', 'email', 'jeknosml', 'gkcoltsy', 'm', 'crm', 'prod', 'train', 'email'] list_processed_text: [['please'], ['approve'], ['primary'], ['email'], ['jeknosml'], ['gkcoltsy'], ['m'], ['crm'], ['hello'], ['please'], ['approve'], ['primary'], ['email'], ['jeknosml'], ['gkcoltsy'], ['m'], ['crm'], ['prod'], ['train'], ['email']] k: 2726 len: <class 'list'> Data: ['po', 'created', 'hello', 'team', 'could', 'please', 'check', 'error', 'help', 'u', 'cannot', 'create', 'inwarehouse', 'tool', 'delivery', 'month', 'error', 'cannot', 'solved', 'urgent', 'support', 'needed'] processed_text: ['po', 'created', 'hello', 'team', 'could', 'please', 'check', 'error', 'help', 'u', 'cannot', 'create', 'inwarehouse', 'tool', 'delivery', 'month', 'error', 'cannot', 'solved', 'urgent', 'support', 'needed'] list_processed_text: [['po'], ['created'], ['hello'], ['team'], ['could'], ['please'], ['check'], ['error'], ['help'], ['u'], ['cannot'], ['create'], ['inwarehouse'], ['tool'], ['delivery'], ['month'], ['error'], ['cannot'], ['solved'], ['urgent'], ['support'], ['needed']] k: 2727 len: <class 'list'> Data: ['erp', 'slow', 'please', 'resolve', 'issue', 'urgent', 'basis', 'hi', 'erp', 'slow', 'please', 'resolve', 'issue', 'urgent', 'basis', 'best'] processed_text: ['erp', 'slow', 'please', 'resolve', 'issue', 'urgent', 'basis', 'hi', 'erp', 'slow', 'please', 'resolve', 'issue', 'urgent', 'basis', 'best'] list_processed_text: [['erp'], ['slow'], ['please'], ['resolve'], ['issue'], ['urgent'], ['basis'], ['hi'], ['erp'], ['slow'], ['please'], ['resolve'], ['issue'], ['urgent'], ['basis'], ['best']] k: 2728 len: <class 'list'> Data: ['lost', 'access', 'reporting', 'tool', 'crm', 'per', 'note', 'dthyan', 'matheywtyuews', 'pm', 'nwfodmhc', 'exurcwkm', 'sabrthy', 'fw', 'synchronization', 'log', 'importance', 'high', 'lost', 'access', 'reporting', 'tool', 'crm', 'per', 'note', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl', 'dthyan', 'matheywtyuews', 'dthyan', 'matheywtyuews', 'synchronization', 'log', 'importance', 'high', 'synchronizer', 'version', 'synchronizing', 'mailbox', 'dthyan', 'matheywtyuews', 'synchronizing', 'hierarchy', 'synchronizing', 'local', 'change', 'folder', 'calendar', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'local', 'change', 'folder', 'inbox', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'downloading', 'server', 'item', 'changed', 'read', 'state', 'offline', 'folder', 'synchronizing', 'local', 'change', 'folder', 'contact', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'local', 'change', 'folder', 'task', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'server', 'change', 'folder', 'rus', 'hall', 'calendar', 'downloading', 'server', 'error', 'synchronizing', 'folder', 'sufficient', 'permission', 'perform', 'operation', 'object', 'see', 'folder', 'contact', 'system', 'administrator', 'microsoft', 'exchange', 'information', 'store', 'information', 'failure', 'click', 'url', 'done', 'microsoft', 'exchange', 'offline', 'address', 'book', 'download', 'successful'] processed_text: ['lost', 'access', 'reporting', 'tool', 'crm', 'per', 'note', 'dthyan', 'matheywtyuews', 'pm', 'nwfodmhc', 'exurcwkm', 'sabrthy', 'fw', 'synchronization', 'log', 'importance', 'high', 'lost', 'access', 'reporting', 'tool', 'crm', 'per', 'note', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl', 'dthyan', 'matheywtyuews', 'dthyan', 'matheywtyuews', 'synchronization', 'log', 'importance', 'high', 'synchronizer', 'version', 'synchronizing', 'mailbox', 'dthyan', 'matheywtyuews', 'synchronizing', 'hierarchy', 'synchronizing', 'local', 'change', 'folder', 'calendar', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'local', 'change', 'folder', 'inbox', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'downloading', 'server', 'item', 'changed', 'read', 'state', 'offline', 'folder', 'synchronizing', 'local', 'change', 'folder', 'contact', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'local', 'change', 'folder', 'task', 'uploading', 'server', 'view', 'form', 'updated', 'online', 'folder', 'synchronizing', 'server', 'change', 'folder', 'rus', 'hall', 'calendar', 'downloading', 'server', 'error', 'synchronizing', 'folder', 'sufficient', 'permission', 'perform', 'operation', 'object', 'see', 'folder', 'contact', 'system', 'administrator', 'microsoft', 'exchange', 'information', 'store', 'information', 'failure', 'click', 'url', 'done', 'microsoft', 'exchange', 'offline', 'address', 'book', 'download', 'successful'] list_processed_text: [['lost'], ['access'], ['reporting'], ['tool'], ['crm'], ['per'], ['note'], ['dthyan'], ['matheywtyuews'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['sabrthy'], ['fw'], ['synchronization'], ['log'], ['importance'], ['high'], ['lost'], ['access'], ['reporting'], ['tool'], ['crm'], ['per'], ['note'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl'], ['dthyan'], ['matheywtyuews'], ['dthyan'], ['matheywtyuews'], ['synchronization'], ['log'], ['importance'], ['high'], ['synchronizer'], ['version'], ['synchronizing'], ['mailbox'], ['dthyan'], ['matheywtyuews'], ['synchronizing'], ['hierarchy'], ['synchronizing'], ['local'], ['change'], ['folder'], ['calendar'], ['uploading'], ['server'], ['view'], ['form'], ['updated'], ['online'], ['folder'], ['synchronizing'], ['local'], ['change'], ['folder'], ['inbox'], ['uploading'], ['server'], ['view'], ['form'], ['updated'], ['online'], ['folder'], ['downloading'], ['server'], ['item'], ['changed'], ['read'], ['state'], ['offline'], ['folder'], ['synchronizing'], ['local'], ['change'], ['folder'], ['contact'], ['uploading'], ['server'], ['view'], ['form'], ['updated'], ['online'], ['folder'], ['synchronizing'], ['local'], ['change'], ['folder'], ['task'], ['uploading'], ['server'], ['view'], ['form'], ['updated'], ['online'], ['folder'], ['synchronizing'], ['server'], ['change'], ['folder'], ['rus'], ['hall'], ['calendar'], ['downloading'], ['server'], ['error'], ['synchronizing'], ['folder'], ['sufficient'], ['permission'], ['perform'], ['operation'], ['object'], ['see'], ['folder'], ['contact'], ['system'], ['administrator'], ['microsoft'], ['exchange'], ['information'], ['store'], ['information'], ['failure'], ['click'], ['url'], ['done'], ['microsoft'], ['exchange'], ['offline'], ['address'], ['book'], ['download'], ['successful']] k: 2729 len: <class 'list'> Data: ['outlook', 'starting', 'outlook', 'starting'] processed_text: ['outlook', 'starting', 'outlook', 'starting'] list_processed_text: [['outlook'], ['starting'], ['outlook'], ['starting']] k: 2730 len: <class 'list'> Data: ['frequent', 'account', 'lock', 'user', 'wothyehre', 'locked', 'every', 'day'] processed_text: ['frequent', 'account', 'lock', 'user', 'wothyehre', 'locked', 'every', 'day'] list_processed_text: [['frequent'], ['account'], ['lock'], ['user'], ['wothyehre'], ['locked'], ['every'], ['day']] k: 2731 len: <class 'list'> Data: ['unable', 'login', 'distributor', 'tool', 'benoittry', 'unable', 'login', 'distributor', 'tool', 'waiting', 'see', 'one', 'previous', 'password', 'password', 'used', 'erp', 'used', 'resetting', 'password', 'management', 'tool'] processed_text: ['unable', 'login', 'distributor', 'tool', 'benoittry', 'unable', 'login', 'distributor', 'tool', 'waiting', 'see', 'one', 'previous', 'password', 'password', 'used', 'erp', 'used', 'resetting', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['login'], ['distributor'], ['tool'], ['benoittry'], ['unable'], ['login'], ['distributor'], ['tool'], ['waiting'], ['see'], ['one'], ['previous'], ['password'], ['password'], ['used'], ['erp'], ['used'], ['resetting'], ['password'], ['management'], ['tool']] k: 2732 len: <class 'list'> Data: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['need'], ['help'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 2733 len: <class 'list'> Data: ['need', 'developer', 'display', 'access', 'user', 'uacyltoe', 'hxgayczecp', 'sid', 'system', 'need', 'developer', 'display', 'access', 'user', 'uacyltoe', 'hxgayczecp', 'sid', 'system'] processed_text: ['need', 'developer', 'display', 'access', 'user', 'uacyltoe', 'hxgayczecp', 'sid', 'system', 'need', 'developer', 'display', 'access', 'user', 'uacyltoe', 'hxgayczecp', 'sid', 'system'] list_processed_text: [['need'], ['developer'], ['display'], ['access'], ['user'], ['uacyltoe'], ['hxgayczecp'], ['sid'], ['system'], ['need'], ['developer'], ['display'], ['access'], ['user'], ['uacyltoe'], ['hxgayczecp'], ['sid'], ['system']] k: 2734 len: <class 'list'> Data: ['outlook', 'issue', 'encountring', 'outlook', 'issue', 'cannot', 'open', 'pc', 'urgent'] processed_text: ['outlook', 'issue', 'encountring', 'outlook', 'issue', 'cannot', 'open', 'pc', 'urgent'] list_processed_text: [['outlook'], ['issue'], ['encountring'], ['outlook'], ['issue'], ['cannot'], ['open'], ['pc'], ['urgent']] k: 2735 len: <class 'list'> Data: ['issue', 'engineering', 'tool', 'dear', 'sir', 'trying', 'upload', 'engineering', 'tool', 'system', 'loading', 'detail', 'price', 'drill', 'detail', 'engineering', 'tool', 'saved', 'screen', 'shot', 'show', 'detail', 'filled', 'trying', 'upload', 'engineering', 'tool', 'server', 'faced', 'error', 'screen', 'shot', 'attached', 'pl', 'look', 'pl', 'resolve', 'immediately', 'detail', 'filled', 'pricing', 'uacyltoe', 'hxgaycze', 'site', 'screen', 'shot', 'error'] processed_text: ['issue', 'engineering', 'tool', 'dear', 'sir', 'trying', 'upload', 'engineering', 'tool', 'system', 'loading', 'detail', 'price', 'drill', 'detail', 'engineering', 'tool', 'saved', 'screen', 'shot', 'show', 'detail', 'filled', 'trying', 'upload', 'engineering', 'tool', 'server', 'faced', 'error', 'screen', 'shot', 'attached', 'pl', 'look', 'pl', 'resolve', 'immediately', 'detail', 'filled', 'pricing', 'uacyltoe', 'hxgaycze', 'site', 'screen', 'shot', 'error'] list_processed_text: [['issue'], ['engineering'], ['tool'], ['dear'], ['sir'], ['trying'], ['upload'], ['engineering'], ['tool'], ['system'], ['loading'], ['detail'], ['price'], ['drill'], ['detail'], ['engineering'], ['tool'], ['saved'], ['screen'], ['shot'], ['show'], ['detail'], ['filled'], ['trying'], ['upload'], ['engineering'], ['tool'], ['server'], ['faced'], ['error'], ['screen'], ['shot'], ['attached'], ['pl'], ['look'], ['pl'], ['resolve'], ['immediately'], ['detail'], ['filled'], ['pricing'], ['uacyltoe'], ['hxgaycze'], ['site'], ['screen'], ['shot'], ['error']] k: 2736 len: <class 'list'> Data: ['reset', 'password', 'fkuqjwit', 'jgcsaqzi', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'fkuqjwit', 'jgcsaqzi', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['fkuqjwit'], ['jgcsaqzi'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2737 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler', 'error', 'channelerror', 'connectionreset', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler', 'error', 'channelerror', 'connectionreset', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['error'], ['channelerror'], ['connectionreset'], ['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2738 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 2739 len: <class 'list'> Data: ['erp', 'slow', 'erp', 'system', 'slow', 'apac', 'dc', 'asked', 'stefytyn', 'shi', 'uacyltoe', 'hxgaycze', 'network', 'uacyltoe', 'hxgaycze', 'network', 'packet', 'loss', 'ping', 'erp', 'server', 'check', 'data', 'truview', 'link', 'utilization', 'asked', 'apac', 'plant', 'erp', 'slow', 'please', 'check', 'server', 'solve', 'issue'] processed_text: ['erp', 'slow', 'erp', 'system', 'slow', 'apac', 'dc', 'asked', 'stefytyn', 'shi', 'uacyltoe', 'hxgaycze', 'network', 'uacyltoe', 'hxgaycze', 'network', 'packet', 'loss', 'ping', 'erp', 'server', 'check', 'data', 'truview', 'link', 'utilization', 'asked', 'apac', 'plant', 'erp', 'slow', 'please', 'check', 'server', 'solve', 'issue'] list_processed_text: [['erp'], ['slow'], ['erp'], ['system'], ['slow'], ['apac'], ['dc'], ['asked'], ['stefytyn'], ['shi'], ['uacyltoe'], ['hxgaycze'], ['network'], ['uacyltoe'], ['hxgaycze'], ['network'], ['packet'], ['loss'], ['ping'], ['erp'], ['server'], ['check'], ['data'], ['truview'], ['link'], ['utilization'], ['asked'], ['apac'], ['plant'], ['erp'], ['slow'], ['please'], ['check'], ['server'], ['solve'], ['issue']] k: 2740 len: <class 'list'> Data: ['erp', 'log', 'erp', 'disconnected', 'log', 'disconnection', 'took', 'several', 'min', 'conduct', 'action', 'erp'] processed_text: ['erp', 'log', 'erp', 'disconnected', 'log', 'disconnection', 'took', 'several', 'min', 'conduct', 'action', 'erp'] list_processed_text: [['erp'], ['log'], ['erp'], ['disconnected'], ['log'], ['disconnection'], ['took'], ['several'], ['min'], ['conduct'], ['action'], ['erp']] k: 2741 len: <class 'list'> Data: ['always', 'get', 'reminder', 'approval', 'requisition', 'even', 'approved', 'lot', 'time', 'kate', 'liu', 'apac', 'plant', 'complete', 'pr', 'approval', 'need', 'support', 'email'] processed_text: ['always', 'get', 'reminder', 'approval', 'requisition', 'even', 'approved', 'lot', 'time', 'kate', 'liu', 'apac', 'plant', 'complete', 'pr', 'approval', 'need', 'support', 'email'] list_processed_text: [['always'], ['get'], ['reminder'], ['approval'], ['requisition'], ['even'], ['approved'], ['lot'], ['time'], ['kate'], ['liu'], ['apac'], ['plant'], ['complete'], ['pr'], ['approval'], ['need'], ['support'], ['email']] k: 2742 len: <class 'list'> Data: ['top', 'urgent', 'price', 'issue', 'dear', 'team', 'pls', 'help', 'maintain', 'net', 'price', 'mm', 'need', 'create', 'sto', 'material', 'plant', 'plant', 'net', 'price', 'show', 'pls', 'help', 'maintain', 'p', 'cause', 'urgent', 'case', 'thx', 'advance', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['top', 'urgent', 'price', 'issue', 'dear', 'team', 'pls', 'help', 'maintain', 'net', 'price', 'mm', 'need', 'create', 'sto', 'material', 'plant', 'plant', 'net', 'price', 'show', 'pls', 'help', 'maintain', 'p', 'cause', 'urgent', 'case', 'thx', 'advance', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['top'], ['urgent'], ['price'], ['issue'], ['dear'], ['team'], ['pls'], ['help'], ['maintain'], ['net'], ['price'], ['mm'], ['need'], ['create'], ['sto'], ['material'], ['plant'], ['plant'], ['net'], ['price'], ['show'], ['pls'], ['help'], ['maintain'], ['p'], ['cause'], ['urgent'], ['case'], ['thx'], ['advance'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 2743 len: <class 'list'> Data: ['outlook', 'cannot', 'login', 'notebook', 'hello', 'please', 'help', 'cannot', 'login', 'outlook', 'notebook'] processed_text: ['outlook', 'cannot', 'login', 'notebook', 'hello', 'please', 'help', 'cannot', 'login', 'outlook', 'notebook'] list_processed_text: [['outlook'], ['cannot'], ['login'], ['notebook'], ['hello'], ['please'], ['help'], ['cannot'], ['login'], ['outlook'], ['notebook']] k: 2744 len: <class 'list'> Data: ['docking', 'station', 'working', 'docking', 'station', 'working', 'power', 'laptop'] processed_text: ['docking', 'station', 'working', 'docking', 'station', 'working', 'power', 'laptop'] list_processed_text: [['docking'], ['station'], ['working'], ['docking'], ['station'], ['working'], ['power'], ['laptop']] k: 2745 len: <class 'list'> Data: ['cann', 'mb', 'po', 'po', 'plant', 'need', 'ship', 'mb', 'please', 'help'] processed_text: ['cann', 'mb', 'po', 'po', 'plant', 'need', 'ship', 'mb', 'please', 'help'] list_processed_text: [['cann'], ['mb'], ['po'], ['po'], ['plant'], ['need'], ['ship'], ['mb'], ['please'], ['help']] k: 2746 len: <class 'list'> Data: ['india', 'plant', 'india', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'sw', 'india', 'plant', 'india', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'located', 'india', 'kirty', 'interface', 'gigabitethernet', 'gigabitethernet', 'connection', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'ap', 'ind', 'admin', 'core', 'sw', 'company', 'com'] processed_text: ['india', 'plant', 'india', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'sw', 'india', 'plant', 'india', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'node', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'com', 'located', 'india', 'kirty', 'interface', 'gigabitethernet', 'gigabitethernet', 'connection', 'company', 'ap', 'ind', 'kkc', 'access', 'sw', 'company', 'ap', 'ind', 'admin', 'core', 'sw', 'company', 'com'] list_processed_text: [['india'], ['plant'], ['india'], ['node'], ['company'], ['ap'], ['ind'], ['kkc'], ['access'], ['sw'], ['company'], ['com'], ['sw'], ['india'], ['plant'], ['india'], ['node'], ['company'], ['ap'], ['ind'], ['kkc'], ['access'], ['sw'], ['company'], ['com'], ['node'], ['company'], ['ap'], ['ind'], ['kkc'], ['access'], ['sw'], ['company'], ['com'], ['located'], ['india'], ['kirty'], ['interface'], ['gigabitethernet'], ['gigabitethernet'], ['connection'], ['company'], ['ap'], ['ind'], ['kkc'], ['access'], ['sw'], ['company'], ['ap'], ['ind'], ['admin'], ['core'], ['sw'], ['company'], ['com']] k: 2747 len: <class 'list'> Data: ['urgent', 'mm', 'dear', 'would', 'please', 'solve', 'issue', 'settle', 'negative', 'stock', 'need', 'gr', 'migo', 'manually', 'like', 'erp', 'said', 'l', 'account', 'exist', 'company', 'code', 'please', 'let', 'know', 'handle', 'today', 'end', 'month', 'please', 'solve', 'aerp'] processed_text: ['urgent', 'mm', 'dear', 'would', 'please', 'solve', 'issue', 'settle', 'negative', 'stock', 'need', 'gr', 'migo', 'manually', 'like', 'erp', 'said', 'l', 'account', 'exist', 'company', 'code', 'please', 'let', 'know', 'handle', 'today', 'end', 'month', 'please', 'solve', 'aerp'] list_processed_text: [['urgent'], ['mm'], ['dear'], ['would'], ['please'], ['solve'], ['issue'], ['settle'], ['negative'], ['stock'], ['need'], ['gr'], ['migo'], ['manually'], ['like'], ['erp'], ['said'], ['l'], ['account'], ['exist'], ['company'], ['code'], ['please'], ['let'], ['know'], ['handle'], ['today'], ['end'], ['month'], ['please'], ['solve'], ['aerp']] k: 2748 len: <class 'list'> Data: ['customer', 'sale', 'able', 'create', 'quote', 'received', 'email', 'numerous', 'call', 'customer', 'sale', 'able', 'create', 'quote', 'last', 'day', 'quarter', 'huge', 'risk', 'lose', 'sale', 'negatively', 'impact', 'customer'] processed_text: ['customer', 'sale', 'able', 'create', 'quote', 'received', 'email', 'numerous', 'call', 'customer', 'sale', 'able', 'create', 'quote', 'last', 'day', 'quarter', 'huge', 'risk', 'lose', 'sale', 'negatively', 'impact', 'customer'] list_processed_text: [['customer'], ['sale'], ['able'], ['create'], ['quote'], ['received'], ['email'], ['numerous'], ['call'], ['customer'], ['sale'], ['able'], ['create'], ['quote'], ['last'], ['day'], ['quarter'], ['huge'], ['risk'], ['lose'], ['sale'], ['negatively'], ['impact'], ['customer']] k: 2749 len: <class 'list'> Data: ['able', 'service', 'customer', 'distributor', 'tool', 'companycenter', 'login', 'working', 'unauthorised', 'access', 'account', 'deleted', 'please', 'contact', 'help', 'desk', 'window', 'sid', 'sid', 'sid', 'password', 'management', 'tool', 'bw', 'hana', 'reporting', 'tool', 'crm', 'dynamic', 'outlook', 'etc', 'fine'] processed_text: ['able', 'service', 'customer', 'distributor', 'tool', 'companycenter', 'login', 'working', 'unauthorised', 'access', 'account', 'deleted', 'please', 'contact', 'help', 'desk', 'window', 'sid', 'sid', 'sid', 'password', 'management', 'tool', 'bw', 'hana', 'reporting', 'tool', 'crm', 'dynamic', 'outlook', 'etc', 'fine'] list_processed_text: [['able'], ['service'], ['customer'], ['distributor'], ['tool'], ['companycenter'], ['login'], ['working'], ['unauthorised'], ['access'], ['account'], ['deleted'], ['please'], ['contact'], ['help'], ['desk'], ['window'], ['sid'], ['sid'], ['sid'], ['password'], ['management'], ['tool'], ['bw'], ['hana'], ['reporting'], ['tool'], ['crm'], ['dynamic'], ['outlook'], ['etc'], ['fine']] k: 2750 len: <class 'list'> Data: ['m', 'office', 'general', 'question', 'm', 'office', 'general', 'question'] processed_text: ['m', 'office', 'general', 'question', 'm', 'office', 'general', 'question'] list_processed_text: [['m'], ['office'], ['general'], ['question'], ['m'], ['office'], ['general'], ['question']] k: 2751 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2752 len: <class 'list'> Data: ['please', 'help', 'tami', 'receive', 'rma', 'detail', 'issue', 'screen', 'shot', 'sure', 'please', 'help', 'tami', 'receive', 'rma', 'detail', 'issue', 'screen', 'shot', 'sure', 'help'] processed_text: ['please', 'help', 'tami', 'receive', 'rma', 'detail', 'issue', 'screen', 'shot', 'sure', 'please', 'help', 'tami', 'receive', 'rma', 'detail', 'issue', 'screen', 'shot', 'sure', 'help'] list_processed_text: [['please'], ['help'], ['tami'], ['receive'], ['rma'], ['detail'], ['issue'], ['screen'], ['shot'], ['sure'], ['please'], ['help'], ['tami'], ['receive'], ['rma'], ['detail'], ['issue'], ['screen'], ['shot'], ['sure'], ['help']] k: 2753 len: <class 'list'> Data: ['request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view', 'request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view'] processed_text: ['request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view', 'request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view'] list_processed_text: [['request'], ['remove'], ['day'], ['pick'], ['route'], ['logic'], ['supply'], ['chain'], ['customer'], ['plant'], ['view'], ['request'], ['remove'], ['day'], ['pick'], ['route'], ['logic'], ['supply'], ['chain'], ['customer'], ['plant'], ['view']] k: 2754 len: <class 'list'> Data: ['crm', 'help', 'needed', 'getting', 'reporting', 'engineering', 'tool', 'say', 'access', 'veiw', 'manager', 'report', 'please', 'fix', 'aerp', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['crm', 'help', 'needed', 'getting', 'reporting', 'engineering', 'tool', 'say', 'access', 'veiw', 'manager', 'report', 'please', 'fix', 'aerp', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['crm'], ['help'], ['needed'], ['getting'], ['reporting'], ['engineering'], ['tool'], ['say'], ['access'], ['veiw'], ['manager'], ['report'], ['please'], ['fix'], ['aerp'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 2755 len: <class 'list'> Data: ['skype', 'go', 'responding', 'mode', 'skype', 'go', 'responding', 'mode', 'phone'] processed_text: ['skype', 'go', 'responding', 'mode', 'skype', 'go', 'responding', 'mode', 'phone'] list_processed_text: [['skype'], ['go'], ['responding'], ['mode'], ['skype'], ['go'], ['responding'], ['mode'], ['phone']] k: 2756 len: <class 'list'> Data: ['m', 'crm', 'login', 'issue', 'm', 'crm', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'company', 'network', 'user', 'try', 'login', 'm', 'crm', 'give', 'error'] processed_text: ['m', 'crm', 'login', 'issue', 'm', 'crm', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'company', 'network', 'user', 'try', 'login', 'm', 'crm', 'give', 'error'] list_processed_text: [['m'], ['crm'], ['login'], ['issue'], ['m'], ['crm'], ['login'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['user'], ['company'], ['network'], ['user'], ['try'], ['login'], ['m'], ['crm'], ['give'], ['error']] k: 2757 len: <class 'list'> Data: ['ticket', 'update', 'sev', 'ticket', 'inplant', 'ticket', 'update', 'sev', 'ticket', 'inplant'] processed_text: ['ticket', 'update', 'sev', 'ticket', 'inplant', 'ticket', 'update', 'sev', 'ticket', 'inplant'] list_processed_text: [['ticket'], ['update'], ['sev'], ['ticket'], ['inplant'], ['ticket'], ['update'], ['sev'], ['ticket'], ['inplant']] k: 2758 len: <class 'list'> Data: ['usa', 'company', 'na', 'usa', 'usa', 'shop', 'access', 'sw', 'hard', 'due', 'storm', 'last', 'night', 'bad', 'storm', 'come', 'last', 'night', 'took', 'switch', 'machine', 'network'] processed_text: ['usa', 'company', 'na', 'usa', 'usa', 'shop', 'access', 'sw', 'hard', 'due', 'storm', 'last', 'night', 'bad', 'storm', 'come', 'last', 'night', 'took', 'switch', 'machine', 'network'] list_processed_text: [['usa'], ['company'], ['na'], ['usa'], ['usa'], ['shop'], ['access'], ['sw'], ['hard'], ['due'], ['storm'], ['last'], ['night'], ['bad'], ['storm'], ['come'], ['last'], ['night'], ['took'], ['switch'], ['machine'], ['network']] k: 2759 len: <class 'list'> Data: ['external', 'link', 'working', 'ie', 'external', 'link', 'working', 'ie'] processed_text: ['external', 'link', 'working', 'ie', 'external', 'link', 'working', 'ie'] list_processed_text: [['external'], ['link'], ['working'], ['ie'], ['external'], ['link'], ['working'], ['ie']] k: 2760 len: <class 'list'> Data: ['unable', 'install', 'mobile', 'app', 'iphone', 'unable', 'install', 'mobile', 'app', 'iphone', 'phone'] processed_text: ['unable', 'install', 'mobile', 'app', 'iphone', 'unable', 'install', 'mobile', 'app', 'iphone', 'phone'] list_processed_text: [['unable'], ['install'], ['mobile'], ['app'], ['iphone'], ['unable'], ['install'], ['mobile'], ['app'], ['iphone'], ['phone']] k: 2761 len: <class 'list'> Data: ['engg', 'work', 'bench', 'login', 'issue', 'engg', 'work', 'bench', 'login', 'issue'] processed_text: ['engg', 'work', 'bench', 'login', 'issue', 'engg', 'work', 'bench', 'login', 'issue'] list_processed_text: [['engg'], ['work'], ['bench'], ['login'], ['issue'], ['engg'], ['work'], ['bench'], ['login'], ['issue']] k: 2762 len: <class 'list'> Data: ['please', 'remove', 'quote', 'workflow', 'hello', 'please', 'clear', 'quote', 'workflow', 'quote', 'longer', 'exists', 'showing', 'workflow', 'see', 'attached', 'screen', 'shot'] processed_text: ['please', 'remove', 'quote', 'workflow', 'hello', 'please', 'clear', 'quote', 'workflow', 'quote', 'longer', 'exists', 'showing', 'workflow', 'see', 'attached', 'screen', 'shot'] list_processed_text: [['please'], ['remove'], ['quote'], ['workflow'], ['hello'], ['please'], ['clear'], ['quote'], ['workflow'], ['quote'], ['longer'], ['exists'], ['showing'], ['workflow'], ['see'], ['attached'], ['screen'], ['shot']] k: 2763 len: <class 'list'> Data: ['window', 'account', 'lock', 'issue', 'window', 'account', 'lock', 'issue'] processed_text: ['window', 'account', 'lock', 'issue', 'window', 'account', 'lock', 'issue'] list_processed_text: [['window'], ['account'], ['lock'], ['issue'], ['window'], ['account'], ['lock'], ['issue']] k: 2764 len: <class 'list'> Data: ['issue', 'hana', 'issue', 'hana', 'system', 'vacation', 'week', 'please', 'work', 'brandeerthy', 'lead', 'getting', 'fixed', 'defined', 'report', 'utilized', 'hana', 'bring', 'information', 'working', 'fine', 'seem', 'issue', 'select', 'analysis', 'refresh', 'code', 'grayed', 'used', 'able', 'go', 'hit', 'refresh', 'done', 'tried', 'inserting', 'data', 'source', 'quote', 'performance', 'built', 'get', 'refresh', 'data', 'change', 'looked', 'display', 'none', 'column', 'background', 'filter', 'appearing', 'longer', 'brandeerthy', 'please', 'utilize', 'canada', 'file', 'quote', 'performance', 'canada', 'folder', 'dated', 'rev', 'uacyltoe', 'hxgaycze', 'one', 'call'] processed_text: ['issue', 'hana', 'issue', 'hana', 'system', 'vacation', 'week', 'please', 'work', 'brandeerthy', 'lead', 'getting', 'fixed', 'defined', 'report', 'utilized', 'hana', 'bring', 'information', 'working', 'fine', 'seem', 'issue', 'select', 'analysis', 'refresh', 'code', 'grayed', 'used', 'able', 'go', 'hit', 'refresh', 'done', 'tried', 'inserting', 'data', 'source', 'quote', 'performance', 'built', 'get', 'refresh', 'data', 'change', 'looked', 'display', 'none', 'column', 'background', 'filter', 'appearing', 'longer', 'brandeerthy', 'please', 'utilize', 'canada', 'file', 'quote', 'performance', 'canada', 'folder', 'dated', 'rev', 'uacyltoe', 'hxgaycze', 'one', 'call'] list_processed_text: [['issue'], ['hana'], ['issue'], ['hana'], ['system'], ['vacation'], ['week'], ['please'], ['work'], ['brandeerthy'], ['lead'], ['getting'], ['fixed'], ['defined'], ['report'], ['utilized'], ['hana'], ['bring'], ['information'], ['working'], ['fine'], ['seem'], ['issue'], ['select'], ['analysis'], ['refresh'], ['code'], ['grayed'], ['used'], ['able'], ['go'], ['hit'], ['refresh'], ['done'], ['tried'], ['inserting'], ['data'], ['source'], ['quote'], ['performance'], ['built'], ['get'], ['refresh'], ['data'], ['change'], ['looked'], ['display'], ['none'], ['column'], ['background'], ['filter'], ['appearing'], ['longer'], ['brandeerthy'], ['please'], ['utilize'], ['canada'], ['file'], ['quote'], ['performance'], ['canada'], ['folder'], ['dated'], ['rev'], ['uacyltoe'], ['hxgaycze'], ['one'], ['call']] k: 2765 len: <class 'list'> Data: ['distributor', 'tool', 'issue', 'sale', 'area', 'please', 'aware', 'sale', 'rep', 'customer', 'able', 'ot', 'request', 'quote', 'distributor', 'tool', 'sale', 'area'] processed_text: ['distributor', 'tool', 'issue', 'sale', 'area', 'please', 'aware', 'sale', 'rep', 'customer', 'able', 'ot', 'request', 'quote', 'distributor', 'tool', 'sale', 'area'] list_processed_text: [['distributor'], ['tool'], ['issue'], ['sale'], ['area'], ['please'], ['aware'], ['sale'], ['rep'], ['customer'], ['able'], ['ot'], ['request'], ['quote'], ['distributor'], ['tool'], ['sale'], ['area']] k: 2766 len: <class 'list'> Data: ['printer', 'issue', 'hello', 'printer', 't', 'purchasing', 'dept', 'sending', 'scan', 'email', 'someone', 'look', 'please'] processed_text: ['printer', 'issue', 'hello', 'printer', 't', 'purchasing', 'dept', 'sending', 'scan', 'email', 'someone', 'look', 'please'] list_processed_text: [['printer'], ['issue'], ['hello'], ['printer'], ['t'], ['purchasing'], ['dept'], ['sending'], ['scan'], ['email'], ['someone'], ['look'], ['please']] k: 2767 len: <class 'list'> Data: ['add', 'ed', 'sheehy', 'purchasing', 'ad', 'xszoedmc', 'gmhkdsnw', 'please', 'add', 'oabdfcnk', 'xeuhkoqa', 'shyheehew', 'purchasingupstreamsso', 'active', 'directory', 'samaccountname', 'ad', 'lowercase'] processed_text: ['add', 'ed', 'sheehy', 'purchasing', 'ad', 'xszoedmc', 'gmhkdsnw', 'please', 'add', 'oabdfcnk', 'xeuhkoqa', 'shyheehew', 'purchasingupstreamsso', 'active', 'directory', 'samaccountname', 'ad', 'lowercase'] list_processed_text: [['add'], ['ed'], ['sheehy'], ['purchasing'], ['ad'], ['xszoedmc'], ['gmhkdsnw'], ['please'], ['add'], ['oabdfcnk'], ['xeuhkoqa'], ['shyheehew'], ['purchasingupstreamsso'], ['active'], ['directory'], ['samaccountname'], ['ad'], ['lowercase']] k: 2768 len: <class 'list'> Data: ['swap', 'client', 'e', 'swap', 'client', 'e'] processed_text: ['swap', 'client', 'e', 'swap', 'client', 'e'] list_processed_text: [['swap'], ['client'], ['e'], ['swap'], ['client'], ['e']] k: 2769 len: <class 'list'> Data: ['cannot', 'get', 'lean', 'tracker', 'save', 'lean', 'event', 'lean', 'tracker', 'give', 'error', 'trying', 'save', 'lean', 'event', 'get', 'infopath', 'error'] processed_text: ['cannot', 'get', 'lean', 'tracker', 'save', 'lean', 'event', 'lean', 'tracker', 'give', 'error', 'trying', 'save', 'lean', 'event', 'get', 'infopath', 'error'] list_processed_text: [['cannot'], ['get'], ['lean'], ['tracker'], ['save'], ['lean'], ['event'], ['lean'], ['tracker'], ['give'], ['error'], ['trying'], ['save'], ['lean'], ['event'], ['get'], ['infopath'], ['error']] k: 2770 len: <class 'list'> Data: ['need', 'usa', 'remote', 'access', 'carolutyu', 'magyarics', 'repair', 'prepull', 'system', 'used', 'usa', 'factory', 'need', 'usa', 'remote', 'access', 'carolutyu', 'magyarics', 'repair', 'prepull', 'system', 'part', 'usanet', 'used', 'usa', 'factory', 'carolutyu', 'consultant', 'used', 'past', 'create', 'custom', 'database', 'application', 'support', 'business', 'production', 'floor', 'window', 'id', 'vvmagyc', 'require', 'vpn', 'access', 'also', 'along', 'administrative', 'right', 'repair', 'sql', 'database', 'system', 'hour', 'internal', 'resource', 'usa', 'usa', 'able', 'resolve'] processed_text: ['need', 'usa', 'remote', 'access', 'carolutyu', 'magyarics', 'repair', 'prepull', 'system', 'used', 'usa', 'factory', 'need', 'usa', 'remote', 'access', 'carolutyu', 'magyarics', 'repair', 'prepull', 'system', 'part', 'usanet', 'used', 'usa', 'factory', 'carolutyu', 'consultant', 'used', 'past', 'create', 'custom', 'database', 'application', 'support', 'business', 'production', 'floor', 'window', 'id', 'vvmagyc', 'require', 'vpn', 'access', 'also', 'along', 'administrative', 'right', 'repair', 'sql', 'database', 'system', 'hour', 'internal', 'resource', 'usa', 'usa', 'able', 'resolve'] list_processed_text: [['need'], ['usa'], ['remote'], ['access'], ['carolutyu'], ['magyarics'], ['repair'], ['prepull'], ['system'], ['used'], ['usa'], ['factory'], ['need'], ['usa'], ['remote'], ['access'], ['carolutyu'], ['magyarics'], ['repair'], ['prepull'], ['system'], ['part'], ['usanet'], ['used'], ['usa'], ['factory'], ['carolutyu'], ['consultant'], ['used'], ['past'], ['create'], ['custom'], ['database'], ['application'], ['support'], ['business'], ['production'], ['floor'], ['window'], ['id'], ['vvmagyc'], ['require'], ['vpn'], ['access'], ['also'], ['along'], ['administrative'], ['right'], ['repair'], ['sql'], ['database'], ['system'], ['hour'], ['internal'], ['resource'], ['usa'], ['usa'], ['able'], ['resolve']] k: 2771 len: <class 'list'> Data: ['error', 'message', 'hi', 'please', 'help', 'create', 'dn', 'po'] processed_text: ['error', 'message', 'hi', 'please', 'help', 'create', 'dn', 'po'] list_processed_text: [['error'], ['message'], ['hi'], ['please'], ['help'], ['create'], ['dn'], ['po']] k: 2772 len: <class 'list'> Data: ['crm', 'installation', 'crm', 'installation'] processed_text: ['crm', 'installation', 'crm', 'installation'] list_processed_text: [['crm'], ['installation'], ['crm'], ['installation']] k: 2773 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2774 len: <class 'list'> Data: ['power', 'outage', 'query', 'power', 'outage', 'query'] processed_text: ['power', 'outage', 'query', 'power', 'outage', 'query'] list_processed_text: [['power'], ['outage'], ['query'], ['power'], ['outage'], ['query']] k: 2775 len: <class 'list'> Data: ['reset', 'password', 'hzmxwdrs', 'tcbjyqps', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'hzmxwdrs', 'tcbjyqps', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['hzmxwdrs'], ['tcbjyqps'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2776 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 2777 len: <class 'list'> Data: ['window', 'password', 'reset', 'request', 'window', 'password', 'reset', 'request'] processed_text: ['window', 'password', 'reset', 'request', 'window', 'password', 'reset', 'request'] list_processed_text: [['window'], ['password'], ['reset'], ['request'], ['window'], ['password'], ['reset'], ['request']] k: 2778 len: <class 'list'> Data: ['need', 'check', 'payslip', 'need', 'check', 'payslip'] processed_text: ['need', 'check', 'payslip', 'need', 'check', 'payslip'] list_processed_text: [['need'], ['check'], ['payslip'], ['need'], ['check'], ['payslip']] k: 2779 len: <class 'list'> Data: ['configure', 'crm', 'outlook', 'configure', 'crm', 'outlook'] processed_text: ['configure', 'crm', 'outlook', 'configure', 'crm', 'outlook'] list_processed_text: [['configure'], ['crm'], ['outlook'], ['configure'], ['crm'], ['outlook']] k: 2780 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'password', 'reset', 'erp', 'sid', 'account', 'locked', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'locked', 'password', 'reset', 'erp', 'sid', 'account', 'locked', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['locked'], ['password'], ['reset']] k: 2781 len: <class 'list'> Data: ['infopath', 'installation', 'name', 'nmpworvu', 'upgtrvnj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'issue', 'saving', 'lean', 'project', 'infopath'] processed_text: ['infopath', 'installation', 'name', 'nmpworvu', 'upgtrvnj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'issue', 'saving', 'lean', 'project', 'infopath'] list_processed_text: [['infopath'], ['installation'], ['name'], ['nmpworvu'], ['upgtrvnj'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['issue'], ['saving'], ['lean'], ['project'], ['infopath']] k: 2782 len: <class 'list'> Data: ['skype', 'problem', 'hi', 'manjgtiry', 'got', 'skype', 'problem', 'big', 'last', 'time', 'every', 'morning', 'start', 'computer', 'add', 'skype', 'manually', 'add', 'in', 'could', 'please', 'fix', 'issue', 'aerp', 'vacation'] processed_text: ['skype', 'problem', 'hi', 'manjgtiry', 'got', 'skype', 'problem', 'big', 'last', 'time', 'every', 'morning', 'start', 'computer', 'add', 'skype', 'manually', 'add', 'in', 'could', 'please', 'fix', 'issue', 'aerp', 'vacation'] list_processed_text: [['skype'], ['problem'], ['hi'], ['manjgtiry'], ['got'], ['skype'], ['problem'], ['big'], ['last'], ['time'], ['every'], ['morning'], ['start'], ['computer'], ['add'], ['skype'], ['manually'], ['add'], ['in'], ['could'], ['please'], ['fix'], ['issue'], ['aerp'], ['vacation']] k: 2783 len: <class 'list'> Data: ['back', 'tape', 'ejecting', 'unable', 'switch', 'tape', 'daily', 'back', 'ups', 'able', 'switch', 'tape', 'week'] processed_text: ['back', 'tape', 'ejecting', 'unable', 'switch', 'tape', 'daily', 'back', 'ups', 'able', 'switch', 'tape', 'week'] list_processed_text: [['back'], ['tape'], ['ejecting'], ['unable'], ['switch'], ['tape'], ['daily'], ['back'], ['ups'], ['able'], ['switch'], ['tape'], ['week']] k: 2784 len: <class 'list'> Data: ['external', 'user', 'called', 'help', 'calendar', 'issue', 'external', 'user', 'called', 'help', 'calendar', 'issue'] processed_text: ['external', 'user', 'called', 'help', 'calendar', 'issue', 'external', 'user', 'called', 'help', 'calendar', 'issue'] list_processed_text: [['external'], ['user'], ['called'], ['help'], ['calendar'], ['issue'], ['external'], ['user'], ['called'], ['help'], ['calendar'], ['issue']] k: 2785 len: <class 'list'> Data: ['please', 'remove', 'email', 'mailing', 'list', 'please', 'remove', 'email', 'mailing', 'list', 'cesgrtar', 'abgrtyreu', 'pm', 'nwfodmhc', 'exurcwkm', 'ranjhruy', 'ergebnis', 'evakuierungs', 'bung', 'hello', 'please', 'remove', 'email', 'mailing', 'list'] processed_text: ['please', 'remove', 'email', 'mailing', 'list', 'please', 'remove', 'email', 'mailing', 'list', 'cesgrtar', 'abgrtyreu', 'pm', 'nwfodmhc', 'exurcwkm', 'ranjhruy', 'ergebnis', 'evakuierungs', 'bung', 'hello', 'please', 'remove', 'email', 'mailing', 'list'] list_processed_text: [['please'], ['remove'], ['email'], ['mailing'], ['list'], ['please'], ['remove'], ['email'], ['mailing'], ['list'], ['cesgrtar'], ['abgrtyreu'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['ranjhruy'], ['ergebnis'], ['evakuierungs'], ['bung'], ['hello'], ['please'], ['remove'], ['email'], ['mailing'], ['list']] k: 2786 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2787 len: <class 'list'> Data: ['spam', 'mail', 'notification', 'spam', 'mail', 'notification'] processed_text: ['spam', 'mail', 'notification', 'spam', 'mail', 'notification'] list_processed_text: [['spam'], ['mail'], ['notification'], ['spam'], ['mail'], ['notification']] k: 2788 len: <class 'list'> Data: ['urgent', 'help', 'required', 'crm', 'mobile', 'app', 'issue', 'sorry', 'connect', 'server', 'trusted', 'ssl', 'certificate', 'contact', 'crm', 'administrator', 'assistance'] processed_text: ['urgent', 'help', 'required', 'crm', 'mobile', 'app', 'issue', 'sorry', 'connect', 'server', 'trusted', 'ssl', 'certificate', 'contact', 'crm', 'administrator', 'assistance'] list_processed_text: [['urgent'], ['help'], ['required'], ['crm'], ['mobile'], ['app'], ['issue'], ['sorry'], ['connect'], ['server'], ['trusted'], ['ssl'], ['certificate'], ['contact'], ['crm'], ['administrator'], ['assistance']] k: 2789 len: <class 'list'> Data: ['phone', 'number', 'defective', 'sinterei', 'germany', 'please', 'repair', 'phone', 'number', 'defective', 'sinterei', 'germany', 'please', 'repair'] processed_text: ['phone', 'number', 'defective', 'sinterei', 'germany', 'please', 'repair', 'phone', 'number', 'defective', 'sinterei', 'germany', 'please', 'repair'] list_processed_text: [['phone'], ['number'], ['defective'], ['sinterei'], ['germany'], ['please'], ['repair'], ['phone'], ['number'], ['defective'], ['sinterei'], ['germany'], ['please'], ['repair']] k: 2790 len: <class 'list'> Data: ['weekly', 'reboot', 'reminder', 'backup', 'tool', 'server', 'hostname', 'hostname', 'hostname', 'hostname', 'mail', 'datacenter', 'weekly', 'reboot', 'reminder', 'backup', 'tool', 'server', 'datacenter', 'please', 'perform', 'weekly', 'reboot', 'azure', 'backup', 'server', 'clhqsm', 'backup', 'tool', 'management', 'server', 'hostname', 'backup', 'tool', 'proxy', 'server', 'hostname', 'hostname', 'hostname', 'following', 'completion', 'daily', 'backup', 'tool', 'backup', 'processing', 'raise', 'job', 'scheduler', 'batch', 'fence', 'hostname', 'ensure', 'backup', 'job', 'running', 'backup', 'tool', 'job', 'scheduler', 'hostname', 'logon', 'backup', 'tool', 'management', 'server', 'hostname', 'perform', 'restart', 'hostname', 'available', 'reboot', 'proxy', 'server', 'boot', 'travel', 'toolrently', 'lower', 'job', 'scheduler', 'batch', 'fence', 'hostname', 'following', 'reboots', 'reboot', 'clhqsm', 'anytime', 'also', 'dell', 'dr', 'storage', 'server', 'rebooted', 'following', 'backup', 'tool', 'server', 'reboots', 'server', 'rebooted', 'administrator', 'tim', 'following', 'completion', 'backup', 'tool', 'reboots'] processed_text: ['weekly', 'reboot', 'reminder', 'backup', 'tool', 'server', 'hostname', 'hostname', 'hostname', 'hostname', 'mail', 'datacenter', 'weekly', 'reboot', 'reminder', 'backup', 'tool', 'server', 'datacenter', 'please', 'perform', 'weekly', 'reboot', 'azure', 'backup', 'server', 'clhqsm', 'backup', 'tool', 'management', 'server', 'hostname', 'backup', 'tool', 'proxy', 'server', 'hostname', 'hostname', 'hostname', 'following', 'completion', 'daily', 'backup', 'tool', 'backup', 'processing', 'raise', 'job', 'scheduler', 'batch', 'fence', 'hostname', 'ensure', 'backup', 'job', 'running', 'backup', 'tool', 'job', 'scheduler', 'hostname', 'logon', 'backup', 'tool', 'management', 'server', 'hostname', 'perform', 'restart', 'hostname', 'available', 'reboot', 'proxy', 'server', 'boot', 'travel', 'toolrently', 'lower', 'job', 'scheduler', 'batch', 'fence', 'hostname', 'following', 'reboots', 'reboot', 'clhqsm', 'anytime', 'also', 'dell', 'dr', 'storage', 'server', 'rebooted', 'following', 'backup', 'tool', 'server', 'reboots', 'server', 'rebooted', 'administrator', 'tim', 'following', 'completion', 'backup', 'tool', 'reboots'] list_processed_text: [['weekly'], ['reboot'], ['reminder'], ['backup'], ['tool'], ['server'], ['hostname'], ['hostname'], ['hostname'], ['hostname'], ['mail'], ['datacenter'], ['weekly'], ['reboot'], ['reminder'], ['backup'], ['tool'], ['server'], ['datacenter'], ['please'], ['perform'], ['weekly'], ['reboot'], ['azure'], ['backup'], ['server'], ['clhqsm'], ['backup'], ['tool'], ['management'], ['server'], ['hostname'], ['backup'], ['tool'], ['proxy'], ['server'], ['hostname'], ['hostname'], ['hostname'], ['following'], ['completion'], ['daily'], ['backup'], ['tool'], ['backup'], ['processing'], ['raise'], ['job'], ['scheduler'], ['batch'], ['fence'], ['hostname'], ['ensure'], ['backup'], ['job'], ['running'], ['backup'], ['tool'], ['job'], ['scheduler'], ['hostname'], ['logon'], ['backup'], ['tool'], ['management'], ['server'], ['hostname'], ['perform'], ['restart'], ['hostname'], ['available'], ['reboot'], ['proxy'], ['server'], ['boot'], ['travel'], ['toolrently'], ['lower'], ['job'], ['scheduler'], ['batch'], ['fence'], ['hostname'], ['following'], ['reboots'], ['reboot'], ['clhqsm'], ['anytime'], ['also'], ['dell'], ['dr'], ['storage'], ['server'], ['rebooted'], ['following'], ['backup'], ['tool'], ['server'], ['reboots'], ['server'], ['rebooted'], ['administrator'], ['tim'], ['following'], ['completion'], ['backup'], ['tool'], ['reboots']] k: 2791 len: <class 'list'> Data: ['probleme', 'mit', 'vpn', 'wxstfouy', 'isjzcotm', 'probleme', 'mit', 'vpn', 'wxstfouy', 'isjzcotm'] processed_text: ['probleme', 'mit', 'vpn', 'wxstfouy', 'isjzcotm', 'probleme', 'mit', 'vpn', 'wxstfouy', 'isjzcotm'] list_processed_text: [['probleme'], ['mit'], ['vpn'], ['wxstfouy'], ['isjzcotm'], ['probleme'], ['mit'], ['vpn'], ['wxstfouy'], ['isjzcotm']] k: 2792 len: <class 'list'> Data: ['crm', 'tab', 'hello', 'crm', 'tab', 'outlook', 'page', 'told', 'need', 'fix', 'best'] processed_text: ['crm', 'tab', 'hello', 'crm', 'tab', 'outlook', 'page', 'told', 'need', 'fix', 'best'] list_processed_text: [['crm'], ['tab'], ['hello'], ['crm'], ['tab'], ['outlook'], ['page'], ['told'], ['need'], ['fix'], ['best']] k: 2793 len: <class 'list'> Data: ['stack', 'guard', 'error', 'stack', 'guard', 'error'] processed_text: ['stack', 'guard', 'error', 'stack', 'guard', 'error'] list_processed_text: [['stack'], ['guard'], ['error'], ['stack'], ['guard'], ['error']] k: 2794 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'outlook', 'crm', 'ribbon', 'please', 'call'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'outlook', 'crm', 'ribbon', 'please', 'call'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['outlook'], ['crm'], ['ribbon'], ['please'], ['call']] k: 2795 len: <class 'list'> Data: ['discount', 'form', 'issue', 'fnqelwpk', 'ahrskvln', 'pm', 'trxsychl', 'xamcuong', 'nwfodmhc', 'exurcwkm', 'maliowbg', 'cltnwazh', 'nmyzehow', 'gnlcripo', 'amar', 'ayuda', 'con', 'conseciones', 'team', 'please', 'help', 'check', 'marfhtyios', 'collaboration', 'platform', 'setting', 'getting', 'errror', 'discount', 'tool', 'already', 'talked', 'rmegscqu', 'juksmtho', 'issue', 'tool'] processed_text: ['discount', 'form', 'issue', 'fnqelwpk', 'ahrskvln', 'pm', 'trxsychl', 'xamcuong', 'nwfodmhc', 'exurcwkm', 'maliowbg', 'cltnwazh', 'nmyzehow', 'gnlcripo', 'amar', 'ayuda', 'con', 'conseciones', 'team', 'please', 'help', 'check', 'marfhtyios', 'collaboration', 'platform', 'setting', 'getting', 'errror', 'discount', 'tool', 'already', 'talked', 'rmegscqu', 'juksmtho', 'issue', 'tool'] list_processed_text: [['discount'], ['form'], ['issue'], ['fnqelwpk'], ['ahrskvln'], ['pm'], ['trxsychl'], ['xamcuong'], ['nwfodmhc'], ['exurcwkm'], ['maliowbg'], ['cltnwazh'], ['nmyzehow'], ['gnlcripo'], ['amar'], ['ayuda'], ['con'], ['conseciones'], ['team'], ['please'], ['help'], ['check'], ['marfhtyios'], ['collaboration'], ['platform'], ['setting'], ['getting'], ['errror'], ['discount'], ['tool'], ['already'], ['talked'], ['rmegscqu'], ['juksmtho'], ['issue'], ['tool']] k: 2796 len: <class 'list'> Data: ['email', 'delegation', 'hatryu', 'bau', 'called', 'issue', 'needed', 'access', 'fuyidkbv', 'koximpja', 'email', 'fuyidkbv', 'koximpja', 'already', 'left', 'company', 'month', 'hatryu', 'manager', 'need', 'fuyidkbv', 'koximpja', 'mailbox', 'delegated', 'important', 'purpose', 'email', 'related', 'customer', 'please', 'needful', 'earliest', 'contact'] processed_text: ['email', 'delegation', 'hatryu', 'bau', 'called', 'issue', 'needed', 'access', 'fuyidkbv', 'koximpja', 'email', 'fuyidkbv', 'koximpja', 'already', 'left', 'company', 'month', 'hatryu', 'manager', 'need', 'fuyidkbv', 'koximpja', 'mailbox', 'delegated', 'important', 'purpose', 'email', 'related', 'customer', 'please', 'needful', 'earliest', 'contact'] list_processed_text: [['email'], ['delegation'], ['hatryu'], ['bau'], ['called'], ['issue'], ['needed'], ['access'], ['fuyidkbv'], ['koximpja'], ['email'], ['fuyidkbv'], ['koximpja'], ['already'], ['left'], ['company'], ['month'], ['hatryu'], ['manager'], ['need'], ['fuyidkbv'], ['koximpja'], ['mailbox'], ['delegated'], ['important'], ['purpose'], ['email'], ['related'], ['customer'], ['please'], ['needful'], ['earliest'], ['contact']] k: 2797 len: <class 'list'> Data: ['computer', 'volume', 'getting', 'volume', 'computer', 'please', 'help', 'fix', 'need', 'volume', 'skype', 'best'] processed_text: ['computer', 'volume', 'getting', 'volume', 'computer', 'please', 'help', 'fix', 'need', 'volume', 'skype', 'best'] list_processed_text: [['computer'], ['volume'], ['getting'], ['volume'], ['computer'], ['please'], ['help'], ['fix'], ['need'], ['volume'], ['skype'], ['best']] k: 2798 len: <class 'list'> Data: ['audio', 'working', 'audio', 'working'] processed_text: ['audio', 'working', 'audio', 'working'] list_processed_text: [['audio'], ['working'], ['audio'], ['working']] k: 2799 len: <class 'list'> Data: ['chrthryui', 'stavenheim', 'unbale', 'login', 'te', 'via', 'citrix', 'user', 'name', 'ccftv', 'oinqckds', 'qieswrfu', 'pm', 'nwfodmhc', 'exurcwkm', 'chrthryui', 'stavenheim', 'trurthyuft', 'aw', 'te', 'account', 'hello', 'someone', 'check', 'whether', 'chrthryui', 'stavenheim', 'login', 'account', 'ccftv', 'via', 'citrix', 'access', 'access', 'please', 'inform', 'issue', 'fixed', 'generate', 'turnover', 'satisfy', 'customer', 'oinqckds', 'qieswrfu', 'manager', 'te', 'holemaking', 'design', 'automation', 'von', 'chrthryui', 'stavenheim', 'mail', 'gesendet', 'donnerstag', 'oinqckds', 'qieswrfu', 'betreff', 'te', 'account', 'hello', 'robhyertyj', 'unable', 'login', 'te', 'week', 'either', 'password', 'och', 'user', 'name', 'wrong', 'user', 'name', 'ccftv', 'could', 'please', 'help', 'med', 'nlig', 'lsning', 'best'] processed_text: ['chrthryui', 'stavenheim', 'unbale', 'login', 'te', 'via', 'citrix', 'user', 'name', 'ccftv', 'oinqckds', 'qieswrfu', 'pm', 'nwfodmhc', 'exurcwkm', 'chrthryui', 'stavenheim', 'trurthyuft', 'aw', 'te', 'account', 'hello', 'someone', 'check', 'whether', 'chrthryui', 'stavenheim', 'login', 'account', 'ccftv', 'via', 'citrix', 'access', 'access', 'please', 'inform', 'issue', 'fixed', 'generate', 'turnover', 'satisfy', 'customer', 'oinqckds', 'qieswrfu', 'manager', 'te', 'holemaking', 'design', 'automation', 'von', 'chrthryui', 'stavenheim', 'mail', 'gesendet', 'donnerstag', 'oinqckds', 'qieswrfu', 'betreff', 'te', 'account', 'hello', 'robhyertyj', 'unable', 'login', 'te', 'week', 'either', 'password', 'och', 'user', 'name', 'wrong', 'user', 'name', 'ccftv', 'could', 'please', 'help', 'med', 'nlig', 'lsning', 'best'] list_processed_text: [['chrthryui'], ['stavenheim'], ['unbale'], ['login'], ['te'], ['via'], ['citrix'], ['user'], ['name'], ['ccftv'], ['oinqckds'], ['qieswrfu'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['chrthryui'], ['stavenheim'], ['trurthyuft'], ['aw'], ['te'], ['account'], ['hello'], ['someone'], ['check'], ['whether'], ['chrthryui'], ['stavenheim'], ['login'], ['account'], ['ccftv'], ['via'], ['citrix'], ['access'], ['access'], ['please'], ['inform'], ['issue'], ['fixed'], ['generate'], ['turnover'], ['satisfy'], ['customer'], ['oinqckds'], ['qieswrfu'], ['manager'], ['te'], ['holemaking'], ['design'], ['automation'], ['von'], ['chrthryui'], ['stavenheim'], ['mail'], ['gesendet'], ['donnerstag'], ['oinqckds'], ['qieswrfu'], ['betreff'], ['te'], ['account'], ['hello'], ['robhyertyj'], ['unable'], ['login'], ['te'], ['week'], ['either'], ['password'], ['och'], ['user'], ['name'], ['wrong'], ['user'], ['name'], ['ccftv'], ['could'], ['please'], ['help'], ['med'], ['nlig'], ['lsning'], ['best']] k: 2800 len: <class 'list'> Data: ['brxaqlwn', 'auzroqes', 'purchasing', 'check', 'status', 'report', 'seen', 'hello', 'team', 'please', 'create', 'credential', 'erp', 'sid', 'maintain', 'safe', 'area', 'copy', 'access', 'like', 'kantthyhn'] processed_text: ['brxaqlwn', 'auzroqes', 'purchasing', 'check', 'status', 'report', 'seen', 'hello', 'team', 'please', 'create', 'credential', 'erp', 'sid', 'maintain', 'safe', 'area', 'copy', 'access', 'like', 'kantthyhn'] list_processed_text: [['brxaqlwn'], ['auzroqes'], ['purchasing'], ['check'], ['status'], ['report'], ['seen'], ['hello'], ['team'], ['please'], ['create'], ['credential'], ['erp'], ['sid'], ['maintain'], ['safe'], ['area'], ['copy'], ['access'], ['like'], ['kantthyhn']] k: 2801 len: <class 'list'> Data: ['engineering', 'tool', 'error', 'machining', 'cloud', 'stopped', 'working', 'engineering', 'tool', 'error', 'machining', 'cloud', 'stopped', 'working'] processed_text: ['engineering', 'tool', 'error', 'machining', 'cloud', 'stopped', 'working', 'engineering', 'tool', 'error', 'machining', 'cloud', 'stopped', 'working'] list_processed_text: [['engineering'], ['tool'], ['error'], ['machining'], ['cloud'], ['stopped'], ['working'], ['engineering'], ['tool'], ['error'], ['machining'], ['cloud'], ['stopped'], ['working']] k: 2802 len: <class 'list'> Data: ['general', 'issue', 'general', 'issue'] processed_text: ['general', 'issue', 'general', 'issue'] list_processed_text: [['general'], ['issue'], ['general'], ['issue']] k: 2803 len: <class 'list'> Data: ['crm', 'app', 'greyed', 'crm', 'app', 'greyed'] processed_text: ['crm', 'app', 'greyed', 'crm', 'app', 'greyed'] list_processed_text: [['crm'], ['app'], ['greyed'], ['crm'], ['app'], ['greyed']] k: 2804 len: <class 'list'> Data: ['uninstallation', 'adwares', 'computer', 'uninstallation', 'adwares', 'computer'] processed_text: ['uninstallation', 'adwares', 'computer', 'uninstallation', 'adwares', 'computer'] list_processed_text: [['uninstallation'], ['adwares'], ['computer'], ['uninstallation'], ['adwares'], ['computer']] k: 2805 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] processed_text: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['gso'], ['blank'], ['call'], ['loud'], ['noise'], ['gso']] k: 2806 len: <class 'list'> Data: ['problem', 'company', 'center', 'quick', 'quote', 'hi', 'trying', 'enter', 'quote', 'distributor', 'company', 'center', 'filled', 'information', 'clicked', 'quick', 'quote', 'nothing', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'company', 'center', 'quick', 'quote', 'hi', 'trying', 'enter', 'quote', 'distributor', 'company', 'center', 'filled', 'information', 'clicked', 'quick', 'quote', 'nothing', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['company'], ['center'], ['quick'], ['quote'], ['hi'], ['trying'], ['enter'], ['quote'], ['distributor'], ['company'], ['center'], ['filled'], ['information'], ['clicked'], ['quick'], ['quote'], ['nothing'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 2807 len: <class 'list'> Data: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] processed_text: ['skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error'] list_processed_text: [['skype'], ['issue'], ['personal'], ['certificate'], ['error'], ['skype'], ['issue'], ['personal'], ['certificate'], ['error']] k: 2808 len: <class 'list'> Data: ['company', 'center', 'password', 'change', 'setting', 'user', 'company', 'center', 'run', 'problem', 'password', 'set', 'work', 'need', 'reset', 'please', 'get', 'back', 'soon', 'possible', 'need', 'get', 'user', 'running', 'system'] processed_text: ['company', 'center', 'password', 'change', 'setting', 'user', 'company', 'center', 'run', 'problem', 'password', 'set', 'work', 'need', 'reset', 'please', 'get', 'back', 'soon', 'possible', 'need', 'get', 'user', 'running', 'system'] list_processed_text: [['company'], ['center'], ['password'], ['change'], ['setting'], ['user'], ['company'], ['center'], ['run'], ['problem'], ['password'], ['set'], ['work'], ['need'], ['reset'], ['please'], ['get'], ['back'], ['soon'], ['possible'], ['need'], ['get'], ['user'], ['running'], ['system']] k: 2809 len: <class 'list'> Data: ['eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp', 'confirmation', 'needing', 'deleted', 'since', 'error', 'identifies', 'issue', 'identified', 'eu', 'tool', 'support', 'longer', 'exists', 'forward', 'screen', 'capture', 'image', 'assigned', 'agent', 'better', 'explain', 'error', 'alrthyu'] processed_text: ['eu', 'tool', 'crash', 'confirmation', 'deleted', 'able', 'remove', 'scrap', 'confirmation', 'rectified', 'erp', 'confirmation', 'needing', 'deleted', 'since', 'error', 'identifies', 'issue', 'identified', 'eu', 'tool', 'support', 'longer', 'exists', 'forward', 'screen', 'capture', 'image', 'assigned', 'agent', 'better', 'explain', 'error', 'alrthyu'] list_processed_text: [['eu'], ['tool'], ['crash'], ['confirmation'], ['deleted'], ['able'], ['remove'], ['scrap'], ['confirmation'], ['rectified'], ['erp'], ['confirmation'], ['needing'], ['deleted'], ['since'], ['error'], ['identifies'], ['issue'], ['identified'], ['eu'], ['tool'], ['support'], ['longer'], ['exists'], ['forward'], ['screen'], ['capture'], ['image'], ['assigned'], ['agent'], ['better'], ['explain'], ['error'], ['alrthyu']] k: 2810 len: <class 'list'> Data: ['network', 'issue', 'hello', 'pc', 'eagwsf', 'irrecular', 'network', 'issue', 'sometimes', 'connection', 'network', 'possible', 'restart', 'work', 'case', 'hardware', 'reach', 'checked', 'disconnection', 'lax', 'connection'] processed_text: ['network', 'issue', 'hello', 'pc', 'eagwsf', 'irrecular', 'network', 'issue', 'sometimes', 'connection', 'network', 'possible', 'restart', 'work', 'case', 'hardware', 'reach', 'checked', 'disconnection', 'lax', 'connection'] list_processed_text: [['network'], ['issue'], ['hello'], ['pc'], ['eagwsf'], ['irrecular'], ['network'], ['issue'], ['sometimes'], ['connection'], ['network'], ['possible'], ['restart'], ['work'], ['case'], ['hardware'], ['reach'], ['checked'], ['disconnection'], ['lax'], ['connection']] k: 2811 len: <class 'list'> Data: ['account', 'lock', 'issue', 'since', 'last', 'two', 'day', 'account', 'lock', 'issue', 'since', 'last', 'two', 'day'] processed_text: ['account', 'lock', 'issue', 'since', 'last', 'two', 'day', 'account', 'lock', 'issue', 'since', 'last', 'two', 'day'] list_processed_text: [['account'], ['lock'], ['issue'], ['since'], ['last'], ['two'], ['day'], ['account'], ['lock'], ['issue'], ['since'], ['last'], ['two'], ['day']] k: 2812 len: <class 'list'> Data: ['mqjdyizg', 'amhywoqg', 'issue', 'purchasing', 'access', 'please', 'escalate', 'issue', 'since', 'mqjdyizg', 'amhywoqg', 'required', 'approve', 'sale', 'contract', 'purchasing', 'mqjdyizg', 'amhywoqg', 'issue', 'accessing', 'purchasing', 'please', 'review', 'bill', 'ad', 'samacocuntname', 'ad', 'contact', 'bihrtyull', 'thadhylman', 'resolve'] processed_text: ['mqjdyizg', 'amhywoqg', 'issue', 'purchasing', 'access', 'please', 'escalate', 'issue', 'since', 'mqjdyizg', 'amhywoqg', 'required', 'approve', 'sale', 'contract', 'purchasing', 'mqjdyizg', 'amhywoqg', 'issue', 'accessing', 'purchasing', 'please', 'review', 'bill', 'ad', 'samacocuntname', 'ad', 'contact', 'bihrtyull', 'thadhylman', 'resolve'] list_processed_text: [['mqjdyizg'], ['amhywoqg'], ['issue'], ['purchasing'], ['access'], ['please'], ['escalate'], ['issue'], ['since'], ['mqjdyizg'], ['amhywoqg'], ['required'], ['approve'], ['sale'], ['contract'], ['purchasing'], ['mqjdyizg'], ['amhywoqg'], ['issue'], ['accessing'], ['purchasing'], ['please'], ['review'], ['bill'], ['ad'], ['samacocuntname'], ['ad'], ['contact'], ['bihrtyull'], ['thadhylman'], ['resolve']] k: 2813 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2814 len: <class 'list'> Data: ['delivery', 'creation', 'issue', 'purchase', 'order', 'number', 'delivery', 'creation', 'issue'] processed_text: ['delivery', 'creation', 'issue', 'purchase', 'order', 'number', 'delivery', 'creation', 'issue'] list_processed_text: [['delivery'], ['creation'], ['issue'], ['purchase'], ['order'], ['number'], ['delivery'], ['creation'], ['issue']] k: 2815 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2816 len: <class 'list'> Data: ['xszoedmc', 'gmhkdsnw', 'skype', 'contract', 'library', 'access', 'janhetgdyu', 'fox', 'chatgrylouy', 'xszoedmc', 'gmhkdsnw', 'skype', 'access', 'collaboration', 'platform', 'legal', 'elengineering', 'toolonic', 'contract', 'management', 'system', 'libarary', 'contract', 'archive', 'industrial', 'folder', 'janhetgdyu', 'fox', 'chatgrylouy', 'please', 'skype', 'janhetgdyu', 'work'] processed_text: ['xszoedmc', 'gmhkdsnw', 'skype', 'contract', 'library', 'access', 'janhetgdyu', 'fox', 'chatgrylouy', 'xszoedmc', 'gmhkdsnw', 'skype', 'access', 'collaboration', 'platform', 'legal', 'elengineering', 'toolonic', 'contract', 'management', 'system', 'libarary', 'contract', 'archive', 'industrial', 'folder', 'janhetgdyu', 'fox', 'chatgrylouy', 'please', 'skype', 'janhetgdyu', 'work'] list_processed_text: [['xszoedmc'], ['gmhkdsnw'], ['skype'], ['contract'], ['library'], ['access'], ['janhetgdyu'], ['fox'], ['chatgrylouy'], ['xszoedmc'], ['gmhkdsnw'], ['skype'], ['access'], ['collaboration'], ['platform'], ['legal'], ['elengineering'], ['toolonic'], ['contract'], ['management'], ['system'], ['libarary'], ['contract'], ['archive'], ['industrial'], ['folder'], ['janhetgdyu'], ['fox'], ['chatgrylouy'], ['please'], ['skype'], ['janhetgdyu'], ['work']] k: 2817 len: <class 'list'> Data: ['deduce', 'tracker', 'able', 'add', 'new', 'event', 'need', 'help', 'best'] processed_text: ['deduce', 'tracker', 'able', 'add', 'new', 'event', 'need', 'help', 'best'] list_processed_text: [['deduce'], ['tracker'], ['able'], ['add'], ['new'], ['event'], ['need'], ['help'], ['best']] k: 2818 len: <class 'list'> Data: ['spl', 'gl', 'indicator', 'missing', 'customer', 'open', 'item', 'feed', 'spl', 'gl', 'indicator', 'bill', 'exchange', 'payt', 'request', 'missing', 'customer', 'open', 'item', 'feed'] processed_text: ['spl', 'gl', 'indicator', 'missing', 'customer', 'open', 'item', 'feed', 'spl', 'gl', 'indicator', 'bill', 'exchange', 'payt', 'request', 'missing', 'customer', 'open', 'item', 'feed'] list_processed_text: [['spl'], ['gl'], ['indicator'], ['missing'], ['customer'], ['open'], ['item'], ['feed'], ['spl'], ['gl'], ['indicator'], ['bill'], ['exchange'], ['payt'], ['request'], ['missing'], ['customer'], ['open'], ['item'], ['feed']] k: 2819 len: <class 'list'> Data: ['ordnerfreigabe', 'r', 'kvp', 'ordnerfreigabe', 'r', 'kvp'] processed_text: ['ordnerfreigabe', 'r', 'kvp', 'ordnerfreigabe', 'r', 'kvp'] list_processed_text: [['ordnerfreigabe'], ['r'], ['kvp'], ['ordnerfreigabe'], ['r'], ['kvp']] k: 2820 len: <class 'list'> Data: ['hsh', 'hi', 'mr', 'hatryupsfshytd', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'emp', 'name', 'userid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] processed_text: ['hsh', 'hi', 'mr', 'hatryupsfshytd', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'emp', 'name', 'userid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] list_processed_text: [['hsh'], ['hi'], ['mr'], ['hatryupsfshytd'], ['unable'], ['login'], ['es'], ['portal'], ['please'], ['reset'], ['password'], ['emp'], ['name'], ['userid'], ['manager'], ['aqihfoly'], ['xsrkthvf'], ['hsh'], ['panghyiraj'], ['shthuihog'], ['fyi']] k: 2821 len: <class 'list'> Data: ['aidw', 'need', 'format', 'reinstall', 'aidw', 'need', 'format', 'reinstall'] processed_text: ['aidw', 'need', 'format', 'reinstall', 'aidw', 'need', 'format', 'reinstall'] list_processed_text: [['aidw'], ['need'], ['format'], ['reinstall'], ['aidw'], ['need'], ['format'], ['reinstall']] k: 2822 len: <class 'list'> Data: ['reinstall', 'tool', 'und', 'hardcopy', 'acqpinyd', 'ecygimqd', 'reinstall', 'tool', 'und', 'hardcopy', 'acqpinyd', 'ecygimqd'] processed_text: ['reinstall', 'tool', 'und', 'hardcopy', 'acqpinyd', 'ecygimqd', 'reinstall', 'tool', 'und', 'hardcopy', 'acqpinyd', 'ecygimqd'] list_processed_text: [['reinstall'], ['tool'], ['und'], ['hardcopy'], ['acqpinyd'], ['ecygimqd'], ['reinstall'], ['tool'], ['und'], ['hardcopy'], ['acqpinyd'], ['ecygimqd']] k: 2823 len: <class 'list'> Data: ['problem', 'companyguest', 'bctypmjw', 'cbhnxafz', 'problem', 'companyguest', 'bctypmjw', 'cbhnxafz'] processed_text: ['problem', 'companyguest', 'bctypmjw', 'cbhnxafz', 'problem', 'companyguest', 'bctypmjw', 'cbhnxafz'] list_processed_text: [['problem'], ['companyguest'], ['bctypmjw'], ['cbhnxafz'], ['problem'], ['companyguest'], ['bctypmjw'], ['cbhnxafz']] k: 2824 len: <class 'list'> Data: ['probleme', 'mit', 'hp', 'drucker', 'local', 'petljhxi', 'bocxgins', 'probleme', 'mit', 'hp', 'drucker', 'local', 'petljhxi', 'bocxgins'] processed_text: ['probleme', 'mit', 'hp', 'drucker', 'local', 'petljhxi', 'bocxgins', 'probleme', 'mit', 'hp', 'drucker', 'local', 'petljhxi', 'bocxgins'] list_processed_text: [['probleme'], ['mit'], ['hp'], ['drucker'], ['local'], ['petljhxi'], ['bocxgins'], ['probleme'], ['mit'], ['hp'], ['drucker'], ['local'], ['petljhxi'], ['bocxgins']] k: 2825 len: <class 'list'> Data: ['need', 'help', 'changing', 'password', 'activating', 'skype', 'microphone', 'need', 'help', 'changing', 'password', 'switching', 'skype', 'microphone', 'call', 'people', 'skype', 'meetings,', 'cannot', 'call'] processed_text: ['need', 'help', 'changing', 'password', 'activating', 'skype', 'microphone', 'need', 'help', 'changing', 'password', 'switching', 'skype', 'microphone', 'call', 'people', 'skype', 'meetings,', 'cannot', 'call'] list_processed_text: [['need'], ['help'], ['changing'], ['password'], ['activating'], ['skype'], ['microphone'], ['need'], ['help'], ['changing'], ['password'], ['switching'], ['skype'], ['microphone'], ['call'], ['people'], ['skype'], ['meetings,'], ['cannot'], ['call']] k: 2826 len: <class 'list'> Data: ['ughzilfm', 'cfibdamq', 'wanted', 'detail', 'check', 'company', 'guest', 'ughzilfm', 'cfibdamq', 'wanted', 'detail', 'check', 'company', 'guest'] processed_text: ['ughzilfm', 'cfibdamq', 'wanted', 'detail', 'check', 'company', 'guest', 'ughzilfm', 'cfibdamq', 'wanted', 'detail', 'check', 'company', 'guest'] list_processed_text: [['ughzilfm'], ['cfibdamq'], ['wanted'], ['detail'], ['check'], ['company'], ['guest'], ['ughzilfm'], ['cfibdamq'], ['wanted'], ['detail'], ['check'], ['company'], ['guest']] k: 2827 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 2828 len: <class 'list'> Data: ['automatically', 'generated', 'confirmation', 'bls', 'transfered', 'eu', 'tool', 'system', 'affected', 'bls', 'beschichtungsleitstand', 'engl', 'coating', 'production', 'system', 'confirmation', 'process', 'step', 'packing', 'fhurakgsl', 'mldufqov', 'transfered', 'eu', 'tool', 'sample', 'order'] processed_text: ['automatically', 'generated', 'confirmation', 'bls', 'transfered', 'eu', 'tool', 'system', 'affected', 'bls', 'beschichtungsleitstand', 'engl', 'coating', 'production', 'system', 'confirmation', 'process', 'step', 'packing', 'fhurakgsl', 'mldufqov', 'transfered', 'eu', 'tool', 'sample', 'order'] list_processed_text: [['automatically'], ['generated'], ['confirmation'], ['bls'], ['transfered'], ['eu'], ['tool'], ['system'], ['affected'], ['bls'], ['beschichtungsleitstand'], ['engl'], ['coating'], ['production'], ['system'], ['confirmation'], ['process'], ['step'], ['packing'], ['fhurakgsl'], ['mldufqov'], ['transfered'], ['eu'], ['tool'], ['sample'], ['order']] k: 2829 len: <class 'list'> Data: ['create', 'delivery', 'order', 'number', 'nd', 'error', 'message', 'apo', 'server', 'k', 'mm', 'order', 'number'] processed_text: ['create', 'delivery', 'order', 'number', 'nd', 'error', 'message', 'apo', 'server', 'k', 'mm', 'order', 'number'] list_processed_text: [['create'], ['delivery'], ['order'], ['number'], ['nd'], ['error'], ['message'], ['apo'], ['server'], ['k'], ['mm'], ['order'], ['number']] k: 2830 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsm', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'write', 'error', 'system', 'error', 'software', 'caused', 'connection', 'abort', 'aborting', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsm', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'write', 'error', 'system', 'error', 'software', 'caused', 'connection', 'abort', 'aborting', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['critical'], ['lhqsm'], ['company'], ['company'], ['com'], ['time'], ['ipc'], ['failure'], ['reading'], ['net'], ['message'], ['ipc'], ['write'], ['error'], ['system'], ['error'], ['software'], ['caused'], ['connection'], ['abort'], ['aborting'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2831 len: <class 'list'> Data: ['engineering', 'tool', 'malfunction', 'dear', 'sir', 'yesterday', 'upgraded', 'engineering', 'tool', 'application', 'facing', 'problem', 'search', 'new', 'option', 'appearing', 'customer', 'find', 'add', 'tab', 'kindly', 'help', 'resolve', 'issue'] processed_text: ['engineering', 'tool', 'malfunction', 'dear', 'sir', 'yesterday', 'upgraded', 'engineering', 'tool', 'application', 'facing', 'problem', 'search', 'new', 'option', 'appearing', 'customer', 'find', 'add', 'tab', 'kindly', 'help', 'resolve', 'issue'] list_processed_text: [['engineering'], ['tool'], ['malfunction'], ['dear'], ['sir'], ['yesterday'], ['upgraded'], ['engineering'], ['tool'], ['application'], ['facing'], ['problem'], ['search'], ['new'], ['option'], ['appearing'], ['customer'], ['find'], ['add'], ['tab'], ['kindly'], ['help'], ['resolve'], ['issue']] k: 2832 len: <class 'list'> Data: ['purchasing', 'catalogue', 'de', 'wollschl', 'ger', 'need', 'immediatly', 'deleted', 'company', 'bankruped'] processed_text: ['purchasing', 'catalogue', 'de', 'wollschl', 'ger', 'need', 'immediatly', 'deleted', 'company', 'bankruped'] list_processed_text: [['purchasing'], ['catalogue'], ['de'], ['wollschl'], ['ger'], ['need'], ['immediatly'], ['deleted'], ['company'], ['bankruped']] k: 2833 len: <class 'list'> Data: ['telephony', 'software', 'problem', 'connection', 'problem', 'calling', 'sr', 'sr', 'get', 'silent', 'line', 'get', 'connected', 'warehouse', 'toolmail', 'immediately'] processed_text: ['telephony', 'software', 'problem', 'connection', 'problem', 'calling', 'sr', 'sr', 'get', 'silent', 'line', 'get', 'connected', 'warehouse', 'toolmail', 'immediately'] list_processed_text: [['telephony'], ['software'], ['problem'], ['connection'], ['problem'], ['calling'], ['sr'], ['sr'], ['get'], ['silent'], ['line'], ['get'], ['connected'], ['warehouse'], ['toolmail'], ['immediately']] k: 2834 len: <class 'list'> Data: ['eu', 'tool', 'get', 'transfer', 'time', 'employee', 'since', 'today', 'please', 'see', 'attached', 'email'] processed_text: ['eu', 'tool', 'get', 'transfer', 'time', 'employee', 'since', 'today', 'please', 'see', 'attached', 'email'] list_processed_text: [['eu'], ['tool'], ['get'], ['transfer'], ['time'], ['employee'], ['since'], ['today'], ['please'], ['see'], ['attached'], ['email']] k: 2835 len: <class 'list'> Data: ['vurbng', 'owqplduj', 'k', 'vurbng', 'owqplduj', 'k'] processed_text: ['vurbng', 'owqplduj', 'k', 'vurbng', 'owqplduj', 'k'] list_processed_text: [['vurbng'], ['owqplduj'], ['k'], ['vurbng'], ['owqplduj'], ['k']] k: 2836 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2837 len: <class 'list'> Data: ['selecting', 'customer', 'cannot', 'select', 'customer', 'cannot', 'edit', 'see', 'picture', 'button', 'new', 'find', 'previous', 'version', 'select', 'button', 'active'] processed_text: ['selecting', 'customer', 'cannot', 'select', 'customer', 'cannot', 'edit', 'see', 'picture', 'button', 'new', 'find', 'previous', 'version', 'select', 'button', 'active'] list_processed_text: [['selecting'], ['customer'], ['cannot'], ['select'], ['customer'], ['cannot'], ['edit'], ['see'], ['picture'], ['button'], ['new'], ['find'], ['previous'], ['version'], ['select'], ['button'], ['active']] k: 2838 len: <class 'list'> Data: ['setup', 'new', 'w', 'vurbng', 'owqplduj', 'setup', 'new', 'w', 'vurbng', 'owqplduj'] processed_text: ['setup', 'new', 'w', 'vurbng', 'owqplduj', 'setup', 'new', 'w', 'vurbng', 'owqplduj'] list_processed_text: [['setup'], ['new'], ['w'], ['vurbng'], ['owqplduj'], ['setup'], ['new'], ['w'], ['vurbng'], ['owqplduj']] k: 2839 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'server', 'space', 'consumed', 'space', 'available', 'k', 'volume', 'label', 'dat', 'hostname', 'ad', 'server', 'space', 'consumed', 'space', 'available', 'k'] processed_text: ['hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'server', 'space', 'consumed', 'space', 'available', 'k', 'volume', 'label', 'dat', 'hostname', 'ad', 'server', 'space', 'consumed', 'space', 'available', 'k'] list_processed_text: [['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['ad'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['k'], ['volume'], ['label'], ['dat'], ['hostname'], ['ad'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['k']] k: 2840 len: <class 'list'> Data: ['reset', 'password', 'bzwrchnd', 'ysfiwvmo', 'window', 'reset', 'password', 'bzwrchnd', 'ysfiwvmo', 'window'] processed_text: ['reset', 'password', 'bzwrchnd', 'ysfiwvmo', 'window', 'reset', 'password', 'bzwrchnd', 'ysfiwvmo', 'window'] list_processed_text: [['reset'], ['password'], ['bzwrchnd'], ['ysfiwvmo'], ['window'], ['reset'], ['password'], ['bzwrchnd'], ['ysfiwvmo'], ['window']] k: 2841 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2842 len: <class 'list'> Data: ['outlook', 'work', 'computer', 'evhw', 'outlook', 'longer', 'work'] processed_text: ['outlook', 'work', 'computer', 'evhw', 'outlook', 'longer', 'work'] list_processed_text: [['outlook'], ['work'], ['computer'], ['evhw'], ['outlook'], ['longer'], ['work']] k: 2843 len: <class 'list'> Data: ['lean', 'tracker', 'opening', 'lean', 'tracker', 'opening'] processed_text: ['lean', 'tracker', 'opening', 'lean', 'tracker', 'opening'] list_processed_text: [['lean'], ['tracker'], ['opening'], ['lean'], ['tracker'], ['opening']] k: 2844 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 2845 len: <class 'list'> Data: ['po', 'tax', 'issue', 'po', 'tax', 'issue'] processed_text: ['po', 'tax', 'issue', 'po', 'tax', 'issue'] list_processed_text: [['po'], ['tax'], ['issue'], ['po'], ['tax'], ['issue']] k: 2846 len: <class 'list'> Data: ['modify', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'sale', 'data', 'zsd', 'table', 'process', 'refreshing', 'history', 'rr', 'need', 'send', 'year', 'sale', 'data', 'zsd', 'table', 'bobj', 'script', 'jb', 'ecc', 'bw', 'zsd', 'please', 'modify', 'programdnty', 'pull', 'month', 'data', 'zsd', 'extract', 'complete', 'switch', 'back', 'delta', 'extraction'] processed_text: ['modify', 'jb', 'ecc', 'bw', 'zsd', 'pull', 'month', 'sale', 'data', 'zsd', 'table', 'process', 'refreshing', 'history', 'rr', 'need', 'send', 'year', 'sale', 'data', 'zsd', 'table', 'bobj', 'script', 'jb', 'ecc', 'bw', 'zsd', 'please', 'modify', 'programdnty', 'pull', 'month', 'data', 'zsd', 'extract', 'complete', 'switch', 'back', 'delta', 'extraction'] list_processed_text: [['modify'], ['jb'], ['ecc'], ['bw'], ['zsd'], ['pull'], ['month'], ['sale'], ['data'], ['zsd'], ['table'], ['process'], ['refreshing'], ['history'], ['rr'], ['need'], ['send'], ['year'], ['sale'], ['data'], ['zsd'], ['table'], ['bobj'], ['script'], ['jb'], ['ecc'], ['bw'], ['zsd'], ['please'], ['modify'], ['programdnty'], ['pull'], ['month'], ['data'], ['zsd'], ['extract'], ['complete'], ['switch'], ['back'], ['delta'], ['extraction']] k: 2847 len: <class 'list'> Data: ['create', 'guest', 'wifi', 'vvrassyhrt', 'create', 'guest', 'wifi', 'vvrassyhrt'] processed_text: ['create', 'guest', 'wifi', 'vvrassyhrt', 'create', 'guest', 'wifi', 'vvrassyhrt'] list_processed_text: [['create'], ['guest'], ['wifi'], ['vvrassyhrt'], ['create'], ['guest'], ['wifi'], ['vvrassyhrt']] k: 2848 len: <class 'list'> Data: ['unable', 'login', 'attendance', 'tool', 'reset', 'attendance', 'tool', 'password', 'reset', 'attendance', 'tool', 'password'] processed_text: ['unable', 'login', 'attendance', 'tool', 'reset', 'attendance', 'tool', 'password', 'reset', 'attendance', 'tool', 'password'] list_processed_text: [['unable'], ['login'], ['attendance'], ['tool'], ['reset'], ['attendance'], ['tool'], ['password'], ['reset'], ['attendance'], ['tool'], ['password']] k: 2849 len: <class 'list'> Data: ['business', 'client', 'authorisation', 'hi', 'pl', 'provide', 'business', 'client', 'authorization', 'uypsqcbm', 'fqpybgri', 'checking', 'downloading', 'drawing', 'irgsthy', 'pl', 'provide', 'employee', 'id'] processed_text: ['business', 'client', 'authorisation', 'hi', 'pl', 'provide', 'business', 'client', 'authorization', 'uypsqcbm', 'fqpybgri', 'checking', 'downloading', 'drawing', 'irgsthy', 'pl', 'provide', 'employee', 'id'] list_processed_text: [['business'], ['client'], ['authorisation'], ['hi'], ['pl'], ['provide'], ['business'], ['client'], ['authorization'], ['uypsqcbm'], ['fqpybgri'], ['checking'], ['downloading'], ['drawing'], ['irgsthy'], ['pl'], ['provide'], ['employee'], ['id']] k: 2850 len: <class 'list'> Data: ['able', 'login', 'skype', 'able', 'login', 'skype'] processed_text: ['able', 'login', 'skype', 'able', 'login', 'skype'] list_processed_text: [['able'], ['login'], ['skype'], ['able'], ['login'], ['skype']] k: 2851 len: <class 'list'> Data: ['sound', 'card', 'issue', 'dell', 'latitude', 'laptop', 'sound', 'card', 'issue', 'dell', 'latitude', 'laptop'] processed_text: ['sound', 'card', 'issue', 'dell', 'latitude', 'laptop', 'sound', 'card', 'issue', 'dell', 'latitude', 'laptop'] list_processed_text: [['sound'], ['card'], ['issue'], ['dell'], ['latitude'], ['laptop'], ['sound'], ['card'], ['issue'], ['dell'], ['latitude'], ['laptop']] k: 2852 len: <class 'list'> Data: ['vpn', 'daisy', 'huang', 'hi', 'vpn', 'system', 'failed', 'antivirus', 'check', 'please', 'ensure', 'following', 'true', 'try', 'contact', 'administrator', 'antivirus', 'software', 'enabled', 'date', 'antivirus', 'database', 'older', 'day', 'recently', 'scanned', 'system', 'longer', 'day', 'ago', 'obuwfnkm', 'ufpwmybi'] processed_text: ['vpn', 'daisy', 'huang', 'hi', 'vpn', 'system', 'failed', 'antivirus', 'check', 'please', 'ensure', 'following', 'true', 'try', 'contact', 'administrator', 'antivirus', 'software', 'enabled', 'date', 'antivirus', 'database', 'older', 'day', 'recently', 'scanned', 'system', 'longer', 'day', 'ago', 'obuwfnkm', 'ufpwmybi'] list_processed_text: [['vpn'], ['daisy'], ['huang'], ['hi'], ['vpn'], ['system'], ['failed'], ['antivirus'], ['check'], ['please'], ['ensure'], ['following'], ['true'], ['try'], ['contact'], ['administrator'], ['antivirus'], ['software'], ['enabled'], ['date'], ['antivirus'], ['database'], ['older'], ['day'], ['recently'], ['scanned'], ['system'], ['longer'], ['day'], ['ago'], ['obuwfnkm'], ['ufpwmybi']] k: 2853 len: <class 'list'> Data: ['usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et', 'interface', 'fastethernet', 'asheshopsw', 'company', 'na', 'usa', 'usa', 'access', 'sw', 'interface', 'gigabitethernet', 'asheshopsw', 'company', 'na', 'usa', 'usa', 'core', 'sw'] processed_text: ['usa', 'company', 'interface', 'fastethernet', 'gigabitethernet', 'since', 'pm', 'et', 'interface', 'fastethernet', 'asheshopsw', 'company', 'na', 'usa', 'usa', 'access', 'sw', 'interface', 'gigabitethernet', 'asheshopsw', 'company', 'na', 'usa', 'usa', 'core', 'sw'] list_processed_text: [['usa'], ['company'], ['interface'], ['fastethernet'], ['gigabitethernet'], ['since'], ['pm'], ['et'], ['interface'], ['fastethernet'], ['asheshopsw'], ['company'], ['na'], ['usa'], ['usa'], ['access'], ['sw'], ['interface'], ['gigabitethernet'], ['asheshopsw'], ['company'], ['na'], ['usa'], ['usa'], ['core'], ['sw']] k: 2854 len: <class 'list'> Data: ['prdord', 'relese', 'user', 'status', 'cer', 'active', 'user', 'status', 'cer', 'active', 'create', 'production', 'order', 'please', 'help', 'fix'] processed_text: ['prdord', 'relese', 'user', 'status', 'cer', 'active', 'user', 'status', 'cer', 'active', 'create', 'production', 'order', 'please', 'help', 'fix'] list_processed_text: [['prdord'], ['relese'], ['user'], ['status'], ['cer'], ['active'], ['user'], ['status'], ['cer'], ['active'], ['create'], ['production'], ['order'], ['please'], ['help'], ['fix']] k: 2855 len: <class 'list'> Data: ['transfer', 'customer', 'tracking', 'crm', 'crjhotyk', 'pxslorbe', 'rakthyesh', 'ramdntythanjesh', 'crm', 'crjhotyk', 'pxslorbe', 'transfer', 'customer', 'tracking', 'crm', 'able', 'right', 'click', 'click', 'track', 'crm', 'work'] processed_text: ['transfer', 'customer', 'tracking', 'crm', 'crjhotyk', 'pxslorbe', 'rakthyesh', 'ramdntythanjesh', 'crm', 'crjhotyk', 'pxslorbe', 'transfer', 'customer', 'tracking', 'crm', 'able', 'right', 'click', 'click', 'track', 'crm', 'work'] list_processed_text: [['transfer'], ['customer'], ['tracking'], ['crm'], ['crjhotyk'], ['pxslorbe'], ['rakthyesh'], ['ramdntythanjesh'], ['crm'], ['crjhotyk'], ['pxslorbe'], ['transfer'], ['customer'], ['tracking'], ['crm'], ['able'], ['right'], ['click'], ['click'], ['track'], ['crm'], ['work']] k: 2856 len: <class 'list'> Data: ['hr', 'tool', 'time', 'problem', 'trying', 'enter', 'etime', 'hub', 'get', 'screen', 'go', 'anywhere', 'screen', 'corrected', 'please', 'get', 'touch', 'tomorrow', 'office', 'hour', 'best'] processed_text: ['hr', 'tool', 'time', 'problem', 'trying', 'enter', 'etime', 'hub', 'get', 'screen', 'go', 'anywhere', 'screen', 'corrected', 'please', 'get', 'touch', 'tomorrow', 'office', 'hour', 'best'] list_processed_text: [['hr'], ['tool'], ['time'], ['problem'], ['trying'], ['enter'], ['etime'], ['hub'], ['get'], ['screen'], ['go'], ['anywhere'], ['screen'], ['corrected'], ['please'], ['get'], ['touch'], ['tomorrow'], ['office'], ['hour'], ['best']] k: 2857 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 2858 len: <class 'list'> Data: ['engineering', 'tool', 'urgent', 'access', 'engineering', 'tool', 'engineering', 'tool', 'name', 'show', 'drop', 'salesman', 'uacyltoe', 'hxgaycze', 'performed', 'allowing', 'write', 'please', 'added', 'aerp', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com', 'www', 'company', 'com', 'engineering', 'tool', 'en', 'home', 'html'] processed_text: ['engineering', 'tool', 'urgent', 'access', 'engineering', 'tool', 'engineering', 'tool', 'name', 'show', 'drop', 'salesman', 'uacyltoe', 'hxgaycze', 'performed', 'allowing', 'write', 'please', 'added', 'aerp', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com', 'www', 'company', 'com', 'engineering', 'tool', 'en', 'home', 'html'] list_processed_text: [['engineering'], ['tool'], ['urgent'], ['access'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['name'], ['show'], ['drop'], ['salesman'], ['uacyltoe'], ['hxgaycze'], ['performed'], ['allowing'], ['write'], ['please'], ['added'], ['aerp'], ['tommyth'], ['duyhurmont'], ['channel'], ['partner'], ['sale'], ['engineer'], ['company'], ['inc'], ['www'], ['company'], ['com'], ['www'], ['company'], ['com'], ['engineering'], ['tool'], ['en'], ['home'], ['html']] k: 2859 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 2860 len: <class 'list'> Data: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'password', 'reset', 'allow', 'reset', 'sid', 'erp', 'production'] processed_text: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'password', 'reset', 'allow', 'reset', 'sid', 'erp', 'production'] list_processed_text: [['reset'], ['password'], ['ytzpxhql'], ['ntfxgpms'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['reset'], ['allow'], ['reset'], ['sid'], ['erp'], ['production']] k: 2861 len: <class 'list'> Data: ['collaboration', 'platform', 'business', 'continues', 'sync', 'time', 'collaboration', 'platform', 'using', 'lot', 'memory', 'computer', 'trying', 'sync', 'large', 'number', 'file', 'try', 'exit', 'try', 'end', 'process', 'nothing', 'work', 'would', 'like', 'uninstall', 'possible', 'fixed', 'contact'] processed_text: ['collaboration', 'platform', 'business', 'continues', 'sync', 'time', 'collaboration', 'platform', 'using', 'lot', 'memory', 'computer', 'trying', 'sync', 'large', 'number', 'file', 'try', 'exit', 'try', 'end', 'process', 'nothing', 'work', 'would', 'like', 'uninstall', 'possible', 'fixed', 'contact'] list_processed_text: [['collaboration'], ['platform'], ['business'], ['continues'], ['sync'], ['time'], ['collaboration'], ['platform'], ['using'], ['lot'], ['memory'], ['computer'], ['trying'], ['sync'], ['large'], ['number'], ['file'], ['try'], ['exit'], ['try'], ['end'], ['process'], ['nothing'], ['work'], ['would'], ['like'], ['uninstall'], ['possible'], ['fixed'], ['contact']] k: 2862 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 2863 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 2864 len: <class 'list'> Data: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout'] processed_text: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout'] list_processed_text: [['frequent'], ['account'], ['lockout'], ['frequent'], ['account'], ['lockout']] k: 2865 len: <class 'list'> Data: ['access', 'open', 'link', 'access', 'open', 'link', 'corp', 'contract', 'access', 'open', 'link', 'corp', 'contract', 'please', 'review', 'usa', 'access', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['access', 'open', 'link', 'access', 'open', 'link', 'corp', 'contract', 'access', 'open', 'link', 'corp', 'contract', 'please', 'review', 'usa', 'access', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['access'], ['open'], ['link'], ['access'], ['open'], ['link'], ['corp'], ['contract'], ['access'], ['open'], ['link'], ['corp'], ['contract'], ['please'], ['review'], ['usa'], ['access'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 2866 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'tsbnfixp', 'numwqahj', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'please', 'usa', 'access', 'company', 'owned', 'device', 'user', 'id', 'grbhybrdg', 'tsbnfixp', 'numwqahj', 'thanking', 'anticipation', 'oqlcdvwi', 'pulcqkzo', 'von', 'microsoft', 'outlook', 'gesendet', 'mittwoch', 'tsbnfixp', 'numwqahj', 'betreff', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'der', 'zugriff', 'von', 'ihrem', 'mobilen', 'ger', 'auf', 'inhalte', 'ber', 'exchange', 'activesync', 'ist', 'vorr', 'bergehend', 'blockiert', 'da', 'e', 'quarant', 'ne', 'gestellt', 'ist', 'sie', 'ssen', 'keine', 'aktion', 'durchf', 'hren', 'der', 'inhalt', 'wird', 'automatisch', 'heruntergeladen', 'sobald', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'please', 'ignore', 'paragraph', 'cannot', 'change', 'delete', 'special', 'note', 'jan', 'microsoft', 'outlook', 'app', 'io', 'android', 'released', 'yesterday', 'currently', 'approved', 'software', 'accessing', 'company', 'mail', 'uacyltoe', 'hxgayczeed', 'approved', 'please', 'consider', 'using', 'one', 'embedded', 'mail', 'software', 'mobile', 'device', 'browser', 'mobile', 'device', 'microsoft', 'owa', 'app', 'published', 'mobile', 'device', 'platform', 'beginning', 'employee', 'supervisor', 'approval', 'use', 'personally', 'owned', 'mobile', 'device', 'access', 'outlook', 'email', 'company', 'moving', 'forward', 'providing', 'opportstorage', 'product', 'employee', 'use', 'specified', 'personally', 'owned', 'device', 'allow', 'productivity', 'improvement', 'enable', 'work', 'life', 'balance', 'addition', 'policy', 'company', 'owned', 'device', 'currently', 'approved', 'handheld', 'device', 'found', 'policy', 'wireless', 'mobility', 'technical', 'document', 'policy', 'updated', 'device', 'approved', 'use', 'approved', 'device', 'would', 'like', 'take', 'advantage', 'opportstorage', 'product', 'submit', 'ticketing', 'tool', 'ticket', 'global', 'support', 'center', 'gsc', 'personally', 'owned', 'device', 'need', 'attach', 'agreement', 'form', 'found', 'wireless', 'mobility', 'standard', 'procedure', 'agreement', 'must', 'signed', 'next', 'level', 'supervisor', 'provided', 'gsc', 'prior', 'ticket', 'entered', 'attach', 'signed', 'form', 'ticket', 'send', 'signed', 'form', 'gsc', 'attach', 'ticket', 'without', 'signed', 'form', 'cancelled', 'week', 'process', 'submit', 'form', 'device', 'denied', 'deleted', 'quarantine', 'wireless', 'mobility', 'standard', 'procedure', 'informationen', 'zu', 'ihrem', 'mobilen', 'ger', 'ger', 'temodell', 'iphonec', 'ger', 'tetyp', 'iphone', 'ger', 'te', 'id', 'fvqfjrgjrjbkdgus', 'ger', 'tebetriebssystem', 'io', 'sartlgeo', 'lhqksbdxa', 'ger', 'tebenutzer', 'agent', 'apple', 'iphonec', 'ger', 'te', 'imei', 'exchange', 'activesync', 'version', 'ger', 'tezugriffsstatus', 'quarantined', 'grund', 'r', 'ger', 'tezugriffsstatus', 'global', 'um', 'gesendet'] processed_text: ['mobile', 'device', 'activation', 'tsbnfixp', 'numwqahj', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'please', 'usa', 'access', 'company', 'owned', 'device', 'user', 'id', 'grbhybrdg', 'tsbnfixp', 'numwqahj', 'thanking', 'anticipation', 'oqlcdvwi', 'pulcqkzo', 'von', 'microsoft', 'outlook', 'gesendet', 'mittwoch', 'tsbnfixp', 'numwqahj', 'betreff', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'der', 'zugriff', 'von', 'ihrem', 'mobilen', 'ger', 'auf', 'inhalte', 'ber', 'exchange', 'activesync', 'ist', 'vorr', 'bergehend', 'blockiert', 'da', 'e', 'quarant', 'ne', 'gestellt', 'ist', 'sie', 'ssen', 'keine', 'aktion', 'durchf', 'hren', 'der', 'inhalt', 'wird', 'automatisch', 'heruntergeladen', 'sobald', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'please', 'ignore', 'paragraph', 'cannot', 'change', 'delete', 'special', 'note', 'jan', 'microsoft', 'outlook', 'app', 'io', 'android', 'released', 'yesterday', 'currently', 'approved', 'software', 'accessing', 'company', 'mail', 'uacyltoe', 'hxgayczeed', 'approved', 'please', 'consider', 'using', 'one', 'embedded', 'mail', 'software', 'mobile', 'device', 'browser', 'mobile', 'device', 'microsoft', 'owa', 'app', 'published', 'mobile', 'device', 'platform', 'beginning', 'employee', 'supervisor', 'approval', 'use', 'personally', 'owned', 'mobile', 'device', 'access', 'outlook', 'email', 'company', 'moving', 'forward', 'providing', 'opportstorage', 'product', 'employee', 'use', 'specified', 'personally', 'owned', 'device', 'allow', 'productivity', 'improvement', 'enable', 'work', 'life', 'balance', 'addition', 'policy', 'company', 'owned', 'device', 'currently', 'approved', 'handheld', 'device', 'found', 'policy', 'wireless', 'mobility', 'technical', 'document', 'policy', 'updated', 'device', 'approved', 'use', 'approved', 'device', 'would', 'like', 'take', 'advantage', 'opportstorage', 'product', 'submit', 'ticketing', 'tool', 'ticket', 'global', 'support', 'center', 'gsc', 'personally', 'owned', 'device', 'need', 'attach', 'agreement', 'form', 'found', 'wireless', 'mobility', 'standard', 'procedure', 'agreement', 'must', 'signed', 'next', 'level', 'supervisor', 'provided', 'gsc', 'prior', 'ticket', 'entered', 'attach', 'signed', 'form', 'ticket', 'send', 'signed', 'form', 'gsc', 'attach', 'ticket', 'without', 'signed', 'form', 'cancelled', 'week', 'process', 'submit', 'form', 'device', 'denied', 'deleted', 'quarantine', 'wireless', 'mobility', 'standard', 'procedure', 'informationen', 'zu', 'ihrem', 'mobilen', 'ger', 'ger', 'temodell', 'iphonec', 'ger', 'tetyp', 'iphone', 'ger', 'te', 'id', 'fvqfjrgjrjbkdgus', 'ger', 'tebetriebssystem', 'io', 'sartlgeo', 'lhqksbdxa', 'ger', 'tebenutzer', 'agent', 'apple', 'iphonec', 'ger', 'te', 'imei', 'exchange', 'activesync', 'version', 'ger', 'tezugriffsstatus', 'quarantined', 'grund', 'r', 'ger', 'tezugriffsstatus', 'global', 'um', 'gesendet'] list_processed_text: [['mobile'], ['device'], ['activation'], ['tsbnfixp'], ['numwqahj'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['wg'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['importance'], ['high'], ['please'], ['usa'], ['access'], ['company'], ['owned'], ['device'], ['user'], ['id'], ['grbhybrdg'], ['tsbnfixp'], ['numwqahj'], ['thanking'], ['anticipation'], ['oqlcdvwi'], ['pulcqkzo'], ['von'], ['microsoft'], ['outlook'], ['gesendet'], ['mittwoch'], ['tsbnfixp'], ['numwqahj'], ['betreff'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['der'], ['zugriff'], ['von'], ['ihrem'], ['mobilen'], ['ger'], ['auf'], ['inhalte'], ['ber'], ['exchange'], ['activesync'], ['ist'], ['vorr'], ['bergehend'], ['blockiert'], ['da'], ['e'], ['quarant'], ['ne'], ['gestellt'], ['ist'], ['sie'], ['ssen'], ['keine'], ['aktion'], ['durchf'], ['hren'], ['der'], ['inhalt'], ['wird'], ['automatisch'], ['heruntergeladen'], ['sobald'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['please'], ['ignore'], ['paragraph'], ['cannot'], ['change'], ['delete'], ['special'], ['note'], ['jan'], ['microsoft'], ['outlook'], ['app'], ['io'], ['android'], ['released'], ['yesterday'], ['currently'], ['approved'], ['software'], ['accessing'], ['company'], ['mail'], ['uacyltoe'], ['hxgayczeed'], ['approved'], ['please'], ['consider'], ['using'], ['one'], ['embedded'], ['mail'], ['software'], ['mobile'], ['device'], ['browser'], ['mobile'], ['device'], ['microsoft'], ['owa'], ['app'], ['published'], ['mobile'], ['device'], ['platform'], ['beginning'], ['employee'], ['supervisor'], ['approval'], ['use'], ['personally'], ['owned'], ['mobile'], ['device'], ['access'], ['outlook'], ['email'], ['company'], ['moving'], ['forward'], ['providing'], ['opportstorage'], ['product'], ['employee'], ['use'], ['specified'], ['personally'], ['owned'], ['device'], ['allow'], ['productivity'], ['improvement'], ['enable'], ['work'], ['life'], ['balance'], ['addition'], ['policy'], ['company'], ['owned'], ['device'], ['currently'], ['approved'], ['handheld'], ['device'], ['found'], ['policy'], ['wireless'], ['mobility'], ['technical'], ['document'], ['policy'], ['updated'], ['device'], ['approved'], ['use'], ['approved'], ['device'], ['would'], ['like'], ['take'], ['advantage'], ['opportstorage'], ['product'], ['submit'], ['ticketing'], ['tool'], ['ticket'], ['global'], ['support'], ['center'], ['gsc'], ['personally'], ['owned'], ['device'], ['need'], ['attach'], ['agreement'], ['form'], ['found'], ['wireless'], ['mobility'], ['standard'], ['procedure'], ['agreement'], ['must'], ['signed'], ['next'], ['level'], ['supervisor'], ['provided'], ['gsc'], ['prior'], ['ticket'], ['entered'], ['attach'], ['signed'], ['form'], ['ticket'], ['send'], ['signed'], ['form'], ['gsc'], ['attach'], ['ticket'], ['without'], ['signed'], ['form'], ['cancelled'], ['week'], ['process'], ['submit'], ['form'], ['device'], ['denied'], ['deleted'], ['quarantine'], ['wireless'], ['mobility'], ['standard'], ['procedure'], ['informationen'], ['zu'], ['ihrem'], ['mobilen'], ['ger'], ['ger'], ['temodell'], ['iphonec'], ['ger'], ['tetyp'], ['iphone'], ['ger'], ['te'], ['id'], ['fvqfjrgjrjbkdgus'], ['ger'], ['tebetriebssystem'], ['io'], ['sartlgeo'], ['lhqksbdxa'], ['ger'], ['tebenutzer'], ['agent'], ['apple'], ['iphonec'], ['ger'], ['te'], ['imei'], ['exchange'], ['activesync'], ['version'], ['ger'], ['tezugriffsstatus'], ['quarantined'], ['grund'], ['r'], ['ger'], ['tezugriffsstatus'], ['global'], ['um'], ['gesendet']] k: 2867 len: <class 'list'> Data: ['correct', 'billing', 'error', 'vfx', 'correct', 'attached', 'listed', 'error'] processed_text: ['correct', 'billing', 'error', 'vfx', 'correct', 'attached', 'listed', 'error'] list_processed_text: [['correct'], ['billing'], ['error'], ['vfx'], ['correct'], ['attached'], ['listed'], ['error']] k: 2868 len: <class 'list'> Data: ['po', 'received', 'problem', 'try', 'ship', 'thru', 'pweaver', 'erp', 'tell', 'server', 'unable', 'pr', 'po', 'received', 'problem', 'try', 'ship', 'thru', 'pweaver', 'erp', 'tell', 'server', 'unable', 'process', 'request'] processed_text: ['po', 'received', 'problem', 'try', 'ship', 'thru', 'pweaver', 'erp', 'tell', 'server', 'unable', 'pr', 'po', 'received', 'problem', 'try', 'ship', 'thru', 'pweaver', 'erp', 'tell', 'server', 'unable', 'process', 'request'] list_processed_text: [['po'], ['received'], ['problem'], ['try'], ['ship'], ['thru'], ['pweaver'], ['erp'], ['tell'], ['server'], ['unable'], ['pr'], ['po'], ['received'], ['problem'], ['try'], ['ship'], ['thru'], ['pweaver'], ['erp'], ['tell'], ['server'], ['unable'], ['process'], ['request']] k: 2869 len: <class 'list'> Data: ['skype', 'issue', 'calling', 'desk', 'headset', 'ooo', 'skype', 'error', 'calling', 'desk', 'phone', 'call', 'number', 'building', 'fine', 'kqelgbis', 'stiarhlu', 'also', 'skype', 'headset', 'connected', 'work', 'switch', 'pc', 'speaker', 'hear'] processed_text: ['skype', 'issue', 'calling', 'desk', 'headset', 'ooo', 'skype', 'error', 'calling', 'desk', 'phone', 'call', 'number', 'building', 'fine', 'kqelgbis', 'stiarhlu', 'also', 'skype', 'headset', 'connected', 'work', 'switch', 'pc', 'speaker', 'hear'] list_processed_text: [['skype'], ['issue'], ['calling'], ['desk'], ['headset'], ['ooo'], ['skype'], ['error'], ['calling'], ['desk'], ['phone'], ['call'], ['number'], ['building'], ['fine'], ['kqelgbis'], ['stiarhlu'], ['also'], ['skype'], ['headset'], ['connected'], ['work'], ['switch'], ['pc'], ['speaker'], ['hear']] k: 2870 len: <class 'list'> Data: ['iphone', 'crm', 'app', 'install', 'iphone', 'iphone', 'crm', 'app', 'install', 'iphone'] processed_text: ['iphone', 'crm', 'app', 'install', 'iphone', 'iphone', 'crm', 'app', 'install', 'iphone'] list_processed_text: [['iphone'], ['crm'], ['app'], ['install'], ['iphone'], ['iphone'], ['crm'], ['app'], ['install'], ['iphone']] k: 2871 len: <class 'list'> Data: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'password', 'reset', 'everything', 'erp', 'productio'] processed_text: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'password', 'reset', 'everything', 'erp', 'productio'] list_processed_text: [['reset'], ['password'], ['ytzpxhql'], ['ntfxgpms'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['reset'], ['everything'], ['erp'], ['productio']] k: 2872 len: <class 'list'> Data: ['monitor', 'display', 'video', 'say', 'signal', 'found', 'monitor', 'display', 'video', 'say', 'signal', 'found'] processed_text: ['monitor', 'display', 'video', 'say', 'signal', 'found', 'monitor', 'display', 'video', 'say', 'signal', 'found'] list_processed_text: [['monitor'], ['display'], ['video'], ['say'], ['signal'], ['found'], ['monitor'], ['display'], ['video'], ['say'], ['signal'], ['found']] k: 2873 len: <class 'list'> Data: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'erp', 'password', 'reset', 'needed'] processed_text: ['reset', 'password', 'ytzpxhql', 'ntfxgpms', 'using', 'password', 'management', 'tool', 'password', 'reset', 'erp', 'password', 'reset', 'needed'] list_processed_text: [['reset'], ['password'], ['ytzpxhql'], ['ntfxgpms'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['erp'], ['password'], ['reset'], ['needed']] k: 2874 len: <class 'list'> Data: ['wi', 'fi', 'access', 'user', 'jamhdtyes', 'kinhytudel', 'wi', 'fi', 'access', 'user', 'jamhdtyes', 'kinhytudel'] processed_text: ['wi', 'fi', 'access', 'user', 'jamhdtyes', 'kinhytudel', 'wi', 'fi', 'access', 'user', 'jamhdtyes', 'kinhytudel'] list_processed_text: [['wi'], ['fi'], ['access'], ['user'], ['jamhdtyes'], ['kinhytudel'], ['wi'], ['fi'], ['access'], ['user'], ['jamhdtyes'], ['kinhytudel']] k: 2875 len: <class 'list'> Data: ['connection', 'erp', 'system', 'erp', 'reporting', 'tool', 'engineering', 'tool', 'anything', 'connects', 'erp', 'connection', 'erp', 'system', 'erp', 'reporting', 'tool', 'engineering', 'tool', 'anything', 'connects', 'erp'] processed_text: ['connection', 'erp', 'system', 'erp', 'reporting', 'tool', 'engineering', 'tool', 'anything', 'connects', 'erp', 'connection', 'erp', 'system', 'erp', 'reporting', 'tool', 'engineering', 'tool', 'anything', 'connects', 'erp'] list_processed_text: [['connection'], ['erp'], ['system'], ['erp'], ['reporting'], ['tool'], ['engineering'], ['tool'], ['anything'], ['connects'], ['erp'], ['connection'], ['erp'], ['system'], ['erp'], ['reporting'], ['tool'], ['engineering'], ['tool'], ['anything'], ['connects'], ['erp']] k: 2876 len: <class 'list'> Data: ['one', 'usa', 'facility', 'log', 'onto', 'erp', 'receive', 'error', 'message', 'loggin', 'balancing', 'error', 'contact', 'information', 'follows'] processed_text: ['one', 'usa', 'facility', 'log', 'onto', 'erp', 'receive', 'error', 'message', 'loggin', 'balancing', 'error', 'contact', 'information', 'follows'] list_processed_text: [['one'], ['usa'], ['facility'], ['log'], ['onto'], ['erp'], ['receive'], ['error'], ['message'], ['loggin'], ['balancing'], ['error'], ['contact'], ['information'], ['follows']] k: 2877 len: <class 'list'> Data: ['erp', 'connection', 'unable', 'save', 'file', 'ug', 'keep', 'getting', 'error', 'save', 'canceled', 'rebooted', 'login', 'engineering', 'tool', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company'] processed_text: ['erp', 'connection', 'unable', 'save', 'file', 'ug', 'keep', 'getting', 'error', 'save', 'canceled', 'rebooted', 'login', 'engineering', 'tool', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company'] list_processed_text: [['erp'], ['connection'], ['unable'], ['save'], ['file'], ['ug'], ['keep'], ['getting'], ['error'], ['save'], ['canceled'], ['rebooted'], ['login'], ['engineering'], ['tool'], ['knethyen'], ['grechduy'], ['engineer'], ['product'], ['engineering'], ['company']] k: 2878 len: <class 'list'> Data: ['help', 'system', 'erp', 'nx', 'reporting', 'tool', 'cannot', 'connect', 'seems', 'user', 'site', 'help', 'system', 'erp', 'nx', 'reporting', 'tool', 'cannot', 'connect', 'seems', 'user', 'site'] processed_text: ['help', 'system', 'erp', 'nx', 'reporting', 'tool', 'cannot', 'connect', 'seems', 'user', 'site', 'help', 'system', 'erp', 'nx', 'reporting', 'tool', 'cannot', 'connect', 'seems', 'user', 'site'] list_processed_text: [['help'], ['system'], ['erp'], ['nx'], ['reporting'], ['tool'], ['cannot'], ['connect'], ['seems'], ['user'], ['site'], ['help'], ['system'], ['erp'], ['nx'], ['reporting'], ['tool'], ['cannot'], ['connect'], ['seems'], ['user'], ['site']] k: 2879 len: <class 'list'> Data: ['termination', 'action', 'manuel', 'zuehlke', 'completed', 'hello', 'k', 'ndigung', 'manuel', 'zuehlke', 'effective', 'approved'] processed_text: ['termination', 'action', 'manuel', 'zuehlke', 'completed', 'hello', 'k', 'ndigung', 'manuel', 'zuehlke', 'effective', 'approved'] list_processed_text: [['termination'], ['action'], ['manuel'], ['zuehlke'], ['completed'], ['hello'], ['k'], ['ndigung'], ['manuel'], ['zuehlke'], ['effective'], ['approved']] k: 2880 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2881 len: <class 'list'> Data: ['administration', 'tool', 'help', 'install', 'administration', 'tool', 'window', 'o'] processed_text: ['administration', 'tool', 'help', 'install', 'administration', 'tool', 'window', 'o'] list_processed_text: [['administration'], ['tool'], ['help'], ['install'], ['administration'], ['tool'], ['window'], ['o']] k: 2882 len: <class 'list'> Data: ['unable', 'attach', 'attachment', 'expense', 'report', 'unable', 'attach', 'attachment', 'expense', 'report'] processed_text: ['unable', 'attach', 'attachment', 'expense', 'report', 'unable', 'attach', 'attachment', 'expense', 'report'] list_processed_text: [['unable'], ['attach'], ['attachment'], ['expense'], ['report'], ['unable'], ['attach'], ['attachment'], ['expense'], ['report']] k: 2883 len: <class 'list'> Data: ['unable', 'login', 'business', 'client', 'unable', 'login', 'business', 'client', 'prompt', 'login', 'sid', 'account'] processed_text: ['unable', 'login', 'business', 'client', 'unable', 'login', 'business', 'client', 'prompt', 'login', 'sid', 'account'] list_processed_text: [['unable'], ['login'], ['business'], ['client'], ['unable'], ['login'], ['business'], ['client'], ['prompt'], ['login'], ['sid'], ['account']] k: 2884 len: <class 'list'> Data: ['create', 'quote', 'working', 'distributor', 'tool', 'create', 'quote', 'working', 'distributor', 'tool'] processed_text: ['create', 'quote', 'working', 'distributor', 'tool', 'create', 'quote', 'working', 'distributor', 'tool'] list_processed_text: [['create'], ['quote'], ['working'], ['distributor'], ['tool'], ['create'], ['quote'], ['working'], ['distributor'], ['tool']] k: 2885 len: <class 'list'> Data: ['unlock', 'personal', 'number', 'es', 'unlock', 'personal', 'number', 'es'] processed_text: ['unlock', 'personal', 'number', 'es', 'unlock', 'personal', 'number', 'es'] list_processed_text: [['unlock'], ['personal'], ['number'], ['es'], ['unlock'], ['personal'], ['number'], ['es']] k: 2886 len: <class 'list'> Data: ['warehouse', 'creating', 'planned', 'pgi', 'date', 'base', 'confirmed', 'date', 'customer', 'committed', 'finding', 'warehouse', 'creating', 'planned', 'pgi', 'date', 'based', 'production', 'confirmed', 'date', 'committed', 'date', 'customer', 'occurring', 'order', 'multiple', 'schedule', 'line', 'usually', 'created', 'production', 'recommits', 'good', 'example', 'sale', 'order', 'line', 'number', 'attaching', 'pdf', 'copy'] processed_text: ['warehouse', 'creating', 'planned', 'pgi', 'date', 'base', 'confirmed', 'date', 'customer', 'committed', 'finding', 'warehouse', 'creating', 'planned', 'pgi', 'date', 'based', 'production', 'confirmed', 'date', 'committed', 'date', 'customer', 'occurring', 'order', 'multiple', 'schedule', 'line', 'usually', 'created', 'production', 'recommits', 'good', 'example', 'sale', 'order', 'line', 'number', 'attaching', 'pdf', 'copy'] list_processed_text: [['warehouse'], ['creating'], ['planned'], ['pgi'], ['date'], ['base'], ['confirmed'], ['date'], ['customer'], ['committed'], ['finding'], ['warehouse'], ['creating'], ['planned'], ['pgi'], ['date'], ['based'], ['production'], ['confirmed'], ['date'], ['committed'], ['date'], ['customer'], ['occurring'], ['order'], ['multiple'], ['schedule'], ['line'], ['usually'], ['created'], ['production'], ['recommits'], ['good'], ['example'], ['sale'], ['order'], ['line'], ['number'], ['attaching'], ['pdf'], ['copy']] k: 2887 len: <class 'list'> Data: ['msoffice', 'installation', 'msoffice', 'installation'] processed_text: ['msoffice', 'installation', 'msoffice', 'installation'] list_processed_text: [['msoffice'], ['installation'], ['msoffice'], ['installation']] k: 2888 len: <class 'list'> Data: ['unauthorized', 'loggin', 'attempt', 'naveuythen', 'dyhtruutt', 'pm', 'nwfodmhc', 'exurcwkm', 'dan', 'fw', 'unauthorized', 'loggin', 'attempt', 'hi', 'getting', 'mail', 'continuously', 'past', 'day', 'pls', 'look'] processed_text: ['unauthorized', 'loggin', 'attempt', 'naveuythen', 'dyhtruutt', 'pm', 'nwfodmhc', 'exurcwkm', 'dan', 'fw', 'unauthorized', 'loggin', 'attempt', 'hi', 'getting', 'mail', 'continuously', 'past', 'day', 'pls', 'look'] list_processed_text: [['unauthorized'], ['loggin'], ['attempt'], ['naveuythen'], ['dyhtruutt'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['dan'], ['fw'], ['unauthorized'], ['loggin'], ['attempt'], ['hi'], ['getting'], ['mail'], ['continuously'], ['past'], ['day'], ['pls'], ['look']] k: 2889 len: <class 'list'> Data: ['security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system', 'security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system', 'hello', 'team', 'please', 'help', 'team', 'member', 'get', 'proper', 'security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system'] processed_text: ['security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system', 'security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system', 'hello', 'team', 'please', 'help', 'team', 'member', 'get', 'proper', 'security', 'clearance', 'view', 'cutter', 'insert', 'drawing', 'web', 'based', 'netweaver', 'system'] list_processed_text: [['security'], ['clearance'], ['view'], ['cutter'], ['insert'], ['drawing'], ['web'], ['based'], ['netweaver'], ['system'], ['security'], ['clearance'], ['view'], ['cutter'], ['insert'], ['drawing'], ['web'], ['based'], ['netweaver'], ['system'], ['hello'], ['team'], ['please'], ['help'], ['team'], ['member'], ['get'], ['proper'], ['security'], ['clearance'], ['view'], ['cutter'], ['insert'], ['drawing'], ['web'], ['based'], ['netweaver'], ['system']] k: 2890 len: <class 'list'> Data: ['get', 'open', 'gkad', 'nx', 'apper', 'appears', 'next', 'message', 'nx', 'stoped', 'working', 'problem', 'caused', 'programdnty', 'gkad', 'lathe', 'gkadx', 'function', 'properly'] processed_text: ['get', 'open', 'gkad', 'nx', 'apper', 'appears', 'next', 'message', 'nx', 'stoped', 'working', 'problem', 'caused', 'programdnty', 'gkad', 'lathe', 'gkadx', 'function', 'properly'] list_processed_text: [['get'], ['open'], ['gkad'], ['nx'], ['apper'], ['appears'], ['next'], ['message'], ['nx'], ['stoped'], ['working'], ['problem'], ['caused'], ['programdnty'], ['gkad'], ['lathe'], ['gkadx'], ['function'], ['properly']] k: 2891 len: <class 'list'> Data: ['user', 'usa', 'plant', 'unable', 'access', 'mii', 'user', 'usa', 'plant', 'unable', 'access', 'mii', 'getting', 'error', 'state', 'recovering', 'webpage', 'entire', 'plant', 'affected'] processed_text: ['user', 'usa', 'plant', 'unable', 'access', 'mii', 'user', 'usa', 'plant', 'unable', 'access', 'mii', 'getting', 'error', 'state', 'recovering', 'webpage', 'entire', 'plant', 'affected'] list_processed_text: [['user'], ['usa'], ['plant'], ['unable'], ['access'], ['mii'], ['user'], ['usa'], ['plant'], ['unable'], ['access'], ['mii'], ['getting'], ['error'], ['state'], ['recovering'], ['webpage'], ['entire'], ['plant'], ['affected']] k: 2892 len: <class 'list'> Data: ['unable', 'clock', 'order', 'mii', 'unable', 'clock', 'order', 'mii', 'multiple', 'user', 'affected', 'phone'] processed_text: ['unable', 'clock', 'order', 'mii', 'unable', 'clock', 'order', 'mii', 'multiple', 'user', 'affected', 'phone'] list_processed_text: [['unable'], ['clock'], ['order'], ['mii'], ['unable'], ['clock'], ['order'], ['mii'], ['multiple'], ['user'], ['affected'], ['phone']] k: 2893 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 2894 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 2895 len: <class 'list'> Data: ['help', 'resetting', 'hr', 'tool', 'time', 'clock', 'password', 'clock', 'punch', 'employee', 'number', 'maintenance', 'mode', 'forgot', 'password', 'done', 'device', 'pc'] processed_text: ['help', 'resetting', 'hr', 'tool', 'time', 'clock', 'password', 'clock', 'punch', 'employee', 'number', 'maintenance', 'mode', 'forgot', 'password', 'done', 'device', 'pc'] list_processed_text: [['help'], ['resetting'], ['hr'], ['tool'], ['time'], ['clock'], ['password'], ['clock'], ['punch'], ['employee'], ['number'], ['maintenance'], ['mode'], ['forgot'], ['password'], ['done'], ['device'], ['pc']] k: 2896 len: <class 'list'> Data: ['missing', 'travel', 'privilege', 'hi', 'two', 'open', 'travel', 'expense', 'enter', 'erp', 'please', 'solve', 'aerp', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] processed_text: ['missing', 'travel', 'privilege', 'hi', 'two', 'open', 'travel', 'expense', 'enter', 'erp', 'please', 'solve', 'aerp', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] list_processed_text: [['missing'], ['travel'], ['privilege'], ['hi'], ['two'], ['open'], ['travel'], ['expense'], ['enter'], ['erp'], ['please'], ['solve'], ['aerp'], ['uyrpdvoq'], ['mbzevtcx'], ['sale'], ['manager'], ['earthwork'], ['european'], ['served'], ['area'], ['north'], ['company'], ['infrastructure'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['und'], ['naruedlk'], ['mpvhakdq'], ['www'], ['company'], ['com']] k: 2897 len: <class 'list'> Data: ['unlock', 'user', 'erp', 'mae', 'server', 'hostname', 'please', 'help', 'unlock', 'user', 'erp', 'mae', 'server', 'hostname', 'earliest'] processed_text: ['unlock', 'user', 'erp', 'mae', 'server', 'hostname', 'please', 'help', 'unlock', 'user', 'erp', 'mae', 'server', 'hostname', 'earliest'] list_processed_text: [['unlock'], ['user'], ['erp'], ['mae'], ['server'], ['hostname'], ['please'], ['help'], ['unlock'], ['user'], ['erp'], ['mae'], ['server'], ['hostname'], ['earliest']] k: 2898 len: <class 'list'> Data: ['lost', 'main', 'monitor', 'display', 'hi', 'main', 'monitor', 'turn', 'computer', 'shut', 'restarted', 'cable', 'connection', 'checked', 'someone', 'take', 'look', 'continue', 'working', 'secondary', 'monitor', 'inconvenience'] processed_text: ['lost', 'main', 'monitor', 'display', 'hi', 'main', 'monitor', 'turn', 'computer', 'shut', 'restarted', 'cable', 'connection', 'checked', 'someone', 'take', 'look', 'continue', 'working', 'secondary', 'monitor', 'inconvenience'] list_processed_text: [['lost'], ['main'], ['monitor'], ['display'], ['hi'], ['main'], ['monitor'], ['turn'], ['computer'], ['shut'], ['restarted'], ['cable'], ['connection'], ['checked'], ['someone'], ['take'], ['look'], ['continue'], ['working'], ['secondary'], ['monitor'], ['inconvenience']] k: 2899 len: <class 'list'> Data: ['engineering', 'tool', 'client', 'unable', 'launch', 'stopped', 'responding', 'error', 'multiple', 'programdnty', 'shortcut', 'exist', 'desktop', 'engineering', 'tool', 'none', 'work', 'password', 'expired', 'well', 'aiqjxhuv', 'dceghpwn', 'runtime', 'software', 'missing', 'pc'] processed_text: ['engineering', 'tool', 'client', 'unable', 'launch', 'stopped', 'responding', 'error', 'multiple', 'programdnty', 'shortcut', 'exist', 'desktop', 'engineering', 'tool', 'none', 'work', 'password', 'expired', 'well', 'aiqjxhuv', 'dceghpwn', 'runtime', 'software', 'missing', 'pc'] list_processed_text: [['engineering'], ['tool'], ['client'], ['unable'], ['launch'], ['stopped'], ['responding'], ['error'], ['multiple'], ['programdnty'], ['shortcut'], ['exist'], ['desktop'], ['engineering'], ['tool'], ['none'], ['work'], ['password'], ['expired'], ['well'], ['aiqjxhuv'], ['dceghpwn'], ['runtime'], ['software'], ['missing'], ['pc']] k: 2900 len: <class 'list'> Data: ['unable', 'sign', 'outlook', 'password', 'change', 'unable', 'sign', 'outlook', 'password', 'change'] processed_text: ['unable', 'sign', 'outlook', 'password', 'change', 'unable', 'sign', 'outlook', 'password', 'change'] list_processed_text: [['unable'], ['sign'], ['outlook'], ['password'], ['change'], ['unable'], ['sign'], ['outlook'], ['password'], ['change']] k: 2901 len: <class 'list'> Data: ['ticketing', 'tool', 'ticket', 'need', 'get', 'crm', 'loaded', 'outlook', 'currently', 'using', 'web', 'crm', 'version', 'wkqjcfgy', 'vsknlfri', 'metalworking', 'sale', 'engineer', 'company', 'inc', 'technical', 'support'] processed_text: ['ticketing', 'tool', 'ticket', 'need', 'get', 'crm', 'loaded', 'outlook', 'currently', 'using', 'web', 'crm', 'version', 'wkqjcfgy', 'vsknlfri', 'metalworking', 'sale', 'engineer', 'company', 'inc', 'technical', 'support'] list_processed_text: [['ticketing'], ['tool'], ['ticket'], ['need'], ['get'], ['crm'], ['loaded'], ['outlook'], ['currently'], ['using'], ['web'], ['crm'], ['version'], ['wkqjcfgy'], ['vsknlfri'], ['metalworking'], ['sale'], ['engineer'], ['company'], ['inc'], ['technical'], ['support']] k: 2902 len: <class 'list'> Data: ['website', 'loading', 'company', 'center', 'companycenter', 'company', 'com'] processed_text: ['website', 'loading', 'company', 'center', 'companycenter', 'company', 'com'] list_processed_text: [['website'], ['loading'], ['company'], ['center'], ['companycenter'], ['company'], ['com']] k: 2903 len: <class 'list'> Data: ['acct', 'set', 'get', 'one', 'monthly', 'inwarehouse', 'tool', 'getting', 'multiple', 'inwarehouse', 'tool', 'sid', 'account', 'smhdyhti', 'tool', 'set', 'zm', 'combined', 'monthly', 'billing', 'received', 'multiple', 'inwarehouse', 'tool', 'see', 'attached'] processed_text: ['acct', 'set', 'get', 'one', 'monthly', 'inwarehouse', 'tool', 'getting', 'multiple', 'inwarehouse', 'tool', 'sid', 'account', 'smhdyhti', 'tool', 'set', 'zm', 'combined', 'monthly', 'billing', 'received', 'multiple', 'inwarehouse', 'tool', 'see', 'attached'] list_processed_text: [['acct'], ['set'], ['get'], ['one'], ['monthly'], ['inwarehouse'], ['tool'], ['getting'], ['multiple'], ['inwarehouse'], ['tool'], ['sid'], ['account'], ['smhdyhti'], ['tool'], ['set'], ['zm'], ['combined'], ['monthly'], ['billing'], ['received'], ['multiple'], ['inwarehouse'], ['tool'], ['see'], ['attached']] k: 2904 len: <class 'list'> Data: ['open', 'order', 'book', 'problem', 'back', 'order', 'access', 'problem', 'back', 'order', 'report', 'paramdntyeter', 'access', 'open', 'order', 'book'] processed_text: ['open', 'order', 'book', 'problem', 'back', 'order', 'access', 'problem', 'back', 'order', 'report', 'paramdntyeter', 'access', 'open', 'order', 'book'] list_processed_text: [['open'], ['order'], ['book'], ['problem'], ['back'], ['order'], ['access'], ['problem'], ['back'], ['order'], ['report'], ['paramdntyeter'], ['access'], ['open'], ['order'], ['book']] k: 2905 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unlock', 'haunm', 'erp', 'sid', 'account', 'seems', 'get', 'locked', 'everytime', 'try', 'log'] processed_text: ['erp', 'sid', 'password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unlock', 'haunm', 'erp', 'sid', 'account', 'seems', 'get', 'locked', 'everytime', 'try', 'log'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['name'], ['mfeyouli'], ['ndobtzpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unlock'], ['haunm'], ['erp'], ['sid'], ['account'], ['seems'], ['get'], ['locked'], ['everytime'], ['try'], ['log']] k: 2906 len: <class 'list'> Data: ['erp', 'sid', 'password', 'locked', 'erp', 'sid', 'password', 'locked'] processed_text: ['erp', 'sid', 'password', 'locked', 'erp', 'sid', 'password', 'locked'] list_processed_text: [['erp'], ['sid'], ['password'], ['locked'], ['erp'], ['sid'], ['password'], ['locked']] k: 2907 len: <class 'list'> Data: ['update', 'ticket', 'update', 'ticket'] processed_text: ['update', 'ticket', 'update', 'ticket'] list_processed_text: [['update'], ['ticket'], ['update'], ['ticket']] k: 2908 len: <class 'list'> Data: ['printer', 'asking', 'update', 'driver', 'printer', 'asking', 'update', 'driver'] processed_text: ['printer', 'asking', 'update', 'driver', 'printer', 'asking', 'update', 'driver'] list_processed_text: [['printer'], ['asking'], ['update'], ['driver'], ['printer'], ['asking'], ['update'], ['driver']] k: 2909 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 2910 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 2911 len: <class 'list'> Data: ['etime', 'visibility', 'hr', 'tool', 'hi', 'issue', 'month', 'ago', 'told', 'delete', 'browsing', 'history', 'access', 'restored', 'routinely', 'clear', 'browsing', 'history', 'today', 'cannot', 'view', 'etime', 'see', 'attached', 'screen', 'shot'] processed_text: ['etime', 'visibility', 'hr', 'tool', 'hi', 'issue', 'month', 'ago', 'told', 'delete', 'browsing', 'history', 'access', 'restored', 'routinely', 'clear', 'browsing', 'history', 'today', 'cannot', 'view', 'etime', 'see', 'attached', 'screen', 'shot'] list_processed_text: [['etime'], ['visibility'], ['hr'], ['tool'], ['hi'], ['issue'], ['month'], ['ago'], ['told'], ['delete'], ['browsing'], ['history'], ['access'], ['restored'], ['routinely'], ['clear'], ['browsing'], ['history'], ['today'], ['cannot'], ['view'], ['etime'], ['see'], ['attached'], ['screen'], ['shot']] k: 2912 len: <class 'list'> Data: ['unable', 'send', 'skype', 'meeting', 'invitation', 'unable', 'send', 'skype', 'meeting', 'invitation'] processed_text: ['unable', 'send', 'skype', 'meeting', 'invitation', 'unable', 'send', 'skype', 'meeting', 'invitation'] list_processed_text: [['unable'], ['send'], ['skype'], ['meeting'], ['invitation'], ['unable'], ['send'], ['skype'], ['meeting'], ['invitation']] k: 2913 len: <class 'list'> Data: ['ughzilfm', 'cfibdamq', 'called', 'requesting', 'appreciate', 'hub', 'link', 'ughzilfm', 'cfibdamq', 'called', 'requesting', 'appreciate', 'hub', 'link'] processed_text: ['ughzilfm', 'cfibdamq', 'called', 'requesting', 'appreciate', 'hub', 'link', 'ughzilfm', 'cfibdamq', 'called', 'requesting', 'appreciate', 'hub', 'link'] list_processed_text: [['ughzilfm'], ['cfibdamq'], ['called'], ['requesting'], ['appreciate'], ['hub'], ['link'], ['ughzilfm'], ['cfibdamq'], ['called'], ['requesting'], ['appreciate'], ['hub'], ['link']] k: 2914 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 2915 len: <class 'list'> Data: ['problem', 'ie', 'niptbwdq', 'csenjruz', 'problem', 'ie', 'niptbwdq', 'csenjruz'] processed_text: ['problem', 'ie', 'niptbwdq', 'csenjruz', 'problem', 'ie', 'niptbwdq', 'csenjruz'] list_processed_text: [['problem'], ['ie'], ['niptbwdq'], ['csenjruz'], ['problem'], ['ie'], ['niptbwdq'], ['csenjruz']] k: 2916 len: <class 'list'> Data: ['wanted', 'know', 'account', 'pathuick', 'stope', 'still', 'active', 'wanted', 'know', 'account', 'pathuick', 'stope', 'still', 'active'] processed_text: ['wanted', 'know', 'account', 'pathuick', 'stope', 'still', 'active', 'wanted', 'know', 'account', 'pathuick', 'stope', 'still', 'active'] list_processed_text: [['wanted'], ['know'], ['account'], ['pathuick'], ['stope'], ['still'], ['active'], ['wanted'], ['know'], ['account'], ['pathuick'], ['stope'], ['still'], ['active']] k: 2917 len: <class 'list'> Data: ['longer', 'print', 'tc', 'longer', 'able', 'print', 'tc', 'must', 'install', 'driver', 'sure', 'used', 'able', 'print', 'tc', 'without', 'issue', 'reason', 'longer', 'able'] processed_text: ['longer', 'print', 'tc', 'longer', 'able', 'print', 'tc', 'must', 'install', 'driver', 'sure', 'used', 'able', 'print', 'tc', 'without', 'issue', 'reason', 'longer', 'able'] list_processed_text: [['longer'], ['print'], ['tc'], ['longer'], ['able'], ['print'], ['tc'], ['must'], ['install'], ['driver'], ['sure'], ['used'], ['able'], ['print'], ['tc'], ['without'], ['issue'], ['reason'], ['longer'], ['able']] k: 2918 len: <class 'list'> Data: ['analysis', 'add', 'show', 'analysis', 'add', 'show'] processed_text: ['analysis', 'add', 'show', 'analysis', 'add', 'show'] list_processed_text: [['analysis'], ['add'], ['show'], ['analysis'], ['add'], ['show']] k: 2919 len: <class 'list'> Data: ['hcuixqgj', 'mavxgqbs', 'hcuixqgj', 'mavxgqbs'] processed_text: ['hcuixqgj', 'mavxgqbs', 'hcuixqgj', 'mavxgqbs'] list_processed_text: [['hcuixqgj'], ['mavxgqbs'], ['hcuixqgj'], ['mavxgqbs']] k: 2920 len: <class 'list'> Data: ['install', 'web', 'ewew', 'acqpinyd', 'ecygimqd', 'install', 'web', 'ewew', 'acqpinyd', 'ecygimqd'] processed_text: ['install', 'web', 'ewew', 'acqpinyd', 'ecygimqd', 'install', 'web', 'ewew', 'acqpinyd', 'ecygimqd'] list_processed_text: [['install'], ['web'], ['ewew'], ['acqpinyd'], ['ecygimqd'], ['install'], ['web'], ['ewew'], ['acqpinyd'], ['ecygimqd']] k: 2921 len: <class 'list'> Data: ['problem', 'portal', 'acqpinyd', 'ecygimqd', 'problem', 'portal', 'acqpinyd', 'ecygimqd'] processed_text: ['problem', 'portal', 'acqpinyd', 'ecygimqd', 'problem', 'portal', 'acqpinyd', 'ecygimqd'] list_processed_text: [['problem'], ['portal'], ['acqpinyd'], ['ecygimqd'], ['problem'], ['portal'], ['acqpinyd'], ['ecygimqd']] k: 2922 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 2923 len: <class 'list'> Data: ['problem', 'portal', 'hcuixqgj', 'mavxgqbs', 'problem', 'portal', 'hcuixqgj', 'mavxgqbs'] processed_text: ['problem', 'portal', 'hcuixqgj', 'mavxgqbs', 'problem', 'portal', 'hcuixqgj', 'mavxgqbs'] list_processed_text: [['problem'], ['portal'], ['hcuixqgj'], ['mavxgqbs'], ['problem'], ['portal'], ['hcuixqgj'], ['mavxgqbs']] k: 2924 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'loading', 'hr', 'tool', 'etime', 'loading'] processed_text: ['hr', 'tool', 'etime', 'loading', 'hr', 'tool', 'etime', 'loading'] list_processed_text: [['hr'], ['tool'], ['etime'], ['loading'], ['hr'], ['tool'], ['etime'], ['loading']] k: 2925 len: <class 'list'> Data: ['please', 'delete', 'attached', 'series', 'meeting', 'meeting', 'scheduled', 'former', 'employee', 'organizer', 'panjkytr', 'mehrota', 'fw', 'nextgen', 'kentip', 'mfg', 'detail', 'panjkytr', 'mehrotra', 'panjkytr', 'mehrotra', 'ohljvzpn', 'phwdxqev', 'fabijhsd', 'ocsnugeh', 'ksvlowjd', 'ptyzxscl', 'nwgcbfdt', 'ahmbnsoi', 'aditya', 'choragudi', 'gotbumak', 'ymdqokfp', 'cyxieuwk', 'rekwlqmu', 'ruy', 'frota', 'estaxpnz', 'mqhrvjkd', 'vipqmdse', 'zkaowfrx', 'jhwgydeb', 'ufiatosg', 'ynlqrebs', 'hwfoqjdu', 'doug', 'harman', 'ejvkzobl', 'yijgokrn', 'frmyejbx', 'weclfnhx', 'cltszugw', 'tgzbklec', 'gdxujefz', 'egnwtvch', 'raouf', 'benamor', 'lpnzjimdghtyy', 'mwtvondq', 'lwguyibh', 'nqepkugo', 'knqmscrw', 'sdtoezjb', 'arjpdohf', 'mrqwdtil', 'nextgen', 'kentip', 'mfg', 'occurs', 'every', 'effective', 'utc', 'eastern', 'time', 'u', 'canada', 'mccoy'] processed_text: ['please', 'delete', 'attached', 'series', 'meeting', 'meeting', 'scheduled', 'former', 'employee', 'organizer', 'panjkytr', 'mehrota', 'fw', 'nextgen', 'kentip', 'mfg', 'detail', 'panjkytr', 'mehrotra', 'panjkytr', 'mehrotra', 'ohljvzpn', 'phwdxqev', 'fabijhsd', 'ocsnugeh', 'ksvlowjd', 'ptyzxscl', 'nwgcbfdt', 'ahmbnsoi', 'aditya', 'choragudi', 'gotbumak', 'ymdqokfp', 'cyxieuwk', 'rekwlqmu', 'ruy', 'frota', 'estaxpnz', 'mqhrvjkd', 'vipqmdse', 'zkaowfrx', 'jhwgydeb', 'ufiatosg', 'ynlqrebs', 'hwfoqjdu', 'doug', 'harman', 'ejvkzobl', 'yijgokrn', 'frmyejbx', 'weclfnhx', 'cltszugw', 'tgzbklec', 'gdxujefz', 'egnwtvch', 'raouf', 'benamor', 'lpnzjimdghtyy', 'mwtvondq', 'lwguyibh', 'nqepkugo', 'knqmscrw', 'sdtoezjb', 'arjpdohf', 'mrqwdtil', 'nextgen', 'kentip', 'mfg', 'occurs', 'every', 'effective', 'utc', 'eastern', 'time', 'u', 'canada', 'mccoy'] list_processed_text: [['please'], ['delete'], ['attached'], ['series'], ['meeting'], ['meeting'], ['scheduled'], ['former'], ['employee'], ['organizer'], ['panjkytr'], ['mehrota'], ['fw'], ['nextgen'], ['kentip'], ['mfg'], ['detail'], ['panjkytr'], ['mehrotra'], ['panjkytr'], ['mehrotra'], ['ohljvzpn'], ['phwdxqev'], ['fabijhsd'], ['ocsnugeh'], ['ksvlowjd'], ['ptyzxscl'], ['nwgcbfdt'], ['ahmbnsoi'], ['aditya'], ['choragudi'], ['gotbumak'], ['ymdqokfp'], ['cyxieuwk'], ['rekwlqmu'], ['ruy'], ['frota'], ['estaxpnz'], ['mqhrvjkd'], ['vipqmdse'], ['zkaowfrx'], ['jhwgydeb'], ['ufiatosg'], ['ynlqrebs'], ['hwfoqjdu'], ['doug'], ['harman'], ['ejvkzobl'], ['yijgokrn'], ['frmyejbx'], ['weclfnhx'], ['cltszugw'], ['tgzbklec'], ['gdxujefz'], ['egnwtvch'], ['raouf'], ['benamor'], ['lpnzjimdghtyy'], ['mwtvondq'], ['lwguyibh'], ['nqepkugo'], ['knqmscrw'], ['sdtoezjb'], ['arjpdohf'], ['mrqwdtil'], ['nextgen'], ['kentip'], ['mfg'], ['occurs'], ['every'], ['effective'], ['utc'], ['eastern'], ['time'], ['u'], ['canada'], ['mccoy']] k: 2926 len: <class 'list'> Data: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler']] k: 2927 len: <class 'list'> Data: ['whenever', 'pc', 'turned', 'show', 'bluescreen', 'work', 'whenever', 'pc', 'turned', 'show', 'blue', 'screen', 'work', 'keith', 'suspect', 'cache', 'causing'] processed_text: ['whenever', 'pc', 'turned', 'show', 'bluescreen', 'work', 'whenever', 'pc', 'turned', 'show', 'blue', 'screen', 'work', 'keith', 'suspect', 'cache', 'causing'] list_processed_text: [['whenever'], ['pc'], ['turned'], ['show'], ['bluescreen'], ['work'], ['whenever'], ['pc'], ['turned'], ['show'], ['blue'], ['screen'], ['work'], ['keith'], ['suspect'], ['cache'], ['causing']] k: 2928 len: <class 'list'> Data: ['unable', 'find', 'network', 'drive', 'password', 'reset', 'unable', 'find', 'network', 'drive', 'password', 'reset'] processed_text: ['unable', 'find', 'network', 'drive', 'password', 'reset', 'unable', 'find', 'network', 'drive', 'password', 'reset'] list_processed_text: [['unable'], ['find'], ['network'], ['drive'], ['password'], ['reset'], ['unable'], ['find'], ['network'], ['drive'], ['password'], ['reset']] k: 2929 len: <class 'list'> Data: ['vip', 'issue', 'monitor', 'display', 'name', 'stdezpqw', 'bkmeuhfz', 'email', 'telephone', 'summary', 'monitor', 'longer', 'operating', 'display', 'office', 'arranged', 'yesterday', 'moved', 'monitor', 'right', 'location', 'stopped', 'displaying', 'content', 'show', 'dell', 'window', 'self', 'uacyltoe', 'hxgaycze', 'feature', 'check', 'red', 'gtehdnyu', 'blue', 'white', 'bar', 'beneath', 'message', 'activate', 'control', 'panel'] processed_text: ['vip', 'issue', 'monitor', 'display', 'name', 'stdezpqw', 'bkmeuhfz', 'email', 'telephone', 'summary', 'monitor', 'longer', 'operating', 'display', 'office', 'arranged', 'yesterday', 'moved', 'monitor', 'right', 'location', 'stopped', 'displaying', 'content', 'show', 'dell', 'window', 'self', 'uacyltoe', 'hxgaycze', 'feature', 'check', 'red', 'gtehdnyu', 'blue', 'white', 'bar', 'beneath', 'message', 'activate', 'control', 'panel'] list_processed_text: [['vip'], ['issue'], ['monitor'], ['display'], ['name'], ['stdezpqw'], ['bkmeuhfz'], ['email'], ['telephone'], ['summary'], ['monitor'], ['longer'], ['operating'], ['display'], ['office'], ['arranged'], ['yesterday'], ['moved'], ['monitor'], ['right'], ['location'], ['stopped'], ['displaying'], ['content'], ['show'], ['dell'], ['window'], ['self'], ['uacyltoe'], ['hxgaycze'], ['feature'], ['check'], ['red'], ['gtehdnyu'], ['blue'], ['white'], ['bar'], ['beneath'], ['message'], ['activate'], ['control'], ['panel']] k: 2930 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 2931 len: <class 'list'> Data: ['configair', 'server', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'working', 'properly', 'please', 'restart', 'server', 'mill', 'model', 'model', 'sid', 'working', 'correctly', 'starting', 'configuration', 'proces', 'scratch', 'run', 'procedure', 'created', 'default', 'characteristic', 'value', 'based', 'selected', 'product', 'platform', 'please', 'restart', 'server', 'important', 'training', 'session', 'amerirtcas', 'ca', 'team', 'cest', 'time', 'today', 'min'] processed_text: ['configair', 'server', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'working', 'properly', 'please', 'restart', 'server', 'mill', 'model', 'model', 'sid', 'working', 'correctly', 'starting', 'configuration', 'proces', 'scratch', 'run', 'procedure', 'created', 'default', 'characteristic', 'value', 'based', 'selected', 'product', 'platform', 'please', 'restart', 'server', 'important', 'training', 'session', 'amerirtcas', 'ca', 'team', 'cest', 'time', 'today', 'min'] list_processed_text: [['configair'], ['server'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['environment'], ['working'], ['properly'], ['please'], ['restart'], ['server'], ['mill'], ['model'], ['model'], ['sid'], ['working'], ['correctly'], ['starting'], ['configuration'], ['proces'], ['scratch'], ['run'], ['procedure'], ['created'], ['default'], ['characteristic'], ['value'], ['based'], ['selected'], ['product'], ['platform'], ['please'], ['restart'], ['server'], ['important'], ['training'], ['session'], ['amerirtcas'], ['ca'], ['team'], ['cest'], ['time'], ['today'], ['min']] k: 2932 len: <class 'list'> Data: ['password', 'issue', 'hi', 'mr', 'indra', 'kurtyar', 'able', 'log', 'due', 'password', 'issue', 'kindly', 'provide', 'new', 'password', 'person', 'name', 'mr', 'indra', 'kurtyar', 'user', 'id', 'vvrajai', 'email', 'indrakurtyar', 'best'] processed_text: ['password', 'issue', 'hi', 'mr', 'indra', 'kurtyar', 'able', 'log', 'due', 'password', 'issue', 'kindly', 'provide', 'new', 'password', 'person', 'name', 'mr', 'indra', 'kurtyar', 'user', 'id', 'vvrajai', 'email', 'indrakurtyar', 'best'] list_processed_text: [['password'], ['issue'], ['hi'], ['mr'], ['indra'], ['kurtyar'], ['able'], ['log'], ['due'], ['password'], ['issue'], ['kindly'], ['provide'], ['new'], ['password'], ['person'], ['name'], ['mr'], ['indra'], ['kurtyar'], ['user'], ['id'], ['vvrajai'], ['email'], ['indrakurtyar'], ['best']] k: 2933 len: <class 'list'> Data: ['read', 'write', 'authorization', 'r', 'hostname', 'production', 'read', 'write', 'authorization', 'r', 'hostname', 'production'] processed_text: ['read', 'write', 'authorization', 'r', 'hostname', 'production', 'read', 'write', 'authorization', 'r', 'hostname', 'production'] list_processed_text: [['read'], ['write'], ['authorization'], ['r'], ['hostname'], ['production'], ['read'], ['write'], ['authorization'], ['r'], ['hostname'], ['production']] k: 2934 len: <class 'list'> Data: ['modify', 'quote', 'performance', 'model', 'model', 'field', 'pk', 'publish', 'pk', 'otc', 'quote', 'zcae', 'quote', 'performance', 'value', 'raw', 'doc', 'curr', 'qt', 'see', 'rounding', 'see', 'attached', 'screenshot', 'converted', 'usd', 'sample', 'quote', 'value', 'lc', 'currency', 'document', 'usd', 'two', 'field', 'match'] processed_text: ['modify', 'quote', 'performance', 'model', 'model', 'field', 'pk', 'publish', 'pk', 'otc', 'quote', 'zcae', 'quote', 'performance', 'value', 'raw', 'doc', 'curr', 'qt', 'see', 'rounding', 'see', 'attached', 'screenshot', 'converted', 'usd', 'sample', 'quote', 'value', 'lc', 'currency', 'document', 'usd', 'two', 'field', 'match'] list_processed_text: [['modify'], ['quote'], ['performance'], ['model'], ['model'], ['field'], ['pk'], ['publish'], ['pk'], ['otc'], ['quote'], ['zcae'], ['quote'], ['performance'], ['value'], ['raw'], ['doc'], ['curr'], ['qt'], ['see'], ['rounding'], ['see'], ['attached'], ['screenshot'], ['converted'], ['usd'], ['sample'], ['quote'], ['value'], ['lc'], ['currency'], ['document'], ['usd'], ['two'], ['field'], ['match']] k: 2935 len: <class 'list'> Data: ['unable', 'connect', 'company', 'secure', 'unable', 'connect', 'company', 'secure'] processed_text: ['unable', 'connect', 'company', 'secure', 'unable', 'connect', 'company', 'secure'] list_processed_text: [['unable'], ['connect'], ['company'], ['secure'], ['unable'], ['connect'], ['company'], ['secure']] k: 2936 len: <class 'list'> Data: ['please', 'upgrade', 'tom', 'karghyuens', 'office', 'newest', 'please', 'upgrade', 'tom', 'karghyuen', 'office', 'newest'] processed_text: ['please', 'upgrade', 'tom', 'karghyuens', 'office', 'newest', 'please', 'upgrade', 'tom', 'karghyuen', 'office', 'newest'] list_processed_text: [['please'], ['upgrade'], ['tom'], ['karghyuens'], ['office'], ['newest'], ['please'], ['upgrade'], ['tom'], ['karghyuen'], ['office'], ['newest']] k: 2937 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'please', 'reset', 'password', 'sure', 'mine', 'giving', 'problem'] processed_text: ['erp', 'sid', 'password', 'reset', 'please', 'reset', 'password', 'sure', 'mine', 'giving', 'problem'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['please'], ['reset'], ['password'], ['sure'], ['mine'], ['giving'], ['problem']] k: 2938 len: <class 'list'> Data: ['laptop', 'getting', 'power', 'supply', 'sufficient', 'warning', 'boot', 'docked', 'laptop', 'getting', 'power', 'supply', 'sufficient', 'warning', 'boot', 'docked'] processed_text: ['laptop', 'getting', 'power', 'supply', 'sufficient', 'warning', 'boot', 'docked', 'laptop', 'getting', 'power', 'supply', 'sufficient', 'warning', 'boot', 'docked'] list_processed_text: [['laptop'], ['getting'], ['power'], ['supply'], ['sufficient'], ['warning'], ['boot'], ['docked'], ['laptop'], ['getting'], ['power'], ['supply'], ['sufficient'], ['warning'], ['boot'], ['docked']] k: 2939 len: <class 'list'> Data: ['zlz', 'agreement', 'create', 'planning', 'demand', 'hello', 'help', 'zlz', 'agreement', 'shown', 'md', 'demand', 'po', 'production', 'plant', 'zlz', 'agreement', 'shown', 'demand', 'md', 'maybe', 'problem', 'material', 'type', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['zlz', 'agreement', 'create', 'planning', 'demand', 'hello', 'help', 'zlz', 'agreement', 'shown', 'md', 'demand', 'po', 'production', 'plant', 'zlz', 'agreement', 'shown', 'demand', 'md', 'maybe', 'problem', 'material', 'type', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['zlz'], ['agreement'], ['create'], ['planning'], ['demand'], ['hello'], ['help'], ['zlz'], ['agreement'], ['shown'], ['md'], ['demand'], ['po'], ['production'], ['plant'], ['zlz'], ['agreement'], ['shown'], ['demand'], ['md'], ['maybe'], ['problem'], ['material'], ['type'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 2940 len: <class 'list'> Data: ['ughzilfm', 'cfibdamq', 'called', 'reset', 'password', 'zlnfpuam', 'aktplhre', 'ughzilfm', 'cfibdamq', 'called', 'reset', 'password', 'zlnfpuam', 'aktplhre'] processed_text: ['ughzilfm', 'cfibdamq', 'called', 'reset', 'password', 'zlnfpuam', 'aktplhre', 'ughzilfm', 'cfibdamq', 'called', 'reset', 'password', 'zlnfpuam', 'aktplhre'] list_processed_text: [['ughzilfm'], ['cfibdamq'], ['called'], ['reset'], ['password'], ['zlnfpuam'], ['aktplhre'], ['ughzilfm'], ['cfibdamq'], ['called'], ['reset'], ['password'], ['zlnfpuam'], ['aktplhre']] k: 2941 len: <class 'list'> Data: ['drucker', 'vh', 'und', 'vh', 'funktionieren', 'nicht', 'ticket', 'bitte', 'edv', 'germany', 'hr', 'wurdack', 'steinich', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hp', 'laser', 'jet', 'detailed', 'description', 'problem', 'druckauftrag', 'wir', 'nicht', 'ausgef', 'hrt', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['drucker', 'vh', 'und', 'vh', 'funktionieren', 'nicht', 'ticket', 'bitte', 'edv', 'germany', 'hr', 'wurdack', 'steinich', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hp', 'laser', 'jet', 'detailed', 'description', 'problem', 'druckauftrag', 'wir', 'nicht', 'ausgef', 'hrt', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['drucker'], ['vh'], ['und'], ['vh'], ['funktionieren'], ['nicht'], ['ticket'], ['bitte'], ['edv'], ['germany'], ['hr'], ['wurdack'], ['steinich'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['hp'], ['laser'], ['jet'], ['detailed'], ['description'], ['problem'], ['druckauftrag'], ['wir'], ['nicht'], ['ausgef'], ['hrt'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 2942 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 2943 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 2944 len: <class 'list'> Data: ['user', 'moblews', 'forgotten', 'telephony', 'software', 'password', 'user', 'moblews', 'forgotten', 'telephony', 'software', 'password', 'schtrtgoyht', 'mobley'] processed_text: ['user', 'moblews', 'forgotten', 'telephony', 'software', 'password', 'user', 'moblews', 'forgotten', 'telephony', 'software', 'password', 'schtrtgoyht', 'mobley'] list_processed_text: [['user'], ['moblews'], ['forgotten'], ['telephony'], ['software'], ['password'], ['user'], ['moblews'], ['forgotten'], ['telephony'], ['software'], ['password'], ['schtrtgoyht'], ['mobley']] k: 2945 len: <class 'list'> Data: ['set', 'pc', 'eemw', 'barcode', 'displayed', 'printed', 'set', 'pc', 'eemw', 'barcode', 'displayed', 'print', 'eb', 'ro', 'thicker'] processed_text: ['set', 'pc', 'eemw', 'barcode', 'displayed', 'printed', 'set', 'pc', 'eemw', 'barcode', 'displayed', 'print', 'eb', 'ro', 'thicker'] list_processed_text: [['set'], ['pc'], ['eemw'], ['barcode'], ['displayed'], ['printed'], ['set'], ['pc'], ['eemw'], ['barcode'], ['displayed'], ['print'], ['eb'], ['ro'], ['thicker']] k: 2946 len: <class 'list'> Data: ['hsh', 'hi', 'please', 'reset', 'password', 'mr', 'aqihfoly', 'xsrkthvf', 'emp', 'name', 'useid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] processed_text: ['hsh', 'hi', 'please', 'reset', 'password', 'mr', 'aqihfoly', 'xsrkthvf', 'emp', 'name', 'useid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] list_processed_text: [['hsh'], ['hi'], ['please'], ['reset'], ['password'], ['mr'], ['aqihfoly'], ['xsrkthvf'], ['emp'], ['name'], ['useid'], ['manager'], ['aqihfoly'], ['xsrkthvf'], ['hsh'], ['panghyiraj'], ['shthuihog'], ['fyi']] k: 2947 len: <class 'list'> Data: ['folder', 'sharing', 'r', 'kvp', 'ce', 'head', 'folder', 'sharing', 'r', 'kvp', 'ce', 'head'] processed_text: ['folder', 'sharing', 'r', 'kvp', 'ce', 'head', 'folder', 'sharing', 'r', 'kvp', 'ce', 'head'] list_processed_text: [['folder'], ['sharing'], ['r'], ['kvp'], ['ce'], ['head'], ['folder'], ['sharing'], ['r'], ['kvp'], ['ce'], ['head']] k: 2948 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2949 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 2950 len: <class 'list'> Data: ['please', 'give', 'administration', 'permission', 'user', 'id', 'reddakv', 'please', 'give', 'administration', 'permission', 'user', 'id', 'reddakv', 'need', 'install', 'team', 'basic', 'application', 'software'] processed_text: ['please', 'give', 'administration', 'permission', 'user', 'id', 'reddakv', 'please', 'give', 'administration', 'permission', 'user', 'id', 'reddakv', 'need', 'install', 'team', 'basic', 'application', 'software'] list_processed_text: [['please'], ['give'], ['administration'], ['permission'], ['user'], ['id'], ['reddakv'], ['please'], ['give'], ['administration'], ['permission'], ['user'], ['id'], ['reddakv'], ['need'], ['install'], ['team'], ['basic'], ['application'], ['software']] k: 2951 len: <class 'list'> Data: ['org', 'inwarehouse', 'tool', 'issue', 'inwarehouse', 'tool', 'printed', 'output', 'complete', 'ie', 'item', 'quantity', 'unit', 'price', 'total', 'amount', 'dierppear', 'attached', 'delviery', 'note', 'inwarehouse', 'tool', 'information', 'please', 'help', 'fix', 'issue', 'advise', 'back', 'u', 'aerp'] processed_text: ['org', 'inwarehouse', 'tool', 'issue', 'inwarehouse', 'tool', 'printed', 'output', 'complete', 'ie', 'item', 'quantity', 'unit', 'price', 'total', 'amount', 'dierppear', 'attached', 'delviery', 'note', 'inwarehouse', 'tool', 'information', 'please', 'help', 'fix', 'issue', 'advise', 'back', 'u', 'aerp'] list_processed_text: [['org'], ['inwarehouse'], ['tool'], ['issue'], ['inwarehouse'], ['tool'], ['printed'], ['output'], ['complete'], ['ie'], ['item'], ['quantity'], ['unit'], ['price'], ['total'], ['amount'], ['dierppear'], ['attached'], ['delviery'], ['note'], ['inwarehouse'], ['tool'], ['information'], ['please'], ['help'], ['fix'], ['issue'], ['advise'], ['back'], ['u'], ['aerp']] k: 2952 len: <class 'list'> Data: ['org', 'inwarehouse', 'tool', 'issue', 'refer', 'inwarehouse', 'tool', 'printed', 'inwarehouse', 'tool', 'complete', 'ie', 'line', 'item', 'quanttiy', 'unit', 'price', 'tootal', 'amount', 'dierppear', 'also', 'total', 'inwarehouse', 'tool', 'amount', 'correct', 'attached', 'related', 'delivery', 'note', 'inwarehouse', 'tool', 'information', 'please', 'help', 'fix', 'issue', 'inform', 'u', 'aerp'] processed_text: ['org', 'inwarehouse', 'tool', 'issue', 'refer', 'inwarehouse', 'tool', 'printed', 'inwarehouse', 'tool', 'complete', 'ie', 'line', 'item', 'quanttiy', 'unit', 'price', 'tootal', 'amount', 'dierppear', 'also', 'total', 'inwarehouse', 'tool', 'amount', 'correct', 'attached', 'related', 'delivery', 'note', 'inwarehouse', 'tool', 'information', 'please', 'help', 'fix', 'issue', 'inform', 'u', 'aerp'] list_processed_text: [['org'], ['inwarehouse'], ['tool'], ['issue'], ['refer'], ['inwarehouse'], ['tool'], ['printed'], ['inwarehouse'], ['tool'], ['complete'], ['ie'], ['line'], ['item'], ['quanttiy'], ['unit'], ['price'], ['tootal'], ['amount'], ['dierppear'], ['also'], ['total'], ['inwarehouse'], ['tool'], ['amount'], ['correct'], ['attached'], ['related'], ['delivery'], ['note'], ['inwarehouse'], ['tool'], ['information'], ['please'], ['help'], ['fix'], ['issue'], ['inform'], ['u'], ['aerp']] k: 2953 len: <class 'list'> Data: ['please', 'restart', 'sid', 'server', 'today', 'est', 'hello', 'team', 'java', 'change', 'moved', 'production', 'unfortunately', 'db', 'change', 'moved', 'request', 'please', 'restart', 'sid', 'server', 'reflected', 'dba', 'change', 'production'] processed_text: ['please', 'restart', 'sid', 'server', 'today', 'est', 'hello', 'team', 'java', 'change', 'moved', 'production', 'unfortunately', 'db', 'change', 'moved', 'request', 'please', 'restart', 'sid', 'server', 'reflected', 'dba', 'change', 'production'] list_processed_text: [['please'], ['restart'], ['sid'], ['server'], ['today'], ['est'], ['hello'], ['team'], ['java'], ['change'], ['moved'], ['production'], ['unfortunately'], ['db'], ['change'], ['moved'], ['request'], ['please'], ['restart'], ['sid'], ['server'], ['reflected'], ['dba'], ['change'], ['production']] k: 2954 len: <class 'list'> Data: ['incorrect', 'logo', 'displayed', 'distributor', 'tool', 'incorrect', 'logo', 'displayed', 'distributor', 'tool', 'logo', 'change', 'requested', 'ticket', 'ticket', 'logo', 'change', 'done', 'moved', 'qa', 'since', 'one', 'file', 'dependent', 'ticket', 'logo', 'change', 'file', 'moved', 'along', 'ticket', 'requestor', 'want', 'logo', 'change'] processed_text: ['incorrect', 'logo', 'displayed', 'distributor', 'tool', 'incorrect', 'logo', 'displayed', 'distributor', 'tool', 'logo', 'change', 'requested', 'ticket', 'ticket', 'logo', 'change', 'done', 'moved', 'qa', 'since', 'one', 'file', 'dependent', 'ticket', 'logo', 'change', 'file', 'moved', 'along', 'ticket', 'requestor', 'want', 'logo', 'change'] list_processed_text: [['incorrect'], ['logo'], ['displayed'], ['distributor'], ['tool'], ['incorrect'], ['logo'], ['displayed'], ['distributor'], ['tool'], ['logo'], ['change'], ['requested'], ['ticket'], ['ticket'], ['logo'], ['change'], ['done'], ['moved'], ['qa'], ['since'], ['one'], ['file'], ['dependent'], ['ticket'], ['logo'], ['change'], ['file'], ['moved'], ['along'], ['ticket'], ['requestor'], ['want'], ['logo'], ['change']] k: 2955 len: <class 'list'> Data: ['viewer', 'step', 'file', 'hello', 'need', 'viewer', 'computer', 'check', 'step', 'file', 'mit', 'freundlichen', 'gr', 'ssen', 'best'] processed_text: ['viewer', 'step', 'file', 'hello', 'need', 'viewer', 'computer', 'check', 'step', 'file', 'mit', 'freundlichen', 'gr', 'ssen', 'best'] list_processed_text: [['viewer'], ['step'], ['file'], ['hello'], ['need'], ['viewer'], ['computer'], ['check'], ['step'], ['file'], ['mit'], ['freundlichen'], ['gr'], ['ssen'], ['best']] k: 2956 len: <class 'list'> Data: ['setup', 'new', 'w', 'zlnfpuam', 'aktplhre', 'setup', 'new', 'w', 'zlnfpuam', 'aktplhre'] processed_text: ['setup', 'new', 'w', 'zlnfpuam', 'aktplhre', 'setup', 'new', 'w', 'zlnfpuam', 'aktplhre'] list_processed_text: [['setup'], ['new'], ['w'], ['zlnfpuam'], ['aktplhre'], ['setup'], ['new'], ['w'], ['zlnfpuam'], ['aktplhre']] k: 2957 len: <class 'list'> Data: ['erp', 'purchasing', 'access', 'issue', 'user', 'kgueyiwp', 'cjlonvme', 'helmu', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'purchasing', 'portal', 'mycompany', 'company', 'com', 'irj', 'portal', 'enter', 'user', 'id', 'user', 'issue', 'helmu', 'describe', 'issue', 'action', 'could', 'performed', 'attribudes', 'user', 'inconsistent', 'defined', 'see', 'transaction', 'ppoma', 'ppb', 'attached', 'screen', 'shot'] processed_text: ['erp', 'purchasing', 'access', 'issue', 'user', 'kgueyiwp', 'cjlonvme', 'helmu', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'purchasing', 'portal', 'mycompany', 'company', 'com', 'irj', 'portal', 'enter', 'user', 'id', 'user', 'issue', 'helmu', 'describe', 'issue', 'action', 'could', 'performed', 'attribudes', 'user', 'inconsistent', 'defined', 'see', 'transaction', 'ppoma', 'ppb', 'attached', 'screen', 'shot'] list_processed_text: [['erp'], ['purchasing'], ['access'], ['issue'], ['user'], ['kgueyiwp'], ['cjlonvme'], ['helmu'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['purchasing'], ['portal'], ['mycompany'], ['company'], ['com'], ['irj'], ['portal'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['helmu'], ['describe'], ['issue'], ['action'], ['could'], ['performed'], ['attribudes'], ['user'], ['inconsistent'], ['defined'], ['see'], ['transaction'], ['ppoma'], ['ppb'], ['attached'], ['screen'], ['shot']] k: 2958 len: <class 'list'> Data: ['power', 'outage', 'vogelfontein', 'sa', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'vogelfontein', 'sa', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['vogelfontein'], ['sa'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2959 len: <class 'list'> Data: ['printer', 'em', 'delivery', 'area', 'always', 'delivery', 'note,', 'sometimes', 'correct', 'one', 'printed', 'afterwards', 'printer', 'em', 'delivery', 'area', 'always', 'delivery', 'note,', 'sometimes', 'correct', 'erp', 'problem', 'printed'] processed_text: ['printer', 'em', 'delivery', 'area', 'always', 'delivery', 'note,', 'sometimes', 'correct', 'one', 'printed', 'afterwards', 'printer', 'em', 'delivery', 'area', 'always', 'delivery', 'note,', 'sometimes', 'correct', 'erp', 'problem', 'printed'] list_processed_text: [['printer'], ['em'], ['delivery'], ['area'], ['always'], ['delivery'], ['note,'], ['sometimes'], ['correct'], ['one'], ['printed'], ['afterwards'], ['printer'], ['em'], ['delivery'], ['area'], ['always'], ['delivery'], ['note,'], ['sometimes'], ['correct'], ['erp'], ['problem'], ['printed']] k: 2960 len: <class 'list'> Data: ['fqhlvcxn', 'zdfymgjp', 'want', 'share', 'file', 'fqhlvcxn', 'zdfymgjp', 'pdf', 'view', 'fqhlvcxn', 'zdfymgjp', 'pdf', 'sign', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['fqhlvcxn', 'zdfymgjp', 'want', 'share', 'file', 'fqhlvcxn', 'zdfymgjp', 'pdf', 'view', 'fqhlvcxn', 'zdfymgjp', 'pdf', 'sign', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['fqhlvcxn'], ['zdfymgjp'], ['want'], ['share'], ['file'], ['fqhlvcxn'], ['zdfymgjp'], ['pdf'], ['view'], ['fqhlvcxn'], ['zdfymgjp'], ['pdf'], ['sign'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 2961 len: <class 'list'> Data: ['pls', 'check', 'erp', 'sid', 'account', 'vvgraec', 'able', 'sign', 'anymore', 'pls', 'check', 'erp', 'account', 'vvgraec', 'able', 'sign', 'anymore', 'pls', 'see', 'attachment'] processed_text: ['pls', 'check', 'erp', 'sid', 'account', 'vvgraec', 'able', 'sign', 'anymore', 'pls', 'check', 'erp', 'account', 'vvgraec', 'able', 'sign', 'anymore', 'pls', 'see', 'attachment'] list_processed_text: [['pls'], ['check'], ['erp'], ['sid'], ['account'], ['vvgraec'], ['able'], ['sign'], ['anymore'], ['pls'], ['check'], ['erp'], ['account'], ['vvgraec'], ['able'], ['sign'], ['anymore'], ['pls'], ['see'], ['attachment']] k: 2962 len: <class 'list'> Data: ['url', 'portal', 'functioning', 'dear', 'sir', 'mycompany', 'company', 'com', 'site', 'functioning', 'applying', 'leave', 'kindly', 'support'] processed_text: ['url', 'portal', 'functioning', 'dear', 'sir', 'mycompany', 'company', 'com', 'site', 'functioning', 'applying', 'leave', 'kindly', 'support'] list_processed_text: [['url'], ['portal'], ['functioning'], ['dear'], ['sir'], ['mycompany'], ['company'], ['com'], ['site'], ['functioning'], ['applying'], ['leave'], ['kindly'], ['support']] k: 2963 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'ad', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['ad'], ['space'], ['consumed'], ['space'], ['available'], ['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['ad'], ['space'], ['consumed'], ['space'], ['available']] k: 2964 len: <class 'list'> Data: ['security', 'incident', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'detail', 'event', 'id', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbcdcc', 'ack', 'xec', 'win', 'tcplen', 'pcap', 'yahoo', 'csrsv', 'exe', 'http', 'ahost', 'aconnection', 'keep', 'alive', 'pcap', 'ex', 'http', 'uri', 'yahoo', 'csrsv', 'exe', 'ex', 'http', 'hostname', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'e', 'f', 'e', 'lhql', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'lowercaseurlcorrelation', 'yahoo', 'csrsv', 'exe', 'srcip', 'urlcorrelation', 'yahoo', 'csrsv', 'exe', 'vendorreference', 'vid', 'foreseeconndirection', 'outgoing', 'refererproxycorrelationurl', 'null', 'foreseeexternalip', 'eventtypeid', 'unique', 'event', 'hash', 'ontologyid', 'foreseeinternalip', 'urlpath', 'yahoo', 'csrsv', 'exe', 'srchostname', 'lhql', 'inspectorruleid', 'inspectoreventid', 'httpmethod', 'get', 'netacuity', 'destination', 'organization', 'ecatel', 'ltd', 'vendoreventid', 'device', 'id', 'foreseemaliciousprobability', 'event', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'tcpflags', 'ap', 'agentid', 'srchostname', 'lhql', 'cv', 'foreseedstipgeo', 'den', 'dolder', 'nld', 'devip', 'inlineaction', 'proto', 'tcp', 'dstport', 'vendorpriority', 'ileatdatacenter', 'true', 'vendorsigid', 'srcport', 'globalproxycorrelationurl', 'csrsv', 'host', 'dstip', 'source', 'network', 'type', 'internal', 'url', 'yahoo', 'csrsv', 'exe', 'urlfullpath', 'yahoo', 'csrsv', 'exe', 'urlhost', 'irreceivedtime', 'action', 'blocked', 'ctainstanceid', 'vendorversion', 'httpversion', 'http', 'logtimestamp', 'foreseemaliciouscomment', 'negativeevaluationthreshold', 'positiveevaluationthreshold', 'modelversion', 'classifiertype', 'naivebayes', 'annotatorlist', 'action', 'blocked', 'eventtypeid', 'ontologyid', 'evaluationmodels', 'nb', 'global', 'model', 'netacuity', 'destination', 'isp', 'ecatel', 'ltd', 'device', 'network', 'type', 'internal', 'srcmacaddress', 'e', 'f', 'e', 'sherlockruleid', 'eventtypepriority'] processed_text: ['security', 'incident', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'detail', 'event', 'id', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbcdcc', 'ack', 'xec', 'win', 'tcplen', 'pcap', 'yahoo', 'csrsv', 'exe', 'http', 'ahost', 'aconnection', 'keep', 'alive', 'pcap', 'ex', 'http', 'uri', 'yahoo', 'csrsv', 'exe', 'ex', 'http', 'hostname', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'e', 'f', 'e', 'lhql', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'lowercaseurlcorrelation', 'yahoo', 'csrsv', 'exe', 'srcip', 'urlcorrelation', 'yahoo', 'csrsv', 'exe', 'vendorreference', 'vid', 'foreseeconndirection', 'outgoing', 'refererproxycorrelationurl', 'null', 'foreseeexternalip', 'eventtypeid', 'unique', 'event', 'hash', 'ontologyid', 'foreseeinternalip', 'urlpath', 'yahoo', 'csrsv', 'exe', 'srchostname', 'lhql', 'inspectorruleid', 'inspectoreventid', 'httpmethod', 'get', 'netacuity', 'destination', 'organization', 'ecatel', 'ltd', 'vendoreventid', 'device', 'id', 'foreseemaliciousprobability', 'event', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'tcpflags', 'ap', 'agentid', 'srchostname', 'lhql', 'cv', 'foreseedstipgeo', 'den', 'dolder', 'nld', 'devip', 'inlineaction', 'proto', 'tcp', 'dstport', 'vendorpriority', 'ileatdatacenter', 'true', 'vendorsigid', 'srcport', 'globalproxycorrelationurl', 'csrsv', 'host', 'dstip', 'source', 'network', 'type', 'internal', 'url', 'yahoo', 'csrsv', 'exe', 'urlfullpath', 'yahoo', 'csrsv', 'exe', 'urlhost', 'irreceivedtime', 'action', 'blocked', 'ctainstanceid', 'vendorversion', 'httpversion', 'http', 'logtimestamp', 'foreseemaliciouscomment', 'negativeevaluationthreshold', 'positiveevaluationthreshold', 'modelversion', 'classifiertype', 'naivebayes', 'annotatorlist', 'action', 'blocked', 'eventtypeid', 'ontologyid', 'evaluationmodels', 'nb', 'global', 'model', 'netacuity', 'destination', 'isp', 'ecatel', 'ltd', 'device', 'network', 'type', 'internal', 'srcmacaddress', 'e', 'f', 'e', 'sherlockruleid', 'eventtypepriority'] list_processed_text: [['security'], ['incident'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['source'], ['ip'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['event'], ['detail'], ['event'], ['id'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['trojan'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['xref'], ['vid'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xfbcdcc'], ['ack'], ['xec'], ['win'], ['tcplen'], ['pcap'], ['yahoo'], ['csrsv'], ['exe'], ['http'], ['ahost'], ['aconnection'], ['keep'], ['alive'], ['pcap'], ['ex'], ['http'], ['uri'], ['yahoo'], ['csrsv'], ['exe'], ['ex'], ['http'], ['hostname'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['e'], ['f'], ['e'], ['lhql'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['lowercaseurlcorrelation'], ['yahoo'], ['csrsv'], ['exe'], ['srcip'], ['urlcorrelation'], ['yahoo'], ['csrsv'], ['exe'], ['vendorreference'], ['vid'], ['foreseeconndirection'], ['outgoing'], ['refererproxycorrelationurl'], ['null'], ['foreseeexternalip'], ['eventtypeid'], ['unique'], ['event'], ['hash'], ['ontologyid'], ['foreseeinternalip'], ['urlpath'], ['yahoo'], ['csrsv'], ['exe'], ['srchostname'], ['lhql'], ['inspectorruleid'], ['inspectoreventid'], ['httpmethod'], ['get'], ['netacuity'], ['destination'], ['organization'], ['ecatel'], ['ltd'], ['vendoreventid'], ['device'], ['id'], ['foreseemaliciousprobability'], ['event'], ['summary'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['trojan'], ['tcpflags'], ['ap'], ['agentid'], ['srchostname'], ['lhql'], ['cv'], ['foreseedstipgeo'], ['den'], ['dolder'], ['nld'], ['devip'], ['inlineaction'], ['proto'], ['tcp'], ['dstport'], ['vendorpriority'], ['ileatdatacenter'], ['true'], ['vendorsigid'], ['srcport'], ['globalproxycorrelationurl'], ['csrsv'], ['host'], ['dstip'], ['source'], ['network'], ['type'], ['internal'], ['url'], ['yahoo'], ['csrsv'], ['exe'], ['urlfullpath'], ['yahoo'], ['csrsv'], ['exe'], ['urlhost'], ['irreceivedtime'], ['action'], ['blocked'], ['ctainstanceid'], ['vendorversion'], ['httpversion'], ['http'], ['logtimestamp'], ['foreseemaliciouscomment'], ['negativeevaluationthreshold'], ['positiveevaluationthreshold'], ['modelversion'], ['classifiertype'], ['naivebayes'], ['annotatorlist'], ['action'], ['blocked'], ['eventtypeid'], ['ontologyid'], ['evaluationmodels'], ['nb'], ['global'], ['model'], ['netacuity'], ['destination'], ['isp'], ['ecatel'], ['ltd'], ['device'], ['network'], ['type'], ['internal'], ['srcmacaddress'], ['e'], ['f'], ['e'], ['sherlockruleid'], ['eventtypepriority']] k: 2965 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 2966 len: <class 'list'> Data: ['hp', 'hp'] processed_text: ['hp', 'hp'] list_processed_text: [['hp'], ['hp']] k: 2967 len: <class 'list'> Data: ['zpononpo', 'mp', 'data', 'incorrect', 'zpononpo', 'mp', 'data', 'incorrect'] processed_text: ['zpononpo', 'mp', 'data', 'incorrect', 'zpononpo', 'mp', 'data', 'incorrect'] list_processed_text: [['zpononpo'], ['mp'], ['data'], ['incorrect'], ['zpononpo'], ['mp'], ['data'], ['incorrect']] k: 2968 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2969 len: <class 'list'> Data: ['question', 'taking', 'care', 'report', 'zzsdspc', 'realised', 'needed', 'customer', 'stock', 'bucket', 'needed', 'customer', 'order', 'already', 'completed', 'stock', 'reserved', 'order', 'therefore', 'stock', 'sit', 'ever', 'would', 'please', 'address', 'people', 'responsible', 'would', 'allow', 'u', 'reduce', 'stock', 'level'] processed_text: ['question', 'taking', 'care', 'report', 'zzsdspc', 'realised', 'needed', 'customer', 'stock', 'bucket', 'needed', 'customer', 'order', 'already', 'completed', 'stock', 'reserved', 'order', 'therefore', 'stock', 'sit', 'ever', 'would', 'please', 'address', 'people', 'responsible', 'would', 'allow', 'u', 'reduce', 'stock', 'level'] list_processed_text: [['question'], ['taking'], ['care'], ['report'], ['zzsdspc'], ['realised'], ['needed'], ['customer'], ['stock'], ['bucket'], ['needed'], ['customer'], ['order'], ['already'], ['completed'], ['stock'], ['reserved'], ['order'], ['therefore'], ['stock'], ['sit'], ['ever'], ['would'], ['please'], ['address'], ['people'], ['responsible'], ['would'], ['allow'], ['u'], ['reduce'], ['stock'], ['level']] k: 2970 len: <class 'list'> Data: ['user', 'creation', 'deletion', 'droracle', 'hostname', 'hostname', 'create', 'user', 'unix', 'team', 'user', 'sudo', 'privilege', 'trayton', 'neal', 'server', 'droracle', 'delete', 'user', 'markhty', 'snyder', 'gptmrqzu', 'muiqteyf', 'pollaurid', 'griener', 'server', 'hostname', 'hostname', 'droracle'] processed_text: ['user', 'creation', 'deletion', 'droracle', 'hostname', 'hostname', 'create', 'user', 'unix', 'team', 'user', 'sudo', 'privilege', 'trayton', 'neal', 'server', 'droracle', 'delete', 'user', 'markhty', 'snyder', 'gptmrqzu', 'muiqteyf', 'pollaurid', 'griener', 'server', 'hostname', 'hostname', 'droracle'] list_processed_text: [['user'], ['creation'], ['deletion'], ['droracle'], ['hostname'], ['hostname'], ['create'], ['user'], ['unix'], ['team'], ['user'], ['sudo'], ['privilege'], ['trayton'], ['neal'], ['server'], ['droracle'], ['delete'], ['user'], ['markhty'], ['snyder'], ['gptmrqzu'], ['muiqteyf'], ['pollaurid'], ['griener'], ['server'], ['hostname'], ['hostname'], ['droracle']] k: 2971 len: <class 'list'> Data: ['able', 'upload', 'engineering', 'tool', 'body', 'vpn', 'vpn'] processed_text: ['able', 'upload', 'engineering', 'tool', 'body', 'vpn', 'vpn'] list_processed_text: [['able'], ['upload'], ['engineering'], ['tool'], ['body'], ['vpn'], ['vpn']] k: 2972 len: <class 'list'> Data: ['password', 'mr', 'koburvmc', 'jwzlebap', 'hello', 'mr', 'rie', 'start', 'work', 'tuesday', 'october', 'please', 'reassign', 'password', 'mr', 'rie', 'probably', 'available', 'ro', "o'clock", 'best', 'regard'] processed_text: ['password', 'mr', 'koburvmc', 'jwzlebap', 'hello', 'mr', 'rie', 'start', 'work', 'tuesday', 'october', 'please', 'reassign', 'password', 'mr', 'rie', 'probably', 'available', 'ro', "o'clock", 'best', 'regard'] list_processed_text: [['password'], ['mr'], ['koburvmc'], ['jwzlebap'], ['hello'], ['mr'], ['rie'], ['start'], ['work'], ['tuesday'], ['october'], ['please'], ['reassign'], ['password'], ['mr'], ['rie'], ['probably'], ['available'], ['ro'], ["o'clock"], ['best'], ['regard']] k: 2973 len: <class 'list'> Data: ['bridgex', 'lacw', 'monitoring', 'tool', 'robot', 'transaction', 'bridgex', 'lacw', 'monitoring', 'tool', 'robot', 'transaction', 'copy', 'netperfmon', 'event', 'log', 'transaction', 'bridgex', 'lacw', 'reason', 'step', 'uploading', 'excel', 'file', 'step', 'failed', 'element', 'file', 'upload', 'field', 'found', 'action', 'executed', 'successfully', 'hi', 'team', 'got', 'alert', 'monitoring', 'tool', 'checked', 'basis', 'team', 'issue', 'side'] processed_text: ['bridgex', 'lacw', 'monitoring', 'tool', 'robot', 'transaction', 'bridgex', 'lacw', 'monitoring', 'tool', 'robot', 'transaction', 'copy', 'netperfmon', 'event', 'log', 'transaction', 'bridgex', 'lacw', 'reason', 'step', 'uploading', 'excel', 'file', 'step', 'failed', 'element', 'file', 'upload', 'field', 'found', 'action', 'executed', 'successfully', 'hi', 'team', 'got', 'alert', 'monitoring', 'tool', 'checked', 'basis', 'team', 'issue', 'side'] list_processed_text: [['bridgex'], ['lacw'], ['monitoring'], ['tool'], ['robot'], ['transaction'], ['bridgex'], ['lacw'], ['monitoring'], ['tool'], ['robot'], ['transaction'], ['copy'], ['netperfmon'], ['event'], ['log'], ['transaction'], ['bridgex'], ['lacw'], ['reason'], ['step'], ['uploading'], ['excel'], ['file'], ['step'], ['failed'], ['element'], ['file'], ['upload'], ['field'], ['found'], ['action'], ['executed'], ['successfully'], ['hi'], ['team'], ['got'], ['alert'], ['monitoring'], ['tool'], ['checked'], ['basis'], ['team'], ['issue'], ['side']] k: 2974 len: <class 'list'> Data: ['number', 'gso', 'working', 'number', 'gso', 'working', 'germany', 'usa', 'call', 'landing', 'phone', 'caller', 'hear', 'anything', 'communication', 'one', 'way', 'agent', 'hear', 'caller'] processed_text: ['number', 'gso', 'working', 'number', 'gso', 'working', 'germany', 'usa', 'call', 'landing', 'phone', 'caller', 'hear', 'anything', 'communication', 'one', 'way', 'agent', 'hear', 'caller'] list_processed_text: [['number'], ['gso'], ['working'], ['number'], ['gso'], ['working'], ['germany'], ['usa'], ['call'], ['landing'], ['phone'], ['caller'], ['hear'], ['anything'], ['communication'], ['one'], ['way'], ['agent'], ['hear'], ['caller']] k: 2975 len: <class 'list'> Data: ['network', 'outage', 'kingston', 'pa', 'site', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'noi', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'kingston', 'pa', 'site', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'noi', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['kingston'], ['pa'], ['site'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['noi'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 2976 len: <class 'list'> Data: ['printer', 'prtsg', 'hello', 'team', 'please', 'help', 'confirm', 'printer', 'prtsg', 'able', 'configure', 'side'] processed_text: ['printer', 'prtsg', 'hello', 'team', 'please', 'help', 'confirm', 'printer', 'prtsg', 'able', 'configure', 'side'] list_processed_text: [['printer'], ['prtsg'], ['hello'], ['team'], ['please'], ['help'], ['confirm'], ['printer'], ['prtsg'], ['able'], ['configure'], ['side']] k: 2977 len: <class 'list'> Data: ['erp', 'access', 'issue', 'passwort', 'zur', 'ck', 'setzen', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'reisenkostenabrechnung', 'nicht', 'glich', 'da', 'zu', 'viele', 'falsche', 'anmeldungen', 'bitte', 'passwort', 'zur', 'ck', 'setzen', 'danke', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'passwort', 'zur', 'ck', 'setzen', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'reisenkostenabrechnung', 'nicht', 'glich', 'da', 'zu', 'viele', 'falsche', 'anmeldungen', 'bitte', 'passwort', 'zur', 'ck', 'setzen', 'danke', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['passwort'], ['zur'], ['ck'], ['setzen'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['reisenkostenabrechnung'], ['nicht'], ['glich'], ['da'], ['zu'], ['viele'], ['falsche'], ['anmeldungen'], ['bitte'], ['passwort'], ['zur'], ['ck'], ['setzen'], ['danke'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 2978 len: <class 'list'> Data: ['reactivate', 'ruenzm', 'ceo', 'usa', 'deloro', 'group', 'urgent', 'reactivate', 'ruenzm', 'ceo', 'usa', 'deloro', 'group', 'urgent'] processed_text: ['reactivate', 'ruenzm', 'ceo', 'usa', 'deloro', 'group', 'urgent', 'reactivate', 'ruenzm', 'ceo', 'usa', 'deloro', 'group', 'urgent'] list_processed_text: [['reactivate'], ['ruenzm'], ['ceo'], ['usa'], ['deloro'], ['group'], ['urgent'], ['reactivate'], ['ruenzm'], ['ceo'], ['usa'], ['deloro'], ['group'], ['urgent']] k: 2979 len: <class 'list'> Data: ['outlook', 'indexing', 'able', 'use', 'search', 'outlook', 'week', 'since', 'notice', 'element', 'currently', 'indexed', 'outlook', 'appears', 'also', 'ran', 'pc', 'weekend', 'outlook', 'open', 'far', 'always', 'current', 'ssen', 'element', 'still', 'indexed', 'yesterday', 'e', 'ca', 'element', 'massive', 'problem', "can't", 'find', 'mail', 'year', 'ago', 'search', 'function'] processed_text: ['outlook', 'indexing', 'able', 'use', 'search', 'outlook', 'week', 'since', 'notice', 'element', 'currently', 'indexed', 'outlook', 'appears', 'also', 'ran', 'pc', 'weekend', 'outlook', 'open', 'far', 'always', 'current', 'ssen', 'element', 'still', 'indexed', 'yesterday', 'e', 'ca', 'element', 'massive', 'problem', "can't", 'find', 'mail', 'year', 'ago', 'search', 'function'] list_processed_text: [['outlook'], ['indexing'], ['able'], ['use'], ['search'], ['outlook'], ['week'], ['since'], ['notice'], ['element'], ['currently'], ['indexed'], ['outlook'], ['appears'], ['also'], ['ran'], ['pc'], ['weekend'], ['outlook'], ['open'], ['far'], ['always'], ['current'], ['ssen'], ['element'], ['still'], ['indexed'], ['yesterday'], ['e'], ['ca'], ['element'], ['massive'], ['problem'], ["can't"], ['find'], ['mail'], ['year'], ['ago'], ['search'], ['function']] k: 2980 len: <class 'list'> Data: ['unlock', 'erp', 'account', 'user', 'id', 'murakt', 'please', 'unlock', 'erp', 'account', 'user', 'id', 'murakt'] processed_text: ['unlock', 'erp', 'account', 'user', 'id', 'murakt', 'please', 'unlock', 'erp', 'account', 'user', 'id', 'murakt'] list_processed_text: [['unlock'], ['erp'], ['account'], ['user'], ['id'], ['murakt'], ['please'], ['unlock'], ['erp'], ['account'], ['user'], ['id'], ['murakt']] k: 2981 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2982 len: <class 'list'> Data: ['login', 'blocked', 'hello', 'able', 'login', 'business', 'client', 'due', 'wrong', 'password', 'pl', 'unblock', 'let', 'know', 'existing', 'password', 'reset', 'new', 'password'] processed_text: ['login', 'blocked', 'hello', 'able', 'login', 'business', 'client', 'due', 'wrong', 'password', 'pl', 'unblock', 'let', 'know', 'existing', 'password', 'reset', 'new', 'password'] list_processed_text: [['login'], ['blocked'], ['hello'], ['able'], ['login'], ['business'], ['client'], ['due'], ['wrong'], ['password'], ['pl'], ['unblock'], ['let'], ['know'], ['existing'], ['password'], ['reset'], ['new'], ['password']] k: 2983 len: <class 'list'> Data: ['look', 'opening', 'look', 'opening', 'showing', 'error', 'message', 'able', 'access', 'mail'] processed_text: ['look', 'opening', 'look', 'opening', 'showing', 'error', 'message', 'able', 'access', 'mail'] list_processed_text: [['look'], ['opening'], ['look'], ['opening'], ['showing'], ['error'], ['message'], ['able'], ['access'], ['mail']] k: 2984 len: <class 'list'> Data: ['unable', 'login', 'es', 'protel', 'unable', 'login', 'es', 'portal'] processed_text: ['unable', 'login', 'es', 'protel', 'unable', 'login', 'es', 'portal'] list_processed_text: [['unable'], ['login'], ['es'], ['protel'], ['unable'], ['login'], ['es'], ['portal']] k: 2985 len: <class 'list'> Data: ['unable', 'login', 'window', 'unable', 'login', 'window'] processed_text: ['unable', 'login', 'window', 'unable', 'login', 'window'] list_processed_text: [['unable'], ['login'], ['window'], ['unable'], ['login'], ['window']] k: 2986 len: <class 'list'> Data: ['reset', 'password', 'knemilvx', 'dvqtziya', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'knemilvx', 'dvqtziya', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['knemilvx'], ['dvqtziya'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 2987 len: <class 'list'> Data: ['atp', 'mm', 'issue', 'hello', 'sir', 'schedule', 'agreement', 'mm', 'pc', 'request', 'delivery', 'time', 'stock', 'meet', 'agreement', 'pc', 'created', 'plant', 'took', 'current', 'plant', 'stock', 'confirmed', 'u', 'pc', 'cannot', 'meet', 'customer', 'demand', 'want', 'check', 'current', 'rule', 'confirm', 'date', 'stock', 'meet', 'back', 'order', 'previous', 'order'] processed_text: ['atp', 'mm', 'issue', 'hello', 'sir', 'schedule', 'agreement', 'mm', 'pc', 'request', 'delivery', 'time', 'stock', 'meet', 'agreement', 'pc', 'created', 'plant', 'took', 'current', 'plant', 'stock', 'confirmed', 'u', 'pc', 'cannot', 'meet', 'customer', 'demand', 'want', 'check', 'current', 'rule', 'confirm', 'date', 'stock', 'meet', 'back', 'order', 'previous', 'order'] list_processed_text: [['atp'], ['mm'], ['issue'], ['hello'], ['sir'], ['schedule'], ['agreement'], ['mm'], ['pc'], ['request'], ['delivery'], ['time'], ['stock'], ['meet'], ['agreement'], ['pc'], ['created'], ['plant'], ['took'], ['current'], ['plant'], ['stock'], ['confirmed'], ['u'], ['pc'], ['cannot'], ['meet'], ['customer'], ['demand'], ['want'], ['check'], ['current'], ['rule'], ['confirm'], ['date'], ['stock'], ['meet'], ['back'], ['order'], ['previous'], ['order']] k: 2988 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 2989 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 2990 len: <class 'list'> Data: ['ba', 'printer', 'still', 'keep', 'printing', 'error', 'task', 'please', 'help', 'faced', 'problem', 'ie', 'printer', 'ba', 'keep', 'printing', 'job', 'wrongly', 'assigned', 'user', 'vvkujup', 'turned', 'printer', 'lan', 'yesterday', 'evening', 'turn', 'printer', 'plug', 'lan', 'morning', 'however', 'printer', 'still', 'printing', 'job', 'checked', 'local', 'printer', 'team', 'suggested', 'change', 'ip', 'address', 'ba', 'attached', 'please', 'help', 'u', 'stop', 'error', 'printing', 'advise', 'back', 'u', 'aerp'] processed_text: ['ba', 'printer', 'still', 'keep', 'printing', 'error', 'task', 'please', 'help', 'faced', 'problem', 'ie', 'printer', 'ba', 'keep', 'printing', 'job', 'wrongly', 'assigned', 'user', 'vvkujup', 'turned', 'printer', 'lan', 'yesterday', 'evening', 'turn', 'printer', 'plug', 'lan', 'morning', 'however', 'printer', 'still', 'printing', 'job', 'checked', 'local', 'printer', 'team', 'suggested', 'change', 'ip', 'address', 'ba', 'attached', 'please', 'help', 'u', 'stop', 'error', 'printing', 'advise', 'back', 'u', 'aerp'] list_processed_text: [['ba'], ['printer'], ['still'], ['keep'], ['printing'], ['error'], ['task'], ['please'], ['help'], ['faced'], ['problem'], ['ie'], ['printer'], ['ba'], ['keep'], ['printing'], ['job'], ['wrongly'], ['assigned'], ['user'], ['vvkujup'], ['turned'], ['printer'], ['lan'], ['yesterday'], ['evening'], ['turn'], ['printer'], ['plug'], ['lan'], ['morning'], ['however'], ['printer'], ['still'], ['printing'], ['job'], ['checked'], ['local'], ['printer'], ['team'], ['suggested'], ['change'], ['ip'], ['address'], ['ba'], ['attached'], ['please'], ['help'], ['u'], ['stop'], ['error'], ['printing'], ['advise'], ['back'], ['u'], ['aerp']] k: 2991 len: <class 'list'> Data: ['erp', 'mae', 'window', 'ad', 'account', 'locked', 'erp', 'mae', 'ad', 'account', 'locked', 'hana', 'production', 'job', 'failing', 'unlock', 'immediately', 'share', 'root', 'cause', 'please', 'assign', 'safrgyynjit', 'team', 'reach', 'immediately', 'call'] processed_text: ['erp', 'mae', 'window', 'ad', 'account', 'locked', 'erp', 'mae', 'ad', 'account', 'locked', 'hana', 'production', 'job', 'failing', 'unlock', 'immediately', 'share', 'root', 'cause', 'please', 'assign', 'safrgyynjit', 'team', 'reach', 'immediately', 'call'] list_processed_text: [['erp'], ['mae'], ['window'], ['ad'], ['account'], ['locked'], ['erp'], ['mae'], ['ad'], ['account'], ['locked'], ['hana'], ['production'], ['job'], ['failing'], ['unlock'], ['immediately'], ['share'], ['root'], ['cause'], ['please'], ['assign'], ['safrgyynjit'], ['team'], ['reach'], ['immediately'], ['call']] k: 2992 len: <class 'list'> Data: ['ask', 'zwip', 'report', 'sae', 'zwip', 'report', 'sale', 'order', 'shown', 'customer', 'sale', 'order', 'well', 'please', 'check', 'reason', 'let', 'know', 'show', 'information', 'zwip', 'plant', 'plant', 'prodcution', 'order'] processed_text: ['ask', 'zwip', 'report', 'sae', 'zwip', 'report', 'sale', 'order', 'shown', 'customer', 'sale', 'order', 'well', 'please', 'check', 'reason', 'let', 'know', 'show', 'information', 'zwip', 'plant', 'plant', 'prodcution', 'order'] list_processed_text: [['ask'], ['zwip'], ['report'], ['sae'], ['zwip'], ['report'], ['sale'], ['order'], ['shown'], ['customer'], ['sale'], ['order'], ['well'], ['please'], ['check'], ['reason'], ['let'], ['know'], ['show'], ['information'], ['zwip'], ['plant'], ['plant'], ['prodcution'], ['order']] k: 2993 len: <class 'list'> Data: ['win', 'win'] processed_text: ['win', 'win'] list_processed_text: [['win'], ['win']] k: 2994 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2995 len: <class 'list'> Data: ['metal', 'cutting', 'technology', 'l', 'company', 'zqt', 'hi', 'team', 'created', 'attached', 'quote', 'however', 'showing', 'correctly', 'see', 'attached', 'please', 'fix', 'soon', 'possible'] processed_text: ['metal', 'cutting', 'technology', 'l', 'company', 'zqt', 'hi', 'team', 'created', 'attached', 'quote', 'however', 'showing', 'correctly', 'see', 'attached', 'please', 'fix', 'soon', 'possible'] list_processed_text: [['metal'], ['cutting'], ['technology'], ['l'], ['company'], ['zqt'], ['hi'], ['team'], ['created'], ['attached'], ['quote'], ['however'], ['showing'], ['correctly'], ['see'], ['attached'], ['please'], ['fix'], ['soon'], ['possible']] k: 2996 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 2997 len: <class 'list'> Data: ['download', 'issue', 'trying', 'download', 'software', 'tooling', 'report', 'company', 'dell', 'keep', 'getting', 'error', 'message', 'assume', 'someone', 'take', 'remote', 'access', 'computer', 'see', 'going', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com', 'www', 'company', 'com', 'engineering', 'tool', 'en', 'home', 'html'] processed_text: ['download', 'issue', 'trying', 'download', 'software', 'tooling', 'report', 'company', 'dell', 'keep', 'getting', 'error', 'message', 'assume', 'someone', 'take', 'remote', 'access', 'computer', 'see', 'going', 'tommyth', 'duyhurmont', 'channel', 'partner', 'sale', 'engineer', 'company', 'inc', 'www', 'company', 'com', 'www', 'company', 'com', 'engineering', 'tool', 'en', 'home', 'html'] list_processed_text: [['download'], ['issue'], ['trying'], ['download'], ['software'], ['tooling'], ['report'], ['company'], ['dell'], ['keep'], ['getting'], ['error'], ['message'], ['assume'], ['someone'], ['take'], ['remote'], ['access'], ['computer'], ['see'], ['going'], ['tommyth'], ['duyhurmont'], ['channel'], ['partner'], ['sale'], ['engineer'], ['company'], ['inc'], ['www'], ['company'], ['com'], ['www'], ['company'], ['com'], ['engineering'], ['tool'], ['en'], ['home'], ['html']] k: 2998 len: <class 'list'> Data: ['another', 'shipment', 'process', 'commodity', 'detail', 'error', 'inc', 'dn', 'sto', 'consignment', 'urgent', 'resolved', 'quickly', 'please'] processed_text: ['another', 'shipment', 'process', 'commodity', 'detail', 'error', 'inc', 'dn', 'sto', 'consignment', 'urgent', 'resolved', 'quickly', 'please'] list_processed_text: [['another'], ['shipment'], ['process'], ['commodity'], ['detail'], ['error'], ['inc'], ['dn'], ['sto'], ['consignment'], ['urgent'], ['resolved'], ['quickly'], ['please']] k: 2999 len: <class 'list'> Data: ['cannot', 'connect', 'reason', 'cannot', 'connect', 'vpn', 'tried', 'usual', 'username', 'password', 'working'] processed_text: ['cannot', 'connect', 'reason', 'cannot', 'connect', 'vpn', 'tried', 'usual', 'username', 'password', 'working'] list_processed_text: [['cannot'], ['connect'], ['reason'], ['cannot'], ['connect'], ['vpn'], ['tried'], ['usual'], ['username'], ['password'], ['working']] k: 3000 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3001 len: <class 'list'> Data: ['user', 'getting', 'prompt', 'upgrade', 'java', 'user', 'getting', 'prompt', 'upgrade', 'java', 'connected', 'user', 'system', 'using', 'teamviewer', 'advised', 'user', 'complete', 'installation', 'issue', 'resolved'] processed_text: ['user', 'getting', 'prompt', 'upgrade', 'java', 'user', 'getting', 'prompt', 'upgrade', 'java', 'connected', 'user', 'system', 'using', 'teamviewer', 'advised', 'user', 'complete', 'installation', 'issue', 'resolved'] list_processed_text: [['user'], ['getting'], ['prompt'], ['upgrade'], ['java'], ['user'], ['getting'], ['prompt'], ['upgrade'], ['java'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['advised'], ['user'], ['complete'], ['installation'], ['issue'], ['resolved']] k: 3002 len: <class 'list'> Data: ['erp', 'business', 'workplace', 'inbox', 'working', 'erp', 'inbox', 'smitrtgcj', 'working', 'created', 'background', 'report', 'run', 'deliver', 'erp', 'inbox', 'delivering', 'also', 'tried', 'create', 'mail', 'thru', 'erp', 'inbox', 'send', 'get', 'error', 'erp', 'user', 'christgry', 'smhdyhti', 'exist', 'even', 'though', 'show', 'soplant', 'transaction'] processed_text: ['erp', 'business', 'workplace', 'inbox', 'working', 'erp', 'inbox', 'smitrtgcj', 'working', 'created', 'background', 'report', 'run', 'deliver', 'erp', 'inbox', 'delivering', 'also', 'tried', 'create', 'mail', 'thru', 'erp', 'inbox', 'send', 'get', 'error', 'erp', 'user', 'christgry', 'smhdyhti', 'exist', 'even', 'though', 'show', 'soplant', 'transaction'] list_processed_text: [['erp'], ['business'], ['workplace'], ['inbox'], ['working'], ['erp'], ['inbox'], ['smitrtgcj'], ['working'], ['created'], ['background'], ['report'], ['run'], ['deliver'], ['erp'], ['inbox'], ['delivering'], ['also'], ['tried'], ['create'], ['mail'], ['thru'], ['erp'], ['inbox'], ['send'], ['get'], ['error'], ['erp'], ['user'], ['christgry'], ['smhdyhti'], ['exist'], ['even'], ['though'], ['show'], ['soplant'], ['transaction']] k: 3003 len: <class 'list'> Data: ['custom', 'quote', 'saving', 'receive', 'error', 'message', 'enter', 'rate', 'usd', 'rate', 'type', 'system', 'setting', 'name', 'lagqcompanyo', 'xqtldrcs', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'custom', 'quote', 'saving', 'receive', 'error', 'message', 'enter', 'rate', 'usd', 'rate', 'type', 'system', 'setting', 'see', 'attachment'] processed_text: ['custom', 'quote', 'saving', 'receive', 'error', 'message', 'enter', 'rate', 'usd', 'rate', 'type', 'system', 'setting', 'name', 'lagqcompanyo', 'xqtldrcs', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'custom', 'quote', 'saving', 'receive', 'error', 'message', 'enter', 'rate', 'usd', 'rate', 'type', 'system', 'setting', 'see', 'attachment'] list_processed_text: [['custom'], ['quote'], ['saving'], ['receive'], ['error'], ['message'], ['enter'], ['rate'], ['usd'], ['rate'], ['type'], ['system'], ['setting'], ['name'], ['lagqcompanyo'], ['xqtldrcs'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['custom'], ['quote'], ['saving'], ['receive'], ['error'], ['message'], ['enter'], ['rate'], ['usd'], ['rate'], ['type'], ['system'], ['setting'], ['see'], ['attachment']] k: 3004 len: <class 'list'> Data: ['business', 'client', 'issue', 'briefly', 'describe', 'trying', 'issue', 'encountered', 'trying', 'access', 'material', 'drawing', 'getting', 'error', 'message', 'log', 'see', 'attached', 'please', 'include', 'screenshot', 'error', 'message'] processed_text: ['business', 'client', 'issue', 'briefly', 'describe', 'trying', 'issue', 'encountered', 'trying', 'access', 'material', 'drawing', 'getting', 'error', 'message', 'log', 'see', 'attached', 'please', 'include', 'screenshot', 'error', 'message'] list_processed_text: [['business'], ['client'], ['issue'], ['briefly'], ['describe'], ['trying'], ['issue'], ['encountered'], ['trying'], ['access'], ['material'], ['drawing'], ['getting'], ['error'], ['message'], ['log'], ['see'], ['attached'], ['please'], ['include'], ['screenshot'], ['error'], ['message']] k: 3005 len: <class 'list'> Data: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler']] k: 3006 len: <class 'list'> Data: ['reset', 'password', 'sid', 'name', 'fybwjzhx', 'ojgrpafb', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'sid'] processed_text: ['reset', 'password', 'sid', 'name', 'fybwjzhx', 'ojgrpafb', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'sid'] list_processed_text: [['reset'], ['password'], ['sid'], ['name'], ['fybwjzhx'], ['ojgrpafb'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['reset'], ['password'], ['sid']] k: 3007 len: <class 'list'> Data: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'bw', 'please', 'reset', 'password'] processed_text: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'bw', 'please', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['fueiklyv'], ['jargqpkm'], ['erp'], ['production'], ['bw'], ['please'], ['reset'], ['password']] k: 3008 len: <class 'list'> Data: ['installed', 'analysis', 'microsoft', 'excel', 'erp', 'business', 'intelligence', 'getting', 'error', 'message', 'able', 'open', 'analysis', 'microsoft', 'excel', 'click', 'log', 'erp', 'business', 'object', 'get', 'error', 'message', 'say', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly', 'click', 'logfile', 'folder', 'get', 'dialog', 'box', 'way', 'window', 'open', 'file', 'file', 'launcher', 'log', 'glf', 'asked', 'find', 'programdnty', 'open', 'file'] processed_text: ['installed', 'analysis', 'microsoft', 'excel', 'erp', 'business', 'intelligence', 'getting', 'error', 'message', 'able', 'open', 'analysis', 'microsoft', 'excel', 'click', 'log', 'erp', 'business', 'object', 'get', 'error', 'message', 'say', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly', 'click', 'logfile', 'folder', 'get', 'dialog', 'box', 'way', 'window', 'open', 'file', 'file', 'launcher', 'log', 'glf', 'asked', 'find', 'programdnty', 'open', 'file'] list_processed_text: [['installed'], ['analysis'], ['microsoft'], ['excel'], ['erp'], ['business'], ['intelligence'], ['getting'], ['error'], ['message'], ['able'], ['open'], ['analysis'], ['microsoft'], ['excel'], ['click'], ['log'], ['erp'], ['business'], ['object'], ['get'], ['error'], ['message'], ['say'], ['launcher'], ['exited'], ['error'], ['see'], ['log'], ['file'], ['detail'], ['analysis'], ['add'], ['registered'], ['correctly'], ['click'], ['logfile'], ['folder'], ['get'], ['dialog'], ['box'], ['way'], ['window'], ['open'], ['file'], ['file'], ['launcher'], ['log'], ['glf'], ['asked'], ['find'], ['programdnty'], ['open'], ['file']] k: 3009 len: <class 'list'> Data: ['channel', 'management', 'claim', 'issue', 'claim', 'approved', 'showing', 'settlement', 'list', 'get', 'credit', 'generate', 'also', 'reject', 'order', 'create', 'new', 'claim', 'created', 'new', 'claim', 'replace', 'concern', 'proceeding', 'process', 'cant', 'reject', 'first', 'please', 'advise', 'owe', 'customer', 'credit', 'new', 'claim'] processed_text: ['channel', 'management', 'claim', 'issue', 'claim', 'approved', 'showing', 'settlement', 'list', 'get', 'credit', 'generate', 'also', 'reject', 'order', 'create', 'new', 'claim', 'created', 'new', 'claim', 'replace', 'concern', 'proceeding', 'process', 'cant', 'reject', 'first', 'please', 'advise', 'owe', 'customer', 'credit', 'new', 'claim'] list_processed_text: [['channel'], ['management'], ['claim'], ['issue'], ['claim'], ['approved'], ['showing'], ['settlement'], ['list'], ['get'], ['credit'], ['generate'], ['also'], ['reject'], ['order'], ['create'], ['new'], ['claim'], ['created'], ['new'], ['claim'], ['replace'], ['concern'], ['proceeding'], ['process'], ['cant'], ['reject'], ['first'], ['please'], ['advise'], ['owe'], ['customer'], ['credit'], ['new'], ['claim']] k: 3010 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3011 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3012 len: <class 'list'> Data: ['crm', 'addin', 'box', 'dont', 'stay', 'checked', 'gso', 'please', 'reach', 'lryturhy', 'correct', 'addin', 'issue', 'rechecking', 'crm', 'addin', 'box', 'closing', 'outlook', 'become', 'unchecked', 'addin', 'portion', 'ribbon', 'dierppears'] processed_text: ['crm', 'addin', 'box', 'dont', 'stay', 'checked', 'gso', 'please', 'reach', 'lryturhy', 'correct', 'addin', 'issue', 'rechecking', 'crm', 'addin', 'box', 'closing', 'outlook', 'become', 'unchecked', 'addin', 'portion', 'ribbon', 'dierppears'] list_processed_text: [['crm'], ['addin'], ['box'], ['dont'], ['stay'], ['checked'], ['gso'], ['please'], ['reach'], ['lryturhy'], ['correct'], ['addin'], ['issue'], ['rechecking'], ['crm'], ['addin'], ['box'], ['closing'], ['outlook'], ['become'], ['unchecked'], ['addin'], ['portion'], ['ribbon'], ['dierppears']] k: 3013 len: <class 'list'> Data: ['expense', 'report', 'blocked', 'expense', 'report', 'blocked'] processed_text: ['expense', 'report', 'blocked', 'expense', 'report', 'blocked'] list_processed_text: [['expense'], ['report'], ['blocked'], ['expense'], ['report'], ['blocked']] k: 3014 len: <class 'list'> Data: ['working', 'fax', 'line', 'usa', 'see', 'without', 'order', 'part', 'working', 'fax', 'line', 'usa', 'see', 'without', 'order', 'part'] processed_text: ['working', 'fax', 'line', 'usa', 'see', 'without', 'order', 'part', 'working', 'fax', 'line', 'usa', 'see', 'without', 'order', 'part'] list_processed_text: [['working'], ['fax'], ['line'], ['usa'], ['see'], ['without'], ['order'], ['part'], ['working'], ['fax'], ['line'], ['usa'], ['see'], ['without'], ['order'], ['part']] k: 3015 len: <class 'list'> Data: ['outlook', 'working', 'along', 'ok', 'morning', 'let', 'back', 'outlook', 'wlhxrogv', 'yawtxuod'] processed_text: ['outlook', 'working', 'along', 'ok', 'morning', 'let', 'back', 'outlook', 'wlhxrogv', 'yawtxuod'] list_processed_text: [['outlook'], ['working'], ['along'], ['ok'], ['morning'], ['let'], ['back'], ['outlook'], ['wlhxrogv'], ['yawtxuod']] k: 3016 len: <class 'list'> Data: ['working', 'getting', 'new', 'laptop', 'ready', 'working', 'getting', 'new', 'laptop', 'ready'] processed_text: ['working', 'getting', 'new', 'laptop', 'ready', 'working', 'getting', 'new', 'laptop', 'ready'] list_processed_text: [['working'], ['getting'], ['new'], ['laptop'], ['ready'], ['working'], ['getting'], ['new'], ['laptop'], ['ready']] k: 3017 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 3018 len: <class 'list'> Data: ['business', 'object', 'analysis', 'error', 'recently', 'changed', 'work', 'computer', 'gb', 'business', 'model', 'gb', 'engineering', 'model', 'frequently', 'use', 'business', 'object', 'analysis', 'excel', 'opening', 'file', 'saved', 'use', 'data', 'connection', 'running', 'error', 'prompt', 'try', 'migrate', 'connection', 'odbc', 'http', 'see', 'attached', 'error', 'familiar', 'cannot', 'refresh', 'data', 'old', 'workbook', 'someone', 'assist'] processed_text: ['business', 'object', 'analysis', 'error', 'recently', 'changed', 'work', 'computer', 'gb', 'business', 'model', 'gb', 'engineering', 'model', 'frequently', 'use', 'business', 'object', 'analysis', 'excel', 'opening', 'file', 'saved', 'use', 'data', 'connection', 'running', 'error', 'prompt', 'try', 'migrate', 'connection', 'odbc', 'http', 'see', 'attached', 'error', 'familiar', 'cannot', 'refresh', 'data', 'old', 'workbook', 'someone', 'assist'] list_processed_text: [['business'], ['object'], ['analysis'], ['error'], ['recently'], ['changed'], ['work'], ['computer'], ['gb'], ['business'], ['model'], ['gb'], ['engineering'], ['model'], ['frequently'], ['use'], ['business'], ['object'], ['analysis'], ['excel'], ['opening'], ['file'], ['saved'], ['use'], ['data'], ['connection'], ['running'], ['error'], ['prompt'], ['try'], ['migrate'], ['connection'], ['odbc'], ['http'], ['see'], ['attached'], ['error'], ['familiar'], ['cannot'], ['refresh'], ['data'], ['old'], ['workbook'], ['someone'], ['assist']] k: 3019 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3020 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3021 len: <class 'list'> Data: ['srvlavpwdrprd', 'company', 'company', 'com', 'responding', 'calibration', 'system', 'need', 'aerp', 'srvlavpwdrprd', 'company', 'company', 'com', 'responding', 'calibration', 'system', 'need', 'aerp'] processed_text: ['srvlavpwdrprd', 'company', 'company', 'com', 'responding', 'calibration', 'system', 'need', 'aerp', 'srvlavpwdrprd', 'company', 'company', 'com', 'responding', 'calibration', 'system', 'need', 'aerp'] list_processed_text: [['srvlavpwdrprd'], ['company'], ['company'], ['com'], ['responding'], ['calibration'], ['system'], ['need'], ['aerp'], ['srvlavpwdrprd'], ['company'], ['company'], ['com'], ['responding'], ['calibration'], ['system'], ['need'], ['aerp']] k: 3022 len: <class 'list'> Data: ['netweaver', 'access', 'hello', 'someone', 'help', 'netweaver', 'access'] processed_text: ['netweaver', 'access', 'hello', 'someone', 'help', 'netweaver', 'access'] list_processed_text: [['netweaver'], ['access'], ['hello'], ['someone'], ['help'], ['netweaver'], ['access']] k: 3023 len: <class 'list'> Data: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'erp', 'tried', 'using', 'window', 'login', 'password', 'working'] processed_text: ['reset', 'password', 'fueiklyv', 'jargqpkm', 'erp', 'production', 'erp', 'tried', 'using', 'window', 'login', 'password', 'working'] list_processed_text: [['reset'], ['password'], ['fueiklyv'], ['jargqpkm'], ['erp'], ['production'], ['erp'], ['tried'], ['using'], ['window'], ['login'], ['password'], ['working']] k: 3024 len: <class 'list'> Data: ['skype', 'certificate', 'error', 'skype', 'certificate', 'error'] processed_text: ['skype', 'certificate', 'error', 'skype', 'certificate', 'error'] list_processed_text: [['skype'], ['certificate'], ['error'], ['skype'], ['certificate'], ['error']] k: 3025 len: <class 'list'> Data: ['dealer', 'open', 'order', 'appearing', 'vkm', 'hi', 'please', 'raise', 'ticket', 'dealer', 'open', 'order', 'appearing', 'vkm', 'credit', 'check', 'even', 'though', 'credit', 'utilization', 'within', 'limit', 'started', 'changing', 'credit', 'term', 'open', 'order', 'gajthyana', 'hegdergyt', 'manager', 'finance', 'technical', 'assistance'] processed_text: ['dealer', 'open', 'order', 'appearing', 'vkm', 'hi', 'please', 'raise', 'ticket', 'dealer', 'open', 'order', 'appearing', 'vkm', 'credit', 'check', 'even', 'though', 'credit', 'utilization', 'within', 'limit', 'started', 'changing', 'credit', 'term', 'open', 'order', 'gajthyana', 'hegdergyt', 'manager', 'finance', 'technical', 'assistance'] list_processed_text: [['dealer'], ['open'], ['order'], ['appearing'], ['vkm'], ['hi'], ['please'], ['raise'], ['ticket'], ['dealer'], ['open'], ['order'], ['appearing'], ['vkm'], ['credit'], ['check'], ['even'], ['though'], ['credit'], ['utilization'], ['within'], ['limit'], ['started'], ['changing'], ['credit'], ['term'], ['open'], ['order'], ['gajthyana'], ['hegdergyt'], ['manager'], ['finance'], ['technical'], ['assistance']] k: 3026 len: <class 'list'> Data: ['client', 'company', 'inc', 'rejected', 'edi', 'inwarehouse', 'tool', 'nihtykki', 'mcgyuouald', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'client', 'company', 'inc', 'rejected', 'edi', 'inwarehouse', 'tool', 'hello', 'please', 'check', 'edi', 'file', 'see', 'rejected', 'system', 'provided', 'technical', 'support'] processed_text: ['client', 'company', 'inc', 'rejected', 'edi', 'inwarehouse', 'tool', 'nihtykki', 'mcgyuouald', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'client', 'company', 'inc', 'rejected', 'edi', 'inwarehouse', 'tool', 'hello', 'please', 'check', 'edi', 'file', 'see', 'rejected', 'system', 'provided', 'technical', 'support'] list_processed_text: [['client'], ['company'], ['inc'], ['rejected'], ['edi'], ['inwarehouse'], ['tool'], ['nihtykki'], ['mcgyuouald'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['client'], ['company'], ['inc'], ['rejected'], ['edi'], ['inwarehouse'], ['tool'], ['hello'], ['please'], ['check'], ['edi'], ['file'], ['see'], ['rejected'], ['system'], ['provided'], ['technical'], ['support']] k: 3027 len: <class 'list'> Data: ['pr', 'workflow', 'grhryueg', 'dewicrth', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'pr', 'workflow', 'hello', 'help', 'help', 'please', 'see', 'image', 'email', 'workflow', 'need', 'process', 'give', 'approve', 'reject', 'option', 'pull', 'detail', 'portal', 'also', 'accessing', 'outside', 'company', 'traveling', 'work'] processed_text: ['pr', 'workflow', 'grhryueg', 'dewicrth', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'pr', 'workflow', 'hello', 'help', 'help', 'please', 'see', 'image', 'email', 'workflow', 'need', 'process', 'give', 'approve', 'reject', 'option', 'pull', 'detail', 'portal', 'also', 'accessing', 'outside', 'company', 'traveling', 'work'] list_processed_text: [['pr'], ['workflow'], ['grhryueg'], ['dewicrth'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['pr'], ['workflow'], ['hello'], ['help'], ['help'], ['please'], ['see'], ['image'], ['email'], ['workflow'], ['need'], ['process'], ['give'], ['approve'], ['reject'], ['option'], ['pull'], ['detail'], ['portal'], ['also'], ['accessing'], ['outside'], ['company'], ['traveling'], ['work']] k: 3028 len: <class 'list'> Data: ['new', 'laptop', 'setup', 'help', 'create', 'configure', 'user', 'login', 'profile', 'outlook'] processed_text: ['new', 'laptop', 'setup', 'help', 'create', 'configure', 'user', 'login', 'profile', 'outlook'] list_processed_text: [['new'], ['laptop'], ['setup'], ['help'], ['create'], ['configure'], ['user'], ['login'], ['profile'], ['outlook']] k: 3029 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3030 len: <class 'list'> Data: ['unable', 'view', 'data', 'distributor', 'tool', 'account', 'unable', 'view', 'data', 'distributor', 'tool', 'account'] processed_text: ['unable', 'view', 'data', 'distributor', 'tool', 'account', 'unable', 'view', 'data', 'distributor', 'tool', 'account'] list_processed_text: [['unable'], ['view'], ['data'], ['distributor'], ['tool'], ['account'], ['unable'], ['view'], ['data'], ['distributor'], ['tool'], ['account']] k: 3031 len: <class 'list'> Data: ['dock', 'station', 'telephony', 'software', 'ip', 'phone', 'request', 'install', 'dock', 'station', 'ip', 'phone', 'telephony', 'software', 'application'] processed_text: ['dock', 'station', 'telephony', 'software', 'ip', 'phone', 'request', 'install', 'dock', 'station', 'ip', 'phone', 'telephony', 'software', 'application'] list_processed_text: [['dock'], ['station'], ['telephony'], ['software'], ['ip'], ['phone'], ['request'], ['install'], ['dock'], ['station'], ['ip'], ['phone'], ['telephony'], ['software'], ['application']] k: 3032 len: <class 'list'> Data: ['termination', 'action', 'johhdyanna', 'kadyuiluza', 'completed', 'hello', 'termination', 'johhdyanna', 'kadyuiluza', 'effective', 'approved'] processed_text: ['termination', 'action', 'johhdyanna', 'kadyuiluza', 'completed', 'hello', 'termination', 'johhdyanna', 'kadyuiluza', 'effective', 'approved'] list_processed_text: [['termination'], ['action'], ['johhdyanna'], ['kadyuiluza'], ['completed'], ['hello'], ['termination'], ['johhdyanna'], ['kadyuiluza'], ['effective'], ['approved']] k: 3033 len: <class 'list'> Data: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'conf', 'failed', 'job', 'scheduler', 'job', 'job', 'conf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['conf'], ['failed'], ['job'], ['scheduler']] k: 3034 len: <class 'list'> Data: ['vpn', 'connectivity', 'slow', 'vpn', 'connectivity', 'slow'] processed_text: ['vpn', 'connectivity', 'slow', 'vpn', 'connectivity', 'slow'] list_processed_text: [['vpn'], ['connectivity'], ['slow'], ['vpn'], ['connectivity'], ['slow']] k: 3035 len: <class 'list'> Data: ['vpn', 'disconnect', 'vpn', 'disconnect'] processed_text: ['vpn', 'disconnect', 'vpn', 'disconnect'] list_processed_text: [['vpn'], ['disconnect'], ['vpn'], ['disconnect']] k: 3036 len: <class 'list'> Data: ['erp', 'mae', 'id', 'seems', 'locked', 'hana', 'sid', 'erp', 'mae', 'id', 'seems', 'locked', 'hana', 'sid', 'request', 'unlock'] processed_text: ['erp', 'mae', 'id', 'seems', 'locked', 'hana', 'sid', 'erp', 'mae', 'id', 'seems', 'locked', 'hana', 'sid', 'request', 'unlock'] list_processed_text: [['erp'], ['mae'], ['id'], ['seems'], ['locked'], ['hana'], ['sid'], ['erp'], ['mae'], ['id'], ['seems'], ['locked'], ['hana'], ['sid'], ['request'], ['unlock']] k: 3037 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 3038 len: <class 'list'> Data: ['printer', 'printing', 'name', 'xernsfqa', 'uzvsnlbd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'receiving', 'error', 'message', 'trying', 'update', 'printer', 'driver', 'unable', 'print', 'printer', 'need', 'utilize', 'dg', 'dg'] processed_text: ['printer', 'printing', 'name', 'xernsfqa', 'uzvsnlbd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'receiving', 'error', 'message', 'trying', 'update', 'printer', 'driver', 'unable', 'print', 'printer', 'need', 'utilize', 'dg', 'dg'] list_processed_text: [['printer'], ['printing'], ['name'], ['xernsfqa'], ['uzvsnlbd'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['receiving'], ['error'], ['message'], ['trying'], ['update'], ['printer'], ['driver'], ['unable'], ['print'], ['printer'], ['need'], ['utilize'], ['dg'], ['dg']] k: 3039 len: <class 'list'> Data: ['outlook', 'work', 'computer', 'since', 'password', 'change', 'work', 'phone', 'laptop', 'bsxvtpke', 'vbfcashd', 'cell', 'system', 'affected', 'dell', 'laptop', 'outlook'] processed_text: ['outlook', 'work', 'computer', 'since', 'password', 'change', 'work', 'phone', 'laptop', 'bsxvtpke', 'vbfcashd', 'cell', 'system', 'affected', 'dell', 'laptop', 'outlook'] list_processed_text: [['outlook'], ['work'], ['computer'], ['since'], ['password'], ['change'], ['work'], ['phone'], ['laptop'], ['bsxvtpke'], ['vbfcashd'], ['cell'], ['system'], ['affected'], ['dell'], ['laptop'], ['outlook']] k: 3040 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3041 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 3042 len: <class 'list'> Data: ['unable', 'connect', 'company', 'secure', 'usa', 'unable', 'connect', 'company', 'secure', 'usa'] processed_text: ['unable', 'connect', 'company', 'secure', 'usa', 'unable', 'connect', 'company', 'secure', 'usa'] list_processed_text: [['unable'], ['connect'], ['company'], ['secure'], ['usa'], ['unable'], ['connect'], ['company'], ['secure'], ['usa']] k: 3043 len: <class 'list'> Data: ['update', 'ticket', 'name', 'dfgtyon', 'stasrty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'get', 'ticket', 'ticket', 'completed', 'today', 'need', 'able', 'get', 'site', 'thank', 'u'] processed_text: ['update', 'ticket', 'name', 'dfgtyon', 'stasrty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'get', 'ticket', 'ticket', 'completed', 'today', 'need', 'able', 'get', 'site', 'thank', 'u'] list_processed_text: [['update'], ['ticket'], ['name'], ['dfgtyon'], ['stasrty'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['get'], ['ticket'], ['ticket'], ['completed'], ['today'], ['need'], ['able'], ['get'], ['site'], ['thank'], ['u']] k: 3044 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 3045 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3046 len: <class 'list'> Data: ['inwarehouse', 'tool', 'automatically', 'sent', 'helical', 'referenced', 'contract', 'customer', 'sale', 'org', 'inwarehouse', 'tool', 'automatically', 'set', 'emailed', 'work', 'standard', 'order', 'zkb', 'zke', 'order', 'type', 'order', 'referenced', 'contract', 'transmitted', 'partner', 'order', 'correct', 'inwarehouse', 'tool', 'sold', 'party', 'please', 'see', 'attached', 'example'] processed_text: ['inwarehouse', 'tool', 'automatically', 'sent', 'helical', 'referenced', 'contract', 'customer', 'sale', 'org', 'inwarehouse', 'tool', 'automatically', 'set', 'emailed', 'work', 'standard', 'order', 'zkb', 'zke', 'order', 'type', 'order', 'referenced', 'contract', 'transmitted', 'partner', 'order', 'correct', 'inwarehouse', 'tool', 'sold', 'party', 'please', 'see', 'attached', 'example'] list_processed_text: [['inwarehouse'], ['tool'], ['automatically'], ['sent'], ['helical'], ['referenced'], ['contract'], ['customer'], ['sale'], ['org'], ['inwarehouse'], ['tool'], ['automatically'], ['set'], ['emailed'], ['work'], ['standard'], ['order'], ['zkb'], ['zke'], ['order'], ['type'], ['order'], ['referenced'], ['contract'], ['transmitted'], ['partner'], ['order'], ['correct'], ['inwarehouse'], ['tool'], ['sold'], ['party'], ['please'], ['see'], ['attached'], ['example']] k: 3047 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 3048 len: <class 'list'> Data: ['sid', 'password', 'please', 'reset', 'password', 'sid', 'see', 'msg'] processed_text: ['sid', 'password', 'please', 'reset', 'password', 'sid', 'see', 'msg'] list_processed_text: [['sid'], ['password'], ['please'], ['reset'], ['password'], ['sid'], ['see'], ['msg']] k: 3049 len: <class 'list'> Data: ['hello', 'problem', 'running', 'open', 'sale', 'backorder', 'report', 'data', 'download', 'past', 'hello', 'problem', 'running', 'open', 'sale', 'backorder', 'report', 'data', 'download', 'past'] processed_text: ['hello', 'problem', 'running', 'open', 'sale', 'backorder', 'report', 'data', 'download', 'past', 'hello', 'problem', 'running', 'open', 'sale', 'backorder', 'report', 'data', 'download', 'past'] list_processed_text: [['hello'], ['problem'], ['running'], ['open'], ['sale'], ['backorder'], ['report'], ['data'], ['download'], ['past'], ['hello'], ['problem'], ['running'], ['open'], ['sale'], ['backorder'], ['report'], ['data'], ['download'], ['past']] k: 3050 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 3051 len: <class 'list'> Data: ['programdnty', 'zfiu', 'problem', 'credit', 'issued', 'account', 'account', 'tax', 'issued', 'coded', 'reason', 'code', 'code', 'part', 'job', 'attached', 'example'] processed_text: ['programdnty', 'zfiu', 'problem', 'credit', 'issued', 'account', 'account', 'tax', 'issued', 'coded', 'reason', 'code', 'code', 'part', 'job', 'attached', 'example'] list_processed_text: [['programdnty'], ['zfiu'], ['problem'], ['credit'], ['issued'], ['account'], ['account'], ['tax'], ['issued'], ['coded'], ['reason'], ['code'], ['code'], ['part'], ['job'], ['attached'], ['example']] k: 3052 len: <class 'list'> Data: ['unable', 'set', 'skype', 'meeting', 'unable', 'set', 'skype', 'meeting'] processed_text: ['unable', 'set', 'skype', 'meeting', 'unable', 'set', 'skype', 'meeting'] list_processed_text: [['unable'], ['set'], ['skype'], ['meeting'], ['unable'], ['set'], ['skype'], ['meeting']] k: 3053 len: <class 'list'> Data: ['computer', 'ewew', 'bluescreen', 'wrcktgbd', 'wzrgyunp', 'computer', 'ewew', 'bluescreen', 'wrcktgbd', 'wzrgyunp'] processed_text: ['computer', 'ewew', 'bluescreen', 'wrcktgbd', 'wzrgyunp', 'computer', 'ewew', 'bluescreen', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['computer'], ['ewew'], ['bluescreen'], ['wrcktgbd'], ['wzrgyunp'], ['computer'], ['ewew'], ['bluescreen'], ['wrcktgbd'], ['wzrgyunp']] k: 3054 len: <class 'list'> Data: ['reinstall', 'hardkopy', 'wu', 'wrcktgbd', 'wzgyunp', 'reinstall', 'hardkopy', 'wu', 'wrcktgbd', 'wzgyunp'] processed_text: ['reinstall', 'hardkopy', 'wu', 'wrcktgbd', 'wzgyunp', 'reinstall', 'hardkopy', 'wu', 'wrcktgbd', 'wzgyunp'] list_processed_text: [['reinstall'], ['hardkopy'], ['wu'], ['wrcktgbd'], ['wzgyunp'], ['reinstall'], ['hardkopy'], ['wu'], ['wrcktgbd'], ['wzgyunp']] k: 3055 len: <class 'list'> Data: ['problem', 'hp', 'fehler', 'lxvunpiz', 'mgjxwept', 'problem', 'hp', 'fehler', 'lxvunpiz', 'mgjxwept'] processed_text: ['problem', 'hp', 'fehler', 'lxvunpiz', 'mgjxwept', 'problem', 'hp', 'fehler', 'lxvunpiz', 'mgjxwept'] list_processed_text: [['problem'], ['hp'], ['fehler'], ['lxvunpiz'], ['mgjxwept'], ['problem'], ['hp'], ['fehler'], ['lxvunpiz'], ['mgjxwept']] k: 3056 len: <class 'list'> Data: ['computer', 'ewew', 'slow', 'lxvunpiz', 'mgjxwept', 'computer', 'ewew', 'slow', 'lxvunpiz', 'mgjxwept'] processed_text: ['computer', 'ewew', 'slow', 'lxvunpiz', 'mgjxwept', 'computer', 'ewew', 'slow', 'lxvunpiz', 'mgjxwept'] list_processed_text: [['computer'], ['ewew'], ['slow'], ['lxvunpiz'], ['mgjxwept'], ['computer'], ['ewew'], ['slow'], ['lxvunpiz'], ['mgjxwept']] k: 3057 len: <class 'list'> Data: ['setup', 'new', 'w', 'sgnubadl', 'gpkovbah', 'setup', 'new', 'w', 'sgnubadl', 'gpkovbah'] processed_text: ['setup', 'new', 'w', 'sgnubadl', 'gpkovbah', 'setup', 'new', 'w', 'sgnubadl', 'gpkovbah'] list_processed_text: [['setup'], ['new'], ['w'], ['sgnubadl'], ['gpkovbah'], ['setup'], ['new'], ['w'], ['sgnubadl'], ['gpkovbah']] k: 3058 len: <class 'list'> Data: ['unable', 'connect', 'tc', 'tc', 'unable', 'connect', 'tc', 'tc'] processed_text: ['unable', 'connect', 'tc', 'tc', 'unable', 'connect', 'tc', 'tc'] list_processed_text: [['unable'], ['connect'], ['tc'], ['tc'], ['unable'], ['connect'], ['tc'], ['tc']] k: 3059 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'done', 'erp', 'sid', 'password', 'reset', 'done'] processed_text: ['erp', 'sid', 'password', 'reset', 'done', 'erp', 'sid', 'password', 'reset', 'done'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['done'], ['erp'], ['sid'], ['password'], ['reset'], ['done']] k: 3060 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3061 len: <class 'list'> Data: ['password', 'getting', 'synchronized', 'password', 'getting', 'synchronized'] processed_text: ['password', 'getting', 'synchronized', 'password', 'getting', 'synchronized'] list_processed_text: [['password'], ['getting'], ['synchronized'], ['password'], ['getting'], ['synchronized']] k: 3062 len: <class 'list'> Data: ['reset', 'passsw', 'erp', 'sid', 'user', 'almrgtyeiba', 'hi', 'team', 'could', 'please', 'reset', 'passw', 'erp', 'sid', 'user', 'almrgtyeiba', 'gvtbduyf', 'gdblxiva', 'erp', 'tnks'] processed_text: ['reset', 'passsw', 'erp', 'sid', 'user', 'almrgtyeiba', 'hi', 'team', 'could', 'please', 'reset', 'passw', 'erp', 'sid', 'user', 'almrgtyeiba', 'gvtbduyf', 'gdblxiva', 'erp', 'tnks'] list_processed_text: [['reset'], ['passsw'], ['erp'], ['sid'], ['user'], ['almrgtyeiba'], ['hi'], ['team'], ['could'], ['please'], ['reset'], ['passw'], ['erp'], ['sid'], ['user'], ['almrgtyeiba'], ['gvtbduyf'], ['gdblxiva'], ['erp'], ['tnks']] k: 3063 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'resetting', 'password', 'unable', 'launch', 'outlook', 'resetting', 'password'] processed_text: ['unable', 'launch', 'outlook', 'resetting', 'password', 'unable', 'launch', 'outlook', 'resetting', 'password'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['resetting'], ['password'], ['unable'], ['launch'], ['outlook'], ['resetting'], ['password']] k: 3064 len: <class 'list'> Data: ['crm', 'plugin', 'responding', 'crm', 'plugin', 'responding'] processed_text: ['crm', 'plugin', 'responding', 'crm', 'plugin', 'responding'] list_processed_text: [['crm'], ['plugin'], ['responding'], ['crm'], ['plugin'], ['responding']] k: 3065 len: <class 'list'> Data: ['urgent', 'crm', 'mailbox', 'synchronising', 'urgent', 'crm', 'mailbox', 'synchronising', 'got', 'call', 'vitalyst', 'checked', 'crm', 'sync', 'setting', 'say', 'everything', 'order', 'however', 'crm', 'mailbox', 'synching', 'accepting', 'username', 'password', 'phone', 'sartlgeo', 'lhqksbdx'] processed_text: ['urgent', 'crm', 'mailbox', 'synchronising', 'urgent', 'crm', 'mailbox', 'synchronising', 'got', 'call', 'vitalyst', 'checked', 'crm', 'sync', 'setting', 'say', 'everything', 'order', 'however', 'crm', 'mailbox', 'synching', 'accepting', 'username', 'password', 'phone', 'sartlgeo', 'lhqksbdx'] list_processed_text: [['urgent'], ['crm'], ['mailbox'], ['synchronising'], ['urgent'], ['crm'], ['mailbox'], ['synchronising'], ['got'], ['call'], ['vitalyst'], ['checked'], ['crm'], ['sync'], ['setting'], ['say'], ['everything'], ['order'], ['however'], ['crm'], ['mailbox'], ['synching'], ['accepting'], ['username'], ['password'], ['phone'], ['sartlgeo'], ['lhqksbdx']] k: 3066 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'hr', 'hostname', 'detailed', 'description', 'problem', 'keep', 'asking', 'driver', 'install', 'install', 'driver', 'update', 'type', 'document', 'printing', 'tried', 'system', 'application', 'used', 'time', 'problem', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'turned', 'printer', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'hr', 'hostname', 'detailed', 'description', 'problem', 'keep', 'asking', 'driver', 'install', 'install', 'driver', 'update', 'type', 'document', 'printing', 'tried', 'system', 'application', 'used', 'time', 'problem', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'turned', 'printer', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['hr'], ['hostname'], ['detailed'], ['description'], ['problem'], ['keep'], ['asking'], ['driver'], ['install'], ['install'], ['driver'], ['update'], ['type'], ['document'], ['printing'], ['tried'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['window'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['turned'], ['printer'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 3067 len: <class 'list'> Data: ['unable', 'get', 'crm', 'app', 'outlook', 'unable', 'get', 'crm', 'app', 'outlook'] processed_text: ['unable', 'get', 'crm', 'app', 'outlook', 'unable', 'get', 'crm', 'app', 'outlook'] list_processed_text: [['unable'], ['get'], ['crm'], ['app'], ['outlook'], ['unable'], ['get'], ['crm'], ['app'], ['outlook']] k: 3068 len: <class 'list'> Data: ['termination', 'user', 'lisfgta', 'geitrhybler', 'termination', 'user', 'lisfgta', 'geitrhybler', 'hello', 'k', 'ndigung', 'liuytre', 'gei', 'ler', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['termination', 'user', 'lisfgta', 'geitrhybler', 'termination', 'user', 'lisfgta', 'geitrhybler', 'hello', 'k', 'ndigung', 'liuytre', 'gei', 'ler', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['termination'], ['user'], ['lisfgta'], ['geitrhybler'], ['termination'], ['user'], ['lisfgta'], ['geitrhybler'], ['hello'], ['k'], ['ndigung'], ['liuytre'], ['gei'], ['ler'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 3069 len: <class 'list'> Data: ['pls', 'reset', 'window', 'password', 'user', 'vvkertgipn', 'pls', 'reset', 'window', 'password', 'user', 'vvkertgipn'] processed_text: ['pls', 'reset', 'window', 'password', 'user', 'vvkertgipn', 'pls', 'reset', 'window', 'password', 'user', 'vvkertgipn'] list_processed_text: [['pls'], ['reset'], ['window'], ['password'], ['user'], ['vvkertgipn'], ['pls'], ['reset'], ['window'], ['password'], ['user'], ['vvkertgipn']] k: 3070 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 3071 len: <class 'list'> Data: ['employee', 'termination', 'foulgnmdia', 'pgsqwrumh', 'langmar', 'hello', 'k', 'ndigung', 'foulgnmdia', 'pgsqwrumh', 'langmar', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['employee', 'termination', 'foulgnmdia', 'pgsqwrumh', 'langmar', 'hello', 'k', 'ndigung', 'foulgnmdia', 'pgsqwrumh', 'langmar', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['employee'], ['termination'], ['foulgnmdia'], ['pgsqwrumh'], ['langmar'], ['hello'], ['k'], ['ndigung'], ['foulgnmdia'], ['pgsqwrumh'], ['langmar'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 3072 len: <class 'list'> Data: ['unable', 'sign', 'vpn', 'unable', 'sign', 'vpn'] processed_text: ['unable', 'sign', 'vpn', 'unable', 'sign', 'vpn'] list_processed_text: [['unable'], ['sign'], ['vpn'], ['unable'], ['sign'], ['vpn']] k: 3073 len: <class 'list'> Data: ['probleme', 'bei', 'der', 'projekt', 'eingabe', 'im', 'collaboration', 'platform', 'infopath', 'dear', 'still', 'issue', 'tracker', 'even', 'message', 'collaboration', 'tool', 'etc', 'jertyur', 'difozlav', 'dgbfptos', 'make', 'ticket', 'contact', 'person', 'cannot', 'enter', 'project', 'please', 'let', 'u', 'know', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['probleme', 'bei', 'der', 'projekt', 'eingabe', 'im', 'collaboration', 'platform', 'infopath', 'dear', 'still', 'issue', 'tracker', 'even', 'message', 'collaboration', 'tool', 'etc', 'jertyur', 'difozlav', 'dgbfptos', 'make', 'ticket', 'contact', 'person', 'cannot', 'enter', 'project', 'please', 'let', 'u', 'know', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['probleme'], ['bei'], ['der'], ['projekt'], ['eingabe'], ['im'], ['collaboration'], ['platform'], ['infopath'], ['dear'], ['still'], ['issue'], ['tracker'], ['even'], ['message'], ['collaboration'], ['tool'], ['etc'], ['jertyur'], ['difozlav'], ['dgbfptos'], ['make'], ['ticket'], ['contact'], ['person'], ['cannot'], ['enter'], ['project'], ['please'], ['let'], ['u'], ['know'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 3074 len: <class 'list'> Data: ['lean', 'tracker', 'problem', 'hello', 'helpdesk', 'good', 'morning', 'able', 'add', 'new', 'project', 'collaboration', 'platform', 'lean', 'tracker', 'contacting', 'helpdesk', 'per', 'instruction', 'mail'] processed_text: ['lean', 'tracker', 'problem', 'hello', 'helpdesk', 'good', 'morning', 'able', 'add', 'new', 'project', 'collaboration', 'platform', 'lean', 'tracker', 'contacting', 'helpdesk', 'per', 'instruction', 'mail'] list_processed_text: [['lean'], ['tracker'], ['problem'], ['hello'], ['helpdesk'], ['good'], ['morning'], ['able'], ['add'], ['new'], ['project'], ['collaboration'], ['platform'], ['lean'], ['tracker'], ['contacting'], ['helpdesk'], ['per'], ['instruction'], ['mail']] k: 3075 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 3076 len: <class 'list'> Data: ['procenter', 'login', 'credential', 'new', 'joiner', 'please', 'create', 'procenter', 'login', 'credential', 'new', 'joiner', 'name', 'keyhuerthi', 'vtyr', 'user', 'id', 'reddatrhykv'] processed_text: ['procenter', 'login', 'credential', 'new', 'joiner', 'please', 'create', 'procenter', 'login', 'credential', 'new', 'joiner', 'name', 'keyhuerthi', 'vtyr', 'user', 'id', 'reddatrhykv'] list_processed_text: [['procenter'], ['login'], ['credential'], ['new'], ['joiner'], ['please'], ['create'], ['procenter'], ['login'], ['credential'], ['new'], ['joiner'], ['name'], ['keyhuerthi'], ['vtyr'], ['user'], ['id'], ['reddatrhykv']] k: 3077 len: <class 'list'> Data: ['access', 'team', 'drive', 'folder', 'sox', 'self', 'assessment', 'user', 'priflhtret', 'need', 'access', 'folder', 'sox', 'self', 'assessment', 'quaterly', 'sox', 'request'] processed_text: ['access', 'team', 'drive', 'folder', 'sox', 'self', 'assessment', 'user', 'priflhtret', 'need', 'access', 'folder', 'sox', 'self', 'assessment', 'quaterly', 'sox', 'request'] list_processed_text: [['access'], ['team'], ['drive'], ['folder'], ['sox'], ['self'], ['assessment'], ['user'], ['priflhtret'], ['need'], ['access'], ['folder'], ['sox'], ['self'], ['assessment'], ['quaterly'], ['sox'], ['request']] k: 3078 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['arc'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['arc'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 3079 len: <class 'list'> Data: ['rad', 'hr', 'queue', 'stuck', 'sid', 'entry', 'hr', 'employee', 'data', 'replicated', 'got', 'stuck', 'sid'] processed_text: ['rad', 'hr', 'queue', 'stuck', 'sid', 'entry', 'hr', 'employee', 'data', 'replicated', 'got', 'stuck', 'sid'] list_processed_text: [['rad'], ['hr'], ['queue'], ['stuck'], ['sid'], ['entry'], ['hr'], ['employee'], ['data'], ['replicated'], ['got'], ['stuck'], ['sid']] k: 3080 len: <class 'list'> Data: ['problem', 'printer', 'mp', 'problem', 'printer', 'mp', 'error', 'message', 'transport', 'unit', 'missing', 'motor', 'error', 'occurred', 'leasing', 'printer'] processed_text: ['problem', 'printer', 'mp', 'problem', 'printer', 'mp', 'error', 'message', 'transport', 'unit', 'missing', 'motor', 'error', 'occurred', 'leasing', 'printer'] list_processed_text: [['problem'], ['printer'], ['mp'], ['problem'], ['printer'], ['mp'], ['error'], ['message'], ['transport'], ['unit'], ['missing'], ['motor'], ['error'], ['occurred'], ['leasing'], ['printer']] k: 3081 len: <class 'list'> Data: ['unable', 'login', 'erp', 'misplaced', 'password'] processed_text: ['unable', 'login', 'erp', 'misplaced', 'password'] list_processed_text: [['unable'], ['login'], ['erp'], ['misplaced'], ['password']] k: 3082 len: <class 'list'> Data: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'android', 'baadea', 'source', 'ip', 'source', 'hostname', 'android', 'baadea', 'source', 'port', 'source', 'mac', 'address', 'c', 'f', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'udp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'android', 'baadea', 'source', 'port', 'source', 'mac', 'address', 'c', 'f', 'destination', 'hostname', 'entry', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'udp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry'] processed_text: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'android', 'baadea', 'source', 'ip', 'source', 'hostname', 'android', 'baadea', 'source', 'port', 'source', 'mac', 'address', 'c', 'f', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'udp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'android', 'baadea', 'source', 'port', 'source', 'mac', 'address', 'c', 'f', 'destination', 'hostname', 'entry', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'udp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xeda', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'f', 'android', 'baadea', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry'] list_processed_text: [['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['android'], ['baadea'], ['source'], ['ip'], ['source'], ['hostname'], ['android'], ['baadea'], ['source'], ['port'], ['source'], ['mac'], ['address'], ['c'], ['f'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['udp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['android'], ['baadea'], ['source'], ['port'], ['source'], ['mac'], ['address'], ['c'], ['f'], ['destination'], ['hostname'], ['entry'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['protocol'], ['udp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xeda'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['f'], ['android'], ['baadea'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['entry'], ['hex'], ['packet'], ['entry']] k: 3083 len: <class 'list'> Data: ['security', 'incident', 'internal', 'outbreak', 'port', 'awyl', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'udp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'awyl', 'source', 'port', 'source', 'mac', 'address', 'f', 'ab', 'destination', 'hostname', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'udp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'hex', 'packet'] processed_text: ['security', 'incident', 'internal', 'outbreak', 'port', 'awyl', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'udp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'awyl', 'source', 'port', 'source', 'mac', 'address', 'f', 'ab', 'destination', 'hostname', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'udp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'asa', 'deny', 'udp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'ab', 'awyl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'hex', 'packet'] list_processed_text: [['security'], ['incident'], ['internal'], ['outbreak'], ['port'], ['awyl'], ['source'], ['ip'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['udp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['awyl'], ['source'], ['port'], ['source'], ['mac'], ['address'], ['f'], ['ab'], ['destination'], ['hostname'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['protocol'], ['udp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['asa'], ['deny'], ['udp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['ab'], ['awyl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['hex'], ['packet']] k: 3084 len: <class 'list'> Data: ['kfdyzexr', 'hnbetvfk', 'password', 'reset', 'kfdyzexr', 'hnbetvfk', 'password', 'reset'] processed_text: ['kfdyzexr', 'hnbetvfk', 'password', 'reset', 'kfdyzexr', 'hnbetvfk', 'password', 'reset'] list_processed_text: [['kfdyzexr'], ['hnbetvfk'], ['password'], ['reset'], ['kfdyzexr'], ['hnbetvfk'], ['password'], ['reset']] k: 3085 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'create', 'delivery', 'allowed', 'sys', 'status', 'exls', 'object', 'vb'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'create', 'delivery', 'allowed', 'sys', 'status', 'exls', 'object', 'vb'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['create'], ['delivery'], ['allowed'], ['sys'], ['status'], ['exls'], ['object'], ['vb']] k: 3086 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 3087 len: <class 'list'> Data: ['po', 'language', 'incorrect', 'po', 'xjvubmlq', 'vyamhjip', 'nwfodmhc', 'exurcwkm', 'rad', 'po', 'language', 'incorrect', 'po', 'hello', 'po', 'language', 'correct', 'print', 'output', 'use', 'zz', 'mail', 'po', 'language', 'incorrect', 'could', 'please', 'help', 'check', 'best'] processed_text: ['po', 'language', 'incorrect', 'po', 'xjvubmlq', 'vyamhjip', 'nwfodmhc', 'exurcwkm', 'rad', 'po', 'language', 'incorrect', 'po', 'hello', 'po', 'language', 'correct', 'print', 'output', 'use', 'zz', 'mail', 'po', 'language', 'incorrect', 'could', 'please', 'help', 'check', 'best'] list_processed_text: [['po'], ['language'], ['incorrect'], ['po'], ['xjvubmlq'], ['vyamhjip'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['po'], ['language'], ['incorrect'], ['po'], ['hello'], ['po'], ['language'], ['correct'], ['print'], ['output'], ['use'], ['zz'], ['mail'], ['po'], ['language'], ['incorrect'], ['could'], ['please'], ['help'], ['check'], ['best']] k: 3088 len: <class 'list'> Data: ['reset', 'password', 'pumjbcna', 'scluvtyj', 'erp', 'qa', 'hcm', 'hi', 'user', 'romertanj', 'need', 'password', 'reset'] processed_text: ['reset', 'password', 'pumjbcna', 'scluvtyj', 'erp', 'qa', 'hcm', 'hi', 'user', 'romertanj', 'need', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['pumjbcna'], ['scluvtyj'], ['erp'], ['qa'], ['hcm'], ['hi'], ['user'], ['romertanj'], ['need'], ['password'], ['reset']] k: 3089 len: <class 'list'> Data: ['reset', 'password', 'pumjbcna', 'scluvtyj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'hi', 'please', 'user', 'romertanj', 'need', 'password', 'reset'] processed_text: ['reset', 'password', 'pumjbcna', 'scluvtyj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'hi', 'please', 'user', 'romertanj', 'need', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['pumjbcna'], ['scluvtyj'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['hi'], ['please'], ['user'], ['romertanj'], ['need'], ['password'], ['reset']] k: 3090 len: <class 'list'> Data: ['outlook', 'getting', 'connected', 'exchange', 'server', 'outlook', 'getting', 'connected', 'exchange', 'server'] processed_text: ['outlook', 'getting', 'connected', 'exchange', 'server', 'outlook', 'getting', 'connected', 'exchange', 'server'] list_processed_text: [['outlook'], ['getting'], ['connected'], ['exchange'], ['server'], ['outlook'], ['getting'], ['connected'], ['exchange'], ['server']] k: 3091 len: <class 'list'> Data: ['urgent', 'price', 'update', 'error', 'hi', 'divide', 'quantity', 'item', 'due', 'partial', 'shipment', 'currency', 'issue', 'dividing', 'item', 'quantity', 'writing', 'zno', 'currency', 'update', 'process', 'zno', 'price', 'deleted', 'try', 'enter', 'price', 'zno', 'however', 'system', 'allow', 'bring', 'new', 'price', 'zcnp', 'could', 'help', 'please', 'sayg', 'lar', 'zla', 'best'] processed_text: ['urgent', 'price', 'update', 'error', 'hi', 'divide', 'quantity', 'item', 'due', 'partial', 'shipment', 'currency', 'issue', 'dividing', 'item', 'quantity', 'writing', 'zno', 'currency', 'update', 'process', 'zno', 'price', 'deleted', 'try', 'enter', 'price', 'zno', 'however', 'system', 'allow', 'bring', 'new', 'price', 'zcnp', 'could', 'help', 'please', 'sayg', 'lar', 'zla', 'best'] list_processed_text: [['urgent'], ['price'], ['update'], ['error'], ['hi'], ['divide'], ['quantity'], ['item'], ['due'], ['partial'], ['shipment'], ['currency'], ['issue'], ['dividing'], ['item'], ['quantity'], ['writing'], ['zno'], ['currency'], ['update'], ['process'], ['zno'], ['price'], ['deleted'], ['try'], ['enter'], ['price'], ['zno'], ['however'], ['system'], ['allow'], ['bring'], ['new'], ['price'], ['zcnp'], ['could'], ['help'], ['please'], ['sayg'], ['lar'], ['zla'], ['best']] k: 3092 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3093 len: <class 'list'> Data: ['printer', 'dell', 'cnw', 'print', 'page', 'gray', 'sliver', 'print', 'print', 'everything', 'grayed'] processed_text: ['printer', 'dell', 'cnw', 'print', 'page', 'gray', 'sliver', 'print', 'print', 'everything', 'grayed'] list_processed_text: [['printer'], ['dell'], ['cnw'], ['print'], ['page'], ['gray'], ['sliver'], ['print'], ['print'], ['everything'], ['grayed']] k: 3094 len: <class 'list'> Data: ['finance', 'app', 'dear', 'help', 'access', 'form'] processed_text: ['finance', 'app', 'dear', 'help', 'access', 'form'] list_processed_text: [['finance'], ['app'], ['dear'], ['help'], ['access'], ['form']] k: 3095 len: <class 'list'> Data: ['password', 'lan', 'anrgtdy', 'bofffgtyin', 'hello', 'college', 'anrgtdy', 'bofffgtyin', 'came', 'germany', 'germany', 'fort', 'work', 'need', 'connect', 'lan', 'could', 'please', 'send', 'password', 'guest', 'lan', 'connetction', 'anrgtdy', 'bofffgtyin', 'technical', 'programdntyme', 'manager', 'aerospace', 'defence', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['password', 'lan', 'anrgtdy', 'bofffgtyin', 'hello', 'college', 'anrgtdy', 'bofffgtyin', 'came', 'germany', 'germany', 'fort', 'work', 'need', 'connect', 'lan', 'could', 'please', 'send', 'password', 'guest', 'lan', 'connetction', 'anrgtdy', 'bofffgtyin', 'technical', 'programdntyme', 'manager', 'aerospace', 'defence', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['password'], ['lan'], ['anrgtdy'], ['bofffgtyin'], ['hello'], ['college'], ['anrgtdy'], ['bofffgtyin'], ['came'], ['germany'], ['germany'], ['fort'], ['work'], ['need'], ['connect'], ['lan'], ['could'], ['please'], ['send'], ['password'], ['guest'], ['lan'], ['connetction'], ['anrgtdy'], ['bofffgtyin'], ['technical'], ['programdntyme'], ['manager'], ['aerospace'], ['defence'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 3096 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 3097 len: <class 'list'> Data: ['help', 'pose', 'po', 'cannot', 'posed', 'erp', 'po', 'posed', 'local', 'tax', 'law', 'need', 'choose', 'however', 'choose', 'tax', 'code', 'erp', 'show', 'red', 'message', 'like', 'attachment', 'make', 'tax', 'code', 'empty', 'erp', 'require', 'place', 'tax', 'code', 'make', 'u', 'confused', 'pose', 'po', 'please', 'help', 'pose'] processed_text: ['help', 'pose', 'po', 'cannot', 'posed', 'erp', 'po', 'posed', 'local', 'tax', 'law', 'need', 'choose', 'however', 'choose', 'tax', 'code', 'erp', 'show', 'red', 'message', 'like', 'attachment', 'make', 'tax', 'code', 'empty', 'erp', 'require', 'place', 'tax', 'code', 'make', 'u', 'confused', 'pose', 'po', 'please', 'help', 'pose'] list_processed_text: [['help'], ['pose'], ['po'], ['cannot'], ['posed'], ['erp'], ['po'], ['posed'], ['local'], ['tax'], ['law'], ['need'], ['choose'], ['however'], ['choose'], ['tax'], ['code'], ['erp'], ['show'], ['red'], ['message'], ['like'], ['attachment'], ['make'], ['tax'], ['code'], ['empty'], ['erp'], ['require'], ['place'], ['tax'], ['code'], ['make'], ['u'], ['confused'], ['pose'], ['po'], ['please'], ['help'], ['pose']] k: 3098 len: <class 'list'> Data: ['account', 'locked', 'supply', 'chain', 'software', 'account', 'locked', 'supply', 'chain', 'software'] processed_text: ['account', 'locked', 'supply', 'chain', 'software', 'account', 'locked', 'supply', 'chain', 'software'] list_processed_text: [['account'], ['locked'], ['supply'], ['chain'], ['software'], ['account'], ['locked'], ['supply'], ['chain'], ['software']] k: 3099 len: <class 'list'> Data: ['circuit', 'outage', 'australia', 'dmvpn', 'rtr', 'since', 'type', 'outage', 'network', 'yes', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'australia', 'dmvpn', 'rtr', 'since', 'type', 'outage', 'network', 'yes', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['australia'], ['dmvpn'], ['rtr'], ['since'], ['type'], ['outage'], ['network'], ['yes'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3100 len: <class 'list'> Data: ['final', 'inwarehouse', 'tool', 'project', 'working', 'correctly', 'dear', 'team', 'issue', 'final', 'inwarehouse', 'tool', 'following', 'erp', 'order', 'payment', 'item', 'final', 'shipment', 'item', 'item', 'shipped', 'hence', 'allowed', 'final', 'inwarehouse', 'tool', 'tried', 'final', 'inwarehouse', 'tool', 'item', 'work', 'inwarehouse', 'tool', 'payment', 'amount', 'got', 'deducted', 'twice', 'cancelled', 'inwarehouse', 'tool', 'incl', 'payment', 'inwarehouse', 'tool', 'separated', 'one', 'inwarehouse', 'tool', 'item', 'another', 'inwarehouse', 'tool', 'item', 'tried', 'inwarehouse', 'tool', 'still', 'wrong', 'amunt', 'shown', 'need', 'inwarehouse', 'tool', 'item', 'amount', 'minus', 'paymant', 'please', 'look', 'help', 'single', 'issue', 'already', 'several', 'time'] processed_text: ['final', 'inwarehouse', 'tool', 'project', 'working', 'correctly', 'dear', 'team', 'issue', 'final', 'inwarehouse', 'tool', 'following', 'erp', 'order', 'payment', 'item', 'final', 'shipment', 'item', 'item', 'shipped', 'hence', 'allowed', 'final', 'inwarehouse', 'tool', 'tried', 'final', 'inwarehouse', 'tool', 'item', 'work', 'inwarehouse', 'tool', 'payment', 'amount', 'got', 'deducted', 'twice', 'cancelled', 'inwarehouse', 'tool', 'incl', 'payment', 'inwarehouse', 'tool', 'separated', 'one', 'inwarehouse', 'tool', 'item', 'another', 'inwarehouse', 'tool', 'item', 'tried', 'inwarehouse', 'tool', 'still', 'wrong', 'amunt', 'shown', 'need', 'inwarehouse', 'tool', 'item', 'amount', 'minus', 'paymant', 'please', 'look', 'help', 'single', 'issue', 'already', 'several', 'time'] list_processed_text: [['final'], ['inwarehouse'], ['tool'], ['project'], ['working'], ['correctly'], ['dear'], ['team'], ['issue'], ['final'], ['inwarehouse'], ['tool'], ['following'], ['erp'], ['order'], ['payment'], ['item'], ['final'], ['shipment'], ['item'], ['item'], ['shipped'], ['hence'], ['allowed'], ['final'], ['inwarehouse'], ['tool'], ['tried'], ['final'], ['inwarehouse'], ['tool'], ['item'], ['work'], ['inwarehouse'], ['tool'], ['payment'], ['amount'], ['got'], ['deducted'], ['twice'], ['cancelled'], ['inwarehouse'], ['tool'], ['incl'], ['payment'], ['inwarehouse'], ['tool'], ['separated'], ['one'], ['inwarehouse'], ['tool'], ['item'], ['another'], ['inwarehouse'], ['tool'], ['item'], ['tried'], ['inwarehouse'], ['tool'], ['still'], ['wrong'], ['amunt'], ['shown'], ['need'], ['inwarehouse'], ['tool'], ['item'], ['amount'], ['minus'], ['paymant'], ['please'], ['look'], ['help'], ['single'], ['issue'], ['already'], ['several'], ['time']] k: 3101 len: <class 'list'> Data: ['changing', 'password', 'outlook', 'responding', 'newly', 'assigned', 'password', 'name', 'mandgtryjuth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changing', 'password', 'outlook', 'responding', 'newly', 'assigned', 'password'] processed_text: ['changing', 'password', 'outlook', 'responding', 'newly', 'assigned', 'password', 'name', 'mandgtryjuth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changing', 'password', 'outlook', 'responding', 'newly', 'assigned', 'password'] list_processed_text: [['changing'], ['password'], ['outlook'], ['responding'], ['newly'], ['assigned'], ['password'], ['name'], ['mandgtryjuth'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['changing'], ['password'], ['outlook'], ['responding'], ['newly'], ['assigned'], ['password']] k: 3102 len: <class 'list'> Data: ['engineering', 'tool', 'new', 'customer', 'addition', 'hi', 'still', 'setup', 'error', 'persists', 'warm'] processed_text: ['engineering', 'tool', 'new', 'customer', 'addition', 'hi', 'still', 'setup', 'error', 'persists', 'warm'] list_processed_text: [['engineering'], ['tool'], ['new'], ['customer'], ['addition'], ['hi'], ['still'], ['setup'], ['error'], ['persists'], ['warm']] k: 3103 len: <class 'list'> Data: ['hpqc', 'account', 'reset', 'password', 'hello', 'failed', 'login', 'hpqc', 'account', 'got', 'message', 'could', 'please', 'reset', 'password', 'hpqc', 'account', 'need', 'uacyltoe', 'hxgaycze', 'next', 'week', 'user', 'id', 'zhudrs'] processed_text: ['hpqc', 'account', 'reset', 'password', 'hello', 'failed', 'login', 'hpqc', 'account', 'got', 'message', 'could', 'please', 'reset', 'password', 'hpqc', 'account', 'need', 'uacyltoe', 'hxgaycze', 'next', 'week', 'user', 'id', 'zhudrs'] list_processed_text: [['hpqc'], ['account'], ['reset'], ['password'], ['hello'], ['failed'], ['login'], ['hpqc'], ['account'], ['got'], ['message'], ['could'], ['please'], ['reset'], ['password'], ['hpqc'], ['account'], ['need'], ['uacyltoe'], ['hxgaycze'], ['next'], ['week'], ['user'], ['id'], ['zhudrs']] k: 3104 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'business', 'client', 'unable', 'open', 'outlook', 'business', 'client'] processed_text: ['unable', 'open', 'outlook', 'business', 'client', 'unable', 'open', 'outlook', 'business', 'client'] list_processed_text: [['unable'], ['open'], ['outlook'], ['business'], ['client'], ['unable'], ['open'], ['outlook'], ['business'], ['client']] k: 3105 len: <class 'list'> Data: ['business', 'client', 'working', 'hello', 'unable', 'access', 'business', 'client', 'open', 'business', 'client', 'go', 'directly', 'screen', 'kindly', 'look'] processed_text: ['business', 'client', 'working', 'hello', 'unable', 'access', 'business', 'client', 'open', 'business', 'client', 'go', 'directly', 'screen', 'kindly', 'look'] list_processed_text: [['business'], ['client'], ['working'], ['hello'], ['unable'], ['access'], ['business'], ['client'], ['open'], ['business'], ['client'], ['go'], ['directly'], ['screen'], ['kindly'], ['look']] k: 3106 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3107 len: <class 'list'> Data: ['plm', 'conversion', 'server', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate', 'plm', 'conversion', 'server', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate'] processed_text: ['plm', 'conversion', 'server', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate', 'plm', 'conversion', 'server', 'reporting', 'warning', 'status', 'hostname', 'please', 'investigate'] list_processed_text: [['plm'], ['conversion'], ['server'], ['reporting'], ['warning'], ['status'], ['hostname'], ['please'], ['investigate'], ['plm'], ['conversion'], ['server'], ['reporting'], ['warning'], ['status'], ['hostname'], ['please'], ['investigate']] k: 3108 len: <class 'list'> Data: ['add', 'inxsupmy', 'zhwmifvx', 'material', 'management', 'purchasing', 'hello', 'team', 'please', 'add', 'inxsupmy', 'zhwmifvx', 'material', 'management', 'purchasing', 'group', 'ticketing', 'tool', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics', 'global'] processed_text: ['add', 'inxsupmy', 'zhwmifvx', 'material', 'management', 'purchasing', 'hello', 'team', 'please', 'add', 'inxsupmy', 'zhwmifvx', 'material', 'management', 'purchasing', 'group', 'ticketing', 'tool', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics', 'global'] list_processed_text: [['add'], ['inxsupmy'], ['zhwmifvx'], ['material'], ['management'], ['purchasing'], ['hello'], ['team'], ['please'], ['add'], ['inxsupmy'], ['zhwmifvx'], ['material'], ['management'], ['purchasing'], ['group'], ['ticketing'], ['tool'], ['inxsupmy'], ['zhwmifvx'], ['team'], ['lead'], ['ssl'], ['sourcing'], ['logistics'], ['global']] k: 3109 len: <class 'list'> Data: ['erp', 'login', 'blocked', 'hello', 'able', 'login', 'erp', 'attempt', 'exceed', 'set', 'limit', 'requesting', 'unblock'] processed_text: ['erp', 'login', 'blocked', 'hello', 'able', 'login', 'erp', 'attempt', 'exceed', 'set', 'limit', 'requesting', 'unblock'] list_processed_text: [['erp'], ['login'], ['blocked'], ['hello'], ['able'], ['login'], ['erp'], ['attempt'], ['exceed'], ['set'], ['limit'], ['requesting'], ['unblock']] k: 3110 len: <class 'list'> Data: ['outlook', 'updating', 'laptop', 'name', 'warrrtyen', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'updating', 'laptop'] processed_text: ['outlook', 'updating', 'laptop', 'name', 'warrrtyen', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'updating', 'laptop'] list_processed_text: [['outlook'], ['updating'], ['laptop'], ['name'], ['warrrtyen'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['updating'], ['laptop']] k: 3111 len: <class 'list'> Data: ['circuit', 'outage', 'carrier', 'india', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'carrier', 'india', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['carrier'], ['india'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3112 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3113 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3114 len: <class 'list'> Data: ['sound', 'system', 'laptop', 'hello', 'need', 'help', 'sound', 'system', 'laptop', 'seem', 'working', 'neither', 'speaker', 'ear', 'phone', 'inconvenient', 'skype', 'call', 'please', 'look'] processed_text: ['sound', 'system', 'laptop', 'hello', 'need', 'help', 'sound', 'system', 'laptop', 'seem', 'working', 'neither', 'speaker', 'ear', 'phone', 'inconvenient', 'skype', 'call', 'please', 'look'] list_processed_text: [['sound'], ['system'], ['laptop'], ['hello'], ['need'], ['help'], ['sound'], ['system'], ['laptop'], ['seem'], ['working'], ['neither'], ['speaker'], ['ear'], ['phone'], ['inconvenient'], ['skype'], ['call'], ['please'], ['look']] k: 3115 len: <class 'list'> Data: ['erp', 'login', 'trouble', 'hello', 'please', 'see', 'error', 'log', 'erp', 'please', 'tell', 'solution'] processed_text: ['erp', 'login', 'trouble', 'hello', 'please', 'see', 'error', 'log', 'erp', 'please', 'tell', 'solution'] list_processed_text: [['erp'], ['login'], ['trouble'], ['hello'], ['please'], ['see'], ['error'], ['log'], ['erp'], ['please'], ['tell'], ['solution']] k: 3116 len: <class 'list'> Data: ['circuit', 'outage', 'switzerland', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'switzerland', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['switzerland'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3117 len: <class 'list'> Data: ['hr', 'chair', 'etime', 'hr', 'chair', 'etime'] processed_text: ['hr', 'chair', 'etime', 'hr', 'chair', 'etime'] list_processed_text: [['hr'], ['chair'], ['etime'], ['hr'], ['chair'], ['etime']] k: 3118 len: <class 'list'> Data: ['erp', 'system', 'slow', 'response', 'apac', 'faced', 'problem', 'erp', 'system', 'slow', 'response', 'time', 'please', 'help', 'check', 'fixing', 'issue', 'make', 'erp', 'system', 'faster', 'speed'] processed_text: ['erp', 'system', 'slow', 'response', 'apac', 'faced', 'problem', 'erp', 'system', 'slow', 'response', 'time', 'please', 'help', 'check', 'fixing', 'issue', 'make', 'erp', 'system', 'faster', 'speed'] list_processed_text: [['erp'], ['system'], ['slow'], ['response'], ['apac'], ['faced'], ['problem'], ['erp'], ['system'], ['slow'], ['response'], ['time'], ['please'], ['help'], ['check'], ['fixing'], ['issue'], ['make'], ['erp'], ['system'], ['faster'], ['speed']] k: 3119 len: <class 'list'> Data: ['hostname', 'dev', 'ulv', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'dev', 'ulv', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'dev', 'ulv', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'dev', 'ulv', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['dev'], ['ulv'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['dev'], ['ulv'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 3120 len: <class 'list'> Data: ['unable', 'browse', 'hr', 'tool', 'site', 'unable', 'browse', 'hr', 'tool', 'site', 'snapshot', 'error', 'attached'] processed_text: ['unable', 'browse', 'hr', 'tool', 'site', 'unable', 'browse', 'hr', 'tool', 'site', 'snapshot', 'error', 'attached'] list_processed_text: [['unable'], ['browse'], ['hr'], ['tool'], ['site'], ['unable'], ['browse'], ['hr'], ['tool'], ['site'], ['snapshot'], ['error'], ['attached']] k: 3121 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 3122 len: <class 'list'> Data: ['crm', 'good', 'day', 'please', 'advise', 'whether', 'crm', 'going', 'update', 'moment', 'number', 'issue', 'concerning', 'u', 'moment', 'cannot', 'access', 'crm', 'yesterday', 'could', 'enter', 'new', 'customer', 'account', 'drop', 'box', 'fully', 'loading', 'thus', 'could', 'see', 'one', 'two', 'item', 'select', 'team', 'australia', 'advised', 'lately', 'contact', 'customer', 'master', 'numerous', 'occasion', 'certain', 'entry', 'crm', 'new', 'customer', 'account', 'transferring', 'erp', 'like', 'sale', 'rep', 'carrier', 'etc', 'advised', 'finance', 'department', 'believed', 'aware', 'problem', 'kind'] processed_text: ['crm', 'good', 'day', 'please', 'advise', 'whether', 'crm', 'going', 'update', 'moment', 'number', 'issue', 'concerning', 'u', 'moment', 'cannot', 'access', 'crm', 'yesterday', 'could', 'enter', 'new', 'customer', 'account', 'drop', 'box', 'fully', 'loading', 'thus', 'could', 'see', 'one', 'two', 'item', 'select', 'team', 'australia', 'advised', 'lately', 'contact', 'customer', 'master', 'numerous', 'occasion', 'certain', 'entry', 'crm', 'new', 'customer', 'account', 'transferring', 'erp', 'like', 'sale', 'rep', 'carrier', 'etc', 'advised', 'finance', 'department', 'believed', 'aware', 'problem', 'kind'] list_processed_text: [['crm'], ['good'], ['day'], ['please'], ['advise'], ['whether'], ['crm'], ['going'], ['update'], ['moment'], ['number'], ['issue'], ['concerning'], ['u'], ['moment'], ['cannot'], ['access'], ['crm'], ['yesterday'], ['could'], ['enter'], ['new'], ['customer'], ['account'], ['drop'], ['box'], ['fully'], ['loading'], ['thus'], ['could'], ['see'], ['one'], ['two'], ['item'], ['select'], ['team'], ['australia'], ['advised'], ['lately'], ['contact'], ['customer'], ['master'], ['numerous'], ['occasion'], ['certain'], ['entry'], ['crm'], ['new'], ['customer'], ['account'], ['transferring'], ['erp'], ['like'], ['sale'], ['rep'], ['carrier'], ['etc'], ['advised'], ['finance'], ['department'], ['believed'], ['aware'], ['problem'], ['kind']] k: 3123 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 3124 len: <class 'list'> Data: ['erp', 'slow', 'apac', 'china', 'apac', 'dc', 'company', 'colleague', 'said', 'erp', 'slow', 'ping', 'erp', 'address', 'packet', 'loss'] processed_text: ['erp', 'slow', 'apac', 'china', 'apac', 'dc', 'company', 'colleague', 'said', 'erp', 'slow', 'ping', 'erp', 'address', 'packet', 'loss'] list_processed_text: [['erp'], ['slow'], ['apac'], ['china'], ['apac'], ['dc'], ['company'], ['colleague'], ['said'], ['erp'], ['slow'], ['ping'], ['erp'], ['address'], ['packet'], ['loss']] k: 3125 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 3126 len: <class 'list'> Data: ['purchasing', 'order', 'export', 'issue', 'hello', 'export', 'po', 'file', 'pdf', 'format', 'erp', 'command', 'zz', 'mail', 'sometimes', 'show', 'language', 'rather', 'chinese', 'solve', 'best'] processed_text: ['purchasing', 'order', 'export', 'issue', 'hello', 'export', 'po', 'file', 'pdf', 'format', 'erp', 'command', 'zz', 'mail', 'sometimes', 'show', 'language', 'rather', 'chinese', 'solve', 'best'] list_processed_text: [['purchasing'], ['order'], ['export'], ['issue'], ['hello'], ['export'], ['po'], ['file'], ['pdf'], ['format'], ['erp'], ['command'], ['zz'], ['mail'], ['sometimes'], ['show'], ['language'], ['rather'], ['chinese'], ['solve'], ['best']] k: 3127 len: <class 'list'> Data: ['password', 'reset', 'via', 'password', 'manager', 'tool', 'password', 'manager', 'password', 'reset', 'via', 'password', 'manager', 'tool', 'password', 'manager'] processed_text: ['password', 'reset', 'via', 'password', 'manager', 'tool', 'password', 'manager', 'password', 'reset', 'via', 'password', 'manager', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['reset'], ['via'], ['password'], ['manager'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['via'], ['password'], ['manager'], ['tool'], ['password'], ['manager']] k: 3128 len: <class 'list'> Data: ['outlook', 'working', 'unable', 'receive', 'email', 'outlook', 'working', 'unable', 'receive', 'email'] processed_text: ['outlook', 'working', 'unable', 'receive', 'email', 'outlook', 'working', 'unable', 'receive', 'email'] list_processed_text: [['outlook'], ['working'], ['unable'], ['receive'], ['email'], ['outlook'], ['working'], ['unable'], ['receive'], ['email']] k: 3129 len: <class 'list'> Data: ['engineering', 'tool', 'new', 'customer', 'hi', 'able', 'add', 'new', 'customer', 'engineering', 'tool', 'kindly', 'support', 'solve', 'error', 'warm'] processed_text: ['engineering', 'tool', 'new', 'customer', 'hi', 'able', 'add', 'new', 'customer', 'engineering', 'tool', 'kindly', 'support', 'solve', 'error', 'warm'] list_processed_text: [['engineering'], ['tool'], ['new'], ['customer'], ['hi'], ['able'], ['add'], ['new'], ['customer'], ['engineering'], ['tool'], ['kindly'], ['support'], ['solve'], ['error'], ['warm']] k: 3130 len: <class 'list'> Data: ['msd', 'outlook', 'showing', 'crm', 'add', 'msd', 'outlook', 'showing', 'crm', 'add', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'reconfigured', 'user', 'profile', 'crm', 'launched', 'outlook', 'user', 'confirmed', 'closing', 'relaunching', 'outlook', 'everything', 'fine', 'issue', 'resolved'] processed_text: ['msd', 'outlook', 'showing', 'crm', 'add', 'msd', 'outlook', 'showing', 'crm', 'add', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'reconfigured', 'user', 'profile', 'crm', 'launched', 'outlook', 'user', 'confirmed', 'closing', 'relaunching', 'outlook', 'everything', 'fine', 'issue', 'resolved'] list_processed_text: [['msd'], ['outlook'], ['showing'], ['crm'], ['add'], ['msd'], ['outlook'], ['showing'], ['crm'], ['add'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['deleted'], ['reconfigured'], ['user'], ['profile'], ['crm'], ['launched'], ['outlook'], ['user'], ['confirmed'], ['closing'], ['relaunching'], ['outlook'], ['everything'], ['fine'], ['issue'], ['resolved']] k: 3131 len: <class 'list'> Data: ['vpn', 'access', 'status', 'check', 'vpn', 'access', 'status', 'check'] processed_text: ['vpn', 'access', 'status', 'check', 'vpn', 'access', 'status', 'check'] list_processed_text: [['vpn'], ['access'], ['status'], ['check'], ['vpn'], ['access'], ['status'], ['check']] k: 3132 len: <class 'list'> Data: ['cannot', 'find', 'dr', 'cyxieuwk', 'rekwlqmu', 'ticketing', 'tool', 'tried', 'add', 'watch', 'list', 'ticket', 'find', 'ticketing', 'tool', 'please', 'active', 'christgrytoph', 'account', 'ticketing', 'tool'] processed_text: ['cannot', 'find', 'dr', 'cyxieuwk', 'rekwlqmu', 'ticketing', 'tool', 'tried', 'add', 'watch', 'list', 'ticket', 'find', 'ticketing', 'tool', 'please', 'active', 'christgrytoph', 'account', 'ticketing', 'tool'] list_processed_text: [['cannot'], ['find'], ['dr'], ['cyxieuwk'], ['rekwlqmu'], ['ticketing'], ['tool'], ['tried'], ['add'], ['watch'], ['list'], ['ticket'], ['find'], ['ticketing'], ['tool'], ['please'], ['active'], ['christgrytoph'], ['account'], ['ticketing'], ['tool']] k: 3133 len: <class 'list'> Data: ['alrthyu', 'lowe', 'ee', 'need', 'show', 'financial', 'report', 'mikhghytr', 'robhyertyjs', 'receives', 'nicrhty', 'pi', 'scthyott', 'lortwe', 'pm', 'nwfodmhc', 'exurcwkm', 'trup', 'ti', 'fw', 'recode', 'acct', 'importance', 'high', 'team', 'please', 'see', 'email', 'chain', 'please', 'assign', 'alrthyu', 'lowe', 'ee', 'need', 'show', 'financial', 'report', 'mikhghytr', 'robhyertyjs', 'receives', 'nicrhty', 'piper', 'scthyott', 'lortwe', 'sale', 'manager', 'southeast', 'industrial', 'segment', 'christgry', 'financial', 'toolher', 'mikhghytr', 'robhyertyjs', 'scthyott', 'lortwe', 'recode', 'acct', 'hi', 'mikhghytr', 'account', 'erp', 'new', 'customer', 'quota', 'loaded', 'financial', 'reporting', 'per', 'direction', 'cpmaidhj', 'elbaqmtp', 'unfortunately', 'need', 'submit', 'ticket', 'reassigned', 'kindest'] processed_text: ['alrthyu', 'lowe', 'ee', 'need', 'show', 'financial', 'report', 'mikhghytr', 'robhyertyjs', 'receives', 'nicrhty', 'pi', 'scthyott', 'lortwe', 'pm', 'nwfodmhc', 'exurcwkm', 'trup', 'ti', 'fw', 'recode', 'acct', 'importance', 'high', 'team', 'please', 'see', 'email', 'chain', 'please', 'assign', 'alrthyu', 'lowe', 'ee', 'need', 'show', 'financial', 'report', 'mikhghytr', 'robhyertyjs', 'receives', 'nicrhty', 'piper', 'scthyott', 'lortwe', 'sale', 'manager', 'southeast', 'industrial', 'segment', 'christgry', 'financial', 'toolher', 'mikhghytr', 'robhyertyjs', 'scthyott', 'lortwe', 'recode', 'acct', 'hi', 'mikhghytr', 'account', 'erp', 'new', 'customer', 'quota', 'loaded', 'financial', 'reporting', 'per', 'direction', 'cpmaidhj', 'elbaqmtp', 'unfortunately', 'need', 'submit', 'ticket', 'reassigned', 'kindest'] list_processed_text: [['alrthyu'], ['lowe'], ['ee'], ['need'], ['show'], ['financial'], ['report'], ['mikhghytr'], ['robhyertyjs'], ['receives'], ['nicrhty'], ['pi'], ['scthyott'], ['lortwe'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['trup'], ['ti'], ['fw'], ['recode'], ['acct'], ['importance'], ['high'], ['team'], ['please'], ['see'], ['email'], ['chain'], ['please'], ['assign'], ['alrthyu'], ['lowe'], ['ee'], ['need'], ['show'], ['financial'], ['report'], ['mikhghytr'], ['robhyertyjs'], ['receives'], ['nicrhty'], ['piper'], ['scthyott'], ['lortwe'], ['sale'], ['manager'], ['southeast'], ['industrial'], ['segment'], ['christgry'], ['financial'], ['toolher'], ['mikhghytr'], ['robhyertyjs'], ['scthyott'], ['lortwe'], ['recode'], ['acct'], ['hi'], ['mikhghytr'], ['account'], ['erp'], ['new'], ['customer'], ['quota'], ['loaded'], ['financial'], ['reporting'], ['per'], ['direction'], ['cpmaidhj'], ['elbaqmtp'], ['unfortunately'], ['need'], ['submit'], ['ticket'], ['reassigned'], ['kindest']] k: 3134 len: <class 'list'> Data: ['expense', 'report', 'issue', 'getting', 'alert', 'expense', 'report', 'screenshots', 'attached', 'expense', 'report', 'issue', 'please', 'change', 'cost', 'center', 'user'] processed_text: ['expense', 'report', 'issue', 'getting', 'alert', 'expense', 'report', 'screenshots', 'attached', 'expense', 'report', 'issue', 'please', 'change', 'cost', 'center', 'user'] list_processed_text: [['expense'], ['report'], ['issue'], ['getting'], ['alert'], ['expense'], ['report'], ['screenshots'], ['attached'], ['expense'], ['report'], ['issue'], ['please'], ['change'], ['cost'], ['center'], ['user']] k: 3135 len: <class 'list'> Data: ['outlook', 'language', 'changing', 'automatically', 'outlook', 'language', 'changing', 'automatically', 'connected', 'user', 'system', 'using', 'teamviewer', 'changed', 'launguage', 'setting', 'english', 'default', 'restarted', 'pc', 'advised', 'user', 'check', 'user', 'confirmed', 'outlook', 'language', 'english', 'educated', 'user', 'step', 'take', 'change', 'outlook', 'launguage', 'issue', 'resolved'] processed_text: ['outlook', 'language', 'changing', 'automatically', 'outlook', 'language', 'changing', 'automatically', 'connected', 'user', 'system', 'using', 'teamviewer', 'changed', 'launguage', 'setting', 'english', 'default', 'restarted', 'pc', 'advised', 'user', 'check', 'user', 'confirmed', 'outlook', 'language', 'english', 'educated', 'user', 'step', 'take', 'change', 'outlook', 'launguage', 'issue', 'resolved'] list_processed_text: [['outlook'], ['language'], ['changing'], ['automatically'], ['outlook'], ['language'], ['changing'], ['automatically'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['changed'], ['launguage'], ['setting'], ['english'], ['default'], ['restarted'], ['pc'], ['advised'], ['user'], ['check'], ['user'], ['confirmed'], ['outlook'], ['language'], ['english'], ['educated'], ['user'], ['step'], ['take'], ['change'], ['outlook'], ['launguage'], ['issue'], ['resolved']] k: 3136 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 3137 len: <class 'list'> Data: ['load', 'telephony', 'software', 'onto', 'user', 'pc', 'load', 'telephony', 'software', 'onto', 'user', 'pc'] processed_text: ['load', 'telephony', 'software', 'onto', 'user', 'pc', 'load', 'telephony', 'software', 'onto', 'user', 'pc'] list_processed_text: [['load'], ['telephony'], ['software'], ['onto'], ['user'], ['pc'], ['load'], ['telephony'], ['software'], ['onto'], ['user'], ['pc']] k: 3138 len: <class 'list'> Data: ['audio', 'skype', 'call', 'audio', 'skype', 'call'] processed_text: ['audio', 'skype', 'call', 'audio', 'skype', 'call'] list_processed_text: [['audio'], ['skype'], ['call'], ['audio'], ['skype'], ['call']] k: 3139 len: <class 'list'> Data: ['problem', 'erp', 'login', 'server', 'list', 'available', 'problem', 'erp', 'login', 'server', 'list', 'available'] processed_text: ['problem', 'erp', 'login', 'server', 'list', 'available', 'problem', 'erp', 'login', 'server', 'list', 'available'] list_processed_text: [['problem'], ['erp'], ['login'], ['server'], ['list'], ['available'], ['problem'], ['erp'], ['login'], ['server'], ['list'], ['available']] k: 3140 len: <class 'list'> Data: ['able', 'upload', 'engineering', 'tool', 'see', 'screen', 'shot', 'able', 'upload', 'engineering', 'tool', 'see', 'screen', 'shot'] processed_text: ['able', 'upload', 'engineering', 'tool', 'see', 'screen', 'shot', 'able', 'upload', 'engineering', 'tool', 'see', 'screen', 'shot'] list_processed_text: [['able'], ['upload'], ['engineering'], ['tool'], ['see'], ['screen'], ['shot'], ['able'], ['upload'], ['engineering'], ['tool'], ['see'], ['screen'], ['shot']] k: 3141 len: <class 'list'> Data: ['able', 'login', 'window', 'able', 'login', 'window'] processed_text: ['able', 'login', 'window', 'able', 'login', 'window'] list_processed_text: [['able'], ['login'], ['window'], ['able'], ['login'], ['window']] k: 3142 len: <class 'list'> Data: ['user', 'unable', 'login', 'telephony', 'software', 'user', 'unable', 'login', 'telephony', 'software', 'user', 'unable', 'login', 'interaction', 'client', 'user', 'getting', 'authenication', 'error', 'contact'] processed_text: ['user', 'unable', 'login', 'telephony', 'software', 'user', 'unable', 'login', 'telephony', 'software', 'user', 'unable', 'login', 'interaction', 'client', 'user', 'getting', 'authenication', 'error', 'contact'] list_processed_text: [['user'], ['unable'], ['login'], ['telephony'], ['software'], ['user'], ['unable'], ['login'], ['telephony'], ['software'], ['user'], ['unable'], ['login'], ['interaction'], ['client'], ['user'], ['getting'], ['authenication'], ['error'], ['contact']] k: 3143 len: <class 'list'> Data: ['compensation', 'system', 'missing', 'inwarehouse', 'tool', 'compensation', 'system', 'missing', 'inwarehouse', 'tool', 'impacting', 'sale', 'compensation', 'report', 'north', 'amerirtca', 'field', 'sale', 'please', 'assign', 'bw', 'team', 'consult', 'zarthyc', 'mithycs', 'resolution'] processed_text: ['compensation', 'system', 'missing', 'inwarehouse', 'tool', 'compensation', 'system', 'missing', 'inwarehouse', 'tool', 'impacting', 'sale', 'compensation', 'report', 'north', 'amerirtca', 'field', 'sale', 'please', 'assign', 'bw', 'team', 'consult', 'zarthyc', 'mithycs', 'resolution'] list_processed_text: [['compensation'], ['system'], ['missing'], ['inwarehouse'], ['tool'], ['compensation'], ['system'], ['missing'], ['inwarehouse'], ['tool'], ['impacting'], ['sale'], ['compensation'], ['report'], ['north'], ['amerirtca'], ['field'], ['sale'], ['please'], ['assign'], ['bw'], ['team'], ['consult'], ['zarthyc'], ['mithycs'], ['resolution']] k: 3144 len: <class 'list'> Data: ['called', 'service', 'desk', 'check', 'status', 'called', 'service', 'desk', 'check', 'status', 'account', 'activation'] processed_text: ['called', 'service', 'desk', 'check', 'status', 'called', 'service', 'desk', 'check', 'status', 'account', 'activation'] list_processed_text: [['called'], ['service'], ['desk'], ['check'], ['status'], ['called'], ['service'], ['desk'], ['check'], ['status'], ['account'], ['activation']] k: 3145 len: <class 'list'> Data: ['phone', 'bill', 'copy', 'request', 'provide', 'sink', 'cell', 'phone', 'bill', 'period', 'june-september'] processed_text: ['phone', 'bill', 'copy', 'request', 'provide', 'sink', 'cell', 'phone', 'bill', 'period', 'june-september'] list_processed_text: [['phone'], ['bill'], ['copy'], ['request'], ['provide'], ['sink'], ['cell'], ['phone'], ['bill'], ['period'], ['june-september']] k: 3146 len: <class 'list'> Data: ['confirmation', 'qty', 'window', 'deducting', 'confirmed', 'piece', 'default', 'qty', 'field', 'per', 'understanding', 'mii', 'subtract', 'already', 'confirmed', 'piece', 'order', 'planned', 'quantity', 'confirmation', 'screen', 'whenever', 'user', 'confirming', 'something', 'ex', 'piece', 'order', 'user', 'confirms', 'piece', 'next', 'user', 'user', 'next', 'time', 'confirms', 'operation', 'default', 'qty', 'presented', 'noticing', 'presenting', 'original'] processed_text: ['confirmation', 'qty', 'window', 'deducting', 'confirmed', 'piece', 'default', 'qty', 'field', 'per', 'understanding', 'mii', 'subtract', 'already', 'confirmed', 'piece', 'order', 'planned', 'quantity', 'confirmation', 'screen', 'whenever', 'user', 'confirming', 'something', 'ex', 'piece', 'order', 'user', 'confirms', 'piece', 'next', 'user', 'user', 'next', 'time', 'confirms', 'operation', 'default', 'qty', 'presented', 'noticing', 'presenting', 'original'] list_processed_text: [['confirmation'], ['qty'], ['window'], ['deducting'], ['confirmed'], ['piece'], ['default'], ['qty'], ['field'], ['per'], ['understanding'], ['mii'], ['subtract'], ['already'], ['confirmed'], ['piece'], ['order'], ['planned'], ['quantity'], ['confirmation'], ['screen'], ['whenever'], ['user'], ['confirming'], ['something'], ['ex'], ['piece'], ['order'], ['user'], ['confirms'], ['piece'], ['next'], ['user'], ['user'], ['next'], ['time'], ['confirms'], ['operation'], ['default'], ['qty'], ['presented'], ['noticing'], ['presenting'], ['original']] k: 3147 len: <class 'list'> Data: ['rzonkfua', 'yidvloun', 'unable', 'login', 'window', 'outlook', 'rzonkfua', 'yidvloun', 'unable', 'login', 'window', 'outlook'] processed_text: ['rzonkfua', 'yidvloun', 'unable', 'login', 'window', 'outlook', 'rzonkfua', 'yidvloun', 'unable', 'login', 'window', 'outlook'] list_processed_text: [['rzonkfua'], ['yidvloun'], ['unable'], ['login'], ['window'], ['outlook'], ['rzonkfua'], ['yidvloun'], ['unable'], ['login'], ['window'], ['outlook']] k: 3148 len: <class 'list'> Data: ['partial', 'confirmation', 'info', 'sent', 'erp', 'machine', 'status', 'behaving', 'differently', 'usa', 'usa', 'go', 'live', 'week', 'issue', 'reported', 'order', 'op', 'work', 'center', 'operation', 'prir', 'status', 'sartlgeo', 'lhqksbdx', 'pm', 'mii', 'allow', 'resume', 'run', 'gergryth', 'changed', 'status', 'mii', 'prst', 'prir', 'changed', 'status', 'di', 'list', 'machine', 'summary', 'start', 'process', 'pm', 'current', 'time', 'sartlgeo', 'lhqksbdx', 'pm', 'time', 'elapsed', 'hour', 'seeing', 'machine', 'summary', 'dashbankrd', 'meaning', 'mii', 'send', 'partial', 'confirmation', 'information', 'erp', 'used', 'information', 'machine', 'status', 'view', 'etc', 'summary', 'partial', 'confirmation', 'information', 'made', 'erp', 'perfectly', 'fine', 'machine', 'status', 'window', 'updated', 'partial', 'confirmation', 'pause', 'behaved', 'partial', 'confirmation', 'pause', 'never', 'happened', 'example', 'usa', 'usa', 'location', 'order', 'operation', 'mii', 'showed', 'order', 'prpf', 'status', 'looking', 'erp', 'order', 'partially', 'confirmed', 'followed', 'automatic', 'pause', 'mii', 'add', 'change', 'log', 'show', 'entry', 'done', 'miiadmin', 'weird', 'since', 'erp', 'showing', 'expected', 'status', 'provided', 'mii', 'mii', 'showing', 'prpf', 'status', 'make', 'sense', 'reporting', 'issue', 'team', 'deep', 'dive', 'come', 'solution'] processed_text: ['partial', 'confirmation', 'info', 'sent', 'erp', 'machine', 'status', 'behaving', 'differently', 'usa', 'usa', 'go', 'live', 'week', 'issue', 'reported', 'order', 'op', 'work', 'center', 'operation', 'prir', 'status', 'sartlgeo', 'lhqksbdx', 'pm', 'mii', 'allow', 'resume', 'run', 'gergryth', 'changed', 'status', 'mii', 'prst', 'prir', 'changed', 'status', 'di', 'list', 'machine', 'summary', 'start', 'process', 'pm', 'current', 'time', 'sartlgeo', 'lhqksbdx', 'pm', 'time', 'elapsed', 'hour', 'seeing', 'machine', 'summary', 'dashbankrd', 'meaning', 'mii', 'send', 'partial', 'confirmation', 'information', 'erp', 'used', 'information', 'machine', 'status', 'view', 'etc', 'summary', 'partial', 'confirmation', 'information', 'made', 'erp', 'perfectly', 'fine', 'machine', 'status', 'window', 'updated', 'partial', 'confirmation', 'pause', 'behaved', 'partial', 'confirmation', 'pause', 'never', 'happened', 'example', 'usa', 'usa', 'location', 'order', 'operation', 'mii', 'showed', 'order', 'prpf', 'status', 'looking', 'erp', 'order', 'partially', 'confirmed', 'followed', 'automatic', 'pause', 'mii', 'add', 'change', 'log', 'show', 'entry', 'done', 'miiadmin', 'weird', 'since', 'erp', 'showing', 'expected', 'status', 'provided', 'mii', 'mii', 'showing', 'prpf', 'status', 'make', 'sense', 'reporting', 'issue', 'team', 'deep', 'dive', 'come', 'solution'] list_processed_text: [['partial'], ['confirmation'], ['info'], ['sent'], ['erp'], ['machine'], ['status'], ['behaving'], ['differently'], ['usa'], ['usa'], ['go'], ['live'], ['week'], ['issue'], ['reported'], ['order'], ['op'], ['work'], ['center'], ['operation'], ['prir'], ['status'], ['sartlgeo'], ['lhqksbdx'], ['pm'], ['mii'], ['allow'], ['resume'], ['run'], ['gergryth'], ['changed'], ['status'], ['mii'], ['prst'], ['prir'], ['changed'], ['status'], ['di'], ['list'], ['machine'], ['summary'], ['start'], ['process'], ['pm'], ['current'], ['time'], ['sartlgeo'], ['lhqksbdx'], ['pm'], ['time'], ['elapsed'], ['hour'], ['seeing'], ['machine'], ['summary'], ['dashbankrd'], ['meaning'], ['mii'], ['send'], ['partial'], ['confirmation'], ['information'], ['erp'], ['used'], ['information'], ['machine'], ['status'], ['view'], ['etc'], ['summary'], ['partial'], ['confirmation'], ['information'], ['made'], ['erp'], ['perfectly'], ['fine'], ['machine'], ['status'], ['window'], ['updated'], ['partial'], ['confirmation'], ['pause'], ['behaved'], ['partial'], ['confirmation'], ['pause'], ['never'], ['happened'], ['example'], ['usa'], ['usa'], ['location'], ['order'], ['operation'], ['mii'], ['showed'], ['order'], ['prpf'], ['status'], ['looking'], ['erp'], ['order'], ['partially'], ['confirmed'], ['followed'], ['automatic'], ['pause'], ['mii'], ['add'], ['change'], ['log'], ['show'], ['entry'], ['done'], ['miiadmin'], ['weird'], ['since'], ['erp'], ['showing'], ['expected'], ['status'], ['provided'], ['mii'], ['mii'], ['showing'], ['prpf'], ['status'], ['make'], ['sense'], ['reporting'], ['issue'], ['team'], ['deep'], ['dive'], ['come'], ['solution']] k: 3149 len: <class 'list'> Data: ['unable', 'print', 'purchase', 'order', 'erp', 'unable', 'print', 'purchase', 'order', 'erp'] processed_text: ['unable', 'print', 'purchase', 'order', 'erp', 'unable', 'print', 'purchase', 'order', 'erp'] list_processed_text: [['unable'], ['print'], ['purchase'], ['order'], ['erp'], ['unable'], ['print'], ['purchase'], ['order'], ['erp']] k: 3150 len: <class 'list'> Data: ['entered', 'data', 'maintenance', 'window', 'using', 'operator', 'credential', 'usa', 'usa', 'go', 'live', 'week', 'able', 'get', 'data', 'maintenance', 'operator', 'pc', 'using', 'operator', 'id', 'exact', 'step', 'listed', 'operator', 'operator', 'dashbankrd', 'open', 'pc', 'asked', 'help', 'todfrm', 'brgyake', 'plant', 'manager', 'zcudbnyq', 'rdxzgpej', 'manufacturing', 'manager', 'stopped', 'operator', 'desk', 'question', 'required', 'get', 'data', 'maintenance', 'confirm', 'something', 'original', 'question', 'interrupt', 'code', 'opened', 'new', 'tab', 'right', 'next', 'operator', 'dashbankrd', 'typed', 'url', 'data', 'maintenance', 'went', 'operator', 'dashbankrd', 'tab', 'clicked', 'log', 'expecting', 'enter', 'credential', 'get', 'data', 'maintenance', 'thing', 'weird', 'happened', 'moment', 'switched', 'data', 'maintenance', 'tab', 'realized', 'already', 'logged', 'without', 'entering', 'id', 'double', 'checked', 'tom', 'davidthd', 'maybe', 'dreaming', 'entered', 'credential', 'confirmed', 'application', 'took', 'home', 'screen', 'data', 'maintenance', 'without', 'asking', 'credential'] processed_text: ['entered', 'data', 'maintenance', 'window', 'using', 'operator', 'credential', 'usa', 'usa', 'go', 'live', 'week', 'able', 'get', 'data', 'maintenance', 'operator', 'pc', 'using', 'operator', 'id', 'exact', 'step', 'listed', 'operator', 'operator', 'dashbankrd', 'open', 'pc', 'asked', 'help', 'todfrm', 'brgyake', 'plant', 'manager', 'zcudbnyq', 'rdxzgpej', 'manufacturing', 'manager', 'stopped', 'operator', 'desk', 'question', 'required', 'get', 'data', 'maintenance', 'confirm', 'something', 'original', 'question', 'interrupt', 'code', 'opened', 'new', 'tab', 'right', 'next', 'operator', 'dashbankrd', 'typed', 'url', 'data', 'maintenance', 'went', 'operator', 'dashbankrd', 'tab', 'clicked', 'log', 'expecting', 'enter', 'credential', 'get', 'data', 'maintenance', 'thing', 'weird', 'happened', 'moment', 'switched', 'data', 'maintenance', 'tab', 'realized', 'already', 'logged', 'without', 'entering', 'id', 'double', 'checked', 'tom', 'davidthd', 'maybe', 'dreaming', 'entered', 'credential', 'confirmed', 'application', 'took', 'home', 'screen', 'data', 'maintenance', 'without', 'asking', 'credential'] list_processed_text: [['entered'], ['data'], ['maintenance'], ['window'], ['using'], ['operator'], ['credential'], ['usa'], ['usa'], ['go'], ['live'], ['week'], ['able'], ['get'], ['data'], ['maintenance'], ['operator'], ['pc'], ['using'], ['operator'], ['id'], ['exact'], ['step'], ['listed'], ['operator'], ['operator'], ['dashbankrd'], ['open'], ['pc'], ['asked'], ['help'], ['todfrm'], ['brgyake'], ['plant'], ['manager'], ['zcudbnyq'], ['rdxzgpej'], ['manufacturing'], ['manager'], ['stopped'], ['operator'], ['desk'], ['question'], ['required'], ['get'], ['data'], ['maintenance'], ['confirm'], ['something'], ['original'], ['question'], ['interrupt'], ['code'], ['opened'], ['new'], ['tab'], ['right'], ['next'], ['operator'], ['dashbankrd'], ['typed'], ['url'], ['data'], ['maintenance'], ['went'], ['operator'], ['dashbankrd'], ['tab'], ['clicked'], ['log'], ['expecting'], ['enter'], ['credential'], ['get'], ['data'], ['maintenance'], ['thing'], ['weird'], ['happened'], ['moment'], ['switched'], ['data'], ['maintenance'], ['tab'], ['realized'], ['already'], ['logged'], ['without'], ['entering'], ['id'], ['double'], ['checked'], ['tom'], ['davidthd'], ['maybe'], ['dreaming'], ['entered'], ['credential'], ['confirmed'], ['application'], ['took'], ['home'], ['screen'], ['data'], ['maintenance'], ['without'], ['asking'], ['credential']] k: 3151 len: <class 'list'> Data: ['ndigung', 'action', 'pfgia', 'scgtitt', 'completed', 'hello', 'k', 'ndigung', 'pfgia', 'scgtitt', 'effective', 'approved'] processed_text: ['ndigung', 'action', 'pfgia', 'scgtitt', 'completed', 'hello', 'k', 'ndigung', 'pfgia', 'scgtitt', 'effective', 'approved'] list_processed_text: [['ndigung'], ['action'], ['pfgia'], ['scgtitt'], ['completed'], ['hello'], ['k'], ['ndigung'], ['pfgia'], ['scgtitt'], ['effective'], ['approved']] k: 3152 len: <class 'list'> Data: ['mii', 'logging', 'different', 'user', 'issue', 'reported', 'usa', 'usa', 'usa', 'note', 'erin', 'new', 'issue', 'today', 'osterwalder', 'bank', 'operator', 'signing', 'logged', 'usernames', 'attached', 'screen', 'shot', 'edclhpkf', 'ahjklpxm', 'signed', 'login', 'mcelrnr', 'logged', 'sanddry', 'mcgfrtann', 'mcgatnsl', 'new', 'change', 'previously', 'would', 'log', 'lauacyltoe', 'hxgaycze', 'person', 'would', 'open', 'window', 'even', 'signing', 'correct', 'person'] processed_text: ['mii', 'logging', 'different', 'user', 'issue', 'reported', 'usa', 'usa', 'usa', 'note', 'erin', 'new', 'issue', 'today', 'osterwalder', 'bank', 'operator', 'signing', 'logged', 'usernames', 'attached', 'screen', 'shot', 'edclhpkf', 'ahjklpxm', 'signed', 'login', 'mcelrnr', 'logged', 'sanddry', 'mcgfrtann', 'mcgatnsl', 'new', 'change', 'previously', 'would', 'log', 'lauacyltoe', 'hxgaycze', 'person', 'would', 'open', 'window', 'even', 'signing', 'correct', 'person'] list_processed_text: [['mii'], ['logging'], ['different'], ['user'], ['issue'], ['reported'], ['usa'], ['usa'], ['usa'], ['note'], ['erin'], ['new'], ['issue'], ['today'], ['osterwalder'], ['bank'], ['operator'], ['signing'], ['logged'], ['usernames'], ['attached'], ['screen'], ['shot'], ['edclhpkf'], ['ahjklpxm'], ['signed'], ['login'], ['mcelrnr'], ['logged'], ['sanddry'], ['mcgfrtann'], ['mcgatnsl'], ['new'], ['change'], ['previously'], ['would'], ['log'], ['lauacyltoe'], ['hxgaycze'], ['person'], ['would'], ['open'], ['window'], ['even'], ['signing'], ['correct'], ['person']] k: 3153 len: <class 'list'> Data: ['ie', 'needed', 'finance', 'app', 'ie', 'needed', 'finance', 'app', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'ie', 'reinstalled', 'ie', 'user', 'confirmed', 'able', 'login', 'finance', 'app', 'issue', 'resolved'] processed_text: ['ie', 'needed', 'finance', 'app', 'ie', 'needed', 'finance', 'app', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'ie', 'reinstalled', 'ie', 'user', 'confirmed', 'able', 'login', 'finance', 'app', 'issue', 'resolved'] list_processed_text: [['ie'], ['needed'], ['finance'], ['app'], ['ie'], ['needed'], ['finance'], ['app'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['uninstalled'], ['ie'], ['reinstalled'], ['ie'], ['user'], ['confirmed'], ['able'], ['login'], ['finance'], ['app'], ['issue'], ['resolved']] k: 3154 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 3155 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3156 len: <class 'list'> Data: ['driver', 'loaded', 'properly', 'inc', 'summary', 'hello', 'log', 'pc', 'due', 'updating', 'intel', 'driver', 'loaded', 'properly'] processed_text: ['driver', 'loaded', 'properly', 'inc', 'summary', 'hello', 'log', 'pc', 'due', 'updating', 'intel', 'driver', 'loaded', 'properly'] list_processed_text: [['driver'], ['loaded'], ['properly'], ['inc'], ['summary'], ['hello'], ['log'], ['pc'], ['due'], ['updating'], ['intel'], ['driver'], ['loaded'], ['properly']] k: 3157 len: <class 'list'> Data: ['partner', 'rtr', 'team', 'email', 'restriction', 'would', 'like', 'assistance', 'trying', 'change', 'email', 'access', 'approved', 'partner', 'team', 'ergtyic', 'wrtyvis', 'manager', 'internal', 'audit', 'pal', 'sadipta', 'mail', 'ntsowaem', 'jfgslyde', 'fw', 'partner', 'rtr', 'team', 'email', 'restriction', 'hi', 'erirtc', 'think', 'sonia', 'able', 'expedite'] processed_text: ['partner', 'rtr', 'team', 'email', 'restriction', 'would', 'like', 'assistance', 'trying', 'change', 'email', 'access', 'approved', 'partner', 'team', 'ergtyic', 'wrtyvis', 'manager', 'internal', 'audit', 'pal', 'sadipta', 'mail', 'ntsowaem', 'jfgslyde', 'fw', 'partner', 'rtr', 'team', 'email', 'restriction', 'hi', 'erirtc', 'think', 'sonia', 'able', 'expedite'] list_processed_text: [['partner'], ['rtr'], ['team'], ['email'], ['restriction'], ['would'], ['like'], ['assistance'], ['trying'], ['change'], ['email'], ['access'], ['approved'], ['partner'], ['team'], ['ergtyic'], ['wrtyvis'], ['manager'], ['internal'], ['audit'], ['pal'], ['sadipta'], ['mail'], ['ntsowaem'], ['jfgslyde'], ['fw'], ['partner'], ['rtr'], ['team'], ['email'], ['restriction'], ['hi'], ['erirtc'], ['think'], ['sonia'], ['able'], ['expedite']] k: 3158 len: <class 'list'> Data: ['document', 'folder', 'missing', 'document', 'folder', 'missing'] processed_text: ['document', 'folder', 'missing', 'document', 'folder', 'missing'] list_processed_text: [['document'], ['folder'], ['missing'], ['document'], ['folder'], ['missing']] k: 3159 len: <class 'list'> Data: ['unable', 'connect', 'dg', 'printer', 'unable', 'connect', 'dg', 'printer'] processed_text: ['unable', 'connect', 'dg', 'printer', 'unable', 'connect', 'dg', 'printer'] list_processed_text: [['unable'], ['connect'], ['dg'], ['printer'], ['unable'], ['connect'], ['dg'], ['printer']] k: 3160 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 3161 len: <class 'list'> Data: ['unable', 'print', 'erp', 'order', 'unable', 'print', 'erp', 'order'] processed_text: ['unable', 'print', 'erp', 'order', 'unable', 'print', 'erp', 'order'] list_processed_text: [['unable'], ['print'], ['erp'], ['order'], ['unable'], ['print'], ['erp'], ['order']] k: 3162 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] processed_text: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['unable'], ['connect'], ['wifi']] k: 3163 len: <class 'list'> Data: ['unable', 'hear', 'audio', 'skype', 'unable', 'hear', 'audio', 'skype'] processed_text: ['unable', 'hear', 'audio', 'skype', 'unable', 'hear', 'audio', 'skype'] list_processed_text: [['unable'], ['hear'], ['audio'], ['skype'], ['unable'], ['hear'], ['audio'], ['skype']] k: 3164 len: <class 'list'> Data: ['connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'converting', 'planned', 'order', 'production', 'order', 'releasing', 'print', 'attempting', 'print', 'anything', 'erp', 'getting', 'following', 'error', 'message', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] processed_text: ['connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'converting', 'planned', 'order', 'production', 'order', 'releasing', 'print', 'attempting', 'print', 'anything', 'erp', 'getting', 'following', 'error', 'message', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] list_processed_text: [['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['converting'], ['planned'], ['order'], ['production'], ['order'], ['releasing'], ['print'], ['attempting'], ['print'], ['anything'], ['erp'], ['getting'], ['following'], ['error'], ['message'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['error'], ['opening'], ['rfc'], ['connection'], ['cpic'], ['call']] k: 3165 len: <class 'list'> Data: ['skype', 'issue', 'login', 'issue', 'skype', 'issue', 'login', 'issue'] processed_text: ['skype', 'issue', 'login', 'issue', 'skype', 'issue', 'login', 'issue'] list_processed_text: [['skype'], ['issue'], ['login'], ['issue'], ['skype'], ['issue'], ['login'], ['issue']] k: 3166 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'query', 'hr', 'tool', 'etime', 'query'] processed_text: ['hr', 'tool', 'etime', 'query', 'hr', 'tool', 'etime', 'query'] list_processed_text: [['hr'], ['tool'], ['etime'], ['query'], ['hr'], ['tool'], ['etime'], ['query']] k: 3167 len: <class 'list'> Data: ['reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software', 'reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software'] processed_text: ['reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software', 'reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software'] list_processed_text: [['reset'], ['password'], ['cyvdluja'], ['oxrkfpbz'], ['telephony'], ['software'], ['reset'], ['password'], ['cyvdluja'], ['oxrkfpbz'], ['telephony'], ['software']] k: 3168 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 3169 len: <class 'list'> Data: ['information', 'pushed', 'bar', 'machine', 'status', 'display', 'machine', 'status', 'window', 'active', 'hour', 'operation', 'displayed', 'one', 'instance', 'hour', 'pushed', 'bar', 'making', 'information', 'unreadable', 'instead', 'showing', 'appears', 'adding', 'pitcure'] processed_text: ['information', 'pushed', 'bar', 'machine', 'status', 'display', 'machine', 'status', 'window', 'active', 'hour', 'operation', 'displayed', 'one', 'instance', 'hour', 'pushed', 'bar', 'making', 'information', 'unreadable', 'instead', 'showing', 'appears', 'adding', 'pitcure'] list_processed_text: [['information'], ['pushed'], ['bar'], ['machine'], ['status'], ['display'], ['machine'], ['status'], ['window'], ['active'], ['hour'], ['operation'], ['displayed'], ['one'], ['instance'], ['hour'], ['pushed'], ['bar'], ['making'], ['information'], ['unreadable'], ['instead'], ['showing'], ['appears'], ['adding'], ['pitcure']] k: 3170 len: <class 'list'> Data: ['invlaid', 'order', 'number', 'usa', 'see', 'order', 'mii', 'infact', 'material', 'number', 'need', 'know', 'entered', 'production', 'order', 'dashbankrd'] processed_text: ['invlaid', 'order', 'number', 'usa', 'see', 'order', 'mii', 'infact', 'material', 'number', 'need', 'know', 'entered', 'production', 'order', 'dashbankrd'] list_processed_text: [['invlaid'], ['order'], ['number'], ['usa'], ['see'], ['order'], ['mii'], ['infact'], ['material'], ['number'], ['need'], ['know'], ['entered'], ['production'], ['order'], ['dashbankrd']] k: 3171 len: <class 'list'> Data: ['work', 'center', 'allowed', 'difference', 'message', 'showing', 'threshold', 'set', 'confirm', 'qty', 'threshold', 'set', 'system', 'present', 'warning', 'even', 'confirm', 'planned', 'order', 'qty', 'exactly', 'planned', 'order', 'qty'] processed_text: ['work', 'center', 'allowed', 'difference', 'message', 'showing', 'threshold', 'set', 'confirm', 'qty', 'threshold', 'set', 'system', 'present', 'warning', 'even', 'confirm', 'planned', 'order', 'qty', 'exactly', 'planned', 'order', 'qty'] list_processed_text: [['work'], ['center'], ['allowed'], ['difference'], ['message'], ['showing'], ['threshold'], ['set'], ['confirm'], ['qty'], ['threshold'], ['set'], ['system'], ['present'], ['warning'], ['even'], ['confirm'], ['planned'], ['order'], ['qty'], ['exactly'], ['planned'], ['order'], ['qty']] k: 3172 len: <class 'list'> Data: ['sent', 'snipping', 'tool', 'help', 'work', 'order'] processed_text: ['sent', 'snipping', 'tool', 'help', 'work', 'order'] list_processed_text: [['sent'], ['snipping'], ['tool'], ['help'], ['work'], ['order']] k: 3173 len: <class 'list'> Data: ['sent', 'snipping', 'tool', 'help', 'work', 'ord'] processed_text: ['sent', 'snipping', 'tool', 'help', 'work', 'ord'] list_processed_text: [['sent'], ['snipping'], ['tool'], ['help'], ['work'], ['ord']] k: 3174 len: <class 'list'> Data: ['unable', 'login', 'es', 'unable', 'login', 'es'] processed_text: ['unable', 'login', 'es', 'unable', 'login', 'es'] list_processed_text: [['unable'], ['login'], ['es'], ['unable'], ['login'], ['es']] k: 3175 len: <class 'list'> Data: ['erp', 'help', 'converting', 'planned', 'order', 'production', 'order', 'releasing', 'print', 'getting', 'following', 'error', 'message'] processed_text: ['erp', 'help', 'converting', 'planned', 'order', 'production', 'order', 'releasing', 'print', 'getting', 'following', 'error', 'message'] list_processed_text: [['erp'], ['help'], ['converting'], ['planned'], ['order'], ['production'], ['order'], ['releasing'], ['print'], ['getting'], ['following'], ['error'], ['message']] k: 3176 len: <class 'list'> Data: ['skype', 'issue', 'personal', 'certificate', 'error', 'summary', 'unable', 'sign', 'skype', 'getting', 'pop', 'message', 'saying', 'problem', 'certificate', 'suggestion'] processed_text: ['skype', 'issue', 'personal', 'certificate', 'error', 'summary', 'unable', 'sign', 'skype', 'getting', 'pop', 'message', 'saying', 'problem', 'certificate', 'suggestion'] list_processed_text: [['skype'], ['issue'], ['personal'], ['certificate'], ['error'], ['summary'], ['unable'], ['sign'], ['skype'], ['getting'], ['pop'], ['message'], ['saying'], ['problem'], ['certificate'], ['suggestion']] k: 3177 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3178 len: <class 'list'> Data: ['assign', 'plm', 'cannot', 'print', 'work', 'order', 'due', 'plsseald', 'connection', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay'] processed_text: ['assign', 'plm', 'cannot', 'print', 'work', 'order', 'due', 'plsseald', 'connection', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay'] list_processed_text: [['assign'], ['plm'], ['cannot'], ['print'], ['work'], ['order'], ['due'], ['plsseald'], ['connection'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay']] k: 3179 len: <class 'list'> Data: ['wrong', 'stock', 'status', 'symbol', 'displayed', 'distributor', 'tool', 'companycenter', 'see', 'attached', 'email', 'wrong', 'stock', 'status', 'symbol', 'displayed', 'distributor', 'tool', 'companycenter', 'see', 'attached', 'email'] processed_text: ['wrong', 'stock', 'status', 'symbol', 'displayed', 'distributor', 'tool', 'companycenter', 'see', 'attached', 'email', 'wrong', 'stock', 'status', 'symbol', 'displayed', 'distributor', 'tool', 'companycenter', 'see', 'attached', 'email'] list_processed_text: [['wrong'], ['stock'], ['status'], ['symbol'], ['displayed'], ['distributor'], ['tool'], ['companycenter'], ['see'], ['attached'], ['email'], ['wrong'], ['stock'], ['status'], ['symbol'], ['displayed'], ['distributor'], ['tool'], ['companycenter'], ['see'], ['attached'], ['email']] k: 3180 len: <class 'list'> Data: ['erp', 'access', 'issue', 'high', 'priority', 'gofmxlun', 'kxcfrobq', 'getting', 'error', 'erp', 'try', 'create', 'order', 'main', 'function', 'unable', 'proceed', 'creating', 'order', 'note', 'micthle', 'follows', 'receiving', 'server', 'error', 'trying', 'create', 'production', 'order', 'erp', 'error', 'message', 'say', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'conneciton', 'cpic', 'call', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'letyenm', 'transaction', 'code', 'user', 'need', 'working', 'co', 'describe', 'issue', 'see', 'message', 'micthle'] processed_text: ['erp', 'access', 'issue', 'high', 'priority', 'gofmxlun', 'kxcfrobq', 'getting', 'error', 'erp', 'try', 'create', 'order', 'main', 'function', 'unable', 'proceed', 'creating', 'order', 'note', 'micthle', 'follows', 'receiving', 'server', 'error', 'trying', 'create', 'production', 'order', 'erp', 'error', 'message', 'say', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'conneciton', 'cpic', 'call', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'letyenm', 'transaction', 'code', 'user', 'need', 'working', 'co', 'describe', 'issue', 'see', 'message', 'micthle'] list_processed_text: [['erp'], ['access'], ['issue'], ['high'], ['priority'], ['gofmxlun'], ['kxcfrobq'], ['getting'], ['error'], ['erp'], ['try'], ['create'], ['order'], ['main'], ['function'], ['unable'], ['proceed'], ['creating'], ['order'], ['note'], ['micthle'], ['follows'], ['receiving'], ['server'], ['error'], ['trying'], ['create'], ['production'], ['order'], ['erp'], ['error'], ['message'], ['say'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['error'], ['opening'], ['rfc'], ['conneciton'], ['cpic'], ['call'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['letyenm'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['co'], ['describe'], ['issue'], ['see'], ['message'], ['micthle']] k: 3181 len: <class 'list'> Data: ['pair', 'formation', 'error', 'order', 'right', 'information', 'status', 'erp', 'usa', 'order', 'operation', 'operator', 'unable', 'final', 'confirm', 'order', 'using', 'time', 'event', 'gergryth', 'looked', 'confirmation', 'detail', 'erp', 'everything', 'look', 'correct', 'mii', 'throwing', 'pair', 'formation', 'error'] processed_text: ['pair', 'formation', 'error', 'order', 'right', 'information', 'status', 'erp', 'usa', 'order', 'operation', 'operator', 'unable', 'final', 'confirm', 'order', 'using', 'time', 'event', 'gergryth', 'looked', 'confirmation', 'detail', 'erp', 'everything', 'look', 'correct', 'mii', 'throwing', 'pair', 'formation', 'error'] list_processed_text: [['pair'], ['formation'], ['error'], ['order'], ['right'], ['information'], ['status'], ['erp'], ['usa'], ['order'], ['operation'], ['operator'], ['unable'], ['final'], ['confirm'], ['order'], ['using'], ['time'], ['event'], ['gergryth'], ['looked'], ['confirmation'], ['detail'], ['erp'], ['everything'], ['look'], ['correct'], ['mii'], ['throwing'], ['pair'], ['formation'], ['error']] k: 3182 len: <class 'list'> Data: ['able', 'start', 'confirmed', 'job', 'mii', 'usa', 'order', 'operation', 'final', 'confirmed', 'job', 'mii', 'operator', 'able', 'start', 'job', 'happened', 'per', 'logic', 'defined'] processed_text: ['able', 'start', 'confirmed', 'job', 'mii', 'usa', 'order', 'operation', 'final', 'confirmed', 'job', 'mii', 'operator', 'able', 'start', 'job', 'happened', 'per', 'logic', 'defined'] list_processed_text: [['able'], ['start'], ['confirmed'], ['job'], ['mii'], ['usa'], ['order'], ['operation'], ['final'], ['confirmed'], ['job'], ['mii'], ['operator'], ['able'], ['start'], ['job'], ['happened'], ['per'], ['logic'], ['defined']] k: 3183 len: <class 'list'> Data: ['unable', 'get', 'production', 'order', 'print', 'error', 'read', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] processed_text: ['unable', 'get', 'production', 'order', 'print', 'error', 'read', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] list_processed_text: [['unable'], ['get'], ['production'], ['order'], ['print'], ['error'], ['read'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['error'], ['opening'], ['rfc'], ['connection'], ['cpic'], ['call']] k: 3184 len: <class 'list'> Data: ['erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'contact'] processed_text: ['erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'contact'] list_processed_text: [['erp'], ['printing'], ['issue'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['erp'], ['printing'], ['issue'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['error'], ['opening'], ['rfc'], ['connection'], ['contact']] k: 3185 len: <class 'list'> Data: ['erp', 'production', 'order', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'contact', 'ext'] processed_text: ['erp', 'production', 'order', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'erp', 'printing', 'issue', 'connection', 'system', 'production', 'order', 'interface', 'app', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'okay', 'error', 'opening', 'rfc', 'connection', 'contact', 'ext'] list_processed_text: [['erp'], ['production'], ['order'], ['printing'], ['issue'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['erp'], ['printing'], ['issue'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['okay'], ['error'], ['opening'], ['rfc'], ['connection'], ['contact'], ['ext']] k: 3186 len: <class 'list'> Data: ['access', 'needed', 'vrtybundj', 'ticketing', 'tool', 'please', 'usa', 'ycimqn', 'wtubpdsz', 'vrtybundj', 'access', 'ticketing', 'tool', 'view', 'ticket', 'similar', 'pwc', 'usaed', 'year', 'let', 'know', 'question'] processed_text: ['access', 'needed', 'vrtybundj', 'ticketing', 'tool', 'please', 'usa', 'ycimqn', 'wtubpdsz', 'vrtybundj', 'access', 'ticketing', 'tool', 'view', 'ticket', 'similar', 'pwc', 'usaed', 'year', 'let', 'know', 'question'] list_processed_text: [['access'], ['needed'], ['vrtybundj'], ['ticketing'], ['tool'], ['please'], ['usa'], ['ycimqn'], ['wtubpdsz'], ['vrtybundj'], ['access'], ['ticketing'], ['tool'], ['view'], ['ticket'], ['similar'], ['pwc'], ['usaed'], ['year'], ['let'], ['know'], ['question']] k: 3187 len: <class 'list'> Data: ['crm', 'good', 'morning', 'need', 'help', 'assigning', 'account', 'crm', 'account', 'assigned', 'another', 'se', 'account', 'since', 'reassigned', 'unable', 'reassign', 'account', 'since', 'primary', 'sale'] processed_text: ['crm', 'good', 'morning', 'need', 'help', 'assigning', 'account', 'crm', 'account', 'assigned', 'another', 'se', 'account', 'since', 'reassigned', 'unable', 'reassign', 'account', 'since', 'primary', 'sale'] list_processed_text: [['crm'], ['good'], ['morning'], ['need'], ['help'], ['assigning'], ['account'], ['crm'], ['account'], ['assigned'], ['another'], ['se'], ['account'], ['since'], ['reassigned'], ['unable'], ['reassign'], ['account'], ['since'], ['primary'], ['sale']] k: 3188 len: <class 'list'> Data: ['business', 'client', 'login', 'issue', 'business', 'client', 'login', 'issue'] processed_text: ['business', 'client', 'login', 'issue', 'business', 'client', 'login', 'issue'] list_processed_text: [['business'], ['client'], ['login'], ['issue'], ['business'], ['client'], ['login'], ['issue']] k: 3189 len: <class 'list'> Data: ['erp', 'letting', 'print', 'order', 'message', 'dvsrepro', 'zrfc', 'message', 'dvsrepro', 'zrfc'] processed_text: ['erp', 'letting', 'print', 'order', 'message', 'dvsrepro', 'zrfc', 'message', 'dvsrepro', 'zrfc'] list_processed_text: [['erp'], ['letting'], ['print'], ['order'], ['message'], ['dvsrepro'], ['zrfc'], ['message'], ['dvsrepro'], ['zrfc']] k: 3190 len: <class 'list'> Data: ['email', 'information', 'kthvr', 'sertce', 'pm', 'nwfodmhc', 'exurcwkm', 'rjodlbcf', 'uorcpftk', 'zdcheloy', 'aevzsogn', 'amar', 'fw', 'important', 'account', 'information', 'hi', 'please', 'investigate', 'accurate', 'spam', 'older', 'email', 'address', 'usa', 'customer', 'service', 'email', 'box', 'listed', 'older', 'literature', 'still', 'used', 'customer', 'keep', 'operation', 'please', 'confirm'] processed_text: ['email', 'information', 'kthvr', 'sertce', 'pm', 'nwfodmhc', 'exurcwkm', 'rjodlbcf', 'uorcpftk', 'zdcheloy', 'aevzsogn', 'amar', 'fw', 'important', 'account', 'information', 'hi', 'please', 'investigate', 'accurate', 'spam', 'older', 'email', 'address', 'usa', 'customer', 'service', 'email', 'box', 'listed', 'older', 'literature', 'still', 'used', 'customer', 'keep', 'operation', 'please', 'confirm'] list_processed_text: [['email'], ['information'], ['kthvr'], ['sertce'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rjodlbcf'], ['uorcpftk'], ['zdcheloy'], ['aevzsogn'], ['amar'], ['fw'], ['important'], ['account'], ['information'], ['hi'], ['please'], ['investigate'], ['accurate'], ['spam'], ['older'], ['email'], ['address'], ['usa'], ['customer'], ['service'], ['email'], ['box'], ['listed'], ['older'], ['literature'], ['still'], ['used'], ['customer'], ['keep'], ['operation'], ['please'], ['confirm']] k: 3191 len: <class 'list'> Data: ['expense', 'report', 'blocked', 'expense', 'report', 'blocked'] processed_text: ['expense', 'report', 'blocked', 'expense', 'report', 'blocked'] list_processed_text: [['expense'], ['report'], ['blocked'], ['expense'], ['report'], ['blocked']] k: 3192 len: <class 'list'> Data: ['personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue'] processed_text: ['personal', 'certificate', 'error', 'skype', 'issue', 'personal', 'certificate', 'error', 'skype', 'issue'] list_processed_text: [['personal'], ['certificate'], ['error'], ['skype'], ['issue'], ['personal'], ['certificate'], ['error'], ['skype'], ['issue']] k: 3193 len: <class 'list'> Data: ['unable', 'print', 'production', 'order', 'erp', 'printer', 'bd', 'unable', 'print', 'production', 'order', 'erp', 'printer', 'bd'] processed_text: ['unable', 'print', 'production', 'order', 'erp', 'printer', 'bd', 'unable', 'print', 'production', 'order', 'erp', 'printer', 'bd'] list_processed_text: [['unable'], ['print'], ['production'], ['order'], ['erp'], ['printer'], ['bd'], ['unable'], ['print'], ['production'], ['order'], ['erp'], ['printer'], ['bd']] k: 3194 len: <class 'list'> Data: ['exporting', 'contact', 'outlook', 'exporting', 'contact', 'outlook'] processed_text: ['exporting', 'contact', 'outlook', 'exporting', 'contact', 'outlook'] list_processed_text: [['exporting'], ['contact'], ['outlook'], ['exporting'], ['contact'], ['outlook']] k: 3195 len: <class 'list'> Data: ['skype', 'opening', 'skype', 'opening'] processed_text: ['skype', 'opening', 'skype', 'opening'] list_processed_text: [['skype'], ['opening'], ['skype'], ['opening']] k: 3196 len: <class 'list'> Data: ['reinstall', 'eu', 'tool', 'ewew', 'wrcktgbd', 'wzrgyunp', 'reinstall', 'eu', 'tool', 'ewew', 'wrcktgbd', 'wzrgyunp'] processed_text: ['reinstall', 'eu', 'tool', 'ewew', 'wrcktgbd', 'wzrgyunp', 'reinstall', 'eu', 'tool', 'ewew', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['reinstall'], ['eu'], ['tool'], ['ewew'], ['wrcktgbd'], ['wzrgyunp'], ['reinstall'], ['eu'], ['tool'], ['ewew'], ['wrcktgbd'], ['wzrgyunp']] k: 3197 len: <class 'list'> Data: ['sale', 'doc', 'still', 'show', 'open', 'backorder', 'database', 'sale', 'doc', 'still', 'show', 'open', 'backorder', 'database', 'sale', 'doc', 'pgid', 'yet', 'still', 'show', 'open', 'backorder', 'database', 'rpbdvgoy', 'hxasnzjc', 'suggested', 'enter', 'ticket', 'according', 'aobrelcs', 'suchytro', 'sale', 'doc', 'still', 'look', 'open'] processed_text: ['sale', 'doc', 'still', 'show', 'open', 'backorder', 'database', 'sale', 'doc', 'still', 'show', 'open', 'backorder', 'database', 'sale', 'doc', 'pgid', 'yet', 'still', 'show', 'open', 'backorder', 'database', 'rpbdvgoy', 'hxasnzjc', 'suggested', 'enter', 'ticket', 'according', 'aobrelcs', 'suchytro', 'sale', 'doc', 'still', 'look', 'open'] list_processed_text: [['sale'], ['doc'], ['still'], ['show'], ['open'], ['backorder'], ['database'], ['sale'], ['doc'], ['still'], ['show'], ['open'], ['backorder'], ['database'], ['sale'], ['doc'], ['pgid'], ['yet'], ['still'], ['show'], ['open'], ['backorder'], ['database'], ['rpbdvgoy'], ['hxasnzjc'], ['suggested'], ['enter'], ['ticket'], ['according'], ['aobrelcs'], ['suchytro'], ['sale'], ['doc'], ['still'], ['look'], ['open']] k: 3198 len: <class 'list'> Data: ['window', 'erp', 'account', 'locked', 'window', 'erp', 'account', 'locked'] processed_text: ['window', 'erp', 'account', 'locked', 'window', 'erp', 'account', 'locked'] list_processed_text: [['window'], ['erp'], ['account'], ['locked'], ['window'], ['erp'], ['account'], ['locked']] k: 3199 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] processed_text: ['blank', 'call', 'loud', 'noise', 'gso', 'blank', 'call', 'loud', 'noise', 'gso'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['gso'], ['blank'], ['call'], ['loud'], ['noise'], ['gso']] k: 3200 len: <class 'list'> Data: ['skype', 'responding', 'trying', 'line', 'meeting', 'screen', 'share', 'attachment', 'show', 'skype', 'version', 'etc', 'able', 'join', 'skype', 'meeting', 'time', 'due', 'problem', 'dvzgjsom', 'ynpxqjlf', 'company', 'usa', 'facility'] processed_text: ['skype', 'responding', 'trying', 'line', 'meeting', 'screen', 'share', 'attachment', 'show', 'skype', 'version', 'etc', 'able', 'join', 'skype', 'meeting', 'time', 'due', 'problem', 'dvzgjsom', 'ynpxqjlf', 'company', 'usa', 'facility'] list_processed_text: [['skype'], ['responding'], ['trying'], ['line'], ['meeting'], ['screen'], ['share'], ['attachment'], ['show'], ['skype'], ['version'], ['etc'], ['able'], ['join'], ['skype'], ['meeting'], ['time'], ['due'], ['problem'], ['dvzgjsom'], ['ynpxqjlf'], ['company'], ['usa'], ['facility']] k: 3201 len: <class 'list'> Data: ['password', 'reset', 'help', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['password', 'reset', 'help', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['reset'], ['help'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['help'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 3202 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 3203 len: <class 'list'> Data: ['unable', 'open', 'hr', 'engineering', 'tool', 'hour', 'controller', 'access', 'umzcxfah', 'aoshpjiu', 'plant', 'controller', 'u', 'plant'] processed_text: ['unable', 'open', 'hr', 'engineering', 'tool', 'hour', 'controller', 'access', 'umzcxfah', 'aoshpjiu', 'plant', 'controller', 'u', 'plant'] list_processed_text: [['unable'], ['open'], ['hr'], ['engineering'], ['tool'], ['hour'], ['controller'], ['access'], ['umzcxfah'], ['aoshpjiu'], ['plant'], ['controller'], ['u'], ['plant']] k: 3204 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3205 len: <class 'list'> Data: ['compatibility', 'view', 'setting', 'good', 'morning', 'keep', 'receiving', 'error', 'close', 'internet', 'explorer', 'time', 'open', 'ie', 'website', 'database', 'need', 'added', 'compatibility', 'view', 'setting', 'page', 'happened', 'several', 'people', 'ip', 'department'] processed_text: ['compatibility', 'view', 'setting', 'good', 'morning', 'keep', 'receiving', 'error', 'close', 'internet', 'explorer', 'time', 'open', 'ie', 'website', 'database', 'need', 'added', 'compatibility', 'view', 'setting', 'page', 'happened', 'several', 'people', 'ip', 'department'] list_processed_text: [['compatibility'], ['view'], ['setting'], ['good'], ['morning'], ['keep'], ['receiving'], ['error'], ['close'], ['internet'], ['explorer'], ['time'], ['open'], ['ie'], ['website'], ['database'], ['need'], ['added'], ['compatibility'], ['view'], ['setting'], ['page'], ['happened'], ['several'], ['people'], ['ip'], ['department']] k: 3206 len: <class 'list'> Data: ['password', 'reset', 'request', 'erp', 'prtgghjk', 'sid', 'unable', 'login', 'hr', 'tool', 'erp', 'system'] processed_text: ['password', 'reset', 'request', 'erp', 'prtgghjk', 'sid', 'unable', 'login', 'hr', 'tool', 'erp', 'system'] list_processed_text: [['password'], ['reset'], ['request'], ['erp'], ['prtgghjk'], ['sid'], ['unable'], ['login'], ['hr'], ['tool'], ['erp'], ['system']] k: 3207 len: <class 'list'> Data: ['archiving', 'mail', 'hello', 'archive', 'mail', 'folder', 'structure', 'unfortunately', 'always', 'find', 'folder', 'suddenly', 'longer', 'content', 'wrong', 'gru', 'achim', 'anivdcor', 'rbmfhiox', 'sale', 'manager', 'sale', 'germany', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvh', 'message', 'unique', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'post', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['archiving', 'mail', 'hello', 'archive', 'mail', 'folder', 'structure', 'unfortunately', 'always', 'find', 'folder', 'suddenly', 'longer', 'content', 'wrong', 'gru', 'achim', 'anivdcor', 'rbmfhiox', 'sale', 'manager', 'sale', 'germany', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvh', 'message', 'unique', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'post', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['archiving'], ['mail'], ['hello'], ['archive'], ['mail'], ['folder'], ['structure'], ['unfortunately'], ['always'], ['find'], ['folder'], ['suddenly'], ['longer'], ['content'], ['wrong'], ['gru'], ['achim'], ['anivdcor'], ['rbmfhiox'], ['sale'], ['manager'], ['sale'], ['germany'], ['company'], ['deutschland'], ['gmbh'], ['managing'], ['director'], ['rfwlsoej'], ['yvtjzkaw'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvh'], ['message'], ['unique'], ['solely'], ['intended'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['post'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 3208 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 3209 len: <class 'list'> Data: ['crm', 'online', 'issue', 'summary', 'urgent', 'help', 'required', 'crm', 'issue', 'crm', 'ribbon', 'grey', 'active', 'issue', 'home', 'tab', 'track', 'set', 'regarding', 'option'] processed_text: ['crm', 'online', 'issue', 'summary', 'urgent', 'help', 'required', 'crm', 'issue', 'crm', 'ribbon', 'grey', 'active', 'issue', 'home', 'tab', 'track', 'set', 'regarding', 'option'] list_processed_text: [['crm'], ['online'], ['issue'], ['summary'], ['urgent'], ['help'], ['required'], ['crm'], ['issue'], ['crm'], ['ribbon'], ['grey'], ['active'], ['issue'], ['home'], ['tab'], ['track'], ['set'], ['regarding'], ['option']] k: 3210 len: <class 'list'> Data: ['msd', 'crm', 'turn', 'crm', 'come', 'name', 'manager', 'get', 'opportunity', 'world', 'want', 'crm', 'information'] processed_text: ['msd', 'crm', 'turn', 'crm', 'come', 'name', 'manager', 'get', 'opportunity', 'world', 'want', 'crm', 'information'] list_processed_text: [['msd'], ['crm'], ['turn'], ['crm'], ['come'], ['name'], ['manager'], ['get'], ['opportunity'], ['world'], ['want'], ['crm'], ['information']] k: 3211 len: <class 'list'> Data: ['m', 'excel', 'analysis', 'addin', 'disabled', 'm', 'excel', 'analysis', 'addin', 'disabled'] processed_text: ['m', 'excel', 'analysis', 'addin', 'disabled', 'm', 'excel', 'analysis', 'addin', 'disabled'] list_processed_text: [['m'], ['excel'], ['analysis'], ['addin'], ['disabled'], ['m'], ['excel'], ['analysis'], ['addin'], ['disabled']] k: 3212 len: <class 'list'> Data: ['populate', 'tranpertation', 'zone', 'crm', 'setting', 'new', 'customer', 'see', 'attachment', 'csr', 'issue'] processed_text: ['populate', 'tranpertation', 'zone', 'crm', 'setting', 'new', 'customer', 'see', 'attachment', 'csr', 'issue'] list_processed_text: [['populate'], ['tranpertation'], ['zone'], ['crm'], ['setting'], ['new'], ['customer'], ['see'], ['attachment'], ['csr'], ['issue']] k: 3213 len: <class 'list'> Data: ['blocked', 'expense', 'report', 'process', 'entering', 'expense', 'lost', 'internet', 'connection', 'trying', 'complete', 'expense', 'receive', 'error', 'please', 'unblock', 'best'] processed_text: ['blocked', 'expense', 'report', 'process', 'entering', 'expense', 'lost', 'internet', 'connection', 'trying', 'complete', 'expense', 'receive', 'error', 'please', 'unblock', 'best'] list_processed_text: [['blocked'], ['expense'], ['report'], ['process'], ['entering'], ['expense'], ['lost'], ['internet'], ['connection'], ['trying'], ['complete'], ['expense'], ['receive'], ['error'], ['please'], ['unblock'], ['best']] k: 3214 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3215 len: <class 'list'> Data: ['allow', 'edit', 'contact', 'info', 'upate', 'back', 'erp', 'allow', 'edit', 'contact', 'info', 'update', 'back', 'erp', 'r', 'npr', 'project', 'go', 'live'] processed_text: ['allow', 'edit', 'contact', 'info', 'upate', 'back', 'erp', 'allow', 'edit', 'contact', 'info', 'update', 'back', 'erp', 'r', 'npr', 'project', 'go', 'live'] list_processed_text: [['allow'], ['edit'], ['contact'], ['info'], ['upate'], ['back'], ['erp'], ['allow'], ['edit'], ['contact'], ['info'], ['update'], ['back'], ['erp'], ['r'], ['npr'], ['project'], ['go'], ['live']] k: 3216 len: <class 'list'> Data: ['outlook', 'cannot', 'connect', 'server', 'outlook', 'cannot', 'connect', 'server'] processed_text: ['outlook', 'cannot', 'connect', 'server', 'outlook', 'cannot', 'connect', 'server'] list_processed_text: [['outlook'], ['cannot'], ['connect'], ['server'], ['outlook'], ['cannot'], ['connect'], ['server']] k: 3217 len: <class 'list'> Data: ['engineering', 'tool', 'uploading', 'issue', 'global', 'service', 'request', 'best'] processed_text: ['engineering', 'tool', 'uploading', 'issue', 'global', 'service', 'request', 'best'] list_processed_text: [['engineering'], ['tool'], ['uploading'], ['issue'], ['global'], ['service'], ['request'], ['best']] k: 3218 len: <class 'list'> Data: ['audio', 'dell', 'tablet', 'audio', 'dell', 'tablet'] processed_text: ['audio', 'dell', 'tablet', 'audio', 'dell', 'tablet'] list_processed_text: [['audio'], ['dell'], ['tablet'], ['audio'], ['dell'], ['tablet']] k: 3219 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'message', 'hello', 'dear', 'colleague', 'get', 'mail', 'someone', 'modified', 'something', 'mailbox', 'dv', 'note', 'kind', 'regard', 'best'] processed_text: ['uacyltoe', 'hxgaycze', 'message', 'hello', 'dear', 'colleague', 'get', 'mail', 'someone', 'modified', 'something', 'mailbox', 'dv', 'note', 'kind', 'regard', 'best'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['message'], ['hello'], ['dear'], ['colleague'], ['get'], ['mail'], ['someone'], ['modified'], ['something'], ['mailbox'], ['dv'], ['note'], ['kind'], ['regard'], ['best']] k: 3220 len: <class 'list'> Data: ['erp', 'accout', 'locked', 'hello', 'sir', 'erp', 'accout', 'locked', 'help', 'try', 'log', 'password', 'management', 'tool', 'passoword', 'system', 'unlock', 'accout', 'also', 'log', 'best'] processed_text: ['erp', 'accout', 'locked', 'hello', 'sir', 'erp', 'accout', 'locked', 'help', 'try', 'log', 'password', 'management', 'tool', 'passoword', 'system', 'unlock', 'accout', 'also', 'log', 'best'] list_processed_text: [['erp'], ['accout'], ['locked'], ['hello'], ['sir'], ['erp'], ['accout'], ['locked'], ['help'], ['try'], ['log'], ['password'], ['management'], ['tool'], ['passoword'], ['system'], ['unlock'], ['accout'], ['also'], ['log'], ['best']] k: 3221 len: <class 'list'> Data: ['reset', 'password', 'qekdgaim', 'wagshrzl', 'erp', 'production', 'erp', 'sid', 'erp', 'production', 'system', 'please', 'reset', 'password', 'cannot', 'log', 'need', 'perform', 'good', 'receipt', 'po'] processed_text: ['reset', 'password', 'qekdgaim', 'wagshrzl', 'erp', 'production', 'erp', 'sid', 'erp', 'production', 'system', 'please', 'reset', 'password', 'cannot', 'log', 'need', 'perform', 'good', 'receipt', 'po'] list_processed_text: [['reset'], ['password'], ['qekdgaim'], ['wagshrzl'], ['erp'], ['production'], ['erp'], ['sid'], ['erp'], ['production'], ['system'], ['please'], ['reset'], ['password'], ['cannot'], ['log'], ['need'], ['perform'], ['good'], ['receipt'], ['po']] k: 3222 len: <class 'list'> Data: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] processed_text: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] list_processed_text: [['need'], ['configure'], ['printer'], ['need'], ['configure'], ['printer']] k: 3223 len: <class 'list'> Data: ['reset', 'password', 'ukasz', 'kutnik', 'telephony', 'software', 'interaction', 'desktop', 'hey', 'team', 'please', 'reset', 'password', 'telephony', 'software', 'interaction', 'desktop'] processed_text: ['reset', 'password', 'ukasz', 'kutnik', 'telephony', 'software', 'interaction', 'desktop', 'hey', 'team', 'please', 'reset', 'password', 'telephony', 'software', 'interaction', 'desktop'] list_processed_text: [['reset'], ['password'], ['ukasz'], ['kutnik'], ['telephony'], ['software'], ['interaction'], ['desktop'], ['hey'], ['team'], ['please'], ['reset'], ['password'], ['telephony'], ['software'], ['interaction'], ['desktop']] k: 3224 len: <class 'list'> Data: ['open', 'connection', 'erp', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'erp', 'incident', 'os', 'message', 'provide', 'access', 'user', 'mutoralkv', 'please', 'open', 'http', 'necessary', 'connection', 'erp', 'update', 'os', 'message'] processed_text: ['open', 'connection', 'erp', 'os', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'erp', 'incident', 'os', 'message', 'provide', 'access', 'user', 'mutoralkv', 'please', 'open', 'http', 'necessary', 'connection', 'erp', 'update', 'os', 'message'] list_processed_text: [['open'], ['connection'], ['erp'], ['os'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['erp'], ['incident'], ['os'], ['message'], ['provide'], ['access'], ['user'], ['mutoralkv'], ['please'], ['open'], ['http'], ['necessary'], ['connection'], ['erp'], ['update'], ['os'], ['message']] k: 3225 len: <class 'list'> Data: ['help', 'hello', 'morning', 'installed', 'intel', 'update', 'processing', 'computer', 'blocked', 'start', 'window', 'start', 'safe', 'mod', 'could', 'please', 'connect', 'pc', 'team', 'viewer', 'best'] processed_text: ['help', 'hello', 'morning', 'installed', 'intel', 'update', 'processing', 'computer', 'blocked', 'start', 'window', 'start', 'safe', 'mod', 'could', 'please', 'connect', 'pc', 'team', 'viewer', 'best'] list_processed_text: [['help'], ['hello'], ['morning'], ['installed'], ['intel'], ['update'], ['processing'], ['computer'], ['blocked'], ['start'], ['window'], ['start'], ['safe'], ['mod'], ['could'], ['please'], ['connect'], ['pc'], ['team'], ['viewer'], ['best']] k: 3226 len: <class 'list'> Data: ['collaboration', 'platform', 'hi', 'please', 'advise', 'access', 'collaboration', 'platform', 'give', 'message', 'kind'] processed_text: ['collaboration', 'platform', 'hi', 'please', 'advise', 'access', 'collaboration', 'platform', 'give', 'message', 'kind'] list_processed_text: [['collaboration'], ['platform'], ['hi'], ['please'], ['advise'], ['access'], ['collaboration'], ['platform'], ['give'], ['message'], ['kind']] k: 3227 len: <class 'list'> Data: ['urgent', 'usb', 'port', 'working', 'usb', 'port', 'working', 'replacement', 'updated', 'chipset', 'driver', 'issue', 'persists', 'user', 'want', 'motherbankrd', 'replaced', 'phone'] processed_text: ['urgent', 'usb', 'port', 'working', 'usb', 'port', 'working', 'replacement', 'updated', 'chipset', 'driver', 'issue', 'persists', 'user', 'want', 'motherbankrd', 'replaced', 'phone'] list_processed_text: [['urgent'], ['usb'], ['port'], ['working'], ['usb'], ['port'], ['working'], ['replacement'], ['updated'], ['chipset'], ['driver'], ['issue'], ['persists'], ['user'], ['want'], ['motherbankrd'], ['replaced'], ['phone']] k: 3228 len: <class 'list'> Data: ['locked', 'erp', 'prtgghjk', 'sid', 'locked', 'erp', 'prtgghjk', 'sid', 'keep', 'happening', 'way', 'often', 'telephone'] processed_text: ['locked', 'erp', 'prtgghjk', 'sid', 'locked', 'erp', 'prtgghjk', 'sid', 'keep', 'happening', 'way', 'often', 'telephone'] list_processed_text: [['locked'], ['erp'], ['prtgghjk'], ['sid'], ['locked'], ['erp'], ['prtgghjk'], ['sid'], ['keep'], ['happening'], ['way'], ['often'], ['telephone']] k: 3229 len: <class 'list'> Data: ['jartnine', 'called', 'give', 'status', 'update', 'jartnine', 'called', 'give', 'status', 'update'] processed_text: ['jartnine', 'called', 'give', 'status', 'update', 'jartnine', 'called', 'give', 'status', 'update'] list_processed_text: [['jartnine'], ['called'], ['give'], ['status'], ['update'], ['jartnine'], ['called'], ['give'], ['status'], ['update']] k: 3230 len: <class 'list'> Data: ['getting', 'error', 'accessing', 'support', 'review', 'form', 'pl', 'refer', 'attachment', 'pl', 'refer', 'attachment'] processed_text: ['getting', 'error', 'accessing', 'support', 'review', 'form', 'pl', 'refer', 'attachment', 'pl', 'refer', 'attachment'] list_processed_text: [['getting'], ['error'], ['accessing'], ['support'], ['review'], ['form'], ['pl'], ['refer'], ['attachment'], ['pl'], ['refer'], ['attachment']] k: 3231 len: <class 'list'> Data: ['receiving', 'error', 'open', 'order', 'book', 'nightly', 'report', 'receiving', 'error', 'open', 'order', 'book', 'nightly', 'report', 'please', 'see', 'attached', 'screen', 'shot'] processed_text: ['receiving', 'error', 'open', 'order', 'book', 'nightly', 'report', 'receiving', 'error', 'open', 'order', 'book', 'nightly', 'report', 'please', 'see', 'attached', 'screen', 'shot'] list_processed_text: [['receiving'], ['error'], ['open'], ['order'], ['book'], ['nightly'], ['report'], ['receiving'], ['error'], ['open'], ['order'], ['book'], ['nightly'], ['report'], ['please'], ['see'], ['attached'], ['screen'], ['shot']] k: 3232 len: <class 'list'> Data: ['sid', 'access', 'hello', 'team', 'recently', 'joined', 'esg', 'group', 'programdnty', 'engineer', 'request', 'provide', 'access', 'sid', 'log', 'erp', 'please', 'needful'] processed_text: ['sid', 'access', 'hello', 'team', 'recently', 'joined', 'esg', 'group', 'programdnty', 'engineer', 'request', 'provide', 'access', 'sid', 'log', 'erp', 'please', 'needful'] list_processed_text: [['sid'], ['access'], ['hello'], ['team'], ['recently'], ['joined'], ['esg'], ['group'], ['programdnty'], ['engineer'], ['request'], ['provide'], ['access'], ['sid'], ['log'], ['erp'], ['please'], ['needful']] k: 3233 len: <class 'list'> Data: ['network', 'printer', 'wy', 'issue', 'print', 'network', 'printer', 'wy', 'issue', 'print', 'warm'] processed_text: ['network', 'printer', 'wy', 'issue', 'print', 'network', 'printer', 'wy', 'issue', 'print', 'warm'] list_processed_text: [['network'], ['printer'], ['wy'], ['issue'], ['print'], ['network'], ['printer'], ['wy'], ['issue'], ['print'], ['warm']] k: 3234 len: <class 'list'> Data: ['error', 'message', 'document', 'release', 'hello', 'releasing', 'word', 'file', 'drawing', 'route', 'card', 'showing', 'error', 'message', 'server', 'offline', 'document', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] processed_text: ['error', 'message', 'document', 'release', 'hello', 'releasing', 'word', 'file', 'drawing', 'route', 'card', 'showing', 'error', 'message', 'server', 'offline', 'document', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] list_processed_text: [['error'], ['message'], ['document'], ['release'], ['hello'], ['releasing'], ['word'], ['file'], ['drawing'], ['route'], ['card'], ['showing'], ['error'], ['message'], ['server'], ['offline'], ['document'], ['get'], ['printed'], ['required'], ['help'], ['resolving'], ['issue'], ['please'], ['print'], ['email'], ['unless'], ['absolutely'], ['necessary'], ['spread'], ['environmental'], ['awareness'], ['confidentiality'], ['caution'], ['communication'], ['including'], ['accompanying'], ['document'], ['intended'], ['sole'], ['use'], ['person'], ['addressed'], ['contain'], ['information'], ['privileged'], ['confidential'], ['exempt'], ['disclosure'], ['unauthorised'], ['reading'], ['dissemination'], ['distribution'], ['duplication'], ['communication'], ['someone'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['receipt'], ['communication'], ['error'], ['please'], ['notify'], ['sender'], ['destrtgoy'], ['original'], ['communication'], ['immediately']] k: 3235 len: <class 'list'> Data: ['purchasing', 'menue', 'shopping', 'cart', 'working', 'correct', 'see', 'attached', 'screenshot'] processed_text: ['purchasing', 'menue', 'shopping', 'cart', 'working', 'correct', 'see', 'attached', 'screenshot'] list_processed_text: [['purchasing'], ['menue'], ['shopping'], ['cart'], ['working'], ['correct'], ['see'], ['attached'], ['screenshot']] k: 3236 len: <class 'list'> Data: ['application', 'engineer', 'database', 'hello', 'using', 'application', 'database', 'access', 'see', 'best'] processed_text: ['application', 'engineer', 'database', 'hello', 'using', 'application', 'database', 'access', 'see', 'best'] list_processed_text: [['application'], ['engineer'], ['database'], ['hello'], ['using'], ['application'], ['database'], ['access'], ['see'], ['best']] k: 3237 len: <class 'list'> Data: ['wifi', 'lan', 'working', 'office', 'hi', 'problem', 'wifi', 'connection', 'since', 'last', 'three', 'day', 'also', 'lan', 'connection', 'also', 'working', 'pl', 'check', 'resolve', 'issue', 'aerp'] processed_text: ['wifi', 'lan', 'working', 'office', 'hi', 'problem', 'wifi', 'connection', 'since', 'last', 'three', 'day', 'also', 'lan', 'connection', 'also', 'working', 'pl', 'check', 'resolve', 'issue', 'aerp'] list_processed_text: [['wifi'], ['lan'], ['working'], ['office'], ['hi'], ['problem'], ['wifi'], ['connection'], ['since'], ['last'], ['three'], ['day'], ['also'], ['lan'], ['connection'], ['also'], ['working'], ['pl'], ['check'], ['resolve'], ['issue'], ['aerp']] k: 3238 len: <class 'list'> Data: ['peer', 'certificate', 'rejected', 'chainverifier', 'error', 'godaddy', 'certificate', 'bundle', 'certificate', 'issue', 'installation', 'godaddy', 'certificate', 'bundle', 'gd', 'bundle', 'crt', 'proper', 'sid', 'getting', 'peer', 'certificate', 'rejected', 'chainverifier', 'error', 'able', 'deploy', 'uacyltoe', 'hxgaycze', 'functionality', 'dev', 'please', 'refer', 'ticket', 'earlier', 'installation'] processed_text: ['peer', 'certificate', 'rejected', 'chainverifier', 'error', 'godaddy', 'certificate', 'bundle', 'certificate', 'issue', 'installation', 'godaddy', 'certificate', 'bundle', 'gd', 'bundle', 'crt', 'proper', 'sid', 'getting', 'peer', 'certificate', 'rejected', 'chainverifier', 'error', 'able', 'deploy', 'uacyltoe', 'hxgaycze', 'functionality', 'dev', 'please', 'refer', 'ticket', 'earlier', 'installation'] list_processed_text: [['peer'], ['certificate'], ['rejected'], ['chainverifier'], ['error'], ['godaddy'], ['certificate'], ['bundle'], ['certificate'], ['issue'], ['installation'], ['godaddy'], ['certificate'], ['bundle'], ['gd'], ['bundle'], ['crt'], ['proper'], ['sid'], ['getting'], ['peer'], ['certificate'], ['rejected'], ['chainverifier'], ['error'], ['able'], ['deploy'], ['uacyltoe'], ['hxgaycze'], ['functionality'], ['dev'], ['please'], ['refer'], ['ticket'], ['earlier'], ['installation']] k: 3239 len: <class 'list'> Data: ['forgot', 'password', 'forgot', 'password'] processed_text: ['forgot', 'password', 'forgot', 'password'] list_processed_text: [['forgot'], ['password'], ['forgot'], ['password']] k: 3240 len: <class 'list'> Data: ['private', 'address', 'field', 'enabled', 'employee', 'master', 'crm', 'ui', 'disable', 'private', 'address', 'field', 'new', 'edit', 'button', 'employee', 'master', 'crm', 'ui'] processed_text: ['private', 'address', 'field', 'enabled', 'employee', 'master', 'crm', 'ui', 'disable', 'private', 'address', 'field', 'new', 'edit', 'button', 'employee', 'master', 'crm', 'ui'] list_processed_text: [['private'], ['address'], ['field'], ['enabled'], ['employee'], ['master'], ['crm'], ['ui'], ['disable'], ['private'], ['address'], ['field'], ['new'], ['edit'], ['button'], ['employee'], ['master'], ['crm'], ['ui']] k: 3241 len: <class 'list'> Data: ['cancel', 'duplicate', 'miro', 'entry', 'po', 'dear', 'please', 'help', 'reverse', 'screen', 'shot', 'best'] processed_text: ['cancel', 'duplicate', 'miro', 'entry', 'po', 'dear', 'please', 'help', 'reverse', 'screen', 'shot', 'best'] list_processed_text: [['cancel'], ['duplicate'], ['miro'], ['entry'], ['po'], ['dear'], ['please'], ['help'], ['reverse'], ['screen'], ['shot'], ['best']] k: 3242 len: <class 'list'> Data: ['reinstall', 'company', 'barcode', 'r', 'ewew', 'zlqfptjx', 'xnklbfua', 'reinstall', 'company', 'barcode', 'r', 'ewew', 'zlqfptjx', 'xnklbfua'] processed_text: ['reinstall', 'company', 'barcode', 'r', 'ewew', 'zlqfptjx', 'xnklbfua', 'reinstall', 'company', 'barcode', 'r', 'ewew', 'zlqfptjx', 'xnklbfua'] list_processed_text: [['reinstall'], ['company'], ['barcode'], ['r'], ['ewew'], ['zlqfptjx'], ['xnklbfua'], ['reinstall'], ['company'], ['barcode'], ['r'], ['ewew'], ['zlqfptjx'], ['xnklbfua']] k: 3243 len: <class 'list'> Data: ['email', 'received', 'address', 'nothing', 'received', 'sent', 'address'] processed_text: ['email', 'received', 'address', 'nothing', 'received', 'sent', 'address'] list_processed_text: [['email'], ['received'], ['address'], ['nothing'], ['received'], ['sent'], ['address']] k: 3244 len: <class 'list'> Data: ['wrong', 'data', 'crm', 'wrong', 'data', 'signed', 'contact', 'person', 'complaint', 'creation', 'opened', 'complaint', 'contact', 'person', 'bnmdslzh', 'qyinrmaf', 'see', 'crm', 'signed', 'number', 'contact', 'person', 'bnmdslzh', 'qyinrmaf', 'opened', 'number', 'could', 'see', 'data', 'customet', 'mail', 'number', 'complaint', 'form', 'printed', 'wrong', 'data', 'please', 'see', 'attached'] processed_text: ['wrong', 'data', 'crm', 'wrong', 'data', 'signed', 'contact', 'person', 'complaint', 'creation', 'opened', 'complaint', 'contact', 'person', 'bnmdslzh', 'qyinrmaf', 'see', 'crm', 'signed', 'number', 'contact', 'person', 'bnmdslzh', 'qyinrmaf', 'opened', 'number', 'could', 'see', 'data', 'customet', 'mail', 'number', 'complaint', 'form', 'printed', 'wrong', 'data', 'please', 'see', 'attached'] list_processed_text: [['wrong'], ['data'], ['crm'], ['wrong'], ['data'], ['signed'], ['contact'], ['person'], ['complaint'], ['creation'], ['opened'], ['complaint'], ['contact'], ['person'], ['bnmdslzh'], ['qyinrmaf'], ['see'], ['crm'], ['signed'], ['number'], ['contact'], ['person'], ['bnmdslzh'], ['qyinrmaf'], ['opened'], ['number'], ['could'], ['see'], ['data'], ['customet'], ['mail'], ['number'], ['complaint'], ['form'], ['printed'], ['wrong'], ['data'], ['please'], ['see'], ['attached']] k: 3245 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['request']] k: 3246 len: <class 'list'> Data: ['reference', 'ticket', 'chg', 'hi', 'could', 'please', 'open', 'ticket', 'still', 'request', 'resolved'] processed_text: ['reference', 'ticket', 'chg', 'hi', 'could', 'please', 'open', 'ticket', 'still', 'request', 'resolved'] list_processed_text: [['reference'], ['ticket'], ['chg'], ['hi'], ['could'], ['please'], ['open'], ['ticket'], ['still'], ['request'], ['resolved']] k: 3247 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3248 len: <class 'list'> Data: ['query', 'change', 'screen', 'saver', 'query', 'change', 'screen', 'saver'] processed_text: ['query', 'change', 'screen', 'saver', 'query', 'change', 'screen', 'saver'] list_processed_text: [['query'], ['change'], ['screen'], ['saver'], ['query'], ['change'], ['screen'], ['saver']] k: 3249 len: <class 'list'> Data: ['work', 'center', 'updated', 'pm', 'order', 'confirmation', 'screen', 'hi', 'pm', 'work', 'center', 'updated', 'pm', 'order', 'operation'] processed_text: ['work', 'center', 'updated', 'pm', 'order', 'confirmation', 'screen', 'hi', 'pm', 'work', 'center', 'updated', 'pm', 'order', 'operation'] list_processed_text: [['work'], ['center'], ['updated'], ['pm'], ['order'], ['confirmation'], ['screen'], ['hi'], ['pm'], ['work'], ['center'], ['updated'], ['pm'], ['order'], ['operation']] k: 3250 len: <class 'list'> Data: ['vpn', 'pc', 'edmlx', 'work', 'urgent', 'efyumrls', 'gqjcbufx', 'finance', 'administration', 'manager', 'working', 'new', 'pc', 'win', 'company', 'imaged', 'everything', 'working', 'except', 'symantec', 'endpoint', 'protection', 'install', 'go', 'error', 'antivirus', 'window', 'defender', 'unfortunately', 'run', 'vpn', 'message', 'appear', 'seems', 'run', 'vpn', 'due', 'tu', 'antivirus', 'updated', 'office', 'day', 'week', 'really', 'need', 'vpn', 'connection', 'could', 'please', 'check', 'issue'] processed_text: ['vpn', 'pc', 'edmlx', 'work', 'urgent', 'efyumrls', 'gqjcbufx', 'finance', 'administration', 'manager', 'working', 'new', 'pc', 'win', 'company', 'imaged', 'everything', 'working', 'except', 'symantec', 'endpoint', 'protection', 'install', 'go', 'error', 'antivirus', 'window', 'defender', 'unfortunately', 'run', 'vpn', 'message', 'appear', 'seems', 'run', 'vpn', 'due', 'tu', 'antivirus', 'updated', 'office', 'day', 'week', 'really', 'need', 'vpn', 'connection', 'could', 'please', 'check', 'issue'] list_processed_text: [['vpn'], ['pc'], ['edmlx'], ['work'], ['urgent'], ['efyumrls'], ['gqjcbufx'], ['finance'], ['administration'], ['manager'], ['working'], ['new'], ['pc'], ['win'], ['company'], ['imaged'], ['everything'], ['working'], ['except'], ['symantec'], ['endpoint'], ['protection'], ['install'], ['go'], ['error'], ['antivirus'], ['window'], ['defender'], ['unfortunately'], ['run'], ['vpn'], ['message'], ['appear'], ['seems'], ['run'], ['vpn'], ['due'], ['tu'], ['antivirus'], ['updated'], ['office'], ['day'], ['week'], ['really'], ['need'], ['vpn'], ['connection'], ['could'], ['please'], ['check'], ['issue']] k: 3251 len: <class 'list'> Data: ['skype', 'meeting', 'option', 'showing', 'calendar', 'skype', 'meeting', 'option', 'showing', 'calendar'] processed_text: ['skype', 'meeting', 'option', 'showing', 'calendar', 'skype', 'meeting', 'option', 'showing', 'calendar'] list_processed_text: [['skype'], ['meeting'], ['option'], ['showing'], ['calendar'], ['skype'], ['meeting'], ['option'], ['showing'], ['calendar']] k: 3252 len: <class 'list'> Data: ['outlook', 'issue', 'unable', 'open', 'mail', 'please', 'refer', 'screen', 'shot', 'best'] processed_text: ['outlook', 'issue', 'unable', 'open', 'mail', 'please', 'refer', 'screen', 'shot', 'best'] list_processed_text: [['outlook'], ['issue'], ['unable'], ['open'], ['mail'], ['please'], ['refer'], ['screen'], ['shot'], ['best']] k: 3253 len: <class 'list'> Data: ['erp', 'sid', 'account', 'gso', 'please', 'kindly', 'unlock', 'reset', 'password', 'erp', 'sid', 'account', 'zhhtyangq'] processed_text: ['erp', 'sid', 'account', 'gso', 'please', 'kindly', 'unlock', 'reset', 'password', 'erp', 'sid', 'account', 'zhhtyangq'] list_processed_text: [['erp'], ['sid'], ['account'], ['gso'], ['please'], ['kindly'], ['unlock'], ['reset'], ['password'], ['erp'], ['sid'], ['account'], ['zhhtyangq']] k: 3254 len: <class 'list'> Data: ['launch', 'adobe', 'acrobat', 'name', 'melerowicz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'team', 'would', 'like', 'open', 'pdf', 'document', 'got', 'message', 'proceeding', 'must', 'first', 'launch', 'adobe', 'acrobat', 'accept', 'end', 'user', 'licence', 'agreement', 'user', 'melthryerj', 'could', 'please', 'help'] processed_text: ['launch', 'adobe', 'acrobat', 'name', 'melerowicz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'team', 'would', 'like', 'open', 'pdf', 'document', 'got', 'message', 'proceeding', 'must', 'first', 'launch', 'adobe', 'acrobat', 'accept', 'end', 'user', 'licence', 'agreement', 'user', 'melthryerj', 'could', 'please', 'help'] list_processed_text: [['launch'], ['adobe'], ['acrobat'], ['name'], ['melerowicz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hi'], ['team'], ['would'], ['like'], ['open'], ['pdf'], ['document'], ['got'], ['message'], ['proceeding'], ['must'], ['first'], ['launch'], ['adobe'], ['acrobat'], ['accept'], ['end'], ['user'], ['licence'], ['agreement'], ['user'], ['melthryerj'], ['could'], ['please'], ['help']] k: 3255 len: <class 'list'> Data: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'rtr', 'located', 'usa', 'since', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'rtr', 'located', 'usa', 'since', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['poncacity'], ['schlumhdyhter'], ['dmvpn'], ['rtr'], ['located'], ['usa'], ['since'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3256 len: <class 'list'> Data: ['account', 'unlock', 'erp', 'sid', 'unlocked', 'account', 'using', 'password', 'management', 'tool', 'wgpimkle', 'kijhcwur', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'please', 'unlock', 'id', 'sugisdfy', 'importance', 'high', 'sorry', 'could', 'unlock', 'password', 'management', 'tool'] processed_text: ['account', 'unlock', 'erp', 'sid', 'unlocked', 'account', 'using', 'password', 'management', 'tool', 'wgpimkle', 'kijhcwur', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'please', 'unlock', 'id', 'sugisdfy', 'importance', 'high', 'sorry', 'could', 'unlock', 'password', 'management', 'tool'] list_processed_text: [['account'], ['unlock'], ['erp'], ['sid'], ['unlocked'], ['account'], ['using'], ['password'], ['management'], ['tool'], ['wgpimkle'], ['kijhcwur'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['please'], ['unlock'], ['id'], ['sugisdfy'], ['importance'], ['high'], ['sorry'], ['could'], ['unlock'], ['password'], ['management'], ['tool']] k: 3257 len: <class 'list'> Data: ['password', 'hi', 'changed', 'password', 'last', 'week', 'laptop', 'let', 'kind'] processed_text: ['password', 'hi', 'changed', 'password', 'last', 'week', 'laptop', 'let', 'kind'] list_processed_text: [['password'], ['hi'], ['changed'], ['password'], ['last'], ['week'], ['laptop'], ['let'], ['kind']] k: 3258 len: <class 'list'> Data: ['problem', 'approval', 'universal', 'work', 'list', 'dear', 'please', 'help', 'need', 'approve', 'cannot', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'uy', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service', 'get', 'message', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['problem', 'approval', 'universal', 'work', 'list', 'dear', 'please', 'help', 'need', 'approve', 'cannot', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'uy', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service', 'get', 'message', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['problem'], ['approval'], ['universal'], ['work'], ['list'], ['dear'], ['please'], ['help'], ['need'], ['approve'], ['cannot'], ['following'], ['expense'], ['report'], ['submitted'], ['approval'], ['personnel'], ['uy'], ['expense'], ['report'], ['start'], ['date'], ['end'], ['date'], ['total'], ['cost'], ['usd'], ['reimbursement'], ['amount'], ['usd'], ['review'], ['expense'], ['report'], ['full'], ['please'], ['log'], ['universal'], ['worklist'], ['manager'], ['self'], ['service'], ['get'], ['message'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 3259 len: <class 'list'> Data: ['lean', 'tracker', 'working', 'lean', 'tracker', 'working'] processed_text: ['lean', 'tracker', 'working', 'lean', 'tracker', 'working'] list_processed_text: [['lean'], ['tracker'], ['working'], ['lean'], ['tracker'], ['working']] k: 3260 len: <class 'list'> Data: ['unable', 'process', 'ec', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'process', 'dn', 'ec', 'ec', 'system', 'prompted', 'message', 'hi', 'sujitra', 'kindly', 'note', 'unable', 'process', 'dn', 'ec', 'probably', 'order', 'hold', 'today', 'shipping', 'pending', 'solution', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] processed_text: ['unable', 'process', 'ec', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'process', 'dn', 'ec', 'ec', 'system', 'prompted', 'message', 'hi', 'sujitra', 'kindly', 'note', 'unable', 'process', 'dn', 'ec', 'probably', 'order', 'hold', 'today', 'shipping', 'pending', 'solution', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] list_processed_text: [['unable'], ['process'], ['ec'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['process'], ['dn'], ['ec'], ['ec'], ['system'], ['prompted'], ['message'], ['hi'], ['sujitra'], ['kindly'], ['note'], ['unable'], ['process'], ['dn'], ['ec'], ['probably'], ['order'], ['hold'], ['today'], ['shipping'], ['pending'], ['solution'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['asia'], ['regional'], ['distribution'], ['centre'], ['email']] k: 3261 len: <class 'list'> Data: ['dir', 'n', 'ac', 'locked', 'user', 'dir', 'n', 'ac', 'opened', 'edit', 'seems', 'locked', 'database', 'wagfrtneh', 'dir', 'within', 'status', 'ac', 'main', 'original', 'seem', 'checked', 'please', 'unlock', 'database'] processed_text: ['dir', 'n', 'ac', 'locked', 'user', 'dir', 'n', 'ac', 'opened', 'edit', 'seems', 'locked', 'database', 'wagfrtneh', 'dir', 'within', 'status', 'ac', 'main', 'original', 'seem', 'checked', 'please', 'unlock', 'database'] list_processed_text: [['dir'], ['n'], ['ac'], ['locked'], ['user'], ['dir'], ['n'], ['ac'], ['opened'], ['edit'], ['seems'], ['locked'], ['database'], ['wagfrtneh'], ['dir'], ['within'], ['status'], ['ac'], ['main'], ['original'], ['seem'], ['checked'], ['please'], ['unlock'], ['database']] k: 3262 len: <class 'list'> Data: ['support', 'r', 'computer', 'measuring', 'device', 'jionmpsf', 'wnkpzcmv', 'support', 'r', 'computer', 'measuring', 'device', 'jionmpsf', 'wnkpzcmv'] processed_text: ['support', 'r', 'computer', 'measuring', 'device', 'jionmpsf', 'wnkpzcmv', 'support', 'r', 'computer', 'measuring', 'device', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['support'], ['r'], ['computer'], ['measuring'], ['device'], ['jionmpsf'], ['wnkpzcmv'], ['support'], ['r'], ['computer'], ['measuring'], ['device'], ['jionmpsf'], ['wnkpzcmv']] k: 3263 len: <class 'list'> Data: ['purchasing', 'work', 'option', 'purchasing', 'check', 'status', 'missed'] processed_text: ['purchasing', 'work', 'option', 'purchasing', 'check', 'status', 'missed'] list_processed_text: [['purchasing'], ['work'], ['option'], ['purchasing'], ['check'], ['status'], ['missed']] k: 3264 len: <class 'list'> Data: ['computer', 'wu', 'work', 'computer', 'wu', 'work'] processed_text: ['computer', 'wu', 'work', 'computer', 'wu', 'work'] list_processed_text: [['computer'], ['wu'], ['work'], ['computer'], ['wu'], ['work']] k: 3265 len: <class 'list'> Data: ['computer', 'r', 'viotto', 'work', 'computer', 'r', 'viotto', 'work'] processed_text: ['computer', 'r', 'viotto', 'work', 'computer', 'r', 'viotto', 'work'] list_processed_text: [['computer'], ['r'], ['viotto'], ['work'], ['computer'], ['r'], ['viotto'], ['work']] k: 3266 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3267 len: <class 'list'> Data: ['node', 'ldiwsf', 'located', 'usa', 'village', 'since', 'pm', 'node', 'ldiwsf', 'located', 'usa', 'village', 'since', 'pm'] processed_text: ['node', 'ldiwsf', 'located', 'usa', 'village', 'since', 'pm', 'node', 'ldiwsf', 'located', 'usa', 'village', 'since', 'pm'] list_processed_text: [['node'], ['ldiwsf'], ['located'], ['usa'], ['village'], ['since'], ['pm'], ['node'], ['ldiwsf'], ['located'], ['usa'], ['village'], ['since'], ['pm']] k: 3268 len: <class 'list'> Data: ['hana', 'report', 'dear', 'hana', 'report', 'refresh', 'help', 'check', 'bujiesrg', 'zopcrshl', 'specialist', 'accounting', 'reporting'] processed_text: ['hana', 'report', 'dear', 'hana', 'report', 'refresh', 'help', 'check', 'bujiesrg', 'zopcrshl', 'specialist', 'accounting', 'reporting'] list_processed_text: [['hana'], ['report'], ['dear'], ['hana'], ['report'], ['refresh'], ['help'], ['check'], ['bujiesrg'], ['zopcrshl'], ['specialist'], ['accounting'], ['reporting']] k: 3269 len: <class 'list'> Data: ['truview', 'application', 'truview', 'application', 'getting', 'alarm', 'also', 'saw', 'today', 'application', 'also'] processed_text: ['truview', 'application', 'truview', 'application', 'getting', 'alarm', 'also', 'saw', 'today', 'application', 'also'] list_processed_text: [['truview'], ['application'], ['truview'], ['application'], ['getting'], ['alarm'], ['also'], ['saw'], ['today'], ['application'], ['also']] k: 3270 len: <class 'list'> Data: ['look', 'like', 'tzornbldf', 'network', 'account', 'locked', 'need', 'unlocked', 'aerp', 'tzornbldf', 'account', 'used', 'dashbankrds', 'reporting', 'tool', 'affect', 'sale', 'employee', 'manager', 'director', 'able', 'access', 'dashbankrds'] processed_text: ['look', 'like', 'tzornbldf', 'network', 'account', 'locked', 'need', 'unlocked', 'aerp', 'tzornbldf', 'account', 'used', 'dashbankrds', 'reporting', 'tool', 'affect', 'sale', 'employee', 'manager', 'director', 'able', 'access', 'dashbankrds'] list_processed_text: [['look'], ['like'], ['tzornbldf'], ['network'], ['account'], ['locked'], ['need'], ['unlocked'], ['aerp'], ['tzornbldf'], ['account'], ['used'], ['dashbankrds'], ['reporting'], ['tool'], ['affect'], ['sale'], ['employee'], ['manager'], ['director'], ['able'], ['access'], ['dashbankrds']] k: 3271 len: <class 'list'> Data: ['locked', 'erp', 'tried', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'got', 'error', 'message', 'password', 'seems', 'changed', 'remember', 'entered', 'code', 'iewnguxv', 'bufwxeiy', 'reset', 'window', 'password', 'enter', 'erp', 'please', 'reset', 'password', 'management', 'tool', 'passwprd', 'manager'] processed_text: ['locked', 'erp', 'tried', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'got', 'error', 'message', 'password', 'seems', 'changed', 'remember', 'entered', 'code', 'iewnguxv', 'bufwxeiy', 'reset', 'window', 'password', 'enter', 'erp', 'please', 'reset', 'password', 'management', 'tool', 'passwprd', 'manager'] list_processed_text: [['locked'], ['erp'], ['tried'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['got'], ['error'], ['message'], ['password'], ['seems'], ['changed'], ['remember'], ['entered'], ['code'], ['iewnguxv'], ['bufwxeiy'], ['reset'], ['window'], ['password'], ['enter'], ['erp'], ['please'], ['reset'], ['password'], ['management'], ['tool'], ['passwprd'], ['manager']] k: 3272 len: <class 'list'> Data: ['issue', 'create', 'skype', 'meeting', 'request', 'outlook', 'try', 'create', 'skype', 'meeting', 'outlook', 'skype', 'meeting', 'button', 'outlook', 'crete', 'meeting', 'request', 'please', 'fix'] processed_text: ['issue', 'create', 'skype', 'meeting', 'request', 'outlook', 'try', 'create', 'skype', 'meeting', 'outlook', 'skype', 'meeting', 'button', 'outlook', 'crete', 'meeting', 'request', 'please', 'fix'] list_processed_text: [['issue'], ['create'], ['skype'], ['meeting'], ['request'], ['outlook'], ['try'], ['create'], ['skype'], ['meeting'], ['outlook'], ['skype'], ['meeting'], ['button'], ['outlook'], ['crete'], ['meeting'], ['request'], ['please'], ['fix']] k: 3273 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3274 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3275 len: <class 'list'> Data: ['ticket', 'jost', 'berfkting', 'classified', 'usa', 'usa', 'user', 'need', 'properly', 'classified', 'ticketing', 'tool', 'gso', 'could', 'please', 'verify', 'ticketing', 'tool', 'ticket', 'dxyvfuhr', 'uyfqgomx', 'classified', 'usa', 'ticket', 'usa', 'ceo', 'europe', 'company', 'checked', 'two', 'user', 'switzerland', 'message', 'display', 'correct', 'actually', 'thought', 'location', 'would', 'determine', 'user', 'usa', 'advise', 'issue', 'user', 'need', 'correction'] processed_text: ['ticket', 'jost', 'berfkting', 'classified', 'usa', 'usa', 'user', 'need', 'properly', 'classified', 'ticketing', 'tool', 'gso', 'could', 'please', 'verify', 'ticketing', 'tool', 'ticket', 'dxyvfuhr', 'uyfqgomx', 'classified', 'usa', 'ticket', 'usa', 'ceo', 'europe', 'company', 'checked', 'two', 'user', 'switzerland', 'message', 'display', 'correct', 'actually', 'thought', 'location', 'would', 'determine', 'user', 'usa', 'advise', 'issue', 'user', 'need', 'correction'] list_processed_text: [['ticket'], ['jost'], ['berfkting'], ['classified'], ['usa'], ['usa'], ['user'], ['need'], ['properly'], ['classified'], ['ticketing'], ['tool'], ['gso'], ['could'], ['please'], ['verify'], ['ticketing'], ['tool'], ['ticket'], ['dxyvfuhr'], ['uyfqgomx'], ['classified'], ['usa'], ['ticket'], ['usa'], ['ceo'], ['europe'], ['company'], ['checked'], ['two'], ['user'], ['switzerland'], ['message'], ['display'], ['correct'], ['actually'], ['thought'], ['location'], ['would'], ['determine'], ['user'], ['usa'], ['advise'], ['issue'], ['user'], ['need'], ['correction']] k: 3276 len: <class 'list'> Data: ['unit', 'price', 'order', 'item', 'cannot', 'revised', 'need', 'revise', 'pirces', 'order', 'zno', 'item', 'changed', 'item', 'cannot', 'change', 'please', 'check', 'help'] processed_text: ['unit', 'price', 'order', 'item', 'cannot', 'revised', 'need', 'revise', 'pirces', 'order', 'zno', 'item', 'changed', 'item', 'cannot', 'change', 'please', 'check', 'help'] list_processed_text: [['unit'], ['price'], ['order'], ['item'], ['cannot'], ['revised'], ['need'], ['revise'], ['pirces'], ['order'], ['zno'], ['item'], ['changed'], ['item'], ['cannot'], ['change'], ['please'], ['check'], ['help']] k: 3277 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'account', 'unable', 'login', 'erp', 'sid', 'account'] processed_text: ['unable', 'login', 'erp', 'sid', 'account', 'unable', 'login', 'erp', 'sid', 'account'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['account'], ['unable'], ['login'], ['erp'], ['sid'], ['account']] k: 3278 len: <class 'list'> Data: ['delivery', 'note', 'creation', 'request', 'hello', 'team', 'could', 'please', 'create', 'delivery', 'note', 'order', 'got', 'error', 'message', 'hence', 'cannot', 'issue', 'delivery', 'note', 'line', 'item', 'mm', 'order', 'qty', 'pc', 'delivery', 'plant', 'plant', 'see', 'available', 'stock', 'via', 'md', 'screen', 'cannot', 'create', 'delivery', 'note', 'item', 'got', 'error', 'message', 'manually', 'tried', 'issue', 'dn', 'plant'] processed_text: ['delivery', 'note', 'creation', 'request', 'hello', 'team', 'could', 'please', 'create', 'delivery', 'note', 'order', 'got', 'error', 'message', 'hence', 'cannot', 'issue', 'delivery', 'note', 'line', 'item', 'mm', 'order', 'qty', 'pc', 'delivery', 'plant', 'plant', 'see', 'available', 'stock', 'via', 'md', 'screen', 'cannot', 'create', 'delivery', 'note', 'item', 'got', 'error', 'message', 'manually', 'tried', 'issue', 'dn', 'plant'] list_processed_text: [['delivery'], ['note'], ['creation'], ['request'], ['hello'], ['team'], ['could'], ['please'], ['create'], ['delivery'], ['note'], ['order'], ['got'], ['error'], ['message'], ['hence'], ['cannot'], ['issue'], ['delivery'], ['note'], ['line'], ['item'], ['mm'], ['order'], ['qty'], ['pc'], ['delivery'], ['plant'], ['plant'], ['see'], ['available'], ['stock'], ['via'], ['md'], ['screen'], ['cannot'], ['create'], ['delivery'], ['note'], ['item'], ['got'], ['error'], ['message'], ['manually'], ['tried'], ['issue'], ['dn'], ['plant']] k: 3279 len: <class 'list'> Data: ['purchasing', 'issue', 'pr', 'release', 'document', 'number', 'relevant', 'document', 'number', 'pr', 'release', 'error', 'process', 'detail', 'log', 'explanation'] processed_text: ['purchasing', 'issue', 'pr', 'release', 'document', 'number', 'relevant', 'document', 'number', 'pr', 'release', 'error', 'process', 'detail', 'log', 'explanation'] list_processed_text: [['purchasing'], ['issue'], ['pr'], ['release'], ['document'], ['number'], ['relevant'], ['document'], ['number'], ['pr'], ['release'], ['error'], ['process'], ['detail'], ['log'], ['explanation']] k: 3280 len: <class 'list'> Data: ['outlook', 'keine', 'ckmeldung', 'outlook', 'able', 'log', 'outlook', 'thiw', 'morning', 'restarted', 'computer', 'several', 'time', 'without', 'effort'] processed_text: ['outlook', 'keine', 'ckmeldung', 'outlook', 'able', 'log', 'outlook', 'thiw', 'morning', 'restarted', 'computer', 'several', 'time', 'without', 'effort'] list_processed_text: [['outlook'], ['keine'], ['ckmeldung'], ['outlook'], ['able'], ['log'], ['outlook'], ['thiw'], ['morning'], ['restarted'], ['computer'], ['several'], ['time'], ['without'], ['effort']] k: 3281 len: <class 'list'> Data: ['excel', 'blank', 'open', 'excel', 'file', 'excel', 'blank', 'open', 'excel', 'file'] processed_text: ['excel', 'blank', 'open', 'excel', 'file', 'excel', 'blank', 'open', 'excel', 'file'] list_processed_text: [['excel'], ['blank'], ['open'], ['excel'], ['file'], ['excel'], ['blank'], ['open'], ['excel'], ['file']] k: 3282 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3283 len: <class 'list'> Data: ['outlook', 'outlook'] processed_text: ['outlook', 'outlook'] list_processed_text: [['outlook'], ['outlook']] k: 3284 len: <class 'list'> Data: ['accounting', 'document', 'accounting', 'document', 'billing', 'please', 'help'] processed_text: ['accounting', 'document', 'accounting', 'document', 'billing', 'please', 'help'] list_processed_text: [['accounting'], ['document'], ['accounting'], ['document'], ['billing'], ['please'], ['help']] k: 3285 len: <class 'list'> Data: ['excel', 'blank', 'open', 'excel', 'file', 'excel', 'blank', 'open', 'excel', 'file'] processed_text: ['excel', 'blank', 'open', 'excel', 'file', 'excel', 'blank', 'open', 'excel', 'file'] list_processed_text: [['excel'], ['blank'], ['open'], ['excel'], ['file'], ['excel'], ['blank'], ['open'], ['excel'], ['file']] k: 3286 len: <class 'list'> Data: ['user', 'uthagtpgc', 'outlook', 'issue', 'hello', 'help', 'geetha', 'outlook', 'working', 'system', 'slow', 'logged', 'thrice', 'since', 'morning', 'pls', 'look', 'attached', 'file', 'error', 'message', 'resolve', 'earliest'] processed_text: ['user', 'uthagtpgc', 'outlook', 'issue', 'hello', 'help', 'geetha', 'outlook', 'working', 'system', 'slow', 'logged', 'thrice', 'since', 'morning', 'pls', 'look', 'attached', 'file', 'error', 'message', 'resolve', 'earliest'] list_processed_text: [['user'], ['uthagtpgc'], ['outlook'], ['issue'], ['hello'], ['help'], ['geetha'], ['outlook'], ['working'], ['system'], ['slow'], ['logged'], ['thrice'], ['since'], ['morning'], ['pls'], ['look'], ['attached'], ['file'], ['error'], ['message'], ['resolve'], ['earliest']] k: 3287 len: <class 'list'> Data: ['order', 'overview', 'erp', 'netweaver', 'portal', 'displayed', 'erp', 'netweaver', 'portal', 'longer', 'possible', 'call', 'order', 'overview', 'fine', 'navigation', 'parameter.', 'see', 'attached', 'screenshots'] processed_text: ['order', 'overview', 'erp', 'netweaver', 'portal', 'displayed', 'erp', 'netweaver', 'portal', 'longer', 'possible', 'call', 'order', 'overview', 'fine', 'navigation', 'parameter.', 'see', 'attached', 'screenshots'] list_processed_text: [['order'], ['overview'], ['erp'], ['netweaver'], ['portal'], ['displayed'], ['erp'], ['netweaver'], ['portal'], ['longer'], ['possible'], ['call'], ['order'], ['overview'], ['fine'], ['navigation'], ['parameter.'], ['see'], ['attached'], ['screenshots']] k: 3288 len: <class 'list'> Data: ['erp', 'code', 'error', 'hi', 'please', 'find', 'error', 'kindly', 'help', 'resolve', 'issue', 'urgent', 'basis', 'best'] processed_text: ['erp', 'code', 'error', 'hi', 'please', 'find', 'error', 'kindly', 'help', 'resolve', 'issue', 'urgent', 'basis', 'best'] list_processed_text: [['erp'], ['code'], ['error'], ['hi'], ['please'], ['find'], ['error'], ['kindly'], ['help'], ['resolve'], ['issue'], ['urgent'], ['basis'], ['best']] k: 3289 len: <class 'list'> Data: ['erp', 'erp'] processed_text: ['erp', 'erp'] list_processed_text: [['erp'], ['erp']] k: 3290 len: <class 'list'> Data: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] processed_text: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] list_processed_text: [['error'], ['message'], ['route'], ['card'], ['release'], ['hello'], ['route'], ['card'], ['release'], ['error'], ['message'], ['appearing'], ['route'], ['card'], ['get'], ['printed'], ['required'], ['help'], ['resolving'], ['issue'], ['please'], ['print'], ['email'], ['unless'], ['absolutely'], ['necessary'], ['spread'], ['environmental'], ['awareness'], ['confidentiality'], ['caution'], ['communication'], ['including'], ['accompanying'], ['document'], ['intended'], ['sole'], ['use'], ['person'], ['addressed'], ['contain'], ['information'], ['privileged'], ['confidential'], ['exempt'], ['disclosure'], ['unauthorised'], ['reading'], ['dissemination'], ['distribution'], ['duplication'], ['communication'], ['someone'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['receipt'], ['communication'], ['error'], ['please'], ['notify'], ['sender'], ['destrtgoy'], ['original'], ['communication'], ['immediately']] k: 3291 len: <class 'list'> Data: ['network', 'outage', 'network', 'outage', 'unable', 'connect', 'lan', 'wi', 'fi', 'india', 'location', 'contact'] processed_text: ['network', 'outage', 'network', 'outage', 'unable', 'connect', 'lan', 'wi', 'fi', 'india', 'location', 'contact'] list_processed_text: [['network'], ['outage'], ['network'], ['outage'], ['unable'], ['connect'], ['lan'], ['wi'], ['fi'], ['india'], ['location'], ['contact']] k: 3292 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3293 len: <class 'list'> Data: ['erp', 'printing', 'issue', 'sridthshar', 'herytur', 'erpbasis', 'support', 'cedroapx', 'blsktzgq', 'fdmaluyo', 'tvecikxn', 'mvfnbces', 'urbckxna', 'nawkpdtx', 'gwcvmbhn', 'erp', 'printing', 'issue', 'hi', 'problem', 'repeat', 'erp', 'printing', 'plant', 'printer', 'error', 'issue', 'radyhthika', 'kindly', 'raise', 'request', 'concern', 'team', 'best'] processed_text: ['erp', 'printing', 'issue', 'sridthshar', 'herytur', 'erpbasis', 'support', 'cedroapx', 'blsktzgq', 'fdmaluyo', 'tvecikxn', 'mvfnbces', 'urbckxna', 'nawkpdtx', 'gwcvmbhn', 'erp', 'printing', 'issue', 'hi', 'problem', 'repeat', 'erp', 'printing', 'plant', 'printer', 'error', 'issue', 'radyhthika', 'kindly', 'raise', 'request', 'concern', 'team', 'best'] list_processed_text: [['erp'], ['printing'], ['issue'], ['sridthshar'], ['herytur'], ['erpbasis'], ['support'], ['cedroapx'], ['blsktzgq'], ['fdmaluyo'], ['tvecikxn'], ['mvfnbces'], ['urbckxna'], ['nawkpdtx'], ['gwcvmbhn'], ['erp'], ['printing'], ['issue'], ['hi'], ['problem'], ['repeat'], ['erp'], ['printing'], ['plant'], ['printer'], ['error'], ['issue'], ['radyhthika'], ['kindly'], ['raise'], ['request'], ['concern'], ['team'], ['best']] k: 3294 len: <class 'list'> Data: ['network', 'outage', 'usa', 'vpn', 'router', 'since', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'vpn', 'router', 'since', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['vpn'], ['router'], ['since'], ['pm'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3295 len: <class 'list'> Data: ['attendance', 'tool', 'password', 'working', 'hi', 'attendance', 'tool', 'password', 'working', 'kindly', 'reset', 'give', 'new', 'password'] processed_text: ['attendance', 'tool', 'password', 'working', 'hi', 'attendance', 'tool', 'password', 'working', 'kindly', 'reset', 'give', 'new', 'password'] list_processed_text: [['attendance'], ['tool'], ['password'], ['working'], ['hi'], ['attendance'], ['tool'], ['password'], ['working'], ['kindly'], ['reset'], ['give'], ['new'], ['password']] k: 3296 len: <class 'list'> Data: ['regarding', 'cell', 'phone', 'model', 'gdhyrts', 'muggftyali', 'chefghtyn', 'chnbghyg', 'nwfodmhc', 'exurcwkm', 'rad', 'regarding', 'cell', 'phone', 'model', 'hello', 'chefghtyn', 'gso', 'help', 'copying', 'hello', 'gso', 'please', 'help'] processed_text: ['regarding', 'cell', 'phone', 'model', 'gdhyrts', 'muggftyali', 'chefghtyn', 'chnbghyg', 'nwfodmhc', 'exurcwkm', 'rad', 'regarding', 'cell', 'phone', 'model', 'hello', 'chefghtyn', 'gso', 'help', 'copying', 'hello', 'gso', 'please', 'help'] list_processed_text: [['regarding'], ['cell'], ['phone'], ['model'], ['gdhyrts'], ['muggftyali'], ['chefghtyn'], ['chnbghyg'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['regarding'], ['cell'], ['phone'], ['model'], ['hello'], ['chefghtyn'], ['gso'], ['help'], ['copying'], ['hello'], ['gso'], ['please'], ['help']] k: 3297 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 3298 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 3299 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 3300 len: <class 'list'> Data: ['need', 'know', 'processor', 'kbyivdfz', 'zwutmehy', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'need', 'know', 'processor', 'hello', 'need', 'know', 'processor', 'might', 'kindly', 'check', 'let', 'know', 'authority', 'approve', 'internal', 'purchase', 'requisition', 'released', 'cannot', 'issue', 'po', 'best'] processed_text: ['need', 'know', 'processor', 'kbyivdfz', 'zwutmehy', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'need', 'know', 'processor', 'hello', 'need', 'know', 'processor', 'might', 'kindly', 'check', 'let', 'know', 'authority', 'approve', 'internal', 'purchase', 'requisition', 'released', 'cannot', 'issue', 'po', 'best'] list_processed_text: [['need'], ['know'], ['processor'], ['kbyivdfz'], ['zwutmehy'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['need'], ['know'], ['processor'], ['hello'], ['need'], ['know'], ['processor'], ['might'], ['kindly'], ['check'], ['let'], ['know'], ['authority'], ['approve'], ['internal'], ['purchase'], ['requisition'], ['released'], ['cannot'], ['issue'], ['po'], ['best']] k: 3301 len: <class 'list'> Data: ['reset', 'pw', 'please', 'help', 'reset', 'pas', 'word', 'erp', 'sid', 'user', 'id', 'hertel', 'best'] processed_text: ['reset', 'pw', 'please', 'help', 'reset', 'pas', 'word', 'erp', 'sid', 'user', 'id', 'hertel', 'best'] list_processed_text: [['reset'], ['pw'], ['please'], ['help'], ['reset'], ['pas'], ['word'], ['erp'], ['sid'], ['user'], ['id'], ['hertel'], ['best']] k: 3302 len: <class 'list'> Data: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] processed_text: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] list_processed_text: [['wireless'], ['outage'], ['taiwan'], ['hello'], ['wireless'], ['companysecure'], ['outage'], ['taiwan'], ['please'], ['help']] k: 3303 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3304 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3305 len: <class 'list'> Data: ['erp', 'account', 'lock', 'erp', 'account', 'lock'] processed_text: ['erp', 'account', 'lock', 'erp', 'account', 'lock'] list_processed_text: [['erp'], ['account'], ['lock'], ['erp'], ['account'], ['lock']] k: 3306 len: <class 'list'> Data: ['help', 'idea', 'received', 'message', 'katfrthy', 'cighyillo', 'consultant', 'microsoft', 'outlook', 'pm', 'notwkdgr', 'zvmesjpt', 'undeliverable', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'image', 'removed', 'sender', 'message', 'delivered', 'gmail', 'com', 'confirm', 'message', 'sent', 'trusted', 'location', 'kathleen', 'cirillo', 'office', 'dhermosi', 'action', 'required', 'recipient', 'spf', 'validation', 'error', 'fix', 'organization', 'email', 'admin', 'diagnose', 'fix', 'domain', 'email', 'setting', 'please', 'forward', 'message', 'email', 'admin', 'info', 'email', 'admins', 'status', 'code', 'error', 'occurs', 'sender', 'policy', 'framdntyework', 'spf', 'validation', 'sender', 'domain', 'fails', 'sender', 'email', 'admin', 'make', 'sure', 'spf', 'record', 'domain', 'domain', 'registrar', 'set', 'correctly', 'office', 'support', 'one', 'spf', 'record', 'txt', 'record', 'defines', 'spf', 'domain', 'include', 'following', 'domain', 'name', 'spf', 'protection', 'outlook', 'com', 'hybrid', 'configuration', 'mailbox', 'cloud', 'mailbox', 'premise', 'exchange', 'online', 'protection', 'standalone', 'customer', 'add', 'outbound', 'ip', 'address', 'premise', 'server', 'txt', 'record', 'information', 'instruction', 'configuring', 'spf', 'record', 'see', 'customize', 'spf', 'record', 'validate', 'outbound', 'mail', 'sent', 'domain', 'bkmk', 'spfrecords', 'original', 'message', 'detail', 'created', 'date', 'pm', 'sender', 'address', 'recipient', 'address', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'error', 'detail', 'reported', 'error', 'message', 'rejected', 'sender', 'policy', 'framdntyework', 'violation', 'unauthenticated', 'email', 'hr', 'tool', 'com', 'accepted', 'due', 'domain', 'dmarc', 'policy', 'please', 'contact', 'administrator', 'hr', 'tool', 'com', 'domain', 'legitimate', 'mail', 'please', 'visit', 'dsn', 'generated', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'remote', 'server', 'mx', 'google', 'com', 'message', 'hop', 'hop', 'time', 'utc', 'relay', 'time', 'pm', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'mapi', 'sec', 'pm', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'microsoft', 'smtp', 'server', 'version', 'tl', 'cipher', 'tl', 'ecdhe', 'rsa', 'aes', 'cbc', 'sha', 'original', 'message', 'header', 'dkim', 'signature', 'rsa', 'sha', 'relaxed', 'relaxed', 'company', 'com', 'selector', 'date', 'message', 'id', 'content', 'type', 'mime', 'version', 'bh', 'pkhj', 'cxiisgrkpfsbsxqqzvxrpkmbumybgcvme', 'svvuxrjlaemyloakfqtpvvdnwyalrvmwpvltihleelrpztsatflwqaiwmpjkyor', 'nks', 'ricxtqctywsprvdutltoghtybewbfcuvwmapgzzbtnqsozevisyenotqkqmumxccbhzm', 'received', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'microsoft', 'smtp', 'server', 'version', 'tl', 'cipher', 'tl', 'ecdhe', 'rsa', 'aes', 'cbc', 'sha', 'id', 'received', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'mapi', 'id', 'favot', 'jean', 'jacques', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'thread', 'top', 'company', 'ec', 'mfg', 'tooltion', 'u', 'thread', 'index', 'adiuklhl', 'ozbuesgkwoqwhfsrwaakvcg', 'sender', 'notwkdgr', 'zvmesjpt', 'date', 'message', 'id', 'reference', 'reply', 'accept', 'language', 'en', 'u', 'content', 'language', 'en', 'u', 'm', 'attach', 'yes', 'm', 'tnef', 'correlator', 'authentication', 'result', 'spf', 'none', 'sender', 'ip', 'm', 'exchange', 'messagesentrepresentingtype', 'm', 'exchange', 'meetingforward', 'message', 'forward', 'originating', 'ip', 'm', 'office', 'filtering', 'correlation', 'id', 'ee', 'fb', 'bc', 'defc', 'microsoft', 'exchange', 'diagnostics', 'dmprmb', 'zwkfzfqhveyrfplvnznkjsmckqwehilqgumjnxnqprprqkdhi', 'rvjjucnejqafzgtzjij', 'acwuvpuzdunkhjwjqwvmyqktqtf', 'sotovjkvrswnbmikostapagfwtlikizopxoinzelnwzgqwxhdfht', 'kzmqla', 'pajmwsrgslvqwosb', 'oqmwgxvfmlsw', 'zvgixwksid', 'qzzitpqyludriottgkxzayeeyzavgeudngmojgvhdtnqwuiojybnp', 'xet', 'hrgrzftydsb', 'hkcyiuezslcybgt', 'nrswzhjzgmtanpptqedo', 'vwvcyqyepupocqfthezolpfhxzkwojpdnpwkzpomtdksxjgwuzrcjk', 'gbfmvjrqggvlyaikcekgjrnwpozuhpverkfxyf', 'bxtnfjdvsrkxcifcvddkrkgwwnfnaklg', 'cheincsucpegyhrjxtdziuemaklov', 'pefvrpt', 'qnxldyyaiuersials', 'rrranhcqjepzugqvggjsdvnkibmjwqntjhjs', 'xghabfqwviwctkdxqupnpbikhjtjiylmevfzllvnwoggkaenkvbsoltryjexff', 'prcpejfgu', 'hihognmjetrokkpaemfapugfinxzgnbwwvkifmzcsfrcsrewvfocmgqhnl', 'vh', 'uowqrijelr', 'yuhmlbonhp', 'mlumfitatgzwedr', 'orpaenclbrvinpcrdnfpzm', 'xfdqqrspoembzawfucemmdkgttfznydbdftagjq', 'czljtqjboyohmsdkaw', 'yjguwxlcemjtijzkysxvmpdwujtas', 'microsoft', 'antispam', 'uriscan', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'microsoft', 'antispam', 'prvs', 'exchange', 'antispam', 'report', 'uacyltoe', 'hxgaycze', 'uriscan', 'exchange', 'antispam', 'report', 'cfa', 'uacyltoe', 'hxgaycze', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'forefront', 'prvs', 'fca', 'forefront', 'antispam', 'report', 'sfv', 'nspm', 'sfs', 'dir', 'sfp', 'scl', 'srvr', 'dmprmb', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'fpr', 'spf', 'none', 'ptr', 'infonorecords', 'mx', 'lang', 'received', 'spf', 'none', 'protection', 'outlook', 'com', 'company', 'com', 'designate', 'permitted', 'sender', 'host', 'spamdiagnosticoutput', 'spamdiagnosticmetadata', 'nspm', 'content', 'type', 'multipart', 'mixed', 'boundary', 'dmprmbfdedabcbeaefcadmprmbnamp', 'mime', 'version', 'originatororg', 'company', 'com', 'm', 'exchange', 'crosstenant', 'originalarrivaltime', 'utc', 'm', 'exchange', 'crosstenant', 'fromentityheader', 'hosted', 'm', 'exchange', 'crosstenant', 'id', 'eee', 'cb', 'bdeb', 'm', 'exchange', 'transport', 'crosstenantheadersstamped', 'dmprmb'] processed_text: ['help', 'idea', 'received', 'message', 'katfrthy', 'cighyillo', 'consultant', 'microsoft', 'outlook', 'pm', 'notwkdgr', 'zvmesjpt', 'undeliverable', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'image', 'removed', 'sender', 'message', 'delivered', 'gmail', 'com', 'confirm', 'message', 'sent', 'trusted', 'location', 'kathleen', 'cirillo', 'office', 'dhermosi', 'action', 'required', 'recipient', 'spf', 'validation', 'error', 'fix', 'organization', 'email', 'admin', 'diagnose', 'fix', 'domain', 'email', 'setting', 'please', 'forward', 'message', 'email', 'admin', 'info', 'email', 'admins', 'status', 'code', 'error', 'occurs', 'sender', 'policy', 'framdntyework', 'spf', 'validation', 'sender', 'domain', 'fails', 'sender', 'email', 'admin', 'make', 'sure', 'spf', 'record', 'domain', 'domain', 'registrar', 'set', 'correctly', 'office', 'support', 'one', 'spf', 'record', 'txt', 'record', 'defines', 'spf', 'domain', 'include', 'following', 'domain', 'name', 'spf', 'protection', 'outlook', 'com', 'hybrid', 'configuration', 'mailbox', 'cloud', 'mailbox', 'premise', 'exchange', 'online', 'protection', 'standalone', 'customer', 'add', 'outbound', 'ip', 'address', 'premise', 'server', 'txt', 'record', 'information', 'instruction', 'configuring', 'spf', 'record', 'see', 'customize', 'spf', 'record', 'validate', 'outbound', 'mail', 'sent', 'domain', 'bkmk', 'spfrecords', 'original', 'message', 'detail', 'created', 'date', 'pm', 'sender', 'address', 'recipient', 'address', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'error', 'detail', 'reported', 'error', 'message', 'rejected', 'sender', 'policy', 'framdntyework', 'violation', 'unauthenticated', 'email', 'hr', 'tool', 'com', 'accepted', 'due', 'domain', 'dmarc', 'policy', 'please', 'contact', 'administrator', 'hr', 'tool', 'com', 'domain', 'legitimate', 'mail', 'please', 'visit', 'dsn', 'generated', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'remote', 'server', 'mx', 'google', 'com', 'message', 'hop', 'hop', 'time', 'utc', 'relay', 'time', 'pm', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'mapi', 'sec', 'pm', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'microsoft', 'smtp', 'server', 'version', 'tl', 'cipher', 'tl', 'ecdhe', 'rsa', 'aes', 'cbc', 'sha', 'original', 'message', 'header', 'dkim', 'signature', 'rsa', 'sha', 'relaxed', 'relaxed', 'company', 'com', 'selector', 'date', 'message', 'id', 'content', 'type', 'mime', 'version', 'bh', 'pkhj', 'cxiisgrkpfsbsxqqzvxrpkmbumybgcvme', 'svvuxrjlaemyloakfqtpvvdnwyalrvmwpvltihleelrpztsatflwqaiwmpjkyor', 'nks', 'ricxtqctywsprvdutltoghtybewbfcuvwmapgzzbtnqsozevisyenotqkqmumxccbhzm', 'received', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'microsoft', 'smtp', 'server', 'version', 'tl', 'cipher', 'tl', 'ecdhe', 'rsa', 'aes', 'cbc', 'sha', 'id', 'received', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'mapi', 'id', 'favot', 'jean', 'jacques', 'fw', 'company', 'ec', 'mfg', 'tooltion', 'u', 'thread', 'top', 'company', 'ec', 'mfg', 'tooltion', 'u', 'thread', 'index', 'adiuklhl', 'ozbuesgkwoqwhfsrwaakvcg', 'sender', 'notwkdgr', 'zvmesjpt', 'date', 'message', 'id', 'reference', 'reply', 'accept', 'language', 'en', 'u', 'content', 'language', 'en', 'u', 'm', 'attach', 'yes', 'm', 'tnef', 'correlator', 'authentication', 'result', 'spf', 'none', 'sender', 'ip', 'm', 'exchange', 'messagesentrepresentingtype', 'm', 'exchange', 'meetingforward', 'message', 'forward', 'originating', 'ip', 'm', 'office', 'filtering', 'correlation', 'id', 'ee', 'fb', 'bc', 'defc', 'microsoft', 'exchange', 'diagnostics', 'dmprmb', 'zwkfzfqhveyrfplvnznkjsmckqwehilqgumjnxnqprprqkdhi', 'rvjjucnejqafzgtzjij', 'acwuvpuzdunkhjwjqwvmyqktqtf', 'sotovjkvrswnbmikostapagfwtlikizopxoinzelnwzgqwxhdfht', 'kzmqla', 'pajmwsrgslvqwosb', 'oqmwgxvfmlsw', 'zvgixwksid', 'qzzitpqyludriottgkxzayeeyzavgeudngmojgvhdtnqwuiojybnp', 'xet', 'hrgrzftydsb', 'hkcyiuezslcybgt', 'nrswzhjzgmtanpptqedo', 'vwvcyqyepupocqfthezolpfhxzkwojpdnpwkzpomtdksxjgwuzrcjk', 'gbfmvjrqggvlyaikcekgjrnwpozuhpverkfxyf', 'bxtnfjdvsrkxcifcvddkrkgwwnfnaklg', 'cheincsucpegyhrjxtdziuemaklov', 'pefvrpt', 'qnxldyyaiuersials', 'rrranhcqjepzugqvggjsdvnkibmjwqntjhjs', 'xghabfqwviwctkdxqupnpbikhjtjiylmevfzllvnwoggkaenkvbsoltryjexff', 'prcpejfgu', 'hihognmjetrokkpaemfapugfinxzgnbwwvkifmzcsfrcsrewvfocmgqhnl', 'vh', 'uowqrijelr', 'yuhmlbonhp', 'mlumfitatgzwedr', 'orpaenclbrvinpcrdnfpzm', 'xfdqqrspoembzawfucemmdkgttfznydbdftagjq', 'czljtqjboyohmsdkaw', 'yjguwxlcemjtijzkysxvmpdwujtas', 'microsoft', 'antispam', 'uriscan', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'microsoft', 'antispam', 'prvs', 'exchange', 'antispam', 'report', 'uacyltoe', 'hxgaycze', 'uriscan', 'exchange', 'antispam', 'report', 'cfa', 'uacyltoe', 'hxgaycze', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'bcl', 'pcl', 'ruleid', 'srvr', 'dmprmb', 'forefront', 'prvs', 'fca', 'forefront', 'antispam', 'report', 'sfv', 'nspm', 'sfs', 'dir', 'sfp', 'scl', 'srvr', 'dmprmb', 'dmprmb', 'namprd', 'prod', 'outlook', 'com', 'fpr', 'spf', 'none', 'ptr', 'infonorecords', 'mx', 'lang', 'received', 'spf', 'none', 'protection', 'outlook', 'com', 'company', 'com', 'designate', 'permitted', 'sender', 'host', 'spamdiagnosticoutput', 'spamdiagnosticmetadata', 'nspm', 'content', 'type', 'multipart', 'mixed', 'boundary', 'dmprmbfdedabcbeaefcadmprmbnamp', 'mime', 'version', 'originatororg', 'company', 'com', 'm', 'exchange', 'crosstenant', 'originalarrivaltime', 'utc', 'm', 'exchange', 'crosstenant', 'fromentityheader', 'hosted', 'm', 'exchange', 'crosstenant', 'id', 'eee', 'cb', 'bdeb', 'm', 'exchange', 'transport', 'crosstenantheadersstamped', 'dmprmb'] list_processed_text: [['help'], ['idea'], ['received'], ['message'], ['katfrthy'], ['cighyillo'], ['consultant'], ['microsoft'], ['outlook'], ['pm'], ['notwkdgr'], ['zvmesjpt'], ['undeliverable'], ['fw'], ['company'], ['ec'], ['mfg'], ['tooltion'], ['u'], ['image'], ['removed'], ['sender'], ['message'], ['delivered'], ['gmail'], ['com'], ['confirm'], ['message'], ['sent'], ['trusted'], ['location'], ['kathleen'], ['cirillo'], ['office'], ['dhermosi'], ['action'], ['required'], ['recipient'], ['spf'], ['validation'], ['error'], ['fix'], ['organization'], ['email'], ['admin'], ['diagnose'], ['fix'], ['domain'], ['email'], ['setting'], ['please'], ['forward'], ['message'], ['email'], ['admin'], ['info'], ['email'], ['admins'], ['status'], ['code'], ['error'], ['occurs'], ['sender'], ['policy'], ['framdntyework'], ['spf'], ['validation'], ['sender'], ['domain'], ['fails'], ['sender'], ['email'], ['admin'], ['make'], ['sure'], ['spf'], ['record'], ['domain'], ['domain'], ['registrar'], ['set'], ['correctly'], ['office'], ['support'], ['one'], ['spf'], ['record'], ['txt'], ['record'], ['defines'], ['spf'], ['domain'], ['include'], ['following'], ['domain'], ['name'], ['spf'], ['protection'], ['outlook'], ['com'], ['hybrid'], ['configuration'], ['mailbox'], ['cloud'], ['mailbox'], ['premise'], ['exchange'], ['online'], ['protection'], ['standalone'], ['customer'], ['add'], ['outbound'], ['ip'], ['address'], ['premise'], ['server'], ['txt'], ['record'], ['information'], ['instruction'], ['configuring'], ['spf'], ['record'], ['see'], ['customize'], ['spf'], ['record'], ['validate'], ['outbound'], ['mail'], ['sent'], ['domain'], ['bkmk'], ['spfrecords'], ['original'], ['message'], ['detail'], ['created'], ['date'], ['pm'], ['sender'], ['address'], ['recipient'], ['address'], ['fw'], ['company'], ['ec'], ['mfg'], ['tooltion'], ['u'], ['error'], ['detail'], ['reported'], ['error'], ['message'], ['rejected'], ['sender'], ['policy'], ['framdntyework'], ['violation'], ['unauthenticated'], ['email'], ['hr'], ['tool'], ['com'], ['accepted'], ['due'], ['domain'], ['dmarc'], ['policy'], ['please'], ['contact'], ['administrator'], ['hr'], ['tool'], ['com'], ['domain'], ['legitimate'], ['mail'], ['please'], ['visit'], ['dsn'], ['generated'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['remote'], ['server'], ['mx'], ['google'], ['com'], ['message'], ['hop'], ['hop'], ['time'], ['utc'], ['relay'], ['time'], ['pm'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['mapi'], ['sec'], ['pm'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['microsoft'], ['smtp'], ['server'], ['version'], ['tl'], ['cipher'], ['tl'], ['ecdhe'], ['rsa'], ['aes'], ['cbc'], ['sha'], ['original'], ['message'], ['header'], ['dkim'], ['signature'], ['rsa'], ['sha'], ['relaxed'], ['relaxed'], ['company'], ['com'], ['selector'], ['date'], ['message'], ['id'], ['content'], ['type'], ['mime'], ['version'], ['bh'], ['pkhj'], ['cxiisgrkpfsbsxqqzvxrpkmbumybgcvme'], ['svvuxrjlaemyloakfqtpvvdnwyalrvmwpvltihleelrpztsatflwqaiwmpjkyor'], ['nks'], ['ricxtqctywsprvdutltoghtybewbfcuvwmapgzzbtnqsozevisyenotqkqmumxccbhzm'], ['received'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['microsoft'], ['smtp'], ['server'], ['version'], ['tl'], ['cipher'], ['tl'], ['ecdhe'], ['rsa'], ['aes'], ['cbc'], ['sha'], ['id'], ['received'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['mapi'], ['id'], ['favot'], ['jean'], ['jacques'], ['fw'], ['company'], ['ec'], ['mfg'], ['tooltion'], ['u'], ['thread'], ['top'], ['company'], ['ec'], ['mfg'], ['tooltion'], ['u'], ['thread'], ['index'], ['adiuklhl'], ['ozbuesgkwoqwhfsrwaakvcg'], ['sender'], ['notwkdgr'], ['zvmesjpt'], ['date'], ['message'], ['id'], ['reference'], ['reply'], ['accept'], ['language'], ['en'], ['u'], ['content'], ['language'], ['en'], ['u'], ['m'], ['attach'], ['yes'], ['m'], ['tnef'], ['correlator'], ['authentication'], ['result'], ['spf'], ['none'], ['sender'], ['ip'], ['m'], ['exchange'], ['messagesentrepresentingtype'], ['m'], ['exchange'], ['meetingforward'], ['message'], ['forward'], ['originating'], ['ip'], ['m'], ['office'], ['filtering'], ['correlation'], ['id'], ['ee'], ['fb'], ['bc'], ['defc'], ['microsoft'], ['exchange'], ['diagnostics'], ['dmprmb'], ['zwkfzfqhveyrfplvnznkjsmckqwehilqgumjnxnqprprqkdhi'], ['rvjjucnejqafzgtzjij'], ['acwuvpuzdunkhjwjqwvmyqktqtf'], ['sotovjkvrswnbmikostapagfwtlikizopxoinzelnwzgqwxhdfht'], ['kzmqla'], ['pajmwsrgslvqwosb'], ['oqmwgxvfmlsw'], ['zvgixwksid'], ['qzzitpqyludriottgkxzayeeyzavgeudngmojgvhdtnqwuiojybnp'], ['xet'], ['hrgrzftydsb'], ['hkcyiuezslcybgt'], ['nrswzhjzgmtanpptqedo'], ['vwvcyqyepupocqfthezolpfhxzkwojpdnpwkzpomtdksxjgwuzrcjk'], ['gbfmvjrqggvlyaikcekgjrnwpozuhpverkfxyf'], ['bxtnfjdvsrkxcifcvddkrkgwwnfnaklg'], ['cheincsucpegyhrjxtdziuemaklov'], ['pefvrpt'], ['qnxldyyaiuersials'], ['rrranhcqjepzugqvggjsdvnkibmjwqntjhjs'], ['xghabfqwviwctkdxqupnpbikhjtjiylmevfzllvnwoggkaenkvbsoltryjexff'], ['prcpejfgu'], ['hihognmjetrokkpaemfapugfinxzgnbwwvkifmzcsfrcsrewvfocmgqhnl'], ['vh'], ['uowqrijelr'], ['yuhmlbonhp'], ['mlumfitatgzwedr'], ['orpaenclbrvinpcrdnfpzm'], ['xfdqqrspoembzawfucemmdkgttfznydbdftagjq'], ['czljtqjboyohmsdkaw'], ['yjguwxlcemjtijzkysxvmpdwujtas'], ['microsoft'], ['antispam'], ['uriscan'], ['bcl'], ['pcl'], ['ruleid'], ['srvr'], ['dmprmb'], ['microsoft'], ['antispam'], ['prvs'], ['exchange'], ['antispam'], ['report'], ['uacyltoe'], ['hxgaycze'], ['uriscan'], ['exchange'], ['antispam'], ['report'], ['cfa'], ['uacyltoe'], ['hxgaycze'], ['bcl'], ['pcl'], ['ruleid'], ['srvr'], ['dmprmb'], ['bcl'], ['pcl'], ['ruleid'], ['srvr'], ['dmprmb'], ['forefront'], ['prvs'], ['fca'], ['forefront'], ['antispam'], ['report'], ['sfv'], ['nspm'], ['sfs'], ['dir'], ['sfp'], ['scl'], ['srvr'], ['dmprmb'], ['dmprmb'], ['namprd'], ['prod'], ['outlook'], ['com'], ['fpr'], ['spf'], ['none'], ['ptr'], ['infonorecords'], ['mx'], ['lang'], ['received'], ['spf'], ['none'], ['protection'], ['outlook'], ['com'], ['company'], ['com'], ['designate'], ['permitted'], ['sender'], ['host'], ['spamdiagnosticoutput'], ['spamdiagnosticmetadata'], ['nspm'], ['content'], ['type'], ['multipart'], ['mixed'], ['boundary'], ['dmprmbfdedabcbeaefcadmprmbnamp'], ['mime'], ['version'], ['originatororg'], ['company'], ['com'], ['m'], ['exchange'], ['crosstenant'], ['originalarrivaltime'], ['utc'], ['m'], ['exchange'], ['crosstenant'], ['fromentityheader'], ['hosted'], ['m'], ['exchange'], ['crosstenant'], ['id'], ['eee'], ['cb'], ['bdeb'], ['m'], ['exchange'], ['transport'], ['crosstenantheadersstamped'], ['dmprmb']] k: 3307 len: <class 'list'> Data: ['eagsm', 'service', 'security', 'tool', 'password', 'manager', 'stopped', 'disabled', 'installed', 'target', 'machine', 'eagsm', 'service', 'security', 'tool', 'password', 'manager', 'stopped', 'disabled', 'installed', 'target', 'machine'] processed_text: ['eagsm', 'service', 'security', 'tool', 'password', 'manager', 'stopped', 'disabled', 'installed', 'target', 'machine', 'eagsm', 'service', 'security', 'tool', 'password', 'manager', 'stopped', 'disabled', 'installed', 'target', 'machine'] list_processed_text: [['eagsm'], ['service'], ['security'], ['tool'], ['password'], ['manager'], ['stopped'], ['disabled'], ['installed'], ['target'], ['machine'], ['eagsm'], ['service'], ['security'], ['tool'], ['password'], ['manager'], ['stopped'], ['disabled'], ['installed'], ['target'], ['machine']] k: 3308 len: <class 'list'> Data: ['account', 'locked', 'unable', 'login', 'es', 'portal', 'account', 'locked', 'unable', 'login', 'es', 'portal'] processed_text: ['account', 'locked', 'unable', 'login', 'es', 'portal', 'account', 'locked', 'unable', 'login', 'es', 'portal'] list_processed_text: [['account'], ['locked'], ['unable'], ['login'], ['es'], ['portal'], ['account'], ['locked'], ['unable'], ['login'], ['es'], ['portal']] k: 3309 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3310 len: <class 'list'> Data: ['lv', 'printing', 'lv', 'printing'] processed_text: ['lv', 'printing', 'lv', 'printing'] list_processed_text: [['lv'], ['printing'], ['lv'], ['printing']] k: 3311 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3312 len: <class 'list'> Data: ['m', 'crm', 'configuration', 'outlook', 'm', 'crm', 'configuration', 'outlook'] processed_text: ['m', 'crm', 'configuration', 'outlook', 'm', 'crm', 'configuration', 'outlook'] list_processed_text: [['m'], ['crm'], ['configuration'], ['outlook'], ['m'], ['crm'], ['configuration'], ['outlook']] k: 3313 len: <class 'list'> Data: ['sound', 'coming', 'computer', 'connecting', 'device', 'moving', 'monitor', 'sound', 'coming', 'computer', 'connecting', 'device', 'moving', 'monitor'] processed_text: ['sound', 'coming', 'computer', 'connecting', 'device', 'moving', 'monitor', 'sound', 'coming', 'computer', 'connecting', 'device', 'moving', 'monitor'] list_processed_text: [['sound'], ['coming'], ['computer'], ['connecting'], ['device'], ['moving'], ['monitor'], ['sound'], ['coming'], ['computer'], ['connecting'], ['device'], ['moving'], ['monitor']] k: 3314 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 3315 len: <class 'list'> Data: ['sound', 'issue', 'summary', 'issue', 'sound', 'laptop', 'sound'] processed_text: ['sound', 'issue', 'summary', 'issue', 'sound', 'laptop', 'sound'] list_processed_text: [['sound'], ['issue'], ['summary'], ['issue'], ['sound'], ['laptop'], ['sound']] k: 3316 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3317 len: <class 'list'> Data: ['markhtyingre', 'email', 'junk', 'hello', 'please', 'put', 'email', 'general', 'junk', 'spam', 'thx', 'gergryth'] processed_text: ['markhtyingre', 'email', 'junk', 'hello', 'please', 'put', 'email', 'general', 'junk', 'spam', 'thx', 'gergryth'] list_processed_text: [['markhtyingre'], ['email'], ['junk'], ['hello'], ['please'], ['put'], ['email'], ['general'], ['junk'], ['spam'], ['thx'], ['gergryth']] k: 3318 len: <class 'list'> Data: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler'], ['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler']] k: 3319 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3320 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3321 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3322 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 3323 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3324 len: <class 'list'> Data: ['application', 'plm', 'scheduled', 'task', 'monitor', 'critical', 'state', 'mentioned', 'serevrs', 'alwaysupservice', 'exe', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname'] processed_text: ['application', 'plm', 'scheduled', 'task', 'monitor', 'critical', 'state', 'mentioned', 'serevrs', 'alwaysupservice', 'exe', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname', 'plm', 'conversion', 'server', 'hostname'] list_processed_text: [['application'], ['plm'], ['scheduled'], ['task'], ['monitor'], ['critical'], ['state'], ['mentioned'], ['serevrs'], ['alwaysupservice'], ['exe'], ['plm'], ['conversion'], ['server'], ['hostname'], ['plm'], ['conversion'], ['server'], ['hostname'], ['plm'], ['conversion'], ['server'], ['hostname'], ['plm'], ['conversion'], ['server'], ['hostname']] k: 3325 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'allert', 'last', 'name', 'herghan', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'allert', 'last', 'name', 'herghan', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['allert'], ['last'], ['name'], ['herghan'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 3326 len: <class 'list'> Data: ['inquiry', 'erp', 'status', 'unable', 'access', 'es', 'portal', 'inquiry', 'erp', 'status', 'unable', 'access', 'es', 'portal'] processed_text: ['inquiry', 'erp', 'status', 'unable', 'access', 'es', 'portal', 'inquiry', 'erp', 'status', 'unable', 'access', 'es', 'portal'] list_processed_text: [['inquiry'], ['erp'], ['status'], ['unable'], ['access'], ['es'], ['portal'], ['inquiry'], ['erp'], ['status'], ['unable'], ['access'], ['es'], ['portal']] k: 3327 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3328 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['powder'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 3329 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 3330 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 3331 len: <class 'list'> Data: ['vip', 'workflow', 'notification', 'universal', 'worklist', 'vip', 'ticket', 'reviewed', 'joothyst', 'clrgtydia', 'problem', 'caused', 'exclusion', 'list', 'cm', 'workflow', 'problem', 'security', 'configuration', 'joftgost', 'receives', 'item', 'universal', 'worklist', 'mail', 'notification', 'traced', 'screen', 'sud', 'screenshot', 'attached', 'incident', 'see', 'mail', 'address', 'joftgost', 'incorrectly', 'please', 'update', 'dear', 'madam', 'sir', 'longer', 'receiving', 'workflow', 'notification', 'outlook', 'inbox', 'restore', 'kind'] processed_text: ['vip', 'workflow', 'notification', 'universal', 'worklist', 'vip', 'ticket', 'reviewed', 'joothyst', 'clrgtydia', 'problem', 'caused', 'exclusion', 'list', 'cm', 'workflow', 'problem', 'security', 'configuration', 'joftgost', 'receives', 'item', 'universal', 'worklist', 'mail', 'notification', 'traced', 'screen', 'sud', 'screenshot', 'attached', 'incident', 'see', 'mail', 'address', 'joftgost', 'incorrectly', 'please', 'update', 'dear', 'madam', 'sir', 'longer', 'receiving', 'workflow', 'notification', 'outlook', 'inbox', 'restore', 'kind'] list_processed_text: [['vip'], ['workflow'], ['notification'], ['universal'], ['worklist'], ['vip'], ['ticket'], ['reviewed'], ['joothyst'], ['clrgtydia'], ['problem'], ['caused'], ['exclusion'], ['list'], ['cm'], ['workflow'], ['problem'], ['security'], ['configuration'], ['joftgost'], ['receives'], ['item'], ['universal'], ['worklist'], ['mail'], ['notification'], ['traced'], ['screen'], ['sud'], ['screenshot'], ['attached'], ['incident'], ['see'], ['mail'], ['address'], ['joftgost'], ['incorrectly'], ['please'], ['update'], ['dear'], ['madam'], ['sir'], ['longer'], ['receiving'], ['workflow'], ['notification'], ['outlook'], ['inbox'], ['restore'], ['kind']] k: 3332 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3333 len: <class 'list'> Data: ['m', 'crmdynamics', 'deployment', 'query', 'm', 'crm', 'dynamic', 'deployment', 'query'] processed_text: ['m', 'crmdynamics', 'deployment', 'query', 'm', 'crm', 'dynamic', 'deployment', 'query'] list_processed_text: [['m'], ['crmdynamics'], ['deployment'], ['query'], ['m'], ['crm'], ['dynamic'], ['deployment'], ['query']] k: 3334 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'message', 'email', 'efbwiadp', 'dicafxhv', 'pm', 'shesyhur', 'posrt', 'inc', 'uacyltoe', 'hxgaycze', 'message', 'hello', 'shesyhur', 'checked', 'issue', 'reported', 'previously', 'upgrade', 'user', 'getting', 'email', 'uacyltoe', 'hxgayczeing', 'email', 'configuration', 'please', 'aware', 'part', 'upgrade', 'safely', 'deleted'] processed_text: ['uacyltoe', 'hxgaycze', 'message', 'email', 'efbwiadp', 'dicafxhv', 'pm', 'shesyhur', 'posrt', 'inc', 'uacyltoe', 'hxgaycze', 'message', 'hello', 'shesyhur', 'checked', 'issue', 'reported', 'previously', 'upgrade', 'user', 'getting', 'email', 'uacyltoe', 'hxgayczeing', 'email', 'configuration', 'please', 'aware', 'part', 'upgrade', 'safely', 'deleted'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['message'], ['email'], ['efbwiadp'], ['dicafxhv'], ['pm'], ['shesyhur'], ['posrt'], ['inc'], ['uacyltoe'], ['hxgaycze'], ['message'], ['hello'], ['shesyhur'], ['checked'], ['issue'], ['reported'], ['previously'], ['upgrade'], ['user'], ['getting'], ['email'], ['uacyltoe'], ['hxgayczeing'], ['email'], ['configuration'], ['please'], ['aware'], ['part'], ['upgrade'], ['safely'], ['deleted']] k: 3335 len: <class 'list'> Data: ['yahoo', 'email', 'skype', 'team', 'viewer', 'loading', 'internet', 'working', 'yahoo', 'email', 'skype', 'team', 'viewer', 'loading', 'internet', 'working'] processed_text: ['yahoo', 'email', 'skype', 'team', 'viewer', 'loading', 'internet', 'working', 'yahoo', 'email', 'skype', 'team', 'viewer', 'loading', 'internet', 'working'] list_processed_text: [['yahoo'], ['email'], ['skype'], ['team'], ['viewer'], ['loading'], ['internet'], ['working'], ['yahoo'], ['email'], ['skype'], ['team'], ['viewer'], ['loading'], ['internet'], ['working']] k: 3336 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3337 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'email', 'sent', 'neerthyu', 'agrtywal', 'id', 'neerthyu', 'sent', 'uacyltoe', 'hxgaycze', 'email', 'advise', 'neerthyu', 'agrtywal', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'uacyltoe', 'hxgaycze', 'message', 'importance', 'low', 'hi', 'received', 'email', 'show', 'sent', 'id', 'sent', 'uacyltoe', 'hxgaycze', 'email', 'pl', 'look', 'matheywter', 'advise'] processed_text: ['uacyltoe', 'hxgaycze', 'email', 'sent', 'neerthyu', 'agrtywal', 'id', 'neerthyu', 'sent', 'uacyltoe', 'hxgaycze', 'email', 'advise', 'neerthyu', 'agrtywal', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'uacyltoe', 'hxgaycze', 'message', 'importance', 'low', 'hi', 'received', 'email', 'show', 'sent', 'id', 'sent', 'uacyltoe', 'hxgaycze', 'email', 'pl', 'look', 'matheywter', 'advise'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['email'], ['sent'], ['neerthyu'], ['agrtywal'], ['id'], ['neerthyu'], ['sent'], ['uacyltoe'], ['hxgaycze'], ['email'], ['advise'], ['neerthyu'], ['agrtywal'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['uacyltoe'], ['hxgaycze'], ['message'], ['importance'], ['low'], ['hi'], ['received'], ['email'], ['show'], ['sent'], ['id'], ['sent'], ['uacyltoe'], ['hxgaycze'], ['email'], ['pl'], ['look'], ['matheywter'], ['advise']] k: 3338 len: <class 'list'> Data: ['sound', 'issue', 'issue', 'sound', 'issue', 'issue'] processed_text: ['sound', 'issue', 'issue', 'sound', 'issue', 'issue'] list_processed_text: [['sound'], ['issue'], ['issue'], ['sound'], ['issue'], ['issue']] k: 3339 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3340 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3341 len: <class 'list'> Data: ['erp', 'log', 'balancing', 'error', 'vpn', 'issue', 'erp', 'log', 'balancing', 'error', 'vpn', 'issue'] processed_text: ['erp', 'log', 'balancing', 'error', 'vpn', 'issue', 'erp', 'log', 'balancing', 'error', 'vpn', 'issue'] list_processed_text: [['erp'], ['log'], ['balancing'], ['error'], ['vpn'], ['issue'], ['erp'], ['log'], ['balancing'], ['error'], ['vpn'], ['issue']] k: 3342 len: <class 'list'> Data: ['plant', 'network', 'drive', 'deleted', 'computer', 'unable', 'work', 'anyway', 'add', 'network', 'drive', 'back', 'computer', 'send', 'instruction', 'add', 'computer'] processed_text: ['plant', 'network', 'drive', 'deleted', 'computer', 'unable', 'work', 'anyway', 'add', 'network', 'drive', 'back', 'computer', 'send', 'instruction', 'add', 'computer'] list_processed_text: [['plant'], ['network'], ['drive'], ['deleted'], ['computer'], ['unable'], ['work'], ['anyway'], ['add'], ['network'], ['drive'], ['back'], ['computer'], ['send'], ['instruction'], ['add'], ['computer']] k: 3343 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3344 len: <class 'list'> Data: ['pls', 'help', 'unable', 'connect', 'vpn', 'hello', 'please', 'helo', 'subject', 'matheywter', 'pls', 'see', 'snapshot'] processed_text: ['pls', 'help', 'unable', 'connect', 'vpn', 'hello', 'please', 'helo', 'subject', 'matheywter', 'pls', 'see', 'snapshot'] list_processed_text: [['pls'], ['help'], ['unable'], ['connect'], ['vpn'], ['hello'], ['please'], ['helo'], ['subject'], ['matheywter'], ['pls'], ['see'], ['snapshot']] k: 3345 len: <class 'list'> Data: ['job', 'apo', 'cif', 'psid', 'ap', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'psid', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'apo', 'cif', 'psid', 'ap', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'psid', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['apo'], ['cif'], ['psid'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['apo'], ['cif'], ['psid'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 3346 len: <class 'list'> Data: ['job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler'] processed_text: ['job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['apo'], ['cif'], ['pd'], ['failed'], ['job'], ['scheduler'], ['job'], ['apo'], ['cif'], ['pd'], ['failed'], ['job'], ['scheduler']] k: 3347 len: <class 'list'> Data: ['job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler'] processed_text: ['job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['apo'], ['cif'], ['pd'], ['failed'], ['job'], ['scheduler'], ['job'], ['apo'], ['cif'], ['pd'], ['failed'], ['job'], ['scheduler']] k: 3348 len: <class 'list'> Data: ['job', 'apo', 'cif', 'pd', 'eu', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'eu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'apo', 'cif', 'pd', 'eu', 'failed', 'job', 'scheduler', 'job', 'apo', 'cif', 'pd', 'eu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['apo'], ['cif'], ['pd'], ['eu'], ['failed'], ['job'], ['scheduler'], ['job'], ['apo'], ['cif'], ['pd'], ['eu'], ['failed'], ['job'], ['scheduler']] k: 3349 len: <class 'list'> Data: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'infonet', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['infonet'], ['full'], ['failed'], ['job'], ['scheduler']] k: 3350 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3351 len: <class 'list'> Data: ['unable', 'access', 'engineering', 'tool', 'unable', 'access', 'engineering', 'tool', 'due', 'vpn'] processed_text: ['unable', 'access', 'engineering', 'tool', 'unable', 'access', 'engineering', 'tool', 'due', 'vpn'] list_processed_text: [['unable'], ['access'], ['engineering'], ['tool'], ['unable'], ['access'], ['engineering'], ['tool'], ['due'], ['vpn']] k: 3352 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 3353 len: <class 'list'> Data: ['able', 'login', 'vpn', 'able', 'login', 'vpn', 'advised', 'caller', 'restart', 'system', 'check', 'internet', 'connection', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['able', 'login', 'vpn', 'able', 'login', 'vpn', 'advised', 'caller', 'restart', 'system', 'check', 'internet', 'connection', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['able'], ['login'], ['vpn'], ['able'], ['login'], ['vpn'], ['advised'], ['caller'], ['restart'], ['system'], ['check'], ['internet'], ['connection'], ['advised'], ['caller'], ['logon'], ['company'], ['vpn'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3354 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'sure', 'error', 'came', 'several', 'time', 'attempting', 'add', 'email', 'crm', 'bottom', 'email', 'show', 'added', 'email', 'crm', 'cannot', 'find', 'anywhere', 'click', 'view', 'crm', 'get', 'error', 'click', 'open', 'new', 'large', 'crm', 'page', 'show', 'created', 'calendar', 'date', 'show', 'regular', 'crm', 'even', 'closing', 'reopening', 'show', 'regular', 'crm'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'sure', 'error', 'came', 'several', 'time', 'attempting', 'add', 'email', 'crm', 'bottom', 'email', 'show', 'added', 'email', 'crm', 'cannot', 'find', 'anywhere', 'click', 'view', 'crm', 'get', 'error', 'click', 'open', 'new', 'large', 'crm', 'page', 'show', 'created', 'calendar', 'date', 'show', 'regular', 'crm', 'even', 'closing', 'reopening', 'show', 'regular', 'crm'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['sure'], ['error'], ['came'], ['several'], ['time'], ['attempting'], ['add'], ['email'], ['crm'], ['bottom'], ['email'], ['show'], ['added'], ['email'], ['crm'], ['cannot'], ['find'], ['anywhere'], ['click'], ['view'], ['crm'], ['get'], ['error'], ['click'], ['open'], ['new'], ['large'], ['crm'], ['page'], ['show'], ['created'], ['calendar'], ['date'], ['show'], ['regular'], ['crm'], ['even'], ['closing'], ['reopening'], ['show'], ['regular'], ['crm']] k: 3355 len: <class 'list'> Data: ['vip', 'time', 'setting', 'collaboration', 'platform', 'experiencing', 'problem', 'elt', 'folder', 'collaboration', 'platform', 'collaboration', 'platform', 'view', 'elt', 'meeting', 'current', 'updating', 'document', 'uploaded', 'told', 'time', 'setting', 'pc', 'lpoebzsc', 'grknswyo', 'tried', 'reset', 'system', 'reset', 'please', 'look', 'fix', 'problem'] processed_text: ['vip', 'time', 'setting', 'collaboration', 'platform', 'experiencing', 'problem', 'elt', 'folder', 'collaboration', 'platform', 'collaboration', 'platform', 'view', 'elt', 'meeting', 'current', 'updating', 'document', 'uploaded', 'told', 'time', 'setting', 'pc', 'lpoebzsc', 'grknswyo', 'tried', 'reset', 'system', 'reset', 'please', 'look', 'fix', 'problem'] list_processed_text: [['vip'], ['time'], ['setting'], ['collaboration'], ['platform'], ['experiencing'], ['problem'], ['elt'], ['folder'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['view'], ['elt'], ['meeting'], ['current'], ['updating'], ['document'], ['uploaded'], ['told'], ['time'], ['setting'], ['pc'], ['lpoebzsc'], ['grknswyo'], ['tried'], ['reset'], ['system'], ['reset'], ['please'], ['look'], ['fix'], ['problem']] k: 3356 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3357 len: <class 'list'> Data: ['m', 'crm', 'installation', 'm', 'crm', 'installation', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'mscrm', 'add', 'outlook', 'launched', 'outlook', 'user', 'able', 'see', 'crm', 'add', 'outlook', 'issue', 'resolved'] processed_text: ['m', 'crm', 'installation', 'm', 'crm', 'installation', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'mscrm', 'add', 'outlook', 'launched', 'outlook', 'user', 'able', 'see', 'crm', 'add', 'outlook', 'issue', 'resolved'] list_processed_text: [['m'], ['crm'], ['installation'], ['m'], ['crm'], ['installation'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['installed'], ['mscrm'], ['add'], ['outlook'], ['launched'], ['outlook'], ['user'], ['able'], ['see'], ['crm'], ['add'], ['outlook'], ['issue'], ['resolved']] k: 3358 len: <class 'list'> Data: ['zbxljotu', 'cbunzrak', 'invoice', 'order', 'number', 'zbxljotu', 'cbunzrak', 'invoice', 'order', 'error', 'account', 'order'] processed_text: ['zbxljotu', 'cbunzrak', 'invoice', 'order', 'number', 'zbxljotu', 'cbunzrak', 'invoice', 'order', 'error', 'account', 'order'] list_processed_text: [['zbxljotu'], ['cbunzrak'], ['invoice'], ['order'], ['number'], ['zbxljotu'], ['cbunzrak'], ['invoice'], ['order'], ['error'], ['account'], ['order']] k: 3359 len: <class 'list'> Data: ['outlook', 'configuration', 'vpn', 'connectivity', 'outlook', 'configuration', 'vpn', 'connectivity'] processed_text: ['outlook', 'configuration', 'vpn', 'connectivity', 'outlook', 'configuration', 'vpn', 'connectivity'] list_processed_text: [['outlook'], ['configuration'], ['vpn'], ['connectivity'], ['outlook'], ['configuration'], ['vpn'], ['connectivity']] k: 3360 len: <class 'list'> Data: ['engineering', 'tool', 'login', 'issue', 'engineering', 'tool', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'unlocked', 'user', 'account', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['engineering', 'tool', 'login', 'issue', 'engineering', 'tool', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'unlocked', 'user', 'account', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['engineering'], ['tool'], ['login'], ['issue'], ['engineering'], ['tool'], ['login'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['unlocked'], ['user'], ['account'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3361 len: <class 'list'> Data: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'need', 'crm', 'tab', 'outlook'] processed_text: ['urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'need', 'crm', 'tab', 'outlook'] list_processed_text: [['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['need'], ['crm'], ['tab'], ['outlook']] k: 3362 len: <class 'list'> Data: ['dell', 'skype', 'audio', 'working', 'dell', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'sound', 'driver', 'restarted', 'pc', 'user', 'able', 'listen', 'audio', 'skype', 'call', 'issue', 'resolved'] processed_text: ['dell', 'skype', 'audio', 'working', 'dell', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'sound', 'driver', 'restarted', 'pc', 'user', 'able', 'listen', 'audio', 'skype', 'call', 'issue', 'resolved'] list_processed_text: [['dell'], ['skype'], ['audio'], ['working'], ['dell'], ['skype'], ['audio'], ['working'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['updated'], ['sound'], ['driver'], ['restarted'], ['pc'], ['user'], ['able'], ['listen'], ['audio'], ['skype'], ['call'], ['issue'], ['resolved']] k: 3363 len: <class 'list'> Data: ['support', 'hello', 'could', 'please', 'help', 'u', 'add', 'customer', 'engineering', 'tool', 'software', 'maquinados', 'de', 'precision', 'de', 'mex', 'magonza', 'sa', 'de', 'cv', 'evercast', 'de', 'v', 'tecnologia', 'en', 'maquinados', 'hydra', 'greeting', 'johjkse', 'luartusa', 'rahymos', 'bajio', 'sale', 'representative', 'message', 'intended', 'exclusive', 'use', 'person', 'addressed', 'may', 'contain', 'confidential', 'privileged', 'information', 'exempt', 'disclosed', 'accordance', 'provision', 'current', 'legislation,', 'dissemination,', 'distribution', 'reproduction', 'message', 'another', 'person', 'recipient', 'intended', 'strictly', 'prohibited', 'receives', 'message', 'error,', 'please', 'notify', 'sender', 'delete', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'message', 'intended', 'exclusive', 'use', 'person', 'addressed', 'may', 'contain', 'confidential', 'privileged', 'information', 'exempt', 'disclosed', 'accordance', 'provision', 'current', 'legislation', 'dissemination,', 'distribution', 'reproduction', 'message', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receive', 'message', 'mistake,', 'please', 'notify', 'sender', 'delete', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['support', 'hello', 'could', 'please', 'help', 'u', 'add', 'customer', 'engineering', 'tool', 'software', 'maquinados', 'de', 'precision', 'de', 'mex', 'magonza', 'sa', 'de', 'cv', 'evercast', 'de', 'v', 'tecnologia', 'en', 'maquinados', 'hydra', 'greeting', 'johjkse', 'luartusa', 'rahymos', 'bajio', 'sale', 'representative', 'message', 'intended', 'exclusive', 'use', 'person', 'addressed', 'may', 'contain', 'confidential', 'privileged', 'information', 'exempt', 'disclosed', 'accordance', 'provision', 'current', 'legislation,', 'dissemination,', 'distribution', 'reproduction', 'message', 'another', 'person', 'recipient', 'intended', 'strictly', 'prohibited', 'receives', 'message', 'error,', 'please', 'notify', 'sender', 'delete', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'message', 'intended', 'exclusive', 'use', 'person', 'addressed', 'may', 'contain', 'confidential', 'privileged', 'information', 'exempt', 'disclosed', 'accordance', 'provision', 'current', 'legislation', 'dissemination,', 'distribution', 'reproduction', 'message', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receive', 'message', 'mistake,', 'please', 'notify', 'sender', 'delete', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['support'], ['hello'], ['could'], ['please'], ['help'], ['u'], ['add'], ['customer'], ['engineering'], ['tool'], ['software'], ['maquinados'], ['de'], ['precision'], ['de'], ['mex'], ['magonza'], ['sa'], ['de'], ['cv'], ['evercast'], ['de'], ['v'], ['tecnologia'], ['en'], ['maquinados'], ['hydra'], ['greeting'], ['johjkse'], ['luartusa'], ['rahymos'], ['bajio'], ['sale'], ['representative'], ['message'], ['intended'], ['exclusive'], ['use'], ['person'], ['addressed'], ['may'], ['contain'], ['confidential'], ['privileged'], ['information'], ['exempt'], ['disclosed'], ['accordance'], ['provision'], ['current'], ['legislation,'], ['dissemination,'], ['distribution'], ['reproduction'], ['message'], ['another'], ['person'], ['recipient'], ['intended'], ['strictly'], ['prohibited'], ['receives'], ['message'], ['error,'], ['please'], ['notify'], ['sender'], ['delete'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language'], ['message'], ['intended'], ['exclusive'], ['use'], ['person'], ['addressed'], ['may'], ['contain'], ['confidential'], ['privileged'], ['information'], ['exempt'], ['disclosed'], ['accordance'], ['provision'], ['current'], ['legislation'], ['dissemination,'], ['distribution'], ['reproduction'], ['message'], ['someone'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['receive'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['delete'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 3364 len: <class 'list'> Data: ['nan', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'portal', 'issue', 'resolved'] processed_text: ['nan', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'portal', 'issue', 'resolved'] list_processed_text: [['nan'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['portal'], ['issue'], ['resolved']] k: 3365 len: <class 'list'> Data: ['ie', 'issue', 'ie', 'issue'] processed_text: ['ie', 'issue', 'ie', 'issue'] list_processed_text: [['ie'], ['issue'], ['ie'], ['issue']] k: 3366 len: <class 'list'> Data: ['multiple', 'switch', 'company', 'na', 'usa', 'usa', 'since', 'pm', 'et', 'switch', 'company', 'na', 'usa', 'usa', 'shippingarea', 'access', 'sw', 'company', 'na', 'usa', 'usa', 'furnace', 'access', 'sw', 'located', 'usa', 'since', 'pm', 'et'] processed_text: ['multiple', 'switch', 'company', 'na', 'usa', 'usa', 'since', 'pm', 'et', 'switch', 'company', 'na', 'usa', 'usa', 'shippingarea', 'access', 'sw', 'company', 'na', 'usa', 'usa', 'furnace', 'access', 'sw', 'located', 'usa', 'since', 'pm', 'et'] list_processed_text: [['multiple'], ['switch'], ['company'], ['na'], ['usa'], ['usa'], ['since'], ['pm'], ['et'], ['switch'], ['company'], ['na'], ['usa'], ['usa'], ['shippingarea'], ['access'], ['sw'], ['company'], ['na'], ['usa'], ['usa'], ['furnace'], ['access'], ['sw'], ['located'], ['usa'], ['since'], ['pm'], ['et']] k: 3367 len: <class 'list'> Data: ['drive', 'connecting', 'drive', 'connecting', 'tried', 'ip', 'address', 'go', 'checked', 'server', 'name', 'go', 'user', 'mentioned', 'changed', 'password', 'vpn', 'able', 'connect', 'drive', 'rest', 'driver', 'working', 'fine', 'accessible', 'informed', 'user', 'get', 'touch', 'one', 'colleague', 'get', 'screen', 'shot', 'driver', 'access', 'also', 'onfiirm', 'drive', 'tried', 'mapping', 'drive', 'password', 'nogo', 'waiting', 'user', 'email'] processed_text: ['drive', 'connecting', 'drive', 'connecting', 'tried', 'ip', 'address', 'go', 'checked', 'server', 'name', 'go', 'user', 'mentioned', 'changed', 'password', 'vpn', 'able', 'connect', 'drive', 'rest', 'driver', 'working', 'fine', 'accessible', 'informed', 'user', 'get', 'touch', 'one', 'colleague', 'get', 'screen', 'shot', 'driver', 'access', 'also', 'onfiirm', 'drive', 'tried', 'mapping', 'drive', 'password', 'nogo', 'waiting', 'user', 'email'] list_processed_text: [['drive'], ['connecting'], ['drive'], ['connecting'], ['tried'], ['ip'], ['address'], ['go'], ['checked'], ['server'], ['name'], ['go'], ['user'], ['mentioned'], ['changed'], ['password'], ['vpn'], ['able'], ['connect'], ['drive'], ['rest'], ['driver'], ['working'], ['fine'], ['accessible'], ['informed'], ['user'], ['get'], ['touch'], ['one'], ['colleague'], ['get'], ['screen'], ['shot'], ['driver'], ['access'], ['also'], ['onfiirm'], ['drive'], ['tried'], ['mapping'], ['drive'], ['password'], ['nogo'], ['waiting'], ['user'], ['email']] k: 3368 len: <class 'list'> Data: ['support', 'hello', 'could', 'please', 'help', 'u', 'add', 'customer', 'engineering', 'tool', 'software', 'maquinados', 'de', 'precision', 'de', 'mex', 'magonza', 'sa', 'de', 'cv', 'evercast', 'de', 'v', 'tecnologia', 'en', 'maquinados', 'hidra', 'saludos', 'whoyizfp', 'gclnfkis', 'sr', 'sale', 'engineer'] processed_text: ['support', 'hello', 'could', 'please', 'help', 'u', 'add', 'customer', 'engineering', 'tool', 'software', 'maquinados', 'de', 'precision', 'de', 'mex', 'magonza', 'sa', 'de', 'cv', 'evercast', 'de', 'v', 'tecnologia', 'en', 'maquinados', 'hidra', 'saludos', 'whoyizfp', 'gclnfkis', 'sr', 'sale', 'engineer'] list_processed_text: [['support'], ['hello'], ['could'], ['please'], ['help'], ['u'], ['add'], ['customer'], ['engineering'], ['tool'], ['software'], ['maquinados'], ['de'], ['precision'], ['de'], ['mex'], ['magonza'], ['sa'], ['de'], ['cv'], ['evercast'], ['de'], ['v'], ['tecnologia'], ['en'], ['maquinados'], ['hidra'], ['saludos'], ['whoyizfp'], ['gclnfkis'], ['sr'], ['sale'], ['engineer']] k: 3369 len: <class 'list'> Data: ['locked', 'er', 'trying', 'add', 'change', 'item', 'er', 'get', 'error', 'listed', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com'] processed_text: ['locked', 'er', 'trying', 'add', 'change', 'item', 'er', 'get', 'error', 'listed', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company', 'company', 'inc', 'technology', 'way', 'usa', 'pa', 'www', 'company', 'com'] list_processed_text: [['locked'], ['er'], ['trying'], ['add'], ['change'], ['item'], ['er'], ['get'], ['error'], ['listed'], ['knethyen'], ['grechduy'], ['engineer'], ['product'], ['engineering'], ['company'], ['company'], ['inc'], ['technology'], ['way'], ['usa'], ['pa'], ['www'], ['company'], ['com']] k: 3370 len: <class 'list'> Data: ['problem', 'trs', 'hello', 'error', 'sending', 'trs', 'connected', 'vpn', 'help'] processed_text: ['problem', 'trs', 'hello', 'error', 'sending', 'trs', 'connected', 'vpn', 'help'] list_processed_text: [['problem'], ['trs'], ['hello'], ['error'], ['sending'], ['trs'], ['connected'], ['vpn'], ['help']] k: 3371 len: <class 'list'> Data: ['msd', 'crm', 'urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'problem', 'detail', 'set', 'regarding', 'calendar', 'item', 'account', 'show', 'assigned', 'crm', 'account', 'record', 'ph'] processed_text: ['msd', 'crm', 'urgent', 'help', 'required', 'outlook', 'crm', 'mfg', 'tooltion', 'issue', 'problem', 'detail', 'set', 'regarding', 'calendar', 'item', 'account', 'show', 'assigned', 'crm', 'account', 'record', 'ph'] list_processed_text: [['msd'], ['crm'], ['urgent'], ['help'], ['required'], ['outlook'], ['crm'], ['mfg'], ['tooltion'], ['issue'], ['problem'], ['detail'], ['set'], ['regarding'], ['calendar'], ['item'], ['account'], ['show'], ['assigned'], ['crm'], ['account'], ['record'], ['ph']] k: 3372 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 3373 len: <class 'list'> Data: ['skype', 'error', 'getting', 'skype', 'certificate', 'error', 'skype', 'error', 'getting', 'skype', 'certificate', 'error'] processed_text: ['skype', 'error', 'getting', 'skype', 'certificate', 'error', 'skype', 'error', 'getting', 'skype', 'certificate', 'error'] list_processed_text: [['skype'], ['error'], ['getting'], ['skype'], ['certificate'], ['error'], ['skype'], ['error'], ['getting'], ['skype'], ['certificate'], ['error']] k: 3374 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'erp', 'even', 'connecting', 'vpn', 'unable', 'connect', 'erp', 'module', 'even', 'connecting', 'vpn', 'logon', 'balancing', 'error', 'working', 'minute', 'back'] processed_text: ['logon', 'balancing', 'error', 'erp', 'even', 'connecting', 'vpn', 'unable', 'connect', 'erp', 'module', 'even', 'connecting', 'vpn', 'logon', 'balancing', 'error', 'working', 'minute', 'back'] list_processed_text: [['logon'], ['balancing'], ['error'], ['erp'], ['even'], ['connecting'], ['vpn'], ['unable'], ['connect'], ['erp'], ['module'], ['even'], ['connecting'], ['vpn'], ['logon'], ['balancing'], ['error'], ['working'], ['minute'], ['back']] k: 3375 len: <class 'list'> Data: ['infopath', 'issue', 'submit', 'discount', 'collaboration', 'platform', 'say', 'access', 'denied', 'must', 'add', 'favorite', 'happen'] processed_text: ['infopath', 'issue', 'submit', 'discount', 'collaboration', 'platform', 'say', 'access', 'denied', 'must', 'add', 'favorite', 'happen'] list_processed_text: [['infopath'], ['issue'], ['submit'], ['discount'], ['collaboration'], ['platform'], ['say'], ['access'], ['denied'], ['must'], ['add'], ['favorite'], ['happen']] k: 3376 len: <class 'list'> Data: ['unable', 'connect', 'mobile', 'broadband', 'unable', 'connect', 'mobile', 'broadband'] processed_text: ['unable', 'connect', 'mobile', 'broadband', 'unable', 'connect', 'mobile', 'broadband'] list_processed_text: [['unable'], ['connect'], ['mobile'], ['broadband'], ['unable'], ['connect'], ['mobile'], ['broadband']] k: 3377 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3378 len: <class 'list'> Data: ['interface', 'fastethernet', 'company', 'johthryugftyson', 'city', 'ap', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'company', 'johthryugftyson', 'city', 'ap', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw', 'company', 'com', 'since', 'et', 'logged', 'switch', 'found', 'interface', 'edt', 'lineproto', 'updown', 'line', 'protocol', 'interface', 'fastethernet', 'changed', 'state', 'edt', 'link', 'updown', 'interface', 'fastethernet', 'changed', 'state', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw'] processed_text: ['interface', 'fastethernet', 'company', 'johthryugftyson', 'city', 'ap', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'company', 'johthryugftyson', 'city', 'ap', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw', 'company', 'com', 'since', 'et', 'logged', 'switch', 'found', 'interface', 'edt', 'lineproto', 'updown', 'line', 'protocol', 'interface', 'fastethernet', 'changed', 'state', 'edt', 'link', 'updown', 'interface', 'fastethernet', 'changed', 'state', 'company', 'na', 'usa', 'johthryugftyson', 'city', 'access', 'sw'] list_processed_text: [['interface'], ['fastethernet'], ['company'], ['johthryugftyson'], ['city'], ['ap'], ['company'], ['na'], ['usa'], ['johthryugftyson'], ['city'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['company'], ['johthryugftyson'], ['city'], ['ap'], ['company'], ['na'], ['usa'], ['johthryugftyson'], ['city'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['et'], ['logged'], ['switch'], ['found'], ['interface'], ['edt'], ['lineproto'], ['updown'], ['line'], ['protocol'], ['interface'], ['fastethernet'], ['changed'], ['state'], ['edt'], ['link'], ['updown'], ['interface'], ['fastethernet'], ['changed'], ['state'], ['company'], ['na'], ['usa'], ['johthryugftyson'], ['city'], ['access'], ['sw']] k: 3379 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3380 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3381 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3382 len: <class 'list'> Data: ['audio', 'issue', 'dell', 'name', 'ksgytjqr', 'ojdukgzc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'volume', 'high', 'enough', 'fine', 'yesterday', 'high', 'enough', 'conference', 'call'] processed_text: ['audio', 'issue', 'dell', 'name', 'ksgytjqr', 'ojdukgzc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'volume', 'high', 'enough', 'fine', 'yesterday', 'high', 'enough', 'conference', 'call'] list_processed_text: [['audio'], ['issue'], ['dell'], ['name'], ['ksgytjqr'], ['ojdukgzc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['get'], ['volume'], ['high'], ['enough'], ['fine'], ['yesterday'], ['high'], ['enough'], ['conference'], ['call']] k: 3383 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3384 len: <class 'list'> Data: ['performance', 'speed', 'issue', 'mii', 'order', 'took', 'minute', 'batch', 'one', 'work', 'center', 'bucket', 'next', 'order', 'operation', 'operation', 'happened', 'multiple', 'order', 'well'] processed_text: ['performance', 'speed', 'issue', 'mii', 'order', 'took', 'minute', 'batch', 'one', 'work', 'center', 'bucket', 'next', 'order', 'operation', 'operation', 'happened', 'multiple', 'order', 'well'] list_processed_text: [['performance'], ['speed'], ['issue'], ['mii'], ['order'], ['took'], ['minute'], ['batch'], ['one'], ['work'], ['center'], ['bucket'], ['next'], ['order'], ['operation'], ['operation'], ['happened'], ['multiple'], ['order'], ['well']] k: 3385 len: <class 'list'> Data: ['outlook', 'error', 'hi', 'able', 'get', 'outlook', 'keep', 'getting', 'message', 'telling', 'stopped', 'working', 'want', 'restart', 'safe', 'mode', 'repair', 'send', 'phone'] processed_text: ['outlook', 'error', 'hi', 'able', 'get', 'outlook', 'keep', 'getting', 'message', 'telling', 'stopped', 'working', 'want', 'restart', 'safe', 'mode', 'repair', 'send', 'phone'] list_processed_text: [['outlook'], ['error'], ['hi'], ['able'], ['get'], ['outlook'], ['keep'], ['getting'], ['message'], ['telling'], ['stopped'], ['working'], ['want'], ['restart'], ['safe'], ['mode'], ['repair'], ['send'], ['phone']] k: 3386 len: <class 'list'> Data: ['need', 'password', 'management', 'tool', 'link', 'need', 'password', 'management', 'tool', 'link'] processed_text: ['need', 'password', 'management', 'tool', 'link', 'need', 'password', 'management', 'tool', 'link'] list_processed_text: [['need'], ['password'], ['management'], ['tool'], ['link'], ['need'], ['password'], ['management'], ['tool'], ['link']] k: 3387 len: <class 'list'> Data: ['unable', 'connect', 'tc', 'unable', 'connect', 'tc'] processed_text: ['unable', 'connect', 'tc', 'unable', 'connect', 'tc'] list_processed_text: [['unable'], ['connect'], ['tc'], ['unable'], ['connect'], ['tc']] k: 3388 len: <class 'list'> Data: ['usa', 'village', 'clappdico', 'company', 'na', 'usa', 'clappdico', 'wireless', 'access', 'sw', 'since', 'et', 'usa', 'village', 'clappdico', 'company', 'na', 'usa', 'clappdico', 'wireless', 'access', 'sw', 'since', 'et', 'gigabitethernet', 'connection', 'clappdico', 'wireless', 'switch', 'company', 'na', 'usa', 'clappdico', 'access', 'sw'] processed_text: ['usa', 'village', 'clappdico', 'company', 'na', 'usa', 'clappdico', 'wireless', 'access', 'sw', 'since', 'et', 'usa', 'village', 'clappdico', 'company', 'na', 'usa', 'clappdico', 'wireless', 'access', 'sw', 'since', 'et', 'gigabitethernet', 'connection', 'clappdico', 'wireless', 'switch', 'company', 'na', 'usa', 'clappdico', 'access', 'sw'] list_processed_text: [['usa'], ['village'], ['clappdico'], ['company'], ['na'], ['usa'], ['clappdico'], ['wireless'], ['access'], ['sw'], ['since'], ['et'], ['usa'], ['village'], ['clappdico'], ['company'], ['na'], ['usa'], ['clappdico'], ['wireless'], ['access'], ['sw'], ['since'], ['et'], ['gigabitethernet'], ['connection'], ['clappdico'], ['wireless'], ['switch'], ['company'], ['na'], ['usa'], ['clappdico'], ['access'], ['sw']] k: 3389 len: <class 'list'> Data: ['internet', 'explorer', 'issue', 'internet', 'explorer', 'issue'] processed_text: ['internet', 'explorer', 'issue', 'internet', 'explorer', 'issue'] list_processed_text: [['internet'], ['explorer'], ['issue'], ['internet'], ['explorer'], ['issue']] k: 3390 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 3391 len: <class 'list'> Data: ['reset', 'password', 'oweklxnm', 'ubayizsq', 'window', 'login', 'try', 'change', 'log', 'password', 'system', 'keep', 'stating', 'old', 'password', 'correct', 'disagree', 'tried', 'many', 'time', 'careful', 'know', 'typed', 'old', 'password', 'correctly'] processed_text: ['reset', 'password', 'oweklxnm', 'ubayizsq', 'window', 'login', 'try', 'change', 'log', 'password', 'system', 'keep', 'stating', 'old', 'password', 'correct', 'disagree', 'tried', 'many', 'time', 'careful', 'know', 'typed', 'old', 'password', 'correctly'] list_processed_text: [['reset'], ['password'], ['oweklxnm'], ['ubayizsq'], ['window'], ['login'], ['try'], ['change'], ['log'], ['password'], ['system'], ['keep'], ['stating'], ['old'], ['password'], ['correct'], ['disagree'], ['tried'], ['many'], ['time'], ['careful'], ['know'], ['typed'], ['old'], ['password'], ['correctly']] k: 3392 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 3393 len: <class 'list'> Data: ['please', 'unlock', 'tpfghtlugn', 'erp', 'hana', 'sid', 'reset', 'password', 'please', 'unlock', 'tpfghtlugn', 'erp', 'hana', 'sid', 'reset', 'password'] processed_text: ['please', 'unlock', 'tpfghtlugn', 'erp', 'hana', 'sid', 'reset', 'password', 'please', 'unlock', 'tpfghtlugn', 'erp', 'hana', 'sid', 'reset', 'password'] list_processed_text: [['please'], ['unlock'], ['tpfghtlugn'], ['erp'], ['hana'], ['sid'], ['reset'], ['password'], ['please'], ['unlock'], ['tpfghtlugn'], ['erp'], ['hana'], ['sid'], ['reset'], ['password']] k: 3394 len: <class 'list'> Data: ['ksfs', 'company', 'company', 'com', 'reporting', 'status', 'hostname', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'ksfs', 'company', 'company', 'com', 'reporting', 'status', 'hostname', 'please', 'investigate', 'cpu', 'load', 'showing'] processed_text: ['ksfs', 'company', 'company', 'com', 'reporting', 'status', 'hostname', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'ksfs', 'company', 'company', 'com', 'reporting', 'status', 'hostname', 'please', 'investigate', 'cpu', 'load', 'showing'] list_processed_text: [['ksfs'], ['company'], ['company'], ['com'], ['reporting'], ['status'], ['hostname'], ['please'], ['investigate'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['et'], ['ksfs'], ['company'], ['company'], ['com'], ['reporting'], ['status'], ['hostname'], ['please'], ['investigate'], ['cpu'], ['load'], ['showing']] k: 3395 len: <class 'list'> Data: ['crm', 'mobile', 'phone', 'good', 'morning', 'crm', 'mobile', 'device', 'work', 'please', 'see', 'screen', 'shot', 'wghjkftewj', 'cid', 'dbfc', 'ed', 'e', 'de'] processed_text: ['crm', 'mobile', 'phone', 'good', 'morning', 'crm', 'mobile', 'device', 'work', 'please', 'see', 'screen', 'shot', 'wghjkftewj', 'cid', 'dbfc', 'ed', 'e', 'de'] list_processed_text: [['crm'], ['mobile'], ['phone'], ['good'], ['morning'], ['crm'], ['mobile'], ['device'], ['work'], ['please'], ['see'], ['screen'], ['shot'], ['wghjkftewj'], ['cid'], ['dbfc'], ['ed'], ['e'], ['de']] k: 3396 len: <class 'list'> Data: ['unable', 'get', 'email', 'synced', 'samsung', 'mobile', 'device', 'unable', 'get', 'email', 'synced', 'samsung', 'mobile', 'device'] processed_text: ['unable', 'get', 'email', 'synced', 'samsung', 'mobile', 'device', 'unable', 'get', 'email', 'synced', 'samsung', 'mobile', 'device'] list_processed_text: [['unable'], ['get'], ['email'], ['synced'], ['samsung'], ['mobile'], ['device'], ['unable'], ['get'], ['email'], ['synced'], ['samsung'], ['mobile'], ['device']] k: 3397 len: <class 'list'> Data: ['password', 'reset', 'ad', 'password', 'reset', 'ad'] processed_text: ['password', 'reset', 'ad', 'password', 'reset', 'ad'] list_processed_text: [['password'], ['reset'], ['ad'], ['password'], ['reset'], ['ad']] k: 3398 len: <class 'list'> Data: ['user', 'unable', 'connect', 'machine', 'shop', 'floor', 'user', 'unable', 'connect', 'machine', 'shop', 'floor', 'machine', 'name', 'mazak', 'contact', 'n'] processed_text: ['user', 'unable', 'connect', 'machine', 'shop', 'floor', 'user', 'unable', 'connect', 'machine', 'shop', 'floor', 'machine', 'name', 'mazak', 'contact', 'n'] list_processed_text: [['user'], ['unable'], ['connect'], ['machine'], ['shop'], ['floor'], ['user'], ['unable'], ['connect'], ['machine'], ['shop'], ['floor'], ['machine'], ['name'], ['mazak'], ['contact'], ['n']] k: 3399 len: <class 'list'> Data: ['pm', 'tool', 'sd', 'missing', 'currency', 'table', 'pm', 'tool', 'sd', 'prod', 'jurten', 'setgyrt', 'stefyty', 'parkeyhrt', 'qikvnjzc', 'evmrcqug', 'aw', 'pm', 'tool', 'sd', 'missing', 'currency', 'table', 'pm', 'tool', 'sd', 'prod', 'hello', 'stefyty', 'progress', 'topic', 'running', 'trouble', 'send', 'two', 'proposal', 'cannot', 'missing', 'pricing', 'best'] processed_text: ['pm', 'tool', 'sd', 'missing', 'currency', 'table', 'pm', 'tool', 'sd', 'prod', 'jurten', 'setgyrt', 'stefyty', 'parkeyhrt', 'qikvnjzc', 'evmrcqug', 'aw', 'pm', 'tool', 'sd', 'missing', 'currency', 'table', 'pm', 'tool', 'sd', 'prod', 'hello', 'stefyty', 'progress', 'topic', 'running', 'trouble', 'send', 'two', 'proposal', 'cannot', 'missing', 'pricing', 'best'] list_processed_text: [['pm'], ['tool'], ['sd'], ['missing'], ['currency'], ['table'], ['pm'], ['tool'], ['sd'], ['prod'], ['jurten'], ['setgyrt'], ['stefyty'], ['parkeyhrt'], ['qikvnjzc'], ['evmrcqug'], ['aw'], ['pm'], ['tool'], ['sd'], ['missing'], ['currency'], ['table'], ['pm'], ['tool'], ['sd'], ['prod'], ['hello'], ['stefyty'], ['progress'], ['topic'], ['running'], ['trouble'], ['send'], ['two'], ['proposal'], ['cannot'], ['missing'], ['pricing'], ['best']] k: 3400 len: <class 'list'> Data: ['office', 'reinstall', 'office', 'reinstall'] processed_text: ['office', 'reinstall', 'office', 'reinstall'] list_processed_text: [['office'], ['reinstall'], ['office'], ['reinstall']] k: 3401 len: <class 'list'> Data: ['need', 'little', 'help', 'please', 'lunjuws', 'recall', 'new', 'form', 'developed', 'tmb', 'project', 'specially', 'per', 'bakyhrer', 'huhuyghes', 'requirement', 'please', 'print', 'email', 'unless', 'really', 'need', 'preserve', 'tree', 'planet', 'earth', 'smxoklny', 'hbecskgl', 'damuphws', 'arkulcoi', 'le', 'need', 'little', 'help', 'please', 'hcytr', 'format', 'one', 'bakyhrer', 'huhuyghes', 'required', 'bin', 'number', 'delivery', 'note', 'shathyra', 'aware', 'special', 'requirement', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'forgot', 'hcytr', 'mentioned', 'best'] processed_text: ['need', 'little', 'help', 'please', 'lunjuws', 'recall', 'new', 'form', 'developed', 'tmb', 'project', 'specially', 'per', 'bakyhrer', 'huhuyghes', 'requirement', 'please', 'print', 'email', 'unless', 'really', 'need', 'preserve', 'tree', 'planet', 'earth', 'smxoklny', 'hbecskgl', 'damuphws', 'arkulcoi', 'le', 'need', 'little', 'help', 'please', 'hcytr', 'format', 'one', 'bakyhrer', 'huhuyghes', 'required', 'bin', 'number', 'delivery', 'note', 'shathyra', 'aware', 'special', 'requirement', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'forgot', 'hcytr', 'mentioned', 'best'] list_processed_text: [['need'], ['little'], ['help'], ['please'], ['lunjuws'], ['recall'], ['new'], ['form'], ['developed'], ['tmb'], ['project'], ['specially'], ['per'], ['bakyhrer'], ['huhuyghes'], ['requirement'], ['please'], ['print'], ['email'], ['unless'], ['really'], ['need'], ['preserve'], ['tree'], ['planet'], ['earth'], ['smxoklny'], ['hbecskgl'], ['damuphws'], ['arkulcoi'], ['le'], ['need'], ['little'], ['help'], ['please'], ['hcytr'], ['format'], ['one'], ['bakyhrer'], ['huhuyghes'], ['required'], ['bin'], ['number'], ['delivery'], ['note'], ['shathyra'], ['aware'], ['special'], ['requirement'], ['bakyhrer'], ['huhuyghes'], ['delivery'], ['note'], ['forgot'], ['hcytr'], ['mentioned'], ['best']] k: 3402 len: <class 'list'> Data: ['need', 'little', 'help', 'please', 'chanthrydru', 'format', 'one', 'bakyhrer', 'huhuyghes', 'required', 'bin', 'number', 'delivery', 'note', 'shathyra', 'aware', 'special', 'requirement', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'forgot', 'chanthrydru', 'mentioned', 'best'] processed_text: ['need', 'little', 'help', 'please', 'chanthrydru', 'format', 'one', 'bakyhrer', 'huhuyghes', 'required', 'bin', 'number', 'delivery', 'note', 'shathyra', 'aware', 'special', 'requirement', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'forgot', 'chanthrydru', 'mentioned', 'best'] list_processed_text: [['need'], ['little'], ['help'], ['please'], ['chanthrydru'], ['format'], ['one'], ['bakyhrer'], ['huhuyghes'], ['required'], ['bin'], ['number'], ['delivery'], ['note'], ['shathyra'], ['aware'], ['special'], ['requirement'], ['bakyhrer'], ['huhuyghes'], ['delivery'], ['note'], ['forgot'], ['chanthrydru'], ['mentioned'], ['best']] k: 3403 len: <class 'list'> Data: ['please', 'include', 'purchase', 'group', 'pr', 'po', 'analysis', 'please', 'include', 'field', 'enter', 'aqzz', 'erpquery', 'memepr'] processed_text: ['please', 'include', 'purchase', 'group', 'pr', 'po', 'analysis', 'please', 'include', 'field', 'enter', 'aqzz', 'erpquery', 'memepr'] list_processed_text: [['please'], ['include'], ['purchase'], ['group'], ['pr'], ['po'], ['analysis'], ['please'], ['include'], ['field'], ['enter'], ['aqzz'], ['erpquery'], ['memepr']] k: 3404 len: <class 'list'> Data: ['xerox', 'office', 'turn', 'power', 'outlet', 'plugged', 'good', 'xerox', 'office', 'turn', 'power', 'outlet', 'plugged', 'good'] processed_text: ['xerox', 'office', 'turn', 'power', 'outlet', 'plugged', 'good', 'xerox', 'office', 'turn', 'power', 'outlet', 'plugged', 'good'] list_processed_text: [['xerox'], ['office'], ['turn'], ['power'], ['outlet'], ['plugged'], ['good'], ['xerox'], ['office'], ['turn'], ['power'], ['outlet'], ['plugged'], ['good']] k: 3405 len: <class 'list'> Data: ['computer', 'ewewx', 'olympus', 'access', 'hostname', 'eu', 'tool', 'like', 'computer', 'ewewx', 'olympus', 'access', 'hostname', 'eu', 'tool', 'like'] processed_text: ['computer', 'ewewx', 'olympus', 'access', 'hostname', 'eu', 'tool', 'like', 'computer', 'ewewx', 'olympus', 'access', 'hostname', 'eu', 'tool', 'like'] list_processed_text: [['computer'], ['ewewx'], ['olympus'], ['access'], ['hostname'], ['eu'], ['tool'], ['like'], ['computer'], ['ewewx'], ['olympus'], ['access'], ['hostname'], ['eu'], ['tool'], ['like']] k: 3406 len: <class 'list'> Data: ['printer', 'working', 'dear', 'sir', 'printer', 'msg', 'second', 'floor', 'awyrthysm', 'file', 'awyrthysm', 'working', 'please', 'rectify', 'problem', 'immediately'] processed_text: ['printer', 'working', 'dear', 'sir', 'printer', 'msg', 'second', 'floor', 'awyrthysm', 'file', 'awyrthysm', 'working', 'please', 'rectify', 'problem', 'immediately'] list_processed_text: [['printer'], ['working'], ['dear'], ['sir'], ['printer'], ['msg'], ['second'], ['floor'], ['awyrthysm'], ['file'], ['awyrthysm'], ['working'], ['please'], ['rectify'], ['problem'], ['immediately']] k: 3407 len: <class 'list'> Data: ['m', 'outlook', 'doens', 'start', 'hello', 'many', 'time', 'system', 'password', 'change', 'm', 'outlook', 'doens', 'start', 'attached', 'printscreen', 'best'] processed_text: ['m', 'outlook', 'doens', 'start', 'hello', 'many', 'time', 'system', 'password', 'change', 'm', 'outlook', 'doens', 'start', 'attached', 'printscreen', 'best'] list_processed_text: [['m'], ['outlook'], ['doens'], ['start'], ['hello'], ['many'], ['time'], ['system'], ['password'], ['change'], ['m'], ['outlook'], ['doens'], ['start'], ['attached'], ['printscreen'], ['best']] k: 3408 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3409 len: <class 'list'> Data: ['co', 'account', 'assignment', 'different', 'profit', 'center', 'rzucjgvp', 'ioqjgmah', 'pm', 'subgtybaryuao', 'h', 'nyifqpmv', 'kfirxjag', 'erro', 'log', 'reg', 'hi', 'sutyu', 'seems', 'related', 'co', 'issue', 'requesting', 'co', 'person', 'look', 'issue', 'hi', 'ramdntyassthywamy', 'please', 'help', 'mr', 'subgtybaryuao'] processed_text: ['co', 'account', 'assignment', 'different', 'profit', 'center', 'rzucjgvp', 'ioqjgmah', 'pm', 'subgtybaryuao', 'h', 'nyifqpmv', 'kfirxjag', 'erro', 'log', 'reg', 'hi', 'sutyu', 'seems', 'related', 'co', 'issue', 'requesting', 'co', 'person', 'look', 'issue', 'hi', 'ramdntyassthywamy', 'please', 'help', 'mr', 'subgtybaryuao'] list_processed_text: [['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['rzucjgvp'], ['ioqjgmah'], ['pm'], ['subgtybaryuao'], ['h'], ['nyifqpmv'], ['kfirxjag'], ['erro'], ['log'], ['reg'], ['hi'], ['sutyu'], ['seems'], ['related'], ['co'], ['issue'], ['requesting'], ['co'], ['person'], ['look'], ['issue'], ['hi'], ['ramdntyassthywamy'], ['please'], ['help'], ['mr'], ['subgtybaryuao']] k: 3410 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'magerjtyhd', 'yadavtghya', 'schgtewmik', 'transaction', 'code', 'user', 'need', 'working', 'zcopc', 'describe', 'issue', 'please', 'remove', 'plant', 'controller', 'role', 'three', 'user', 'discussed', 'uylvgtfi', 'eovkxgpn', 'obdphylz', 'qaeicrkz', 'need', 'access', 'zcopc', 'qbjmoihg', 'nbgvyqac', 'need', 'would', 'prefer', 'could', 'assign', 'role', 'co', 'team', 'view', 'instead', 'plant', 'controller', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'magerjtyhd', 'yadavtghya', 'schgtewmik', 'transaction', 'code', 'user', 'need', 'working', 'zcopc', 'describe', 'issue', 'please', 'remove', 'plant', 'controller', 'role', 'three', 'user', 'discussed', 'uylvgtfi', 'eovkxgpn', 'obdphylz', 'qaeicrkz', 'need', 'access', 'zcopc', 'qbjmoihg', 'nbgvyqac', 'need', 'would', 'prefer', 'could', 'assign', 'role', 'co', 'team', 'view', 'instead', 'plant', 'controller', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['magerjtyhd'], ['yadavtghya'], ['schgtewmik'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['zcopc'], ['describe'], ['issue'], ['please'], ['remove'], ['plant'], ['controller'], ['role'], ['three'], ['user'], ['discussed'], ['uylvgtfi'], ['eovkxgpn'], ['obdphylz'], ['qaeicrkz'], ['need'], ['access'], ['zcopc'], ['qbjmoihg'], ['nbgvyqac'], ['need'], ['would'], ['prefer'], ['could'], ['assign'], ['role'], ['co'], ['team'], ['view'], ['instead'], ['plant'], ['controller'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 3411 len: <class 'list'> Data: ['install', 'eu', 'tool', 'und', 'bls', 'rechner', 'olympus', 'xwirzvda', 'okhyipgr', 'install', 'eu', 'tool', 'und', 'bls', 'rechner', 'olympus', 'xwirzvda', 'okhyipgr'] processed_text: ['install', 'eu', 'tool', 'und', 'bls', 'rechner', 'olympus', 'xwirzvda', 'okhyipgr', 'install', 'eu', 'tool', 'und', 'bls', 'rechner', 'olympus', 'xwirzvda', 'okhyipgr'] list_processed_text: [['install'], ['eu'], ['tool'], ['und'], ['bls'], ['rechner'], ['olympus'], ['xwirzvda'], ['okhyipgr'], ['install'], ['eu'], ['tool'], ['und'], ['bls'], ['rechner'], ['olympus'], ['xwirzvda'], ['okhyipgr']] k: 3412 len: <class 'list'> Data: ['set', 'write', 'read', 'authorization', 'staebefertigung', 'line', 'folder', 'hello', 'please', 'write', 'read', 'authorization', 'r', 'user', 'maerza', 'folder', 'staebefertigung', 'line', 'set', 'thank'] processed_text: ['set', 'write', 'read', 'authorization', 'staebefertigung', 'line', 'folder', 'hello', 'please', 'write', 'read', 'authorization', 'r', 'user', 'maerza', 'folder', 'staebefertigung', 'line', 'set', 'thank'] list_processed_text: [['set'], ['write'], ['read'], ['authorization'], ['staebefertigung'], ['line'], ['folder'], ['hello'], ['please'], ['write'], ['read'], ['authorization'], ['r'], ['user'], ['maerza'], ['folder'], ['staebefertigung'], ['line'], ['set'], ['thank']] k: 3413 len: <class 'list'> Data: ['dd', 'ds'] processed_text: ['dd', 'ds'] list_processed_text: [['dd'], ['ds']] k: 3414 len: <class 'list'> Data: ['info', 'type', 'missing', 'personal', 'number', 'fbgetczn', 'jlsvxura', 'nyifqpmv', 'kfirxjag', 'wjkzgyxh', 'pktcqbxu', 'aw', 'unterhaltung', 'mit', 'nyifqpmv', 'kfirxjag', 'hello', 'hr', 'ramdntyassthywamy', 'sebfghkasthian', 'asked', 'send', 'attached', 'screen', 'shot', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['info', 'type', 'missing', 'personal', 'number', 'fbgetczn', 'jlsvxura', 'nyifqpmv', 'kfirxjag', 'wjkzgyxh', 'pktcqbxu', 'aw', 'unterhaltung', 'mit', 'nyifqpmv', 'kfirxjag', 'hello', 'hr', 'ramdntyassthywamy', 'sebfghkasthian', 'asked', 'send', 'attached', 'screen', 'shot', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['info'], ['type'], ['missing'], ['personal'], ['number'], ['fbgetczn'], ['jlsvxura'], ['nyifqpmv'], ['kfirxjag'], ['wjkzgyxh'], ['pktcqbxu'], ['aw'], ['unterhaltung'], ['mit'], ['nyifqpmv'], ['kfirxjag'], ['hello'], ['hr'], ['ramdntyassthywamy'], ['sebfghkasthian'], ['asked'], ['send'], ['attached'], ['screen'], ['shot'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 3415 len: <class 'list'> Data: ['request', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'good', 'day', 'jfhytu', 'mthyuleng', 'senior', 'buyer', 'company', 'anniversary', 'logo'] processed_text: ['request', 'access', 'sid', 'uacyltoe', 'hxgaycze', 'good', 'day', 'jfhytu', 'mthyuleng', 'senior', 'buyer', 'company', 'anniversary', 'logo'] list_processed_text: [['request'], ['access'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['good'], ['day'], ['jfhytu'], ['mthyuleng'], ['senior'], ['buyer'], ['company'], ['anniversary'], ['logo']] k: 3416 len: <class 'list'> Data: ['setup', 'new', 'w', 'ewew', 'jionmpsf', 'wnkpzcmv', 'setup', 'new', 'w', 'ewew', 'jionmpsf', 'wnkpzcmv'] processed_text: ['setup', 'new', 'w', 'ewew', 'jionmpsf', 'wnkpzcmv', 'setup', 'new', 'w', 'ewew', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['setup'], ['new'], ['w'], ['ewew'], ['jionmpsf'], ['wnkpzcmv'], ['setup'], ['new'], ['w'], ['ewew'], ['jionmpsf'], ['wnkpzcmv']] k: 3417 len: <class 'list'> Data: ['set', 'cvd', 'printer', 'pc', 'q', 'set', 'cvd', 'printer', 'pc', 'q'] processed_text: ['set', 'cvd', 'printer', 'pc', 'q', 'set', 'cvd', 'printer', 'pc', 'q'] list_processed_text: [['set'], ['cvd'], ['printer'], ['pc'], ['q'], ['set'], ['cvd'], ['printer'], ['pc'], ['q']] k: 3418 len: <class 'list'> Data: ['outlook', 'issue', 'hello', 'help', 'outlook', 'getting', 'updated', 'automatically', 'periodically', 'time', 'time', 'need', 'update', 'send', 'receive', 'folder', 'issue', 'persists', 'since', 'last', 'sep', 'system', 'given', 'dept', 'improvement'] processed_text: ['outlook', 'issue', 'hello', 'help', 'outlook', 'getting', 'updated', 'automatically', 'periodically', 'time', 'time', 'need', 'update', 'send', 'receive', 'folder', 'issue', 'persists', 'since', 'last', 'sep', 'system', 'given', 'dept', 'improvement'] list_processed_text: [['outlook'], ['issue'], ['hello'], ['help'], ['outlook'], ['getting'], ['updated'], ['automatically'], ['periodically'], ['time'], ['time'], ['need'], ['update'], ['send'], ['receive'], ['folder'], ['issue'], ['persists'], ['since'], ['last'], ['sep'], ['system'], ['given'], ['dept'], ['improvement']] k: 3419 len: <class 'list'> Data: ['probleme', 'mit', 'collaboration', 'platform', 'infopath', 'difozlav', 'dgbfptos', 'probleme', 'mit', 'collaboration', 'platform', 'infopath', 'difozlav', 'dgbfptos'] processed_text: ['probleme', 'mit', 'collaboration', 'platform', 'infopath', 'difozlav', 'dgbfptos', 'probleme', 'mit', 'collaboration', 'platform', 'infopath', 'difozlav', 'dgbfptos'] list_processed_text: [['probleme'], ['mit'], ['collaboration'], ['platform'], ['infopath'], ['difozlav'], ['dgbfptos'], ['probleme'], ['mit'], ['collaboration'], ['platform'], ['infopath'], ['difozlav'], ['dgbfptos']] k: 3420 len: <class 'list'> Data: ['erp', 'pur', 'wrong', 'subcontracting', 'demand', 'material', 'hello', 'component', 'see', 'wrong', 'subcontracting', 'demand', 'erp', 'coming', 'parent', 'strange', 'thing', 'po', 'referenced', 'subcontracting', 'po', 'need', 'understand', 'going', 'wrong', 'need', 'remove', 'incorrect', 'demand'] processed_text: ['erp', 'pur', 'wrong', 'subcontracting', 'demand', 'material', 'hello', 'component', 'see', 'wrong', 'subcontracting', 'demand', 'erp', 'coming', 'parent', 'strange', 'thing', 'po', 'referenced', 'subcontracting', 'po', 'need', 'understand', 'going', 'wrong', 'need', 'remove', 'incorrect', 'demand'] list_processed_text: [['erp'], ['pur'], ['wrong'], ['subcontracting'], ['demand'], ['material'], ['hello'], ['component'], ['see'], ['wrong'], ['subcontracting'], ['demand'], ['erp'], ['coming'], ['parent'], ['strange'], ['thing'], ['po'], ['referenced'], ['subcontracting'], ['po'], ['need'], ['understand'], ['going'], ['wrong'], ['need'], ['remove'], ['incorrect'], ['demand']] k: 3421 len: <class 'list'> Data: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'dat', 'hostname', 'data', 'efce', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'dat', 'hostname', 'data', 'efce', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['volume'], ['label'], ['dat'], ['hostname'], ['data'], ['efce'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 3422 len: <class 'list'> Data: ['owa', 'open', 'owa', 'open', 'error', 'page', 'displayed'] processed_text: ['owa', 'open', 'owa', 'open', 'error', 'page', 'displayed'] list_processed_text: [['owa'], ['open'], ['owa'], ['open'], ['error'], ['page'], ['displayed']] k: 3423 len: <class 'list'> Data: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'sys', 'hostname', 'ab', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'sys', 'hostname', 'ab', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 3424 len: <class 'list'> Data: ['user', 'tempuser', 'changed', 'layout', 'fb', 'default', 'setting', 'everyone', 'erp', 'sid', 'finance', 'user', 'tempuser', 'changed', 'layout', 'fb', 'jinf', 'default', 'setting', 'everyone', 'tried', 'figure', 'layout', 'default', 'chosen', 'erp', 'know', 'exactly', 'really', 'default', 'happens', 'time', 'time', 'user', 'aware', 'set', 'default', 'everyone'] processed_text: ['user', 'tempuser', 'changed', 'layout', 'fb', 'default', 'setting', 'everyone', 'erp', 'sid', 'finance', 'user', 'tempuser', 'changed', 'layout', 'fb', 'jinf', 'default', 'setting', 'everyone', 'tried', 'figure', 'layout', 'default', 'chosen', 'erp', 'know', 'exactly', 'really', 'default', 'happens', 'time', 'time', 'user', 'aware', 'set', 'default', 'everyone'] list_processed_text: [['user'], ['tempuser'], ['changed'], ['layout'], ['fb'], ['default'], ['setting'], ['everyone'], ['erp'], ['sid'], ['finance'], ['user'], ['tempuser'], ['changed'], ['layout'], ['fb'], ['jinf'], ['default'], ['setting'], ['everyone'], ['tried'], ['figure'], ['layout'], ['default'], ['chosen'], ['erp'], ['know'], ['exactly'], ['really'], ['default'], ['happens'], ['time'], ['time'], ['user'], ['aware'], ['set'], ['default'], ['everyone']] k: 3425 len: <class 'list'> Data: ['network', 'connection', 'r', 'computer', 'vhw', 'please', 'establish', 'network', 'connection', 'r', 'computer', 'vhw', 'alicona', 'measuring', 'room', 'c', 'hall'] processed_text: ['network', 'connection', 'r', 'computer', 'vhw', 'please', 'establish', 'network', 'connection', 'r', 'computer', 'vhw', 'alicona', 'measuring', 'room', 'c', 'hall'] list_processed_text: [['network'], ['connection'], ['r'], ['computer'], ['vhw'], ['please'], ['establish'], ['network'], ['connection'], ['r'], ['computer'], ['vhw'], ['alicona'], ['measuring'], ['room'], ['c'], ['hall']] k: 3426 len: <class 'list'> Data: ['appreciate', 'hub', 'password', 'hello', 'please', 'reset', 'appreciate', 'hub', 'password'] processed_text: ['appreciate', 'hub', 'password', 'hello', 'please', 'reset', 'appreciate', 'hub', 'password'] list_processed_text: [['appreciate'], ['hub'], ['password'], ['hello'], ['please'], ['reset'], ['appreciate'], ['hub'], ['password']] k: 3427 len: <class 'list'> Data: ['account', 'helftgyldt', 'blocked', 'registration', 'account', 'helftgyldt', 'look', 'like', 'error', 'message.', 'account', 'addressed', 'currently', 'blocked', 'cannot', 'used', 'registration'] processed_text: ['account', 'helftgyldt', 'blocked', 'registration', 'account', 'helftgyldt', 'look', 'like', 'error', 'message.', 'account', 'addressed', 'currently', 'blocked', 'cannot', 'used', 'registration'] list_processed_text: [['account'], ['helftgyldt'], ['blocked'], ['registration'], ['account'], ['helftgyldt'], ['look'], ['like'], ['error'], ['message.'], ['account'], ['addressed'], ['currently'], ['blocked'], ['cannot'], ['used'], ['registration']] k: 3428 len: <class 'list'> Data: ['reset', 'password', 'qoybxkfh', 'dwcmxuea', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qoybxkfh', 'dwcmxuea', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qoybxkfh'], ['dwcmxuea'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 3429 len: <class 'list'> Data: ['outlook', 'take', 'much', 'time', 'open', 'outlook', 'take', 'much', 'time', 'open'] processed_text: ['outlook', 'take', 'much', 'time', 'open', 'outlook', 'take', 'much', 'time', 'open'] list_processed_text: [['outlook'], ['take'], ['much'], ['time'], ['open'], ['outlook'], ['take'], ['much'], ['time'], ['open']] k: 3430 len: <class 'list'> Data: ['unable', 'change', 'password', 'password', 'management', 'tool', 'unable', 'change', 'password', 'password', 'management', 'tool'] processed_text: ['unable', 'change', 'password', 'password', 'management', 'tool', 'unable', 'change', 'password', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['change'], ['password'], ['password'], ['management'], ['tool']] k: 3431 len: <class 'list'> Data: ['account', 'jncvkrzm', 'thjquiyl', 'blocked', 'registration', 'account', 'jncvkrzm', 'thjquiyl', 'equal', 'error', 'message', 'account', 'addressed', 'currently', 'blocked', 'cannot', 'used', 'registration'] processed_text: ['account', 'jncvkrzm', 'thjquiyl', 'blocked', 'registration', 'account', 'jncvkrzm', 'thjquiyl', 'equal', 'error', 'message', 'account', 'addressed', 'currently', 'blocked', 'cannot', 'used', 'registration'] list_processed_text: [['account'], ['jncvkrzm'], ['thjquiyl'], ['blocked'], ['registration'], ['account'], ['jncvkrzm'], ['thjquiyl'], ['equal'], ['error'], ['message'], ['account'], ['addressed'], ['currently'], ['blocked'], ['cannot'], ['used'], ['registration']] k: 3432 len: <class 'list'> Data: ['access', 'printer', 'wy', 'trainee', 'hi', 'please', 'provide', 'access', 'wy', 'printer', 'machine', 'tool', 'business', 'trainee', 'trainee', 'name', 'blapmcwk', 'dgrkbnua', 'login', 'id', 'vvkusgtms', 'computer', 'awyw'] processed_text: ['access', 'printer', 'wy', 'trainee', 'hi', 'please', 'provide', 'access', 'wy', 'printer', 'machine', 'tool', 'business', 'trainee', 'trainee', 'name', 'blapmcwk', 'dgrkbnua', 'login', 'id', 'vvkusgtms', 'computer', 'awyw'] list_processed_text: [['access'], ['printer'], ['wy'], ['trainee'], ['hi'], ['please'], ['provide'], ['access'], ['wy'], ['printer'], ['machine'], ['tool'], ['business'], ['trainee'], ['trainee'], ['name'], ['blapmcwk'], ['dgrkbnua'], ['login'], ['id'], ['vvkusgtms'], ['computer'], ['awyw']] k: 3433 len: <class 'list'> Data: ['error', 'pgi', 'tandd', 'delivery', 'gso', 'please', 'open', 'ticket', 'erp', 'co', 'group', 'review', 'issue', 'tandd', 'delivery', 'pgi', 'work', 'co', 'assignment', 'different', 'profit', 'center'] processed_text: ['error', 'pgi', 'tandd', 'delivery', 'gso', 'please', 'open', 'ticket', 'erp', 'co', 'group', 'review', 'issue', 'tandd', 'delivery', 'pgi', 'work', 'co', 'assignment', 'different', 'profit', 'center'] list_processed_text: [['error'], ['pgi'], ['tandd'], ['delivery'], ['gso'], ['please'], ['open'], ['ticket'], ['erp'], ['co'], ['group'], ['review'], ['issue'], ['tandd'], ['delivery'], ['pgi'], ['work'], ['co'], ['assignment'], ['different'], ['profit'], ['center']] k: 3434 len: <class 'list'> Data: ['account', 'lock', 'release', 'request', 'nakagtwsgs', 'hi', 'team', 'please', 'unlock', 'window', 'account', 'nakagtwsgs', 'user', 'name', 'qwghlvdx', 'pjwvdiuz', 'best'] processed_text: ['account', 'lock', 'release', 'request', 'nakagtwsgs', 'hi', 'team', 'please', 'unlock', 'window', 'account', 'nakagtwsgs', 'user', 'name', 'qwghlvdx', 'pjwvdiuz', 'best'] list_processed_text: [['account'], ['lock'], ['release'], ['request'], ['nakagtwsgs'], ['hi'], ['team'], ['please'], ['unlock'], ['window'], ['account'], ['nakagtwsgs'], ['user'], ['name'], ['qwghlvdx'], ['pjwvdiuz'], ['best']] k: 3435 len: <class 'list'> Data: ['password', 'reset', 'hsh', 'hello', 'one', 'workman', 'aqihfoly', 'xsrkthvf', 'whose', 'user', 'id', 'hsh', 'able', 'login', 'es', 'user', 'id', 'locked', 'kiosk', 'user', 'please', 'set', 'password', 'confirm', 'noscwdpm', 'akiowsmp', 'manager', 'hr', 'shared', 'service', 'center'] processed_text: ['password', 'reset', 'hsh', 'hello', 'one', 'workman', 'aqihfoly', 'xsrkthvf', 'whose', 'user', 'id', 'hsh', 'able', 'login', 'es', 'user', 'id', 'locked', 'kiosk', 'user', 'please', 'set', 'password', 'confirm', 'noscwdpm', 'akiowsmp', 'manager', 'hr', 'shared', 'service', 'center'] list_processed_text: [['password'], ['reset'], ['hsh'], ['hello'], ['one'], ['workman'], ['aqihfoly'], ['xsrkthvf'], ['whose'], ['user'], ['id'], ['hsh'], ['able'], ['login'], ['es'], ['user'], ['id'], ['locked'], ['kiosk'], ['user'], ['please'], ['set'], ['password'], ['confirm'], ['noscwdpm'], ['akiowsmp'], ['manager'], ['hr'], ['shared'], ['service'], ['center']] k: 3436 len: <class 'list'> Data: ['picture', 'collaboration', 'platform', 'outlook', 'skype', 'user', 'faerfrtbj', 'profile', 'show', 'different', 'picture', 'collaboration', 'platform', 'outlook', 'skype', 'see', 'attached', 'screenshots', 'correct', 'one', 'one', 'shown', 'attachment', 'actual', 'jpg'] processed_text: ['picture', 'collaboration', 'platform', 'outlook', 'skype', 'user', 'faerfrtbj', 'profile', 'show', 'different', 'picture', 'collaboration', 'platform', 'outlook', 'skype', 'see', 'attached', 'screenshots', 'correct', 'one', 'one', 'shown', 'attachment', 'actual', 'jpg'] list_processed_text: [['picture'], ['collaboration'], ['platform'], ['outlook'], ['skype'], ['user'], ['faerfrtbj'], ['profile'], ['show'], ['different'], ['picture'], ['collaboration'], ['platform'], ['outlook'], ['skype'], ['see'], ['attached'], ['screenshots'], ['correct'], ['one'], ['one'], ['shown'], ['attachment'], ['actual'], ['jpg']] k: 3437 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler', 'unable', 'release', 'guest', 'error', 'failed', 'unfreeze', 'guest', 'system', 'network', 'mode', 'rpc', 'function', 'call', 'failed', 'function', 'name', 'unfreeze', 'target', 'machine', 'rpc', 'error', 'remote', 'procedure', 'call', 'failed', 'code'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler', 'unable', 'release', 'guest', 'error', 'failed', 'unfreeze', 'guest', 'system', 'network', 'mode', 'rpc', 'function', 'call', 'failed', 'function', 'name', 'unfreeze', 'target', 'machine', 'rpc', 'error', 'remote', 'procedure', 'call', 'failed', 'code'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['unable'], ['release'], ['guest'], ['error'], ['failed'], ['unfreeze'], ['guest'], ['system'], ['network'], ['mode'], ['rpc'], ['function'], ['call'], ['failed'], ['function'], ['name'], ['unfreeze'], ['target'], ['machine'], ['rpc'], ['error'], ['remote'], ['procedure'], ['call'], ['failed'], ['code']] k: 3438 len: <class 'list'> Data: ['password', 'reset', 'dear', 'collegues', 'need', 'password', 'reset', 'erp', 'hrp', 'modul', 'username', 'rethtyuzkd', 'gru'] processed_text: ['password', 'reset', 'dear', 'collegues', 'need', 'password', 'reset', 'erp', 'hrp', 'modul', 'username', 'rethtyuzkd', 'gru'] list_processed_text: [['password'], ['reset'], ['dear'], ['collegues'], ['need'], ['password'], ['reset'], ['erp'], ['hrp'], ['modul'], ['username'], ['rethtyuzkd'], ['gru']] k: 3439 len: <class 'list'> Data: ['allowed', 'use', 'dropbox', 'marcom', 'team', 'assigned', 'task', 'proofreading', 'requires', 'download', 'dropdox'] processed_text: ['allowed', 'use', 'dropbox', 'marcom', 'team', 'assigned', 'task', 'proofreading', 'requires', 'download', 'dropdox'] list_processed_text: [['allowed'], ['use'], ['dropbox'], ['marcom'], ['team'], ['assigned'], ['task'], ['proofreading'], ['requires'], ['download'], ['dropdox']] k: 3440 len: <class 'list'> Data: ['erp', 'account', 'blocked', 'erp', 'password', 'entered', 'incorrectly', 'please', 'activate', 'erp', 'account'] processed_text: ['erp', 'account', 'blocked', 'erp', 'password', 'entered', 'incorrectly', 'please', 'activate', 'erp', 'account'] list_processed_text: [['erp'], ['account'], ['blocked'], ['erp'], ['password'], ['entered'], ['incorrectly'], ['please'], ['activate'], ['erp'], ['account']] k: 3441 len: <class 'list'> Data: ['add', 'rtpcnyhq', 'ceqmwkhi', 'material', 'management', 'purchasing', 'hello', 'team', 'please', 'add', 'rtpcnyhq', 'ceqmwkhi', 'material', 'management', 'purchasing', 'group', 'ticketing', 'tool', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics', 'global'] processed_text: ['add', 'rtpcnyhq', 'ceqmwkhi', 'material', 'management', 'purchasing', 'hello', 'team', 'please', 'add', 'rtpcnyhq', 'ceqmwkhi', 'material', 'management', 'purchasing', 'group', 'ticketing', 'tool', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics', 'global'] list_processed_text: [['add'], ['rtpcnyhq'], ['ceqmwkhi'], ['material'], ['management'], ['purchasing'], ['hello'], ['team'], ['please'], ['add'], ['rtpcnyhq'], ['ceqmwkhi'], ['material'], ['management'], ['purchasing'], ['group'], ['ticketing'], ['tool'], ['inxsupmy'], ['zhwmifvx'], ['team'], ['lead'], ['ssl'], ['sourcing'], ['logistics'], ['global']] k: 3442 len: <class 'list'> Data: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler']] k: 3443 len: <class 'list'> Data: ['india', 'coating', 'interface', 'vlan', 'company', 'ap', 'ind', 'india', 'coating', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'india', 'coating', 'interface', 'vlan', 'company', 'ap', 'ind', 'india', 'coating', 'dmvpn', 'rtr', 'since', 'pm', 'et'] processed_text: ['india', 'coating', 'interface', 'vlan', 'company', 'ap', 'ind', 'india', 'coating', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'india', 'coating', 'interface', 'vlan', 'company', 'ap', 'ind', 'india', 'coating', 'dmvpn', 'rtr', 'since', 'pm', 'et'] list_processed_text: [['india'], ['coating'], ['interface'], ['vlan'], ['company'], ['ap'], ['ind'], ['india'], ['coating'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et'], ['india'], ['coating'], ['interface'], ['vlan'], ['company'], ['ap'], ['ind'], ['india'], ['coating'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et']] k: 3444 len: <class 'list'> Data: ['engineering', 'tool', 'log', 'problem', 'hi', 'changed', 'password', 'engineering', 'tool', 'day', 'back', 'showed', 'successfully', 'changed', 'still', 'able', 'login', 'please', 'check', 'error', 'message', 'image'] processed_text: ['engineering', 'tool', 'log', 'problem', 'hi', 'changed', 'password', 'engineering', 'tool', 'day', 'back', 'showed', 'successfully', 'changed', 'still', 'able', 'login', 'please', 'check', 'error', 'message', 'image'] list_processed_text: [['engineering'], ['tool'], ['log'], ['problem'], ['hi'], ['changed'], ['password'], ['engineering'], ['tool'], ['day'], ['back'], ['showed'], ['successfully'], ['changed'], ['still'], ['able'], ['login'], ['please'], ['check'], ['error'], ['message'], ['image']] k: 3445 len: <class 'list'> Data: ['engineering', 'tool', 'problem', 'hello', 'add', 'new', 'customer', 'making', 'new', 'engineering', 'tool', 'entered', 'country', 'city', 'used', 'button', 'new', 'anymore'] processed_text: ['engineering', 'tool', 'problem', 'hello', 'add', 'new', 'customer', 'making', 'new', 'engineering', 'tool', 'entered', 'country', 'city', 'used', 'button', 'new', 'anymore'] list_processed_text: [['engineering'], ['tool'], ['problem'], ['hello'], ['add'], ['new'], ['customer'], ['making'], ['new'], ['engineering'], ['tool'], ['entered'], ['country'], ['city'], ['used'], ['button'], ['new'], ['anymore']] k: 3446 len: <class 'list'> Data: ['apac', 'apac', 'temprature', 'sensor', 'yellow', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'pm', 'et', 'sw', 'temperature', 'sensor', 'yellow', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'hardware', 'component', 'warning', 'critical', 'state', 'detected'] processed_text: ['apac', 'apac', 'temprature', 'sensor', 'yellow', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'pm', 'et', 'sw', 'temperature', 'sensor', 'yellow', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'hardware', 'component', 'warning', 'critical', 'state', 'detected'] list_processed_text: [['apac'], ['apac'], ['temprature'], ['sensor'], ['yellow'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['pm'], ['et'], ['sw'], ['temperature'], ['sensor'], ['yellow'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['hardware'], ['component'], ['warning'], ['critical'], ['state'], ['detected']] k: 3447 len: <class 'list'> Data: ['vip', 'outlook', 'working', 'receiving', 'message', 'licensed', 'product', 'outlook', 'working', 'receiving', 'message', 'licensed', 'product'] processed_text: ['vip', 'outlook', 'working', 'receiving', 'message', 'licensed', 'product', 'outlook', 'working', 'receiving', 'message', 'licensed', 'product'] list_processed_text: [['vip'], ['outlook'], ['working'], ['receiving'], ['message'], ['licensed'], ['product'], ['outlook'], ['working'], ['receiving'], ['message'], ['licensed'], ['product']] k: 3448 len: <class 'list'> Data: ['urgent', 'new', 'customer', 'account', 'hello', 'unable', 'proceed', 'opening', 'new', 'customer', 'account', 'please', 'advise', 'issue'] processed_text: ['urgent', 'new', 'customer', 'account', 'hello', 'unable', 'proceed', 'opening', 'new', 'customer', 'account', 'please', 'advise', 'issue'] list_processed_text: [['urgent'], ['new'], ['customer'], ['account'], ['hello'], ['unable'], ['proceed'], ['opening'], ['new'], ['customer'], ['account'], ['please'], ['advise'], ['issue']] k: 3449 len: <class 'list'> Data: ['sign', 'password', 'team', 'recently', 'advised', 'password', 'needed', 'changing', 'went', 'password', 'manager', 'site', 'changed', 'password', 'password', 'different', 'thing', 'changed', 'except', 'one', 'startup', 'log', 'onto', 'computer', 'failed', 'change', 'change', 'one'] processed_text: ['sign', 'password', 'team', 'recently', 'advised', 'password', 'needed', 'changing', 'went', 'password', 'manager', 'site', 'changed', 'password', 'password', 'different', 'thing', 'changed', 'except', 'one', 'startup', 'log', 'onto', 'computer', 'failed', 'change', 'change', 'one'] list_processed_text: [['sign'], ['password'], ['team'], ['recently'], ['advised'], ['password'], ['needed'], ['changing'], ['went'], ['password'], ['manager'], ['site'], ['changed'], ['password'], ['password'], ['different'], ['thing'], ['changed'], ['except'], ['one'], ['startup'], ['log'], ['onto'], ['computer'], ['failed'], ['change'], ['change'], ['one']] k: 3450 len: <class 'list'> Data: ['boot', 'issue', 'laptop', 'boot', 'issue', 'laptop', 'user', 'requesting', 'local', 'check', 'laptop', 'pc', 'booting', 'user', 'tried', 'plug', 'power', 'adaptor', 'still', 'go', 'service', 'tag', 'asset', 'tag', 'ph'] processed_text: ['boot', 'issue', 'laptop', 'boot', 'issue', 'laptop', 'user', 'requesting', 'local', 'check', 'laptop', 'pc', 'booting', 'user', 'tried', 'plug', 'power', 'adaptor', 'still', 'go', 'service', 'tag', 'asset', 'tag', 'ph'] list_processed_text: [['boot'], ['issue'], ['laptop'], ['boot'], ['issue'], ['laptop'], ['user'], ['requesting'], ['local'], ['check'], ['laptop'], ['pc'], ['booting'], ['user'], ['tried'], ['plug'], ['power'], ['adaptor'], ['still'], ['go'], ['service'], ['tag'], ['asset'], ['tag'], ['ph']] k: 3451 len: <class 'list'> Data: ['computer', 'keep', 'going', 'line', 'name', 'sndaofyw', 'jetcxpda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'computer', 'keep', 'going', 'line'] processed_text: ['computer', 'keep', 'going', 'line', 'name', 'sndaofyw', 'jetcxpda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'computer', 'keep', 'going', 'line'] list_processed_text: [['computer'], ['keep'], ['going'], ['line'], ['name'], ['sndaofyw'], ['jetcxpda'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['computer'], ['keep'], ['going'], ['line']] k: 3452 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3453 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 3454 len: <class 'list'> Data: ['user', 'recieving', 'email', 'iphone', 'user', 'recieving', 'email', 'iphone', 'checked', 'user', 'account', 'fine', 'checked', 'user', 'accont', 'ecp', 'site', 'fine', 'advised', 'user', 'contact', 'vendor'] processed_text: ['user', 'recieving', 'email', 'iphone', 'user', 'recieving', 'email', 'iphone', 'checked', 'user', 'account', 'fine', 'checked', 'user', 'accont', 'ecp', 'site', 'fine', 'advised', 'user', 'contact', 'vendor'] list_processed_text: [['user'], ['recieving'], ['email'], ['iphone'], ['user'], ['recieving'], ['email'], ['iphone'], ['checked'], ['user'], ['account'], ['fine'], ['checked'], ['user'], ['accont'], ['ecp'], ['site'], ['fine'], ['advised'], ['user'], ['contact'], ['vendor']] k: 3455 len: <class 'list'> Data: ['vip', 'skype', 'login', 'issue', 'name', 'rgtyob', 'lafgseimer', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'today', 'skype', 'take', 'password'] processed_text: ['vip', 'skype', 'login', 'issue', 'name', 'rgtyob', 'lafgseimer', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'password', 'today', 'skype', 'take', 'password'] list_processed_text: [['vip'], ['skype'], ['login'], ['issue'], ['name'], ['rgtyob'], ['lafgseimer'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['reset'], ['password'], ['today'], ['skype'], ['take'], ['password']] k: 3456 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 3457 len: <class 'list'> Data: ['software', 'installation', 'name', 'uprmwlgb', 'kirvecja', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'software', 'installation'] processed_text: ['software', 'installation', 'name', 'uprmwlgb', 'kirvecja', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'software', 'installation'] list_processed_text: [['software'], ['installation'], ['name'], ['uprmwlgb'], ['kirvecja'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['software'], ['installation']] k: 3458 len: <class 'list'> Data: ['unable', 'print', 'erp', 'job', 'prtqv', 'routing', 'prtqv', 'unable', 'print', 'erp', 'job', 'prtqv', 'routing', 'prtqv'] processed_text: ['unable', 'print', 'erp', 'job', 'prtqv', 'routing', 'prtqv', 'unable', 'print', 'erp', 'job', 'prtqv', 'routing', 'prtqv'] list_processed_text: [['unable'], ['print'], ['erp'], ['job'], ['prtqv'], ['routing'], ['prtqv'], ['unable'], ['print'], ['erp'], ['job'], ['prtqv'], ['routing'], ['prtqv']] k: 3459 len: <class 'list'> Data: ['change', 'printer', 'prtqv', 'prtqv', 'change', 'printer', 'prtqv', 'prtqv'] processed_text: ['change', 'printer', 'prtqv', 'prtqv', 'change', 'printer', 'prtqv', 'prtqv'] list_processed_text: [['change'], ['printer'], ['prtqv'], ['prtqv'], ['change'], ['printer'], ['prtqv'], ['prtqv']] k: 3460 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'angyta', 'hgywselena', 'last', 'name', 'brescsfgryiani', 'acgyuna', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'angyta', 'hgywselena', 'last', 'name', 'brescsfgryiani', 'acgyuna', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['amar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['angyta'], ['hgywselena'], ['last'], ['name'], ['brescsfgryiani'], ['acgyuna'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 3461 len: <class 'list'> Data: ['bill', 'hartwell', 'access', 'drawing', 'hostname', 'department', 'engineering', 'process', 'sheet', 'cadkey', 'dwgs', 'please', 'assign', 'bill', 'necessary', 'permission', 'open', 'drawing', 'see', 'attachment'] processed_text: ['bill', 'hartwell', 'access', 'drawing', 'hostname', 'department', 'engineering', 'process', 'sheet', 'cadkey', 'dwgs', 'please', 'assign', 'bill', 'necessary', 'permission', 'open', 'drawing', 'see', 'attachment'] list_processed_text: [['bill'], ['hartwell'], ['access'], ['drawing'], ['hostname'], ['department'], ['engineering'], ['process'], ['sheet'], ['cadkey'], ['dwgs'], ['please'], ['assign'], ['bill'], ['necessary'], ['permission'], ['open'], ['drawing'], ['see'], ['attachment']] k: 3462 len: <class 'list'> Data: ['quoting', 'engine', 'hello', 'previous', 'ticket', 'issue', 'experiencing', 'today', 'sure', 'keep', 'issue', 'someone', 'help', 'understand', 'something', 'wrong', 'something', 'use', 'daily', 'need', 'access', 'inc', 'inc', 'description', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist'] processed_text: ['quoting', 'engine', 'hello', 'previous', 'ticket', 'issue', 'experiencing', 'today', 'sure', 'keep', 'issue', 'someone', 'help', 'understand', 'something', 'wrong', 'something', 'use', 'daily', 'need', 'access', 'inc', 'inc', 'description', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist'] list_processed_text: [['quoting'], ['engine'], ['hello'], ['previous'], ['ticket'], ['issue'], ['experiencing'], ['today'], ['sure'], ['keep'], ['issue'], ['someone'], ['help'], ['understand'], ['something'], ['wrong'], ['something'], ['use'], ['daily'], ['need'], ['access'], ['inc'], ['inc'], ['description'], ['try'], ['look'], ['configuration'], ['rqfhiong'], ['zkwfqagb'], ['get'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist']] k: 3463 len: <class 'list'> Data: ['product', 'selector', 'working', 'please', 'investigate', 'issue', 'product', 'selector', 'currently', 'data', 'loaded', 'company', 'website'] processed_text: ['product', 'selector', 'working', 'please', 'investigate', 'issue', 'product', 'selector', 'currently', 'data', 'loaded', 'company', 'website'] list_processed_text: [['product'], ['selector'], ['working'], ['please'], ['investigate'], ['issue'], ['product'], ['selector'], ['currently'], ['data'], ['loaded'], ['company'], ['website']] k: 3464 len: <class 'list'> Data: ['display', 'external', 'monitor', 'connected', 'docking', 'station', 'display', 'external', 'monitor', 'connected', 'docking', 'station', 'request', 'kindly', 'look', 'video', 'display', 'issue', 'computer', 'get', 'display', 'external', 'monitor', 'docked', 'docking', 'station', 'tried', 'docking', 'station', 'able', 'get', 'display', 'external', 'monitor', 'issue', 'three', 'month', 'intermittent', 'earlier', 'discussed', 'ghkkytu', 'aware', 'issue', 'worked', 'together', 'reinstalled', 'video', 'driver', 'issue', 'still', 'persists', 'leave', 'computer', 'security', 'request', 'assistance'] processed_text: ['display', 'external', 'monitor', 'connected', 'docking', 'station', 'display', 'external', 'monitor', 'connected', 'docking', 'station', 'request', 'kindly', 'look', 'video', 'display', 'issue', 'computer', 'get', 'display', 'external', 'monitor', 'docked', 'docking', 'station', 'tried', 'docking', 'station', 'able', 'get', 'display', 'external', 'monitor', 'issue', 'three', 'month', 'intermittent', 'earlier', 'discussed', 'ghkkytu', 'aware', 'issue', 'worked', 'together', 'reinstalled', 'video', 'driver', 'issue', 'still', 'persists', 'leave', 'computer', 'security', 'request', 'assistance'] list_processed_text: [['display'], ['external'], ['monitor'], ['connected'], ['docking'], ['station'], ['display'], ['external'], ['monitor'], ['connected'], ['docking'], ['station'], ['request'], ['kindly'], ['look'], ['video'], ['display'], ['issue'], ['computer'], ['get'], ['display'], ['external'], ['monitor'], ['docked'], ['docking'], ['station'], ['tried'], ['docking'], ['station'], ['able'], ['get'], ['display'], ['external'], ['monitor'], ['issue'], ['three'], ['month'], ['intermittent'], ['earlier'], ['discussed'], ['ghkkytu'], ['aware'], ['issue'], ['worked'], ['together'], ['reinstalled'], ['video'], ['driver'], ['issue'], ['still'], ['persists'], ['leave'], ['computer'], ['security'], ['request'], ['assistance']] k: 3465 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 3466 len: <class 'list'> Data: ['unable', 'print', 'printer', 'install', 'driver', 'unable', 'print', 'printer', 'install', 'driver'] processed_text: ['unable', 'print', 'printer', 'install', 'driver', 'unable', 'print', 'printer', 'install', 'driver'] list_processed_text: [['unable'], ['print'], ['printer'], ['install'], ['driver'], ['unable'], ['print'], ['printer'], ['install'], ['driver']] k: 3467 len: <class 'list'> Data: ['mscrm', 'outlook', 'opening', 'mscrm', 'outlook', 'opening', 'connected', 'user', 'system', 'using', 'teamviewer', 'reconfigured', 'user', 'profile', 'launched', 'outlook', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] processed_text: ['mscrm', 'outlook', 'opening', 'mscrm', 'outlook', 'opening', 'connected', 'user', 'system', 'using', 'teamviewer', 'reconfigured', 'user', 'profile', 'launched', 'outlook', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] list_processed_text: [['mscrm'], ['outlook'], ['opening'], ['mscrm'], ['outlook'], ['opening'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['reconfigured'], ['user'], ['profile'], ['launched'], ['outlook'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved']] k: 3468 len: <class 'list'> Data: ['outlook', 'pc', 'open', 'stay', 'open', 'screen', 'complete', 'like', 'day', 'site', 'meeting', 'able', 'answer', 'phone'] processed_text: ['outlook', 'pc', 'open', 'stay', 'open', 'screen', 'complete', 'like', 'day', 'site', 'meeting', 'able', 'answer', 'phone'] list_processed_text: [['outlook'], ['pc'], ['open'], ['stay'], ['open'], ['screen'], ['complete'], ['like'], ['day'], ['site'], ['meeting'], ['able'], ['answer'], ['phone']] k: 3469 len: <class 'list'> Data: ['unable', 'access', 'window', 'account', 'unable', 'access', 'window', 'account'] processed_text: ['unable', 'access', 'window', 'account', 'unable', 'access', 'window', 'account'] list_processed_text: [['unable'], ['access'], ['window'], ['account'], ['unable'], ['access'], ['window'], ['account']] k: 3470 len: <class 'list'> Data: ['dead', "man's", 'cell', 'phone', 'problem', 'dead', "man's", 'cell', 'phone', 'fault', 'techn', 'fault', 'dp', 'request', 'missing'] processed_text: ['dead', "man's", 'cell', 'phone', 'problem', 'dead', "man's", 'cell', 'phone', 'fault', 'techn', 'fault', 'dp', 'request', 'missing'] list_processed_text: [['dead'], ["man's"], ['cell'], ['phone'], ['problem'], ['dead'], ["man's"], ['cell'], ['phone'], ['fault'], ['techn'], ['fault'], ['dp'], ['request'], ['missing']] k: 3471 len: <class 'list'> Data: ['urgent', 'help', 'required', 'crm', 'mobile', 'app', 'loading', 'crm', 'mobile', 'app', 'time', 'return', 'phone', 'desktop', 'completing', 'download'] processed_text: ['urgent', 'help', 'required', 'crm', 'mobile', 'app', 'loading', 'crm', 'mobile', 'app', 'time', 'return', 'phone', 'desktop', 'completing', 'download'] list_processed_text: [['urgent'], ['help'], ['required'], ['crm'], ['mobile'], ['app'], ['loading'], ['crm'], ['mobile'], ['app'], ['time'], ['return'], ['phone'], ['desktop'], ['completing'], ['download']] k: 3472 len: <class 'list'> Data: ['user', 'haveing', 'issue', 'skype', 'audio', 'user', 'haveing', 'issue', 'skype', 'audio', 'connected', 'user', 'system', 'using', 'teamviewer', 'checked', 'audio', 'setting', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'fine', 'issue', 'resolved'] processed_text: ['user', 'haveing', 'issue', 'skype', 'audio', 'user', 'haveing', 'issue', 'skype', 'audio', 'connected', 'user', 'system', 'using', 'teamviewer', 'checked', 'audio', 'setting', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'fine', 'issue', 'resolved'] list_processed_text: [['user'], ['haveing'], ['issue'], ['skype'], ['audio'], ['user'], ['haveing'], ['issue'], ['skype'], ['audio'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['checked'], ['audio'], ['setting'], ['gave'], ['uacyltoe'], ['hxgaycze'], ['call'], ['user'], ['fine'], ['issue'], ['resolved']] k: 3473 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3474 len: <class 'list'> Data: ['collaboration', 'platform', 'permission', 'help', 'made', 'mistake', 'change', 'permission', 'basically', 'everything', 'following', 'page', 'wanted', 'see', 'way', 'restore', 'permission', 'yesterday'] processed_text: ['collaboration', 'platform', 'permission', 'help', 'made', 'mistake', 'change', 'permission', 'basically', 'everything', 'following', 'page', 'wanted', 'see', 'way', 'restore', 'permission', 'yesterday'] list_processed_text: [['collaboration'], ['platform'], ['permission'], ['help'], ['made'], ['mistake'], ['change'], ['permission'], ['basically'], ['everything'], ['following'], ['page'], ['wanted'], ['see'], ['way'], ['restore'], ['permission'], ['yesterday']] k: 3475 len: <class 'list'> Data: ['user', 'wanted', 'help', 'check', 'email', 'spam', 'user', 'wanted', 'help', 'check', 'email', 'spam', 'connected', 'user', 'system', 'using', 'teamviewer', 'assigned', 'ticket', 'spam', 'educated', 'user', 'issue', 'resolved'] processed_text: ['user', 'wanted', 'help', 'check', 'email', 'spam', 'user', 'wanted', 'help', 'check', 'email', 'spam', 'connected', 'user', 'system', 'using', 'teamviewer', 'assigned', 'ticket', 'spam', 'educated', 'user', 'issue', 'resolved'] list_processed_text: [['user'], ['wanted'], ['help'], ['check'], ['email'], ['spam'], ['user'], ['wanted'], ['help'], ['check'], ['email'], ['spam'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['assigned'], ['ticket'], ['spam'], ['educated'], ['user'], ['issue'], ['resolved']] k: 3476 len: <class 'list'> Data: ['skype', 'problem', 'hello', 'problem', 'skype', 'able', 'find', 'colleague'] processed_text: ['skype', 'problem', 'hello', 'problem', 'skype', 'able', 'find', 'colleague'] list_processed_text: [['skype'], ['problem'], ['hello'], ['problem'], ['skype'], ['able'], ['find'], ['colleague']] k: 3477 len: <class 'list'> Data: ['ie', 'cleanup', 'ie', 'cleanup'] processed_text: ['ie', 'cleanup', 'ie', 'cleanup'] list_processed_text: [['ie'], ['cleanup'], ['ie'], ['cleanup']] k: 3478 len: <class 'list'> Data: ['unable', 'access', 'bex', 'analyzer', 'unable', 'access', 'bex', 'analyzer', 'nothing', 'happens', 'click', 'pc', 'name', 'lmdl', 'phone'] processed_text: ['unable', 'access', 'bex', 'analyzer', 'unable', 'access', 'bex', 'analyzer', 'nothing', 'happens', 'click', 'pc', 'name', 'lmdl', 'phone'] list_processed_text: [['unable'], ['access'], ['bex'], ['analyzer'], ['unable'], ['access'], ['bex'], ['analyzer'], ['nothing'], ['happens'], ['click'], ['pc'], ['name'], ['lmdl'], ['phone']] k: 3479 len: <class 'list'> Data: ['erp', 'login', 'information', 'misplaced', 'password', 'reset', 'needed'] processed_text: ['erp', 'login', 'information', 'misplaced', 'password', 'reset', 'needed'] list_processed_text: [['erp'], ['login'], ['information'], ['misplaced'], ['password'], ['reset'], ['needed']] k: 3480 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 3481 len: <class 'list'> Data: ['outlook', 'asking', 'reactivate', 'outlook', 'asking', 'reactivate'] processed_text: ['outlook', 'asking', 'reactivate', 'outlook', 'asking', 'reactivate'] list_processed_text: [['outlook'], ['asking'], ['reactivate'], ['outlook'], ['asking'], ['reactivate']] k: 3482 len: <class 'list'> Data: ['unable', 'print', 'printer', 'hp', 'color', 'laser', 'cp', 'pcl', 'cl', 'unable', 'print', 'printer', 'hp', 'color', 'laser', 'cp', 'pcl', 'cl', 'connected', 'user', 'system', 'using', 'teamviewer', 'printer', 'keep', 'asking', 'update', 'driver', 'tried', 'install', 'driver', 'go', 'contact', 'computer', 'name', 'lhql', 'user', 'want', 'local', 'look', 'many', 'user', 'faceing', 'similar', 'issue'] processed_text: ['unable', 'print', 'printer', 'hp', 'color', 'laser', 'cp', 'pcl', 'cl', 'unable', 'print', 'printer', 'hp', 'color', 'laser', 'cp', 'pcl', 'cl', 'connected', 'user', 'system', 'using', 'teamviewer', 'printer', 'keep', 'asking', 'update', 'driver', 'tried', 'install', 'driver', 'go', 'contact', 'computer', 'name', 'lhql', 'user', 'want', 'local', 'look', 'many', 'user', 'faceing', 'similar', 'issue'] list_processed_text: [['unable'], ['print'], ['printer'], ['hp'], ['color'], ['laser'], ['cp'], ['pcl'], ['cl'], ['unable'], ['print'], ['printer'], ['hp'], ['color'], ['laser'], ['cp'], ['pcl'], ['cl'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['printer'], ['keep'], ['asking'], ['update'], ['driver'], ['tried'], ['install'], ['driver'], ['go'], ['contact'], ['computer'], ['name'], ['lhql'], ['user'], ['want'], ['local'], ['look'], ['many'], ['user'], ['faceing'], ['similar'], ['issue']] k: 3483 len: <class 'list'> Data: ['usb', 'port', 'issue', 'usb', 'port', 'work', 'time'] processed_text: ['usb', 'port', 'issue', 'usb', 'port', 'work', 'time'] list_processed_text: [['usb'], ['port'], ['issue'], ['usb'], ['port'], ['work'], ['time']] k: 3484 len: <class 'list'> Data: ['ie', 'upgrade', 'upgraded', 'ie', 'uacyltoe', 'hxgaycze', 'workstation'] processed_text: ['ie', 'upgrade', 'upgraded', 'ie', 'uacyltoe', 'hxgaycze', 'workstation'] list_processed_text: [['ie'], ['upgrade'], ['upgraded'], ['ie'], ['uacyltoe'], ['hxgaycze'], ['workstation']] k: 3485 len: <class 'list'> Data: ['user', 'want', 'change', 'erp', 'printer', 'prt', 'prtqv', 'prt', 'prtqz', 'user', 'want', 'change', 'erp', 'printer', 'prt', 'prtqv', 'prt', 'prtqz'] processed_text: ['user', 'want', 'change', 'erp', 'printer', 'prt', 'prtqv', 'prt', 'prtqz', 'user', 'want', 'change', 'erp', 'printer', 'prt', 'prtqv', 'prt', 'prtqz'] list_processed_text: [['user'], ['want'], ['change'], ['erp'], ['printer'], ['prt'], ['prtqv'], ['prt'], ['prtqz'], ['user'], ['want'], ['change'], ['erp'], ['printer'], ['prt'], ['prtqv'], ['prt'], ['prtqz']] k: 3486 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 3487 len: <class 'list'> Data: ['trying', 'find', 'expense', 'report', 'approve', 'email', 'say', 'one', 'approve', 'showing', 'name', 'bonhyb', 'knepkhsw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'find', 'expense', 'report', 'approve', 'email', 'say', 'one', 'approve', 'showing'] processed_text: ['trying', 'find', 'expense', 'report', 'approve', 'email', 'say', 'one', 'approve', 'showing', 'name', 'bonhyb', 'knepkhsw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'find', 'expense', 'report', 'approve', 'email', 'say', 'one', 'approve', 'showing'] list_processed_text: [['trying'], ['find'], ['expense'], ['report'], ['approve'], ['email'], ['say'], ['one'], ['approve'], ['showing'], ['name'], ['bonhyb'], ['knepkhsw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['trying'], ['find'], ['expense'], ['report'], ['approve'], ['email'], ['say'], ['one'], ['approve'], ['showing']] k: 3488 len: <class 'list'> Data: ['crm', 'app', 'installation', 'crm', 'app', 'installation'] processed_text: ['crm', 'app', 'installation', 'crm', 'app', 'installation'] list_processed_text: [['crm'], ['app'], ['installation'], ['crm'], ['app'], ['installation']] k: 3489 len: <class 'list'> Data: ['cannot', 'connect', 'hostname', 'engineering', 'application', 'going', 'company', 'vpn', 'access', 'hostname', 'hostname', 'hostname', 'cannot', 'connect', 'hostname', 'engineering', 'application', 'going', 'company', 'vpn', 'access', 'hostname', 'hostname', 'hostname', 'server', 'vpn', 'access', 'hostname', 'office', 'access', 'remotely', 'vpn', 'company', 'com'] processed_text: ['cannot', 'connect', 'hostname', 'engineering', 'application', 'going', 'company', 'vpn', 'access', 'hostname', 'hostname', 'hostname', 'cannot', 'connect', 'hostname', 'engineering', 'application', 'going', 'company', 'vpn', 'access', 'hostname', 'hostname', 'hostname', 'server', 'vpn', 'access', 'hostname', 'office', 'access', 'remotely', 'vpn', 'company', 'com'] list_processed_text: [['cannot'], ['connect'], ['hostname'], ['engineering'], ['application'], ['going'], ['company'], ['vpn'], ['access'], ['hostname'], ['hostname'], ['hostname'], ['cannot'], ['connect'], ['hostname'], ['engineering'], ['application'], ['going'], ['company'], ['vpn'], ['access'], ['hostname'], ['hostname'], ['hostname'], ['server'], ['vpn'], ['access'], ['hostname'], ['office'], ['access'], ['remotely'], ['vpn'], ['company'], ['com']] k: 3490 len: <class 'list'> Data: ['unable', 'install', 'crm', 'app', 'galaxy', 'user', 'samsung', 'galaxy', 'device', 'android', 'o', 'want', 'install', 'use', 'dynamic', 'crm', 'app', 'app', 'requires', 'android', 'minimum'] processed_text: ['unable', 'install', 'crm', 'app', 'galaxy', 'user', 'samsung', 'galaxy', 'device', 'android', 'o', 'want', 'install', 'use', 'dynamic', 'crm', 'app', 'app', 'requires', 'android', 'minimum'] list_processed_text: [['unable'], ['install'], ['crm'], ['app'], ['galaxy'], ['user'], ['samsung'], ['galaxy'], ['device'], ['android'], ['o'], ['want'], ['install'], ['use'], ['dynamic'], ['crm'], ['app'], ['app'], ['requires'], ['android'], ['minimum']] k: 3491 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3492 len: <class 'list'> Data: ['erp', 'vc', 'configair', 'application', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'working', 'internal', 'server', 'error', 'configair', 'server', 'uacyltoe', 'hxgaycze', 'environment', 'sid', 'responds', 'internal', 'server', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'happens', 'log', 'erp', 'language', 'de', 'german', 'happening', 'model', 'csscdrill', 'mill', 'model', 'case', 'log', 'erp', 'en', 'language', 'csscdrill', 'model', 'working', 'fine', 'mill', 'model', 'model', 'come', 'select', 'product', 'platform', 'system', 'hang'] processed_text: ['erp', 'vc', 'configair', 'application', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'working', 'internal', 'server', 'error', 'configair', 'server', 'uacyltoe', 'hxgaycze', 'environment', 'sid', 'responds', 'internal', 'server', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'happens', 'log', 'erp', 'language', 'de', 'german', 'happening', 'model', 'csscdrill', 'mill', 'model', 'case', 'log', 'erp', 'en', 'language', 'csscdrill', 'model', 'working', 'fine', 'mill', 'model', 'model', 'come', 'select', 'product', 'platform', 'system', 'hang'] list_processed_text: [['erp'], ['vc'], ['configair'], ['application'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['environment'], ['working'], ['internal'], ['server'], ['error'], ['configair'], ['server'], ['uacyltoe'], ['hxgaycze'], ['environment'], ['sid'], ['responds'], ['internal'], ['server'], ['error'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['happens'], ['log'], ['erp'], ['language'], ['de'], ['german'], ['happening'], ['model'], ['csscdrill'], ['mill'], ['model'], ['case'], ['log'], ['erp'], ['en'], ['language'], ['csscdrill'], ['model'], ['working'], ['fine'], ['mill'], ['model'], ['model'], ['come'], ['select'], ['product'], ['platform'], ['system'], ['hang']] k: 3493 len: <class 'list'> Data: ['hostname', 'application', 'plm', 'scheduled', 'task', 'monitor', 'node', 'hostname', 'critical', 'state', 'hostname', 'application', 'plm', 'scheduled', 'task', 'monitor', 'node', 'hostname', 'critical', 'state'] processed_text: ['hostname', 'application', 'plm', 'scheduled', 'task', 'monitor', 'node', 'hostname', 'critical', 'state', 'hostname', 'application', 'plm', 'scheduled', 'task', 'monitor', 'node', 'hostname', 'critical', 'state'] list_processed_text: [['hostname'], ['application'], ['plm'], ['scheduled'], ['task'], ['monitor'], ['node'], ['hostname'], ['critical'], ['state'], ['hostname'], ['application'], ['plm'], ['scheduled'], ['task'], ['monitor'], ['node'], ['hostname'], ['critical'], ['state']] k: 3494 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3495 len: <class 'list'> Data: ['eu', 'tool', 'issue', 'eu', 'tool', 'issue', 'since', 'upgraded', 'bit', 'keep', 'saying', 'memory', 'phone'] processed_text: ['eu', 'tool', 'issue', 'eu', 'tool', 'issue', 'since', 'upgraded', 'bit', 'keep', 'saying', 'memory', 'phone'] list_processed_text: [['eu'], ['tool'], ['issue'], ['eu'], ['tool'], ['issue'], ['since'], ['upgraded'], ['bit'], ['keep'], ['saying'], ['memory'], ['phone']] k: 3496 len: <class 'list'> Data: ['need', 'upgrade', 'ie', 'could', 'please', 'confirm', 'upgrade', 'occurred', 'town', 'week', 'upgrade', 'never', 'prompted', 'anything', 'suspect', 'happen', 'need', 'schedule', 'upgrade', 'computer', 'please'] processed_text: ['need', 'upgrade', 'ie', 'could', 'please', 'confirm', 'upgrade', 'occurred', 'town', 'week', 'upgrade', 'never', 'prompted', 'anything', 'suspect', 'happen', 'need', 'schedule', 'upgrade', 'computer', 'please'] list_processed_text: [['need'], ['upgrade'], ['ie'], ['could'], ['please'], ['confirm'], ['upgrade'], ['occurred'], ['town'], ['week'], ['upgrade'], ['never'], ['prompted'], ['anything'], ['suspect'], ['happen'], ['need'], ['schedule'], ['upgrade'], ['computer'], ['please']] k: 3497 len: <class 'list'> Data: ['sometimes', 'ship', 'address', 'changed', 'system', 'example', 'problem', 'discussed', 'key', 'user', 'call'] processed_text: ['sometimes', 'ship', 'address', 'changed', 'system', 'example', 'problem', 'discussed', 'key', 'user', 'call'] list_processed_text: [['sometimes'], ['ship'], ['address'], ['changed'], ['system'], ['example'], ['problem'], ['discussed'], ['key'], ['user'], ['call']] k: 3498 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3499 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'high', 'importance', 'submitted', 'several', 'report', 'couple', 'day', 'ago', 'let', 'create', 'new', 'report', 'need', 'issue', 'resplved'] processed_text: ['engineering', 'tool', 'issue', 'high', 'importance', 'submitted', 'several', 'report', 'couple', 'day', 'ago', 'let', 'create', 'new', 'report', 'need', 'issue', 'resplved'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['high'], ['importance'], ['submitted'], ['several'], ['report'], ['couple'], ['day'], ['ago'], ['let'], ['create'], ['new'], ['report'], ['need'], ['issue'], ['resplved']] k: 3500 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3501 len: <class 'list'> Data: ['need', 'access', 'user', 'collaboration', 'platform', 'need', 'access', 'user', 'collaboration', 'platform', 'summary', 'cowqyjzm', 'fzsxgapt', 'informed', 'stefyty', 'smhdyhtis', 'collaboration', 'platform', 'business', 'permanently', 'deleted', 'day', 'need', 'access', 'collaboration', 'platform', 'see', 'information', 'need'] processed_text: ['need', 'access', 'user', 'collaboration', 'platform', 'need', 'access', 'user', 'collaboration', 'platform', 'summary', 'cowqyjzm', 'fzsxgapt', 'informed', 'stefyty', 'smhdyhtis', 'collaboration', 'platform', 'business', 'permanently', 'deleted', 'day', 'need', 'access', 'collaboration', 'platform', 'see', 'information', 'need'] list_processed_text: [['need'], ['access'], ['user'], ['collaboration'], ['platform'], ['need'], ['access'], ['user'], ['collaboration'], ['platform'], ['summary'], ['cowqyjzm'], ['fzsxgapt'], ['informed'], ['stefyty'], ['smhdyhtis'], ['collaboration'], ['platform'], ['business'], ['permanently'], ['deleted'], ['day'], ['need'], ['access'], ['collaboration'], ['platform'], ['see'], ['information'], ['need']] k: 3502 len: <class 'list'> Data: ['erp', 'pur', 'wrong', 'subcontracting', 'demand', 'mm', 'hello', 'material', 'show', 'piece', 'demand', 'plant', 'parent', 'mm', 'refers', 'subcontracting', 'po', 'po', 'closed', 'already', 'component', 'shipped', 'vendor', 'movement', 'booked', 'movement', 'together', 'movement', 'good', 'receipt', 'show', 'erp', 'still', 'demand', 'piece', 'po', 'wrong', 'demand', 'cleaned'] processed_text: ['erp', 'pur', 'wrong', 'subcontracting', 'demand', 'mm', 'hello', 'material', 'show', 'piece', 'demand', 'plant', 'parent', 'mm', 'refers', 'subcontracting', 'po', 'po', 'closed', 'already', 'component', 'shipped', 'vendor', 'movement', 'booked', 'movement', 'together', 'movement', 'good', 'receipt', 'show', 'erp', 'still', 'demand', 'piece', 'po', 'wrong', 'demand', 'cleaned'] list_processed_text: [['erp'], ['pur'], ['wrong'], ['subcontracting'], ['demand'], ['mm'], ['hello'], ['material'], ['show'], ['piece'], ['demand'], ['plant'], ['parent'], ['mm'], ['refers'], ['subcontracting'], ['po'], ['po'], ['closed'], ['already'], ['component'], ['shipped'], ['vendor'], ['movement'], ['booked'], ['movement'], ['together'], ['movement'], ['good'], ['receipt'], ['show'], ['erp'], ['still'], ['demand'], ['piece'], ['po'], ['wrong'], ['demand'], ['cleaned']] k: 3503 len: <class 'list'> Data: ['cannot', 'access', 'collaboration', 'platform', 'access', 'collaboration', 'platform', 'asks', 'username', 'password', 'go', 'constant', 'loop', 'two', 'field', 'entered', 'never', 'actually', 'get', 'collaboration', 'platform'] processed_text: ['cannot', 'access', 'collaboration', 'platform', 'access', 'collaboration', 'platform', 'asks', 'username', 'password', 'go', 'constant', 'loop', 'two', 'field', 'entered', 'never', 'actually', 'get', 'collaboration', 'platform'] list_processed_text: [['cannot'], ['access'], ['collaboration'], ['platform'], ['access'], ['collaboration'], ['platform'], ['asks'], ['username'], ['password'], ['go'], ['constant'], ['loop'], ['two'], ['field'], ['entered'], ['never'], ['actually'], ['get'], ['collaboration'], ['platform']] k: 3504 len: <class 'list'> Data: ['vitalyst', 'unable', 'see', 'customer', 'list', 'crm', 'vitalyst', 'unable', 'see', 'customer', 'list', 'crm', 'see', 'attached', 'screenshot', 'user', 'id', 'lehhywsmat', 'contact'] processed_text: ['vitalyst', 'unable', 'see', 'customer', 'list', 'crm', 'vitalyst', 'unable', 'see', 'customer', 'list', 'crm', 'see', 'attached', 'screenshot', 'user', 'id', 'lehhywsmat', 'contact'] list_processed_text: [['vitalyst'], ['unable'], ['see'], ['customer'], ['list'], ['crm'], ['vitalyst'], ['unable'], ['see'], ['customer'], ['list'], ['crm'], ['see'], ['attached'], ['screenshot'], ['user'], ['id'], ['lehhywsmat'], ['contact']] k: 3505 len: <class 'list'> Data: ['account', 'locked', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rbozivdq', 'gmlhrtvp', 'hi', 'jonnht', 'bnoupaki', 'cpeioz', 'hello', 'rbozivdq', 'gmlhrtvp', 'showing', 'locked', 'tell', 'error', 'getting', 'bnoupaki', 'cpeioz', 'log', 'sure', 'temporarily', 'unable', 'seems', 'ok'] processed_text: ['account', 'locked', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rbozivdq', 'gmlhrtvp', 'hi', 'jonnht', 'bnoupaki', 'cpeioz', 'hello', 'rbozivdq', 'gmlhrtvp', 'showing', 'locked', 'tell', 'error', 'getting', 'bnoupaki', 'cpeioz', 'log', 'sure', 'temporarily', 'unable', 'seems', 'ok'] list_processed_text: [['account'], ['locked'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rbozivdq'], ['gmlhrtvp'], ['hi'], ['jonnht'], ['bnoupaki'], ['cpeioz'], ['hello'], ['rbozivdq'], ['gmlhrtvp'], ['showing'], ['locked'], ['tell'], ['error'], ['getting'], ['bnoupaki'], ['cpeioz'], ['log'], ['sure'], ['temporarily'], ['unable'], ['seems'], ['ok']] k: 3506 len: <class 'list'> Data: ['erp', 'netweaver', 'error', 'hello', 'error', 'starting', 'erp', 'netweaver', 'please', 'help', 'solve', 'unrbafjx', 'reyshakw', 'global', 'portfolio', 'manager', 'advanced', 'material', 'pcd'] processed_text: ['erp', 'netweaver', 'error', 'hello', 'error', 'starting', 'erp', 'netweaver', 'please', 'help', 'solve', 'unrbafjx', 'reyshakw', 'global', 'portfolio', 'manager', 'advanced', 'material', 'pcd'] list_processed_text: [['erp'], ['netweaver'], ['error'], ['hello'], ['error'], ['starting'], ['erp'], ['netweaver'], ['please'], ['help'], ['solve'], ['unrbafjx'], ['reyshakw'], ['global'], ['portfolio'], ['manager'], ['advanced'], ['material'], ['pcd']] k: 3507 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sid', 'reset', 'erp', 'sid', 'password', 'marcel', 'issue', 'logging', 'resetting', 'password', 'using', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'erp', 'sid', 'reset', 'erp', 'sid', 'password', 'marcel', 'issue', 'logging', 'resetting', 'password', 'using', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['erp'], ['sid'], ['reset'], ['erp'], ['sid'], ['password'], ['marcel'], ['issue'], ['logging'], ['resetting'], ['password'], ['using'], ['password'], ['management'], ['tool']] k: 3508 len: <class 'list'> Data: ['unable', 'connect', 'home', 'printer', 'unable', 'connect', 'home', 'printer'] processed_text: ['unable', 'connect', 'home', 'printer', 'unable', 'connect', 'home', 'printer'] list_processed_text: [['unable'], ['connect'], ['home'], ['printer'], ['unable'], ['connect'], ['home'], ['printer']] k: 3509 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 3510 len: <class 'list'> Data: ['pr', 'create', 'purchase', 'requisition', 'purchasing', 'work', 'got', 'following', 'error', 'massage', 'action', 'could', 'performed', 'data', 'found', 'employee', 'etc', 'inform', 'system', 'administrator'] processed_text: ['pr', 'create', 'purchase', 'requisition', 'purchasing', 'work', 'got', 'following', 'error', 'massage', 'action', 'could', 'performed', 'data', 'found', 'employee', 'etc', 'inform', 'system', 'administrator'] list_processed_text: [['pr'], ['create'], ['purchase'], ['requisition'], ['purchasing'], ['work'], ['got'], ['following'], ['error'], ['massage'], ['action'], ['could'], ['performed'], ['data'], ['found'], ['employee'], ['etc'], ['inform'], ['system'], ['administrator']] k: 3511 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'tims', 'iphone', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'system', 'name', 'found', 'user', 'name', 'found', 'location', 'usa', 'sm', 'status', 'found', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xabbf', 'ack', 'xadc', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'tims', 'iphone', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'e', 'aef', 'wj', 'cde', 'cb', 'bbf', 'p', 'adc', 'c', 'au', 'eaf', 'ee', 'ec', 'e', 'n', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'nginx', 'date', 'thu', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'b', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'cd', 'dc', 'b', 'sid', 'bcfac', 'doma', 'de', 'c', 'ae', 'dd', 'myslidz', 'com', 'ac', 'f', 'ea', 'location', 'http', 'ff', 'e', 'ed', 'xsso', 'api', 'mysli', 'e', 'fd', 'dz', 'com', 'cdd', 'cb', 'ad', 'cfac', 'go', 'ht', 'af', 'fe', 'tp', 'xsso', 'api', 'ae', 'df', 'slidz', 'com', 'cd', 'dc', 'bcfac', 'pcap', 'hex', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'addr', 'arpa', 'anubisnetworks', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xabba', 'ack', 'xfdce', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'tims', 'iphone', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'e', 'ceb', 'w', 'c', 'bfb', 'af', 'cb', 'abb', 'v', 'j', 'dce', 'eaf', 'ee', 'ab', 'e', 'http', 'bd', 'ok', 'server', 'e', 'da', 'nginx', 'date', 'th', 'u', 'sep', 'fe', 'gmt', 'con', 'f', 'tent', 'type', 'text', 'dc', 'da', 'ee', 'fe', 'html', 'connection', 'c', 'ff', 'close', 'set', 'coo', 'b', 'e', 'kie', 'anbtr', 'ddc', 'b', 'fd', 'bcfac', 'dom', 'ed', 'ed', 'fd', 'myslidz', 'com', 'da', 'e', 'f', 'content', 'encodi', 'da', 'da', 'fb', 'ng', 'gzip', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'tims', 'iphone', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'system', 'name', 'found', 'user', 'name', 'found', 'location', 'usa', 'sm', 'status', 'found', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xabbf', 'ack', 'xadc', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'tims', 'iphone', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'e', 'aef', 'wj', 'cde', 'cb', 'bbf', 'p', 'adc', 'c', 'au', 'eaf', 'ee', 'ec', 'e', 'n', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'nginx', 'date', 'thu', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'b', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'cd', 'dc', 'b', 'sid', 'bcfac', 'doma', 'de', 'c', 'ae', 'dd', 'myslidz', 'com', 'ac', 'f', 'ea', 'location', 'http', 'ff', 'e', 'ed', 'xsso', 'api', 'mysli', 'e', 'fd', 'dz', 'com', 'cdd', 'cb', 'ad', 'cfac', 'go', 'ht', 'af', 'fe', 'tp', 'xsso', 'api', 'ae', 'df', 'slidz', 'com', 'cd', 'dc', 'bcfac', 'pcap', 'hex', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'addr', 'arpa', 'anubisnetworks', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'tims', 'iphone', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xabba', 'ack', 'xfdce', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'tims', 'iphone', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'e', 'ceb', 'w', 'c', 'bfb', 'af', 'cb', 'abb', 'v', 'j', 'dce', 'eaf', 'ee', 'ab', 'e', 'http', 'bd', 'ok', 'server', 'e', 'da', 'nginx', 'date', 'th', 'u', 'sep', 'fe', 'gmt', 'con', 'f', 'tent', 'type', 'text', 'dc', 'da', 'ee', 'fe', 'html', 'connection', 'c', 'ff', 'close', 'set', 'coo', 'b', 'e', 'kie', 'anbtr', 'ddc', 'b', 'fd', 'bcfac', 'dom', 'ed', 'ed', 'fd', 'myslidz', 'com', 'da', 'e', 'f', 'content', 'encodi', 'da', 'da', 'fb', 'ng', 'gzip', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['tims'], ['iphone'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['tims'], ['iphone'], ['system'], ['name'], ['found'], ['user'], ['name'], ['found'], ['location'], ['usa'], ['sm'], ['status'], ['found'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['tims'], ['iphone'], ['destination'], ['port'], ['destination'], ['mac'], ['address'], ['c'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xabbf'], ['ack'], ['xadc'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['tims'], ['iphone'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['e'], ['aef'], ['wj'], ['cde'], ['cb'], ['bbf'], ['p'], ['adc'], ['c'], ['au'], ['eaf'], ['ee'], ['ec'], ['e'], ['n'], ['http'], ['f'], ['f'], ['moved'], ['tempo'], ['da'], ['rarily'], ['server'], ['e'], ['nginx'], ['date'], ['thu'], ['da'], ['e'], ['gmt'], ['cont'], ['e'], ['f'], ['ent'], ['type'], ['text'], ['b'], ['cd'], ['fe'], ['f'], ['ea'], ['tml'], ['connection'], ['cf'], ['da'], ['f'], ['fb'], ['close'], ['set'], ['cook'], ['e'], ['ie'], ['anbtr'], ['cd'], ['dc'], ['b'], ['sid'], ['bcfac'], ['doma'], ['de'], ['c'], ['ae'], ['dd'], ['myslidz'], ['com'], ['ac'], ['f'], ['ea'], ['location'], ['http'], ['ff'], ['e'], ['ed'], ['xsso'], ['api'], ['mysli'], ['e'], ['fd'], ['dz'], ['com'], ['cdd'], ['cb'], ['ad'], ['cfac'], ['go'], ['ht'], ['af'], ['fe'], ['tp'], ['xsso'], ['api'], ['ae'], ['df'], ['slidz'], ['com'], ['cd'], ['dc'], ['bcfac'], ['pcap'], ['hex'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['addr'], ['arpa'], ['anubisnetworks'], ['com'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['tims'], ['iphone'], ['destination'], ['port'], ['destination'], ['mac'], ['address'], ['c'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xabba'], ['ack'], ['xfdce'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['tims'], ['iphone'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['e'], ['ceb'], ['w'], ['c'], ['bfb'], ['af'], ['cb'], ['abb'], ['v'], ['j'], ['dce'], ['eaf'], ['ee'], ['ab'], ['e'], ['http'], ['bd'], ['ok'], ['server'], ['e'], ['da'], ['nginx'], ['date'], ['th'], ['u'], ['sep'], ['fe'], ['gmt'], ['con'], ['f'], ['tent'], ['type'], ['text'], ['dc'], ['da'], ['ee'], ['fe'], ['html'], ['connection'], ['c'], ['ff'], ['close'], ['set'], ['coo'], ['b'], ['e'], ['kie'], ['anbtr'], ['ddc'], ['b'], ['fd'], ['bcfac'], ['dom'], ['ed'], ['ed'], ['fd'], ['myslidz'], ['com'], ['da'], ['e'], ['f'], ['content'], ['encodi'], ['da'], ['da'], ['fb'], ['ng'], ['gzip'], ['pcap'], ['hex'], ['e']] k: 3512 len: <class 'list'> Data: ['ship', 'created', 'distributor', 'tool', 'visible', 'ecc', 'created', 'new', 'ship', 'sold', 'via', 'distributor', 'tool', 'ship', 'found', 'either', 'ecc', 'distributor', 'tool', 'see', 'actually', 'exists', 'crm', 'situation', 'ship', 'data', 'complete', 'crm', 'system', 'show', 'error', 'reason', 'ship', 'transferred', 'ecc', 'could', 'please', 'look'] processed_text: ['ship', 'created', 'distributor', 'tool', 'visible', 'ecc', 'created', 'new', 'ship', 'sold', 'via', 'distributor', 'tool', 'ship', 'found', 'either', 'ecc', 'distributor', 'tool', 'see', 'actually', 'exists', 'crm', 'situation', 'ship', 'data', 'complete', 'crm', 'system', 'show', 'error', 'reason', 'ship', 'transferred', 'ecc', 'could', 'please', 'look'] list_processed_text: [['ship'], ['created'], ['distributor'], ['tool'], ['visible'], ['ecc'], ['created'], ['new'], ['ship'], ['sold'], ['via'], ['distributor'], ['tool'], ['ship'], ['found'], ['either'], ['ecc'], ['distributor'], ['tool'], ['see'], ['actually'], ['exists'], ['crm'], ['situation'], ['ship'], ['data'], ['complete'], ['crm'], ['system'], ['show'], ['error'], ['reason'], ['ship'], ['transferred'], ['ecc'], ['could'], ['please'], ['look']] k: 3513 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'ekxl', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'addr', 'arpa', 'anubisnetworks', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'ekxl', 'destination', 'port', 'destination', 'mac', 'address', 'ba', 'ec', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfae', 'ack', 'ddde', 'win', 'xb', 'tcplen', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'ba', 'ec', 'ekxl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'fa', 'ec', 'fab', 'af', 'c', 'fae', 'h', 'dd', 'dde', 'f', 'h', 'http', 'e', 'bd', 'ok', 'ser', 'e', 'da', 'ver', 'nginx', 'date', 'thu', 'sep', 'gmt', 'fe', 'content', 'type', 'dc', 'da', 'ee', 'ext', 'html', 'connec', 'fe', 'f', 'tion', 'close', 'set', 'ff', 'cookie', 'anbtr', 'dbcccbbe', 'b', 'ffafbba', 'fd', 'ed', 'sid', 'domain', 'space', 'e', 'dd', 'fe', 'mbiance', 'com', 'con', 'f', 'tent', 'encoding', 'ad', 'af', 'zip', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'ekxl', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'addr', 'arpa', 'anubisnetworks', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'ekxl', 'destination', 'port', 'destination', 'mac', 'address', 'ba', 'ec', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfae', 'ack', 'ddde', 'win', 'xb', 'tcplen', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'ba', 'ec', 'ekxl', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'fa', 'ec', 'fab', 'af', 'c', 'fae', 'h', 'dd', 'dde', 'f', 'h', 'http', 'e', 'bd', 'ok', 'ser', 'e', 'da', 'ver', 'nginx', 'date', 'thu', 'sep', 'gmt', 'fe', 'content', 'type', 'dc', 'da', 'ee', 'ext', 'html', 'connec', 'fe', 'f', 'tion', 'close', 'set', 'ff', 'cookie', 'anbtr', 'dbcccbbe', 'b', 'ffafbba', 'fd', 'ed', 'sid', 'domain', 'space', 'e', 'dd', 'fe', 'mbiance', 'com', 'con', 'f', 'tent', 'encoding', 'ad', 'af', 'zip', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['ekxl'], ['source'], ['ip'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['addr'], ['arpa'], ['anubisnetworks'], ['com'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['ekxl'], ['destination'], ['port'], ['destination'], ['mac'], ['address'], ['ba'], ['ec'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xfae'], ['ack'], ['ddde'], ['win'], ['xb'], ['tcplen'], ['pcap'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['ba'], ['ec'], ['ekxl'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['fa'], ['ec'], ['fab'], ['af'], ['c'], ['fae'], ['h'], ['dd'], ['dde'], ['f'], ['h'], ['http'], ['e'], ['bd'], ['ok'], ['ser'], ['e'], ['da'], ['ver'], ['nginx'], ['date'], ['thu'], ['sep'], ['gmt'], ['fe'], ['content'], ['type'], ['dc'], ['da'], ['ee'], ['ext'], ['html'], ['connec'], ['fe'], ['f'], ['tion'], ['close'], ['set'], ['ff'], ['cookie'], ['anbtr'], ['dbcccbbe'], ['b'], ['ffafbba'], ['fd'], ['ed'], ['sid'], ['domain'], ['space'], ['e'], ['dd'], ['fe'], ['mbiance'], ['com'], ['con'], ['f'], ['tent'], ['encoding'], ['ad'], ['af'], ['zip'], ['pcap'], ['hex'], ['e']] k: 3514 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'message'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'message'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['message']] k: 3515 len: <class 'list'> Data: ['sale', 'inwarehouse', 'tool', 'rejected', 'banking', 'detail', 'printed', 'footer', 'banking', 'detail', 'printed', 'inwarehouse', 'tool', 'customer', 'rejected', 'inwarehouse', 'tool', 'footer', 'detail', 'corrected'] processed_text: ['sale', 'inwarehouse', 'tool', 'rejected', 'banking', 'detail', 'printed', 'footer', 'banking', 'detail', 'printed', 'inwarehouse', 'tool', 'customer', 'rejected', 'inwarehouse', 'tool', 'footer', 'detail', 'corrected'] list_processed_text: [['sale'], ['inwarehouse'], ['tool'], ['rejected'], ['banking'], ['detail'], ['printed'], ['footer'], ['banking'], ['detail'], ['printed'], ['inwarehouse'], ['tool'], ['customer'], ['rejected'], ['inwarehouse'], ['tool'], ['footer'], ['detail'], ['corrected']] k: 3516 len: <class 'list'> Data: ['unable', 'detect', 'dell', 'usb', 'adapter', 'unable', 'detect', 'dell', 'usb', 'adapter'] processed_text: ['unable', 'detect', 'dell', 'usb', 'adapter', 'unable', 'detect', 'dell', 'usb', 'adapter'] list_processed_text: [['unable'], ['detect'], ['dell'], ['usb'], ['adapter'], ['unable'], ['detect'], ['dell'], ['usb'], ['adapter']] k: 3517 len: <class 'list'> Data: ['india', 'high', 'latency', 'india', 'high', 'latency'] processed_text: ['india', 'high', 'latency', 'india', 'high', 'latency'] list_processed_text: [['india'], ['high'], ['latency'], ['india'], ['high'], ['latency']] k: 3518 len: <class 'list'> Data: ['analysis', 'add', 'getting', 'disabled', 'analysis', 'add', 'getting', 'disabled'] processed_text: ['analysis', 'add', 'getting', 'disabled', 'analysis', 'add', 'getting', 'disabled'] list_processed_text: [['analysis'], ['add'], ['getting'], ['disabled'], ['analysis'], ['add'], ['getting'], ['disabled']] k: 3519 len: <class 'list'> Data: ['lcowx', 'computer', 'lost', 'connectivity', 'network', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] processed_text: ['lcowx', 'computer', 'lost', 'connectivity', 'network', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] list_processed_text: [['lcowx'], ['computer'], ['lost'], ['connectivity'], ['network'], ['shrugott'], ['tyhuellis'], ['usa'], ['facility'], ['mgr']] k: 3520 len: <class 'list'> Data: ['lcow', 'computer', 'partial', 'connectivity', 'network', 'cannot', 'get', 'drive', 'needed', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] processed_text: ['lcow', 'computer', 'partial', 'connectivity', 'network', 'cannot', 'get', 'drive', 'needed', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] list_processed_text: [['lcow'], ['computer'], ['partial'], ['connectivity'], ['network'], ['cannot'], ['get'], ['drive'], ['needed'], ['shrugott'], ['tyhuellis'], ['usa'], ['facility'], ['mgr']] k: 3521 len: <class 'list'> Data: ['clad', 'qc', 'computer', 'moving', 'new', 'location', 'computer', 'moving', 'new', 'location', 'new', 'setup', 'need', 'completed', 'production', 'interrupted', 'note', 'shrugott', 'tyhuellis', 'entered', 'ticket', 'move'] processed_text: ['clad', 'qc', 'computer', 'moving', 'new', 'location', 'computer', 'moving', 'new', 'location', 'new', 'setup', 'need', 'completed', 'production', 'interrupted', 'note', 'shrugott', 'tyhuellis', 'entered', 'ticket', 'move'] list_processed_text: [['clad'], ['qc'], ['computer'], ['moving'], ['new'], ['location'], ['computer'], ['moving'], ['new'], ['location'], ['new'], ['setup'], ['need'], ['completed'], ['production'], ['interrupted'], ['note'], ['shrugott'], ['tyhuellis'], ['entered'], ['ticket'], ['move']] k: 3522 len: <class 'list'> Data: ['clad', 'qc', 'computer', 'cannot', 'access', 'erp', 'shop', 'floor', 'app', 'shared', 'file', 'work', 'brgtyad', 'ahdwqrson', 'operator', 'area', 'work', 'standstill', 'also', 'affect', 'subsequent', 'operation', 'nearing', 'end', 'month', 'product', 'need', 'move', 'computer', 'work', 'need', 'complete'] processed_text: ['clad', 'qc', 'computer', 'cannot', 'access', 'erp', 'shop', 'floor', 'app', 'shared', 'file', 'work', 'brgtyad', 'ahdwqrson', 'operator', 'area', 'work', 'standstill', 'also', 'affect', 'subsequent', 'operation', 'nearing', 'end', 'month', 'product', 'need', 'move', 'computer', 'work', 'need', 'complete'] list_processed_text: [['clad'], ['qc'], ['computer'], ['cannot'], ['access'], ['erp'], ['shop'], ['floor'], ['app'], ['shared'], ['file'], ['work'], ['brgtyad'], ['ahdwqrson'], ['operator'], ['area'], ['work'], ['standstill'], ['also'], ['affect'], ['subsequent'], ['operation'], ['nearing'], ['end'], ['month'], ['product'], ['need'], ['move'], ['computer'], ['work'], ['need'], ['complete']] k: 3523 len: <class 'list'> Data: ['gthxezqp', 'ainuhbmk', 'desk', 'moving', 'cable', 'need', 'run', 'new', 'location', 'service', 'need', 'restored', 'new', 'location', 'next', 'week', 'operator', 'control', 'desk', 'moving', 'make', 'room', 'equipment', 'computer', 'setup', 'computer', 'connected', 'furnace', 'operation', 'monitoring', 'operator', 'area', 'table', 'need', 'physically', 'move', 'cable', 'need', 'activated', 'new', 'location', 'computer', 'area', 'connected', 'shop', 'floor', 'app', 'shared', 'file', 'operator', 'access', 'work', 'file', 'must', 'work', 'new', 'location'] processed_text: ['gthxezqp', 'ainuhbmk', 'desk', 'moving', 'cable', 'need', 'run', 'new', 'location', 'service', 'need', 'restored', 'new', 'location', 'next', 'week', 'operator', 'control', 'desk', 'moving', 'make', 'room', 'equipment', 'computer', 'setup', 'computer', 'connected', 'furnace', 'operation', 'monitoring', 'operator', 'area', 'table', 'need', 'physically', 'move', 'cable', 'need', 'activated', 'new', 'location', 'computer', 'area', 'connected', 'shop', 'floor', 'app', 'shared', 'file', 'operator', 'access', 'work', 'file', 'must', 'work', 'new', 'location'] list_processed_text: [['gthxezqp'], ['ainuhbmk'], ['desk'], ['moving'], ['cable'], ['need'], ['run'], ['new'], ['location'], ['service'], ['need'], ['restored'], ['new'], ['location'], ['next'], ['week'], ['operator'], ['control'], ['desk'], ['moving'], ['make'], ['room'], ['equipment'], ['computer'], ['setup'], ['computer'], ['connected'], ['furnace'], ['operation'], ['monitoring'], ['operator'], ['area'], ['table'], ['need'], ['physically'], ['move'], ['cable'], ['need'], ['activated'], ['new'], ['location'], ['computer'], ['area'], ['connected'], ['shop'], ['floor'], ['app'], ['shared'], ['file'], ['operator'], ['access'], ['work'], ['file'], ['must'], ['work'], ['new'], ['location']] k: 3524 len: <class 'list'> Data: ['computer', 'office', 'need', 'access', 'drive', 'rolling', 'data', 'location', 'access', 'database', 'rolling', 'information', 'currently', 'need', 'interrupt', 'data', 'entry', 'extract', 'information', 'project', 'also', 'database', 'stopped', 'calculating', 'density', 'number', 'fix', 'limited', 'experience', 'access', 'help', 'fix', 'problem', 'look', 'like', 'path', 'lan', 'rolling', 'contact'] processed_text: ['computer', 'office', 'need', 'access', 'drive', 'rolling', 'data', 'location', 'access', 'database', 'rolling', 'information', 'currently', 'need', 'interrupt', 'data', 'entry', 'extract', 'information', 'project', 'also', 'database', 'stopped', 'calculating', 'density', 'number', 'fix', 'limited', 'experience', 'access', 'help', 'fix', 'problem', 'look', 'like', 'path', 'lan', 'rolling', 'contact'] list_processed_text: [['computer'], ['office'], ['need'], ['access'], ['drive'], ['rolling'], ['data'], ['location'], ['access'], ['database'], ['rolling'], ['information'], ['currently'], ['need'], ['interrupt'], ['data'], ['entry'], ['extract'], ['information'], ['project'], ['also'], ['database'], ['stopped'], ['calculating'], ['density'], ['number'], ['fix'], ['limited'], ['experience'], ['access'], ['help'], ['fix'], ['problem'], ['look'], ['like'], ['path'], ['lan'], ['rolling'], ['contact']] k: 3525 len: <class 'list'> Data: ['resolution', 'pc', 'eemw', 'screen', 'poor', 'change', 'adopted', 'resolution', 'pc', 'eemw', 'screen', 'poor', 'change', 'adopted'] processed_text: ['resolution', 'pc', 'eemw', 'screen', 'poor', 'change', 'adopted', 'resolution', 'pc', 'eemw', 'screen', 'poor', 'change', 'adopted'] list_processed_text: [['resolution'], ['pc'], ['eemw'], ['screen'], ['poor'], ['change'], ['adopted'], ['resolution'], ['pc'], ['eemw'], ['screen'], ['poor'], ['change'], ['adopted']] k: 3526 len: <class 'list'> Data: ['engineering', 'tool', 'log', 'problem', 'hello', 'team', 'please', 'check', 'error', 'getting', 'logging', 'engineering', 'tool', 'changed', 'laptop', 'detail', 'follows', 'computer', 'name', 'service', 'tag', 'model', 'name', 'aiul', 'dvzlq', 'latitude', 'username', 'kadjuwqama', 'earlier', 'using', 'engineering', 'tool', 'laptop', 'username', 'username', 'kadjuwqama', 'laptop', 'name', 'awyl', 'error', 'engineering', 'tool', 'login', 'mentioned', 'error', 'get', 'company', 'engineering', 'tool', 'log', 'please', 'needful', 'description'] processed_text: ['engineering', 'tool', 'log', 'problem', 'hello', 'team', 'please', 'check', 'error', 'getting', 'logging', 'engineering', 'tool', 'changed', 'laptop', 'detail', 'follows', 'computer', 'name', 'service', 'tag', 'model', 'name', 'aiul', 'dvzlq', 'latitude', 'username', 'kadjuwqama', 'earlier', 'using', 'engineering', 'tool', 'laptop', 'username', 'username', 'kadjuwqama', 'laptop', 'name', 'awyl', 'error', 'engineering', 'tool', 'login', 'mentioned', 'error', 'get', 'company', 'engineering', 'tool', 'log', 'please', 'needful', 'description'] list_processed_text: [['engineering'], ['tool'], ['log'], ['problem'], ['hello'], ['team'], ['please'], ['check'], ['error'], ['getting'], ['logging'], ['engineering'], ['tool'], ['changed'], ['laptop'], ['detail'], ['follows'], ['computer'], ['name'], ['service'], ['tag'], ['model'], ['name'], ['aiul'], ['dvzlq'], ['latitude'], ['username'], ['kadjuwqama'], ['earlier'], ['using'], ['engineering'], ['tool'], ['laptop'], ['username'], ['username'], ['kadjuwqama'], ['laptop'], ['name'], ['awyl'], ['error'], ['engineering'], ['tool'], ['login'], ['mentioned'], ['error'], ['get'], ['company'], ['engineering'], ['tool'], ['log'], ['please'], ['needful'], ['description']] k: 3527 len: <class 'list'> Data: ['reset', 'password', 'rlhuwmve', 'krcfhoxj', 'erp', 'qa', 'erp', 'please', 'reset', 'petrghada', 'sid', 'password', 'soon', 'possible'] processed_text: ['reset', 'password', 'rlhuwmve', 'krcfhoxj', 'erp', 'qa', 'erp', 'please', 'reset', 'petrghada', 'sid', 'password', 'soon', 'possible'] list_processed_text: [['reset'], ['password'], ['rlhuwmve'], ['krcfhoxj'], ['erp'], ['qa'], ['erp'], ['please'], ['reset'], ['petrghada'], ['sid'], ['password'], ['soon'], ['possible']] k: 3528 len: <class 'list'> Data: ['laptop', 'start', 'docked', 'blue', 'power', 'light', 'light', 'briefly', 'go', 'laptop', 'start', 'docked', 'blue', 'power', 'light', 'light', 'briefly', 'go'] processed_text: ['laptop', 'start', 'docked', 'blue', 'power', 'light', 'light', 'briefly', 'go', 'laptop', 'start', 'docked', 'blue', 'power', 'light', 'light', 'briefly', 'go'] list_processed_text: [['laptop'], ['start'], ['docked'], ['blue'], ['power'], ['light'], ['light'], ['briefly'], ['go'], ['laptop'], ['start'], ['docked'], ['blue'], ['power'], ['light'], ['light'], ['briefly'], ['go']] k: 3529 len: <class 'list'> Data: ['business', 'client', 'error', 'log', 'hello', 'team', 'please', 'check', 'error', 'getting', 'logging', 'business', 'client'] processed_text: ['business', 'client', 'error', 'log', 'hello', 'team', 'please', 'check', 'error', 'getting', 'logging', 'business', 'client'] list_processed_text: [['business'], ['client'], ['error'], ['log'], ['hello'], ['team'], ['please'], ['check'], ['error'], ['getting'], ['logging'], ['business'], ['client']] k: 3530 len: <class 'list'> Data: ['bluetooth', 'headset', 'connect', 'pc', 'assign', 'qdxyifhj', 'zbwtunpy', 'germany', 'bluetooth', 'headset', 'connect', 'pc'] processed_text: ['bluetooth', 'headset', 'connect', 'pc', 'assign', 'qdxyifhj', 'zbwtunpy', 'germany', 'bluetooth', 'headset', 'connect', 'pc'] list_processed_text: [['bluetooth'], ['headset'], ['connect'], ['pc'], ['assign'], ['qdxyifhj'], ['zbwtunpy'], ['germany'], ['bluetooth'], ['headset'], ['connect'], ['pc']] k: 3531 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 3532 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'printer', 'name', 'make', 'model', 'wy', 'detailed', 'description', 'problem', 'wy', 'printer', 'added', 'pc', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'printer', 'name', 'make', 'model', 'wy', 'detailed', 'description', 'problem', 'wy', 'printer', 'added', 'pc', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['printer'], ['name'], ['make'], ['model'], ['wy'], ['detailed'], ['description'], ['problem'], ['wy'], ['printer'], ['added'], ['pc'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc']] k: 3533 len: <class 'list'> Data: ['need', 'reset', 'password', 'erp', 'sid', 'system', 'need', 'reset', 'password', 'erp', 'sid', 'system'] processed_text: ['need', 'reset', 'password', 'erp', 'sid', 'system', 'need', 'reset', 'password', 'erp', 'sid', 'system'] list_processed_text: [['need'], ['reset'], ['password'], ['erp'], ['sid'], ['system'], ['need'], ['reset'], ['password'], ['erp'], ['sid'], ['system']] k: 3534 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3535 len: <class 'list'> Data: ['add', 'new', 'employee', 'distribution', 'list', 'hello', 'please', 'add', 'new', 'csr', 'wkgpcxqd', 'vobarhzk', 'following', 'distribution', 'list', 'email', 'bucket', 'company', 'csr', 'poland', 'shatryung', 'company', 'sale', 'team', 'company', 'promotion', 'emea', 'add', 'esguiazn', 'pqdjtzin', 'bucket', 'xhnmygfp', 'bnpehyku', 'company', 'promotion', 'emea', 'best'] processed_text: ['add', 'new', 'employee', 'distribution', 'list', 'hello', 'please', 'add', 'new', 'csr', 'wkgpcxqd', 'vobarhzk', 'following', 'distribution', 'list', 'email', 'bucket', 'company', 'csr', 'poland', 'shatryung', 'company', 'sale', 'team', 'company', 'promotion', 'emea', 'add', 'esguiazn', 'pqdjtzin', 'bucket', 'xhnmygfp', 'bnpehyku', 'company', 'promotion', 'emea', 'best'] list_processed_text: [['add'], ['new'], ['employee'], ['distribution'], ['list'], ['hello'], ['please'], ['add'], ['new'], ['csr'], ['wkgpcxqd'], ['vobarhzk'], ['following'], ['distribution'], ['list'], ['email'], ['bucket'], ['company'], ['csr'], ['poland'], ['shatryung'], ['company'], ['sale'], ['team'], ['company'], ['promotion'], ['emea'], ['add'], ['esguiazn'], ['pqdjtzin'], ['bucket'], ['xhnmygfp'], ['bnpehyku'], ['company'], ['promotion'], ['emea'], ['best']] k: 3536 len: <class 'list'> Data: ['see', 'attachment', 'see', 'attachment', 'contact', 'uk'] processed_text: ['see', 'attachment', 'see', 'attachment', 'contact', 'uk'] list_processed_text: [['see'], ['attachment'], ['see'], ['attachment'], ['contact'], ['uk']] k: 3537 len: <class 'list'> Data: ['call', 'germany', 'office', 'telephony', 'software', 'hear', 'call', 'germany', 'office', 'telephony', 'software', 'hear', 'hear', 'happended', 'twice', 'today', 'last', 'interaction', 'id', 'also', 'week', 'ago', 'problem', 'call', 'people', 'inside', 'outside', 'company'] processed_text: ['call', 'germany', 'office', 'telephony', 'software', 'hear', 'call', 'germany', 'office', 'telephony', 'software', 'hear', 'hear', 'happended', 'twice', 'today', 'last', 'interaction', 'id', 'also', 'week', 'ago', 'problem', 'call', 'people', 'inside', 'outside', 'company'] list_processed_text: [['call'], ['germany'], ['office'], ['telephony'], ['software'], ['hear'], ['call'], ['germany'], ['office'], ['telephony'], ['software'], ['hear'], ['hear'], ['happended'], ['twice'], ['today'], ['last'], ['interaction'], ['id'], ['also'], ['week'], ['ago'], ['problem'], ['call'], ['people'], ['inside'], ['outside'], ['company']] k: 3538 len: <class 'list'> Data: ['blocked', 'inwarehouse', 'tool', 'blocked', 'inwarehouse', 'tool', 'system', 'reason', 'blocking', 'document', 'saved', 'foreign', 'trade', 'data', 'incomplete', 'ticket', 'first', 'analysis', 'info', 'available', 'mm', 'concerned', 'material', 'know', 'fix', 'issue', 'completing', 'document', 'please', 'provide', 'information', 'make', 'analysis', 'order', 'avoid', 'issue', 'futur'] processed_text: ['blocked', 'inwarehouse', 'tool', 'blocked', 'inwarehouse', 'tool', 'system', 'reason', 'blocking', 'document', 'saved', 'foreign', 'trade', 'data', 'incomplete', 'ticket', 'first', 'analysis', 'info', 'available', 'mm', 'concerned', 'material', 'know', 'fix', 'issue', 'completing', 'document', 'please', 'provide', 'information', 'make', 'analysis', 'order', 'avoid', 'issue', 'futur'] list_processed_text: [['blocked'], ['inwarehouse'], ['tool'], ['blocked'], ['inwarehouse'], ['tool'], ['system'], ['reason'], ['blocking'], ['document'], ['saved'], ['foreign'], ['trade'], ['data'], ['incomplete'], ['ticket'], ['first'], ['analysis'], ['info'], ['available'], ['mm'], ['concerned'], ['material'], ['know'], ['fix'], ['issue'], ['completing'], ['document'], ['please'], ['provide'], ['information'], ['make'], ['analysis'], ['order'], ['avoid'], ['issue'], ['futur']] k: 3539 len: <class 'list'> Data: ['video', 'play', 'skirtylport', 'training', 'hi', 'trying', 'take', 'training', 'course', 'start', 'course', 'video', 'play', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['video', 'play', 'skirtylport', 'training', 'hi', 'trying', 'take', 'training', 'course', 'start', 'course', 'video', 'play', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['video'], ['play'], ['skirtylport'], ['training'], ['hi'], ['trying'], ['take'], ['training'], ['course'], ['start'], ['course'], ['video'], ['play'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 3540 len: <class 'list'> Data: ['bitte', 'konto', 'erzeugen', 'ewew', 'optiplex', 'messmachine', 'berirtch', 'zedghkler'] processed_text: ['bitte', 'konto', 'erzeugen', 'ewew', 'optiplex', 'messmachine', 'berirtch', 'zedghkler'] list_processed_text: [['bitte'], ['konto'], ['erzeugen'], ['ewew'], ['optiplex'], ['messmachine'], ['berirtch'], ['zedghkler']] k: 3541 len: <class 'list'> Data: ['unable', 'access', 'sid', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'access', 'sid', 'system', 'attached', 'reference'] processed_text: ['unable', 'access', 'sid', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'access', 'sid', 'system', 'attached', 'reference'] list_processed_text: [['unable'], ['access'], ['sid'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['access'], ['sid'], ['system'], ['attached'], ['reference']] k: 3542 len: <class 'list'> Data: ['reset', 'password', 'bwgldaoe', 'aczyfqjr', 'erp', 'qa', 'erp', 'please', 'reset', 'password', 'erp', 'sid', 'erp', 'uacyltoe', 'hxgaycze', 'system'] processed_text: ['reset', 'password', 'bwgldaoe', 'aczyfqjr', 'erp', 'qa', 'erp', 'please', 'reset', 'password', 'erp', 'sid', 'erp', 'uacyltoe', 'hxgaycze', 'system'] list_processed_text: [['reset'], ['password'], ['bwgldaoe'], ['aczyfqjr'], ['erp'], ['qa'], ['erp'], ['please'], ['reset'], ['password'], ['erp'], ['sid'], ['erp'], ['uacyltoe'], ['hxgaycze'], ['system']] k: 3543 len: <class 'list'> Data: ['able', 'login', 'beyond', 'evolution', 'campaign', 'reporting', 'engineering', 'tool', 'able', 'login', 'beyond', 'evolution', 'campaign', 'reporting', 'engineering', 'tool', 'site', 'certified', 'content'] processed_text: ['able', 'login', 'beyond', 'evolution', 'campaign', 'reporting', 'engineering', 'tool', 'able', 'login', 'beyond', 'evolution', 'campaign', 'reporting', 'engineering', 'tool', 'site', 'certified', 'content'] list_processed_text: [['able'], ['login'], ['beyond'], ['evolution'], ['campaign'], ['reporting'], ['engineering'], ['tool'], ['able'], ['login'], ['beyond'], ['evolution'], ['campaign'], ['reporting'], ['engineering'], ['tool'], ['site'], ['certified'], ['content']] k: 3544 len: <class 'list'> Data: ['business', 'client', 'issue', 'hello', 'able', 'log', 'business', 'client', 'soft', 'ware', 'laptop', 'pl', 'needful', 'priority', 'kind'] processed_text: ['business', 'client', 'issue', 'hello', 'able', 'log', 'business', 'client', 'soft', 'ware', 'laptop', 'pl', 'needful', 'priority', 'kind'] list_processed_text: [['business'], ['client'], ['issue'], ['hello'], ['able'], ['log'], ['business'], ['client'], ['soft'], ['ware'], ['laptop'], ['pl'], ['needful'], ['priority'], ['kind']] k: 3545 len: <class 'list'> Data: ['erp', 'hrp', 'hcm', 'account', 'lockout', 'erp', 'hrp', 'hcm', 'account', 'lockout'] processed_text: ['erp', 'hrp', 'hcm', 'account', 'lockout', 'erp', 'hrp', 'hcm', 'account', 'lockout'] list_processed_text: [['erp'], ['hrp'], ['hcm'], ['account'], ['lockout'], ['erp'], ['hrp'], ['hcm'], ['account'], ['lockout']] k: 3546 len: <class 'list'> Data: ['problem', 'erpgui', 'jionmpsf', 'wnkpzcmv', 'problem', 'erpgui', 'jionmpsf', 'wnkpzcmv'] processed_text: ['problem', 'erpgui', 'jionmpsf', 'wnkpzcmv', 'problem', 'erpgui', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['problem'], ['erpgui'], ['jionmpsf'], ['wnkpzcmv'], ['problem'], ['erpgui'], ['jionmpsf'], ['wnkpzcmv']] k: 3547 len: <class 'list'> Data: ['reinstall', 'pc', 'empw', 'reinstall', 'pc', 'empw'] processed_text: ['reinstall', 'pc', 'empw', 'reinstall', 'pc', 'empw'] list_processed_text: [['reinstall'], ['pc'], ['empw'], ['reinstall'], ['pc'], ['empw']] k: 3548 len: <class 'list'> Data: ['able', 'create', 'dc', 'hello', 'help', 'unable', 'create', 'delivery', 'challan', 'due', 'error'] processed_text: ['able', 'create', 'dc', 'hello', 'help', 'unable', 'create', 'delivery', 'challan', 'due', 'error'] list_processed_text: [['able'], ['create'], ['dc'], ['hello'], ['help'], ['unable'], ['create'], ['delivery'], ['challan'], ['due'], ['error']] k: 3549 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3550 len: <class 'list'> Data: ['id', 'printer', 'working', 'company', 'id', 'printer', 'working', 'company'] processed_text: ['id', 'printer', 'working', 'company', 'id', 'printer', 'working', 'company'] list_processed_text: [['id'], ['printer'], ['working'], ['company'], ['id'], ['printer'], ['working'], ['company']] k: 3551 len: <class 'list'> Data: ['account', 'locked', 'cellphone', 'wifi', 'authentication', 'problem', 'account', 'locked', 'cellphone', 'wifi', 'authentication', 'problem'] processed_text: ['account', 'locked', 'cellphone', 'wifi', 'authentication', 'problem', 'account', 'locked', 'cellphone', 'wifi', 'authentication', 'problem'] list_processed_text: [['account'], ['locked'], ['cellphone'], ['wifi'], ['authentication'], ['problem'], ['account'], ['locked'], ['cellphone'], ['wifi'], ['authentication'], ['problem']] k: 3552 len: <class 'list'> Data: ['access', 'point', 'faulty', 'jxphgfmb', 'gjbtuuwek', 'access', 'point', 'faulty', 'jxphgfmb', 'gjbtuuwek'] processed_text: ['access', 'point', 'faulty', 'jxphgfmb', 'gjbtuuwek', 'access', 'point', 'faulty', 'jxphgfmb', 'gjbtuuwek'] list_processed_text: [['access'], ['point'], ['faulty'], ['jxphgfmb'], ['gjbtuuwek'], ['access'], ['point'], ['faulty'], ['jxphgfmb'], ['gjbtuuwek']] k: 3553 len: <class 'list'> Data: ['problem', 'outlook', 'kwehgxts', 'agdsqbwv', 'hello', 'would', 'like', 'phone', 'number', 'appear', 'search'] processed_text: ['problem', 'outlook', 'kwehgxts', 'agdsqbwv', 'hello', 'would', 'like', 'phone', 'number', 'appear', 'search'] list_processed_text: [['problem'], ['outlook'], ['kwehgxts'], ['agdsqbwv'], ['hello'], ['would'], ['like'], ['phone'], ['number'], ['appear'], ['search']] k: 3554 len: <class 'list'> Data: ['problem', 'skype', 'difozlav', 'dgbfptos', 'niptbwdq', 'csenjruz', 'problem', 'skype', 'difozlav', 'dgbfptos', 'niptbwdq', 'csenjruz'] processed_text: ['problem', 'skype', 'difozlav', 'dgbfptos', 'niptbwdq', 'csenjruz', 'problem', 'skype', 'difozlav', 'dgbfptos', 'niptbwdq', 'csenjruz'] list_processed_text: [['problem'], ['skype'], ['difozlav'], ['dgbfptos'], ['niptbwdq'], ['csenjruz'], ['problem'], ['skype'], ['difozlav'], ['dgbfptos'], ['niptbwdq'], ['csenjruz']] k: 3555 len: <class 'list'> Data: ['stock', 'issue', 'hello', 'pc', 'plant', 'run', 'dn', 'please', 'help', 'check'] processed_text: ['stock', 'issue', 'hello', 'pc', 'plant', 'run', 'dn', 'please', 'help', 'check'] list_processed_text: [['stock'], ['issue'], ['hello'], ['pc'], ['plant'], ['run'], ['dn'], ['please'], ['help'], ['check']] k: 3556 len: <class 'list'> Data: ['dvd', 'palyer', 'working', 'dear', 'sir', 'dvd', 'player', 'working', 'pc', 'kindly', 'rectify', 'contact', 'number'] processed_text: ['dvd', 'palyer', 'working', 'dear', 'sir', 'dvd', 'player', 'working', 'pc', 'kindly', 'rectify', 'contact', 'number'] list_processed_text: [['dvd'], ['palyer'], ['working'], ['dear'], ['sir'], ['dvd'], ['player'], ['working'], ['pc'], ['kindly'], ['rectify'], ['contact'], ['number']] k: 3557 len: <class 'list'> Data: ['login', 'problem', 'skype', 'login', 'problem', 'skype'] processed_text: ['login', 'problem', 'skype', 'login', 'problem', 'skype'] list_processed_text: [['login'], ['problem'], ['skype'], ['login'], ['problem'], ['skype']] k: 3558 len: <class 'list'> Data: ['please', 'check', 'pgi', 'delivery', 'note', 'please', 'check', 'pgi', 'delivery', 'note'] processed_text: ['please', 'check', 'pgi', 'delivery', 'note', 'please', 'check', 'pgi', 'delivery', 'note'] list_processed_text: [['please'], ['check'], ['pgi'], ['delivery'], ['note'], ['please'], ['check'], ['pgi'], ['delivery'], ['note']] k: 3559 len: <class 'list'> Data: ['account', 'hello', 'unable', 'login', 'bcd', 'travel', 'side', 'creation', 'password', 'failed', 'see', 'gru'] processed_text: ['account', 'hello', 'unable', 'login', 'bcd', 'travel', 'side', 'creation', 'password', 'failed', 'see', 'gru'] list_processed_text: [['account'], ['hello'], ['unable'], ['login'], ['bcd'], ['travel'], ['side'], ['creation'], ['password'], ['failed'], ['see'], ['gru']] k: 3560 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3561 len: <class 'list'> Data: ['poland', 'experience', 'response', 'time', 'slowness', 'poland', 'experience', 'response', 'time', 'slowness'] processed_text: ['poland', 'experience', 'response', 'time', 'slowness', 'poland', 'experience', 'response', 'time', 'slowness'] list_processed_text: [['poland'], ['experience'], ['response'], ['time'], ['slowness'], ['poland'], ['experience'], ['response'], ['time'], ['slowness']] k: 3562 len: <class 'list'> Data: ['usa', 'company', 'inc', 'gigabitethernet', 'interface', 'since', 'et', 'usa', 'company', 'inc', 'interface', 'gigabitethernet', 'uplink', 'company', 'na', 'usa', 'usa', 'conforma', 'core', 'sw', 'company', 'na', 'usa', 'usa', 'conforma', 'bld', 'stack', 'swsince', 'et'] processed_text: ['usa', 'company', 'inc', 'gigabitethernet', 'interface', 'since', 'et', 'usa', 'company', 'inc', 'interface', 'gigabitethernet', 'uplink', 'company', 'na', 'usa', 'usa', 'conforma', 'core', 'sw', 'company', 'na', 'usa', 'usa', 'conforma', 'bld', 'stack', 'swsince', 'et'] list_processed_text: [['usa'], ['company'], ['inc'], ['gigabitethernet'], ['interface'], ['since'], ['et'], ['usa'], ['company'], ['inc'], ['interface'], ['gigabitethernet'], ['uplink'], ['company'], ['na'], ['usa'], ['usa'], ['conforma'], ['core'], ['sw'], ['company'], ['na'], ['usa'], ['usa'], ['conforma'], ['bld'], ['stack'], ['swsince'], ['et']] k: 3563 len: <class 'list'> Data: ['erp', 'sid', 'long', 'response', 'time', 'long', 'runtime', 'several', 'user', 'rth', 'including', 'experiencing', 'drop', 'performance', 'since', 'hour', 'opening', 'transaction', 'executing', 'transaction', 'extracting', 'data', 'erp', 'take', 'significantly', 'longer', 'usually', 'please', 'check'] processed_text: ['erp', 'sid', 'long', 'response', 'time', 'long', 'runtime', 'several', 'user', 'rth', 'including', 'experiencing', 'drop', 'performance', 'since', 'hour', 'opening', 'transaction', 'executing', 'transaction', 'extracting', 'data', 'erp', 'take', 'significantly', 'longer', 'usually', 'please', 'check'] list_processed_text: [['erp'], ['sid'], ['long'], ['response'], ['time'], ['long'], ['runtime'], ['several'], ['user'], ['rth'], ['including'], ['experiencing'], ['drop'], ['performance'], ['since'], ['hour'], ['opening'], ['transaction'], ['executing'], ['transaction'], ['extracting'], ['data'], ['erp'], ['take'], ['significantly'], ['longer'], ['usually'], ['please'], ['check']] k: 3564 len: <class 'list'> Data: ['collaboration', 'platform', 'hi', 'please', 'advise', 'collaboration', 'platform', 'saving', 'syncing', 'file', 'notice', 'get', 'say', 'sync', 'problem'] processed_text: ['collaboration', 'platform', 'hi', 'please', 'advise', 'collaboration', 'platform', 'saving', 'syncing', 'file', 'notice', 'get', 'say', 'sync', 'problem'] list_processed_text: [['collaboration'], ['platform'], ['hi'], ['please'], ['advise'], ['collaboration'], ['platform'], ['saving'], ['syncing'], ['file'], ['notice'], ['get'], ['say'], ['sync'], ['problem']] k: 3565 len: <class 'list'> Data: ['outlook', 'hang', 'outlook', 'hang'] processed_text: ['outlook', 'hang', 'outlook', 'hang'] list_processed_text: [['outlook'], ['hang'], ['outlook'], ['hang']] k: 3566 len: <class 'list'> Data: ['eu', 'tool', 'problem', 'urgent', 'hello', 'problem', 'eu', 'tool', 'get', 'transfer', 'time', 'employee', 'downloaded', 'file', 'empty', 'without', 'data', 'possible', 'calculate', 'productivity', 'plant', 'germany', 'mit', 'freundlichen', 'gr', 'ssen', 'kind'] processed_text: ['eu', 'tool', 'problem', 'urgent', 'hello', 'problem', 'eu', 'tool', 'get', 'transfer', 'time', 'employee', 'downloaded', 'file', 'empty', 'without', 'data', 'possible', 'calculate', 'productivity', 'plant', 'germany', 'mit', 'freundlichen', 'gr', 'ssen', 'kind'] list_processed_text: [['eu'], ['tool'], ['problem'], ['urgent'], ['hello'], ['problem'], ['eu'], ['tool'], ['get'], ['transfer'], ['time'], ['employee'], ['downloaded'], ['file'], ['empty'], ['without'], ['data'], ['possible'], ['calculate'], ['productivity'], ['plant'], ['germany'], ['mit'], ['freundlichen'], ['gr'], ['ssen'], ['kind']] k: 3567 len: <class 'list'> Data: ['frequent', 'account', 'lock', 'hello', 'please', 'daily', 'reset', 'vpn', 'password', 'account', 'vanghtydec', 'every', 'second', 'time', 'log', 'password', 'blocked', 'please', 'solve', 'problem', 'structural', 'basis', 'contact', 'user', 'vanghtydec'] processed_text: ['frequent', 'account', 'lock', 'hello', 'please', 'daily', 'reset', 'vpn', 'password', 'account', 'vanghtydec', 'every', 'second', 'time', 'log', 'password', 'blocked', 'please', 'solve', 'problem', 'structural', 'basis', 'contact', 'user', 'vanghtydec'] list_processed_text: [['frequent'], ['account'], ['lock'], ['hello'], ['please'], ['daily'], ['reset'], ['vpn'], ['password'], ['account'], ['vanghtydec'], ['every'], ['second'], ['time'], ['log'], ['password'], ['blocked'], ['please'], ['solve'], ['problem'], ['structural'], ['basis'], ['contact'], ['user'], ['vanghtydec']] k: 3568 len: <class 'list'> Data: ['please', 'provide', 'permission', 'file', 'department', 'networking', 'please', 'provide', 'permission', 'file', 'department', 'networking'] processed_text: ['please', 'provide', 'permission', 'file', 'department', 'networking', 'please', 'provide', 'permission', 'file', 'department', 'networking'] list_processed_text: [['please'], ['provide'], ['permission'], ['file'], ['department'], ['networking'], ['please'], ['provide'], ['permission'], ['file'], ['department'], ['networking']] k: 3569 len: <class 'list'> Data: ['microphone', 'gigaset', 'sl', 'mobile', 'phone', 'defective', 'please', 'change', 'phone'] processed_text: ['microphone', 'gigaset', 'sl', 'mobile', 'phone', 'defective', 'please', 'change', 'phone'] list_processed_text: [['microphone'], ['gigaset'], ['sl'], ['mobile'], ['phone'], ['defective'], ['please'], ['change'], ['phone']] k: 3570 len: <class 'list'> Data: ['ship', 'creation', 'error', 'since', 'many', 'user', 'multiple', 'sold', 'tos', 'assigned', 'profile', 'eg', 'mfg', 'tooltors', 'distributor', 'issue', 'add', 'new', 'ship', 'create', 'new', 'ship', 'related', 'current', 'selected', 'sold', 'work', 'fine', 'change', 'sold', 'create', 'exact', 'ship', 'system', 'error', 'ship', 'already', 'exists', 'problem', 'user', 'cannot', 'create', 'recipient', 'address', 'multiple', 'different', 'sold', 'tos', 'duplication', 'check', 'done', 'existing', 'ship', 'tos', 'currently', 'selected', 'sold'] processed_text: ['ship', 'creation', 'error', 'since', 'many', 'user', 'multiple', 'sold', 'tos', 'assigned', 'profile', 'eg', 'mfg', 'tooltors', 'distributor', 'issue', 'add', 'new', 'ship', 'create', 'new', 'ship', 'related', 'current', 'selected', 'sold', 'work', 'fine', 'change', 'sold', 'create', 'exact', 'ship', 'system', 'error', 'ship', 'already', 'exists', 'problem', 'user', 'cannot', 'create', 'recipient', 'address', 'multiple', 'different', 'sold', 'tos', 'duplication', 'check', 'done', 'existing', 'ship', 'tos', 'currently', 'selected', 'sold'] list_processed_text: [['ship'], ['creation'], ['error'], ['since'], ['many'], ['user'], ['multiple'], ['sold'], ['tos'], ['assigned'], ['profile'], ['eg'], ['mfg'], ['tooltors'], ['distributor'], ['issue'], ['add'], ['new'], ['ship'], ['create'], ['new'], ['ship'], ['related'], ['current'], ['selected'], ['sold'], ['work'], ['fine'], ['change'], ['sold'], ['create'], ['exact'], ['ship'], ['system'], ['error'], ['ship'], ['already'], ['exists'], ['problem'], ['user'], ['cannot'], ['create'], ['recipient'], ['address'], ['multiple'], ['different'], ['sold'], ['tos'], ['duplication'], ['check'], ['done'], ['existing'], ['ship'], ['tos'], ['currently'], ['selected'], ['sold']] k: 3571 len: <class 'list'> Data: ['full', 'access', 'oe', 'drive', 'rth', 'hello', 'help', 'team', 'pls', 'arrange', 'full', 'access', 'oscar', 'usero', 'ivbkzcma', 'nrehuqpa', 'following', 'oe', 'drive', 'team', 'eagcldaten', 'eagcldaten', 'team', 'oe', 'kata', 'file', 'eagcldaten', 'team', 'oe', 'kata'] processed_text: ['full', 'access', 'oe', 'drive', 'rth', 'hello', 'help', 'team', 'pls', 'arrange', 'full', 'access', 'oscar', 'usero', 'ivbkzcma', 'nrehuqpa', 'following', 'oe', 'drive', 'team', 'eagcldaten', 'eagcldaten', 'team', 'oe', 'kata', 'file', 'eagcldaten', 'team', 'oe', 'kata'] list_processed_text: [['full'], ['access'], ['oe'], ['drive'], ['rth'], ['hello'], ['help'], ['team'], ['pls'], ['arrange'], ['full'], ['access'], ['oscar'], ['usero'], ['ivbkzcma'], ['nrehuqpa'], ['following'], ['oe'], ['drive'], ['team'], ['eagcldaten'], ['eagcldaten'], ['team'], ['oe'], ['kata'], ['file'], ['eagcldaten'], ['team'], ['oe'], ['kata']] k: 3572 len: <class 'list'> Data: ['please', 'help', 'logon', 'erp', 'system', 'hello', 'unable', 'logon', 'erp', 'system', 'please', 'help', 'check', 'many'] processed_text: ['please', 'help', 'logon', 'erp', 'system', 'hello', 'unable', 'logon', 'erp', 'system', 'please', 'help', 'check', 'many'] list_processed_text: [['please'], ['help'], ['logon'], ['erp'], ['system'], ['hello'], ['unable'], ['logon'], ['erp'], ['system'], ['please'], ['help'], ['check'], ['many']] k: 3573 len: <class 'list'> Data: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'interface', 'vlan', 'since', 'et', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'vlan', 'interface', 'since', 'et'] processed_text: ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'interface', 'vlan', 'since', 'et', 'engineering', 'toolkuznetsk', 'warehouse', 'company', 'vlan', 'interface', 'since', 'et'] list_processed_text: [['power'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['company'], ['interface'], ['vlan'], ['since'], ['et'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['company'], ['vlan'], ['interface'], ['since'], ['et']] k: 3574 len: <class 'list'> Data: ['awb', 'sin', 'jnb', 'hi', 'johthryugftyson', 'update', 'form', 'team', 'want', 'close', 'issue'] processed_text: ['awb', 'sin', 'jnb', 'hi', 'johthryugftyson', 'update', 'form', 'team', 'want', 'close', 'issue'] list_processed_text: [['awb'], ['sin'], ['jnb'], ['hi'], ['johthryugftyson'], ['update'], ['form'], ['team'], ['want'], ['close'], ['issue']] k: 3575 len: <class 'list'> Data: ['please', 'create', 'list', 'authorization', 'access', 'cvltebaj', 'yzmcfxah', 'rostuhhwr', 'please', 'create', 'list', 'authorization', 'access', 'cvltebaj', 'yzmcfxah', 'rostuhhwr'] processed_text: ['please', 'create', 'list', 'authorization', 'access', 'cvltebaj', 'yzmcfxah', 'rostuhhwr', 'please', 'create', 'list', 'authorization', 'access', 'cvltebaj', 'yzmcfxah', 'rostuhhwr'] list_processed_text: [['please'], ['create'], ['list'], ['authorization'], ['access'], ['cvltebaj'], ['yzmcfxah'], ['rostuhhwr'], ['please'], ['create'], ['list'], ['authorization'], ['access'], ['cvltebaj'], ['yzmcfxah'], ['rostuhhwr']] k: 3576 len: <class 'list'> Data: ['unable', 'create', 'new', 'exepnse', 'report', 'info', 'type', 'error', 'user', 'new', 'employee', 'unable', 'create', 'expense', 'report', 'getting', 'error', 'mentioned', 'screenshot', 'please', 'find', 'attachment'] processed_text: ['unable', 'create', 'new', 'exepnse', 'report', 'info', 'type', 'error', 'user', 'new', 'employee', 'unable', 'create', 'expense', 'report', 'getting', 'error', 'mentioned', 'screenshot', 'please', 'find', 'attachment'] list_processed_text: [['unable'], ['create'], ['new'], ['exepnse'], ['report'], ['info'], ['type'], ['error'], ['user'], ['new'], ['employee'], ['unable'], ['create'], ['expense'], ['report'], ['getting'], ['error'], ['mentioned'], ['screenshot'], ['please'], ['find'], ['attachment']] k: 3577 len: <class 'list'> Data: ['log', 'erp', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt'] processed_text: ['log', 'erp', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt'] list_processed_text: [['log'], ['erp'], ['password'], ['logon'], ['longer'], ['possible'], ['many'], ['failed'], ['attempt']] k: 3578 len: <class 'list'> Data: ['usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone'] processed_text: ['usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone', 'usa', 'access', 'configuring', 'outlook', 'exchange', 'window', 'phone'] list_processed_text: [['usa'], ['access'], ['configuring'], ['outlook'], ['exchange'], ['window'], ['phone'], ['usa'], ['access'], ['configuring'], ['outlook'], ['exchange'], ['window'], ['phone']] k: 3579 len: <class 'list'> Data: ['reset', 'password', 'qdbfemro', 'mcsqzlvd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'log', 'erp'] processed_text: ['reset', 'password', 'qdbfemro', 'mcsqzlvd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'log', 'erp'] list_processed_text: [['reset'], ['password'], ['qdbfemro'], ['mcsqzlvd'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['log'], ['erp']] k: 3580 len: <class 'list'> Data: ['plm', 'response', 'slow', 'hello', 'good', 'day', 'morning', 'observed', 'like', 'plm', 'response', 'slow', 'kindly', 'take', 'action'] processed_text: ['plm', 'response', 'slow', 'hello', 'good', 'day', 'morning', 'observed', 'like', 'plm', 'response', 'slow', 'kindly', 'take', 'action'] list_processed_text: [['plm'], ['response'], ['slow'], ['hello'], ['good'], ['day'], ['morning'], ['observed'], ['like'], ['plm'], ['response'], ['slow'], ['kindly'], ['take'], ['action']] k: 3581 len: <class 'list'> Data: ['user', 'complaining', 'erp', 'response', 'slow', 'getting', 'disconnected', 'frequently', 'user', 'complaining', 'erp', 'response', 'slow', 'getting', 'disconnected', 'frequently'] processed_text: ['user', 'complaining', 'erp', 'response', 'slow', 'getting', 'disconnected', 'frequently', 'user', 'complaining', 'erp', 'response', 'slow', 'getting', 'disconnected', 'frequently'] list_processed_text: [['user'], ['complaining'], ['erp'], ['response'], ['slow'], ['getting'], ['disconnected'], ['frequently'], ['user'], ['complaining'], ['erp'], ['response'], ['slow'], ['getting'], ['disconnected'], ['frequently']] k: 3582 len: <class 'list'> Data: ['given', 'name', 'sur', 'name', 'change', 'required', 'window', 'domin', 'given', 'name', 'surname', 'change', 'required', 'window', 'domain', 'please', 'change', 'hnkwirgv', 'wdgebvpzagavan'] processed_text: ['given', 'name', 'sur', 'name', 'change', 'required', 'window', 'domin', 'given', 'name', 'surname', 'change', 'required', 'window', 'domain', 'please', 'change', 'hnkwirgv', 'wdgebvpzagavan'] list_processed_text: [['given'], ['name'], ['sur'], ['name'], ['change'], ['required'], ['window'], ['domin'], ['given'], ['name'], ['surname'], ['change'], ['required'], ['window'], ['domain'], ['please'], ['change'], ['hnkwirgv'], ['wdgebvpzagavan']] k: 3583 len: <class 'list'> Data: ['erp', 'slow', 'response', 'erp', 'slow', 'take', 'second', 'execute', 'transaction', 'gurhyqsath', 'india'] processed_text: ['erp', 'slow', 'response', 'erp', 'slow', 'take', 'second', 'execute', 'transaction', 'gurhyqsath', 'india'] list_processed_text: [['erp'], ['slow'], ['response'], ['erp'], ['slow'], ['take'], ['second'], ['execute'], ['transaction'], ['gurhyqsath'], ['india']] k: 3584 len: <class 'list'> Data: ['apac', 'company', 'fastethernet', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'since', 'et', 'apac', 'company', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'company', 'com', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et'] processed_text: ['apac', 'company', 'fastethernet', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'since', 'et', 'apac', 'company', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'company', 'com', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et'] list_processed_text: [['apac'], ['company'], ['fastethernet'], ['company'], ['ap'], ['chn'], ['apac'], ['shop'], ['closet'], ['access'], ['sw'], ['since'], ['et'], ['apac'], ['company'], ['company'], ['ap'], ['chn'], ['apac'], ['shop'], ['closet'], ['access'], ['sw'], ['company'], ['com'], ['fastethernet'], ['uplink'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['since'], ['et']] k: 3585 len: <class 'list'> Data: ['security', 'tool', 'notification', 'password', 'verification', 'failure', 'monitoring', 'tool', 'azure', 'server', 'clhqsm', 'ugyothfz', 'ugrmkdhx', 'ntteam', 'stefyty', 'dabhruji', 'xomkhzrq', 'vytqlphd', 'datacenter', 'bhayhtrathramdnty', 'mamilujli', 'bhayhtrathramdnty', 'gzhapcld', 'fdigznbk', 'hnynhsth', 'jsuyhwssad', 'kathght', 'shfhyw', 'clhqsm', 'notification', 'password', 'verification', 'failure', 'hello', 'window', 'server', 'support', 'nvyjtmca', 'xjhpznds', 'operation', 'received', 'password', 'verification', 'failure', 'security', 'tool', 'attempting', 'connect', 'monitoring', 'tool', 'azure', 'server', 'clhqsm', 'look', 'like', 'server', 'exit', 'company', 'domain', 'unable', 'connect', 'server', 'please', 'find', 'log', 'detail', 'alert', 'confirm', 'server', 'still', 'active', 'decommissioned'] processed_text: ['security', 'tool', 'notification', 'password', 'verification', 'failure', 'monitoring', 'tool', 'azure', 'server', 'clhqsm', 'ugyothfz', 'ugrmkdhx', 'ntteam', 'stefyty', 'dabhruji', 'xomkhzrq', 'vytqlphd', 'datacenter', 'bhayhtrathramdnty', 'mamilujli', 'bhayhtrathramdnty', 'gzhapcld', 'fdigznbk', 'hnynhsth', 'jsuyhwssad', 'kathght', 'shfhyw', 'clhqsm', 'notification', 'password', 'verification', 'failure', 'hello', 'window', 'server', 'support', 'nvyjtmca', 'xjhpznds', 'operation', 'received', 'password', 'verification', 'failure', 'security', 'tool', 'attempting', 'connect', 'monitoring', 'tool', 'azure', 'server', 'clhqsm', 'look', 'like', 'server', 'exit', 'company', 'domain', 'unable', 'connect', 'server', 'please', 'find', 'log', 'detail', 'alert', 'confirm', 'server', 'still', 'active', 'decommissioned'] list_processed_text: [['security'], ['tool'], ['notification'], ['password'], ['verification'], ['failure'], ['monitoring'], ['tool'], ['azure'], ['server'], ['clhqsm'], ['ugyothfz'], ['ugrmkdhx'], ['ntteam'], ['stefyty'], ['dabhruji'], ['xomkhzrq'], ['vytqlphd'], ['datacenter'], ['bhayhtrathramdnty'], ['mamilujli'], ['bhayhtrathramdnty'], ['gzhapcld'], ['fdigznbk'], ['hnynhsth'], ['jsuyhwssad'], ['kathght'], ['shfhyw'], ['clhqsm'], ['notification'], ['password'], ['verification'], ['failure'], ['hello'], ['window'], ['server'], ['support'], ['nvyjtmca'], ['xjhpznds'], ['operation'], ['received'], ['password'], ['verification'], ['failure'], ['security'], ['tool'], ['attempting'], ['connect'], ['monitoring'], ['tool'], ['azure'], ['server'], ['clhqsm'], ['look'], ['like'], ['server'], ['exit'], ['company'], ['domain'], ['unable'], ['connect'], ['server'], ['please'], ['find'], ['log'], ['detail'], ['alert'], ['confirm'], ['server'], ['still'], ['active'], ['decommissioned']] k: 3586 len: <class 'list'> Data: ['apac', 'china', 'apac', 'plant', 'reported', 'erp', 'slowness', 'apac', 'china', 'apac', 'plant', 'reported', 'erp', 'slowness'] processed_text: ['apac', 'china', 'apac', 'plant', 'reported', 'erp', 'slowness', 'apac', 'china', 'apac', 'plant', 'reported', 'erp', 'slowness'] list_processed_text: [['apac'], ['china'], ['apac'], ['plant'], ['reported'], ['erp'], ['slowness'], ['apac'], ['china'], ['apac'], ['plant'], ['reported'], ['erp'], ['slowness']] k: 3587 len: <class 'list'> Data: ['acct', 'account', 'extended', 'div', 'crm', 'new', 'extension', 'replicated', 'sid', 'yet', 'please', 'advise', 'nkthumgf', 'mwgdenbs', 'ph'] processed_text: ['acct', 'account', 'extended', 'div', 'crm', 'new', 'extension', 'replicated', 'sid', 'yet', 'please', 'advise', 'nkthumgf', 'mwgdenbs', 'ph'] list_processed_text: [['acct'], ['account'], ['extended'], ['div'], ['crm'], ['new'], ['extension'], ['replicated'], ['sid'], ['yet'], ['please'], ['advise'], ['nkthumgf'], ['mwgdenbs'], ['ph']] k: 3588 len: <class 'list'> Data: ['outlook', 'isue', 'user', 'called', 'back', 'keep', 'restart', 'outlook', 'computer'] processed_text: ['outlook', 'isue', 'user', 'called', 'back', 'keep', 'restart', 'outlook', 'computer'] list_processed_text: [['outlook'], ['isue'], ['user'], ['called'], ['back'], ['keep'], ['restart'], ['outlook'], ['computer']] k: 3589 len: <class 'list'> Data: ['dell', 'sound', 'issue', 'dell', 'sound', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'sound', 'driver', 'restarted', 'pc', 'sound', 'working', 'fine', 'issue', 'resolved'] processed_text: ['dell', 'sound', 'issue', 'dell', 'sound', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'sound', 'driver', 'restarted', 'pc', 'sound', 'working', 'fine', 'issue', 'resolved'] list_processed_text: [['dell'], ['sound'], ['issue'], ['dell'], ['sound'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['installed'], ['sound'], ['driver'], ['restarted'], ['pc'], ['sound'], ['working'], ['fine'], ['issue'], ['resolved']] k: 3590 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 3591 len: <class 'list'> Data: ['account', 'user', 'morhyerw', 'repeatedly', 'locked', 'please', 'run', 'trace', 'determine', 'cause', 'past', 'two', 'day', 'account', 'repeatedly', 'locked', 'entering', 'wrong', 'password', 'thrgxqsuojr', 'xwbesorfs', 'row', 'pc', 'keyhtyvin', 'toriaytun', 'unlocked', 'several', 'time', 'keyhtyvin', 'asked', 'request', 'trace', 'determine', 'causing', 'account', 'locked'] processed_text: ['account', 'user', 'morhyerw', 'repeatedly', 'locked', 'please', 'run', 'trace', 'determine', 'cause', 'past', 'two', 'day', 'account', 'repeatedly', 'locked', 'entering', 'wrong', 'password', 'thrgxqsuojr', 'xwbesorfs', 'row', 'pc', 'keyhtyvin', 'toriaytun', 'unlocked', 'several', 'time', 'keyhtyvin', 'asked', 'request', 'trace', 'determine', 'causing', 'account', 'locked'] list_processed_text: [['account'], ['user'], ['morhyerw'], ['repeatedly'], ['locked'], ['please'], ['run'], ['trace'], ['determine'], ['cause'], ['past'], ['two'], ['day'], ['account'], ['repeatedly'], ['locked'], ['entering'], ['wrong'], ['password'], ['thrgxqsuojr'], ['xwbesorfs'], ['row'], ['pc'], ['keyhtyvin'], ['toriaytun'], ['unlocked'], ['several'], ['time'], ['keyhtyvin'], ['asked'], ['request'], ['trace'], ['determine'], ['causing'], ['account'], ['locked']] k: 3592 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'reinstalled', 'mscrm', 'restarted', 'pc', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] processed_text: ['outlook', 'launching', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'uninstalled', 'reinstalled', 'mscrm', 'restarted', 'pc', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['uninstalled'], ['reinstalled'], ['mscrm'], ['restarted'], ['pc'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved']] k: 3593 len: <class 'list'> Data: ['workflow', 'used', 'supervisor', 'usa', 'changed', 'efqhmwpj', 'tgeynlvr', 'supervisor', 'location', 'credit', 'memo', 'return', 'still', 'coming', 'workflow', 'forward', 'today', 'informed', 'nuhfwplj', 'ojcwxser', 'team', 'lead', 'usa', 'usa', 'usa', 'sent', 'update', 'erp', 'get', 'routed', 'properly', 'nealxjbc', 'owjduxai', 'customer', 'service', 'supervisor'] processed_text: ['workflow', 'used', 'supervisor', 'usa', 'changed', 'efqhmwpj', 'tgeynlvr', 'supervisor', 'location', 'credit', 'memo', 'return', 'still', 'coming', 'workflow', 'forward', 'today', 'informed', 'nuhfwplj', 'ojcwxser', 'team', 'lead', 'usa', 'usa', 'usa', 'sent', 'update', 'erp', 'get', 'routed', 'properly', 'nealxjbc', 'owjduxai', 'customer', 'service', 'supervisor'] list_processed_text: [['workflow'], ['used'], ['supervisor'], ['usa'], ['changed'], ['efqhmwpj'], ['tgeynlvr'], ['supervisor'], ['location'], ['credit'], ['memo'], ['return'], ['still'], ['coming'], ['workflow'], ['forward'], ['today'], ['informed'], ['nuhfwplj'], ['ojcwxser'], ['team'], ['lead'], ['usa'], ['usa'], ['usa'], ['sent'], ['update'], ['erp'], ['get'], ['routed'], ['properly'], ['nealxjbc'], ['owjduxai'], ['customer'], ['service'], ['supervisor']] k: 3594 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3595 len: <class 'list'> Data: ['able', 'login', 'vpn', 'able', 'login', 'vpn', 'advised', 'caller', 'restart', 'system', 'check', 'internet', 'connection', 'updated', 'driver', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['able', 'login', 'vpn', 'able', 'login', 'vpn', 'advised', 'caller', 'restart', 'system', 'check', 'internet', 'connection', 'updated', 'driver', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['able'], ['login'], ['vpn'], ['able'], ['login'], ['vpn'], ['advised'], ['caller'], ['restart'], ['system'], ['check'], ['internet'], ['connection'], ['updated'], ['driver'], ['advised'], ['caller'], ['logon'], ['company'], ['vpn'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3596 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'error', 'web', 'page', 'recovering', 'mii', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'erp', 'mii', 'one', 'transaction', 'impacted', 'operator', 'dashbankrd', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'sid', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'happened', 'multiple', 'machine', 'application', 'running', 'slow', 'mii', 'application', 'available', 'operator', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system', 'slow', 'response', 'happens', 'shift', 'change', 'lot', 'activity', 'system'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'error', 'web', 'page', 'recovering', 'mii', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'erp', 'mii', 'one', 'transaction', 'impacted', 'operator', 'dashbankrd', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'sid', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'happened', 'multiple', 'machine', 'application', 'running', 'slow', 'mii', 'application', 'available', 'operator', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system', 'slow', 'response', 'happens', 'shift', 'change', 'lot', 'activity', 'system'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['determine'], ['network'], ['problem'], ['error'], ['web'], ['page'], ['recovering'], ['mii'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['erp'], ['mii'], ['one'], ['transaction'], ['impacted'], ['operator'], ['dashbankrd'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['sid'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['yes'], ['happened'], ['multiple'], ['machine'], ['application'], ['running'], ['slow'], ['mii'], ['application'], ['available'], ['operator'], ['access'], ['data'], ['file'], ['server'], ['comment'], ['issue'], ['system'], ['slow'], ['response'], ['happens'], ['shift'], ['change'], ['lot'], ['activity'], ['system']] k: 3597 len: <class 'list'> Data: ['vip', 'please', 'add', 'allowed', 'sender', 'list', 'usx', 'team', 'member', 'please', 'add', 'allowed', 'sender', 'list', 'usx', 'team', 'member'] processed_text: ['vip', 'please', 'add', 'allowed', 'sender', 'list', 'usx', 'team', 'member', 'please', 'add', 'allowed', 'sender', 'list', 'usx', 'team', 'member'] list_processed_text: [['vip'], ['please'], ['add'], ['allowed'], ['sender'], ['list'], ['usx'], ['team'], ['member'], ['please'], ['add'], ['allowed'], ['sender'], ['list'], ['usx'], ['team'], ['member']] k: 3598 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cant', 'load', 'company', 'home', 'page', 'engineering', 'tool'] processed_text: ['engineering', 'tool', 'working', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cant', 'load', 'company', 'home', 'page', 'engineering', 'tool'] list_processed_text: [['engineering'], ['tool'], ['working'], ['name'], ['mikhghytr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cant'], ['load'], ['company'], ['home'], ['page'], ['engineering'], ['tool']] k: 3599 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3600 len: <class 'list'> Data: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] processed_text: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] list_processed_text: [['call'], ['came'], ['got'], ['disconnected'], ['call'], ['came'], ['got'], ['disconnected']] k: 3601 len: <class 'list'> Data: ['unable', 'update', 'password', 'account', 'unable', 'update', 'password', 'account'] processed_text: ['unable', 'update', 'password', 'account', 'unable', 'update', 'password', 'account'] list_processed_text: [['unable'], ['update'], ['password'], ['account'], ['unable'], ['update'], ['password'], ['account']] k: 3602 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3603 len: <class 'list'> Data: ['cannot', 'print', 'prtqx', 'pc', 'rqxw', 'anymore', 'print', 'stall', 'print', 'queue', 'cannot', 'print', 'prtqx', 'pc', 'rqxw', 'anymore', 'print', 'stall', 'print', 'queue'] processed_text: ['cannot', 'print', 'prtqx', 'pc', 'rqxw', 'anymore', 'print', 'stall', 'print', 'queue', 'cannot', 'print', 'prtqx', 'pc', 'rqxw', 'anymore', 'print', 'stall', 'print', 'queue'] list_processed_text: [['cannot'], ['print'], ['prtqx'], ['pc'], ['rqxw'], ['anymore'], ['print'], ['stall'], ['print'], ['queue'], ['cannot'], ['print'], ['prtqx'], ['pc'], ['rqxw'], ['anymore'], ['print'], ['stall'], ['print'], ['queue']] k: 3604 len: <class 'list'> Data: ['request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view', 'name', 'xnqzhtwu', 'hivumtfz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view'] processed_text: ['request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view', 'name', 'xnqzhtwu', 'hivumtfz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'request', 'remove', 'day', 'pick', 'route', 'logic', 'supply', 'chain', 'customer', 'plant', 'view'] list_processed_text: [['request'], ['remove'], ['day'], ['pick'], ['route'], ['logic'], ['supply'], ['chain'], ['customer'], ['plant'], ['view'], ['name'], ['xnqzhtwu'], ['hivumtfz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['request'], ['remove'], ['day'], ['pick'], ['route'], ['logic'], ['supply'], ['chain'], ['customer'], ['plant'], ['view']] k: 3605 len: <class 'list'> Data: ['computer', 'crashed', 'reboot', 'computer', 'crashed', 'reboot'] processed_text: ['computer', 'crashed', 'reboot', 'computer', 'crashed', 'reboot'] list_processed_text: [['computer'], ['crashed'], ['reboot'], ['computer'], ['crashed'], ['reboot']] k: 3606 len: <class 'list'> Data: ['unable', 'connect', 'outlook', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cant', 'connect', 'outlook'] processed_text: ['unable', 'connect', 'outlook', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cant', 'connect', 'outlook'] list_processed_text: [['unable'], ['connect'], ['outlook'], ['name'], ['mikhghytr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cant'], ['connect'], ['outlook']] k: 3607 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 3608 len: <class 'list'> Data: ['email', 'search', 'option', 'issue', 'hello', 'able', 'search', 'email', 'using', 'subject', 'option', 'case', 'come', 'hence', 'becoming', 'difficult', 'retrieve', 'past', 'detail', 'required', 'many', 'reference', 'plus', 'address', 'book', 'detail', 'also', 'sync', 'automatically', 'pl', 'help', 'fixing'] processed_text: ['email', 'search', 'option', 'issue', 'hello', 'able', 'search', 'email', 'using', 'subject', 'option', 'case', 'come', 'hence', 'becoming', 'difficult', 'retrieve', 'past', 'detail', 'required', 'many', 'reference', 'plus', 'address', 'book', 'detail', 'also', 'sync', 'automatically', 'pl', 'help', 'fixing'] list_processed_text: [['email'], ['search'], ['option'], ['issue'], ['hello'], ['able'], ['search'], ['email'], ['using'], ['subject'], ['option'], ['case'], ['come'], ['hence'], ['becoming'], ['difficult'], ['retrieve'], ['past'], ['detail'], ['required'], ['many'], ['reference'], ['plus'], ['address'], ['book'], ['detail'], ['also'], ['sync'], ['automatically'], ['pl'], ['help'], ['fixing']] k: 3609 len: <class 'list'> Data: ['r', 'ticket', 'change', 'report', 'zsdslsum', 'last', 'email', 'pethrywr', 'lauthry', 'sorry', 'still', 'waiting', 'confirmation', 'agreed', 'globally', 'within', 'finance', 'team', 'emea', 'apac', 'order', 'move', 'otc', 'report', 'used', 'finance', 'team', 'receiving', 'confirmation', 'sorry', 'cancel', 'ticket', 'wait', 'till', 'cancel', 'hope', 'comprehend'] processed_text: ['r', 'ticket', 'change', 'report', 'zsdslsum', 'last', 'email', 'pethrywr', 'lauthry', 'sorry', 'still', 'waiting', 'confirmation', 'agreed', 'globally', 'within', 'finance', 'team', 'emea', 'apac', 'order', 'move', 'otc', 'report', 'used', 'finance', 'team', 'receiving', 'confirmation', 'sorry', 'cancel', 'ticket', 'wait', 'till', 'cancel', 'hope', 'comprehend'] list_processed_text: [['r'], ['ticket'], ['change'], ['report'], ['zsdslsum'], ['last'], ['email'], ['pethrywr'], ['lauthry'], ['sorry'], ['still'], ['waiting'], ['confirmation'], ['agreed'], ['globally'], ['within'], ['finance'], ['team'], ['emea'], ['apac'], ['order'], ['move'], ['otc'], ['report'], ['used'], ['finance'], ['team'], ['receiving'], ['confirmation'], ['sorry'], ['cancel'], ['ticket'], ['wait'], ['till'], ['cancel'], ['hope'], ['comprehend']] k: 3610 len: <class 'list'> Data: ['account', 'expired', 'user', 'coumikzb', 'ubfcwegt', 'account', 'expired', 'user', 'coumikzb', 'ubfcwegt', 'user', 'id', 'viruhytph'] processed_text: ['account', 'expired', 'user', 'coumikzb', 'ubfcwegt', 'account', 'expired', 'user', 'coumikzb', 'ubfcwegt', 'user', 'id', 'viruhytph'] list_processed_text: [['account'], ['expired'], ['user'], ['coumikzb'], ['ubfcwegt'], ['account'], ['expired'], ['user'], ['coumikzb'], ['ubfcwegt'], ['user'], ['id'], ['viruhytph']] k: 3611 len: <class 'list'> Data: ['company', 'email', 'personal', 'smartphone', 'company', 'email', 'personal', 'smartphone'] processed_text: ['company', 'email', 'personal', 'smartphone', 'company', 'email', 'personal', 'smartphone'] list_processed_text: [['company'], ['email'], ['personal'], ['smartphone'], ['company'], ['email'], ['personal'], ['smartphone']] k: 3612 len: <class 'list'> Data: ['usa', 'interface', 'tengigabitethernet', 'tech', 'since', 'et', 'interface', 'tengigabitethernet', 'connection', 'tech', 'interface', 'tengigabitethernet', 'dr', 'connection', 'top'] processed_text: ['usa', 'interface', 'tengigabitethernet', 'tech', 'since', 'et', 'interface', 'tengigabitethernet', 'connection', 'tech', 'interface', 'tengigabitethernet', 'dr', 'connection', 'top'] list_processed_text: [['usa'], ['interface'], ['tengigabitethernet'], ['tech'], ['since'], ['et'], ['interface'], ['tengigabitethernet'], ['connection'], ['tech'], ['interface'], ['tengigabitethernet'], ['dr'], ['connection'], ['top']] k: 3613 len: <class 'list'> Data: ['dell', 'sound', 'issue', 'skype', 'call', 'dell', 'sound', 'issue', 'skype', 'call', 'connected', 'user', 'system', 'using', 'teamviewer', 'upgraded', 'system', 'bios', 'restarted', 'pc', 'checked', 'skype', 'audio', 'setting', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'skype', 'audio', 'working', 'fine', 'contact'] processed_text: ['dell', 'sound', 'issue', 'skype', 'call', 'dell', 'sound', 'issue', 'skype', 'call', 'connected', 'user', 'system', 'using', 'teamviewer', 'upgraded', 'system', 'bios', 'restarted', 'pc', 'checked', 'skype', 'audio', 'setting', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'skype', 'audio', 'working', 'fine', 'contact'] list_processed_text: [['dell'], ['sound'], ['issue'], ['skype'], ['call'], ['dell'], ['sound'], ['issue'], ['skype'], ['call'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['upgraded'], ['system'], ['bios'], ['restarted'], ['pc'], ['checked'], ['skype'], ['audio'], ['setting'], ['gave'], ['uacyltoe'], ['hxgaycze'], ['call'], ['user'], ['skype'], ['audio'], ['working'], ['fine'], ['contact']] k: 3614 len: <class 'list'> Data: ['set', 'authorization', 'r', 'folder', 'need', 'following', 'people', 'germany', 'given', 'authorization', 'folder', 'hostname', 'team', 'sludge', 'shipping', 'sludgeshipping', 'read-only', 'authorization', 'hoscgthke', 'pl', 'metallurgy', 'th', 'langhdte', 'pl', 'cutting', 'unit', 'hbyoyer', 'pl', 'st', 'production', 'dahytrda', 'sv', 'distribution', 'retzkowski', 'controlling', 'chsbhuo', 'controlling'] processed_text: ['set', 'authorization', 'r', 'folder', 'need', 'following', 'people', 'germany', 'given', 'authorization', 'folder', 'hostname', 'team', 'sludge', 'shipping', 'sludgeshipping', 'read-only', 'authorization', 'hoscgthke', 'pl', 'metallurgy', 'th', 'langhdte', 'pl', 'cutting', 'unit', 'hbyoyer', 'pl', 'st', 'production', 'dahytrda', 'sv', 'distribution', 'retzkowski', 'controlling', 'chsbhuo', 'controlling'] list_processed_text: [['set'], ['authorization'], ['r'], ['folder'], ['need'], ['following'], ['people'], ['germany'], ['given'], ['authorization'], ['folder'], ['hostname'], ['team'], ['sludge'], ['shipping'], ['sludgeshipping'], ['read-only'], ['authorization'], ['hoscgthke'], ['pl'], ['metallurgy'], ['th'], ['langhdte'], ['pl'], ['cutting'], ['unit'], ['hbyoyer'], ['pl'], ['st'], ['production'], ['dahytrda'], ['sv'], ['distribution'], ['retzkowski'], ['controlling'], ['chsbhuo'], ['controlling']] k: 3615 len: <class 'list'> Data: ['requesting', 'un', 'install', 'install', 'excel', 'currently', 'running', 'issue', 'context', 'menu', 'displayed', 'right', 'click', 'excel', 'document', 'menu', 'pop', 'excel', 'document', 'frequently', 'use', 'format', 'cell', 'working', 'file', 'please', 'assist'] processed_text: ['requesting', 'un', 'install', 'install', 'excel', 'currently', 'running', 'issue', 'context', 'menu', 'displayed', 'right', 'click', 'excel', 'document', 'menu', 'pop', 'excel', 'document', 'frequently', 'use', 'format', 'cell', 'working', 'file', 'please', 'assist'] list_processed_text: [['requesting'], ['un'], ['install'], ['install'], ['excel'], ['currently'], ['running'], ['issue'], ['context'], ['menu'], ['displayed'], ['right'], ['click'], ['excel'], ['document'], ['menu'], ['pop'], ['excel'], ['document'], ['frequently'], ['use'], ['format'], ['cell'], ['working'], ['file'], ['please'], ['assist']] k: 3616 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3617 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 3618 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 3619 len: <class 'list'> Data: ['unable', 'connect', 'projector', 'dear', 'sir', 'unable', 'connect', 'projector', 'system', 'best'] processed_text: ['unable', 'connect', 'projector', 'dear', 'sir', 'unable', 'connect', 'projector', 'system', 'best'] list_processed_text: [['unable'], ['connect'], ['projector'], ['dear'], ['sir'], ['unable'], ['connect'], ['projector'], ['system'], ['best']] k: 3620 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 3621 len: <class 'list'> Data: ['mii', 'password', 'reset', 'mii', 'password', 'reset'] processed_text: ['mii', 'password', 'reset', 'mii', 'password', 'reset'] list_processed_text: [['mii'], ['password'], ['reset'], ['mii'], ['password'], ['reset']] k: 3622 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3623 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3624 len: <class 'list'> Data: ['erp', 'access', 'issue', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'nehsytwrrej', 'transaction', 'code', 'user', 'need', 'working', 'grwtfer', 'describe', 'issue', 'see', 'attachment', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'attached', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'nehsytwrrej', 'transaction', 'code', 'user', 'need', 'working', 'grwtfer', 'describe', 'issue', 'see', 'attachment', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'attached', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['sid'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['nehsytwrrej'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['grwtfer'], ['describe'], ['issue'], ['see'], ['attachment'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['attached'], ['provide'], ['access'], ['user']] k: 3625 len: <class 'list'> Data: ['need', 'little', 'help', 'please', 'good', 'morning', 'yes', 'use', 'chk', 'usa', 'well', 'good', 'day', 'damuphws', 'arkulcoi', 'shipping', 'inventory', 'specialist', 'company', 'inc', 'smxoklny', 'hbecskgl', 'chnagdrtymk', 'damuphws', 'arkulcoi', 'eples', 'need', 'little', 'help', 'please', 'chahdtyru', 'confirmed', 'usa', 'using', 'chk', 'process', 'best'] processed_text: ['need', 'little', 'help', 'please', 'good', 'morning', 'yes', 'use', 'chk', 'usa', 'well', 'good', 'day', 'damuphws', 'arkulcoi', 'shipping', 'inventory', 'specialist', 'company', 'inc', 'smxoklny', 'hbecskgl', 'chnagdrtymk', 'damuphws', 'arkulcoi', 'eples', 'need', 'little', 'help', 'please', 'chahdtyru', 'confirmed', 'usa', 'using', 'chk', 'process', 'best'] list_processed_text: [['need'], ['little'], ['help'], ['please'], ['good'], ['morning'], ['yes'], ['use'], ['chk'], ['usa'], ['well'], ['good'], ['day'], ['damuphws'], ['arkulcoi'], ['shipping'], ['inventory'], ['specialist'], ['company'], ['inc'], ['smxoklny'], ['hbecskgl'], ['chnagdrtymk'], ['damuphws'], ['arkulcoi'], ['eples'], ['need'], ['little'], ['help'], ['please'], ['chahdtyru'], ['confirmed'], ['usa'], ['using'], ['chk'], ['process'], ['best']] k: 3626 len: <class 'list'> Data: ['order', 'product', 'online', 'problem', 'hello', 'ask', 'help', 'solve', 'help', 'bos', 'tomorrow'] processed_text: ['order', 'product', 'online', 'problem', 'hello', 'ask', 'help', 'solve', 'help', 'bos', 'tomorrow'] list_processed_text: [['order'], ['product'], ['online'], ['problem'], ['hello'], ['ask'], ['help'], ['solve'], ['help'], ['bos'], ['tomorrow']] k: 3627 len: <class 'list'> Data: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] processed_text: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['gso'], ['loud'], ['noise'], ['blank'], ['call'], ['gso'], ['loud'], ['noise']] k: 3628 len: <class 'list'> Data: ['order', 'product', 'online', 'problem', 'hello', 'ask', 'help', 'solve', 'help', 'bos', 'tomorrow'] processed_text: ['order', 'product', 'online', 'problem', 'hello', 'ask', 'help', 'solve', 'help', 'bos', 'tomorrow'] list_processed_text: [['order'], ['product'], ['online'], ['problem'], ['hello'], ['ask'], ['help'], ['solve'], ['help'], ['bos'], ['tomorrow']] k: 3629 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3630 len: <class 'list'> Data: ['need', 'little', 'help', 'please', 'chandruhdty', 'confirmed', 'usa', 'using', 'chk', 'process', 'best'] processed_text: ['need', 'little', 'help', 'please', 'chandruhdty', 'confirmed', 'usa', 'using', 'chk', 'process', 'best'] list_processed_text: [['need'], ['little'], ['help'], ['please'], ['chandruhdty'], ['confirmed'], ['usa'], ['using'], ['chk'], ['process'], ['best']] k: 3631 len: <class 'list'> Data: ['laptop', 'booting', 'laptop', 'booting'] processed_text: ['laptop', 'booting', 'laptop', 'booting'] list_processed_text: [['laptop'], ['booting'], ['laptop'], ['booting']] k: 3632 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 3633 len: <class 'list'> Data: ['need', 'check', 'sdlixwmb', 'zvygmnco', 'account', 'locked', 'need', 'check', 'sdlixwmb', 'zvygmnco', 'account', 'locked'] processed_text: ['need', 'check', 'sdlixwmb', 'zvygmnco', 'account', 'locked', 'need', 'check', 'sdlixwmb', 'zvygmnco', 'account', 'locked'] list_processed_text: [['need'], ['check'], ['sdlixwmb'], ['zvygmnco'], ['account'], ['locked'], ['need'], ['check'], ['sdlixwmb'], ['zvygmnco'], ['account'], ['locked']] k: 3634 len: <class 'list'> Data: ['called', 'check', 'change', 'lanhuage', 'office', 'called', 'check', 'change', 'lanhuage', 'office'] processed_text: ['called', 'check', 'change', 'lanhuage', 'office', 'called', 'check', 'change', 'lanhuage', 'office'] list_processed_text: [['called'], ['check'], ['change'], ['lanhuage'], ['office'], ['called'], ['check'], ['change'], ['lanhuage'], ['office']] k: 3635 len: <class 'list'> Data: ['unable', 'update', 'password', 'unable', 'update', 'password'] processed_text: ['unable', 'update', 'password', 'unable', 'update', 'password'] list_processed_text: [['unable'], ['update'], ['password'], ['unable'], ['update'], ['password']] k: 3636 len: <class 'list'> Data: ['vip', 'erp', 'sid', 'account', 'unlock', 'vip', 'erp', 'sid', 'account', 'unlock'] processed_text: ['vip', 'erp', 'sid', 'account', 'unlock', 'vip', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['vip'], ['erp'], ['sid'], ['account'], ['unlock'], ['vip'], ['erp'], ['sid'], ['account'], ['unlock']] k: 3637 len: <class 'list'> Data: ['crm', 'configuration', 'password', 'reset', 'crm', 'configuration', 'password', 'reset'] processed_text: ['crm', 'configuration', 'password', 'reset', 'crm', 'configuration', 'password', 'reset'] list_processed_text: [['crm'], ['configuration'], ['password'], ['reset'], ['crm'], ['configuration'], ['password'], ['reset']] k: 3638 len: <class 'list'> Data: ['general', 'enquiry', 'engineering', 'tool', 'installation', 'window', 'xp', 'general', 'enquiry', 'engineering', 'tool', 'installation', 'window', 'xp'] processed_text: ['general', 'enquiry', 'engineering', 'tool', 'installation', 'window', 'xp', 'general', 'enquiry', 'engineering', 'tool', 'installation', 'window', 'xp'] list_processed_text: [['general'], ['enquiry'], ['engineering'], ['tool'], ['installation'], ['window'], ['xp'], ['general'], ['enquiry'], ['engineering'], ['tool'], ['installation'], ['window'], ['xp']] k: 3639 len: <class 'list'> Data: ['network', 'outage', 'canada', 'ontario', 'company', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'canada', 'ontario', 'company', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['canada'], ['ontario'], ['company'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3640 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3641 len: <class 'list'> Data: ['please', 'activate', 'new', 'company', 'owned', 'samsung', 'galaxy', 'office', 'access', 'hello', 'please', 'activate', 'new', 'company', 'owned', 'samsung', 'galaxy', 'office', 'access', 'ger', 'temodell', 'sm', 'gf', 'ger', 'tetyp', 'samsungsmgf', 'ger', 'te', 'id', 'seceffa', 'ger', 'tebetriebssystem', 'android', 'ger', 'tebenutzer', 'agent', 'android', 'samsung', 'sm', 'gf', 'ger', 'te', 'imei', 'exchange', 'activesync', 'version', 'ger', 'tezugriffsstatus', 'quarantined', 'grund', 'r', 'ger', 'tezugriffsstatus', 'global', 'remove', 'existing', 'samsung', 'galaxy', 'device', 'account', 'remove', 'device', 'access', 'account'] processed_text: ['please', 'activate', 'new', 'company', 'owned', 'samsung', 'galaxy', 'office', 'access', 'hello', 'please', 'activate', 'new', 'company', 'owned', 'samsung', 'galaxy', 'office', 'access', 'ger', 'temodell', 'sm', 'gf', 'ger', 'tetyp', 'samsungsmgf', 'ger', 'te', 'id', 'seceffa', 'ger', 'tebetriebssystem', 'android', 'ger', 'tebenutzer', 'agent', 'android', 'samsung', 'sm', 'gf', 'ger', 'te', 'imei', 'exchange', 'activesync', 'version', 'ger', 'tezugriffsstatus', 'quarantined', 'grund', 'r', 'ger', 'tezugriffsstatus', 'global', 'remove', 'existing', 'samsung', 'galaxy', 'device', 'account', 'remove', 'device', 'access', 'account'] list_processed_text: [['please'], ['activate'], ['new'], ['company'], ['owned'], ['samsung'], ['galaxy'], ['office'], ['access'], ['hello'], ['please'], ['activate'], ['new'], ['company'], ['owned'], ['samsung'], ['galaxy'], ['office'], ['access'], ['ger'], ['temodell'], ['sm'], ['gf'], ['ger'], ['tetyp'], ['samsungsmgf'], ['ger'], ['te'], ['id'], ['seceffa'], ['ger'], ['tebetriebssystem'], ['android'], ['ger'], ['tebenutzer'], ['agent'], ['android'], ['samsung'], ['sm'], ['gf'], ['ger'], ['te'], ['imei'], ['exchange'], ['activesync'], ['version'], ['ger'], ['tezugriffsstatus'], ['quarantined'], ['grund'], ['r'], ['ger'], ['tezugriffsstatus'], ['global'], ['remove'], ['existing'], ['samsung'], ['galaxy'], ['device'], ['account'], ['remove'], ['device'], ['access'], ['account']] k: 3642 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 3643 len: <class 'list'> Data: ['work', 'need', 'add', 'two', 'mailbox', 'outlook', 'still', 'working', 'outlook', 'work'] processed_text: ['work', 'need', 'add', 'two', 'mailbox', 'outlook', 'still', 'working', 'outlook', 'work'] list_processed_text: [['work'], ['need'], ['add'], ['two'], ['mailbox'], ['outlook'], ['still'], ['working'], ['outlook'], ['work']] k: 3644 len: <class 'list'> Data: ['printer', 'wk', 'defective', 'printer', 'wk', 'defective'] processed_text: ['printer', 'wk', 'defective', 'printer', 'wk', 'defective'] list_processed_text: [['printer'], ['wk'], ['defective'], ['printer'], ['wk'], ['defective']] k: 3645 len: <class 'list'> Data: ['password', 'reset', 'expired', 'password', 'reset', 'expired'] processed_text: ['password', 'reset', 'expired', 'password', 'reset', 'expired'] list_processed_text: [['password'], ['reset'], ['expired'], ['password'], ['reset'], ['expired']] k: 3646 len: <class 'list'> Data: ['modify', 'teamsales', 'sproc', 'calculate', 'full', 'ytd', 'instead', 'delta', 'current', 'team', 'sproc', 'calculates', 'delta', 'value', 'add', 'previous', 'period', 'ytd', 'sale', 'get', 'full', 'ytd', 'sale', 'need', 'changed', 'instead', 'calculating', 'delta', 'procedure', 'calculate', 'true', 'ytd', 'number', 'applying', 'current', 'allocation', 'percentage', 'retroactively', 'summing', 'direct', 'revenue', 'adjustment', 'together'] processed_text: ['modify', 'teamsales', 'sproc', 'calculate', 'full', 'ytd', 'instead', 'delta', 'current', 'team', 'sproc', 'calculates', 'delta', 'value', 'add', 'previous', 'period', 'ytd', 'sale', 'get', 'full', 'ytd', 'sale', 'need', 'changed', 'instead', 'calculating', 'delta', 'procedure', 'calculate', 'true', 'ytd', 'number', 'applying', 'current', 'allocation', 'percentage', 'retroactively', 'summing', 'direct', 'revenue', 'adjustment', 'together'] list_processed_text: [['modify'], ['teamsales'], ['sproc'], ['calculate'], ['full'], ['ytd'], ['instead'], ['delta'], ['current'], ['team'], ['sproc'], ['calculates'], ['delta'], ['value'], ['add'], ['previous'], ['period'], ['ytd'], ['sale'], ['get'], ['full'], ['ytd'], ['sale'], ['need'], ['changed'], ['instead'], ['calculating'], ['delta'], ['procedure'], ['calculate'], ['true'], ['ytd'], ['number'], ['applying'], ['current'], ['allocation'], ['percentage'], ['retroactively'], ['summing'], ['direct'], ['revenue'], ['adjustment'], ['together']] k: 3647 len: <class 'list'> Data: ['infopath', 'link', 'discount', 'form', 'open', 'hello', 'discount', 'team', 'pozna', 'unable', 'open', 'discount', 'request', 'form', 'link', 'inboxes', 'error', 'occurs', 'hugely', 'impact', 'team', 'productivity', 'please', 'address', 'soon', 'possible', 'attached', 'two', 'print', 'screen', 'one', 'example', 'said', 'link', 'one', 'error', 'occurs', 'trying', 'open', 'discount', 'form'] processed_text: ['infopath', 'link', 'discount', 'form', 'open', 'hello', 'discount', 'team', 'pozna', 'unable', 'open', 'discount', 'request', 'form', 'link', 'inboxes', 'error', 'occurs', 'hugely', 'impact', 'team', 'productivity', 'please', 'address', 'soon', 'possible', 'attached', 'two', 'print', 'screen', 'one', 'example', 'said', 'link', 'one', 'error', 'occurs', 'trying', 'open', 'discount', 'form'] list_processed_text: [['infopath'], ['link'], ['discount'], ['form'], ['open'], ['hello'], ['discount'], ['team'], ['pozna'], ['unable'], ['open'], ['discount'], ['request'], ['form'], ['link'], ['inboxes'], ['error'], ['occurs'], ['hugely'], ['impact'], ['team'], ['productivity'], ['please'], ['address'], ['soon'], ['possible'], ['attached'], ['two'], ['print'], ['screen'], ['one'], ['example'], ['said'], ['link'], ['one'], ['error'], ['occurs'], ['trying'], ['open'], ['discount'], ['form']] k: 3648 len: <class 'list'> Data: ['unable', 'load', 'erp', 'unable', 'load', 'erp'] processed_text: ['unable', 'load', 'erp', 'unable', 'load', 'erp'] list_processed_text: [['unable'], ['load'], ['erp'], ['unable'], ['load'], ['erp']] k: 3649 len: <class 'list'> Data: ['recall', 'ticket', 'due', 'date', 'updated', 'edt', 'riqmdnzs', 'mtlghwex', 'would', 'like', 'recall', 'message', 'ticket', 'due', 'date', 'updated', 'edt'] processed_text: ['recall', 'ticket', 'due', 'date', 'updated', 'edt', 'riqmdnzs', 'mtlghwex', 'would', 'like', 'recall', 'message', 'ticket', 'due', 'date', 'updated', 'edt'] list_processed_text: [['recall'], ['ticket'], ['due'], ['date'], ['updated'], ['edt'], ['riqmdnzs'], ['mtlghwex'], ['would'], ['like'], ['recall'], ['message'], ['ticket'], ['due'], ['date'], ['updated'], ['edt']] k: 3650 len: <class 'list'> Data: ['connect', 'companysecure', 'connect', 'companysecure'] processed_text: ['connect', 'companysecure', 'connect', 'companysecure'] list_processed_text: [['connect'], ['companysecure'], ['connect'], ['companysecure']] k: 3651 len: <class 'list'> Data: ['unable', 'get', 'network', 'drive', 'unable', 'get', 'network', 'drive'] processed_text: ['unable', 'get', 'network', 'drive', 'unable', 'get', 'network', 'drive'] list_processed_text: [['unable'], ['get'], ['network'], ['drive'], ['unable'], ['get'], ['network'], ['drive']] k: 3652 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 3653 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3654 len: <class 'list'> Data: ['cannot', 'provide', 'data', 'crm', 'provide', 'information', 'crm', 'working', 'website', 'stopping', 'job', 'showing', 'kind', 'alert', 'attached', 'happening', 'yesterday', 'today', 'every', 'second', 'every', 'time', 'starting', 'fill', 'data', 'worked', 'started', 'happening'] processed_text: ['cannot', 'provide', 'data', 'crm', 'provide', 'information', 'crm', 'working', 'website', 'stopping', 'job', 'showing', 'kind', 'alert', 'attached', 'happening', 'yesterday', 'today', 'every', 'second', 'every', 'time', 'starting', 'fill', 'data', 'worked', 'started', 'happening'] list_processed_text: [['cannot'], ['provide'], ['data'], ['crm'], ['provide'], ['information'], ['crm'], ['working'], ['website'], ['stopping'], ['job'], ['showing'], ['kind'], ['alert'], ['attached'], ['happening'], ['yesterday'], ['today'], ['every'], ['second'], ['every'], ['time'], ['starting'], ['fill'], ['data'], ['worked'], ['started'], ['happening']] k: 3655 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3656 len: <class 'list'> Data: ['due', 'new', 'hardware', 'usa', 'access', 'exchange', 'account', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator'] processed_text: ['due', 'new', 'hardware', 'usa', 'access', 'exchange', 'account', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator'] list_processed_text: [['due'], ['new'], ['hardware'], ['usa'], ['access'], ['exchange'], ['account'], ['synchronization'], ['exchange'], ['activesync'], ['temporarily'], ['blocked'], ['ger'], ['access'], ['granted'], ['administrator']] k: 3657 len: <class 'list'> Data: ['erro', 'programdntya', 'docad', 'please', 'problem', 'related', 'south', 'amerirtca'] processed_text: ['erro', 'programdntya', 'docad', 'please', 'problem', 'related', 'south', 'amerirtca'] list_processed_text: [['erro'], ['programdntya'], ['docad'], ['please'], ['problem'], ['related'], ['south'], ['amerirtca']] k: 3658 len: <class 'list'> Data: ['loop', 'back', 'ip', 'primary', 'router', 'erkheim', 'went', 'unreachable', 'loop', 'back', 'ip', 'primary', 'router', 'erkheim', 'went', 'unreachable'] processed_text: ['loop', 'back', 'ip', 'primary', 'router', 'erkheim', 'went', 'unreachable', 'loop', 'back', 'ip', 'primary', 'router', 'erkheim', 'went', 'unreachable'] list_processed_text: [['loop'], ['back'], ['ip'], ['primary'], ['router'], ['erkheim'], ['went'], ['unreachable'], ['loop'], ['back'], ['ip'], ['primary'], ['router'], ['erkheim'], ['went'], ['unreachable']] k: 3659 len: <class 'list'> Data: ['account', 'lock', 'account', 'lock'] processed_text: ['account', 'lock', 'account', 'lock'] list_processed_text: [['account'], ['lock'], ['account'], ['lock']] k: 3660 len: <class 'list'> Data: ['cannot', 'open', 'new', 'lean', 'tracker', 'form', 'hello', 'greeting', 'day', 'please', 'help', 'open', 'fy', 'add', 'lean', 'event', 'form', 'tried', 'open', 'got', 'following', 'message', 'said', 'update', 'infopath', 'newer', 'version'] processed_text: ['cannot', 'open', 'new', 'lean', 'tracker', 'form', 'hello', 'greeting', 'day', 'please', 'help', 'open', 'fy', 'add', 'lean', 'event', 'form', 'tried', 'open', 'got', 'following', 'message', 'said', 'update', 'infopath', 'newer', 'version'] list_processed_text: [['cannot'], ['open'], ['new'], ['lean'], ['tracker'], ['form'], ['hello'], ['greeting'], ['day'], ['please'], ['help'], ['open'], ['fy'], ['add'], ['lean'], ['event'], ['form'], ['tried'], ['open'], ['got'], ['following'], ['message'], ['said'], ['update'], ['infopath'], ['newer'], ['version']] k: 3661 len: <class 'list'> Data: ['monitor', 'st', 'st', 'end', 'control', 'defective', 'monitor', 'st', 'st', 'end', 'control', 'defective'] processed_text: ['monitor', 'st', 'st', 'end', 'control', 'defective', 'monitor', 'st', 'st', 'end', 'control', 'defective'] list_processed_text: [['monitor'], ['st'], ['st'], ['end'], ['control'], ['defective'], ['monitor'], ['st'], ['st'], ['end'], ['control'], ['defective']] k: 3662 len: <class 'list'> Data: ['user', 'password', 'hi', 'team', 'could', 'please', 'reset', 'password', 'user', 'dw', 'daypay', 'user', 'forgot', 'password'] processed_text: ['user', 'password', 'hi', 'team', 'could', 'please', 'reset', 'password', 'user', 'dw', 'daypay', 'user', 'forgot', 'password'] list_processed_text: [['user'], ['password'], ['hi'], ['team'], ['could'], ['please'], ['reset'], ['password'], ['user'], ['dw'], ['daypay'], ['user'], ['forgot'], ['password']] k: 3663 len: <class 'list'> Data: ['bwa', 'index', 'bw', 'query', 'failed', 'due', 'bwa', 'server', 'overloaded', 'dear', 'team', 'facing', 'error', 'bwa', 'indexing', 'quer', 'sid', 'due', 'bwa', 'server', 'loaded', 'error', 'checked', 'filter', 'query', 'month', 'data', 'fy', 'please', 'suggest', 'server', 'bwa', 'overloaded', 'operating', 'fine', 'request', 'provide', 'resolution', 'earliest'] processed_text: ['bwa', 'index', 'bw', 'query', 'failed', 'due', 'bwa', 'server', 'overloaded', 'dear', 'team', 'facing', 'error', 'bwa', 'indexing', 'quer', 'sid', 'due', 'bwa', 'server', 'loaded', 'error', 'checked', 'filter', 'query', 'month', 'data', 'fy', 'please', 'suggest', 'server', 'bwa', 'overloaded', 'operating', 'fine', 'request', 'provide', 'resolution', 'earliest'] list_processed_text: [['bwa'], ['index'], ['bw'], ['query'], ['failed'], ['due'], ['bwa'], ['server'], ['overloaded'], ['dear'], ['team'], ['facing'], ['error'], ['bwa'], ['indexing'], ['quer'], ['sid'], ['due'], ['bwa'], ['server'], ['loaded'], ['error'], ['checked'], ['filter'], ['query'], ['month'], ['data'], ['fy'], ['please'], ['suggest'], ['server'], ['bwa'], ['overloaded'], ['operating'], ['fine'], ['request'], ['provide'], ['resolution'], ['earliest']] k: 3664 len: <class 'list'> Data: ['problem', 'creating', 'pgi', 'transaction', 'vln', 'enter', 'batch', 'problem', 'creating', 'pgi', 'transaction', 'vln', 'enter', 'batch', 'need', 'every', 'time', 'need', 'enter', 'batch', 'asking', 'german', 'warehouse', 'colleague', 'sad', 'u', 'function', 'locked', 'erp', 'account', 'could', 'help', 'please'] processed_text: ['problem', 'creating', 'pgi', 'transaction', 'vln', 'enter', 'batch', 'problem', 'creating', 'pgi', 'transaction', 'vln', 'enter', 'batch', 'need', 'every', 'time', 'need', 'enter', 'batch', 'asking', 'german', 'warehouse', 'colleague', 'sad', 'u', 'function', 'locked', 'erp', 'account', 'could', 'help', 'please'] list_processed_text: [['problem'], ['creating'], ['pgi'], ['transaction'], ['vln'], ['enter'], ['batch'], ['problem'], ['creating'], ['pgi'], ['transaction'], ['vln'], ['enter'], ['batch'], ['need'], ['every'], ['time'], ['need'], ['enter'], ['batch'], ['asking'], ['german'], ['warehouse'], ['colleague'], ['sad'], ['u'], ['function'], ['locked'], ['erp'], ['account'], ['could'], ['help'], ['please']] k: 3665 len: <class 'list'> Data: ['mouse', 'defective', 'hello', 'howfanzi', 'siavgtby', 'need', 'new', 'decent', 'mouse', 'hre', 'sch', 'bring', 'u', 'short', 'notice', 'nnuacyltoe', 'hxgaycze'] processed_text: ['mouse', 'defective', 'hello', 'howfanzi', 'siavgtby', 'need', 'new', 'decent', 'mouse', 'hre', 'sch', 'bring', 'u', 'short', 'notice', 'nnuacyltoe', 'hxgaycze'] list_processed_text: [['mouse'], ['defective'], ['hello'], ['howfanzi'], ['siavgtby'], ['need'], ['new'], ['decent'], ['mouse'], ['hre'], ['sch'], ['bring'], ['u'], ['short'], ['notice'], ['nnuacyltoe'], ['hxgaycze']] k: 3666 len: <class 'list'> Data: ['mouse', 'defective', 'hello', 'howfanzi', 'siavgtby', 'need', 'new', 'decent', 'mouse', 'hre', 'sch', 'bring', 'u', 'short', 'notice', 'nnuacyltoe', 'hxgaycze'] processed_text: ['mouse', 'defective', 'hello', 'howfanzi', 'siavgtby', 'need', 'new', 'decent', 'mouse', 'hre', 'sch', 'bring', 'u', 'short', 'notice', 'nnuacyltoe', 'hxgaycze'] list_processed_text: [['mouse'], ['defective'], ['hello'], ['howfanzi'], ['siavgtby'], ['need'], ['new'], ['decent'], ['mouse'], ['hre'], ['sch'], ['bring'], ['u'], ['short'], ['notice'], ['nnuacyltoe'], ['hxgaycze']] k: 3667 len: <class 'list'> Data: ['problem', 'symantec', 'conference', 'room', 'st', 'nozahtbr', 'ubznqpsy', 'problem', 'symantec', 'conference', 'room', 'st', 'nozahtbr', 'ubznqpsy'] processed_text: ['problem', 'symantec', 'conference', 'room', 'st', 'nozahtbr', 'ubznqpsy', 'problem', 'symantec', 'conference', 'room', 'st', 'nozahtbr', 'ubznqpsy'] list_processed_text: [['problem'], ['symantec'], ['conference'], ['room'], ['st'], ['nozahtbr'], ['ubznqpsy'], ['problem'], ['symantec'], ['conference'], ['room'], ['st'], ['nozahtbr'], ['ubznqpsy']] k: 3668 len: <class 'list'> Data: ['printer', 'defective', 'q', 'error', 'message', 'fo'] processed_text: ['printer', 'defective', 'q', 'error', 'message', 'fo'] list_processed_text: [['printer'], ['defective'], ['q'], ['error'], ['message'], ['fo']] k: 3669 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 3670 len: <class 'list'> Data: ['vpn', 'connection', 'hello', 'please', 'help', 'connect', 'vpn', 'able', 'matheywter', 'urgent'] processed_text: ['vpn', 'connection', 'hello', 'please', 'help', 'connect', 'vpn', 'able', 'matheywter', 'urgent'] list_processed_text: [['vpn'], ['connection'], ['hello'], ['please'], ['help'], ['connect'], ['vpn'], ['able'], ['matheywter'], ['urgent']] k: 3671 len: <class 'list'> Data: ['network', 'outage', 'india', 'company', 'carrier', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'company', 'carrier', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['company'], ['carrier'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3672 len: <class 'list'> Data: ['pasword', 'connection', 'problem', 'reach', 'pasword', 'manager', 'page', 'say', 'security', 'problem', 'connection'] processed_text: ['pasword', 'connection', 'problem', 'reach', 'pasword', 'manager', 'page', 'say', 'security', 'problem', 'connection'] list_processed_text: [['pasword'], ['connection'], ['problem'], ['reach'], ['pasword'], ['manager'], ['page'], ['say'], ['security'], ['problem'], ['connection']] k: 3673 len: <class 'list'> Data: ['reset', 'password', 'mvhcoqed', 'konjdmwq', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'mvhcoqed', 'konjdmwq', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['mvhcoqed'], ['konjdmwq'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 3674 len: <class 'list'> Data: ['reset', 'password', 'mvhcoqed', 'konjdmwq', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'mvhcoqed', 'konjdmwq', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['mvhcoqed'], ['konjdmwq'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 3675 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3676 len: <class 'list'> Data: ['hostname', 'usa', 'plant', 'ups', 'et', 'hostname', 'usa', 'plant', 'ups', 'et'] processed_text: ['hostname', 'usa', 'plant', 'ups', 'et', 'hostname', 'usa', 'plant', 'ups', 'et'] list_processed_text: [['hostname'], ['usa'], ['plant'], ['ups'], ['et'], ['hostname'], ['usa'], ['plant'], ['ups'], ['et']] k: 3677 len: <class 'list'> Data: ['erp', 'csd', 'cockpit', 'application', 'condition', 'update', 'possible', 'erp', 'csd', 'cockpit', 'application', 'condition', 'update', 'possible', 'possible', 'built', 'price', 'record', 'gt', 'quote', 'line', 'item'] processed_text: ['erp', 'csd', 'cockpit', 'application', 'condition', 'update', 'possible', 'erp', 'csd', 'cockpit', 'application', 'condition', 'update', 'possible', 'possible', 'built', 'price', 'record', 'gt', 'quote', 'line', 'item'] list_processed_text: [['erp'], ['csd'], ['cockpit'], ['application'], ['condition'], ['update'], ['possible'], ['erp'], ['csd'], ['cockpit'], ['application'], ['condition'], ['update'], ['possible'], ['possible'], ['built'], ['price'], ['record'], ['gt'], ['quote'], ['line'], ['item']] k: 3678 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 3679 len: <class 'list'> Data: ['hostname', 'volume', 'dev', 'os', 'data', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'dev', 'os', 'data', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'dev', 'os', 'data', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'dev', 'os', 'data', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['dev'], ['os'], ['data'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['dev'], ['os'], ['data'], ['space'], ['consumed'], ['space'], ['available']] k: 3680 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'roaghyunokepc', 'locked', 'qlhmawgi', 'sgwipoxn', 'roaghyunokepc', 'locked'] processed_text: ['qlhmawgi', 'sgwipoxn', 'roaghyunokepc', 'locked', 'qlhmawgi', 'sgwipoxn', 'roaghyunokepc', 'locked'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['roaghyunokepc'], ['locked'], ['qlhmawgi'], ['sgwipoxn'], ['roaghyunokepc'], ['locked']] k: 3681 len: <class 'list'> Data: ['sid', 'system', 'locked', 'unlock', 'sid', 'system', 'locked', 'unlock', 'user', 'id', 'vvhstyap'] processed_text: ['sid', 'system', 'locked', 'unlock', 'sid', 'system', 'locked', 'unlock', 'user', 'id', 'vvhstyap'] list_processed_text: [['sid'], ['system'], ['locked'], ['unlock'], ['sid'], ['system'], ['locked'], ['unlock'], ['user'], ['id'], ['vvhstyap']] k: 3682 len: <class 'list'> Data: ['collaboration', 'platform', 'access', 'going', 'concerned', 'unable', 'access', 'collaboration', 'platform', 'please', 'resolve', 'earliest'] processed_text: ['collaboration', 'platform', 'access', 'going', 'concerned', 'unable', 'access', 'collaboration', 'platform', 'please', 'resolve', 'earliest'] list_processed_text: [['collaboration'], ['platform'], ['access'], ['going'], ['concerned'], ['unable'], ['access'], ['collaboration'], ['platform'], ['please'], ['resolve'], ['earliest']] k: 3683 len: <class 'list'> Data: ['aiuw', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'server', 'offline', 'pc', 'offline', 'since'] processed_text: ['aiuw', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'server', 'offline', 'pc', 'offline', 'since'] list_processed_text: [['aiuw'], ['india'], ['patching'], ['antivirus'], ['sw'], ['desktop'], ['server'], ['offline'], ['pc'], ['offline'], ['since']] k: 3684 len: <class 'list'> Data: ['order', 'product', 'online', 'problem', 'ebusiness', 'service', 'jfwvuzdn', 'xackgvmd', 'nwfodmhc', 'exurcwkm', 'radgthika', 'order', 'product', 'online', 'problem', 'hello', 'issue', 'userid', 'locked', 'erp', 'sid', 'erp', 'sid', 'need', 'go', 'password', 'management', 'tool', 'password', 'manager', 'first', 'select', 'option', 'unlock', 'account', 'select', 'option', 'change', 'password', 'completed', 'successfully', 'logon', 'distributor', 'tool', 'new', 'password', 'mit', 'freundlichem', 'gru', 'kind'] processed_text: ['order', 'product', 'online', 'problem', 'ebusiness', 'service', 'jfwvuzdn', 'xackgvmd', 'nwfodmhc', 'exurcwkm', 'radgthika', 'order', 'product', 'online', 'problem', 'hello', 'issue', 'userid', 'locked', 'erp', 'sid', 'erp', 'sid', 'need', 'go', 'password', 'management', 'tool', 'password', 'manager', 'first', 'select', 'option', 'unlock', 'account', 'select', 'option', 'change', 'password', 'completed', 'successfully', 'logon', 'distributor', 'tool', 'new', 'password', 'mit', 'freundlichem', 'gru', 'kind'] list_processed_text: [['order'], ['product'], ['online'], ['problem'], ['ebusiness'], ['service'], ['jfwvuzdn'], ['xackgvmd'], ['nwfodmhc'], ['exurcwkm'], ['radgthika'], ['order'], ['product'], ['online'], ['problem'], ['hello'], ['issue'], ['userid'], ['locked'], ['erp'], ['sid'], ['erp'], ['sid'], ['need'], ['go'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['first'], ['select'], ['option'], ['unlock'], ['account'], ['select'], ['option'], ['change'], ['password'], ['completed'], ['successfully'], ['logon'], ['distributor'], ['tool'], ['new'], ['password'], ['mit'], ['freundlichem'], ['gru'], ['kind']] k: 3685 len: <class 'list'> Data: ['erp', 'logon', 'balancing', 'error', 'gartryhu', 'erp', 'best', 'vpn'] processed_text: ['erp', 'logon', 'balancing', 'error', 'gartryhu', 'erp', 'best', 'vpn'] list_processed_text: [['erp'], ['logon'], ['balancing'], ['error'], ['gartryhu'], ['erp'], ['best'], ['vpn']] k: 3686 len: <class 'list'> Data: ['security', 'incident', 'possible', 'daserf', 'trojan', 'apt', 'activity', 'leengineering', 'tool', 'zhm', 'source', 'ip', 'source', 'hostname', 'leengineering', 'tool', 'zhm', 'destination', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'daserf', 'backdoor', 'phoning', 'home', 'apt', 'activity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'leengineering', 'tool', 'zhm', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'urumqi', 'chn', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'http', 'method', 'get', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'e', 'cn', 'full', 'url', 'path', 'stats', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'daserf', 'backdoor', 'phoning', 'home', 'apt', 'activity', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'sartlgeo', 'lhqksbdx', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfaf', 'ack', 'xfc', 'win', 'xbc', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'stats', 'php', 'ex', 'http', 'hostname', 'e', 'cn', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'bd', 'b', 'w', 'b', 'aeb', 'ac', 'da', 'ff', 'f', 'af', 'p', 'c', 'bc', 'get', 'e', 'stats', 'php', 'http', 'e', 'user', 'agent', 'fa', 'c', 'e', 'mozilla', 'co', 'c', 'mpatible', 'msie', 'b', 'f', 'window', 'nt', 'b', 'da', 'sv', 'host', 'e', 'e', 'ed', 'e', 'cn', 'cac', 'fe', 'fc', 'ef', 'control', 'da', 'da', 'ache', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'daserf', 'trojan', 'apt', 'activity', 'leengineering', 'tool', 'zhm', 'source', 'ip', 'source', 'hostname', 'leengineering', 'tool', 'zhm', 'destination', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'daserf', 'backdoor', 'phoning', 'home', 'apt', 'activity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'leengineering', 'tool', 'zhm', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'urumqi', 'chn', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'http', 'method', 'get', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'e', 'cn', 'full', 'url', 'path', 'stats', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'daserf', 'backdoor', 'phoning', 'home', 'apt', 'activity', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'sartlgeo', 'lhqksbdx', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfaf', 'ack', 'xfc', 'win', 'xbc', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'stats', 'php', 'ex', 'http', 'hostname', 'e', 'cn', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'bd', 'b', 'w', 'b', 'aeb', 'ac', 'da', 'ff', 'f', 'af', 'p', 'c', 'bc', 'get', 'e', 'stats', 'php', 'http', 'e', 'user', 'agent', 'fa', 'c', 'e', 'mozilla', 'co', 'c', 'mpatible', 'msie', 'b', 'f', 'window', 'nt', 'b', 'da', 'sv', 'host', 'e', 'e', 'ed', 'e', 'cn', 'cac', 'fe', 'fc', 'ef', 'control', 'da', 'da', 'ache', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['daserf'], ['trojan'], ['apt'], ['activity'], ['leengineering'], ['tool'], ['zhm'], ['source'], ['ip'], ['source'], ['hostname'], ['leengineering'], ['tool'], ['zhm'], ['destination'], ['ip'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['daserf'], ['backdoor'], ['phoning'], ['home'], ['apt'], ['activity'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['leengineering'], ['tool'], ['zhm'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['urumqi'], ['chn'], ['connection'], ['directionality'], ['outgoing'], ['protocol'], ['tcp'], ['http'], ['method'], ['get'], ['user'], ['agent'], ['mozilla'], ['compatible'], ['msie'], ['window'], ['nt'], ['sv'], ['host'], ['e'], ['cn'], ['full'], ['url'], ['path'], ['stats'], ['php'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['daserf'], ['backdoor'], ['phoning'], ['home'], ['apt'], ['activity'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['sartlgeo'], ['lhqksbdx'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xfaf'], ['ack'], ['xfc'], ['win'], ['xbc'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['stats'], ['php'], ['ex'], ['http'], ['hostname'], ['e'], ['cn'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['cd'], ['bd'], ['b'], ['w'], ['b'], ['aeb'], ['ac'], ['da'], ['ff'], ['f'], ['af'], ['p'], ['c'], ['bc'], ['get'], ['e'], ['stats'], ['php'], ['http'], ['e'], ['user'], ['agent'], ['fa'], ['c'], ['e'], ['mozilla'], ['co'], ['c'], ['mpatible'], ['msie'], ['b'], ['f'], ['window'], ['nt'], ['b'], ['da'], ['sv'], ['host'], ['e'], ['e'], ['ed'], ['e'], ['cn'], ['cac'], ['fe'], ['fc'], ['ef'], ['control'], ['da'], ['da'], ['ache'], ['pcap'], ['hex'], ['e']] k: 3687 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'android', 'fa', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xcb', 'ack', 'xef', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'android', 'faecee', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'e', 'b', 'w', 'b', 'fd', 'cde', 'cc', 'cb', 'ef', 'fcf', 'vu', 'bd', 'bd', 'ea', 'e', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'nginx', 'date', 'tue', 'sep', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'fdb', 'befdba', 'b', 'sid', 'fdeb', 'doma', 'de', 'c', 'e', 'allinvest', 'u', 'da', 'cf', 'fe', 'location', 'http', 'af', 'fe', 'e', 'cc', 'xsso', 'help', 'e', 'invest', 'u', 'fdb', 'befdba', 'da', 'da', 'fdeb', 'go', 'ff', 'e', 'c', 'e', 'f', 'allinvest', 'u', 'fdbbef', 'dbafdeb', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'android', 'fa', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xcb', 'ack', 'xef', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'android', 'faecee', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'e', 'b', 'w', 'b', 'fd', 'cde', 'cc', 'cb', 'ef', 'fcf', 'vu', 'bd', 'bd', 'ea', 'e', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'nginx', 'date', 'tue', 'sep', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'fdb', 'befdba', 'b', 'sid', 'fdeb', 'doma', 'de', 'c', 'e', 'allinvest', 'u', 'da', 'cf', 'fe', 'location', 'http', 'af', 'fe', 'e', 'cc', 'xsso', 'help', 'e', 'invest', 'u', 'fdb', 'befdba', 'da', 'da', 'fdeb', 'go', 'ff', 'e', 'c', 'e', 'f', 'allinvest', 'u', 'fdbbef', 'dbafdeb', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['android'], ['fa'], ['source'], ['ip'], ['destination'], ['ip'], ['destination'], ['hostname'], ['android'], ['faecee'], ['destination'], ['port'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['android'], ['faecee'], ['destination'], ['port'], ['destination'], ['mac'], ['address'], ['c'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xcb'], ['ack'], ['xef'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['android'], ['faecee'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['e'], ['b'], ['w'], ['b'], ['fd'], ['cde'], ['cc'], ['cb'], ['ef'], ['fcf'], ['vu'], ['bd'], ['bd'], ['ea'], ['e'], ['http'], ['f'], ['f'], ['moved'], ['tempo'], ['da'], ['rarily'], ['server'], ['e'], ['nginx'], ['date'], ['tue'], ['sep'], ['da'], ['e'], ['gmt'], ['cont'], ['e'], ['f'], ['ent'], ['type'], ['text'], ['cd'], ['fe'], ['f'], ['ea'], ['tml'], ['connection'], ['cf'], ['da'], ['f'], ['fb'], ['close'], ['set'], ['cook'], ['e'], ['ie'], ['anbtr'], ['fdb'], ['befdba'], ['b'], ['sid'], ['fdeb'], ['doma'], ['de'], ['c'], ['e'], ['allinvest'], ['u'], ['da'], ['cf'], ['fe'], ['location'], ['http'], ['af'], ['fe'], ['e'], ['cc'], ['xsso'], ['help'], ['e'], ['invest'], ['u'], ['fdb'], ['befdba'], ['da'], ['da'], ['fdeb'], ['go'], ['ff'], ['e'], ['c'], ['e'], ['f'], ['allinvest'], ['u'], ['fdbbef'], ['dbafdeb'], ['pcap'], ['hex'], ['e']] k: 3688 len: <class 'list'> Data: ['folder', 'access', 'request', 'hostname', 'finance', 'global', 'bank', 'bals', 'fy', 'group', 'lhqfinglbalfyfc', 'owner', 'pjxclyhs', 'fcniljtu', 'access', 'full', 'control'] processed_text: ['folder', 'access', 'request', 'hostname', 'finance', 'global', 'bank', 'bals', 'fy', 'group', 'lhqfinglbalfyfc', 'owner', 'pjxclyhs', 'fcniljtu', 'access', 'full', 'control'] list_processed_text: [['folder'], ['access'], ['request'], ['hostname'], ['finance'], ['global'], ['bank'], ['bals'], ['fy'], ['group'], ['lhqfinglbalfyfc'], ['owner'], ['pjxclyhs'], ['fcniljtu'], ['access'], ['full'], ['control']] k: 3689 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3690 len: <class 'list'> Data: ['permission', 'es', 'portal', 'please', 'reach', 'information', 'needed'] processed_text: ['permission', 'es', 'portal', 'please', 'reach', 'information', 'needed'] list_processed_text: [['permission'], ['es'], ['portal'], ['please'], ['reach'], ['information'], ['needed']] k: 3691 len: <class 'list'> Data: ['mm', 'mm', 'mm', 'mm', 'hi', 'please', 'see', 'pricing', 'team', 'comment', 'advise', 'mentioned', 'material'] processed_text: ['mm', 'mm', 'mm', 'mm', 'hi', 'please', 'see', 'pricing', 'team', 'comment', 'advise', 'mentioned', 'material'] list_processed_text: [['mm'], ['mm'], ['mm'], ['mm'], ['hi'], ['please'], ['see'], ['pricing'], ['team'], ['comment'], ['advise'], ['mentioned'], ['material']] k: 3692 len: <class 'list'> Data: ['batch', 'number', 'appearing', 'pdf', 'output', 'engineering', 'tool', 'dear', 'bhughjdra', 'good', 'enquiry', 'agree', 'batch', 'number', 'view', 'important', 'best'] processed_text: ['batch', 'number', 'appearing', 'pdf', 'output', 'engineering', 'tool', 'dear', 'bhughjdra', 'good', 'enquiry', 'agree', 'batch', 'number', 'view', 'important', 'best'] list_processed_text: [['batch'], ['number'], ['appearing'], ['pdf'], ['output'], ['engineering'], ['tool'], ['dear'], ['bhughjdra'], ['good'], ['enquiry'], ['agree'], ['batch'], ['number'], ['view'], ['important'], ['best']] k: 3693 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3694 len: <class 'list'> Data: ['e', 'time', 'java', 'dear', 'time', 'jave', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] processed_text: ['e', 'time', 'java', 'dear', 'time', 'jave', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] list_processed_text: [['e'], ['time'], ['java'], ['dear'], ['time'], ['jave'], ['tuqrvowp'], ['fxmzkvqo'], ['human'], ['resource']] k: 3695 len: <class 'list'> Data: ['distributor', 'tool', 'account', 'identification', 'problem', 'hello', 'team', 'see', 'sreenshot', 'distributor', 'tool', 'account', 'identified', 'sale', 'organisation', 'anything', 'distributor', 'tool', 'could', 'please', 'help', 'issue'] processed_text: ['distributor', 'tool', 'account', 'identification', 'problem', 'hello', 'team', 'see', 'sreenshot', 'distributor', 'tool', 'account', 'identified', 'sale', 'organisation', 'anything', 'distributor', 'tool', 'could', 'please', 'help', 'issue'] list_processed_text: [['distributor'], ['tool'], ['account'], ['identification'], ['problem'], ['hello'], ['team'], ['see'], ['sreenshot'], ['distributor'], ['tool'], ['account'], ['identified'], ['sale'], ['organisation'], ['anything'], ['distributor'], ['tool'], ['could'], ['please'], ['help'], ['issue']] k: 3696 len: <class 'list'> Data: ['machine', 'downtime', 'kesm', 'remote', 'maintenance', 'necessary', 'hd', 'mr', 'himghtmelreich', 'machine', 'downtime', 'kesm', 'remote', 'maintenance', 'necessary', 'tel', 'mr', 'teichgr', 'ber'] processed_text: ['machine', 'downtime', 'kesm', 'remote', 'maintenance', 'necessary', 'hd', 'mr', 'himghtmelreich', 'machine', 'downtime', 'kesm', 'remote', 'maintenance', 'necessary', 'tel', 'mr', 'teichgr', 'ber'] list_processed_text: [['machine'], ['downtime'], ['kesm'], ['remote'], ['maintenance'], ['necessary'], ['hd'], ['mr'], ['himghtmelreich'], ['machine'], ['downtime'], ['kesm'], ['remote'], ['maintenance'], ['necessary'], ['tel'], ['mr'], ['teichgr'], ['ber']] k: 3697 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3698 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3699 len: <class 'list'> Data: ['need', 'little', 'help', 'please', 'shathyra', 'lunjuws', 'zd', 'delivery', 'output', 'type', 'developed', 'baker', 'huges', 'usa', 'went', 'live', 'erp', 'delivery', 'note', 'output', 'type', 'zdus', 'added', 'automatically', 'soon', 'delivery', 'note', 'created', 'specific', 'customer', 'specific', 'output', 'type', 'maintained', 'scenario', 'since', 'already', 'customer', 'specific', 'output', 'zd', 'maintained', 'output', 'config', 'zdus', 'automatically', 'replaced', 'zd', 'print', 'immediately', 'hx', 'printer', 'printer', 'hx', 'defined', 'default', 'printer', 'sale', 'org', 'customer', 'combination', 'complexity', 'shipping', 'customer', 'usa', 'usa', 'please', 'confirm', 'using', 'chk', 'print', 'delivery', 'note', 'usa', 'lunjuws', 'need', 'help', 'check', 'usa', 'team', 'using', 'chk', 'printing', 'delivery', 'note', 'based', 'information', 'shall', 'check', 'possibility', 'let', 'know', 'chandruhdty', 'n', 'senior', 'analyst', 'global', 'please', 'print', 'email', 'unless', 'really', 'need', 'preserve', 'tree', 'planet', 'earth', 'damuphws', 'arkulcoi', 'smxoklny', 'hbecskgl', 'need', 'little', 'help', 'please', 'sorry', 'never', 'email', 'say', 'hey', 'going', 'know', 'going', 'sure', 'dilemma', 'since', 'started', 'shipping', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'still', 'printing', 'usa', 'need', 'contact', 'help', 'desk', 'sure', 'ask', 'easy', 'explain', 'stuff', 'wanting', 'transaction', 'zdus', 'added', 'delivery', 'output', 'screen', 'instead', 'zd', 'usa', 'used', 'zd', 'using', 'zd', 'zdus', 'really', 'need', 'using', 'talked', 'circle', 'let', 'know', 'try', 'explain', 'little', 'better', 'example', 'want', 'get', 'right', 'go', 'add', 'zd', 'get', 'delivery', 'note', 'print'] processed_text: ['need', 'little', 'help', 'please', 'shathyra', 'lunjuws', 'zd', 'delivery', 'output', 'type', 'developed', 'baker', 'huges', 'usa', 'went', 'live', 'erp', 'delivery', 'note', 'output', 'type', 'zdus', 'added', 'automatically', 'soon', 'delivery', 'note', 'created', 'specific', 'customer', 'specific', 'output', 'type', 'maintained', 'scenario', 'since', 'already', 'customer', 'specific', 'output', 'zd', 'maintained', 'output', 'config', 'zdus', 'automatically', 'replaced', 'zd', 'print', 'immediately', 'hx', 'printer', 'printer', 'hx', 'defined', 'default', 'printer', 'sale', 'org', 'customer', 'combination', 'complexity', 'shipping', 'customer', 'usa', 'usa', 'please', 'confirm', 'using', 'chk', 'print', 'delivery', 'note', 'usa', 'lunjuws', 'need', 'help', 'check', 'usa', 'team', 'using', 'chk', 'printing', 'delivery', 'note', 'based', 'information', 'shall', 'check', 'possibility', 'let', 'know', 'chandruhdty', 'n', 'senior', 'analyst', 'global', 'please', 'print', 'email', 'unless', 'really', 'need', 'preserve', 'tree', 'planet', 'earth', 'damuphws', 'arkulcoi', 'smxoklny', 'hbecskgl', 'need', 'little', 'help', 'please', 'sorry', 'never', 'email', 'say', 'hey', 'going', 'know', 'going', 'sure', 'dilemma', 'since', 'started', 'shipping', 'bakyhrer', 'huhuyghes', 'delivery', 'note', 'still', 'printing', 'usa', 'need', 'contact', 'help', 'desk', 'sure', 'ask', 'easy', 'explain', 'stuff', 'wanting', 'transaction', 'zdus', 'added', 'delivery', 'output', 'screen', 'instead', 'zd', 'usa', 'used', 'zd', 'using', 'zd', 'zdus', 'really', 'need', 'using', 'talked', 'circle', 'let', 'know', 'try', 'explain', 'little', 'better', 'example', 'want', 'get', 'right', 'go', 'add', 'zd', 'get', 'delivery', 'note', 'print'] list_processed_text: [['need'], ['little'], ['help'], ['please'], ['shathyra'], ['lunjuws'], ['zd'], ['delivery'], ['output'], ['type'], ['developed'], ['baker'], ['huges'], ['usa'], ['went'], ['live'], ['erp'], ['delivery'], ['note'], ['output'], ['type'], ['zdus'], ['added'], ['automatically'], ['soon'], ['delivery'], ['note'], ['created'], ['specific'], ['customer'], ['specific'], ['output'], ['type'], ['maintained'], ['scenario'], ['since'], ['already'], ['customer'], ['specific'], ['output'], ['zd'], ['maintained'], ['output'], ['config'], ['zdus'], ['automatically'], ['replaced'], ['zd'], ['print'], ['immediately'], ['hx'], ['printer'], ['printer'], ['hx'], ['defined'], ['default'], ['printer'], ['sale'], ['org'], ['customer'], ['combination'], ['complexity'], ['shipping'], ['customer'], ['usa'], ['usa'], ['please'], ['confirm'], ['using'], ['chk'], ['print'], ['delivery'], ['note'], ['usa'], ['lunjuws'], ['need'], ['help'], ['check'], ['usa'], ['team'], ['using'], ['chk'], ['printing'], ['delivery'], ['note'], ['based'], ['information'], ['shall'], ['check'], ['possibility'], ['let'], ['know'], ['chandruhdty'], ['n'], ['senior'], ['analyst'], ['global'], ['please'], ['print'], ['email'], ['unless'], ['really'], ['need'], ['preserve'], ['tree'], ['planet'], ['earth'], ['damuphws'], ['arkulcoi'], ['smxoklny'], ['hbecskgl'], ['need'], ['little'], ['help'], ['please'], ['sorry'], ['never'], ['email'], ['say'], ['hey'], ['going'], ['know'], ['going'], ['sure'], ['dilemma'], ['since'], ['started'], ['shipping'], ['bakyhrer'], ['huhuyghes'], ['delivery'], ['note'], ['still'], ['printing'], ['usa'], ['need'], ['contact'], ['help'], ['desk'], ['sure'], ['ask'], ['easy'], ['explain'], ['stuff'], ['wanting'], ['transaction'], ['zdus'], ['added'], ['delivery'], ['output'], ['screen'], ['instead'], ['zd'], ['usa'], ['used'], ['zd'], ['using'], ['zd'], ['zdus'], ['really'], ['need'], ['using'], ['talked'], ['circle'], ['let'], ['know'], ['try'], ['explain'], ['little'], ['better'], ['example'], ['want'], ['get'], ['right'], ['go'], ['add'], ['zd'], ['get'], ['delivery'], ['note'], ['print']] k: 3700 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3701 len: <class 'list'> Data: ['lhqsid', 'new', 'hi', 'trying', 'install', 'license', 'server', 'new', 'server', 'logged', 'onto', 'appears', 'unavailable', 'pollaurid', 'phlpiops', 'manager', 'engineering', 'technology'] processed_text: ['lhqsid', 'new', 'hi', 'trying', 'install', 'license', 'server', 'new', 'server', 'logged', 'onto', 'appears', 'unavailable', 'pollaurid', 'phlpiops', 'manager', 'engineering', 'technology'] list_processed_text: [['lhqsid'], ['new'], ['hi'], ['trying'], ['install'], ['license'], ['server'], ['new'], ['server'], ['logged'], ['onto'], ['appears'], ['unavailable'], ['pollaurid'], ['phlpiops'], ['manager'], ['engineering'], ['technology']] k: 3702 len: <class 'list'> Data: ['leantracker', 'registration', 'work', 'lean', 'tracker', 'open', 'error', 'message', 'appears'] processed_text: ['leantracker', 'registration', 'work', 'lean', 'tracker', 'open', 'error', 'message', 'appears'] list_processed_text: [['leantracker'], ['registration'], ['work'], ['lean'], ['tracker'], ['open'], ['error'], ['message'], ['appears']] k: 3703 len: <class 'list'> Data: ['minitab', 'installed', 'name', 'wnorzsyv', 'mdflqwxg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'minitab', 'installed'] processed_text: ['minitab', 'installed', 'name', 'wnorzsyv', 'mdflqwxg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'minitab', 'installed'] list_processed_text: [['minitab'], ['installed'], ['name'], ['wnorzsyv'], ['mdflqwxg'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['minitab'], ['installed']] k: 3704 len: <class 'list'> Data: ['erp', 'access', 'issue', 'please', 'reset', 'sid', 'password', 'pandepv', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'please', 'reset', 'sid', 'password', 'pandepv', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['please'], ['reset'], ['sid'], ['password'], ['pandepv'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 3705 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 3706 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 3707 len: <class 'list'> Data: ['batch', 'number', 'appearing', 'pdf', 'output', 'engineering', 'tool', 'dear', 'sir', 'refer', 'snapshot', 'pdf', 'output', 'engineering', 'tool', 'batch', 'number', 'appearing', 'pdf', 'output', 'batch', 'number', 'important', 'case', 'variation', 'tool', 'life', 'batch', 'batch', 'customer', 'raise', 'complaint', 'send', 'ccif', 'engineering', 'tool', 'engineering', 'tool', 'software', 'enter', 'batch', 'number', 'download', 'pdf', 'show', 'batch', 'number', 'without', 'batch', 'number', 'analysis', 'cannot', 'done', 'important', 'capture', 'batch', 'number', 'engineering', 'tool', 'pdf', 'output', 'necessary', 'action'] processed_text: ['batch', 'number', 'appearing', 'pdf', 'output', 'engineering', 'tool', 'dear', 'sir', 'refer', 'snapshot', 'pdf', 'output', 'engineering', 'tool', 'batch', 'number', 'appearing', 'pdf', 'output', 'batch', 'number', 'important', 'case', 'variation', 'tool', 'life', 'batch', 'batch', 'customer', 'raise', 'complaint', 'send', 'ccif', 'engineering', 'tool', 'engineering', 'tool', 'software', 'enter', 'batch', 'number', 'download', 'pdf', 'show', 'batch', 'number', 'without', 'batch', 'number', 'analysis', 'cannot', 'done', 'important', 'capture', 'batch', 'number', 'engineering', 'tool', 'pdf', 'output', 'necessary', 'action'] list_processed_text: [['batch'], ['number'], ['appearing'], ['pdf'], ['output'], ['engineering'], ['tool'], ['dear'], ['sir'], ['refer'], ['snapshot'], ['pdf'], ['output'], ['engineering'], ['tool'], ['batch'], ['number'], ['appearing'], ['pdf'], ['output'], ['batch'], ['number'], ['important'], ['case'], ['variation'], ['tool'], ['life'], ['batch'], ['batch'], ['customer'], ['raise'], ['complaint'], ['send'], ['ccif'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['software'], ['enter'], ['batch'], ['number'], ['download'], ['pdf'], ['show'], ['batch'], ['number'], ['without'], ['batch'], ['number'], ['analysis'], ['cannot'], ['done'], ['important'], ['capture'], ['batch'], ['number'], ['engineering'], ['tool'], ['pdf'], ['output'], ['necessary'], ['action']] k: 3708 len: <class 'list'> Data: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'poncacity', 'schlumhdyhter', 'dmvpn', 'rtr', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['poncacity'], ['schlumhdyhter'], ['dmvpn'], ['rtr'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 3709 len: <class 'list'> Data: ['wlan', 'guest', 'access', 'cantine', 'germany', 'xvwchsdg', 'pladjmxt', 'pm', 'dwfiykeo', 'argtxmvcumar', 'thomklmas', 'woehyl', 'wlan', 'guest', 'access', 'cantine', 'germany', 'hello', 'manjgtiry', 'issue', 'connecting', 'guest', 'wlan', 'party', 'adapter', 'worked', 'built', 'wifi', 'adapter', 'notebook', 'working', 'fine', 'adapter', 'able', 'find', 'ssid', 'possible', 'mac', 'address', 'edimax', 'kind', 'quarantine', 'da', 'f', 'best'] processed_text: ['wlan', 'guest', 'access', 'cantine', 'germany', 'xvwchsdg', 'pladjmxt', 'pm', 'dwfiykeo', 'argtxmvcumar', 'thomklmas', 'woehyl', 'wlan', 'guest', 'access', 'cantine', 'germany', 'hello', 'manjgtiry', 'issue', 'connecting', 'guest', 'wlan', 'party', 'adapter', 'worked', 'built', 'wifi', 'adapter', 'notebook', 'working', 'fine', 'adapter', 'able', 'find', 'ssid', 'possible', 'mac', 'address', 'edimax', 'kind', 'quarantine', 'da', 'f', 'best'] list_processed_text: [['wlan'], ['guest'], ['access'], ['cantine'], ['germany'], ['xvwchsdg'], ['pladjmxt'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['thomklmas'], ['woehyl'], ['wlan'], ['guest'], ['access'], ['cantine'], ['germany'], ['hello'], ['manjgtiry'], ['issue'], ['connecting'], ['guest'], ['wlan'], ['party'], ['adapter'], ['worked'], ['built'], ['wifi'], ['adapter'], ['notebook'], ['working'], ['fine'], ['adapter'], ['able'], ['find'], ['ssid'], ['possible'], ['mac'], ['address'], ['edimax'], ['kind'], ['quarantine'], ['da'], ['f'], ['best']] k: 3710 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3711 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'babhjbu', 'last', 'name', 'gdgy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'babhjbu', 'last', 'name', 'gdgy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['babhjbu'], ['last'], ['name'], ['gdgy'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 3712 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3713 len: <class 'list'> Data: ['able', 'access', 'inq', 'industrial', 'team', 'able', 'access', 'inq', 'industrial', 'receive', 'enquiry', 'special', 'product', 'past', 'one', 'week', 'mentioned', 'shared', 'email', 'box', 'functioning', 'whereas', 'member', 'able', 'access', 'kindly', 'request', 'take', 'upon', 'high', 'priority', 'confirm', 'back'] processed_text: ['able', 'access', 'inq', 'industrial', 'team', 'able', 'access', 'inq', 'industrial', 'receive', 'enquiry', 'special', 'product', 'past', 'one', 'week', 'mentioned', 'shared', 'email', 'box', 'functioning', 'whereas', 'member', 'able', 'access', 'kindly', 'request', 'take', 'upon', 'high', 'priority', 'confirm', 'back'] list_processed_text: [['able'], ['access'], ['inq'], ['industrial'], ['team'], ['able'], ['access'], ['inq'], ['industrial'], ['receive'], ['enquiry'], ['special'], ['product'], ['past'], ['one'], ['week'], ['mentioned'], ['shared'], ['email'], ['box'], ['functioning'], ['whereas'], ['member'], ['able'], ['access'], ['kindly'], ['request'], ['take'], ['upon'], ['high'], ['priority'], ['confirm'], ['back']] k: 3714 len: <class 'list'> Data: ['expense', 'report', 'receipt', 'issue', 'one', 'employee', 'sent', 'expense', 'today', 'note', 'receipt', 'receipt', 'everything', 'handled'] processed_text: ['expense', 'report', 'receipt', 'issue', 'one', 'employee', 'sent', 'expense', 'today', 'note', 'receipt', 'receipt', 'everything', 'handled'] list_processed_text: [['expense'], ['report'], ['receipt'], ['issue'], ['one'], ['employee'], ['sent'], ['expense'], ['today'], ['note'], ['receipt'], ['receipt'], ['everything'], ['handled']] k: 3715 len: <class 'list'> Data: ['two', 'billing', 'posted', 'gl', 'name', 'jashtyckie', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'two', 'billing', 'posted', 'gl'] processed_text: ['two', 'billing', 'posted', 'gl', 'name', 'jashtyckie', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'two', 'billing', 'posted', 'gl'] list_processed_text: [['two'], ['billing'], ['posted'], ['gl'], ['name'], ['jashtyckie'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['two'], ['billing'], ['posted'], ['gl']] k: 3716 len: <class 'list'> Data: ['vpn', 'allow', 'access', 'erp', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'allow', 'access', 'erp', 'occurrence', 'issue'] processed_text: ['vpn', 'allow', 'access', 'erp', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'vpn', 'allow', 'access', 'erp', 'occurrence', 'issue'] list_processed_text: [['vpn'], ['allow'], ['access'], ['erp'], ['name'], ['pfzxecbo'], ['ptygkvzl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['vpn'], ['allow'], ['access'], ['erp'], ['occurrence'], ['issue']] k: 3717 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3718 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 3719 len: <class 'list'> Data: ['laptop', 'log', 'laptop', 'log'] processed_text: ['laptop', 'log', 'laptop', 'log'] list_processed_text: [['laptop'], ['log'], ['laptop'], ['log']] k: 3720 len: <class 'list'> Data: ['ups', 'psf', 'ups'] processed_text: ['ups', 'psf', 'ups'] list_processed_text: [['ups'], ['psf'], ['ups']] k: 3721 len: <class 'list'> Data: ['internal', 'crm', 'auto', 'notification', 'received', 'crm', 'responsible', 'user', 'updated', 'status', 'final', 'review', 'generally', 'dispatch', 'auto', 'notification', 'email', 'crm', 'owner', 'received', 'notification', 'key', 'user', 'confirmed', 'sent', 'reference', 'attached', 'email', 'communication', 'please', 'investigate'] processed_text: ['internal', 'crm', 'auto', 'notification', 'received', 'crm', 'responsible', 'user', 'updated', 'status', 'final', 'review', 'generally', 'dispatch', 'auto', 'notification', 'email', 'crm', 'owner', 'received', 'notification', 'key', 'user', 'confirmed', 'sent', 'reference', 'attached', 'email', 'communication', 'please', 'investigate'] list_processed_text: [['internal'], ['crm'], ['auto'], ['notification'], ['received'], ['crm'], ['responsible'], ['user'], ['updated'], ['status'], ['final'], ['review'], ['generally'], ['dispatch'], ['auto'], ['notification'], ['email'], ['crm'], ['owner'], ['received'], ['notification'], ['key'], ['user'], ['confirmed'], ['sent'], ['reference'], ['attached'], ['email'], ['communication'], ['please'], ['investigate']] k: 3722 len: <class 'list'> Data: ['sid', 'access', 'beathe', 'hi', 'team', 'issue', 'logging', 'sid', 'reset', 'password', 'password', 'manager', 'still', 'cannot', 'access', 'please', 'assist'] processed_text: ['sid', 'access', 'beathe', 'hi', 'team', 'issue', 'logging', 'sid', 'reset', 'password', 'password', 'manager', 'still', 'cannot', 'access', 'please', 'assist'] list_processed_text: [['sid'], ['access'], ['beathe'], ['hi'], ['team'], ['issue'], ['logging'], ['sid'], ['reset'], ['password'], ['password'], ['manager'], ['still'], ['cannot'], ['access'], ['please'], ['assist']] k: 3723 len: <class 'list'> Data: ['dell', 'search', 'icon', 'running', 'time', 'slowing', 'laptop', 'name', 'danyhuie', 'deyhtwet', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'new', 'laptop', 'dell', 'search', 'icon', 'running', 'time', 'slowing', 'laptop'] processed_text: ['dell', 'search', 'icon', 'running', 'time', 'slowing', 'laptop', 'name', 'danyhuie', 'deyhtwet', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'new', 'laptop', 'dell', 'search', 'icon', 'running', 'time', 'slowing', 'laptop'] list_processed_text: [['dell'], ['search'], ['icon'], ['running'], ['time'], ['slowing'], ['laptop'], ['name'], ['danyhuie'], ['deyhtwet'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['new'], ['laptop'], ['dell'], ['search'], ['icon'], ['running'], ['time'], ['slowing'], ['laptop']] k: 3724 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3725 len: <class 'list'> Data: ['add', 'rohhsyni', 'lalanne', 'shipment', 'notification', 'notice', 'add', 'mail', 'address', 'shipment', 'notification', 'customer', 'see', 'example', 'attached', 'lalanne', 'rohhsyni', 'rjuyihes', 'com'] processed_text: ['add', 'rohhsyni', 'lalanne', 'shipment', 'notification', 'notice', 'add', 'mail', 'address', 'shipment', 'notification', 'customer', 'see', 'example', 'attached', 'lalanne', 'rohhsyni', 'rjuyihes', 'com'] list_processed_text: [['add'], ['rohhsyni'], ['lalanne'], ['shipment'], ['notification'], ['notice'], ['add'], ['mail'], ['address'], ['shipment'], ['notification'], ['customer'], ['see'], ['example'], ['attached'], ['lalanne'], ['rohhsyni'], ['rjuyihes'], ['com']] k: 3726 len: <class 'list'> Data: ['tax', 'printing', 'customer', 'inwarehouse', 'tool', 'please', 'review', 'attached', 'inwarehouse', 'tool', 'one', 'without', 'tax', 'one', 'customer', 'received', 'second', 'one', 'tax', 'one', 'sent', 'billing', 'tax', 'spoke', 'cegtcily', 'tax', 'dept', 'stating', 'ticket', 'issue', 'tax', 'printing', 'calculating', 'erp', 'please', 'look', 'issue', 'quickly', 'possible', 'customer', 'questioning', 'billing', 'difference', 'becoming', 'issue', 'customer'] processed_text: ['tax', 'printing', 'customer', 'inwarehouse', 'tool', 'please', 'review', 'attached', 'inwarehouse', 'tool', 'one', 'without', 'tax', 'one', 'customer', 'received', 'second', 'one', 'tax', 'one', 'sent', 'billing', 'tax', 'spoke', 'cegtcily', 'tax', 'dept', 'stating', 'ticket', 'issue', 'tax', 'printing', 'calculating', 'erp', 'please', 'look', 'issue', 'quickly', 'possible', 'customer', 'questioning', 'billing', 'difference', 'becoming', 'issue', 'customer'] list_processed_text: [['tax'], ['printing'], ['customer'], ['inwarehouse'], ['tool'], ['please'], ['review'], ['attached'], ['inwarehouse'], ['tool'], ['one'], ['without'], ['tax'], ['one'], ['customer'], ['received'], ['second'], ['one'], ['tax'], ['one'], ['sent'], ['billing'], ['tax'], ['spoke'], ['cegtcily'], ['tax'], ['dept'], ['stating'], ['ticket'], ['issue'], ['tax'], ['printing'], ['calculating'], ['erp'], ['please'], ['look'], ['issue'], ['quickly'], ['possible'], ['customer'], ['questioning'], ['billing'], ['difference'], ['becoming'], ['issue'], ['customer']] k: 3727 len: <class 'list'> Data: ['canadian', 'customer', 'inwarehouse', 'tool', 'printing', 'tax', 'amount', 'inwarehouse', 'tool', 'user', 'gkzedilm', 'tkpfumeb', 'jesjnlyenm', 'log', 'aplications', 'engineering', 'tool', 'netweaver', 'netweaver', 'report', 'many', 'incorrect', 'logins', 'engineering', 'engineering', 'tool', 'unable', 'contact', 'server', 'suspect', 'user', 'blocked', 'account', 'due', 'many', 'incorrect', 'logins', 'user', 'recently', 'changed', 'password'] processed_text: ['canadian', 'customer', 'inwarehouse', 'tool', 'printing', 'tax', 'amount', 'inwarehouse', 'tool', 'user', 'gkzedilm', 'tkpfumeb', 'jesjnlyenm', 'log', 'aplications', 'engineering', 'tool', 'netweaver', 'netweaver', 'report', 'many', 'incorrect', 'logins', 'engineering', 'engineering', 'tool', 'unable', 'contact', 'server', 'suspect', 'user', 'blocked', 'account', 'due', 'many', 'incorrect', 'logins', 'user', 'recently', 'changed', 'password'] list_processed_text: [['canadian'], ['customer'], ['inwarehouse'], ['tool'], ['printing'], ['tax'], ['amount'], ['inwarehouse'], ['tool'], ['user'], ['gkzedilm'], ['tkpfumeb'], ['jesjnlyenm'], ['log'], ['aplications'], ['engineering'], ['tool'], ['netweaver'], ['netweaver'], ['report'], ['many'], ['incorrect'], ['logins'], ['engineering'], ['engineering'], ['tool'], ['unable'], ['contact'], ['server'], ['suspect'], ['user'], ['blocked'], ['account'], ['due'], ['many'], ['incorrect'], ['logins'], ['user'], ['recently'], ['changed'], ['password']] k: 3728 len: <class 'list'> Data: ['phone', 'broken', 'gigaset', 'extension', 'battery', 'longer', 'like', 'tag', 'longer', 'recognize', 'display', 'clip', 'defective'] processed_text: ['phone', 'broken', 'gigaset', 'extension', 'battery', 'longer', 'like', 'tag', 'longer', 'recognize', 'display', 'clip', 'defective'] list_processed_text: [['phone'], ['broken'], ['gigaset'], ['extension'], ['battery'], ['longer'], ['like'], ['tag'], ['longer'], ['recognize'], ['display'], ['clip'], ['defective']] k: 3729 len: <class 'list'> Data: ['unable', 'log', 'erp', 'unable', 'log', 'erp'] processed_text: ['unable', 'log', 'erp', 'unable', 'log', 'erp'] list_processed_text: [['unable'], ['log'], ['erp'], ['unable'], ['log'], ['erp']] k: 3730 len: <class 'list'> Data: ['user', 'jeshyensky', 'log', 'account', 'user', 'gkzedilm', 'tkpfumeb', 'jesjnlyenm', 'log', 'aplications', 'engineering', 'tool', 'netweaver', 'netweaver', 'report', 'many', 'incorrect', 'logins', 'engineering', 'engineering', 'tool', 'unable', 'contact', 'server', 'suspect', 'user', 'blocked', 'account', 'due', 'many', 'incorrect', 'logins', 'user', 'recently', 'changed', 'password'] processed_text: ['user', 'jeshyensky', 'log', 'account', 'user', 'gkzedilm', 'tkpfumeb', 'jesjnlyenm', 'log', 'aplications', 'engineering', 'tool', 'netweaver', 'netweaver', 'report', 'many', 'incorrect', 'logins', 'engineering', 'engineering', 'tool', 'unable', 'contact', 'server', 'suspect', 'user', 'blocked', 'account', 'due', 'many', 'incorrect', 'logins', 'user', 'recently', 'changed', 'password'] list_processed_text: [['user'], ['jeshyensky'], ['log'], ['account'], ['user'], ['gkzedilm'], ['tkpfumeb'], ['jesjnlyenm'], ['log'], ['aplications'], ['engineering'], ['tool'], ['netweaver'], ['netweaver'], ['report'], ['many'], ['incorrect'], ['logins'], ['engineering'], ['engineering'], ['tool'], ['unable'], ['contact'], ['server'], ['suspect'], ['user'], ['blocked'], ['account'], ['due'], ['many'], ['incorrect'], ['logins'], ['user'], ['recently'], ['changed'], ['password']] k: 3731 len: <class 'list'> Data: ['password', 'reset', 'mii', 'password', 'reset', 'mii'] processed_text: ['password', 'reset', 'mii', 'password', 'reset', 'mii'] list_processed_text: [['password'], ['reset'], ['mii'], ['password'], ['reset'], ['mii']] k: 3732 len: <class 'list'> Data: ['phone', 'erp', 'name', 'password', 'incorrect', 'repeat', 'logon', 'cannot', 'log', 'erp', 'system', 'access', 'system', 'erp', 'able', 'log', 'system', 'entered', 'wynhtydf', 'username', 'password', 'enter', 'password', 'successfully', 'log', 'password', 'management', 'tool', 'password', 'manager', 'unlocked', 'system', 'access', 'password', 'management', 'tool', 'password', 'manager', 'still', 'cannot', 'log', 'please', 'see', 'screenshot', 'erp', 'error', 'screenshot', 'error', 'message', 'password', 'management', 'tool', 'password', 'unlock', 'list', 'erp', 'system', 'cannot', 'access'] processed_text: ['phone', 'erp', 'name', 'password', 'incorrect', 'repeat', 'logon', 'cannot', 'log', 'erp', 'system', 'access', 'system', 'erp', 'able', 'log', 'system', 'entered', 'wynhtydf', 'username', 'password', 'enter', 'password', 'successfully', 'log', 'password', 'management', 'tool', 'password', 'manager', 'unlocked', 'system', 'access', 'password', 'management', 'tool', 'password', 'manager', 'still', 'cannot', 'log', 'please', 'see', 'screenshot', 'erp', 'error', 'screenshot', 'error', 'message', 'password', 'management', 'tool', 'password', 'unlock', 'list', 'erp', 'system', 'cannot', 'access'] list_processed_text: [['phone'], ['erp'], ['name'], ['password'], ['incorrect'], ['repeat'], ['logon'], ['cannot'], ['log'], ['erp'], ['system'], ['access'], ['system'], ['erp'], ['able'], ['log'], ['system'], ['entered'], ['wynhtydf'], ['username'], ['password'], ['enter'], ['password'], ['successfully'], ['log'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unlocked'], ['system'], ['access'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['still'], ['cannot'], ['log'], ['please'], ['see'], ['screenshot'], ['erp'], ['error'], ['screenshot'], ['error'], ['message'], ['password'], ['management'], ['tool'], ['password'], ['unlock'], ['list'], ['erp'], ['system'], ['cannot'], ['access']] k: 3733 len: <class 'list'> Data: ['sfb', 'personal', 'certificate', 'error', 'sfb', 'personal', 'certificate', 'error'] processed_text: ['sfb', 'personal', 'certificate', 'error', 'sfb', 'personal', 'certificate', 'error'] list_processed_text: [['sfb'], ['personal'], ['certificate'], ['error'], ['sfb'], ['personal'], ['certificate'], ['error']] k: 3734 len: <class 'list'> Data: ['password', 'locked', 'trying', 'go', 'erp', 'newweaver', 'portal', 'name', 'nmpworvu', 'upgtrvnj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'password', 'locked', 'trying', 'go', 'erp', 'newweaver', 'portal'] processed_text: ['password', 'locked', 'trying', 'go', 'erp', 'newweaver', 'portal', 'name', 'nmpworvu', 'upgtrvnj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'password', 'locked', 'trying', 'go', 'erp', 'newweaver', 'portal'] list_processed_text: [['password'], ['locked'], ['trying'], ['go'], ['erp'], ['newweaver'], ['portal'], ['name'], ['nmpworvu'], ['upgtrvnj'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['password'], ['locked'], ['trying'], ['go'], ['erp'], ['newweaver'], ['portal']] k: 3735 len: <class 'list'> Data: ['unable', 'log', 'mii', 'unable', 'log', 'mii'] processed_text: ['unable', 'log', 'mii', 'unable', 'log', 'mii'] list_processed_text: [['unable'], ['log'], ['mii'], ['unable'], ['log'], ['mii']] k: 3736 len: <class 'list'> Data: ['loading', 'esprit', 'cam', 'software', 'laptop', 'twimc', 'opportstorage', 'product', 'along', 'ruben', 'castro', 'company', 'receive', 'free', 'downloads', 'esprit', 'cam', 'software', 'local', 'authorized', 'esprit', 'dealer', 'teaming', 'project', 'locally', 'wondering', 'needed', 'order', 'receive', 'administrative', 'approval'] processed_text: ['loading', 'esprit', 'cam', 'software', 'laptop', 'twimc', 'opportstorage', 'product', 'along', 'ruben', 'castro', 'company', 'receive', 'free', 'downloads', 'esprit', 'cam', 'software', 'local', 'authorized', 'esprit', 'dealer', 'teaming', 'project', 'locally', 'wondering', 'needed', 'order', 'receive', 'administrative', 'approval'] list_processed_text: [['loading'], ['esprit'], ['cam'], ['software'], ['laptop'], ['twimc'], ['opportstorage'], ['product'], ['along'], ['ruben'], ['castro'], ['company'], ['receive'], ['free'], ['downloads'], ['esprit'], ['cam'], ['software'], ['local'], ['authorized'], ['esprit'], ['dealer'], ['teaming'], ['project'], ['locally'], ['wondering'], ['needed'], ['order'], ['receive'], ['administrative'], ['approval']] k: 3737 len: <class 'list'> Data: ['cannot', 'connect', 'outlook', 'home', 'cannot', 'connect', 'outlook', 'home'] processed_text: ['cannot', 'connect', 'outlook', 'home', 'cannot', 'connect', 'outlook', 'home'] list_processed_text: [['cannot'], ['connect'], ['outlook'], ['home'], ['cannot'], ['connect'], ['outlook'], ['home']] k: 3738 len: <class 'list'> Data: ['prpf', 'instead', 'prir', 'usa', 'location', 'order', 'operation', 'mii', 'showed', 'order', 'prpf', 'status', 'looking', 'erp', 'order', 'partially', 'confirmed', 'followed', 'automatic', 'pause', 'mii', 'add', 'change', 'log', 'show', 'entry', 'done', 'miiadmin', 'weird', 'since', 'erp', 'showing', 'expected', 'status', 'provided', 'mii', 'mii', 'showing', 'prpf', 'status', 'make', 'sense', 'reporting', 'issue', 'team', 'deep', 'dive', 'come', 'solution'] processed_text: ['prpf', 'instead', 'prir', 'usa', 'location', 'order', 'operation', 'mii', 'showed', 'order', 'prpf', 'status', 'looking', 'erp', 'order', 'partially', 'confirmed', 'followed', 'automatic', 'pause', 'mii', 'add', 'change', 'log', 'show', 'entry', 'done', 'miiadmin', 'weird', 'since', 'erp', 'showing', 'expected', 'status', 'provided', 'mii', 'mii', 'showing', 'prpf', 'status', 'make', 'sense', 'reporting', 'issue', 'team', 'deep', 'dive', 'come', 'solution'] list_processed_text: [['prpf'], ['instead'], ['prir'], ['usa'], ['location'], ['order'], ['operation'], ['mii'], ['showed'], ['order'], ['prpf'], ['status'], ['looking'], ['erp'], ['order'], ['partially'], ['confirmed'], ['followed'], ['automatic'], ['pause'], ['mii'], ['add'], ['change'], ['log'], ['show'], ['entry'], ['done'], ['miiadmin'], ['weird'], ['since'], ['erp'], ['showing'], ['expected'], ['status'], ['provided'], ['mii'], ['mii'], ['showing'], ['prpf'], ['status'], ['make'], ['sense'], ['reporting'], ['issue'], ['team'], ['deep'], ['dive'], ['come'], ['solution']] k: 3739 len: <class 'list'> Data: ['qipzctgs', 'wjhtbpfr', 'need', 'network', 'account', 'get', 'email', 'etime', 'qipzctgs', 'wjhtbpfr', 'onsite', 'usa', 'baker', 'need', 'access', 'use', 'etime', 'email', 'told', 'need', 'network', 'account', 'get', 'et', 'urgent', 'need'] processed_text: ['qipzctgs', 'wjhtbpfr', 'need', 'network', 'account', 'get', 'email', 'etime', 'qipzctgs', 'wjhtbpfr', 'onsite', 'usa', 'baker', 'need', 'access', 'use', 'etime', 'email', 'told', 'need', 'network', 'account', 'get', 'et', 'urgent', 'need'] list_processed_text: [['qipzctgs'], ['wjhtbpfr'], ['need'], ['network'], ['account'], ['get'], ['email'], ['etime'], ['qipzctgs'], ['wjhtbpfr'], ['onsite'], ['usa'], ['baker'], ['need'], ['access'], ['use'], ['etime'], ['email'], ['told'], ['need'], ['network'], ['account'], ['get'], ['et'], ['urgent'], ['need']] k: 3740 len: <class 'list'> Data: ['cannot', 'access', 'discount', 'tool', 'trying', 'enter', 'discount', 'get', 'following', 'message', 'error', 'occured', 'contact', 'pricing', 'new', 'laptop', 'think', 'configured', 'yet'] processed_text: ['cannot', 'access', 'discount', 'tool', 'trying', 'enter', 'discount', 'get', 'following', 'message', 'error', 'occured', 'contact', 'pricing', 'new', 'laptop', 'think', 'configured', 'yet'] list_processed_text: [['cannot'], ['access'], ['discount'], ['tool'], ['trying'], ['enter'], ['discount'], ['get'], ['following'], ['message'], ['error'], ['occured'], ['contact'], ['pricing'], ['new'], ['laptop'], ['think'], ['configured'], ['yet']] k: 3741 len: <class 'list'> Data: ['confirm', 'threshold', 'qty', 'set', 'confirm', 'qty', 'threshold', 'give', 'error', 'even', 'try', 'confirm', 'order', 'planned', 'qty', 'default', 'example', 'order', 'piece', 'confirmation', 'screen', 'default', 'show', 'piece', 'give', 'warning', 'threshold', 'set', 'believe', 'get', 'warning', 'confirming', 'piece', 'higher', 'threshold', 'threshold', 'check', 'piece', 'entered', 'equal', 'le', 'planned', 'warning'] processed_text: ['confirm', 'threshold', 'qty', 'set', 'confirm', 'qty', 'threshold', 'give', 'error', 'even', 'try', 'confirm', 'order', 'planned', 'qty', 'default', 'example', 'order', 'piece', 'confirmation', 'screen', 'default', 'show', 'piece', 'give', 'warning', 'threshold', 'set', 'believe', 'get', 'warning', 'confirming', 'piece', 'higher', 'threshold', 'threshold', 'check', 'piece', 'entered', 'equal', 'le', 'planned', 'warning'] list_processed_text: [['confirm'], ['threshold'], ['qty'], ['set'], ['confirm'], ['qty'], ['threshold'], ['give'], ['error'], ['even'], ['try'], ['confirm'], ['order'], ['planned'], ['qty'], ['default'], ['example'], ['order'], ['piece'], ['confirmation'], ['screen'], ['default'], ['show'], ['piece'], ['give'], ['warning'], ['threshold'], ['set'], ['believe'], ['get'], ['warning'], ['confirming'], ['piece'], ['higher'], ['threshold'], ['threshold'], ['check'], ['piece'], ['entered'], ['equal'], ['le'], ['planned'], ['warning']] k: 3742 len: <class 'list'> Data: ['performance', 'improvement', 'tuning', 'performance', 'improvement', 'tuning', 'machine', 'summary', 'load', 'list'] processed_text: ['performance', 'improvement', 'tuning', 'performance', 'improvement', 'tuning', 'machine', 'summary', 'load', 'list'] list_processed_text: [['performance'], ['improvement'], ['tuning'], ['performance'], ['improvement'], ['tuning'], ['machine'], ['summary'], ['load'], ['list']] k: 3743 len: <class 'list'> Data: ['erp', 'sid', 'login', 'issue', 'terhyury', 'portelance', 'name', 'chhyene', 'dolhyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'currently', 'phone', 'salesman', 'terhyury', 'portelance', 'need', 'password', 'reset', 'erp', 'help', 'user', 'id', 'porteta'] processed_text: ['erp', 'sid', 'login', 'issue', 'terhyury', 'portelance', 'name', 'chhyene', 'dolhyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'currently', 'phone', 'salesman', 'terhyury', 'portelance', 'need', 'password', 'reset', 'erp', 'help', 'user', 'id', 'porteta'] list_processed_text: [['erp'], ['sid'], ['login'], ['issue'], ['terhyury'], ['portelance'], ['name'], ['chhyene'], ['dolhyt'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['currently'], ['phone'], ['salesman'], ['terhyury'], ['portelance'], ['need'], ['password'], ['reset'], ['erp'], ['help'], ['user'], ['id'], ['porteta']] k: 3744 len: <class 'list'> Data: ['vmsliazh', 'ltksxmyv', 'causing', 'high', 'cpu', 'utilization', 'server', 'hostname', 'noticed', 'cpu', 'utilization', 'mii', 'uacyltoe', 'hxgaycze', 'server', 'hostname', 'hovering', 'around', 'occasional', 'spike', 'stopped', 'background', 'job', 'even', 'rebooted', 'server', 'utilization', 'still', 'high', 'attached', 'screen', 'shot', 'task', 'manager', 'process', 'showing', 'sql', 'process', 'anything', 'check', 'server', 'see', 'consuming', 'much', 'system', 'resource', 'user', 'currently', 'using', 'uacyltoe', 'hxgaycze', 'system', 'time'] processed_text: ['vmsliazh', 'ltksxmyv', 'causing', 'high', 'cpu', 'utilization', 'server', 'hostname', 'noticed', 'cpu', 'utilization', 'mii', 'uacyltoe', 'hxgaycze', 'server', 'hostname', 'hovering', 'around', 'occasional', 'spike', 'stopped', 'background', 'job', 'even', 'rebooted', 'server', 'utilization', 'still', 'high', 'attached', 'screen', 'shot', 'task', 'manager', 'process', 'showing', 'sql', 'process', 'anything', 'check', 'server', 'see', 'consuming', 'much', 'system', 'resource', 'user', 'currently', 'using', 'uacyltoe', 'hxgaycze', 'system', 'time'] list_processed_text: [['vmsliazh'], ['ltksxmyv'], ['causing'], ['high'], ['cpu'], ['utilization'], ['server'], ['hostname'], ['noticed'], ['cpu'], ['utilization'], ['mii'], ['uacyltoe'], ['hxgaycze'], ['server'], ['hostname'], ['hovering'], ['around'], ['occasional'], ['spike'], ['stopped'], ['background'], ['job'], ['even'], ['rebooted'], ['server'], ['utilization'], ['still'], ['high'], ['attached'], ['screen'], ['shot'], ['task'], ['manager'], ['process'], ['showing'], ['sql'], ['process'], ['anything'], ['check'], ['server'], ['see'], ['consuming'], ['much'], ['system'], ['resource'], ['user'], ['currently'], ['using'], ['uacyltoe'], ['hxgaycze'], ['system'], ['time']] k: 3745 len: <class 'list'> Data: ['outlook', 'addin', 'crm', 'showing', 'outlook', 'addin', 'crm', 'showing'] processed_text: ['outlook', 'addin', 'crm', 'showing', 'outlook', 'addin', 'crm', 'showing'] list_processed_text: [['outlook'], ['addin'], ['crm'], ['showing'], ['outlook'], ['addin'], ['crm'], ['showing']] k: 3746 len: <class 'list'> Data: ['need', 'acces', 'erp', 'hello', 'erp', 'user', 'id', 'issue', 'rudra', 'erp', 'system', 'sid', 'sid', 'sid', 'sid', 'sid', 'portal', 'sid', 'error', 'screenshot', 'unable', 'open', 'transaction', 'code', 'code', 'allow', 'change', 'anything', 'material', 'su', 'screenshot', 'business', 'justification', 'working', 'usa', 'work', 'schtrtgoyht', 'schhdgtmips', 'reference', 'mirror', 'user', 'id', 'job', 'title', 'access', 'schhdgtmips'] processed_text: ['need', 'acces', 'erp', 'hello', 'erp', 'user', 'id', 'issue', 'rudra', 'erp', 'system', 'sid', 'sid', 'sid', 'sid', 'sid', 'portal', 'sid', 'error', 'screenshot', 'unable', 'open', 'transaction', 'code', 'code', 'allow', 'change', 'anything', 'material', 'su', 'screenshot', 'business', 'justification', 'working', 'usa', 'work', 'schtrtgoyht', 'schhdgtmips', 'reference', 'mirror', 'user', 'id', 'job', 'title', 'access', 'schhdgtmips'] list_processed_text: [['need'], ['acces'], ['erp'], ['hello'], ['erp'], ['user'], ['id'], ['issue'], ['rudra'], ['erp'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['sid'], ['portal'], ['sid'], ['error'], ['screenshot'], ['unable'], ['open'], ['transaction'], ['code'], ['code'], ['allow'], ['change'], ['anything'], ['material'], ['su'], ['screenshot'], ['business'], ['justification'], ['working'], ['usa'], ['work'], ['schtrtgoyht'], ['schhdgtmips'], ['reference'], ['mirror'], ['user'], ['id'], ['job'], ['title'], ['access'], ['schhdgtmips']] k: 3747 len: <class 'list'> Data: ['unable', 'print', 'expense', 'report', 'unable', 'print', 'expense', 'report'] processed_text: ['unable', 'print', 'expense', 'report', 'unable', 'print', 'expense', 'report'] list_processed_text: [['unable'], ['print'], ['expense'], ['report'], ['unable'], ['print'], ['expense'], ['report']] k: 3748 len: <class 'list'> Data: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'michbhuael', 'last', 'name', 'laugdghjhlin', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['password', 'reset', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'michbhuael', 'last', 'name', 'laugdghjhlin', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['password'], ['reset'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['amar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['michbhuael'], ['last'], ['name'], ['laugdghjhlin'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 3749 len: <class 'list'> Data: ['create', 'delivery', 'sto', 'company', 'south', 'amerirtca', 'look', 'sto', 'someone', 'facility', 'nobody', 'able', 'help'] processed_text: ['create', 'delivery', 'sto', 'company', 'south', 'amerirtca', 'look', 'sto', 'someone', 'facility', 'nobody', 'able', 'help'] list_processed_text: [['create'], ['delivery'], ['sto'], ['company'], ['south'], ['amerirtca'], ['look'], ['sto'], ['someone'], ['facility'], ['nobody'], ['able'], ['help']] k: 3750 len: <class 'list'> Data: ['create', 'co', 'object', 'aacount', 'plant', 'gr', 'delivery', 'sto', 'possible', 'gr', 'delivery', 'sto', 'error', 'account', 'requires', 'assignment', 'co', 'object', 'message', 'ki', 'diagnosis', 'defined', 'co', 'account', 'assignment', 'account', 'relevant', 'cost', 'accounting', 'system', 'response', 'account', 'defined', 'cost', 'element', 'mean', 'must', 'always', 'specify', 'co', 'account', 'assignment', 'procedure', 'enter', 'one', 'following', 'co', 'account', 'assignment', 'order', 'cost', 'center', 'cost', 'center', 'activity', 'type', 'sale', 'order', 'item', 'project', 'cost', 'relevant', 'project', 'wb', 'element', 'cost', 'object', 'process', 'manufacturing', 'network', 'network', 'activity', 'business', 'process', 'profitability', 'segment', 'real', 'estate', 'object', 'posting', 'row', 'affected', 'account'] processed_text: ['create', 'co', 'object', 'aacount', 'plant', 'gr', 'delivery', 'sto', 'possible', 'gr', 'delivery', 'sto', 'error', 'account', 'requires', 'assignment', 'co', 'object', 'message', 'ki', 'diagnosis', 'defined', 'co', 'account', 'assignment', 'account', 'relevant', 'cost', 'accounting', 'system', 'response', 'account', 'defined', 'cost', 'element', 'mean', 'must', 'always', 'specify', 'co', 'account', 'assignment', 'procedure', 'enter', 'one', 'following', 'co', 'account', 'assignment', 'order', 'cost', 'center', 'cost', 'center', 'activity', 'type', 'sale', 'order', 'item', 'project', 'cost', 'relevant', 'project', 'wb', 'element', 'cost', 'object', 'process', 'manufacturing', 'network', 'network', 'activity', 'business', 'process', 'profitability', 'segment', 'real', 'estate', 'object', 'posting', 'row', 'affected', 'account'] list_processed_text: [['create'], ['co'], ['object'], ['aacount'], ['plant'], ['gr'], ['delivery'], ['sto'], ['possible'], ['gr'], ['delivery'], ['sto'], ['error'], ['account'], ['requires'], ['assignment'], ['co'], ['object'], ['message'], ['ki'], ['diagnosis'], ['defined'], ['co'], ['account'], ['assignment'], ['account'], ['relevant'], ['cost'], ['accounting'], ['system'], ['response'], ['account'], ['defined'], ['cost'], ['element'], ['mean'], ['must'], ['always'], ['specify'], ['co'], ['account'], ['assignment'], ['procedure'], ['enter'], ['one'], ['following'], ['co'], ['account'], ['assignment'], ['order'], ['cost'], ['center'], ['cost'], ['center'], ['activity'], ['type'], ['sale'], ['order'], ['item'], ['project'], ['cost'], ['relevant'], ['project'], ['wb'], ['element'], ['cost'], ['object'], ['process'], ['manufacturing'], ['network'], ['network'], ['activity'], ['business'], ['process'], ['profitability'], ['segment'], ['real'], ['estate'], ['object'], ['posting'], ['row'], ['affected'], ['account']] k: 3751 len: <class 'list'> Data: ['application', 'hana', 'sidecar', 'prod', 'node', 'hostname', 'warning', 'state', 'cpu', 'load', 'high', 'service', 'application', 'hana', 'sidecar', 'prod', 'node', 'hostname', 'warning', 'state', 'cpu', 'load', 'high', 'service'] processed_text: ['application', 'hana', 'sidecar', 'prod', 'node', 'hostname', 'warning', 'state', 'cpu', 'load', 'high', 'service', 'application', 'hana', 'sidecar', 'prod', 'node', 'hostname', 'warning', 'state', 'cpu', 'load', 'high', 'service'] list_processed_text: [['application'], ['hana'], ['sidecar'], ['prod'], ['node'], ['hostname'], ['warning'], ['state'], ['cpu'], ['load'], ['high'], ['service'], ['application'], ['hana'], ['sidecar'], ['prod'], ['node'], ['hostname'], ['warning'], ['state'], ['cpu'], ['load'], ['high'], ['service']] k: 3752 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 3753 len: <class 'list'> Data: ['vip', 'erp', 'sid', 'account', 'unlock', 'user', 'vvshyuwb', 'vip', 'erp', 'sid', 'account', 'unlock', 'user', 'vvshyuwb', 'stefyty', 'parkeyhrt', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'need', 'unlock', 'userid', 'vvshyuwb', 'importance', 'high', 'please', 'assist', 'user', 'aerp', 'consultant', 'project'] processed_text: ['vip', 'erp', 'sid', 'account', 'unlock', 'user', 'vvshyuwb', 'vip', 'erp', 'sid', 'account', 'unlock', 'user', 'vvshyuwb', 'stefyty', 'parkeyhrt', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'need', 'unlock', 'userid', 'vvshyuwb', 'importance', 'high', 'please', 'assist', 'user', 'aerp', 'consultant', 'project'] list_processed_text: [['vip'], ['erp'], ['sid'], ['account'], ['unlock'], ['user'], ['vvshyuwb'], ['vip'], ['erp'], ['sid'], ['account'], ['unlock'], ['user'], ['vvshyuwb'], ['stefyty'], ['parkeyhrt'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['need'], ['unlock'], ['userid'], ['vvshyuwb'], ['importance'], ['high'], ['please'], ['assist'], ['user'], ['aerp'], ['consultant'], ['project']] k: 3754 len: <class 'list'> Data: ['vip', 'unable', 'access', 'collaboration', 'platform', 'name', 'brandhyht', 'muthdyrta', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'collaboration', 'platform', 'problem', 'try', 'access', 'error', 'server', 'busy', 'try', 'later', 'correlation', 'id', 'edad', 'ef', 'date', 'time'] processed_text: ['vip', 'unable', 'access', 'collaboration', 'platform', 'name', 'brandhyht', 'muthdyrta', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'collaboration', 'platform', 'problem', 'try', 'access', 'error', 'server', 'busy', 'try', 'later', 'correlation', 'id', 'edad', 'ef', 'date', 'time'] list_processed_text: [['vip'], ['unable'], ['access'], ['collaboration'], ['platform'], ['name'], ['brandhyht'], ['muthdyrta'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['collaboration'], ['platform'], ['problem'], ['try'], ['access'], ['error'], ['server'], ['busy'], ['try'], ['later'], ['correlation'], ['id'], ['edad'], ['ef'], ['date'], ['time']] k: 3755 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['unable'], ['access'], ['collaboration'], ['platform']] k: 3756 len: <class 'list'> Data: ['customer', 'master', 'changed', 'hello', 'customer', 'changed', 'data', 'updated', 'registration', 'ship', 'registered', 'sold', 'like'] processed_text: ['customer', 'master', 'changed', 'hello', 'customer', 'changed', 'data', 'updated', 'registration', 'ship', 'registered', 'sold', 'like'] list_processed_text: [['customer'], ['master'], ['changed'], ['hello'], ['customer'], ['changed'], ['data'], ['updated'], ['registration'], ['ship'], ['registered'], ['sold'], ['like']] k: 3757 len: <class 'list'> Data: ['missing', 'ewa', 'report', 'sid', 'received', 'sid', 'ewa', 'report', 'please', 'fix'] processed_text: ['missing', 'ewa', 'report', 'sid', 'received', 'sid', 'ewa', 'report', 'please', 'fix'] list_processed_text: [['missing'], ['ewa'], ['report'], ['sid'], ['received'], ['sid'], ['ewa'], ['report'], ['please'], ['fix']] k: 3758 len: <class 'list'> Data: ['vip', 'unable', 'access', 'collaboration', 'platform', 'vip', 'unable', 'access', 'collaboration', 'platform'] processed_text: ['vip', 'unable', 'access', 'collaboration', 'platform', 'vip', 'unable', 'access', 'collaboration', 'platform'] list_processed_text: [['vip'], ['unable'], ['access'], ['collaboration'], ['platform'], ['vip'], ['unable'], ['access'], ['collaboration'], ['platform']] k: 3759 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'unable', 'access', 'collaboration', 'platform'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['unable'], ['access'], ['collaboration'], ['platform']] k: 3760 len: <class 'list'> Data: ['please', 'provide', 'vpn', 'access', 'ngfedxrp', 'oirmgqcs', 'hodgek', 'approved', 'phjencfg', 'kwtcyazx', 'andhtyju', 'volkhd', 'pc', 'job', 'scheduler', 'owned', 'company', 'imaged', 'laptop', 'pc', 'name', 'job', 'schedulerbhml'] processed_text: ['please', 'provide', 'vpn', 'access', 'ngfedxrp', 'oirmgqcs', 'hodgek', 'approved', 'phjencfg', 'kwtcyazx', 'andhtyju', 'volkhd', 'pc', 'job', 'scheduler', 'owned', 'company', 'imaged', 'laptop', 'pc', 'name', 'job', 'schedulerbhml'] list_processed_text: [['please'], ['provide'], ['vpn'], ['access'], ['ngfedxrp'], ['oirmgqcs'], ['hodgek'], ['approved'], ['phjencfg'], ['kwtcyazx'], ['andhtyju'], ['volkhd'], ['pc'], ['job'], ['scheduler'], ['owned'], ['company'], ['imaged'], ['laptop'], ['pc'], ['name'], ['job'], ['schedulerbhml']] k: 3761 len: <class 'list'> Data: ['error', 'qualify', 'new', 'leadin', 'm', 'dynamic', 'crm', 'hi', 'working', 'crm', 'tried', 'qualify', 'new', 'lead', 'got', 'error', 'please', 'advise'] processed_text: ['error', 'qualify', 'new', 'leadin', 'm', 'dynamic', 'crm', 'hi', 'working', 'crm', 'tried', 'qualify', 'new', 'lead', 'got', 'error', 'please', 'advise'] list_processed_text: [['error'], ['qualify'], ['new'], ['leadin'], ['m'], ['dynamic'], ['crm'], ['hi'], ['working'], ['crm'], ['tried'], ['qualify'], ['new'], ['lead'], ['got'], ['error'], ['please'], ['advise']] k: 3762 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3763 len: <class 'list'> Data: ['unable', 'click', 'claim', 'page', 'insurance', 'website', 'unable', 'click', 'claim', 'page', 'insurance', 'website'] processed_text: ['unable', 'click', 'claim', 'page', 'insurance', 'website', 'unable', 'click', 'claim', 'page', 'insurance', 'website'] list_processed_text: [['unable'], ['click'], ['claim'], ['page'], ['insurance'], ['website'], ['unable'], ['click'], ['claim'], ['page'], ['insurance'], ['website']] k: 3764 len: <class 'list'> Data: ['unable', 'find', 'po', 'pending', 'hello', 'unable', 'find', 'po', 'pending', 'pl', 'find', 'screen', 'shot', 'upon', 'going', 'thro', 'sid', 'kindly', 'needfufl'] processed_text: ['unable', 'find', 'po', 'pending', 'hello', 'unable', 'find', 'po', 'pending', 'pl', 'find', 'screen', 'shot', 'upon', 'going', 'thro', 'sid', 'kindly', 'needfufl'] list_processed_text: [['unable'], ['find'], ['po'], ['pending'], ['hello'], ['unable'], ['find'], ['po'], ['pending'], ['pl'], ['find'], ['screen'], ['shot'], ['upon'], ['going'], ['thro'], ['sid'], ['kindly'], ['needfufl']] k: 3765 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sanmhty', 'mahatndhyua', 'pm', 'nwfodmhc', 'exurcwkm', 'sonia', 'fw', 'reminder', 'approval', 'requisition', 'hi', 'please', 'reset', 'erp', 'password', 'use', 'regularly', 'clear', 'mentioned', 'pr', 'urgently'] processed_text: ['password', 'reset', 'erp', 'sanmhty', 'mahatndhyua', 'pm', 'nwfodmhc', 'exurcwkm', 'sonia', 'fw', 'reminder', 'approval', 'requisition', 'hi', 'please', 'reset', 'erp', 'password', 'use', 'regularly', 'clear', 'mentioned', 'pr', 'urgently'] list_processed_text: [['password'], ['reset'], ['erp'], ['sanmhty'], ['mahatndhyua'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['sonia'], ['fw'], ['reminder'], ['approval'], ['requisition'], ['hi'], ['please'], ['reset'], ['erp'], ['password'], ['use'], ['regularly'], ['clear'], ['mentioned'], ['pr'], ['urgently']] k: 3766 len: <class 'list'> Data: ['unable', 'login', 'vcenter', 'hostname', 'unable', 'login', 'vcenter', 'hostname'] processed_text: ['unable', 'login', 'vcenter', 'hostname', 'unable', 'login', 'vcenter', 'hostname'] list_processed_text: [['unable'], ['login'], ['vcenter'], ['hostname'], ['unable'], ['login'], ['vcenter'], ['hostname']] k: 3767 len: <class 'list'> Data: ['job', 'kk', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'kk', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'kk', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'kk', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['kk'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['kk'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 3768 len: <class 'list'> Data: ['discount', 'form', 'hello', 'able', 'use', 'discount', 'request', 'form', 'following', 'window', 'open', 'click', 'new', 'request', 'please', 'help', 'best'] processed_text: ['discount', 'form', 'hello', 'able', 'use', 'discount', 'request', 'form', 'following', 'window', 'open', 'click', 'new', 'request', 'please', 'help', 'best'] list_processed_text: [['discount'], ['form'], ['hello'], ['able'], ['use'], ['discount'], ['request'], ['form'], ['following'], ['window'], ['open'], ['click'], ['new'], ['request'], ['please'], ['help'], ['best']] k: 3769 len: <class 'list'> Data: ['replication', 'error', 'domain', 'controller', 'hostname', 'see', 'event', 'ld', 'related', 'dc', 'replication', 'issue', 'hence', 'reboot', 'server'] processed_text: ['replication', 'error', 'domain', 'controller', 'hostname', 'see', 'event', 'ld', 'related', 'dc', 'replication', 'issue', 'hence', 'reboot', 'server'] list_processed_text: [['replication'], ['error'], ['domain'], ['controller'], ['hostname'], ['see'], ['event'], ['ld'], ['related'], ['dc'], ['replication'], ['issue'], ['hence'], ['reboot'], ['server']] k: 3770 len: <class 'list'> Data: ['zredeploy', 'created', 'sto', 'future', 'committed', 'date', 'sto', 'created', 'zredeploy', 'future', 'committed', 'date', 'even', 'stock', 'available', 'sender', 'warehouse'] processed_text: ['zredeploy', 'created', 'sto', 'future', 'committed', 'date', 'sto', 'created', 'zredeploy', 'future', 'committed', 'date', 'even', 'stock', 'available', 'sender', 'warehouse'] list_processed_text: [['zredeploy'], ['created'], ['sto'], ['future'], ['committed'], ['date'], ['sto'], ['created'], ['zredeploy'], ['future'], ['committed'], ['date'], ['even'], ['stock'], ['available'], ['sender'], ['warehouse']] k: 3771 len: <class 'list'> Data: ['require', 'new', 'driver', 'local', 'printer', 'require', 'new', 'driver', 'local', 'printer'] processed_text: ['require', 'new', 'driver', 'local', 'printer', 'require', 'new', 'driver', 'local', 'printer'] list_processed_text: [['require'], ['new'], ['driver'], ['local'], ['printer'], ['require'], ['new'], ['driver'], ['local'], ['printer']] k: 3772 len: <class 'list'> Data: ['able', 'save', 'spreadsheet', 'team', 'document', 'need', 'able', 'save', 'several', 'time', 'day', 'team', 'document', 'attach', 'screenshot'] processed_text: ['able', 'save', 'spreadsheet', 'team', 'document', 'need', 'able', 'save', 'several', 'time', 'day', 'team', 'document', 'attach', 'screenshot'] list_processed_text: [['able'], ['save'], ['spreadsheet'], ['team'], ['document'], ['need'], ['able'], ['save'], ['several'], ['time'], ['day'], ['team'], ['document'], ['attach'], ['screenshot']] k: 3773 len: <class 'list'> Data: ['screenshot', 'please', 'look', 'error', 'message', 'let', 'know', 'fix', 'marjnstyk', 'jsytis', 'senior', 'sale', 'engineer', 'company', 'horz', 'logo'] processed_text: ['screenshot', 'please', 'look', 'error', 'message', 'let', 'know', 'fix', 'marjnstyk', 'jsytis', 'senior', 'sale', 'engineer', 'company', 'horz', 'logo'] list_processed_text: [['screenshot'], ['please'], ['look'], ['error'], ['message'], ['let'], ['know'], ['fix'], ['marjnstyk'], ['jsytis'], ['senior'], ['sale'], ['engineer'], ['company'], ['horz'], ['logo']] k: 3774 len: <class 'list'> Data: ['archiving', 'tool', 'server', 'optical', 'archive', 'document', 'hello', 'local', 'application', 'download', 'file', 'archiving', 'tool', 'server', 'content', 'repository', 'address', 'returning', 'valid', 'response', 'archiving', 'tool', 'addreess', 'tring', 'call', 'obtain', 'following', 'answer', 'http', 'status', 'procache', 'cscache', 'type', 'status', 'report', 'message', 'procache', 'cscache', 'description', 'requested', 'resource', 'available', 'kindly', 'ask', 'check', 'web', 'service', 'configuration', 'enable', 'comunication', 'port', 'trying', 'ping', 'archiving', 'tool', 'app', 'address', 'solved'] processed_text: ['archiving', 'tool', 'server', 'optical', 'archive', 'document', 'hello', 'local', 'application', 'download', 'file', 'archiving', 'tool', 'server', 'content', 'repository', 'address', 'returning', 'valid', 'response', 'archiving', 'tool', 'addreess', 'tring', 'call', 'obtain', 'following', 'answer', 'http', 'status', 'procache', 'cscache', 'type', 'status', 'report', 'message', 'procache', 'cscache', 'description', 'requested', 'resource', 'available', 'kindly', 'ask', 'check', 'web', 'service', 'configuration', 'enable', 'comunication', 'port', 'trying', 'ping', 'archiving', 'tool', 'app', 'address', 'solved'] list_processed_text: [['archiving'], ['tool'], ['server'], ['optical'], ['archive'], ['document'], ['hello'], ['local'], ['application'], ['download'], ['file'], ['archiving'], ['tool'], ['server'], ['content'], ['repository'], ['address'], ['returning'], ['valid'], ['response'], ['archiving'], ['tool'], ['addreess'], ['tring'], ['call'], ['obtain'], ['following'], ['answer'], ['http'], ['status'], ['procache'], ['cscache'], ['type'], ['status'], ['report'], ['message'], ['procache'], ['cscache'], ['description'], ['requested'], ['resource'], ['available'], ['kindly'], ['ask'], ['check'], ['web'], ['service'], ['configuration'], ['enable'], ['comunication'], ['port'], ['trying'], ['ping'], ['archiving'], ['tool'], ['app'], ['address'], ['solved']] k: 3775 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'sid', 'erp', 'account', 'haunm'] processed_text: ['erp', 'sid', 'password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'sid', 'erp', 'account', 'haunm'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['name'], ['mfeyouli'], ['ndobtzpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['reset'], ['sid'], ['erp'], ['account'], ['haunm']] k: 3776 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3777 len: <class 'list'> Data: ['outlook', 'open', 'outlook', 'open'] processed_text: ['outlook', 'open', 'outlook', 'open'] list_processed_text: [['outlook'], ['open'], ['outlook'], ['open']] k: 3778 len: <class 'list'> Data: ['shop', 'floor', 'app', 'reporting', 'status', 'lcosm', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'shop', 'floor', 'app', 'reporting', 'status', 'lcosm', 'able', 'ping', 'server', 'user', 'karansb', 'ping', 'lcosm', 'pinging', 'lcosm', 'company', 'company', 'com', 'byte', 'data', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss', 'approximate', 'round', 'trip', 'time', 'milli', 'second', 'minimum', 'm', 'maximum', 'm', 'average', 'm', 'user', 'karansb'] processed_text: ['shop', 'floor', 'app', 'reporting', 'status', 'lcosm', 'please', 'investigate', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'shop', 'floor', 'app', 'reporting', 'status', 'lcosm', 'able', 'ping', 'server', 'user', 'karansb', 'ping', 'lcosm', 'pinging', 'lcosm', 'company', 'company', 'com', 'byte', 'data', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'reply', 'byte', 'time', 'm', 'ttl', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss', 'approximate', 'round', 'trip', 'time', 'milli', 'second', 'minimum', 'm', 'maximum', 'm', 'average', 'm', 'user', 'karansb'] list_processed_text: [['shop'], ['floor'], ['app'], ['reporting'], ['status'], ['lcosm'], ['please'], ['investigate'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['et'], ['shop'], ['floor'], ['app'], ['reporting'], ['status'], ['lcosm'], ['able'], ['ping'], ['server'], ['user'], ['karansb'], ['ping'], ['lcosm'], ['pinging'], ['lcosm'], ['company'], ['company'], ['com'], ['byte'], ['data'], ['reply'], ['byte'], ['time'], ['m'], ['ttl'], ['reply'], ['byte'], ['time'], ['m'], ['ttl'], ['reply'], ['byte'], ['time'], ['m'], ['ttl'], ['reply'], ['byte'], ['time'], ['m'], ['ttl'], ['ping'], ['statistic'], ['packet'], ['sent'], ['received'], ['lost'], ['loss'], ['approximate'], ['round'], ['trip'], ['time'], ['milli'], ['second'], ['minimum'], ['m'], ['maximum'], ['m'], ['average'], ['m'], ['user'], ['karansb']] k: 3779 len: <class 'list'> Data: ['client', 'laptop', 'crashed', 'boot', 'client', 'laptop', 'crashed', 'boot'] processed_text: ['client', 'laptop', 'crashed', 'boot', 'client', 'laptop', 'crashed', 'boot'] list_processed_text: [['client'], ['laptop'], ['crashed'], ['boot'], ['client'], ['laptop'], ['crashed'], ['boot']] k: 3780 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 3781 len: <class 'list'> Data: ['plant', 'eu', 'tool', 'working', 'since', 'already', 'contact', 'eu', 'tool', 'system', 'india', 'need', 'imaginal', 'help', 'since', 'big', 'problem', 'eu', 'tool', 'since', 'today', 'eu', 'tool', 'chance', 'confirm', 'operation', 'sign', 'error', 'set', 'stockmanagement', 'etc', 'great', 'hinderance', 'plant'] processed_text: ['plant', 'eu', 'tool', 'working', 'since', 'already', 'contact', 'eu', 'tool', 'system', 'india', 'need', 'imaginal', 'help', 'since', 'big', 'problem', 'eu', 'tool', 'since', 'today', 'eu', 'tool', 'chance', 'confirm', 'operation', 'sign', 'error', 'set', 'stockmanagement', 'etc', 'great', 'hinderance', 'plant'] list_processed_text: [['plant'], ['eu'], ['tool'], ['working'], ['since'], ['already'], ['contact'], ['eu'], ['tool'], ['system'], ['india'], ['need'], ['imaginal'], ['help'], ['since'], ['big'], ['problem'], ['eu'], ['tool'], ['since'], ['today'], ['eu'], ['tool'], ['chance'], ['confirm'], ['operation'], ['sign'], ['error'], ['set'], ['stockmanagement'], ['etc'], ['great'], ['hinderance'], ['plant']] k: 3782 len: <class 'list'> Data: ['replace', 'monitor', 'cell', 'one', 'tiyhum', 'kuyiomar', 'sent', 'replace', 'monitor', 'cell', 'one', 'tiyhum', 'kuyiomar', 'sent'] processed_text: ['replace', 'monitor', 'cell', 'one', 'tiyhum', 'kuyiomar', 'sent', 'replace', 'monitor', 'cell', 'one', 'tiyhum', 'kuyiomar', 'sent'] list_processed_text: [['replace'], ['monitor'], ['cell'], ['one'], ['tiyhum'], ['kuyiomar'], ['sent'], ['replace'], ['monitor'], ['cell'], ['one'], ['tiyhum'], ['kuyiomar'], ['sent']] k: 3783 len: <class 'list'> Data: ['vip', 'collaboration', 'platform', 'access', 'problem', 'able', 'log', 'collaboration', 'platform', 'collaboration', 'platform', 'restarted', 'pc', 'multiple', 'time', 'tried', 'log', 'cannot', 'please', 'advise', 'see', 'screen', 'shot', 'sethdyr', 'hdtyr', 'assistant', 'general', 'counsel', 'compliance', 'real', 'estate'] processed_text: ['vip', 'collaboration', 'platform', 'access', 'problem', 'able', 'log', 'collaboration', 'platform', 'collaboration', 'platform', 'restarted', 'pc', 'multiple', 'time', 'tried', 'log', 'cannot', 'please', 'advise', 'see', 'screen', 'shot', 'sethdyr', 'hdtyr', 'assistant', 'general', 'counsel', 'compliance', 'real', 'estate'] list_processed_text: [['vip'], ['collaboration'], ['platform'], ['access'], ['problem'], ['able'], ['log'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['restarted'], ['pc'], ['multiple'], ['time'], ['tried'], ['log'], ['cannot'], ['please'], ['advise'], ['see'], ['screen'], ['shot'], ['sethdyr'], ['hdtyr'], ['assistant'], ['general'], ['counsel'], ['compliance'], ['real'], ['estate']] k: 3784 len: <class 'list'> Data: ['collaboration', 'platform', 'company', 'collaboration', 'platform', 'cannot', 'access', 'hub', 'keep', 'getting', 'message', 'rxqtvanc', 'kthqwxvb', 'region', 'controller', 'amerirtcas', 'email'] processed_text: ['collaboration', 'platform', 'company', 'collaboration', 'platform', 'cannot', 'access', 'hub', 'keep', 'getting', 'message', 'rxqtvanc', 'kthqwxvb', 'region', 'controller', 'amerirtcas', 'email'] list_processed_text: [['collaboration'], ['platform'], ['company'], ['collaboration'], ['platform'], ['cannot'], ['access'], ['hub'], ['keep'], ['getting'], ['message'], ['rxqtvanc'], ['kthqwxvb'], ['region'], ['controller'], ['amerirtcas'], ['email']] k: 3785 len: <class 'list'> Data: ['replace', 'monitor', 'across', 'yolktfas', 'fyoxqgvh', 'different', 'cable', 'needed', 'replace', 'monitor', 'across', 'yolktfas', 'fyoxqgvh', 'different', 'cable', 'needed'] processed_text: ['replace', 'monitor', 'across', 'yolktfas', 'fyoxqgvh', 'different', 'cable', 'needed', 'replace', 'monitor', 'across', 'yolktfas', 'fyoxqgvh', 'different', 'cable', 'needed'] list_processed_text: [['replace'], ['monitor'], ['across'], ['yolktfas'], ['fyoxqgvh'], ['different'], ['cable'], ['needed'], ['replace'], ['monitor'], ['across'], ['yolktfas'], ['fyoxqgvh'], ['different'], ['cable'], ['needed']] k: 3786 len: <class 'list'> Data: ['access', 'company', 'collaboration', 'platform', 'server', 'usa', 'get', 'error', 'message', 'indicating', 'server', 'busy', 'right', 'try', 'later', 'please', 'see', 'attachment', 'review', 'message', 'need', 'additional', 'information', 'reached'] processed_text: ['access', 'company', 'collaboration', 'platform', 'server', 'usa', 'get', 'error', 'message', 'indicating', 'server', 'busy', 'right', 'try', 'later', 'please', 'see', 'attachment', 'review', 'message', 'need', 'additional', 'information', 'reached'] list_processed_text: [['access'], ['company'], ['collaboration'], ['platform'], ['server'], ['usa'], ['get'], ['error'], ['message'], ['indicating'], ['server'], ['busy'], ['right'], ['try'], ['later'], ['please'], ['see'], ['attachment'], ['review'], ['message'], ['need'], ['additional'], ['information'], ['reached']] k: 3787 len: <class 'list'> Data: ['vip', 'hub', 'collaboration', 'platform', 'unable', 'access', 'hub', 'collaboration', 'platform', 'collaboration', 'platform', 'receive', 'error', 'best', 'lpoebzsc', 'grknswyo', 'executive', 'assistant', 'tofinance', 'vip', 'vice', 'president', 'chief', 'financial', 'officer'] processed_text: ['vip', 'hub', 'collaboration', 'platform', 'unable', 'access', 'hub', 'collaboration', 'platform', 'collaboration', 'platform', 'receive', 'error', 'best', 'lpoebzsc', 'grknswyo', 'executive', 'assistant', 'tofinance', 'vip', 'vice', 'president', 'chief', 'financial', 'officer'] list_processed_text: [['vip'], ['hub'], ['collaboration'], ['platform'], ['unable'], ['access'], ['hub'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['receive'], ['error'], ['best'], ['lpoebzsc'], ['grknswyo'], ['executive'], ['assistant'], ['tofinance'], ['vip'], ['vice'], ['president'], ['chief'], ['financial'], ['officer']] k: 3788 len: <class 'list'> Data: ['cursor', 'moving', 'opposite', 'direction', 'cursor', 'moving', 'opposite', 'direction'] processed_text: ['cursor', 'moving', 'opposite', 'direction', 'cursor', 'moving', 'opposite', 'direction'] list_processed_text: [['cursor'], ['moving'], ['opposite'], ['direction'], ['cursor'], ['moving'], ['opposite'], ['direction']] k: 3789 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3790 len: <class 'list'> Data: ['erp', 'password', 'reset', 'user', 'lombab', 'vrcqhnty', 'ajomhkfv', 'summary', 'operator', 'know', 'mii', 'erp', 'username', 'password'] processed_text: ['erp', 'password', 'reset', 'user', 'lombab', 'vrcqhnty', 'ajomhkfv', 'summary', 'operator', 'know', 'mii', 'erp', 'username', 'password'] list_processed_text: [['erp'], ['password'], ['reset'], ['user'], ['lombab'], ['vrcqhnty'], ['ajomhkfv'], ['summary'], ['operator'], ['know'], ['mii'], ['erp'], ['username'], ['password']] k: 3791 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 3792 len: <class 'list'> Data: ['server', 'busy', 'collaboration', 'platform', 'server', 'busy', 'collaboration', 'platform'] processed_text: ['server', 'busy', 'collaboration', 'platform', 'server', 'busy', 'collaboration', 'platform'] list_processed_text: [['server'], ['busy'], ['collaboration'], ['platform'], ['server'], ['busy'], ['collaboration'], ['platform']] k: 3793 len: <class 'list'> Data: ['active', 'content', 'version', 'open', 'save', 'nxa', 'two', 'epj', 'active', 'content', 'version', 'tried', 'using', 'dscsag', 'dm', 'kpro', 'double', 'repair', 'without', 'success', 'according', 'bob', 'report', 'erp', 'called', 'rsir', 'content', 'unmarkhty', 'prelim', 'resolve', 'issue', 'multiple', 'active', 'content', 'version'] processed_text: ['active', 'content', 'version', 'open', 'save', 'nxa', 'two', 'epj', 'active', 'content', 'version', 'tried', 'using', 'dscsag', 'dm', 'kpro', 'double', 'repair', 'without', 'success', 'according', 'bob', 'report', 'erp', 'called', 'rsir', 'content', 'unmarkhty', 'prelim', 'resolve', 'issue', 'multiple', 'active', 'content', 'version'] list_processed_text: [['active'], ['content'], ['version'], ['open'], ['save'], ['nxa'], ['two'], ['epj'], ['active'], ['content'], ['version'], ['tried'], ['using'], ['dscsag'], ['dm'], ['kpro'], ['double'], ['repair'], ['without'], ['success'], ['according'], ['bob'], ['report'], ['erp'], ['called'], ['rsir'], ['content'], ['unmarkhty'], ['prelim'], ['resolve'], ['issue'], ['multiple'], ['active'], ['content'], ['version']] k: 3794 len: <class 'list'> Data: ['vip', 'printer', 'driver', 'installing', 'unsuccessful', 'installing', 'driver', 'network', 'printer', 'tc', 'tc', 'attempt', 'result', 'error', 'processing', 'request'] processed_text: ['vip', 'printer', 'driver', 'installing', 'unsuccessful', 'installing', 'driver', 'network', 'printer', 'tc', 'tc', 'attempt', 'result', 'error', 'processing', 'request'] list_processed_text: [['vip'], ['printer'], ['driver'], ['installing'], ['unsuccessful'], ['installing'], ['driver'], ['network'], ['printer'], ['tc'], ['tc'], ['attempt'], ['result'], ['error'], ['processing'], ['request']] k: 3795 len: <class 'list'> Data: ['company', 'collaboration', 'platform', 'com', 'application', 'status', 'et', 'company', 'collaboration', 'platform', 'com', 'application', 'status', 'et'] processed_text: ['company', 'collaboration', 'platform', 'com', 'application', 'status', 'et', 'company', 'collaboration', 'platform', 'com', 'application', 'status', 'et'] list_processed_text: [['company'], ['collaboration'], ['platform'], ['com'], ['application'], ['status'], ['et'], ['company'], ['collaboration'], ['platform'], ['com'], ['application'], ['status'], ['et']] k: 3796 len: <class 'list'> Data: ['printer', 'em', 'defective', 'printer', 'em', 'longer', 'print', 'error', 'paper', 'feed', 'according', 'instruction', 'looked', 'error', 'message', 'found', 'nothing'] processed_text: ['printer', 'em', 'defective', 'printer', 'em', 'longer', 'print', 'error', 'paper', 'feed', 'according', 'instruction', 'looked', 'error', 'message', 'found', 'nothing'] list_processed_text: [['printer'], ['em'], ['defective'], ['printer'], ['em'], ['longer'], ['print'], ['error'], ['paper'], ['feed'], ['according'], ['instruction'], ['looked'], ['error'], ['message'], ['found'], ['nothing']] k: 3797 len: <class 'list'> Data: ['error', 'message', 'different', 'view', 'working', 'crm', 'getting', 'exit', 'pop', 'ups', 'attached', 'screen'] processed_text: ['error', 'message', 'different', 'view', 'working', 'crm', 'getting', 'exit', 'pop', 'ups', 'attached', 'screen'] list_processed_text: [['error'], ['message'], ['different'], ['view'], ['working'], ['crm'], ['getting'], ['exit'], ['pop'], ['ups'], ['attached'], ['screen']] k: 3798 len: <class 'list'> Data: ['wk', 'erp', 'printer', 'print', 'clean', 'page', 'wedgrtyh', 'ahsnwtey', 'wk', 'erp', 'printer', 'print', 'clean', 'page', 'wedgrtyh', 'ahsnwtey'] processed_text: ['wk', 'erp', 'printer', 'print', 'clean', 'page', 'wedgrtyh', 'ahsnwtey', 'wk', 'erp', 'printer', 'print', 'clean', 'page', 'wedgrtyh', 'ahsnwtey'] list_processed_text: [['wk'], ['erp'], ['printer'], ['print'], ['clean'], ['page'], ['wedgrtyh'], ['ahsnwtey'], ['wk'], ['erp'], ['printer'], ['print'], ['clean'], ['page'], ['wedgrtyh'], ['ahsnwtey']] k: 3799 len: <class 'list'> Data: ['vip', 'unable', 'sign', 'one', 'note', 'password', 'synching', 'vip', 'unable', 'sign', 'one', 'note', 'password', 'synching'] processed_text: ['vip', 'unable', 'sign', 'one', 'note', 'password', 'synching', 'vip', 'unable', 'sign', 'one', 'note', 'password', 'synching'] list_processed_text: [['vip'], ['unable'], ['sign'], ['one'], ['note'], ['password'], ['synching'], ['vip'], ['unable'], ['sign'], ['one'], ['note'], ['password'], ['synching']] k: 3800 len: <class 'list'> Data: ['create', 'account', 'iphone', 'create', 'new', 'one', 'entire', 'account', 'blocked', 'accessing', 'mail', 'account', 'via', 'iphone', 'account', 'iphone', 'must', 'deleted', 're-created'] processed_text: ['create', 'account', 'iphone', 'create', 'new', 'one', 'entire', 'account', 'blocked', 'accessing', 'mail', 'account', 'via', 'iphone', 'account', 'iphone', 'must', 'deleted', 're-created'] list_processed_text: [['create'], ['account'], ['iphone'], ['create'], ['new'], ['one'], ['entire'], ['account'], ['blocked'], ['accessing'], ['mail'], ['account'], ['via'], ['iphone'], ['account'], ['iphone'], ['must'], ['deleted'], ['re-created']] k: 3801 len: <class 'list'> Data: ['password', 'must', 'reset', 'probably', 'access', 'iphone', 'blocked', 'account', 'password', 'must', 'reset', 'jxphgfmb', 'gjbtuwek'] processed_text: ['password', 'must', 'reset', 'probably', 'access', 'iphone', 'blocked', 'account', 'password', 'must', 'reset', 'jxphgfmb', 'gjbtuwek'] list_processed_text: [['password'], ['must'], ['reset'], ['probably'], ['access'], ['iphone'], ['blocked'], ['account'], ['password'], ['must'], ['reset'], ['jxphgfmb'], ['gjbtuwek']] k: 3802 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['request']] k: 3803 len: <class 'list'> Data: ['user', 'unable', 'open', 'presentation', 'outlook', 'client', 'user', 'unable', 'open', 'presentation', 'outlook', 'client'] processed_text: ['user', 'unable', 'open', 'presentation', 'outlook', 'client', 'user', 'unable', 'open', 'presentation', 'outlook', 'client'] list_processed_text: [['user'], ['unable'], ['open'], ['presentation'], ['outlook'], ['client'], ['user'], ['unable'], ['open'], ['presentation'], ['outlook'], ['client']] k: 3804 len: <class 'list'> Data: ['archive', 'email', 'old', 'mail', 'archived', 'somewhere', 'need', 'access', 'get'] processed_text: ['archive', 'email', 'old', 'mail', 'archived', 'somewhere', 'need', 'access', 'get'] list_processed_text: [['archive'], ['email'], ['old'], ['mail'], ['archived'], ['somewhere'], ['need'], ['access'], ['get']] k: 3805 len: <class 'list'> Data: ['inc', 'packet', 'drop', 'india', 'ramdntythanjeshkurtyar', 'mail', 'spxqmiry', 'zpwgoqju', 'sadjuetha', 'shwyhdtu', 'datacenter', 'network', 'packet', 'drop', 'dear', 'vignbhyesh', 'experiencing', 'internal', 'fiber', 'medium', 'issue', 'outage', 'team', 'working', 'restoration', 'etr', 'pm', 'warm'] processed_text: ['inc', 'packet', 'drop', 'india', 'ramdntythanjeshkurtyar', 'mail', 'spxqmiry', 'zpwgoqju', 'sadjuetha', 'shwyhdtu', 'datacenter', 'network', 'packet', 'drop', 'dear', 'vignbhyesh', 'experiencing', 'internal', 'fiber', 'medium', 'issue', 'outage', 'team', 'working', 'restoration', 'etr', 'pm', 'warm'] list_processed_text: [['inc'], ['packet'], ['drop'], ['india'], ['ramdntythanjeshkurtyar'], ['mail'], ['spxqmiry'], ['zpwgoqju'], ['sadjuetha'], ['shwyhdtu'], ['datacenter'], ['network'], ['packet'], ['drop'], ['dear'], ['vignbhyesh'], ['experiencing'], ['internal'], ['fiber'], ['medium'], ['issue'], ['outage'], ['team'], ['working'], ['restoration'], ['etr'], ['pm'], ['warm']] k: 3806 len: <class 'list'> Data: ['window', 'update', 'kb', 'make', 'logon', 'telephony', 'software', 'imposible', 'assign', 'telephony', 'software', 'admins', 'user', 'delete', 'update', 'run', 'update', 'every', 'day', 'update', 'make', 'impossible', 'logon', 'telephony', 'software', 'phone', 'system', 'therefor', 'need', 'easy', 'way', 'remove', 'update', 'avoid', 'update', 'installed', 'global', 'issue', 'although', 'mostly', 'seen', 'within', 'europe'] processed_text: ['window', 'update', 'kb', 'make', 'logon', 'telephony', 'software', 'imposible', 'assign', 'telephony', 'software', 'admins', 'user', 'delete', 'update', 'run', 'update', 'every', 'day', 'update', 'make', 'impossible', 'logon', 'telephony', 'software', 'phone', 'system', 'therefor', 'need', 'easy', 'way', 'remove', 'update', 'avoid', 'update', 'installed', 'global', 'issue', 'although', 'mostly', 'seen', 'within', 'europe'] list_processed_text: [['window'], ['update'], ['kb'], ['make'], ['logon'], ['telephony'], ['software'], ['imposible'], ['assign'], ['telephony'], ['software'], ['admins'], ['user'], ['delete'], ['update'], ['run'], ['update'], ['every'], ['day'], ['update'], ['make'], ['impossible'], ['logon'], ['telephony'], ['software'], ['phone'], ['system'], ['therefor'], ['need'], ['easy'], ['way'], ['remove'], ['update'], ['avoid'], ['update'], ['installed'], ['global'], ['issue'], ['although'], ['mostly'], ['seen'], ['within'], ['europe']] k: 3807 len: <class 'list'> Data: ['engineering', 'tool', 'related', 'issue', 'hello', 'please', 'refer', 'screen', 'shot', 'engineering', 'tool', 'related', 'issue', 'installing', 'software', 'update', 'unable', 'make', 'new', 'customer', 'entry', 'please', 'note', 'option', 'button', 'new', 'customer', 'entry', 'appearing', 'kindly', 'resolve', 'problem', 'earliest', 'best'] processed_text: ['engineering', 'tool', 'related', 'issue', 'hello', 'please', 'refer', 'screen', 'shot', 'engineering', 'tool', 'related', 'issue', 'installing', 'software', 'update', 'unable', 'make', 'new', 'customer', 'entry', 'please', 'note', 'option', 'button', 'new', 'customer', 'entry', 'appearing', 'kindly', 'resolve', 'problem', 'earliest', 'best'] list_processed_text: [['engineering'], ['tool'], ['related'], ['issue'], ['hello'], ['please'], ['refer'], ['screen'], ['shot'], ['engineering'], ['tool'], ['related'], ['issue'], ['installing'], ['software'], ['update'], ['unable'], ['make'], ['new'], ['customer'], ['entry'], ['please'], ['note'], ['option'], ['button'], ['new'], ['customer'], ['entry'], ['appearing'], ['kindly'], ['resolve'], ['problem'], ['earliest'], ['best']] k: 3808 len: <class 'list'> Data: ['one', 'note', 'issue', 'hi', 'one', 'note', 'workbook', 'shared', 'open', 'web', 'view', 'get', 'error', 'message', 'according', 'owner', 'permission', 'open'] processed_text: ['one', 'note', 'issue', 'hi', 'one', 'note', 'workbook', 'shared', 'open', 'web', 'view', 'get', 'error', 'message', 'according', 'owner', 'permission', 'open'] list_processed_text: [['one'], ['note'], ['issue'], ['hi'], ['one'], ['note'], ['workbook'], ['shared'], ['open'], ['web'], ['view'], ['get'], ['error'], ['message'], ['according'], ['owner'], ['permission'], ['open']] k: 3809 len: <class 'list'> Data: ['problem', 'hagemeyer', 'oci', 'shop', 'sid', 'purchasing', 'discussed'] processed_text: ['problem', 'hagemeyer', 'oci', 'shop', 'sid', 'purchasing', 'discussed'] list_processed_text: [['problem'], ['hagemeyer'], ['oci'], ['shop'], ['sid'], ['purchasing'], ['discussed']] k: 3810 len: <class 'list'> Data: ['cvd', 'amount', 'wrongly', 'generated', 'hello', 'vide', 'mentioned', 'inwarehouse', 'tool', 'customer', 'returned', 'material', 'without', 'excise', 'paper', 'find', 'system', 'debited', 'cvd', 'amount', 'also', 'credited', 'expense', 'please', 'review', 'rectify', 'accordingly'] processed_text: ['cvd', 'amount', 'wrongly', 'generated', 'hello', 'vide', 'mentioned', 'inwarehouse', 'tool', 'customer', 'returned', 'material', 'without', 'excise', 'paper', 'find', 'system', 'debited', 'cvd', 'amount', 'also', 'credited', 'expense', 'please', 'review', 'rectify', 'accordingly'] list_processed_text: [['cvd'], ['amount'], ['wrongly'], ['generated'], ['hello'], ['vide'], ['mentioned'], ['inwarehouse'], ['tool'], ['customer'], ['returned'], ['material'], ['without'], ['excise'], ['paper'], ['find'], ['system'], ['debited'], ['cvd'], ['amount'], ['also'], ['credited'], ['expense'], ['please'], ['review'], ['rectify'], ['accordingly']] k: 3811 len: <class 'list'> Data: ['reset', 'password', 'sid', 'user', 'zigioachstyac', 'reset', 'password', 'sid', 'user', 'zigioachstyac'] processed_text: ['reset', 'password', 'sid', 'user', 'zigioachstyac', 'reset', 'password', 'sid', 'user', 'zigioachstyac'] list_processed_text: [['reset'], ['password'], ['sid'], ['user'], ['zigioachstyac'], ['reset'], ['password'], ['sid'], ['user'], ['zigioachstyac']] k: 3812 len: <class 'list'> Data: ['please', 'restore', 'db', 'stp', 'file', 'date', 'germany', 'drive', 'calculation', 'program', 'dntym', 'please', 'restore', 'db', 'stp', 'backup', 'file', 'date', 'germany', 'drive', 'calculation', 'program', 'dntym,', 'need', 'provide', 'production', 'information'] processed_text: ['please', 'restore', 'db', 'stp', 'file', 'date', 'germany', 'drive', 'calculation', 'program', 'dntym', 'please', 'restore', 'db', 'stp', 'backup', 'file', 'date', 'germany', 'drive', 'calculation', 'program', 'dntym,', 'need', 'provide', 'production', 'information'] list_processed_text: [['please'], ['restore'], ['db'], ['stp'], ['file'], ['date'], ['germany'], ['drive'], ['calculation'], ['program'], ['dntym'], ['please'], ['restore'], ['db'], ['stp'], ['backup'], ['file'], ['date'], ['germany'], ['drive'], ['calculation'], ['program'], ['dntym,'], ['need'], ['provide'], ['production'], ['information']] k: 3813 len: <class 'list'> Data: ['able', 'build', 'distributor', 'tool', 'project', 'local', 'system', 'able', 'build', 'distributor', 'tool', 'project', 'local', 'system', 'login', 'vvhstyap', 'detail', 'able', 'build', 'project', 'local', 'system', 'colleague', 'log', 'login', 'detail', 'able', 'build', 'project', 'local', 'system', 'kindly', 'look', 'priority', 'stopping', 'development', 'activity', 'use', 'venktyamk', 'login', 'name', 'reference', 'map', 'role'] processed_text: ['able', 'build', 'distributor', 'tool', 'project', 'local', 'system', 'able', 'build', 'distributor', 'tool', 'project', 'local', 'system', 'login', 'vvhstyap', 'detail', 'able', 'build', 'project', 'local', 'system', 'colleague', 'log', 'login', 'detail', 'able', 'build', 'project', 'local', 'system', 'kindly', 'look', 'priority', 'stopping', 'development', 'activity', 'use', 'venktyamk', 'login', 'name', 'reference', 'map', 'role'] list_processed_text: [['able'], ['build'], ['distributor'], ['tool'], ['project'], ['local'], ['system'], ['able'], ['build'], ['distributor'], ['tool'], ['project'], ['local'], ['system'], ['login'], ['vvhstyap'], ['detail'], ['able'], ['build'], ['project'], ['local'], ['system'], ['colleague'], ['log'], ['login'], ['detail'], ['able'], ['build'], ['project'], ['local'], ['system'], ['kindly'], ['look'], ['priority'], ['stopping'], ['development'], ['activity'], ['use'], ['venktyamk'], ['login'], ['name'], ['reference'], ['map'], ['role']] k: 3814 len: <class 'list'> Data: ['awb', 'sin', 'jnb', 'help', 'dn', 'post', 'code', 'shipping', 'label', 'ki', 'correct', 'post', 'code', 'cec', 'confirms', 'customer', 'master', 'copy', 'screen', 'check', 'caused', 'wrong', 'post', 'code', 'label'] processed_text: ['awb', 'sin', 'jnb', 'help', 'dn', 'post', 'code', 'shipping', 'label', 'ki', 'correct', 'post', 'code', 'cec', 'confirms', 'customer', 'master', 'copy', 'screen', 'check', 'caused', 'wrong', 'post', 'code', 'label'] list_processed_text: [['awb'], ['sin'], ['jnb'], ['help'], ['dn'], ['post'], ['code'], ['shipping'], ['label'], ['ki'], ['correct'], ['post'], ['code'], ['cec'], ['confirms'], ['customer'], ['master'], ['copy'], ['screen'], ['check'], ['caused'], ['wrong'], ['post'], ['code'], ['label']] k: 3815 len: <class 'list'> Data: ['rma', 'process', 'fault', 'erp', 'hello', 'could', 'please', 'resolve', 'following', 'issue', 'immediately', 'issue', 'trying', 'rma', 'using', 'zlx', 'erp', 'process', 'returning', 'good', 'screen', 'shot', 'show', 'fault', 'best'] processed_text: ['rma', 'process', 'fault', 'erp', 'hello', 'could', 'please', 'resolve', 'following', 'issue', 'immediately', 'issue', 'trying', 'rma', 'using', 'zlx', 'erp', 'process', 'returning', 'good', 'screen', 'shot', 'show', 'fault', 'best'] list_processed_text: [['rma'], ['process'], ['fault'], ['erp'], ['hello'], ['could'], ['please'], ['resolve'], ['following'], ['issue'], ['immediately'], ['issue'], ['trying'], ['rma'], ['using'], ['zlx'], ['erp'], ['process'], ['returning'], ['good'], ['screen'], ['shot'], ['show'], ['fault'], ['best']] k: 3816 len: <class 'list'> Data: ['engineering', 'tool', 'update', 'hello', 'new', 'customer', 'addition', 'button', 'missing', 'please', 'update', 'matheywter', 'urgent'] processed_text: ['engineering', 'tool', 'update', 'hello', 'new', 'customer', 'addition', 'button', 'missing', 'please', 'update', 'matheywter', 'urgent'] list_processed_text: [['engineering'], ['tool'], ['update'], ['hello'], ['new'], ['customer'], ['addition'], ['button'], ['missing'], ['please'], ['update'], ['matheywter'], ['urgent']] k: 3817 len: <class 'list'> Data: ['access', 'history', 'skv', 'alicona', 'hello', 'following', 'employee', 'need', 'access', 'bottom', 'stand', 'history', 'skv', 'alicona', 'employee', 'rhaycqjg', 'arcgonvy', 'kudhnyuhnm', 'nfybpg', 'yjtdkfuo', 'kesrgtyu', 'lxfnwyuv', 'bqmjyprz', 'rockehsty', 'hgrvubzo', 'wgyhktic', 'koiergyvh', 'hnyeajckshtyuv', 'employee', 'beckyhkty', 'koiergyvh', 'hnyeajckshts', 'employee', 'compared'] processed_text: ['access', 'history', 'skv', 'alicona', 'hello', 'following', 'employee', 'need', 'access', 'bottom', 'stand', 'history', 'skv', 'alicona', 'employee', 'rhaycqjg', 'arcgonvy', 'kudhnyuhnm', 'nfybpg', 'yjtdkfuo', 'kesrgtyu', 'lxfnwyuv', 'bqmjyprz', 'rockehsty', 'hgrvubzo', 'wgyhktic', 'koiergyvh', 'hnyeajckshtyuv', 'employee', 'beckyhkty', 'koiergyvh', 'hnyeajckshts', 'employee', 'compared'] list_processed_text: [['access'], ['history'], ['skv'], ['alicona'], ['hello'], ['following'], ['employee'], ['need'], ['access'], ['bottom'], ['stand'], ['history'], ['skv'], ['alicona'], ['employee'], ['rhaycqjg'], ['arcgonvy'], ['kudhnyuhnm'], ['nfybpg'], ['yjtdkfuo'], ['kesrgtyu'], ['lxfnwyuv'], ['bqmjyprz'], ['rockehsty'], ['hgrvubzo'], ['wgyhktic'], ['koiergyvh'], ['hnyeajckshtyuv'], ['employee'], ['beckyhkty'], ['koiergyvh'], ['hnyeajckshts'], ['employee'], ['compared']] k: 3818 len: <class 'list'> Data: ['erp', 'user', 'profile', 'pthsqroz', 'moedyanvess', 'need', 'complete', 'npc', 'task', 'erp', 'get', 'error', 'message', 'see', 'attachement', 'please', 'cancel', 'chg', 'got', 'created', 'mistake'] processed_text: ['erp', 'user', 'profile', 'pthsqroz', 'moedyanvess', 'need', 'complete', 'npc', 'task', 'erp', 'get', 'error', 'message', 'see', 'attachement', 'please', 'cancel', 'chg', 'got', 'created', 'mistake'] list_processed_text: [['erp'], ['user'], ['profile'], ['pthsqroz'], ['moedyanvess'], ['need'], ['complete'], ['npc'], ['task'], ['erp'], ['get'], ['error'], ['message'], ['see'], ['attachement'], ['please'], ['cancel'], ['chg'], ['got'], ['created'], ['mistake']] k: 3819 len: <class 'list'> Data: ['hostname', 'web', 'tier', 'epmsystem', 'java', 'server', 'epmsystem', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'unknown', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'java', 'server', 'epmsystem', 'service', 'monitor', 'unknown'] processed_text: ['hostname', 'web', 'tier', 'epmsystem', 'java', 'server', 'epmsystem', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'unknown', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'java', 'server', 'epmsystem', 'service', 'monitor', 'unknown'] list_processed_text: [['hostname'], ['web'], ['tier'], ['epmsystem'], ['java'], ['server'], ['epmsystem'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor'], ['unknown'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['java'], ['server'], ['epmsystem'], ['service'], ['monitor'], ['unknown']] k: 3820 len: <class 'list'> Data: ['printer', 'em', 'longer', 'work', 'printer', 'em', 'longer', 'work', 'despite', 'several', 'print', 'job', 'printer', 'installed', 'please', 'also', 'install', 'printer', 'em'] processed_text: ['printer', 'em', 'longer', 'work', 'printer', 'em', 'longer', 'work', 'despite', 'several', 'print', 'job', 'printer', 'installed', 'please', 'also', 'install', 'printer', 'em'] list_processed_text: [['printer'], ['em'], ['longer'], ['work'], ['printer'], ['em'], ['longer'], ['work'], ['despite'], ['several'], ['print'], ['job'], ['printer'], ['installed'], ['please'], ['also'], ['install'], ['printer'], ['em']] k: 3821 len: <class 'list'> Data: ['unable', 'launch', 'erp', 'unable', 'launch', 'erp'] processed_text: ['unable', 'launch', 'erp', 'unable', 'launch', 'erp'] list_processed_text: [['unable'], ['launch'], ['erp'], ['unable'], ['launch'], ['erp']] k: 3822 len: <class 'list'> Data: ['need', 'access', 'email', 'year', 'need', 'access', 'email', 'year', 'ph'] processed_text: ['need', 'access', 'email', 'year', 'need', 'access', 'email', 'year', 'ph'] list_processed_text: [['need'], ['access'], ['email'], ['year'], ['need'], ['access'], ['email'], ['year'], ['ph']] k: 3823 len: <class 'list'> Data: ['rickjdt', 'confirmed', 'password', 'working', 'reset', 'rickjdt', 'confirmed', 'password', 'working', 'reset'] processed_text: ['rickjdt', 'confirmed', 'password', 'working', 'reset', 'rickjdt', 'confirmed', 'password', 'working', 'reset'] list_processed_text: [['rickjdt'], ['confirmed'], ['password'], ['working'], ['reset'], ['rickjdt'], ['confirmed'], ['password'], ['working'], ['reset']] k: 3824 len: <class 'list'> Data: ['bitte', 'um', 'freigabe', 'von', 'skv', 'alicona', 'bitte', 'um', 'freigabe', 'von', 'skv', 'alicona', 'hnyeajrw', 'ctxjsolz'] processed_text: ['bitte', 'um', 'freigabe', 'von', 'skv', 'alicona', 'bitte', 'um', 'freigabe', 'von', 'skv', 'alicona', 'hnyeajrw', 'ctxjsolz'] list_processed_text: [['bitte'], ['um'], ['freigabe'], ['von'], ['skv'], ['alicona'], ['bitte'], ['um'], ['freigabe'], ['von'], ['skv'], ['alicona'], ['hnyeajrw'], ['ctxjsolz']] k: 3825 len: <class 'list'> Data: ['need', 'clearance', 'r', 'skv', 'alicona', 'need', 'clearance', 'r', 'skv', 'alicona', 'hgrvubzo', 'wgyhktic'] processed_text: ['need', 'clearance', 'r', 'skv', 'alicona', 'need', 'clearance', 'r', 'skv', 'alicona', 'hgrvubzo', 'wgyhktic'] list_processed_text: [['need'], ['clearance'], ['r'], ['skv'], ['alicona'], ['need'], ['clearance'], ['r'], ['skv'], ['alicona'], ['hgrvubzo'], ['wgyhktic']] k: 3826 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 3827 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 3828 len: <class 'list'> Data: ['need', 'clearance', 'r', 'skv', 'alicona', 'need', 'approval', 'r', 'skv', 'alicona', 'lxfnwyuv', 'bqmjyprz'] processed_text: ['need', 'clearance', 'r', 'skv', 'alicona', 'need', 'approval', 'r', 'skv', 'alicona', 'lxfnwyuv', 'bqmjyprz'] list_processed_text: [['need'], ['clearance'], ['r'], ['skv'], ['alicona'], ['need'], ['approval'], ['r'], ['skv'], ['alicona'], ['lxfnwyuv'], ['bqmjyprz']] k: 3829 len: <class 'list'> Data: ['please', 'release', 'r', 'skv', 'alicona', 'set', 'please', 'release', 'r', 'skv', 'alicona', 'set', 'nfybpg', 'yjtdkfuo'] processed_text: ['please', 'release', 'r', 'skv', 'alicona', 'set', 'please', 'release', 'r', 'skv', 'alicona', 'set', 'nfybpg', 'yjtdkfuo'] list_processed_text: [['please'], ['release'], ['r'], ['skv'], ['alicona'], ['set'], ['please'], ['release'], ['r'], ['skv'], ['alicona'], ['set'], ['nfybpg'], ['yjtdkfuo']] k: 3830 len: <class 'list'> Data: ['please', 'release', 'r', 'skv', 'alicona', 'set', 'please', 'release', 'r', 'skv', 'alicona', 'set', 'rhaycqjg', 'arcgonvy'] processed_text: ['please', 'release', 'r', 'skv', 'alicona', 'set', 'please', 'release', 'r', 'skv', 'alicona', 'set', 'rhaycqjg', 'arcgonvy'] list_processed_text: [['please'], ['release'], ['r'], ['skv'], ['alicona'], ['set'], ['please'], ['release'], ['r'], ['skv'], ['alicona'], ['set'], ['rhaycqjg'], ['arcgonvy']] k: 3831 len: <class 'list'> Data: ['www', 'company', 'com', 'web', 'site', 'engineering', 'tool', 'product', 'selector', 'link', 'reported', 'working', 'mikhghytr', 'kinsella', 'reported', 'product', 'selector', 'link', 'work', 'www', 'company', 'com', 'home', 'page', 'allows', 'selection', 'far', 'material', 'type', 'go', 'contact', 'page'] processed_text: ['www', 'company', 'com', 'web', 'site', 'engineering', 'tool', 'product', 'selector', 'link', 'reported', 'working', 'mikhghytr', 'kinsella', 'reported', 'product', 'selector', 'link', 'work', 'www', 'company', 'com', 'home', 'page', 'allows', 'selection', 'far', 'material', 'type', 'go', 'contact', 'page'] list_processed_text: [['www'], ['company'], ['com'], ['web'], ['site'], ['engineering'], ['tool'], ['product'], ['selector'], ['link'], ['reported'], ['working'], ['mikhghytr'], ['kinsella'], ['reported'], ['product'], ['selector'], ['link'], ['work'], ['www'], ['company'], ['com'], ['home'], ['page'], ['allows'], ['selection'], ['far'], ['material'], ['type'], ['go'], ['contact'], ['page']] k: 3832 len: <class 'list'> Data: ['erp', 'internet', 'service', 'slow', 'user', 'erp', 'internet', 'service', 'slow', 'user'] processed_text: ['erp', 'internet', 'service', 'slow', 'user', 'erp', 'internet', 'service', 'slow', 'user'] list_processed_text: [['erp'], ['internet'], ['service'], ['slow'], ['user'], ['erp'], ['internet'], ['service'], ['slow'], ['user']] k: 3833 len: <class 'list'> Data: ['ainw', 'new', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'server', 'pc', 'offline', 'since'] processed_text: ['ainw', 'new', 'india', 'patching', 'antivirus', 'sw', 'desktop', 'server', 'pc', 'offline', 'since'] list_processed_text: [['ainw'], ['new'], ['india'], ['patching'], ['antivirus'], ['sw'], ['desktop'], ['server'], ['pc'], ['offline'], ['since']] k: 3834 len: <class 'list'> Data: ['unable', 'download', 'engineering', 'tool', 'kindly', 'look', 'unable', 'extract', 'open', 'engineering', 'tool', 'file', 'please', 'revert', 'back', 'top', 'priority', 'case', 'study', 'required', 'discussed', 'get', 'error', 'best'] processed_text: ['unable', 'download', 'engineering', 'tool', 'kindly', 'look', 'unable', 'extract', 'open', 'engineering', 'tool', 'file', 'please', 'revert', 'back', 'top', 'priority', 'case', 'study', 'required', 'discussed', 'get', 'error', 'best'] list_processed_text: [['unable'], ['download'], ['engineering'], ['tool'], ['kindly'], ['look'], ['unable'], ['extract'], ['open'], ['engineering'], ['tool'], ['file'], ['please'], ['revert'], ['back'], ['top'], ['priority'], ['case'], ['study'], ['required'], ['discussed'], ['get'], ['error'], ['best']] k: 3835 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3836 len: <class 'list'> Data: ['please', 'switch', 'configure', 'printer', 'please', 'switch', 'configure', 'printer', 'vaigycet', 'jtgmpdcr'] processed_text: ['please', 'switch', 'configure', 'printer', 'please', 'switch', 'configure', 'printer', 'vaigycet', 'jtgmpdcr'] list_processed_text: [['please'], ['switch'], ['configure'], ['printer'], ['please'], ['switch'], ['configure'], ['printer'], ['vaigycet'], ['jtgmpdcr']] k: 3837 len: <class 'list'> Data: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] processed_text: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] list_processed_text: [['error'], ['message'], ['route'], ['card'], ['release'], ['hello'], ['route'], ['card'], ['release'], ['error'], ['message'], ['appearing'], ['route'], ['card'], ['get'], ['printed'], ['required'], ['help'], ['resolving'], ['issue'], ['please'], ['print'], ['email'], ['unless'], ['absolutely'], ['necessary'], ['spread'], ['environmental'], ['awareness'], ['confidentiality'], ['caution'], ['communication'], ['including'], ['accompanying'], ['document'], ['intended'], ['sole'], ['use'], ['person'], ['addressed'], ['contain'], ['information'], ['privileged'], ['confidential'], ['exempt'], ['disclosure'], ['unauthorised'], ['reading'], ['dissemination'], ['distribution'], ['duplication'], ['communication'], ['someone'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['receipt'], ['communication'], ['error'], ['please'], ['notify'], ['sender'], ['destrtgoy'], ['original'], ['communication'], ['immediately']] k: 3838 len: <class 'list'> Data: ['erp', 'net', 'weaver', 'work', 'pc', 'empw', 'erp', 'net', 'weaver', 'work', 'pc', 'empw'] processed_text: ['erp', 'net', 'weaver', 'work', 'pc', 'empw', 'erp', 'net', 'weaver', 'work', 'pc', 'empw'] list_processed_text: [['erp'], ['net'], ['weaver'], ['work'], ['pc'], ['empw'], ['erp'], ['net'], ['weaver'], ['work'], ['pc'], ['empw']] k: 3839 len: <class 'list'> Data: ['telefon', 'defekt', 'gigaset', 'charger', 'sl', 'professional', 'chargeur', 'posrt', 'poste', 'sl', 'ft', 'octophon', 'sl', 'prof', 'ladeschale', 'mnr', 'telefonnummer', 'ro', 'prozessflussverantwortliche', 'scdp'] processed_text: ['telefon', 'defekt', 'gigaset', 'charger', 'sl', 'professional', 'chargeur', 'posrt', 'poste', 'sl', 'ft', 'octophon', 'sl', 'prof', 'ladeschale', 'mnr', 'telefonnummer', 'ro', 'prozessflussverantwortliche', 'scdp'] list_processed_text: [['telefon'], ['defekt'], ['gigaset'], ['charger'], ['sl'], ['professional'], ['chargeur'], ['posrt'], ['poste'], ['sl'], ['ft'], ['octophon'], ['sl'], ['prof'], ['ladeschale'], ['mnr'], ['telefonnummer'], ['ro'], ['prozessflussverantwortliche'], ['scdp']] k: 3840 len: <class 'list'> Data: ['wrong', 'printing', 'awa', 'voucher', 'inwarehouse', 'tool', 'hello', 'awa', 'order', 'voucher', 'printing', 'say', 'discount', 'wrong', 'please', 'check', 'correct', 'example', 'attachment'] processed_text: ['wrong', 'printing', 'awa', 'voucher', 'inwarehouse', 'tool', 'hello', 'awa', 'order', 'voucher', 'printing', 'say', 'discount', 'wrong', 'please', 'check', 'correct', 'example', 'attachment'] list_processed_text: [['wrong'], ['printing'], ['awa'], ['voucher'], ['inwarehouse'], ['tool'], ['hello'], ['awa'], ['order'], ['voucher'], ['printing'], ['say'], ['discount'], ['wrong'], ['please'], ['check'], ['correct'], ['example'], ['attachment']] k: 3841 len: <class 'list'> Data: ['erp', 'frequent', 'disconnection', 'hello', 'help', 'frequent', 'disconnection', 'erp', 'slow', 'also', 'please', 'checked', 'earliest'] processed_text: ['erp', 'frequent', 'disconnection', 'hello', 'help', 'frequent', 'disconnection', 'erp', 'slow', 'also', 'please', 'checked', 'earliest'] list_processed_text: [['erp'], ['frequent'], ['disconnection'], ['hello'], ['help'], ['frequent'], ['disconnection'], ['erp'], ['slow'], ['also'], ['please'], ['checked'], ['earliest']] k: 3842 len: <class 'list'> Data: ['unable', 'login', 'window', 'unable', 'login', 'window', 'error', 'domain', 'controller', 'logon', 'balancing', 'error', 'contact', 'mobile', 'location', 'germany', 'germany'] processed_text: ['unable', 'login', 'window', 'unable', 'login', 'window', 'error', 'domain', 'controller', 'logon', 'balancing', 'error', 'contact', 'mobile', 'location', 'germany', 'germany'] list_processed_text: [['unable'], ['login'], ['window'], ['unable'], ['login'], ['window'], ['error'], ['domain'], ['controller'], ['logon'], ['balancing'], ['error'], ['contact'], ['mobile'], ['location'], ['germany'], ['germany']] k: 3843 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 3844 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 3845 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 3846 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3847 len: <class 'list'> Data: ['password', 'expired', 'please', 'initiate', 'reset', 'also', 'iphone', 'password', 'expired', 'please', 'initiate', 'reset', 'also', 'r', 'iphone', 'jxphgfmb', 'gjbtuwek'] processed_text: ['password', 'expired', 'please', 'initiate', 'reset', 'also', 'iphone', 'password', 'expired', 'please', 'initiate', 'reset', 'also', 'r', 'iphone', 'jxphgfmb', 'gjbtuwek'] list_processed_text: [['password'], ['expired'], ['please'], ['initiate'], ['reset'], ['also'], ['iphone'], ['password'], ['expired'], ['please'], ['initiate'], ['reset'], ['also'], ['r'], ['iphone'], ['jxphgfmb'], ['gjbtuwek']] k: 3848 len: <class 'list'> Data: ['erp', 'sid', 'access', 'starting', 'erp', 'sid', 'get', 'error', 'logon', 'balancing', 'error', 'see', 'attachment', 'user', 'vadnhyt', 'stegyhui', 'manjhyt'] processed_text: ['erp', 'sid', 'access', 'starting', 'erp', 'sid', 'get', 'error', 'logon', 'balancing', 'error', 'see', 'attachment', 'user', 'vadnhyt', 'stegyhui', 'manjhyt'] list_processed_text: [['erp'], ['sid'], ['access'], ['starting'], ['erp'], ['sid'], ['get'], ['error'], ['logon'], ['balancing'], ['error'], ['see'], ['attachment'], ['user'], ['vadnhyt'], ['stegyhui'], ['manjhyt']] k: 3849 len: <class 'list'> Data: ['india', 'kirty', 'packet', 'drop', 'telecom', 'vendor', 'link', 'since', 'et', 'telecom', 'vendor', 'india', 'kirty', 'packet', 'drop', 'telecom', 'vendor', 'link', 'since', 'et'] processed_text: ['india', 'kirty', 'packet', 'drop', 'telecom', 'vendor', 'link', 'since', 'et', 'telecom', 'vendor', 'india', 'kirty', 'packet', 'drop', 'telecom', 'vendor', 'link', 'since', 'et'] list_processed_text: [['india'], ['kirty'], ['packet'], ['drop'], ['telecom'], ['vendor'], ['link'], ['since'], ['et'], ['telecom'], ['vendor'], ['india'], ['kirty'], ['packet'], ['drop'], ['telecom'], ['vendor'], ['link'], ['since'], ['et']] k: 3850 len: <class 'list'> Data: ['erp', 'business', 'client', 'msdotnet', 'business', 'client', 'sid', 'msdotnet', 'business', 'client', 'sid'] processed_text: ['erp', 'business', 'client', 'msdotnet', 'business', 'client', 'sid', 'msdotnet', 'business', 'client', 'sid'] list_processed_text: [['erp'], ['business'], ['client'], ['msdotnet'], ['business'], ['client'], ['sid'], ['msdotnet'], ['business'], ['client'], ['sid']] k: 3851 len: <class 'list'> Data: ['please', 'check', 'order', 'voucher', 'v', 'order', 'header', 'showing', 'voucher', 'code', 'line', 'item', 'detail', 'also', 'showing', 'voucher', 'code', 'additional', 'data', 'nevertheless', 'table', 'vbap', 'zzcmpgn', 'id', 'empty', 'printed', 'acknowledgement', 'inwarehouse', 'tool', 'referring', 'voucher', 'code', 'pricing', 'considered', 'voucher', 'discount', 'something', 'correct', 'voucher', 'relevant', 'customer', 'ship', 'consider', 'voucher', 'discount'] processed_text: ['please', 'check', 'order', 'voucher', 'v', 'order', 'header', 'showing', 'voucher', 'code', 'line', 'item', 'detail', 'also', 'showing', 'voucher', 'code', 'additional', 'data', 'nevertheless', 'table', 'vbap', 'zzcmpgn', 'id', 'empty', 'printed', 'acknowledgement', 'inwarehouse', 'tool', 'referring', 'voucher', 'code', 'pricing', 'considered', 'voucher', 'discount', 'something', 'correct', 'voucher', 'relevant', 'customer', 'ship', 'consider', 'voucher', 'discount'] list_processed_text: [['please'], ['check'], ['order'], ['voucher'], ['v'], ['order'], ['header'], ['showing'], ['voucher'], ['code'], ['line'], ['item'], ['detail'], ['also'], ['showing'], ['voucher'], ['code'], ['additional'], ['data'], ['nevertheless'], ['table'], ['vbap'], ['zzcmpgn'], ['id'], ['empty'], ['printed'], ['acknowledgement'], ['inwarehouse'], ['tool'], ['referring'], ['voucher'], ['code'], ['pricing'], ['considered'], ['voucher'], ['discount'], ['something'], ['correct'], ['voucher'], ['relevant'], ['customer'], ['ship'], ['consider'], ['voucher'], ['discount']] k: 3852 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 3853 len: <class 'list'> Data: ['request', 'sir', 'salary', 'slip', 'user', 'id', 'locked', 'apprentice', 'jahtyuj', 'id', 'pl', 'help', 'retrieve', 'best'] processed_text: ['request', 'sir', 'salary', 'slip', 'user', 'id', 'locked', 'apprentice', 'jahtyuj', 'id', 'pl', 'help', 'retrieve', 'best'] list_processed_text: [['request'], ['sir'], ['salary'], ['slip'], ['user'], ['id'], ['locked'], ['apprentice'], ['jahtyuj'], ['id'], ['pl'], ['help'], ['retrieve'], ['best']] k: 3854 len: <class 'list'> Data: ['receive', 'mail', 'form', 'mobile', 'phone', 'could', 'reset', 'company', 'mobile', 'phone', 'detail', 'cihaz', 'model', 'iphonec', 'cihaz', 'r', 'iphone', 'cihaz', 'kimli', 'hnorauaperabdlbtc', 'cihaz', 'letim', 'sistem', 'io', 'sartlgeo', 'lhqksbdxa', 'cihaz', 'kullan', 'arac', 'apple', 'iphonec', 'cihaz', 'imei', 'exchange', 'activesync', 'r', 'ci', 'cihaz', 'eri', 'im', 'durumu', 'nedeni', 'global'] processed_text: ['receive', 'mail', 'form', 'mobile', 'phone', 'could', 'reset', 'company', 'mobile', 'phone', 'detail', 'cihaz', 'model', 'iphonec', 'cihaz', 'r', 'iphone', 'cihaz', 'kimli', 'hnorauaperabdlbtc', 'cihaz', 'letim', 'sistem', 'io', 'sartlgeo', 'lhqksbdxa', 'cihaz', 'kullan', 'arac', 'apple', 'iphonec', 'cihaz', 'imei', 'exchange', 'activesync', 'r', 'ci', 'cihaz', 'eri', 'im', 'durumu', 'nedeni', 'global'] list_processed_text: [['receive'], ['mail'], ['form'], ['mobile'], ['phone'], ['could'], ['reset'], ['company'], ['mobile'], ['phone'], ['detail'], ['cihaz'], ['model'], ['iphonec'], ['cihaz'], ['r'], ['iphone'], ['cihaz'], ['kimli'], ['hnorauaperabdlbtc'], ['cihaz'], ['letim'], ['sistem'], ['io'], ['sartlgeo'], ['lhqksbdxa'], ['cihaz'], ['kullan'], ['arac'], ['apple'], ['iphonec'], ['cihaz'], ['imei'], ['exchange'], ['activesync'], ['r'], ['ci'], ['cihaz'], ['eri'], ['im'], ['durumu'], ['nedeni'], ['global']] k: 3855 len: <class 'list'> Data: ['cant', 'create', 'delivery', 'note', 'stock', 'transfer', 'sid', 'create', 'delivery', 'note', 'mm', 'sto', 'apac', 'see', 'error', 'message', 'att'] processed_text: ['cant', 'create', 'delivery', 'note', 'stock', 'transfer', 'sid', 'create', 'delivery', 'note', 'mm', 'sto', 'apac', 'see', 'error', 'message', 'att'] list_processed_text: [['cant'], ['create'], ['delivery'], ['note'], ['stock'], ['transfer'], ['sid'], ['create'], ['delivery'], ['note'], ['mm'], ['sto'], ['apac'], ['see'], ['error'], ['message'], ['att']] k: 3856 len: <class 'list'> Data: ['add', 'printer', 'ag', 'hello', 'trying', 'add', 'printer', 'receive', 'following', 'message', 'please', 'enable', 'connect', 'printer', 'erp', 'room', 'germany', 'attending', 'workshop', 'week', 'october', 'many'] processed_text: ['add', 'printer', 'ag', 'hello', 'trying', 'add', 'printer', 'receive', 'following', 'message', 'please', 'enable', 'connect', 'printer', 'erp', 'room', 'germany', 'attending', 'workshop', 'week', 'october', 'many'] list_processed_text: [['add'], ['printer'], ['ag'], ['hello'], ['trying'], ['add'], ['printer'], ['receive'], ['following'], ['message'], ['please'], ['enable'], ['connect'], ['printer'], ['erp'], ['room'], ['germany'], ['attending'], ['workshop'], ['week'], ['october'], ['many']] k: 3857 len: <class 'list'> Data: ['telephony', 'software', 'description', 'telephony', 'software', 'department', 'description', 'germany', 'user', 'description', 'department', 'updated', 'ifbg', 'would', 'expected', 'cfc', 'customer', 'fulfillment', 'center', 'instead', 'please', 'let', 'know', 'stand', 'reason', 'changed'] processed_text: ['telephony', 'software', 'description', 'telephony', 'software', 'department', 'description', 'germany', 'user', 'description', 'department', 'updated', 'ifbg', 'would', 'expected', 'cfc', 'customer', 'fulfillment', 'center', 'instead', 'please', 'let', 'know', 'stand', 'reason', 'changed'] list_processed_text: [['telephony'], ['software'], ['description'], ['telephony'], ['software'], ['department'], ['description'], ['germany'], ['user'], ['description'], ['department'], ['updated'], ['ifbg'], ['would'], ['expected'], ['cfc'], ['customer'], ['fulfillment'], ['center'], ['instead'], ['please'], ['let'], ['know'], ['stand'], ['reason'], ['changed']] k: 3858 len: <class 'list'> Data: ['please', 'fix', 'issue', 'mentioned', 'description', 'sid', 'swathi', 'coordinate', 'work', 'please', 'sm', 'transaction', 'canceled', 'fp', 'vbkpf', 'sm', 'nieconn', 'refused', 'remote', 'communication', 'failure', 'partner', 'sid', 'update', 'terminated', 'system', 'error', 'b', 'nfe', 'update', 'xblnr', 'error', 'update', 'table', 'bkpf'] processed_text: ['please', 'fix', 'issue', 'mentioned', 'description', 'sid', 'swathi', 'coordinate', 'work', 'please', 'sm', 'transaction', 'canceled', 'fp', 'vbkpf', 'sm', 'nieconn', 'refused', 'remote', 'communication', 'failure', 'partner', 'sid', 'update', 'terminated', 'system', 'error', 'b', 'nfe', 'update', 'xblnr', 'error', 'update', 'table', 'bkpf'] list_processed_text: [['please'], ['fix'], ['issue'], ['mentioned'], ['description'], ['sid'], ['swathi'], ['coordinate'], ['work'], ['please'], ['sm'], ['transaction'], ['canceled'], ['fp'], ['vbkpf'], ['sm'], ['nieconn'], ['refused'], ['remote'], ['communication'], ['failure'], ['partner'], ['sid'], ['update'], ['terminated'], ['system'], ['error'], ['b'], ['nfe'], ['update'], ['xblnr'], ['error'], ['update'], ['table'], ['bkpf']] k: 3859 len: <class 'list'> Data: ['erp', 'ticket', 'erp', 'ticket'] processed_text: ['erp', 'ticket', 'erp', 'ticket'] list_processed_text: [['erp'], ['ticket'], ['erp'], ['ticket']] k: 3860 len: <class 'list'> Data: ['wireless', 'access', 'companyguest', 'request', 'hello', 'please', 'usa', 'kahrthyeuiuiw', 'koithc', 'hr', 'tool', 'wireless', 'access', 'germany', 'germany', 'confirm', 'done', 'sctqwgmj', 'yambwtfk', 'many'] processed_text: ['wireless', 'access', 'companyguest', 'request', 'hello', 'please', 'usa', 'kahrthyeuiuiw', 'koithc', 'hr', 'tool', 'wireless', 'access', 'germany', 'germany', 'confirm', 'done', 'sctqwgmj', 'yambwtfk', 'many'] list_processed_text: [['wireless'], ['access'], ['companyguest'], ['request'], ['hello'], ['please'], ['usa'], ['kahrthyeuiuiw'], ['koithc'], ['hr'], ['tool'], ['wireless'], ['access'], ['germany'], ['germany'], ['confirm'], ['done'], ['sctqwgmj'], ['yambwtfk'], ['many']] k: 3861 len: <class 'list'> Data: ['vsbhyrt', 'unable', 'open', 'eng', 'engineering', 'tool', 'able', 'log', 'password', 'management', 'tool', 'reset', 'password', 'vsbhyrt', 'unable', 'open', 'eng', 'engineering', 'tool', 'able', 'log', 'password', 'management', 'tool', 'reset', 'password', 'pls', 'help'] processed_text: ['vsbhyrt', 'unable', 'open', 'eng', 'engineering', 'tool', 'able', 'log', 'password', 'management', 'tool', 'reset', 'password', 'vsbhyrt', 'unable', 'open', 'eng', 'engineering', 'tool', 'able', 'log', 'password', 'management', 'tool', 'reset', 'password', 'pls', 'help'] list_processed_text: [['vsbhyrt'], ['unable'], ['open'], ['eng'], ['engineering'], ['tool'], ['able'], ['log'], ['password'], ['management'], ['tool'], ['reset'], ['password'], ['vsbhyrt'], ['unable'], ['open'], ['eng'], ['engineering'], ['tool'], ['able'], ['log'], ['password'], ['management'], ['tool'], ['reset'], ['password'], ['pls'], ['help']] k: 3862 len: <class 'list'> Data: ['unable', 'browse', 'company', 'collaboration', 'platform', 'site', 'unable', 'browse', 'company', 'collaboration', 'platform', 'site'] processed_text: ['unable', 'browse', 'company', 'collaboration', 'platform', 'site', 'unable', 'browse', 'company', 'collaboration', 'platform', 'site'] list_processed_text: [['unable'], ['browse'], ['company'], ['collaboration'], ['platform'], ['site'], ['unable'], ['browse'], ['company'], ['collaboration'], ['platform'], ['site']] k: 3863 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3864 len: <class 'list'> Data: ['reset', 'password', 'erp', 'sid', 'production', 'user', 'id', 'laijuttr', 'hi', 'help', 'desk', 'kindly', 'help', 'reset', 'password', 'sid', 'production', 'able', 'login', 'changed', 'password', 'morning'] processed_text: ['reset', 'password', 'erp', 'sid', 'production', 'user', 'id', 'laijuttr', 'hi', 'help', 'desk', 'kindly', 'help', 'reset', 'password', 'sid', 'production', 'able', 'login', 'changed', 'password', 'morning'] list_processed_text: [['reset'], ['password'], ['erp'], ['sid'], ['production'], ['user'], ['id'], ['laijuttr'], ['hi'], ['help'], ['desk'], ['kindly'], ['help'], ['reset'], ['password'], ['sid'], ['production'], ['able'], ['login'], ['changed'], ['password'], ['morning']] k: 3865 len: <class 'list'> Data: ['able', 'click', 'icon', 'able', 'click', 'icon', 'able', 'login', 'citrix', 'please', 'refer', 'screenshot'] processed_text: ['able', 'click', 'icon', 'able', 'click', 'icon', 'able', 'login', 'citrix', 'please', 'refer', 'screenshot'] list_processed_text: [['able'], ['click'], ['icon'], ['able'], ['click'], ['icon'], ['able'], ['login'], ['citrix'], ['please'], ['refer'], ['screenshot']] k: 3866 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'hello', 'bohyub', 'pradtheyp', 'yesterday', 'jaya', 'conveyed', 'discussed', 'change', 'required', 'graphic', 'portal', 'requirement', 'fulfilled', 'please', 'go', 'ahead', 'change'] processed_text: ['ticket', 'comment', 'added', 'hello', 'bohyub', 'pradtheyp', 'yesterday', 'jaya', 'conveyed', 'discussed', 'change', 'required', 'graphic', 'portal', 'requirement', 'fulfilled', 'please', 'go', 'ahead', 'change'] list_processed_text: [['ticket'], ['comment'], ['added'], ['hello'], ['bohyub'], ['pradtheyp'], ['yesterday'], ['jaya'], ['conveyed'], ['discussed'], ['change'], ['required'], ['graphic'], ['portal'], ['requirement'], ['fulfilled'], ['please'], ['go'], ['ahead'], ['change']] k: 3867 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 3868 len: <class 'list'> Data: ['erp', 'work', 'properly', 'user', 'klarp', 'pc', 'evhw', 'already', 'pc', 'evhw', 'geuacyltoe', 'hxgayczeet', 'work', 'fine'] processed_text: ['erp', 'work', 'properly', 'user', 'klarp', 'pc', 'evhw', 'already', 'pc', 'evhw', 'geuacyltoe', 'hxgayczeet', 'work', 'fine'] list_processed_text: [['erp'], ['work'], ['properly'], ['user'], ['klarp'], ['pc'], ['evhw'], ['already'], ['pc'], ['evhw'], ['geuacyltoe'], ['hxgayczeet'], ['work'], ['fine']] k: 3869 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'account', 'unable', 'login', 'erp', 'sid', 'account'] processed_text: ['unable', 'login', 'erp', 'sid', 'account', 'unable', 'login', 'erp', 'sid', 'account'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['account'], ['unable'], ['login'], ['erp'], ['sid'], ['account']] k: 3870 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3871 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 3872 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 3873 len: <class 'list'> Data: ['crm', 'portal', 'login', 'issue', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'able', 'access', 'crm', 'portal', 'please', 'need', 'full', 'screen', 'shot', 'error', 'attached', 'best'] processed_text: ['crm', 'portal', 'login', 'issue', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'able', 'access', 'crm', 'portal', 'please', 'need', 'full', 'screen', 'shot', 'error', 'attached', 'best'] list_processed_text: [['crm'], ['portal'], ['login'], ['issue'], ['kxmidsga'], ['zokivdfa'], ['dear'], ['sir'], ['able'], ['access'], ['crm'], ['portal'], ['please'], ['need'], ['full'], ['screen'], ['shot'], ['error'], ['attached'], ['best']] k: 3874 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3875 len: <class 'list'> Data: ['computer', 'running', 'slow', 'computer', 'running', 'slow'] processed_text: ['computer', 'running', 'slow', 'computer', 'running', 'slow'] list_processed_text: [['computer'], ['running'], ['slow'], ['computer'], ['running'], ['slow']] k: 3876 len: <class 'list'> Data: ['erp', 'hi', 'regularly', 'trouble', 'erp', 'lagging', 'particularly', 'seems', 'time', 'last', 'week', 'especially', 'bad', 'day', 'yesterday', 'today', 'seems', 'lag', 'noon', 'time', 'becoming', 'continuously', 'embarrassing', 'phone', 'call', 'required', 'search', 'stock', 'quote', 'order', 'phone', 'apologise', 'system', 'taking', 'long', 'two', 'csr', 'building', 'uisewznr', 'ewtmkphs', 'rarely', 'trouble', 'system', 'seems', 'faster', 'though', 'much', 'faster', 'mine', 'duoyrpvi', 'wgjpviul', 'amy', 'system', 'lag', 'much', 'mine', 'please', 'shed', 'light', 'scenario', 'note', 'convenient', 'office', 'contacted', 'mid', 'late', 'morning', 'kind'] processed_text: ['erp', 'hi', 'regularly', 'trouble', 'erp', 'lagging', 'particularly', 'seems', 'time', 'last', 'week', 'especially', 'bad', 'day', 'yesterday', 'today', 'seems', 'lag', 'noon', 'time', 'becoming', 'continuously', 'embarrassing', 'phone', 'call', 'required', 'search', 'stock', 'quote', 'order', 'phone', 'apologise', 'system', 'taking', 'long', 'two', 'csr', 'building', 'uisewznr', 'ewtmkphs', 'rarely', 'trouble', 'system', 'seems', 'faster', 'though', 'much', 'faster', 'mine', 'duoyrpvi', 'wgjpviul', 'amy', 'system', 'lag', 'much', 'mine', 'please', 'shed', 'light', 'scenario', 'note', 'convenient', 'office', 'contacted', 'mid', 'late', 'morning', 'kind'] list_processed_text: [['erp'], ['hi'], ['regularly'], ['trouble'], ['erp'], ['lagging'], ['particularly'], ['seems'], ['time'], ['last'], ['week'], ['especially'], ['bad'], ['day'], ['yesterday'], ['today'], ['seems'], ['lag'], ['noon'], ['time'], ['becoming'], ['continuously'], ['embarrassing'], ['phone'], ['call'], ['required'], ['search'], ['stock'], ['quote'], ['order'], ['phone'], ['apologise'], ['system'], ['taking'], ['long'], ['two'], ['csr'], ['building'], ['uisewznr'], ['ewtmkphs'], ['rarely'], ['trouble'], ['system'], ['seems'], ['faster'], ['though'], ['much'], ['faster'], ['mine'], ['duoyrpvi'], ['wgjpviul'], ['amy'], ['system'], ['lag'], ['much'], ['mine'], ['please'], ['shed'], ['light'], ['scenario'], ['note'], ['convenient'], ['office'], ['contacted'], ['mid'], ['late'], ['morning'], ['kind']] k: 3877 len: <class 'list'> Data: ['shipping', 'dashbankrd', 'data', 'information', 'displayed', 'select', 'previous', 'week', 'shipping', 'dashbankrd', 'tab', 'data', 'refresh', 'issue', 'maybe', 'data', 'refreshed', 'daily', 'something', 'broken', 'respect', 'daily', 'extraction', 'freight', 'cost', 'region', 'analysis', 'package', 'dashbankrd', 'total', 'freight', 'cost', 'sale', 'org', 'shipping', 'location', 'export', 'indicator', 'analysis', 'delivery', 'type', 'analysis', 'carrier', 'wise', 'analysis', 'shipping', 'statistic', 'data', 'refreshed', 'daily', 'find', 'report', 'select', 'previous', 'week'] processed_text: ['shipping', 'dashbankrd', 'data', 'information', 'displayed', 'select', 'previous', 'week', 'shipping', 'dashbankrd', 'tab', 'data', 'refresh', 'issue', 'maybe', 'data', 'refreshed', 'daily', 'something', 'broken', 'respect', 'daily', 'extraction', 'freight', 'cost', 'region', 'analysis', 'package', 'dashbankrd', 'total', 'freight', 'cost', 'sale', 'org', 'shipping', 'location', 'export', 'indicator', 'analysis', 'delivery', 'type', 'analysis', 'carrier', 'wise', 'analysis', 'shipping', 'statistic', 'data', 'refreshed', 'daily', 'find', 'report', 'select', 'previous', 'week'] list_processed_text: [['shipping'], ['dashbankrd'], ['data'], ['information'], ['displayed'], ['select'], ['previous'], ['week'], ['shipping'], ['dashbankrd'], ['tab'], ['data'], ['refresh'], ['issue'], ['maybe'], ['data'], ['refreshed'], ['daily'], ['something'], ['broken'], ['respect'], ['daily'], ['extraction'], ['freight'], ['cost'], ['region'], ['analysis'], ['package'], ['dashbankrd'], ['total'], ['freight'], ['cost'], ['sale'], ['org'], ['shipping'], ['location'], ['export'], ['indicator'], ['analysis'], ['delivery'], ['type'], ['analysis'], ['carrier'], ['wise'], ['analysis'], ['shipping'], ['statistic'], ['data'], ['refreshed'], ['daily'], ['find'], ['report'], ['select'], ['previous'], ['week']] k: 3878 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3879 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3880 len: <class 'list'> Data: ['problem', 'ap', 'vpn', 'hi', 'problem', 'using', 'ap', 'vpn', 'home', 'best'] processed_text: ['problem', 'ap', 'vpn', 'hi', 'problem', 'using', 'ap', 'vpn', 'home', 'best'] list_processed_text: [['problem'], ['ap'], ['vpn'], ['hi'], ['problem'], ['using'], ['ap'], ['vpn'], ['home'], ['best']] k: 3881 len: <class 'list'> Data: ['ki', 'document', 'generate', 'sto', 'pricing', 'ki', 'document', 'generate', 'sto', 'pricing', 'dn', 'sto'] processed_text: ['ki', 'document', 'generate', 'sto', 'pricing', 'ki', 'document', 'generate', 'sto', 'pricing', 'dn', 'sto'] list_processed_text: [['ki'], ['document'], ['generate'], ['sto'], ['pricing'], ['ki'], ['document'], ['generate'], ['sto'], ['pricing'], ['dn'], ['sto']] k: 3882 len: <class 'list'> Data: ['wrong', 'unit', 'price', 'inwarehouse', 'tool', 'help', 'one', 'shipment', 'apac', 'indonesia', 'attachment', 'unit', 'price', 'inwarehouse', 'tool', 'erp', 'pc', 'check', 'caused', 'wrong', 'price', 'inwarehouse', 'tool'] processed_text: ['wrong', 'unit', 'price', 'inwarehouse', 'tool', 'help', 'one', 'shipment', 'apac', 'indonesia', 'attachment', 'unit', 'price', 'inwarehouse', 'tool', 'erp', 'pc', 'check', 'caused', 'wrong', 'price', 'inwarehouse', 'tool'] list_processed_text: [['wrong'], ['unit'], ['price'], ['inwarehouse'], ['tool'], ['help'], ['one'], ['shipment'], ['apac'], ['indonesia'], ['attachment'], ['unit'], ['price'], ['inwarehouse'], ['tool'], ['erp'], ['pc'], ['check'], ['caused'], ['wrong'], ['price'], ['inwarehouse'], ['tool']] k: 3883 len: <class 'list'> Data: ['usa', 'pc', 'companyst', 'apc', 'pvd', 'area', 'cannot', 'connect', 'srvlavstorage', 'group', 'connect', 'internet', 'usa', 'pc', 'companyst', 'apc', 'pvd', 'area', 'need', 'network', 'order', 'print', 'printer', 'pvd'] processed_text: ['usa', 'pc', 'companyst', 'apc', 'pvd', 'area', 'cannot', 'connect', 'srvlavstorage', 'group', 'connect', 'internet', 'usa', 'pc', 'companyst', 'apc', 'pvd', 'area', 'need', 'network', 'order', 'print', 'printer', 'pvd'] list_processed_text: [['usa'], ['pc'], ['companyst'], ['apc'], ['pvd'], ['area'], ['cannot'], ['connect'], ['srvlavstorage'], ['group'], ['connect'], ['internet'], ['usa'], ['pc'], ['companyst'], ['apc'], ['pvd'], ['area'], ['need'], ['network'], ['order'], ['print'], ['printer'], ['pvd']] k: 3884 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3885 len: <class 'list'> Data: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] processed_text: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] list_processed_text: [['nan'], ['user'], ['unable'], ['tologin'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['using'], ['vpn'], ['company'], ['vpn'], ['link'], ['issue'], ['resolved']] k: 3886 len: <class 'list'> Data: ['able', 'log', 'vpn', 'trying', 'open', 'new', 'session', 'going', 'session', 'finished', 'p', 'name', 'mehrugshy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'log', 'vpn', 'trying', 'open', 'new', 'session', 'going', 'session', 'finished', 'page'] processed_text: ['able', 'log', 'vpn', 'trying', 'open', 'new', 'session', 'going', 'session', 'finished', 'p', 'name', 'mehrugshy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'log', 'vpn', 'trying', 'open', 'new', 'session', 'going', 'session', 'finished', 'page'] list_processed_text: [['able'], ['log'], ['vpn'], ['trying'], ['open'], ['new'], ['session'], ['going'], ['session'], ['finished'], ['p'], ['name'], ['mehrugshy'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['able'], ['log'], ['vpn'], ['trying'], ['open'], ['new'], ['session'], ['going'], ['session'], ['finished'], ['page']] k: 3887 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3888 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3889 len: <class 'list'> Data: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] processed_text: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] list_processed_text: [['nan'], ['user'], ['unable'], ['tologin'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['using'], ['vpn'], ['company'], ['vpn'], ['link'], ['issue'], ['resolved']] k: 3890 len: <class 'list'> Data: ['vpn', 'connectivity', 'reconnect', 'vpn', 'hit', 'click', 'screen', 'change', 'tried', 'closing', 'relaunching', 'result', 'tried', 'restarting', 'computer', 'result', 'best'] processed_text: ['vpn', 'connectivity', 'reconnect', 'vpn', 'hit', 'click', 'screen', 'change', 'tried', 'closing', 'relaunching', 'result', 'tried', 'restarting', 'computer', 'result', 'best'] list_processed_text: [['vpn'], ['connectivity'], ['reconnect'], ['vpn'], ['hit'], ['click'], ['screen'], ['change'], ['tried'], ['closing'], ['relaunching'], ['result'], ['tried'], ['restarting'], ['computer'], ['result'], ['best']] k: 3891 len: <class 'list'> Data: ['referencing', 'ticket', 'ticket', 'customer', 'stating', 'barcodes', 'scannable', 'label', 'please', 'revisit', 'ticket', 'ticket', 'review', 'fastenal', 'label', 'customer', 'claiming', 'barcode', 'output', 'zebra', 'printer', 'scan', 'need', 'replicate', 'barcode', 'located', 'label', 'currently', 'output', 'datamax', 'see', 'attached'] processed_text: ['referencing', 'ticket', 'ticket', 'customer', 'stating', 'barcodes', 'scannable', 'label', 'please', 'revisit', 'ticket', 'ticket', 'review', 'fastenal', 'label', 'customer', 'claiming', 'barcode', 'output', 'zebra', 'printer', 'scan', 'need', 'replicate', 'barcode', 'located', 'label', 'currently', 'output', 'datamax', 'see', 'attached'] list_processed_text: [['referencing'], ['ticket'], ['ticket'], ['customer'], ['stating'], ['barcodes'], ['scannable'], ['label'], ['please'], ['revisit'], ['ticket'], ['ticket'], ['review'], ['fastenal'], ['label'], ['customer'], ['claiming'], ['barcode'], ['output'], ['zebra'], ['printer'], ['scan'], ['need'], ['replicate'], ['barcode'], ['located'], ['label'], ['currently'], ['output'], ['datamax'], ['see'], ['attached']] k: 3892 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3893 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3894 len: <class 'list'> Data: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] processed_text: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] list_processed_text: [['nan'], ['user'], ['unable'], ['tologin'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['using'], ['vpn'], ['company'], ['vpn'], ['link'], ['issue'], ['resolved']] k: 3895 len: <class 'list'> Data: ['unable', 'access', 'na', 'vpn', 'click', 'click', 'enter', 'new', 'session', 'screen', 'repeat', 'instead', 'prompting', 'user', 'id', 'password', 'usually', 'able', 'use', 'euro', 'vpn', 'link', 'provided', 'email'] processed_text: ['unable', 'access', 'na', 'vpn', 'click', 'click', 'enter', 'new', 'session', 'screen', 'repeat', 'instead', 'prompting', 'user', 'id', 'password', 'usually', 'able', 'use', 'euro', 'vpn', 'link', 'provided', 'email'] list_processed_text: [['unable'], ['access'], ['na'], ['vpn'], ['click'], ['click'], ['enter'], ['new'], ['session'], ['screen'], ['repeat'], ['instead'], ['prompting'], ['user'], ['id'], ['password'], ['usually'], ['able'], ['use'], ['euro'], ['vpn'], ['link'], ['provided'], ['email']] k: 3896 len: <class 'list'> Data: ['vpn', 'vpn', 'issue', 'get', 'logged', 'vpn', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['vpn', 'vpn', 'issue', 'get', 'logged', 'vpn', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['vpn'], ['vpn'], ['issue'], ['get'], ['logged'], ['vpn'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 3897 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] processed_text: ['vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error', 'vpn', 'working', 'vpn', 'company', 'com', 'link', 'giving', 'error'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error'], ['vpn'], ['working'], ['vpn'], ['company'], ['com'], ['link'], ['giving'], ['error']] k: 3898 len: <class 'list'> Data: ['germany', 'steel', 'plant', 'programdnty', 'eu', 'tool', 'run', 'name', 'cfokqnhz', 'notxygdz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'germany', 'steel', 'plant', 'programdnty', 'eu', 'tool', 'run', 'please', 'check', 'programdnty'] processed_text: ['germany', 'steel', 'plant', 'programdnty', 'eu', 'tool', 'run', 'name', 'cfokqnhz', 'notxygdz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'germany', 'steel', 'plant', 'programdnty', 'eu', 'tool', 'run', 'please', 'check', 'programdnty'] list_processed_text: [['germany'], ['steel'], ['plant'], ['programdnty'], ['eu'], ['tool'], ['run'], ['name'], ['cfokqnhz'], ['notxygdz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['germany'], ['steel'], ['plant'], ['programdnty'], ['eu'], ['tool'], ['run'], ['please'], ['check'], ['programdnty']] k: 3899 len: <class 'list'> Data: ['vpn', 'working', 'vpn', 'working'] processed_text: ['vpn', 'working', 'vpn', 'working'] list_processed_text: [['vpn'], ['working'], ['vpn'], ['working']] k: 3900 len: <class 'list'> Data: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] processed_text: ['nan', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] list_processed_text: [['nan'], ['user'], ['unable'], ['tologin'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['using'], ['vpn'], ['company'], ['vpn'], ['link'], ['issue'], ['resolved']] k: 3901 len: <class 'list'> Data: ['vpn', 'login', 'issue', 'vpn', 'login', 'issue', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] processed_text: ['vpn', 'login', 'issue', 'vpn', 'login', 'issue', 'user', 'unable', 'tologin', 'vpn', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'company', 'vpn', 'using', 'vpn', 'company', 'vpn', 'link', 'issue', 'resolved'] list_processed_text: [['vpn'], ['login'], ['issue'], ['vpn'], ['login'], ['issue'], ['user'], ['unable'], ['tologin'], ['vpn'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['using'], ['vpn'], ['company'], ['vpn'], ['link'], ['issue'], ['resolved']] k: 3902 len: <class 'list'> Data: ['user', 'unable', 'tologin', 'vpn', 'name', 'lizhwdoe', 'mjudivse', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'login', 'vpn'] processed_text: ['user', 'unable', 'tologin', 'vpn', 'name', 'lizhwdoe', 'mjudivse', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'login', 'vpn'] list_processed_text: [['user'], ['unable'], ['tologin'], ['vpn'], ['name'], ['lizhwdoe'], ['mjudivse'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['login'], ['vpn']] k: 3903 len: <class 'list'> Data: ['nan', 'name', 'wvqgbdhm', 'fwchqjor', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'available', 'summary', 'get', 'vpn', 'need', 'est', 'wont', 'happen', 'please', 'help', 'aerp'] processed_text: ['nan', 'name', 'wvqgbdhm', 'fwchqjor', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'available', 'summary', 'get', 'vpn', 'need', 'est', 'wont', 'happen', 'please', 'help', 'aerp'] list_processed_text: [['nan'], ['name'], ['wvqgbdhm'], ['fwchqjor'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['available'], ['summary'], ['get'], ['vpn'], ['need'], ['est'], ['wont'], ['happen'], ['please'], ['help'], ['aerp']] k: 3904 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 3905 len: <class 'list'> Data: ['distributor', 'tool', 'account', 'working', 'dashbankrd', 'gone', 'cannot', 'select', 'sale', 'org', 'cannot', 'select', 'customer', 'distributor', 'tool', 'account', 'working', 'dashbankrd', 'gone', 'cannot', 'select', 'sale', 'org', 'cannot', 'select', 'customer'] processed_text: ['distributor', 'tool', 'account', 'working', 'dashbankrd', 'gone', 'cannot', 'select', 'sale', 'org', 'cannot', 'select', 'customer', 'distributor', 'tool', 'account', 'working', 'dashbankrd', 'gone', 'cannot', 'select', 'sale', 'org', 'cannot', 'select', 'customer'] list_processed_text: [['distributor'], ['tool'], ['account'], ['working'], ['dashbankrd'], ['gone'], ['cannot'], ['select'], ['sale'], ['org'], ['cannot'], ['select'], ['customer'], ['distributor'], ['tool'], ['account'], ['working'], ['dashbankrd'], ['gone'], ['cannot'], ['select'], ['sale'], ['org'], ['cannot'], ['select'], ['customer']] k: 3906 len: <class 'list'> Data: ['access', 'tjlizqgc', 'ngvwoukp', 'calendar', 'name', 'xmeytziq', 'dcgwuvfk', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'get', 'access', 'tjlizqgc', 'ngvwoukp', 'calendar', 'taken', 'ehs', 'duty', 'usa', 'well', 'usa', 'indiana'] processed_text: ['access', 'tjlizqgc', 'ngvwoukp', 'calendar', 'name', 'xmeytziq', 'dcgwuvfk', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'get', 'access', 'tjlizqgc', 'ngvwoukp', 'calendar', 'taken', 'ehs', 'duty', 'usa', 'well', 'usa', 'indiana'] list_processed_text: [['access'], ['tjlizqgc'], ['ngvwoukp'], ['calendar'], ['name'], ['xmeytziq'], ['dcgwuvfk'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['get'], ['access'], ['tjlizqgc'], ['ngvwoukp'], ['calendar'], ['taken'], ['ehs'], ['duty'], ['usa'], ['well'], ['usa'], ['indiana']] k: 3907 len: <class 'list'> Data: ['unable', 'see', 'name', 'engineering', 'tool', 'unable', 'see', 'name', 'engineering', 'tool'] processed_text: ['unable', 'see', 'name', 'engineering', 'tool', 'unable', 'see', 'name', 'engineering', 'tool'] list_processed_text: [['unable'], ['see'], ['name'], ['engineering'], ['tool'], ['unable'], ['see'], ['name'], ['engineering'], ['tool']] k: 3908 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3909 len: <class 'list'> Data: ['mii', 'password', 'reset', 'name', 'itclukpe', 'aimcfeko', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'user', 'name', 'password', 'reset', 'mii', 'wpcatozg', 'roceshun', 'em', 'current', 'id', 'password', 'let', 'log', 'system', 'mii'] processed_text: ['mii', 'password', 'reset', 'name', 'itclukpe', 'aimcfeko', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'user', 'name', 'password', 'reset', 'mii', 'wpcatozg', 'roceshun', 'em', 'current', 'id', 'password', 'let', 'log', 'system', 'mii'] list_processed_text: [['mii'], ['password'], ['reset'], ['name'], ['itclukpe'], ['aimcfeko'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['user'], ['name'], ['password'], ['reset'], ['mii'], ['wpcatozg'], ['roceshun'], ['em'], ['current'], ['id'], ['password'], ['let'], ['log'], ['system'], ['mii']] k: 3910 len: <class 'list'> Data: ['crm', 'add', 'outlook', 'global', 'team', 'currently', 'connectivity', 'crm', 'microsoft', 'outlook', 'company', 'computer', 'required', 'begin', 'link', 'email', 'contact', 'information', 'outlook', 'crm', 'without', 'crm', 'add', 'working', 'device', 'currently', 'unable', 'please', 'open', 'ticket', 'get', 'completed'] processed_text: ['crm', 'add', 'outlook', 'global', 'team', 'currently', 'connectivity', 'crm', 'microsoft', 'outlook', 'company', 'computer', 'required', 'begin', 'link', 'email', 'contact', 'information', 'outlook', 'crm', 'without', 'crm', 'add', 'working', 'device', 'currently', 'unable', 'please', 'open', 'ticket', 'get', 'completed'] list_processed_text: [['crm'], ['add'], ['outlook'], ['global'], ['team'], ['currently'], ['connectivity'], ['crm'], ['microsoft'], ['outlook'], ['company'], ['computer'], ['required'], ['begin'], ['link'], ['email'], ['contact'], ['information'], ['outlook'], ['crm'], ['without'], ['crm'], ['add'], ['working'], ['device'], ['currently'], ['unable'], ['please'], ['open'], ['ticket'], ['get'], ['completed']] k: 3911 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 3912 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3913 len: <class 'list'> Data: ['distributor', 'tool', 'engineering', 'tool', 'show', 'inventory', 'mm', 'distributor', 'tool', 'engineering', 'tool', 'show', 'inventory', 'mm', 'even', 'though', 'mmbe', 'transaction', 'show', 'unrestricted', 'stock', 'plant', 'dvw', 'mm', 'number', 'issue', 'sure', 'mm', 'number', 'stock', 'distributor', 'tool', 'engineering', 'tool', 'seeing', 'stock', 'please', 'see', 'attached', 'email', 'background', 'attached', 'screenshots', 'material', 'managementbe', 'transaction', 'engineering', 'tool', 'distributor', 'tool'] processed_text: ['distributor', 'tool', 'engineering', 'tool', 'show', 'inventory', 'mm', 'distributor', 'tool', 'engineering', 'tool', 'show', 'inventory', 'mm', 'even', 'though', 'mmbe', 'transaction', 'show', 'unrestricted', 'stock', 'plant', 'dvw', 'mm', 'number', 'issue', 'sure', 'mm', 'number', 'stock', 'distributor', 'tool', 'engineering', 'tool', 'seeing', 'stock', 'please', 'see', 'attached', 'email', 'background', 'attached', 'screenshots', 'material', 'managementbe', 'transaction', 'engineering', 'tool', 'distributor', 'tool'] list_processed_text: [['distributor'], ['tool'], ['engineering'], ['tool'], ['show'], ['inventory'], ['mm'], ['distributor'], ['tool'], ['engineering'], ['tool'], ['show'], ['inventory'], ['mm'], ['even'], ['though'], ['mmbe'], ['transaction'], ['show'], ['unrestricted'], ['stock'], ['plant'], ['dvw'], ['mm'], ['number'], ['issue'], ['sure'], ['mm'], ['number'], ['stock'], ['distributor'], ['tool'], ['engineering'], ['tool'], ['seeing'], ['stock'], ['please'], ['see'], ['attached'], ['email'], ['background'], ['attached'], ['screenshots'], ['material'], ['managementbe'], ['transaction'], ['engineering'], ['tool'], ['distributor'], ['tool']] k: 3914 len: <class 'list'> Data: ['unable', 'connect', 'ca', 'printer', 'unable', 'connect', 'ca', 'printer'] processed_text: ['unable', 'connect', 'ca', 'printer', 'unable', 'connect', 'ca', 'printer'] list_processed_text: [['unable'], ['connect'], ['ca'], ['printer'], ['unable'], ['connect'], ['ca'], ['printer']] k: 3915 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'bakertm', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'userid', 'longer', 'active', 'sid', 'reset', 'password', 'password', 'management', 'tool', 'changed', 'sid', 'userid', 'longer', 'active', 'please', 'allow', 'access', 'needed', 'erp', 'mii', 'uacyltoe', 'hxgayczeing', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'bakertm', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'userid', 'longer', 'active', 'sid', 'reset', 'password', 'password', 'management', 'tool', 'changed', 'sid', 'userid', 'longer', 'active', 'please', 'allow', 'access', 'needed', 'erp', 'mii', 'uacyltoe', 'hxgayczeing', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['bakertm'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['userid'], ['longer'], ['active'], ['sid'], ['reset'], ['password'], ['password'], ['management'], ['tool'], ['changed'], ['sid'], ['userid'], ['longer'], ['active'], ['please'], ['allow'], ['access'], ['needed'], ['erp'], ['mii'], ['uacyltoe'], ['hxgayczeing'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 3916 len: <class 'list'> Data: ['ticket', 'added', 'comment'] processed_text: ['ticket', 'added', 'comment'] list_processed_text: [['ticket'], ['added'], ['comment']] k: 3917 len: <class 'list'> Data: ['csqe', 'automatic', 'knowledge', 'base', 'sync', 'want', 'setup', 'erp', 'automatically', 'sync', 'push', 'updated', 'knowledge', 'base', 'ipc', 'configair', 'server', 'space', 'standard', 'practice', 'require', 'network', 'admin', 'manually', 'also', 'eliminate', 'various', 'compatibility', 'issue', 'manually', 'extracted', 'file', 'setup', 'system', 'turn', 'sid', 'sid', 'sid', 'change', 'delta', 'move', 'configair', 'server', 'erp', 'update'] processed_text: ['csqe', 'automatic', 'knowledge', 'base', 'sync', 'want', 'setup', 'erp', 'automatically', 'sync', 'push', 'updated', 'knowledge', 'base', 'ipc', 'configair', 'server', 'space', 'standard', 'practice', 'require', 'network', 'admin', 'manually', 'also', 'eliminate', 'various', 'compatibility', 'issue', 'manually', 'extracted', 'file', 'setup', 'system', 'turn', 'sid', 'sid', 'sid', 'change', 'delta', 'move', 'configair', 'server', 'erp', 'update'] list_processed_text: [['csqe'], ['automatic'], ['knowledge'], ['base'], ['sync'], ['want'], ['setup'], ['erp'], ['automatically'], ['sync'], ['push'], ['updated'], ['knowledge'], ['base'], ['ipc'], ['configair'], ['server'], ['space'], ['standard'], ['practice'], ['require'], ['network'], ['admin'], ['manually'], ['also'], ['eliminate'], ['various'], ['compatibility'], ['issue'], ['manually'], ['extracted'], ['file'], ['setup'], ['system'], ['turn'], ['sid'], ['sid'], ['sid'], ['change'], ['delta'], ['move'], ['configair'], ['server'], ['erp'], ['update']] k: 3918 len: <class 'list'> Data: ['cannot', 'print', 'anymore', 'tc', 'printer', 'asking', 'trusted', 'source', 'driver', 'install', 'still', 'work', 'update'] processed_text: ['cannot', 'print', 'anymore', 'tc', 'printer', 'asking', 'trusted', 'source', 'driver', 'install', 'still', 'work', 'update'] list_processed_text: [['cannot'], ['print'], ['anymore'], ['tc'], ['printer'], ['asking'], ['trusted'], ['source'], ['driver'], ['install'], ['still'], ['work'], ['update']] k: 3919 len: <class 'list'> Data: ['locked', 'crm', 'account', 'locked', 'crm', 'account'] processed_text: ['locked', 'crm', 'account', 'locked', 'crm', 'account'] list_processed_text: [['locked'], ['crm'], ['account'], ['locked'], ['crm'], ['account']] k: 3920 len: <class 'list'> Data: ['access', 'drawing', 'net', 'weaver', 'name', 'jashyht', 'mkuhtyhui', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'netweaver', 'business', 'client', 'unable', 'pull', 'drawing', 'seen', 'coworker', 'screen', 'look', 'similar', 'drawing', 'tab', 'missing', 'mine'] processed_text: ['access', 'drawing', 'net', 'weaver', 'name', 'jashyht', 'mkuhtyhui', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'netweaver', 'business', 'client', 'unable', 'pull', 'drawing', 'seen', 'coworker', 'screen', 'look', 'similar', 'drawing', 'tab', 'missing', 'mine'] list_processed_text: [['access'], ['drawing'], ['net'], ['weaver'], ['name'], ['jashyht'], ['mkuhtyhui'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['netweaver'], ['business'], ['client'], ['unable'], ['pull'], ['drawing'], ['seen'], ['coworker'], ['screen'], ['look'], ['similar'], ['drawing'], ['tab'], ['missing'], ['mine']] k: 3921 len: <class 'list'> Data: ['crm', 'outlook', 'hello', 'team', 'need', 'get', 'outlook', 'crm', 'remfg', 'toolted', 'please', 'reach', 'soon', 'possible', 'best'] processed_text: ['crm', 'outlook', 'hello', 'team', 'need', 'get', 'outlook', 'crm', 'remfg', 'toolted', 'please', 'reach', 'soon', 'possible', 'best'] list_processed_text: [['crm'], ['outlook'], ['hello'], ['team'], ['need'], ['get'], ['outlook'], ['crm'], ['remfg'], ['toolted'], ['please'], ['reach'], ['soon'], ['possible'], ['best']] k: 3922 len: <class 'list'> Data: ['crm', 'outlook', 'longer', 'crm', 'portion', 'add', 'outlook', 'need', 'installed', 'login', 'webdhyt', 'employee', 'number', 'best'] processed_text: ['crm', 'outlook', 'longer', 'crm', 'portion', 'add', 'outlook', 'need', 'installed', 'login', 'webdhyt', 'employee', 'number', 'best'] list_processed_text: [['crm'], ['outlook'], ['longer'], ['crm'], ['portion'], ['add'], ['outlook'], ['need'], ['installed'], ['login'], ['webdhyt'], ['employee'], ['number'], ['best']] k: 3923 len: <class 'list'> Data: ['crm', 'add', 'outlook', 'hi', 'seeing', 'crm', 'option', 'outlook', 'please', 'let', 'know', 'get', 'working', 'dallas', 'next', 'training'] processed_text: ['crm', 'add', 'outlook', 'hi', 'seeing', 'crm', 'option', 'outlook', 'please', 'let', 'know', 'get', 'working', 'dallas', 'next', 'training'] list_processed_text: [['crm'], ['add'], ['outlook'], ['hi'], ['seeing'], ['crm'], ['option'], ['outlook'], ['please'], ['let'], ['know'], ['get'], ['working'], ['dallas'], ['next'], ['training']] k: 3924 len: <class 'list'> Data: ['crm', 'addin', 'outook', 'need', 'crm', 'addin', 'outlook', 'perform', 'daily', 'job', 'function', 'moving', 'forward'] processed_text: ['crm', 'addin', 'outook', 'need', 'crm', 'addin', 'outlook', 'perform', 'daily', 'job', 'function', 'moving', 'forward'] list_processed_text: [['crm'], ['addin'], ['outook'], ['need'], ['crm'], ['addin'], ['outlook'], ['perform'], ['daily'], ['job'], ['function'], ['moving'], ['forward']] k: 3925 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 3926 len: <class 'list'> Data: ['sent', 'item', 'folder', 'showing', 'outlook', 'sent', 'item', 'folder', 'showing', 'outlook'] processed_text: ['sent', 'item', 'folder', 'showing', 'outlook', 'sent', 'item', 'folder', 'showing', 'outlook'] list_processed_text: [['sent'], ['item'], ['folder'], ['showing'], ['outlook'], ['sent'], ['item'], ['folder'], ['showing'], ['outlook']] k: 3927 len: <class 'list'> Data: ['job', 'job', 'ap', 'failed', 'job', 'scheduler', 'job', 'job', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'ap', 'failed', 'job', 'scheduler', 'job', 'job', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 3928 len: <class 'list'> Data: ['unable', 'fill', 'expense', 'report', 'form', 'employee', 'unable', 'fill', 'expense', 'report', 'form', 'employee'] processed_text: ['unable', 'fill', 'expense', 'report', 'form', 'employee', 'unable', 'fill', 'expense', 'report', 'form', 'employee'] list_processed_text: [['unable'], ['fill'], ['expense'], ['report'], ['form'], ['employee'], ['unable'], ['fill'], ['expense'], ['report'], ['form'], ['employee']] k: 3929 len: <class 'list'> Data: ['quotation', 'printing', 'incorrect', 'voucher', 'discount', 'see', 'attached', 'example', 'discount', 'applied', 'quote', 'copy', 'showing', 'sure', 'pdf', 'picking', 'additional', 'also', 'see', 'example', 'show', 'print', 'correct', 'printed', 'today', 'something', 'move', 'weekend', 'backed'] processed_text: ['quotation', 'printing', 'incorrect', 'voucher', 'discount', 'see', 'attached', 'example', 'discount', 'applied', 'quote', 'copy', 'showing', 'sure', 'pdf', 'picking', 'additional', 'also', 'see', 'example', 'show', 'print', 'correct', 'printed', 'today', 'something', 'move', 'weekend', 'backed'] list_processed_text: [['quotation'], ['printing'], ['incorrect'], ['voucher'], ['discount'], ['see'], ['attached'], ['example'], ['discount'], ['applied'], ['quote'], ['copy'], ['showing'], ['sure'], ['pdf'], ['picking'], ['additional'], ['also'], ['see'], ['example'], ['show'], ['print'], ['correct'], ['printed'], ['today'], ['something'], ['move'], ['weekend'], ['backed']] k: 3930 len: <class 'list'> Data: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] processed_text: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] list_processed_text: [['ticket'], ['ticket'], ['update'], ['ticket'], ['ticket'], ['update']] k: 3931 len: <class 'list'> Data: ['sfb', 'issue', 'summary', 'unable', 'log', 'skype', 'call'] processed_text: ['sfb', 'issue', 'summary', 'unable', 'log', 'skype', 'call'] list_processed_text: [['sfb'], ['issue'], ['summary'], ['unable'], ['log'], ['skype'], ['call']] k: 3932 len: <class 'list'> Data: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] processed_text: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] list_processed_text: [['ticket'], ['ticket'], ['update'], ['ticket'], ['ticket'], ['update']] k: 3933 len: <class 'list'> Data: ['update', 'ticket', 'update', 'ticket'] processed_text: ['update', 'ticket', 'update', 'ticket'] list_processed_text: [['update'], ['ticket'], ['update'], ['ticket']] k: 3934 len: <class 'list'> Data: ['reset', 'password', 'hana', 'system', 'sid', 'sid', 'user', 'id', 'bollmam', 'reset', 'password', 'hana', 'system', 'sid', 'sid', 'user', 'id', 'bollmam', 'kindly', 'make', 'priority', 'basis'] processed_text: ['reset', 'password', 'hana', 'system', 'sid', 'sid', 'user', 'id', 'bollmam', 'reset', 'password', 'hana', 'system', 'sid', 'sid', 'user', 'id', 'bollmam', 'kindly', 'make', 'priority', 'basis'] list_processed_text: [['reset'], ['password'], ['hana'], ['system'], ['sid'], ['sid'], ['user'], ['id'], ['bollmam'], ['reset'], ['password'], ['hana'], ['system'], ['sid'], ['sid'], ['user'], ['id'], ['bollmam'], ['kindly'], ['make'], ['priority'], ['basis']] k: 3935 len: <class 'list'> Data: ['please', 'delete', 'sm', 'job', 'issue', 'inc', 'please', 'delete', 'rm', 'eb'] processed_text: ['please', 'delete', 'sm', 'job', 'issue', 'inc', 'please', 'delete', 'rm', 'eb'] list_processed_text: [['please'], ['delete'], ['sm'], ['job'], ['issue'], ['inc'], ['please'], ['delete'], ['rm'], ['eb']] k: 3936 len: <class 'list'> Data: ['sandplant', 'fc', 'drlab', 'hostname', 'since', 'pm', 'et', 'sandplant', 'fc', 'drlab', 'hostname', 'since', 'pm', 'et'] processed_text: ['sandplant', 'fc', 'drlab', 'hostname', 'since', 'pm', 'et', 'sandplant', 'fc', 'drlab', 'hostname', 'since', 'pm', 'et'] list_processed_text: [['sandplant'], ['fc'], ['drlab'], ['hostname'], ['since'], ['pm'], ['et'], ['sandplant'], ['fc'], ['drlab'], ['hostname'], ['since'], ['pm'], ['et']] k: 3937 len: <class 'list'> Data: ['terhyury', 'jerhtyua', 'employee', 'usa', 'locked', 'mii', 'please', 'unlock', 'verify', 'employee', 'sid', 'access', 'terhyury', 'jerhtyua', 'employee', 'usa', 'locked', 'mii', 'please', 'unlock', 'verify', 'employee', 'sid', 'access', 'employee', 'unable', 'report', 'production', 'capture', 'value', 'add', 'data', 'mii'] processed_text: ['terhyury', 'jerhtyua', 'employee', 'usa', 'locked', 'mii', 'please', 'unlock', 'verify', 'employee', 'sid', 'access', 'terhyury', 'jerhtyua', 'employee', 'usa', 'locked', 'mii', 'please', 'unlock', 'verify', 'employee', 'sid', 'access', 'employee', 'unable', 'report', 'production', 'capture', 'value', 'add', 'data', 'mii'] list_processed_text: [['terhyury'], ['jerhtyua'], ['employee'], ['usa'], ['locked'], ['mii'], ['please'], ['unlock'], ['verify'], ['employee'], ['sid'], ['access'], ['terhyury'], ['jerhtyua'], ['employee'], ['usa'], ['locked'], ['mii'], ['please'], ['unlock'], ['verify'], ['employee'], ['sid'], ['access'], ['employee'], ['unable'], ['report'], ['production'], ['capture'], ['value'], ['add'], ['data'], ['mii']] k: 3938 len: <class 'list'> Data: ['schdule', 'name', 'final', 'job', 'scheduler', 'batch', 'job', 'documentation', 'need', 'updated', 'schdule', 'name', 'final', 'job', 'scheduler', 'batch', 'job', 'documentation', 'need', 'updated'] processed_text: ['schdule', 'name', 'final', 'job', 'scheduler', 'batch', 'job', 'documentation', 'need', 'updated', 'schdule', 'name', 'final', 'job', 'scheduler', 'batch', 'job', 'documentation', 'need', 'updated'] list_processed_text: [['schdule'], ['name'], ['final'], ['job'], ['scheduler'], ['batch'], ['job'], ['documentation'], ['need'], ['updated'], ['schdule'], ['name'], ['final'], ['job'], ['scheduler'], ['batch'], ['job'], ['documentation'], ['need'], ['updated']] k: 3939 len: <class 'list'> Data: ['sfb', 'issue', 'access', 'skype', 'business', 'come', 'message', 'programdnty', 'file', 'microsoft', 'office', 'root', 'office', 'lync', 'exe'] processed_text: ['sfb', 'issue', 'access', 'skype', 'business', 'come', 'message', 'programdnty', 'file', 'microsoft', 'office', 'root', 'office', 'lync', 'exe'] list_processed_text: [['sfb'], ['issue'], ['access'], ['skype'], ['business'], ['come'], ['message'], ['programdnty'], ['file'], ['microsoft'], ['office'], ['root'], ['office'], ['lync'], ['exe']] k: 3940 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'apul', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'abb', 'ack', 'xee', 'win', 'xb', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'domain', 'newflv', 'sohu', 'ccgslb', 'net', 'ex', 'http', 'hostname', 'sso', 'anbtr', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ac', 'df', 'wv', 'cc', 'bb', 'cde', 'ac', 'cb', 'da', 'bb', 'p', 'ee', 'bfb', 'fe', 'h', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'fe', 'mon', 'sep', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'fe', 'xt', 'html', 'connect', 'f', 'ea', 'cf', 'da', 'ion', 'close', 'set', 'f', 'fb', 'cookie', 'anbtr', 'feecdaac', 'b', 'caaca', 'f', 'sid', 'de', 'ee', 'domain', 'ccgslb', 'da', 'cf', 'fe', 'et', 'location', 'ht', 'af', 'fe', 'c', 'tp', 'xsso', 'newflv', 'f', 'c', 'ee', 'sohu', 'ccgslb', 'net', 'bfeecda', 'sartlgeo', 'lhqksbdxaccaaca', 'ad', 'af', 'go', 'fe', 'c', 'f', 'sso', 'newflv', 'sohu', 'ee', 'ccgslb', 'net', 'bf', 'eecdaac', 'caaca', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'apul', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'abb', 'ack', 'xee', 'win', 'xb', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'domain', 'newflv', 'sohu', 'ccgslb', 'net', 'ex', 'http', 'hostname', 'sso', 'anbtr', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ac', 'df', 'wv', 'cc', 'bb', 'cde', 'ac', 'cb', 'da', 'bb', 'p', 'ee', 'bfb', 'fe', 'h', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'fe', 'mon', 'sep', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'fe', 'xt', 'html', 'connect', 'f', 'ea', 'cf', 'da', 'ion', 'close', 'set', 'f', 'fb', 'cookie', 'anbtr', 'feecdaac', 'b', 'caaca', 'f', 'sid', 'de', 'ee', 'domain', 'ccgslb', 'da', 'cf', 'fe', 'et', 'location', 'ht', 'af', 'fe', 'c', 'tp', 'xsso', 'newflv', 'f', 'c', 'ee', 'sohu', 'ccgslb', 'net', 'bfeecda', 'sartlgeo', 'lhqksbdxaccaaca', 'ad', 'af', 'go', 'fe', 'c', 'f', 'sso', 'newflv', 'sohu', 'ee', 'ccgslb', 'net', 'bf', 'eecdaac', 'caaca', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['apul'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['apul'], ['destination'], ['port'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['abb'], ['ack'], ['xee'], ['win'], ['xb'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['domain'], ['newflv'], ['sohu'], ['ccgslb'], ['net'], ['ex'], ['http'], ['hostname'], ['sso'], ['anbtr'], ['com'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['ac'], ['df'], ['wv'], ['cc'], ['bb'], ['cde'], ['ac'], ['cb'], ['da'], ['bb'], ['p'], ['ee'], ['bfb'], ['fe'], ['h'], ['http'], ['e'], ['f'], ['moved'], ['f'], ['da'], ['emporarily'], ['serv'], ['e'], ['er'], ['nginx'], ['date'], ['fe'], ['mon'], ['sep'], ['da'], ['gmt'], ['e'], ['content'], ['type'], ['te'], ['f'], ['cd'], ['fe'], ['xt'], ['html'], ['connect'], ['f'], ['ea'], ['cf'], ['da'], ['ion'], ['close'], ['set'], ['f'], ['fb'], ['cookie'], ['anbtr'], ['feecdaac'], ['b'], ['caaca'], ['f'], ['sid'], ['de'], ['ee'], ['domain'], ['ccgslb'], ['da'], ['cf'], ['fe'], ['et'], ['location'], ['ht'], ['af'], ['fe'], ['c'], ['tp'], ['xsso'], ['newflv'], ['f'], ['c'], ['ee'], ['sohu'], ['ccgslb'], ['net'], ['bfeecda'], ['sartlgeo'], ['lhqksbdxaccaaca'], ['ad'], ['af'], ['go'], ['fe'], ['c'], ['f'], ['sso'], ['newflv'], ['sohu'], ['ee'], ['ccgslb'], ['net'], ['bf'], ['eecdaac'], ['caaca'], ['pcap'], ['hex'], ['e']] k: 3941 len: <class 'list'> Data: ['access', 'point', 'company', 'ita', 'company', 'milano', 'ap', 'ip', 'blue', 'light', 'blinking', 'permit', 'connection', 'could', 'please', 'check'] processed_text: ['access', 'point', 'company', 'ita', 'company', 'milano', 'ap', 'ip', 'blue', 'light', 'blinking', 'permit', 'connection', 'could', 'please', 'check'] list_processed_text: [['access'], ['point'], ['company'], ['ita'], ['company'], ['milano'], ['ap'], ['ip'], ['blue'], ['light'], ['blinking'], ['permit'], ['connection'], ['could'], ['please'], ['check']] k: 3942 len: <class 'list'> Data: ['tandd', 'inwarehouse', 'tool', 'pricing', 'error', 'hi', 'please', 'refer', 'mail', 'branch', 'attached', 'tandd', 'inwarehouse', 'tool', 'plant', 'inwarehouse', 'tool', 'picked', 'total', 'basic', 'value', 'r', 'excise', 'duty', 'got', 'charged', 'paid', 'accordingly', 'instead', 'correct', 'total', 'basic', 'value', 'r', 'per', 'previous', 'inwarehouse', 'tool', 'kindly', 'find', 'fix', 'problem', 'future', 'inwarehouse', 'tool', 'capture', 'correct', 'total', 'basic', 'value', 'avoid', 'paying', 'higher', 'excise', 'duty'] processed_text: ['tandd', 'inwarehouse', 'tool', 'pricing', 'error', 'hi', 'please', 'refer', 'mail', 'branch', 'attached', 'tandd', 'inwarehouse', 'tool', 'plant', 'inwarehouse', 'tool', 'picked', 'total', 'basic', 'value', 'r', 'excise', 'duty', 'got', 'charged', 'paid', 'accordingly', 'instead', 'correct', 'total', 'basic', 'value', 'r', 'per', 'previous', 'inwarehouse', 'tool', 'kindly', 'find', 'fix', 'problem', 'future', 'inwarehouse', 'tool', 'capture', 'correct', 'total', 'basic', 'value', 'avoid', 'paying', 'higher', 'excise', 'duty'] list_processed_text: [['tandd'], ['inwarehouse'], ['tool'], ['pricing'], ['error'], ['hi'], ['please'], ['refer'], ['mail'], ['branch'], ['attached'], ['tandd'], ['inwarehouse'], ['tool'], ['plant'], ['inwarehouse'], ['tool'], ['picked'], ['total'], ['basic'], ['value'], ['r'], ['excise'], ['duty'], ['got'], ['charged'], ['paid'], ['accordingly'], ['instead'], ['correct'], ['total'], ['basic'], ['value'], ['r'], ['per'], ['previous'], ['inwarehouse'], ['tool'], ['kindly'], ['find'], ['fix'], ['problem'], ['future'], ['inwarehouse'], ['tool'], ['capture'], ['correct'], ['total'], ['basic'], ['value'], ['avoid'], ['paying'], ['higher'], ['excise'], ['duty']] k: 3943 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 3944 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'android', 'fa', 'source', 'ip', 'system', 'name', 'android', 'faecee', 'user', 'name', 'unknown', 'location', 'unknown', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'android', 'faecee', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'android', 'faecee', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xaccedd', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'android', 'faecee', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'df', 'df', 'f', 'b', 'fea', 'cde', 'dc', 'p', 'acc', 'edd', 'caf', 'j', 'def', 'e', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'fe', 'nginx', 'date', 'mon', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'b', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'bdc', 'afef', 'b', 'sid', 'ef', 'doma', 'de', 'c', 'e', 'allinvest', 'u', 'da', 'cf', 'fe', 'location', 'http', 'af', 'fe', 'e', 'cc', 'xsso', 'help', 'e', 'invest', 'u', 'bdc', 'afef', 'da', 'da', 'ef', 'go', 'ff', 'e', 'e', 'c', 'e', 'p', 'allinvest', 'u', 'dcafe', 'fef', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'android', 'fa', 'source', 'ip', 'system', 'name', 'android', 'faecee', 'user', 'name', 'unknown', 'location', 'unknown', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'android', 'faecee', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'android', 'faecee', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'android', 'faecee', 'destination', 'port', 'destination', 'mac', 'address', 'c', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xaccedd', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'c', 'android', 'faecee', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'df', 'df', 'f', 'b', 'fea', 'cde', 'dc', 'p', 'acc', 'edd', 'caf', 'j', 'def', 'e', 'http', 'f', 'f', 'moved', 'tempo', 'da', 'rarily', 'server', 'e', 'fe', 'nginx', 'date', 'mon', 'da', 'e', 'gmt', 'cont', 'e', 'f', 'ent', 'type', 'text', 'b', 'cd', 'fe', 'f', 'ea', 'tml', 'connection', 'cf', 'da', 'f', 'fb', 'close', 'set', 'cook', 'e', 'ie', 'anbtr', 'bdc', 'afef', 'b', 'sid', 'ef', 'doma', 'de', 'c', 'e', 'allinvest', 'u', 'da', 'cf', 'fe', 'location', 'http', 'af', 'fe', 'e', 'cc', 'xsso', 'help', 'e', 'invest', 'u', 'bdc', 'afef', 'da', 'da', 'ef', 'go', 'ff', 'e', 'e', 'c', 'e', 'p', 'allinvest', 'u', 'dcafe', 'fef', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['android'], ['fa'], ['source'], ['ip'], ['system'], ['name'], ['android'], ['faecee'], ['user'], ['name'], ['unknown'], ['location'], ['unknown'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['incident'], ['overview'], ['seeing'], ['isensor'], ['company'], ['com'], ['device'], ['generating'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['alert'], ['traffic'], ['blocked'], ['port'], ['tcp'], ['port'], ['tcp'], ['android'], ['faecee'], ['device'], ['indicating'], ['host'], ['likely'], ['infected'], ['malware'], ['return'], ['traffic'], ['indicates'], ['android'], ['faecee'], ['likely'], ['attempted'], ['visit'], ['domain'], ['name'], ['sinkholed'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['false'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['ip'], ['address'], ['resolution'], ['requested'], ['sinkhole'], ['traffic'], ['possible'], ['indicator'], ['infected'], ['computer'], ['reaching'], ['controller'], ['taken'], ['law'], ['enforcement'], ['research'], ['organization'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['however'], ['clear'], ['indication'], ['malware'], ['infection'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['per'], ['default'], ['escalation'], ['policy'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['sinkhole'], ['domain'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['auto'], ['resolve'], ['sinkhole'], ['domain'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['soc'], ['technical'], ['detail'], ['domain'], ['name'], ['system'], ['dns'], ['hierarchical'], ['naming'], ['system'], ['resource'], ['connected'], ['internet'], ['private'], ['network'], ['primary'], ['purpose'], ['associating'], ['various'], ['information'], ['domain'], ['name'], ['assigned'], ['participating'], ['entity'], ['primarily'], ['used'], ['translating'], ['domain'], ['name'], ['numerirtcal'], ['ip'], ['address'], ['purpose'], ['locating'], ['service'], ['device'], ['network'], ['domain'], ['name'], ['system'], ['distributes'], ['responsibility'], ['assigning'], ['domain'], ['name'], ['mapping'], ['name'], ['ip'], ['address'], ['designating'], ['authoritative'], ['name'], ['server'], ['domain'], ['authoritative'], ['name'], ['server'], ['assigned'], ['responsible'], ['supported'], ['domain'], ['delegate'], ['authority'], ['subdomains'], ['name'], ['server'], ['domain'], ['name'], ['system'], ['also'], ['specifies'], ['technical'], ['functionality'], ['database'], ['service'], ['defines'], ['dns'], ['protocol'], ['detailed'], ['specification'], ['data'], ['structure'], ['data'], ['communication'], ['exchange'], ['used'], ['dns'], ['part'], ['internet'], ['protocol'], ['suite'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['incorrect'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['name'], ['ip'], ['address'], ['resolution'], ['attempted'], ['client'], ['request'], ['resolve'], ['address'], ['sinkholed'], ['hole'], ['domain'], ['sinkhole'], ['return'], ['non'], ['routable'], ['address'], ['address'], ['except'], ['real'], ['address'], ['germanytially'], ['denies'], ['client'], ['connection'], ['target'], ['host'], ['using'], ['method'], ['compromised'], ['client'], ['easily'], ['found'], ['using'], ['sinkhole'], ['log'], ['another'], ['method'], ['detecting'], ['compromised'], ['host'], ['operation'], ['server'], ['used'], ['command'], ['control'], ['purpose'], ['taken'], ['law'], ['enforcement'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['clear'], ['indication'], ['infection'], ['trojan'], ['sort'], ['connection'], ['sinkhole'], ['seem'], ['somewhat'], ['benign'], ['ramdntyifications'], ['certainly'], ['include'], ['information'], ['leakage'], ['extent'], ['although'], ['sinkhole'], ['operator'], ['unlikely'], ['use'], ['personally'], ['identifiable'], ['information'], ['capture'], ['trojan'], ['communication'], ['become'], ['public'], ['knowledge'], ['company'], ['infected'], ['lead'], ['reputational'], ['damage'], ['additionally'], ['sinkhole'], ['feeding'], ['ip'], ['address'], ['victim'], ['beshryulists'], ['impede'], ['access'], ['certain'], ['service'], ['like'], ['sending'], ['email'], ['finally'], ['trojan'], ['connect'], ['multiple'], ['controller'], ['domain'], ['hostnames'], ['even'], ['though'], ['sinkholed'], ['others'], ['leading'], ['possibility'], ['remote'], ['code'], ['execution'], ['information'], ['leakage'], ['malicious'], ['party'], ['case'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['android'], ['faecee'], ['destination'], ['port'], ['destination'], ['mac'], ['address'], ['c'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xf'], ['ack'], ['xaccedd'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['c'], ['android'], ['faecee'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['df'], ['df'], ['f'], ['b'], ['fea'], ['cde'], ['dc'], ['p'], ['acc'], ['edd'], ['caf'], ['j'], ['def'], ['e'], ['http'], ['f'], ['f'], ['moved'], ['tempo'], ['da'], ['rarily'], ['server'], ['e'], ['fe'], ['nginx'], ['date'], ['mon'], ['da'], ['e'], ['gmt'], ['cont'], ['e'], ['f'], ['ent'], ['type'], ['text'], ['b'], ['cd'], ['fe'], ['f'], ['ea'], ['tml'], ['connection'], ['cf'], ['da'], ['f'], ['fb'], ['close'], ['set'], ['cook'], ['e'], ['ie'], ['anbtr'], ['bdc'], ['afef'], ['b'], ['sid'], ['ef'], ['doma'], ['de'], ['c'], ['e'], ['allinvest'], ['u'], ['da'], ['cf'], ['fe'], ['location'], ['http'], ['af'], ['fe'], ['e'], ['cc'], ['xsso'], ['help'], ['e'], ['invest'], ['u'], ['bdc'], ['afef'], ['da'], ['da'], ['ef'], ['go'], ['ff'], ['e'], ['e'], ['c'], ['e'], ['p'], ['allinvest'], ['u'], ['dcafe'], ['fef'], ['pcap'], ['hex'], ['e']] k: 3945 len: <class 'list'> Data: ['user', 'switzerlandim', 'blocked', 'netweaver', 'hello', 'please', 'unlock', 'netweaver', 'access', 'user', 'switzerlandim', 'marftgytin', 'switzerlandik', 'reinstalled', 'application', 'report', 'many', 'failed', 'logins', 'best'] processed_text: ['user', 'switzerlandim', 'blocked', 'netweaver', 'hello', 'please', 'unlock', 'netweaver', 'access', 'user', 'switzerlandim', 'marftgytin', 'switzerlandik', 'reinstalled', 'application', 'report', 'many', 'failed', 'logins', 'best'] list_processed_text: [['user'], ['switzerlandim'], ['blocked'], ['netweaver'], ['hello'], ['please'], ['unlock'], ['netweaver'], ['access'], ['user'], ['switzerlandim'], ['marftgytin'], ['switzerlandik'], ['reinstalled'], ['application'], ['report'], ['many'], ['failed'], ['logins'], ['best']] k: 3946 len: <class 'list'> Data: ['please', 'install', 'm', 'visio', 'std', 'client', 'pc', 'please', 'install', 'm', 'visio', 'std', 'client', 'pc'] processed_text: ['please', 'install', 'm', 'visio', 'std', 'client', 'pc', 'please', 'install', 'm', 'visio', 'std', 'client', 'pc'] list_processed_text: [['please'], ['install'], ['m'], ['visio'], ['std'], ['client'], ['pc'], ['please'], ['install'], ['m'], ['visio'], ['std'], ['client'], ['pc']] k: 3947 len: <class 'list'> Data: ['reset', 'password', 'dwfiykeo', 'argtxmvcumar', 'using', 'password', 'management', 'tool', 'password', 'reset', 'locked', 'sid', 'client', 'function', 'specifically', 'crm', 'system', 'made', 'one', 'attempt', 'entering', 'password', 'received', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt'] processed_text: ['reset', 'password', 'dwfiykeo', 'argtxmvcumar', 'using', 'password', 'management', 'tool', 'password', 'reset', 'locked', 'sid', 'client', 'function', 'specifically', 'crm', 'system', 'made', 'one', 'attempt', 'entering', 'password', 'received', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt'] list_processed_text: [['reset'], ['password'], ['dwfiykeo'], ['argtxmvcumar'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['locked'], ['sid'], ['client'], ['function'], ['specifically'], ['crm'], ['system'], ['made'], ['one'], ['attempt'], ['entering'], ['password'], ['received'], ['password'], ['logon'], ['longer'], ['possible'], ['many'], ['failed'], ['attempt']] k: 3948 len: <class 'list'> Data: ['software', 'request', 'visio', 'need', 'visio', 'installed', 'laptop'] processed_text: ['software', 'request', 'visio', 'need', 'visio', 'installed', 'laptop'] list_processed_text: [['software'], ['request'], ['visio'], ['need'], ['visio'], ['installed'], ['laptop']] k: 3949 len: <class 'list'> Data: ['unable', 'connect', 'skype', 'unable', 'connect', 'skype'] processed_text: ['unable', 'connect', 'skype', 'unable', 'connect', 'skype'] list_processed_text: [['unable'], ['connect'], ['skype'], ['unable'], ['connect'], ['skype']] k: 3950 len: <class 'list'> Data: ['connection', 'issue', 'secomea', 'site', 'manager', 'well', 'fighting', 'week', 'supplier', 'technical', 'department', 'helping', 'also', 'refresh', 'memory', 'trouble', 'connecting', 'secomea', 'site', 'manager', 'secomea', 'cloud', 'history', 'configured', 'total', 'five', 'secomea', 'site', 'manger', 'uacyltoe', 'hxgaycze', 'one', 'complete', 'first', 'two', 'worked', 'still', 'work', 'fine', 'third', 'one', 'started', 'dropping', 'cloud', 'wont', 'connect', 'unit', 'four', 'five', 'wont', 'connect', 'never', 'tried', 'unit', 'three', 'building', 'one', 'two', 'luck', 'took', 'unit', 'three', 'home', 'connected', 'router', 'connects', 'see', 'gate', 'manager', 'use', 'every', 'machine', 'build', 'asking', 'help', 'company', 'department', 'direction', 'realize', 'might', 'familiar', 'product', 'attached', 'simple', 'troubleshooting', 'guide', 'secomea'] processed_text: ['connection', 'issue', 'secomea', 'site', 'manager', 'well', 'fighting', 'week', 'supplier', 'technical', 'department', 'helping', 'also', 'refresh', 'memory', 'trouble', 'connecting', 'secomea', 'site', 'manager', 'secomea', 'cloud', 'history', 'configured', 'total', 'five', 'secomea', 'site', 'manger', 'uacyltoe', 'hxgaycze', 'one', 'complete', 'first', 'two', 'worked', 'still', 'work', 'fine', 'third', 'one', 'started', 'dropping', 'cloud', 'wont', 'connect', 'unit', 'four', 'five', 'wont', 'connect', 'never', 'tried', 'unit', 'three', 'building', 'one', 'two', 'luck', 'took', 'unit', 'three', 'home', 'connected', 'router', 'connects', 'see', 'gate', 'manager', 'use', 'every', 'machine', 'build', 'asking', 'help', 'company', 'department', 'direction', 'realize', 'might', 'familiar', 'product', 'attached', 'simple', 'troubleshooting', 'guide', 'secomea'] list_processed_text: [['connection'], ['issue'], ['secomea'], ['site'], ['manager'], ['well'], ['fighting'], ['week'], ['supplier'], ['technical'], ['department'], ['helping'], ['also'], ['refresh'], ['memory'], ['trouble'], ['connecting'], ['secomea'], ['site'], ['manager'], ['secomea'], ['cloud'], ['history'], ['configured'], ['total'], ['five'], ['secomea'], ['site'], ['manger'], ['uacyltoe'], ['hxgaycze'], ['one'], ['complete'], ['first'], ['two'], ['worked'], ['still'], ['work'], ['fine'], ['third'], ['one'], ['started'], ['dropping'], ['cloud'], ['wont'], ['connect'], ['unit'], ['four'], ['five'], ['wont'], ['connect'], ['never'], ['tried'], ['unit'], ['three'], ['building'], ['one'], ['two'], ['luck'], ['took'], ['unit'], ['three'], ['home'], ['connected'], ['router'], ['connects'], ['see'], ['gate'], ['manager'], ['use'], ['every'], ['machine'], ['build'], ['asking'], ['help'], ['company'], ['department'], ['direction'], ['realize'], ['might'], ['familiar'], ['product'], ['attached'], ['simple'], ['troubleshooting'], ['guide'], ['secomea']] k: 3951 len: <class 'list'> Data: ['access', 'time', 'recording', 'network', 'access', 'time', 'recording', 'network', 'spdczoth', 'vajtodny'] processed_text: ['access', 'time', 'recording', 'network', 'access', 'time', 'recording', 'network', 'spdczoth', 'vajtodny'] list_processed_text: [['access'], ['time'], ['recording'], ['network'], ['access'], ['time'], ['recording'], ['network'], ['spdczoth'], ['vajtodny']] k: 3952 len: <class 'list'> Data: ['outlook', 'start', 'outlook', 'start'] processed_text: ['outlook', 'start', 'outlook', 'start'] list_processed_text: [['outlook'], ['start'], ['outlook'], ['start']] k: 3953 len: <class 'list'> Data: ['vfx', 'billing', 'error', 'please', 'see', 'attached', 'screen', 'print', 'vfx', 'billing', 'error', 'state', 'foreign', 'trade', 'data', 'incomplete', 'billing', 'document', 'create'] processed_text: ['vfx', 'billing', 'error', 'please', 'see', 'attached', 'screen', 'print', 'vfx', 'billing', 'error', 'state', 'foreign', 'trade', 'data', 'incomplete', 'billing', 'document', 'create'] list_processed_text: [['vfx'], ['billing'], ['error'], ['please'], ['see'], ['attached'], ['screen'], ['print'], ['vfx'], ['billing'], ['error'], ['state'], ['foreign'], ['trade'], ['data'], ['incomplete'], ['billing'], ['document'], ['create']] k: 3954 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 3955 len: <class 'list'> Data: ['power', 'supply', 'issue', 'pwrhmc', 'hq', 'company', 'com', 'power', 'supply', 'issue', 'pwrhmc', 'hq', 'company', 'com'] processed_text: ['power', 'supply', 'issue', 'pwrhmc', 'hq', 'company', 'com', 'power', 'supply', 'issue', 'pwrhmc', 'hq', 'company', 'com'] list_processed_text: [['power'], ['supply'], ['issue'], ['pwrhmc'], ['hq'], ['company'], ['com'], ['power'], ['supply'], ['issue'], ['pwrhmc'], ['hq'], ['company'], ['com']] k: 3956 len: <class 'list'> Data: ['issue', 'symantec', 'endpoint', 'protection', 'warning', 'message', 'symantec', 'endpoint', 'protection', 'icon', 'taskbar', 'please', 'see', 'attached', 'document', 'showing', 'message'] processed_text: ['issue', 'symantec', 'endpoint', 'protection', 'warning', 'message', 'symantec', 'endpoint', 'protection', 'icon', 'taskbar', 'please', 'see', 'attached', 'document', 'showing', 'message'] list_processed_text: [['issue'], ['symantec'], ['endpoint'], ['protection'], ['warning'], ['message'], ['symantec'], ['endpoint'], ['protection'], ['icon'], ['taskbar'], ['please'], ['see'], ['attached'], ['document'], ['showing'], ['message']] k: 3957 len: <class 'list'> Data: ['trying', 'get', 'status', 'ticket', 'number', 'ticket', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'get', 'status', 'ticket', 'number', 'ticket'] processed_text: ['trying', 'get', 'status', 'ticket', 'number', 'ticket', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'get', 'status', 'ticket', 'number', 'ticket'] list_processed_text: [['trying'], ['get'], ['status'], ['ticket'], ['number'], ['ticket'], ['name'], ['erirtc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['trying'], ['get'], ['status'], ['ticket'], ['number'], ['ticket']] k: 3958 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 3959 len: <class 'list'> Data: ['unable', 'connect', 'mobile', 'broadband', 'unable', 'connect', 'mobile', 'broadband'] processed_text: ['unable', 'connect', 'mobile', 'broadband', 'unable', 'connect', 'mobile', 'broadband'] list_processed_text: [['unable'], ['connect'], ['mobile'], ['broadband'], ['unable'], ['connect'], ['mobile'], ['broadband']] k: 3960 len: <class 'list'> Data: ['monitor', 'working', 'monitor', 'working'] processed_text: ['monitor', 'working', 'monitor', 'working'] list_processed_text: [['monitor'], ['working'], ['monitor'], ['working']] k: 3961 len: <class 'list'> Data: ['need', 'mouse', 'replacement', 'need', 'mouse', 'replacement', 'ltcw'] processed_text: ['need', 'mouse', 'replacement', 'need', 'mouse', 'replacement', 'ltcw'] list_processed_text: [['need'], ['mouse'], ['replacement'], ['need'], ['mouse'], ['replacement'], ['ltcw']] k: 3962 len: <class 'list'> Data: ['mouse', 'longer', 'work', 'properly', 'please', 'replace', 'mouse', 'longer', 'work', 'properly', 'please', 'replace', 'howfanzi', 'siavgtby'] processed_text: ['mouse', 'longer', 'work', 'properly', 'please', 'replace', 'mouse', 'longer', 'work', 'properly', 'please', 'replace', 'howfanzi', 'siavgtby'] list_processed_text: [['mouse'], ['longer'], ['work'], ['properly'], ['please'], ['replace'], ['mouse'], ['longer'], ['work'], ['properly'], ['please'], ['replace'], ['howfanzi'], ['siavgtby']] k: 3963 len: <class 'list'> Data: ['need', 'new', 'working', 'mouse', 'need', 'new', 'working', 'mouse', 'tkhaymqg', 'cwuqzyvm'] processed_text: ['need', 'new', 'working', 'mouse', 'need', 'new', 'working', 'mouse', 'tkhaymqg', 'cwuqzyvm'] list_processed_text: [['need'], ['new'], ['working'], ['mouse'], ['need'], ['new'], ['working'], ['mouse'], ['tkhaymqg'], ['cwuqzyvm']] k: 3964 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'due', 'crm', 'unable', 'load', 'outlook', 'due', 'crm'] processed_text: ['unable', 'load', 'outlook', 'due', 'crm', 'unable', 'load', 'outlook', 'due', 'crm'] list_processed_text: [['unable'], ['load'], ['outlook'], ['due'], ['crm'], ['unable'], ['load'], ['outlook'], ['due'], ['crm']] k: 3965 len: <class 'list'> Data: ['smart', 'phone', 'issue', 'iphone', 'reduced', 'ear', 'speaker', 'speaking', 'individual', 'hear', 'volume', 'faint', 'must', 'use', 'speaker', 'phone', 'make', 'call', 'non', 'secure', 'phone', 'repaired', 'replace'] processed_text: ['smart', 'phone', 'issue', 'iphone', 'reduced', 'ear', 'speaker', 'speaking', 'individual', 'hear', 'volume', 'faint', 'must', 'use', 'speaker', 'phone', 'make', 'call', 'non', 'secure', 'phone', 'repaired', 'replace'] list_processed_text: [['smart'], ['phone'], ['issue'], ['iphone'], ['reduced'], ['ear'], ['speaker'], ['speaking'], ['individual'], ['hear'], ['volume'], ['faint'], ['must'], ['use'], ['speaker'], ['phone'], ['make'], ['call'], ['non'], ['secure'], ['phone'], ['repaired'], ['replace']] k: 3966 len: <class 'list'> Data: ['registration', 'skype', 'alike', 'registration', 'skype', 'like', 'vzqomdgt', 'jwoqbuml'] processed_text: ['registration', 'skype', 'alike', 'registration', 'skype', 'like', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['registration'], ['skype'], ['alike'], ['registration'], ['skype'], ['like'], ['vzqomdgt'], ['jwoqbuml']] k: 3967 len: <class 'list'> Data: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'support', 'team', 'please', 'release', 'device', 'per', 'attached', 'form', 'employee', 'owned', 'mobile', 'device', 'corresponding', 'form', 'attached', 'moment', 'using', 'outlook', 'app', 'hello', 'joftgost', 'please', 'approve', 'form', 'return', 'mail'] processed_text: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'support', 'team', 'please', 'release', 'device', 'per', 'attached', 'form', 'employee', 'owned', 'mobile', 'device', 'corresponding', 'form', 'attached', 'moment', 'using', 'outlook', 'app', 'hello', 'joftgost', 'please', 'approve', 'form', 'return', 'mail'] list_processed_text: [['employee'], ['owned'], ['mobility'], ['agreement'], ['hello'], ['support'], ['team'], ['please'], ['release'], ['device'], ['per'], ['attached'], ['form'], ['employee'], ['owned'], ['mobile'], ['device'], ['corresponding'], ['form'], ['attached'], ['moment'], ['using'], ['outlook'], ['app'], ['hello'], ['joftgost'], ['please'], ['approve'], ['form'], ['return'], ['mail']] k: 3968 len: <class 'list'> Data: ['response', 'caller', 'response', 'caller'] processed_text: ['response', 'caller', 'response', 'caller'] list_processed_text: [['response'], ['caller'], ['response'], ['caller']] k: 3969 len: <class 'list'> Data: ['need', 'know', 'member', 'lhqftphfm', 'need', 'know', 'member', 'lhqftphfm', 'could', 'please', 'provide', 'excel', 'file', 'format'] processed_text: ['need', 'know', 'member', 'lhqftphfm', 'need', 'know', 'member', 'lhqftphfm', 'could', 'please', 'provide', 'excel', 'file', 'format'] list_processed_text: [['need'], ['know'], ['member'], ['lhqftphfm'], ['need'], ['know'], ['member'], ['lhqftphfm'], ['could'], ['please'], ['provide'], ['excel'], ['file'], ['format']] k: 3970 len: <class 'list'> Data: ['account', 'locked', 'bex', 'account', 'locked', 'bex'] processed_text: ['account', 'locked', 'bex', 'account', 'locked', 'bex'] list_processed_text: [['account'], ['locked'], ['bex'], ['account'], ['locked'], ['bex']] k: 3971 len: <class 'list'> Data: ['outlook', 'working', 'updated', 'sp', 'nothing', 'outlook', 'working', 'updated', 'sp', 'nothing'] processed_text: ['outlook', 'working', 'updated', 'sp', 'nothing', 'outlook', 'working', 'updated', 'sp', 'nothing'] list_processed_text: [['outlook'], ['working'], ['updated'], ['sp'], ['nothing'], ['outlook'], ['working'], ['updated'], ['sp'], ['nothing']] k: 3972 len: <class 'list'> Data: ['please', 'setup', 'printer', 'dg', 'dg', 'hostname', 'print', 'driver', 'please', 'setup', 'printer', 'dg', 'dg', 'hostname', 'print', 'driver'] processed_text: ['please', 'setup', 'printer', 'dg', 'dg', 'hostname', 'print', 'driver', 'please', 'setup', 'printer', 'dg', 'dg', 'hostname', 'print', 'driver'] list_processed_text: [['please'], ['setup'], ['printer'], ['dg'], ['dg'], ['hostname'], ['print'], ['driver'], ['please'], ['setup'], ['printer'], ['dg'], ['dg'], ['hostname'], ['print'], ['driver']] k: 3973 len: <class 'list'> Data: ['printer', 'update', 'driver', 'cannot', 'print', 'status', 'printer', 'mapped', 'need', 'driver', 'update', 'however', 'try', 'update', 'driver', 'update', 'quits', 'half', 'way', 'installation'] processed_text: ['printer', 'update', 'driver', 'cannot', 'print', 'status', 'printer', 'mapped', 'need', 'driver', 'update', 'however', 'try', 'update', 'driver', 'update', 'quits', 'half', 'way', 'installation'] list_processed_text: [['printer'], ['update'], ['driver'], ['cannot'], ['print'], ['status'], ['printer'], ['mapped'], ['need'], ['driver'], ['update'], ['however'], ['try'], ['update'], ['driver'], ['update'], ['quits'], ['half'], ['way'], ['installation']] k: 3974 len: <class 'list'> Data: ['printer', 'problem', 'reroute', 'issue', 'information', 'hi', 'team', 'could', 'please', 'route', 'file', 'print', 'pa', 'hp', 'ip', 'plant', 'hp', 'note', 'pa', 'problem', 'hardware', 'doubt', 'please', 'contact'] processed_text: ['printer', 'problem', 'reroute', 'issue', 'information', 'hi', 'team', 'could', 'please', 'route', 'file', 'print', 'pa', 'hp', 'ip', 'plant', 'hp', 'note', 'pa', 'problem', 'hardware', 'doubt', 'please', 'contact'] list_processed_text: [['printer'], ['problem'], ['reroute'], ['issue'], ['information'], ['hi'], ['team'], ['could'], ['please'], ['route'], ['file'], ['print'], ['pa'], ['hp'], ['ip'], ['plant'], ['hp'], ['note'], ['pa'], ['problem'], ['hardware'], ['doubt'], ['please'], ['contact']] k: 3975 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 3976 len: <class 'list'> Data: ['toner', 'cartridge', 'em', 'germany', 'please', 'send', 'toner', 'u', 'replace', 'kindly', 'gru', 'best'] processed_text: ['toner', 'cartridge', 'em', 'germany', 'please', 'send', 'toner', 'u', 'replace', 'kindly', 'gru', 'best'] list_processed_text: [['toner'], ['cartridge'], ['em'], ['germany'], ['please'], ['send'], ['toner'], ['u'], ['replace'], ['kindly'], ['gru'], ['best']] k: 3977 len: <class 'list'> Data: ['please', 'set', 'guest', 'wifi', 'catering', 'one', 'year', 'please', 'set', 'guest', 'wifi', 'catering', 'one', 'year'] processed_text: ['please', 'set', 'guest', 'wifi', 'catering', 'one', 'year', 'please', 'set', 'guest', 'wifi', 'catering', 'one', 'year'] list_processed_text: [['please'], ['set'], ['guest'], ['wifi'], ['catering'], ['one'], ['year'], ['please'], ['set'], ['guest'], ['wifi'], ['catering'], ['one'], ['year']] k: 3978 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 3979 len: <class 'list'> Data: ['password', 'management', 'tool', 'account', 'unlock', 'password', 'management', 'tool', 'account', 'unlock'] processed_text: ['password', 'management', 'tool', 'account', 'unlock', 'password', 'management', 'tool', 'account', 'unlock'] list_processed_text: [['password'], ['management'], ['tool'], ['account'], ['unlock'], ['password'], ['management'], ['tool'], ['account'], ['unlock']] k: 3980 len: <class 'list'> Data: ['job', 'job', 'dr', 'failed', 'job', 'scheduler', 'job', 'job', 'dr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'dr', 'failed', 'job', 'scheduler', 'job', 'job', 'dr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['dr'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['dr'], ['failed'], ['job'], ['scheduler']] k: 3981 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3982 len: <class 'list'> Data: ['unable', 'received', 'incoming', 'email', 'hi', 'team', 'kindly', 'please', 'assist', 'user', 'kassiaryu', 'unable', 'received', 'incoming', 'email', 'pc', 'name', 'aswl', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['unable', 'received', 'incoming', 'email', 'hi', 'team', 'kindly', 'please', 'assist', 'user', 'kassiaryu', 'unable', 'received', 'incoming', 'email', 'pc', 'name', 'aswl', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['unable'], ['received'], ['incoming'], ['email'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['user'], ['kassiaryu'], ['unable'], ['received'], ['incoming'], ['email'], ['pc'], ['name'], ['aswl'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 3983 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mahapthysk', 'ngyht', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'authorization', 'open', 'employee', 'idoc', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mahapthysk', 'ngyht', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'authorization', 'open', 'employee', 'idoc', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['mahapthysk'], ['ngyht'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['authorization'], ['open'], ['employee'], ['idoc'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 3984 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 3985 len: <class 'list'> Data: ['unable', 'loginto', 'skype', 'unable', 'loginto', 'skype'] processed_text: ['unable', 'loginto', 'skype', 'unable', 'loginto', 'skype'] list_processed_text: [['unable'], ['loginto'], ['skype'], ['unable'], ['loginto'], ['skype']] k: 3986 len: <class 'list'> Data: ['need', 'assistance', 'cannot', 'login', 'engineering', 'tool', 'web', 'application', 'password', 'change', 'need', 'assistance', 'cannot', 'login', 'engineering', 'tool', 'web', 'application', 'password', 'change'] processed_text: ['need', 'assistance', 'cannot', 'login', 'engineering', 'tool', 'web', 'application', 'password', 'change', 'need', 'assistance', 'cannot', 'login', 'engineering', 'tool', 'web', 'application', 'password', 'change'] list_processed_text: [['need'], ['assistance'], ['cannot'], ['login'], ['engineering'], ['tool'], ['web'], ['application'], ['password'], ['change'], ['need'], ['assistance'], ['cannot'], ['login'], ['engineering'], ['tool'], ['web'], ['application'], ['password'], ['change']] k: 3987 len: <class 'list'> Data: ['add', 'user', 'maghtyion', 'cnjkeko', 'cekomthyr', 'active', 'directory', 'group', 'eagcutview', 'add', 'user', 'maghtyion', 'cnjkeko', 'cekomthyr', 'active', 'directory', 'group', 'eagcutview'] processed_text: ['add', 'user', 'maghtyion', 'cnjkeko', 'cekomthyr', 'active', 'directory', 'group', 'eagcutview', 'add', 'user', 'maghtyion', 'cnjkeko', 'cekomthyr', 'active', 'directory', 'group', 'eagcutview'] list_processed_text: [['add'], ['user'], ['maghtyion'], ['cnjkeko'], ['cekomthyr'], ['active'], ['directory'], ['group'], ['eagcutview'], ['add'], ['user'], ['maghtyion'], ['cnjkeko'], ['cekomthyr'], ['active'], ['directory'], ['group'], ['eagcutview']] k: 3988 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3989 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3990 len: <class 'list'> Data: ['problem', 'running', 'multiple', 'network', 'application', 'slow', 'hi', 'manjgtiry'] processed_text: ['problem', 'running', 'multiple', 'network', 'application', 'slow', 'hi', 'manjgtiry'] list_processed_text: [['problem'], ['running'], ['multiple'], ['network'], ['application'], ['slow'], ['hi'], ['manjgtiry']] k: 3991 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3992 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3993 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 3994 len: <class 'list'> Data: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'urgent', 'plant', 'something', 'error', 'unable', 'create'] processed_text: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'urgent', 'plant', 'something', 'error', 'unable', 'create'] list_processed_text: [['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['dear'], ['would'], ['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['urgent'], ['plant'], ['something'], ['error'], ['unable'], ['create']] k: 3995 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsid', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'aborting', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsid', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'aborting', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['critical'], ['lhqsid'], ['company'], ['company'], ['com'], ['time'], ['ipc'], ['failure'], ['reading'], ['net'], ['message'], ['ipc'], ['read'], ['error'], ['system'], ['error'], ['connection'], ['reset'], ['peer'], ['aborting'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 3996 len: <class 'list'> Data: ['cannot', 'create', 'engineering', 'tool', 'task', 'er', 'cannot', 'create', 'engineering', 'tool', 'task', 'er', 'please', 'help', 'deal', 'problem', 'contact'] processed_text: ['cannot', 'create', 'engineering', 'tool', 'task', 'er', 'cannot', 'create', 'engineering', 'tool', 'task', 'er', 'please', 'help', 'deal', 'problem', 'contact'] list_processed_text: [['cannot'], ['create'], ['engineering'], ['tool'], ['task'], ['er'], ['cannot'], ['create'], ['engineering'], ['tool'], ['task'], ['er'], ['please'], ['help'], ['deal'], ['problem'], ['contact']] k: 3997 len: <class 'list'> Data: ['erp', 'system', 'slow', 'plant', 'erp', 'system', 'slow', 'plant', 'erp', 'user', 'plant'] processed_text: ['erp', 'system', 'slow', 'plant', 'erp', 'system', 'slow', 'plant', 'erp', 'user', 'plant'] list_processed_text: [['erp'], ['system'], ['slow'], ['plant'], ['erp'], ['system'], ['slow'], ['plant'], ['erp'], ['user'], ['plant']] k: 3998 len: <class 'list'> Data: ['vip', 'access', 'company', 'guest', 'hello', 'please', 'usa', 'following', 'consultant', 'attendance', 'tool', 'access', 'company', 'guest', 'week', 'roshyario', 'mcfaullfhry', 'sarhfa', 'ssofgrtymerset', 'josefghph', 'hughdthes', 'jofgyst', 'langytge', 'please', 'confirm', 'done', 'many'] processed_text: ['vip', 'access', 'company', 'guest', 'hello', 'please', 'usa', 'following', 'consultant', 'attendance', 'tool', 'access', 'company', 'guest', 'week', 'roshyario', 'mcfaullfhry', 'sarhfa', 'ssofgrtymerset', 'josefghph', 'hughdthes', 'jofgyst', 'langytge', 'please', 'confirm', 'done', 'many'] list_processed_text: [['vip'], ['access'], ['company'], ['guest'], ['hello'], ['please'], ['usa'], ['following'], ['consultant'], ['attendance'], ['tool'], ['access'], ['company'], ['guest'], ['week'], ['roshyario'], ['mcfaullfhry'], ['sarhfa'], ['ssofgrtymerset'], ['josefghph'], ['hughdthes'], ['jofgyst'], ['langytge'], ['please'], ['confirm'], ['done'], ['many']] k: 3999 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['determine'], ['network'], ['problem'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['one'], ['transaction'], ['impacted'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['application'], ['running'], ['slow'], ['access'], ['data'], ['file'], ['server'], ['comment'], ['issue'], ['system']] k: 4000 len: <class 'list'> Data: ['laptop', 'speaker', 'working', 'mic', 'working', 'skype', 'concall', 'head', 'set', 'input', 'jack', 'longer', 'ask', 'question', 'plug'] processed_text: ['laptop', 'speaker', 'working', 'mic', 'working', 'skype', 'concall', 'head', 'set', 'input', 'jack', 'longer', 'ask', 'question', 'plug'] list_processed_text: [['laptop'], ['speaker'], ['working'], ['mic'], ['working'], ['skype'], ['concall'], ['head'], ['set'], ['input'], ['jack'], ['longer'], ['ask'], ['question'], ['plug']] k: 4001 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 4002 len: <class 'list'> Data: ['infotype', 'deleted', 'huge', 'number', 'traveler', 'germany', 'sid', 'facing', 'huge', 'issue', 'german', 'traveler', 'cannot', 'enter', 'expense', 'erp', 'sid', 'infotype', 'exist', 'create', 'manually', 'relly', 'time', 'consuming', 'even', 'know', 'contact', 'error', 'come', 'happened', 'infotype', 'deleted', 'created', 'automatically', 'somehow'] processed_text: ['infotype', 'deleted', 'huge', 'number', 'traveler', 'germany', 'sid', 'facing', 'huge', 'issue', 'german', 'traveler', 'cannot', 'enter', 'expense', 'erp', 'sid', 'infotype', 'exist', 'create', 'manually', 'relly', 'time', 'consuming', 'even', 'know', 'contact', 'error', 'come', 'happened', 'infotype', 'deleted', 'created', 'automatically', 'somehow'] list_processed_text: [['infotype'], ['deleted'], ['huge'], ['number'], ['traveler'], ['germany'], ['sid'], ['facing'], ['huge'], ['issue'], ['german'], ['traveler'], ['cannot'], ['enter'], ['expense'], ['erp'], ['sid'], ['infotype'], ['exist'], ['create'], ['manually'], ['relly'], ['time'], ['consuming'], ['even'], ['know'], ['contact'], ['error'], ['come'], ['happened'], ['infotype'], ['deleted'], ['created'], ['automatically'], ['somehow']] k: 4003 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4004 len: <class 'list'> Data: ['apusm', 'volume', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available', 'apusm', 'volume', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available'] processed_text: ['apusm', 'volume', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available', 'apusm', 'volume', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available'] list_processed_text: [['apusm'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['space'], ['consumed'], ['space'], ['available'], ['apusm'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['space'], ['consumed'], ['space'], ['available']] k: 4005 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['determine'], ['network'], ['problem'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['one'], ['transaction'], ['impacted'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['application'], ['running'], ['slow'], ['access'], ['data'], ['file'], ['server'], ['comment'], ['issue'], ['system']] k: 4006 len: <class 'list'> Data: ['connection', 'finance', 'app', 'data', 'base', 'hello', 'receive', 'following', 'error', 'message', 'try', 'open', 'finance', 'app', 'plant', 'monthly', 'book', 'could', 'please', 'check', 'mit', 'freundlichen', 'gr', 'ssen', 'kind'] processed_text: ['connection', 'finance', 'app', 'data', 'base', 'hello', 'receive', 'following', 'error', 'message', 'try', 'open', 'finance', 'app', 'plant', 'monthly', 'book', 'could', 'please', 'check', 'mit', 'freundlichen', 'gr', 'ssen', 'kind'] list_processed_text: [['connection'], ['finance'], ['app'], ['data'], ['base'], ['hello'], ['receive'], ['following'], ['error'], ['message'], ['try'], ['open'], ['finance'], ['app'], ['plant'], ['monthly'], ['book'], ['could'], ['please'], ['check'], ['mit'], ['freundlichen'], ['gr'], ['ssen'], ['kind']] k: 4007 len: <class 'list'> Data: ['accout', 'locked', 'accout', 'locked'] processed_text: ['accout', 'locked', 'accout', 'locked'] list_processed_text: [['accout'], ['locked'], ['accout'], ['locked']] k: 4008 len: <class 'list'> Data: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] processed_text: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] list_processed_text: [['outlook'], ['prompting'], ['password'], ['outlook'], ['prompting'], ['password']] k: 4009 len: <class 'list'> Data: ['erp', 'sid', 'sid', 'working', 'erp', 'sid', 'sid', 'working'] processed_text: ['erp', 'sid', 'sid', 'working', 'erp', 'sid', 'sid', 'working'] list_processed_text: [['erp'], ['sid'], ['sid'], ['working'], ['erp'], ['sid'], ['sid'], ['working']] k: 4010 len: <class 'list'> Data: ['need', 'erp', 'access', 'stated', 'role', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'gthydanp', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'need', 'access', 'stated', 'role', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'manjuvghy'] processed_text: ['need', 'erp', 'access', 'stated', 'role', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'gthydanp', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'need', 'access', 'stated', 'role', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'manjuvghy'] list_processed_text: [['need'], ['erp'], ['access'], ['stated'], ['role'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['gthydanp'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['need'], ['access'], ['stated'], ['role'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user'], ['manjuvghy']] k: 4011 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'hallo', 'last', 'week', 'setup', 'collaboration', 'platform', 'start', 'shatryung', 'collaboration', 'platform', 'recognize', 'owner', 'make', 'action', 'today', 'started', 'collaboration', 'platform', 'telling', 'connect', 'server', 'vpn', 'connection', 'established', 'hope', 'help', 'fixing', 'issue', 'met', 'vriendelijke', 'groet', 'lwizucan', 'zvnxlobq', 'directeur', 'company', 'benelthyux', 'company', 'nederland', 'bv', 'wim', 'duisenbergplantsoen', 'se', 'maastricht', 'www', 'company', 'com', 'company', 'nederland', 'bv', 'postbus', 'az', 'maastricht'] processed_text: ['collaboration', 'platform', 'issue', 'hallo', 'last', 'week', 'setup', 'collaboration', 'platform', 'start', 'shatryung', 'collaboration', 'platform', 'recognize', 'owner', 'make', 'action', 'today', 'started', 'collaboration', 'platform', 'telling', 'connect', 'server', 'vpn', 'connection', 'established', 'hope', 'help', 'fixing', 'issue', 'met', 'vriendelijke', 'groet', 'lwizucan', 'zvnxlobq', 'directeur', 'company', 'benelthyux', 'company', 'nederland', 'bv', 'wim', 'duisenbergplantsoen', 'se', 'maastricht', 'www', 'company', 'com', 'company', 'nederland', 'bv', 'postbus', 'az', 'maastricht'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['hallo'], ['last'], ['week'], ['setup'], ['collaboration'], ['platform'], ['start'], ['shatryung'], ['collaboration'], ['platform'], ['recognize'], ['owner'], ['make'], ['action'], ['today'], ['started'], ['collaboration'], ['platform'], ['telling'], ['connect'], ['server'], ['vpn'], ['connection'], ['established'], ['hope'], ['help'], ['fixing'], ['issue'], ['met'], ['vriendelijke'], ['groet'], ['lwizucan'], ['zvnxlobq'], ['directeur'], ['company'], ['benelthyux'], ['company'], ['nederland'], ['bv'], ['wim'], ['duisenbergplantsoen'], ['se'], ['maastricht'], ['www'], ['company'], ['com'], ['company'], ['nederland'], ['bv'], ['postbus'], ['az'], ['maastricht']] k: 4012 len: <class 'list'> Data: ['computer', 'unable', 'connection', 'company', 'network', 'computer', 'unable', 'connection', 'company', 'network', 'pc', 'got', 'ip', 'address'] processed_text: ['computer', 'unable', 'connection', 'company', 'network', 'computer', 'unable', 'connection', 'company', 'network', 'pc', 'got', 'ip', 'address'] list_processed_text: [['computer'], ['unable'], ['connection'], ['company'], ['network'], ['computer'], ['unable'], ['connection'], ['company'], ['network'], ['pc'], ['got'], ['ip'], ['address']] k: 4013 len: <class 'list'> Data: ['employee', 'schrenfgker', 'heinrifgtch', 'pn', 'need', 'access', 'powder', 'control', 'desk', 'read', 'enter', 'employee', 'schrenfgker', 'heinrifgtch', 'pn', 'need', 'access', 'powder', 'control', 'desk', 'read', 'enter'] processed_text: ['employee', 'schrenfgker', 'heinrifgtch', 'pn', 'need', 'access', 'powder', 'control', 'desk', 'read', 'enter', 'employee', 'schrenfgker', 'heinrifgtch', 'pn', 'need', 'access', 'powder', 'control', 'desk', 'read', 'enter'] list_processed_text: [['employee'], ['schrenfgker'], ['heinrifgtch'], ['pn'], ['need'], ['access'], ['powder'], ['control'], ['desk'], ['read'], ['enter'], ['employee'], ['schrenfgker'], ['heinrifgtch'], ['pn'], ['need'], ['access'], ['powder'], ['control'], ['desk'], ['read'], ['enter']] k: 4014 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 4015 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 4016 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 4017 len: <class 'list'> Data: ['later', 'recall', 'stock', 'create', 'form', 'hello', 'warm'] processed_text: ['later', 'recall', 'stock', 'create', 'form', 'hello', 'warm'] list_processed_text: [['later'], ['recall'], ['stock'], ['create'], ['form'], ['hello'], ['warm']] k: 4018 len: <class 'list'> Data: ['eeml', 'wlan', 'cannot', 'deactivated', 'pressing', 'button', 'eeml', 'wlan', 'cannot', 'deactivated', 'push', 'button', 'xvwchsdg', 'pladjmxt', 'informed,', 'please', 'keep', 'ear', 'praised'] processed_text: ['eeml', 'wlan', 'cannot', 'deactivated', 'pressing', 'button', 'eeml', 'wlan', 'cannot', 'deactivated', 'push', 'button', 'xvwchsdg', 'pladjmxt', 'informed,', 'please', 'keep', 'ear', 'praised'] list_processed_text: [['eeml'], ['wlan'], ['cannot'], ['deactivated'], ['pressing'], ['button'], ['eeml'], ['wlan'], ['cannot'], ['deactivated'], ['push'], ['button'], ['xvwchsdg'], ['pladjmxt'], ['informed,'], ['please'], ['keep'], ['ear'], ['praised']] k: 4019 len: <class 'list'> Data: ['atp', 'getting', 'committed', 'sid', 'hi', 'please', 'note', 'atp', 'getting', 'committed', 'sid', 'screen', 'shot', 'error', 'msg', 'given'] processed_text: ['atp', 'getting', 'committed', 'sid', 'hi', 'please', 'note', 'atp', 'getting', 'committed', 'sid', 'screen', 'shot', 'error', 'msg', 'given'] list_processed_text: [['atp'], ['getting'], ['committed'], ['sid'], ['hi'], ['please'], ['note'], ['atp'], ['getting'], ['committed'], ['sid'], ['screen'], ['shot'], ['error'], ['msg'], ['given']] k: 4020 len: <class 'list'> Data: ['vpn', 'vpn'] processed_text: ['vpn', 'vpn'] list_processed_text: [['vpn'], ['vpn']] k: 4021 len: <class 'list'> Data: ['change', 'password', 'outllok', 'name', 'srinfhyath', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'change', 'password', 'outllok'] processed_text: ['change', 'password', 'outllok', 'name', 'srinfhyath', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'change', 'password', 'outllok'] list_processed_text: [['change'], ['password'], ['outllok'], ['name'], ['srinfhyath'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['change'], ['password'], ['outllok']] k: 4022 len: <class 'list'> Data: ['time', 'card', 'automatically', 'generating', 'time', 'card', 'automatically', 'generating'] processed_text: ['time', 'card', 'automatically', 'generating', 'time', 'card', 'automatically', 'generating'] list_processed_text: [['time'], ['card'], ['automatically'], ['generating'], ['time'], ['card'], ['automatically'], ['generating']] k: 4023 len: <class 'list'> Data: ['vvdgtyachac', 'hi', 'mentioned', 'apprentice', 'unable', 'login', 'desktop', 'please', 'reset', 'password', 'emp', 'name', 'useid', 'cheghthan', 'achghar', 'vvdgtyachac'] processed_text: ['vvdgtyachac', 'hi', 'mentioned', 'apprentice', 'unable', 'login', 'desktop', 'please', 'reset', 'password', 'emp', 'name', 'useid', 'cheghthan', 'achghar', 'vvdgtyachac'] list_processed_text: [['vvdgtyachac'], ['hi'], ['mentioned'], ['apprentice'], ['unable'], ['login'], ['desktop'], ['please'], ['reset'], ['password'], ['emp'], ['name'], ['useid'], ['cheghthan'], ['achghar'], ['vvdgtyachac']] k: 4024 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 4025 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4026 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4027 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4028 len: <class 'list'> Data: ['reset', 'password', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'sid', 'password', 'user', 'kassia', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['reset', 'password', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'sid', 'password', 'user', 'kassia', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['reset'], ['password'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['reset'], ['sid'], ['password'], ['user'], ['kassia'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 4029 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 4030 len: <class 'list'> Data: ['connect', 'mobile', 'hotspot', 'connect', 'mobile', 'hotspot'] processed_text: ['connect', 'mobile', 'hotspot', 'connect', 'mobile', 'hotspot'] list_processed_text: [['connect'], ['mobile'], ['hotspot'], ['connect'], ['mobile'], ['hotspot']] k: 4031 len: <class 'list'> Data: ['ie', 'ie'] processed_text: ['ie', 'ie'] list_processed_text: [['ie'], ['ie']] k: 4032 len: <class 'list'> Data: ['reset', 'password', 'jerydwbn', 'gdylnaue', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'jerydwbn', 'gdylnaue', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['jerydwbn'], ['gdylnaue'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4033 len: <class 'list'> Data: ['unable', 'login', 'microsoft', 'account', 'need', 'password', 'unable', 'login', 'microsoft', 'account', 'need', 'password'] processed_text: ['unable', 'login', 'microsoft', 'account', 'need', 'password', 'unable', 'login', 'microsoft', 'account', 'need', 'password'] list_processed_text: [['unable'], ['login'], ['microsoft'], ['account'], ['need'], ['password'], ['unable'], ['login'], ['microsoft'], ['account'], ['need'], ['password']] k: 4034 len: <class 'list'> Data: ['inquiry', 'erp', 'availability', 'inquiry', 'erp', 'availability'] processed_text: ['inquiry', 'erp', 'availability', 'inquiry', 'erp', 'availability'] list_processed_text: [['inquiry'], ['erp'], ['availability'], ['inquiry'], ['erp'], ['availability']] k: 4035 len: <class 'list'> Data: ['lhqsid', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'oraarch', 'server', 'lhqsid', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['lhqsid', 'space', 'consumed', 'space', 'available', 'g', 'volume', 'label', 'oraarch', 'server', 'lhqsid', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['lhqsid'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['volume'], ['label'], ['oraarch'], ['server'], ['lhqsid'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4036 len: <class 'list'> Data: ['circuit', 'outage', 'mbps', 'internet', 'link', 'telecom', 'vendor', 'circuit', 'id', 'company', 'ap', 'ind', 'india', 'dmvpn', 'rtr', 'company', 'com', 'since', 'pm', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'primary', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'mbps', 'internet', 'link', 'telecom', 'vendor', 'circuit', 'id', 'company', 'ap', 'ind', 'india', 'dmvpn', 'rtr', 'company', 'com', 'since', 'pm', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'primary', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['mbps'], ['internet'], ['link'], ['telecom'], ['vendor'], ['circuit'], ['id'], ['company'], ['ap'], ['ind'], ['india'], ['dmvpn'], ['rtr'], ['company'], ['com'], ['since'], ['pm'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['primary'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4037 len: <class 'list'> Data: ['unable', 'login', 'system', 'unable', 'login', 'system'] processed_text: ['unable', 'login', 'system', 'unable', 'login', 'system'] list_processed_text: [['unable'], ['login'], ['system'], ['unable'], ['login'], ['system']] k: 4038 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4039 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'csqe', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'csqe', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'csqe', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'csqe', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['csqe'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['csqe'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 4040 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4041 len: <class 'list'> Data: ['erp', 'password', 'block', 'dear', 'sir', 'erp', 'password', 'blocked', 'request', 'kindly', 'set', 'password', 'employee', 'code', 'login', 'id', 'achghyardr'] processed_text: ['erp', 'password', 'block', 'dear', 'sir', 'erp', 'password', 'blocked', 'request', 'kindly', 'set', 'password', 'employee', 'code', 'login', 'id', 'achghyardr'] list_processed_text: [['erp'], ['password'], ['block'], ['dear'], ['sir'], ['erp'], ['password'], ['blocked'], ['request'], ['kindly'], ['set'], ['password'], ['employee'], ['code'], ['login'], ['id'], ['achghyardr']] k: 4042 len: <class 'list'> Data: ['reset', 'password', 'dmexgspl', 'mruzqhac', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'dmexgspl', 'mruzqhac', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['dmexgspl'], ['mruzqhac'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4043 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 4044 len: <class 'list'> Data: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] processed_text: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] list_processed_text: [['skype'], ['personal'], ['certificate'], ['issue'], ['skype'], ['personal'], ['certificate'], ['issue']] k: 4045 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4046 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4047 len: <class 'list'> Data: ['use', 'outlook', 'group', 'best'] processed_text: ['use', 'outlook', 'group', 'best'] list_processed_text: [['use'], ['outlook'], ['group'], ['best']] k: 4048 len: <class 'list'> Data: ['abend', 'batch', 'job', 'job', 'job', 'name', 'job'] processed_text: ['abend', 'batch', 'job', 'job', 'job', 'name', 'job'] list_processed_text: [['abend'], ['batch'], ['job'], ['job'], ['job'], ['name'], ['job']] k: 4049 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4050 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4051 len: <class 'list'> Data: ['ooo', 'engineering', 'tool', 'hello', 'aszam', 'opoty', 'engineering', 'tool', 'em', 'cannot', 'done', 'synchronization', 'report', 'etc', 'best'] processed_text: ['ooo', 'engineering', 'tool', 'hello', 'aszam', 'opoty', 'engineering', 'tool', 'em', 'cannot', 'done', 'synchronization', 'report', 'etc', 'best'] list_processed_text: [['ooo'], ['engineering'], ['tool'], ['hello'], ['aszam'], ['opoty'], ['engineering'], ['tool'], ['em'], ['cannot'], ['done'], ['synchronization'], ['report'], ['etc'], ['best']] k: 4052 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'password', 'reset', 'erp', 'sid', 'account', 'locked', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'locked', 'password', 'reset', 'erp', 'sid', 'account', 'locked', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['locked'], ['password'], ['reset']] k: 4053 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4054 len: <class 'list'> Data: ['power', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['south'], ['amerirtca'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4055 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4056 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4057 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 4058 len: <class 'list'> Data: ['skype', 'login', 'issue', 'personal', 'certificate', 'issue', 'summary', 'skype', 'business', 'cannot', 'login', 'error', 'message', 'problem', 'acquiring', 'personal', 'certificate', 'required', 'sign', 'please', 'help', 'solve'] processed_text: ['skype', 'login', 'issue', 'personal', 'certificate', 'issue', 'summary', 'skype', 'business', 'cannot', 'login', 'error', 'message', 'problem', 'acquiring', 'personal', 'certificate', 'required', 'sign', 'please', 'help', 'solve'] list_processed_text: [['skype'], ['login'], ['issue'], ['personal'], ['certificate'], ['issue'], ['summary'], ['skype'], ['business'], ['cannot'], ['login'], ['error'], ['message'], ['problem'], ['acquiring'], ['personal'], ['certificate'], ['required'], ['sign'], ['please'], ['help'], ['solve']] k: 4059 len: <class 'list'> Data: ['apac', 'company', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et', 'apac', 'company', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'company', 'com', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et'] processed_text: ['apac', 'company', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et', 'apac', 'company', 'company', 'ap', 'chn', 'apac', 'shop', 'closet', 'access', 'sw', 'company', 'com', 'fastethernet', 'uplink', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'since', 'et'] list_processed_text: [['apac'], ['company'], ['fastethernet'], ['uplink'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['since'], ['et'], ['apac'], ['company'], ['company'], ['ap'], ['chn'], ['apac'], ['shop'], ['closet'], ['access'], ['sw'], ['company'], ['com'], ['fastethernet'], ['uplink'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['since'], ['et']] k: 4060 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4061 len: <class 'list'> Data: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler'], ['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler']] k: 4062 len: <class 'list'> Data: ['erp', 'running', 'slow', 'since', 'last', 'hour', 'israel', 'internet', 'working', 'fine', 'erp', 'running', 'slow', 'since', 'last', 'hour', 'internet', 'working', 'fine', 'transaction', 'running', 'slow', 'contact', 'erp', 'system', 'sid', 'transaction', 'checked', 'dac', 'team', 'issue', 'dac', 'team', 'checking', 'utilization', 'dac', 'confirmed', 'utilization', 'high', 'since', 'last', 'half', 'hour', 'calling', 'erp', 'basis', 'call', 'support', 'call', 'support'] processed_text: ['erp', 'running', 'slow', 'since', 'last', 'hour', 'israel', 'internet', 'working', 'fine', 'erp', 'running', 'slow', 'since', 'last', 'hour', 'internet', 'working', 'fine', 'transaction', 'running', 'slow', 'contact', 'erp', 'system', 'sid', 'transaction', 'checked', 'dac', 'team', 'issue', 'dac', 'team', 'checking', 'utilization', 'dac', 'confirmed', 'utilization', 'high', 'since', 'last', 'half', 'hour', 'calling', 'erp', 'basis', 'call', 'support', 'call', 'support'] list_processed_text: [['erp'], ['running'], ['slow'], ['since'], ['last'], ['hour'], ['israel'], ['internet'], ['working'], ['fine'], ['erp'], ['running'], ['slow'], ['since'], ['last'], ['hour'], ['internet'], ['working'], ['fine'], ['transaction'], ['running'], ['slow'], ['contact'], ['erp'], ['system'], ['sid'], ['transaction'], ['checked'], ['dac'], ['team'], ['issue'], ['dac'], ['team'], ['checking'], ['utilization'], ['dac'], ['confirmed'], ['utilization'], ['high'], ['since'], ['last'], ['half'], ['hour'], ['calling'], ['erp'], ['basis'], ['call'], ['support'], ['call'], ['support']] k: 4063 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4064 len: <class 'list'> Data: ['security', 'incident', 'sw', 'magento', 'sql', 'injection', 'source', 'ip', 'system', 'name', 'whqsm', 'reference', 'company', 'com', 'user', 'name', 'location', 'dmz', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'cve', 'alert', 'isensor', 'device', 'isensplant', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'dallas', 'usa', 'destined', 'port', 'tcp', 'usa', 'usa', 'occurred', 'indicates', 'external', 'host', 'possibly', 'source', 'attempting', 'discover', 'public', 'facing', 'server', 'including', 'vulnerable', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'sql', 'injection', 'vulnerability', 'described', 'cve', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'would', 'recommend', 'option', 'since', 'exploit', 'code', 'wild', 'merely', 'identifying', 'source', 'attack', 'useful', 'always', 'run', 'report', 'portal', 'identify', 'list', 'attacker', 'instead', 'would', 'recommend', 'auditing', 'environment', 'vulnerable', 'system', 'updating', 'necessary', 'completed', 'could', 'go', 'option', 'suppress', 'alerting', 'event', 'sincerely', 'ctoc', 'technical', 'detail', 'vulnerability', 'exists', 'magento', 'due', 'insufficient', 'input', 'validation', 'within', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'remote', 'attacker', 'could', 'exploit', 'vulnerability', 'conduct', 'sql', 'injection', 'attack', 'vulnerable', 'system', 'magento', 'eusa', 'platform', 'vulnerability', 'exists', 'magento', 'commstorage', 'product', 'edition', 'ce', 'version', 'version', 'version', 'version', 'version', 'version', 'magento', 'enterprise', 'edition', 'ee', 'version', 'prior', 'due', 'insufficient', 'input', 'validation', 'user', 'controllable', 'supplied', 'via', 'popularity', 'field', 'expr', 'paramdntyeter', 'popularity', 'popularity', 'paramdntyeter', 'set', 'properly', 'sanitized', 'illegal', 'malicious', 'content', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'prior', 'stored', 'fieldname', 'variable', 'used', 'sql', 'query', 'remote', 'administrator', 'could', 'leverage', 'issue', 'conduct', 'sql', 'injection', 'attack', 'injectncqulao', 'qauighdplicious', 'sql', 'code', 'affected', 'input', 'successful', 'exploitation', 'permit', 'attacker', 'manipulate', 'sql', 'query', 'execute', 'arbitrary', 'sql', 'command', 'underlying', 'database', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'dallas', 'usa', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'host', 'www', 'company', 'de', 'full', 'url', 'path', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xbedac', 'win', 'xe', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'ex', 'http', 'hostname', 'www', 'company', 'de', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'dd', 'e', 'f', 'ba', 'ae', 'dd', 'n', 'pyx', 'dac', 'f', 'kn', 'cb', 'ac', 'cc', 'f', 'j', 'apost', 'ad', 'ef', 'f', 'min', 'cm', 'wysiwyg', 'e', 'directive', 'index', 'e', 'f', 'http', 'host', 'eb', 'e', 'ce', 'www', 'company', 'da', 'af', 'ad', 'de', 'accept', 'fe', 'dc', 'content', 'length', 'fe', 'content', 'c', 'c', 'fe', 'ype', 'application', 'f', 'dd', 'x', 'www', 'form', 'urle', 'e', 'da', 'da', 'ncoded', 'filter', 'dc', 'cgwdwxhcmlevt', 'e', 'mcmtxtwjnbvchv', 'c', 'syxjpdhlbdgdptm', 'dc', 'mcgwdwxhcmlevt', 'sid', 'c', 'mawvszflehbyxt', 'e', 'wktttrvqgqfnbtfq', 'e', 'ef', 'gpsancnanonfvcb', 'aueftuyaienptkn', 'f', 'bvchnrduoqoqf', 'ukcbaufmvcasicd', 'eb', 'zwwzwsnkerplcb', 'fa', 'af', 'ec', 'dtdqvqojzonlcb', 'aufmvcapktttrux', 'fqqgqevyvfjbido', 'c', 'iebwchlehryysk', 'ca', 'c', 'grljptsbhzgpbl', 'cvyifdirvjfigv', 'c', 'dhjhieltiepvcb', 'df', 'f', 'ovuxmolouvsvcb', 'jtlrpigbhzgpbl', 'ee', 'cvyycaoygzpcnn', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'c', 'sycxgdxnlcmhbwv', 'e', 'glgbwyxnzdyzga', 'c', 'sygnyzwfzwrglgb', 'sbdudfrtglgbyzwx', 'e', 'vywrfywnsxzsywd', 'c', 'glgbpchyrpdmv', 'c', 'glgblehryywasyhj', 'e', 'wxrvavuycxgcnb', 'c', 'fdgrzwfyjlyxr', 'ca', 'lzfhdgapifzbtfv', 'fa', 'ee', 'fuyaojzpcnnbmf', 'tzscsjxhcruyw', 'ca', 'ljywncvjdxjpdhl', 'ea', 'abwfnzwbnvbw', 'de', 'cc', 'de', 'lcmnllmnvbscsjb', 'vbgljescsqfbbum', 'b', 'stkxkcksmcwwlde', 'c', 'sqevyvfjblevtew', 'ce', 'siepvygpkttjtln', 'fulqgsuutybgywr', 'b', 'tawfcmszwagkhb', 'hcmvudfpzcxcmv', 'c', 'e', 'lxxldmvslhnvcnr', 'ba', 'fbjkzxisupply', 'chainszv', 'cc', 'exbllhvzzxjfawq', 'cb', 'supply', 'chainszvuywlksb', 'b', 'wquxvrvmgkdesmiw', 'wlcdvjywouvmrun', 'ca', 'uihvzzxjfawqgrlj', 'c', 'ptsbhzgpblcv', 'yifdirvjfihvzzxj', 'uywlidgjbvbgl', 'jescplcdgaxjzdg', 'eb', 'ff', 'hbwunkts', 'dir', 'ective', 'etibgja', 'b', 'ybexblpufkbwlua', 'hrtbcyzxbvcnrfc', 'de', 'vhcmnoyawqgb', 'c', 'vchvpwdldenzd', 'ba', 'kzpbgvfq', 'andforw', 'arded', 'pcap', 'hex', 'event', 'shown', 'due', 'space', 'constraint', 'take', 'action', 'ticket', 'action'] processed_text: ['security', 'incident', 'sw', 'magento', 'sql', 'injection', 'source', 'ip', 'system', 'name', 'whqsm', 'reference', 'company', 'com', 'user', 'name', 'location', 'dmz', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'cve', 'alert', 'isensor', 'device', 'isensplant', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'dallas', 'usa', 'destined', 'port', 'tcp', 'usa', 'usa', 'occurred', 'indicates', 'external', 'host', 'possibly', 'source', 'attempting', 'discover', 'public', 'facing', 'server', 'including', 'vulnerable', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'sql', 'injection', 'vulnerability', 'described', 'cve', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'would', 'recommend', 'option', 'since', 'exploit', 'code', 'wild', 'merely', 'identifying', 'source', 'attack', 'useful', 'always', 'run', 'report', 'portal', 'identify', 'list', 'attacker', 'instead', 'would', 'recommend', 'auditing', 'environment', 'vulnerable', 'system', 'updating', 'necessary', 'completed', 'could', 'go', 'option', 'suppress', 'alerting', 'event', 'sincerely', 'ctoc', 'technical', 'detail', 'vulnerability', 'exists', 'magento', 'due', 'insufficient', 'input', 'validation', 'within', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'remote', 'attacker', 'could', 'exploit', 'vulnerability', 'conduct', 'sql', 'injection', 'attack', 'vulnerable', 'system', 'magento', 'eusa', 'platform', 'vulnerability', 'exists', 'magento', 'commstorage', 'product', 'edition', 'ce', 'version', 'version', 'version', 'version', 'version', 'version', 'magento', 'enterprise', 'edition', 'ee', 'version', 'prior', 'due', 'insufficient', 'input', 'validation', 'user', 'controllable', 'supplied', 'via', 'popularity', 'field', 'expr', 'paramdntyeter', 'popularity', 'popularity', 'paramdntyeter', 'set', 'properly', 'sanitized', 'illegal', 'malicious', 'content', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'prior', 'stored', 'fieldname', 'variable', 'used', 'sql', 'query', 'remote', 'administrator', 'could', 'leverage', 'issue', 'conduct', 'sql', 'injection', 'attack', 'injectncqulao', 'qauighdplicious', 'sql', 'code', 'affected', 'input', 'successful', 'exploitation', 'permit', 'attacker', 'manipulate', 'sql', 'query', 'execute', 'arbitrary', 'sql', 'command', 'underlying', 'database', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'dallas', 'usa', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'host', 'www', 'company', 'de', 'full', 'url', 'path', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xbedac', 'win', 'xe', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'ex', 'http', 'hostname', 'www', 'company', 'de', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'dd', 'e', 'f', 'ba', 'ae', 'dd', 'n', 'pyx', 'dac', 'f', 'kn', 'cb', 'ac', 'cc', 'f', 'j', 'apost', 'ad', 'ef', 'f', 'min', 'cm', 'wysiwyg', 'e', 'directive', 'index', 'e', 'f', 'http', 'host', 'eb', 'e', 'ce', 'www', 'company', 'da', 'af', 'ad', 'de', 'accept', 'fe', 'dc', 'content', 'length', 'fe', 'content', 'c', 'c', 'fe', 'ype', 'application', 'f', 'dd', 'x', 'www', 'form', 'urle', 'e', 'da', 'da', 'ncoded', 'filter', 'dc', 'cgwdwxhcmlevt', 'e', 'mcmtxtwjnbvchv', 'c', 'syxjpdhlbdgdptm', 'dc', 'mcgwdwxhcmlevt', 'sid', 'c', 'mawvszflehbyxt', 'e', 'wktttrvqgqfnbtfq', 'e', 'ef', 'gpsancnanonfvcb', 'aueftuyaienptkn', 'f', 'bvchnrduoqoqf', 'ukcbaufmvcasicd', 'eb', 'zwwzwsnkerplcb', 'fa', 'af', 'ec', 'dtdqvqojzonlcb', 'aufmvcapktttrux', 'fqqgqevyvfjbido', 'c', 'iebwchlehryysk', 'ca', 'c', 'grljptsbhzgpbl', 'cvyifdirvjfigv', 'c', 'dhjhieltiepvcb', 'df', 'f', 'ovuxmolouvsvcb', 'jtlrpigbhzgpbl', 'ee', 'cvyycaoygzpcnn', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'c', 'sycxgdxnlcmhbwv', 'e', 'glgbwyxnzdyzga', 'c', 'sygnyzwfzwrglgb', 'sbdudfrtglgbyzwx', 'e', 'vywrfywnsxzsywd', 'c', 'glgbpchyrpdmv', 'c', 'glgblehryywasyhj', 'e', 'wxrvavuycxgcnb', 'c', 'fdgrzwfyjlyxr', 'ca', 'lzfhdgapifzbtfv', 'fa', 'ee', 'fuyaojzpcnnbmf', 'tzscsjxhcruyw', 'ca', 'ljywncvjdxjpdhl', 'ea', 'abwfnzwbnvbw', 'de', 'cc', 'de', 'lcmnllmnvbscsjb', 'vbgljescsqfbbum', 'b', 'stkxkcksmcwwlde', 'c', 'sqevyvfjblevtew', 'ce', 'siepvygpkttjtln', 'fulqgsuutybgywr', 'b', 'tawfcmszwagkhb', 'hcmvudfpzcxcmv', 'c', 'e', 'lxxldmvslhnvcnr', 'ba', 'fbjkzxisupply', 'chainszv', 'cc', 'exbllhvzzxjfawq', 'cb', 'supply', 'chainszvuywlksb', 'b', 'wquxvrvmgkdesmiw', 'wlcdvjywouvmrun', 'ca', 'uihvzzxjfawqgrlj', 'c', 'ptsbhzgpblcv', 'yifdirvjfihvzzxj', 'uywlidgjbvbgl', 'jescplcdgaxjzdg', 'eb', 'ff', 'hbwunkts', 'dir', 'ective', 'etibgja', 'b', 'ybexblpufkbwlua', 'hrtbcyzxbvcnrfc', 'de', 'vhcmnoyawqgb', 'c', 'vchvpwdldenzd', 'ba', 'kzpbgvfq', 'andforw', 'arded', 'pcap', 'hex', 'event', 'shown', 'due', 'space', 'constraint', 'take', 'action', 'ticket', 'action'] list_processed_text: [['security'], ['incident'], ['sw'], ['magento'], ['sql'], ['injection'], ['source'], ['ip'], ['system'], ['name'], ['whqsm'], ['reference'], ['company'], ['com'], ['user'], ['name'], ['location'], ['dmz'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['ctoc'], ['received'], ['least'], ['occurrence'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['cve'], ['alert'], ['isensor'], ['device'], ['isensplant'], ['company'], ['com'], ['traffic'], ['blocked'], ['sourcing'], ['port'], ['tcp'], ['dallas'], ['usa'], ['destined'], ['port'], ['tcp'], ['usa'], ['usa'], ['occurred'], ['indicates'], ['external'], ['host'], ['possibly'], ['source'], ['attempting'], ['discover'], ['public'], ['facing'], ['server'], ['including'], ['vulnerable'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['sql'], ['injection'], ['vulnerability'], ['described'], ['cve'], ['ticket'], ['effectively'], ['serve'], ['master'], ['ticket'], ['related'], ['alert'], ['receive'], ['feedback'], ['handle'], ['event'], ['going'], ['forward'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['number'], ['option'], ['available'], ['handling'], ['future'], ['alert'], ['one'], ['autoresolve'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['likely'], ['best'], ['choice'], ['running'], ['application'], ['targeted'], ['ticket'], ['escalation'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['alert'], ['generate'], ['relatively'], ['large'], ['volume'], ['incident'], ['ticket'], ['full'], ['escalation'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['would'], ['recommend'], ['option'], ['since'], ['exploit'], ['code'], ['wild'], ['merely'], ['identifying'], ['source'], ['attack'], ['useful'], ['always'], ['run'], ['report'], ['portal'], ['identify'], ['list'], ['attacker'], ['instead'], ['would'], ['recommend'], ['auditing'], ['environment'], ['vulnerable'], ['system'], ['updating'], ['necessary'], ['completed'], ['could'], ['go'], ['option'], ['suppress'], ['alerting'], ['event'], ['sincerely'], ['ctoc'], ['technical'], ['detail'], ['vulnerability'], ['exists'], ['magento'], ['due'], ['insufficient'], ['input'], ['validation'], ['within'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['function'], ['remote'], ['attacker'], ['could'], ['exploit'], ['vulnerability'], ['conduct'], ['sql'], ['injection'], ['attack'], ['vulnerable'], ['system'], ['magento'], ['eusa'], ['platform'], ['vulnerability'], ['exists'], ['magento'], ['commstorage'], ['product'], ['edition'], ['ce'], ['version'], ['version'], ['version'], ['version'], ['version'], ['version'], ['magento'], ['enterprise'], ['edition'], ['ee'], ['version'], ['prior'], ['due'], ['insufficient'], ['input'], ['validation'], ['user'], ['controllable'], ['supplied'], ['via'], ['popularity'], ['field'], ['expr'], ['paramdntyeter'], ['popularity'], ['popularity'], ['paramdntyeter'], ['set'], ['properly'], ['sanitized'], ['illegal'], ['malicious'], ['content'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['function'], ['prior'], ['stored'], ['fieldname'], ['variable'], ['used'], ['sql'], ['query'], ['remote'], ['administrator'], ['could'], ['leverage'], ['issue'], ['conduct'], ['sql'], ['injection'], ['attack'], ['injectncqulao'], ['qauighdplicious'], ['sql'], ['code'], ['affected'], ['input'], ['successful'], ['exploitation'], ['permit'], ['attacker'], ['manipulate'], ['sql'], ['query'], ['execute'], ['arbitrary'], ['sql'], ['command'], ['underlying'], ['database'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['dallas'], ['usa'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['usa'], ['usa'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['host'], ['www'], ['company'], ['de'], ['full'], ['url'], ['path'], ['admin'], ['cm'], ['wysiwyg'], ['directive'], ['index'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensplant'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xf'], ['ack'], ['xbedac'], ['win'], ['xe'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['ex'], ['http'], ['uri'], ['admin'], ['cm'], ['wysiwyg'], ['directive'], ['index'], ['ex'], ['http'], ['hostname'], ['www'], ['company'], ['de'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['dd'], ['e'], ['f'], ['ba'], ['ae'], ['dd'], ['n'], ['pyx'], ['dac'], ['f'], ['kn'], ['cb'], ['ac'], ['cc'], ['f'], ['j'], ['apost'], ['ad'], ['ef'], ['f'], ['min'], ['cm'], ['wysiwyg'], ['e'], ['directive'], ['index'], ['e'], ['f'], ['http'], ['host'], ['eb'], ['e'], ['ce'], ['www'], ['company'], ['da'], ['af'], ['ad'], ['de'], ['accept'], ['fe'], ['dc'], ['content'], ['length'], ['fe'], ['content'], ['c'], ['c'], ['fe'], ['ype'], ['application'], ['f'], ['dd'], ['x'], ['www'], ['form'], ['urle'], ['e'], ['da'], ['da'], ['ncoded'], ['filter'], ['dc'], ['cgwdwxhcmlevt'], ['e'], ['mcmtxtwjnbvchv'], ['c'], ['syxjpdhlbdgdptm'], ['dc'], ['mcgwdwxhcmlevt'], ['sid'], ['c'], ['mawvszflehbyxt'], ['e'], ['wktttrvqgqfnbtfq'], ['e'], ['ef'], ['gpsancnanonfvcb'], ['aueftuyaienptkn'], ['f'], ['bvchnrduoqoqf'], ['ukcbaufmvcasicd'], ['eb'], ['zwwzwsnkerplcb'], ['fa'], ['af'], ['ec'], ['dtdqvqojzonlcb'], ['aufmvcapktttrux'], ['fqqgqevyvfjbido'], ['c'], ['iebwchlehryysk'], ['ca'], ['c'], ['grljptsbhzgpbl'], ['cvyifdirvjfigv'], ['c'], ['dhjhieltiepvcb'], ['df'], ['f'], ['ovuxmolouvsvcb'], ['jtlrpigbhzgpbl'], ['ee'], ['cvyycaoygzpcnn'], ['bmftzwasigbsyxn'], ['bmftzwasygvtywl'], ['c'], ['sycxgdxnlcmhbwv'], ['e'], ['glgbwyxnzdyzga'], ['c'], ['sygnyzwfzwrglgb'], ['sbdudfrtglgbyzwx'], ['e'], ['vywrfywnsxzsywd'], ['c'], ['glgbpchyrpdmv'], ['c'], ['glgblehryywasyhj'], ['e'], ['wxrvavuycxgcnb'], ['c'], ['fdgrzwfyjlyxr'], ['ca'], ['lzfhdgapifzbtfv'], ['fa'], ['ee'], ['fuyaojzpcnnbmf'], ['tzscsjxhcruyw'], ['ca'], ['ljywncvjdxjpdhl'], ['ea'], ['abwfnzwbnvbw'], ['de'], ['cc'], ['de'], ['lcmnllmnvbscsjb'], ['vbgljescsqfbbum'], ['b'], ['stkxkcksmcwwlde'], ['c'], ['sqevyvfjblevtew'], ['ce'], ['siepvygpkttjtln'], ['fulqgsuutybgywr'], ['b'], ['tawfcmszwagkhb'], ['hcmvudfpzcxcmv'], ['c'], ['e'], ['lxxldmvslhnvcnr'], ['ba'], ['fbjkzxisupply'], ['chainszv'], ['cc'], ['exbllhvzzxjfawq'], ['cb'], ['supply'], ['chainszvuywlksb'], ['b'], ['wquxvrvmgkdesmiw'], ['wlcdvjywouvmrun'], ['ca'], ['uihvzzxjfawqgrlj'], ['c'], ['ptsbhzgpblcv'], ['yifdirvjfihvzzxj'], ['uywlidgjbvbgl'], ['jescplcdgaxjzdg'], ['eb'], ['ff'], ['hbwunkts'], ['dir'], ['ective'], ['etibgja'], ['b'], ['ybexblpufkbwlua'], ['hrtbcyzxbvcnrfc'], ['de'], ['vhcmnoyawqgb'], ['c'], ['vchvpwdldenzd'], ['ba'], ['kzpbgvfq'], ['andforw'], ['arded'], ['pcap'], ['hex'], ['event'], ['shown'], ['due'], ['space'], ['constraint'], ['take'], ['action'], ['ticket'], ['action']] k: 4065 len: <class 'list'> Data: ['post', 'dn', 'rma', 'dear', 'team', 'pls', 'help', 'check', 'issue', 'return', 'dn', 'posted', 'due', 'bath', 'issue', 'key', 'anything', 'batch', 'blank', 'pls', 'help', 'handle', 'thx', 'lot', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['post', 'dn', 'rma', 'dear', 'team', 'pls', 'help', 'check', 'issue', 'return', 'dn', 'posted', 'due', 'bath', 'issue', 'key', 'anything', 'batch', 'blank', 'pls', 'help', 'handle', 'thx', 'lot', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['post'], ['dn'], ['rma'], ['dear'], ['team'], ['pls'], ['help'], ['check'], ['issue'], ['return'], ['dn'], ['posted'], ['due'], ['bath'], ['issue'], ['key'], ['anything'], ['batch'], ['blank'], ['pls'], ['help'], ['handle'], ['thx'], ['lot'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 4066 len: <class 'list'> Data: ['security', 'incident', 'sw', 'magento', 'sql', 'injection', 'source', 'ip', 'system', 'name', 'whqsm', 'reference', 'company', 'com', 'user', 'name', 'location', 'dmz', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'cve', 'alert', 'isensor', 'device', 'isensplant', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'dallas', 'usa', 'destined', 'port', 'tcp', 'usa', 'usa', 'occurred', 'indicates', 'external', 'host', 'possibly', 'source', 'attempting', 'discover', 'public', 'facing', 'server', 'including', 'vulnerable', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'sql', 'injection', 'vulnerability', 'described', 'cve', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'would', 'recommend', 'option', 'since', 'exploit', 'code', 'wild', 'merely', 'identifying', 'source', 'attack', 'useful', 'always', 'run', 'report', 'portal', 'identify', 'list', 'attacker', 'instead', 'would', 'recommend', 'auditing', 'environment', 'vulnerable', 'system', 'updating', 'necessary', 'completed', 'could', 'go', 'option', 'suppress', 'alerting', 'event', 'sincerely', 'ctoc', 'technical', 'detail', 'vulnerability', 'exists', 'magento', 'due', 'insufficient', 'input', 'validation', 'within', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'remote', 'attacker', 'could', 'exploit', 'vulnerability', 'conduct', 'sql', 'injection', 'attack', 'vulnerable', 'system', 'magento', 'eusa', 'platform', 'vulnerability', 'exists', 'magento', 'commstorage', 'product', 'edition', 'ce', 'version', 'version', 'version', 'version', 'version', 'version', 'magento', 'enterprise', 'edition', 'ee', 'version', 'prior', 'due', 'insufficient', 'input', 'validation', 'user', 'controllable', 'supplied', 'via', 'popularity', 'field', 'expr', 'paramdntyeter', 'popularity', 'popularity', 'paramdntyeter', 'set', 'properly', 'sanitized', 'illegal', 'malicious', 'content', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'prior', 'stored', 'fieldname', 'variable', 'used', 'sql', 'query', 'remote', 'administrator', 'could', 'leverage', 'issue', 'conduct', 'sql', 'injection', 'attack', 'injectncqulao', 'qauighdplicious', 'sql', 'code', 'affected', 'input', 'successful', 'exploitation', 'permit', 'attacker', 'manipulate', 'sql', 'query', 'execute', 'arbitrary', 'sql', 'command', 'underlying', 'database', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'dallas', 'usa', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'host', 'www', 'company', 'de', 'full', 'url', 'path', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xbedac', 'win', 'xe', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'ex', 'http', 'hostname', 'www', 'company', 'de', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'dd', 'e', 'f', 'ba', 'ae', 'dd', 'n', 'pyx', 'dac', 'f', 'kn', 'cb', 'ac', 'cc', 'f', 'j', 'apost', 'ad', 'ef', 'f', 'min', 'cm', 'wysiwyg', 'e', 'directive', 'index', 'e', 'f', 'http', 'host', 'eb', 'e', 'ce', 'www', 'company', 'da', 'af', 'ad', 'de', 'accept', 'fe', 'dc', 'content', 'length', 'fe', 'content', 'c', 'c', 'fe', 'ype', 'application', 'f', 'dd', 'x', 'www', 'form', 'urle', 'e', 'da', 'da', 'ncoded', 'filter', 'dc', 'cgwdwxhcmlevt', 'e', 'mcmtxtwjnbvchv', 'c', 'syxjpdhlbdgdptm', 'dc', 'mcgwdwxhcmlevt', 'sid', 'c', 'mawvszflehbyxt', 'e', 'wktttrvqgqfnbtfq', 'e', 'ef', 'gpsancnanonfvcb', 'aueftuyaienptkn', 'f', 'bvchnrduoqoqf', 'ukcbaufmvcasicd', 'eb', 'zwwzwsnkerplcb', 'fa', 'af', 'ec', 'dtdqvqojzonlcb', 'aufmvcapktttrux', 'fqqgqevyvfjbido', 'c', 'iebwchlehryysk', 'ca', 'c', 'grljptsbhzgpbl', 'cvyifdirvjfigv', 'c', 'dhjhieltiepvcb', 'df', 'f', 'ovuxmolouvsvcb', 'jtlrpigbhzgpbl', 'ee', 'cvyycaoygzpcnn', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'c', 'sycxgdxnlcmhbwv', 'e', 'glgbwyxnzdyzga', 'c', 'sygnyzwfzwrglgb', 'sbdudfrtglgbyzwx', 'e', 'vywrfywnsxzsywd', 'c', 'glgbpchyrpdmv', 'c', 'glgblehryywasyhj', 'e', 'wxrvavuycxgcnb', 'c', 'fdgrzwfyjlyxr', 'ca', 'lzfhdgapifzbtfv', 'fa', 'ee', 'fuyaojzpcnnbmf', 'tzscsjxhcruyw', 'ca', 'ljywncvjdxjpdhl', 'ea', 'abwfnzwbnvbw', 'de', 'cc', 'de', 'lcmnllmnvbscsjb', 'vbgljescsqfbbum', 'b', 'stkxkcksmcwwlde', 'c', 'sqevyvfjblevtew', 'ce', 'siepvygpkttjtln', 'fulqgsuutybgywr', 'b', 'tawfcmszwagkhb', 'hcmvudfpzcxcmv', 'c', 'e', 'lxxldmvslhnvcnr', 'ba', 'fbjkzxisupply', 'chainszv', 'cc', 'exbllhvzzxjfawq', 'cb', 'supply', 'chainszvuywlksb', 'b', 'wquxvrvmgkdesmiw', 'wlcdvjywouvmrun', 'ca', 'uihvzzxjfawqgrlj', 'c', 'ptsbhzgpblcv', 'yifdirvjfihvzzxj', 'uywlidgjbvbgl', 'jescplcdgaxjzdg', 'eb', 'ff', 'hbwunkts', 'dir', 'ective', 'etibgja', 'b', 'ybexblpufkbwlua', 'hrtbcyzxbvcnrfc', 'de', 'vhcmnoyawqgb', 'c', 'vchvpwdldenzd', 'ba', 'kzpbgvfq', 'andforw', 'arded', 'pcap', 'hex', 'event', 'shown', 'due', 'space', 'constraint', 'take', 'action', 'ticket', 'action'] processed_text: ['security', 'incident', 'sw', 'magento', 'sql', 'injection', 'source', 'ip', 'system', 'name', 'whqsm', 'reference', 'company', 'com', 'user', 'name', 'location', 'dmz', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'cve', 'alert', 'isensor', 'device', 'isensplant', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'dallas', 'usa', 'destined', 'port', 'tcp', 'usa', 'usa', 'occurred', 'indicates', 'external', 'host', 'possibly', 'source', 'attempting', 'discover', 'public', 'facing', 'server', 'including', 'vulnerable', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'sql', 'injection', 'vulnerability', 'described', 'cve', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'would', 'recommend', 'option', 'since', 'exploit', 'code', 'wild', 'merely', 'identifying', 'source', 'attack', 'useful', 'always', 'run', 'report', 'portal', 'identify', 'list', 'attacker', 'instead', 'would', 'recommend', 'auditing', 'environment', 'vulnerable', 'system', 'updating', 'necessary', 'completed', 'could', 'go', 'option', 'suppress', 'alerting', 'event', 'sincerely', 'ctoc', 'technical', 'detail', 'vulnerability', 'exists', 'magento', 'due', 'insufficient', 'input', 'validation', 'within', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'remote', 'attacker', 'could', 'exploit', 'vulnerability', 'conduct', 'sql', 'injection', 'attack', 'vulnerable', 'system', 'magento', 'eusa', 'platform', 'vulnerability', 'exists', 'magento', 'commstorage', 'product', 'edition', 'ce', 'version', 'version', 'version', 'version', 'version', 'version', 'magento', 'enterprise', 'edition', 'ee', 'version', 'prior', 'due', 'insufficient', 'input', 'validation', 'user', 'controllable', 'supplied', 'via', 'popularity', 'field', 'expr', 'paramdntyeter', 'popularity', 'popularity', 'paramdntyeter', 'set', 'properly', 'sanitized', 'illegal', 'malicious', 'content', 'mage', 'adminhtml', 'block', 'widget', 'grid', 'getcsvfile', 'function', 'prior', 'stored', 'fieldname', 'variable', 'used', 'sql', 'query', 'remote', 'administrator', 'could', 'leverage', 'issue', 'conduct', 'sql', 'injection', 'attack', 'injectncqulao', 'qauighdplicious', 'sql', 'code', 'affected', 'input', 'successful', 'exploitation', 'permit', 'attacker', 'manipulate', 'sql', 'query', 'execute', 'arbitrary', 'sql', 'command', 'underlying', 'database', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'dallas', 'usa', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'host', 'www', 'company', 'de', 'full', 'url', 'path', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'possible', 'magento', 'mage', 'adminhtml', 'block', 'widget', 'gridgetcsvfile', 'sql', 'injection', 'attempt', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xf', 'ack', 'xbedac', 'win', 'xe', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'admin', 'cm', 'wysiwyg', 'directive', 'index', 'ex', 'http', 'hostname', 'www', 'company', 'de', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'dd', 'e', 'f', 'ba', 'ae', 'dd', 'n', 'pyx', 'dac', 'f', 'kn', 'cb', 'ac', 'cc', 'f', 'j', 'apost', 'ad', 'ef', 'f', 'min', 'cm', 'wysiwyg', 'e', 'directive', 'index', 'e', 'f', 'http', 'host', 'eb', 'e', 'ce', 'www', 'company', 'da', 'af', 'ad', 'de', 'accept', 'fe', 'dc', 'content', 'length', 'fe', 'content', 'c', 'c', 'fe', 'ype', 'application', 'f', 'dd', 'x', 'www', 'form', 'urle', 'e', 'da', 'da', 'ncoded', 'filter', 'dc', 'cgwdwxhcmlevt', 'e', 'mcmtxtwjnbvchv', 'c', 'syxjpdhlbdgdptm', 'dc', 'mcgwdwxhcmlevt', 'sid', 'c', 'mawvszflehbyxt', 'e', 'wktttrvqgqfnbtfq', 'e', 'ef', 'gpsancnanonfvcb', 'aueftuyaienptkn', 'f', 'bvchnrduoqoqf', 'ukcbaufmvcasicd', 'eb', 'zwwzwsnkerplcb', 'fa', 'af', 'ec', 'dtdqvqojzonlcb', 'aufmvcapktttrux', 'fqqgqevyvfjbido', 'c', 'iebwchlehryysk', 'ca', 'c', 'grljptsbhzgpbl', 'cvyifdirvjfigv', 'c', 'dhjhieltiepvcb', 'df', 'f', 'ovuxmolouvsvcb', 'jtlrpigbhzgpbl', 'ee', 'cvyycaoygzpcnn', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'c', 'sycxgdxnlcmhbwv', 'e', 'glgbwyxnzdyzga', 'c', 'sygnyzwfzwrglgb', 'sbdudfrtglgbyzwx', 'e', 'vywrfywnsxzsywd', 'c', 'glgbpchyrpdmv', 'c', 'glgblehryywasyhj', 'e', 'wxrvavuycxgcnb', 'c', 'fdgrzwfyjlyxr', 'ca', 'lzfhdgapifzbtfv', 'fa', 'ee', 'fuyaojzpcnnbmf', 'tzscsjxhcruyw', 'ca', 'ljywncvjdxjpdhl', 'ea', 'abwfnzwbnvbw', 'de', 'cc', 'de', 'lcmnllmnvbscsjb', 'vbgljescsqfbbum', 'b', 'stkxkcksmcwwlde', 'c', 'sqevyvfjblevtew', 'ce', 'siepvygpkttjtln', 'fulqgsuutybgywr', 'b', 'tawfcmszwagkhb', 'hcmvudfpzcxcmv', 'c', 'e', 'lxxldmvslhnvcnr', 'ba', 'fbjkzxisupply', 'chainszv', 'cc', 'exbllhvzzxjfawq', 'cb', 'supply', 'chainszvuywlksb', 'b', 'wquxvrvmgkdesmiw', 'wlcdvjywouvmrun', 'ca', 'uihvzzxjfawqgrlj', 'c', 'ptsbhzgpblcv', 'yifdirvjfihvzzxj', 'uywlidgjbvbgl', 'jescplcdgaxjzdg', 'eb', 'ff', 'hbwunkts', 'dir', 'ective', 'etibgja', 'b', 'ybexblpufkbwlua', 'hrtbcyzxbvcnrfc', 'de', 'vhcmnoyawqgb', 'c', 'vchvpwdldenzd', 'ba', 'kzpbgvfq', 'andforw', 'arded', 'pcap', 'hex', 'event', 'shown', 'due', 'space', 'constraint', 'take', 'action', 'ticket', 'action'] list_processed_text: [['security'], ['incident'], ['sw'], ['magento'], ['sql'], ['injection'], ['source'], ['ip'], ['system'], ['name'], ['whqsm'], ['reference'], ['company'], ['com'], ['user'], ['name'], ['location'], ['dmz'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['ctoc'], ['received'], ['least'], ['occurrence'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['cve'], ['alert'], ['isensor'], ['device'], ['isensplant'], ['company'], ['com'], ['traffic'], ['blocked'], ['sourcing'], ['port'], ['tcp'], ['dallas'], ['usa'], ['destined'], ['port'], ['tcp'], ['usa'], ['usa'], ['occurred'], ['indicates'], ['external'], ['host'], ['possibly'], ['source'], ['attempting'], ['discover'], ['public'], ['facing'], ['server'], ['including'], ['vulnerable'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['sql'], ['injection'], ['vulnerability'], ['described'], ['cve'], ['ticket'], ['effectively'], ['serve'], ['master'], ['ticket'], ['related'], ['alert'], ['receive'], ['feedback'], ['handle'], ['event'], ['going'], ['forward'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['number'], ['option'], ['available'], ['handling'], ['future'], ['alert'], ['one'], ['autoresolve'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['likely'], ['best'], ['choice'], ['running'], ['application'], ['targeted'], ['ticket'], ['escalation'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['alert'], ['generate'], ['relatively'], ['large'], ['volume'], ['incident'], ['ticket'], ['full'], ['escalation'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['would'], ['recommend'], ['option'], ['since'], ['exploit'], ['code'], ['wild'], ['merely'], ['identifying'], ['source'], ['attack'], ['useful'], ['always'], ['run'], ['report'], ['portal'], ['identify'], ['list'], ['attacker'], ['instead'], ['would'], ['recommend'], ['auditing'], ['environment'], ['vulnerable'], ['system'], ['updating'], ['necessary'], ['completed'], ['could'], ['go'], ['option'], ['suppress'], ['alerting'], ['event'], ['sincerely'], ['ctoc'], ['technical'], ['detail'], ['vulnerability'], ['exists'], ['magento'], ['due'], ['insufficient'], ['input'], ['validation'], ['within'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['function'], ['remote'], ['attacker'], ['could'], ['exploit'], ['vulnerability'], ['conduct'], ['sql'], ['injection'], ['attack'], ['vulnerable'], ['system'], ['magento'], ['eusa'], ['platform'], ['vulnerability'], ['exists'], ['magento'], ['commstorage'], ['product'], ['edition'], ['ce'], ['version'], ['version'], ['version'], ['version'], ['version'], ['version'], ['magento'], ['enterprise'], ['edition'], ['ee'], ['version'], ['prior'], ['due'], ['insufficient'], ['input'], ['validation'], ['user'], ['controllable'], ['supplied'], ['via'], ['popularity'], ['field'], ['expr'], ['paramdntyeter'], ['popularity'], ['popularity'], ['paramdntyeter'], ['set'], ['properly'], ['sanitized'], ['illegal'], ['malicious'], ['content'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['grid'], ['getcsvfile'], ['function'], ['prior'], ['stored'], ['fieldname'], ['variable'], ['used'], ['sql'], ['query'], ['remote'], ['administrator'], ['could'], ['leverage'], ['issue'], ['conduct'], ['sql'], ['injection'], ['attack'], ['injectncqulao'], ['qauighdplicious'], ['sql'], ['code'], ['affected'], ['input'], ['successful'], ['exploitation'], ['permit'], ['attacker'], ['manipulate'], ['sql'], ['query'], ['execute'], ['arbitrary'], ['sql'], ['command'], ['underlying'], ['database'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['dallas'], ['usa'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['usa'], ['usa'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['host'], ['www'], ['company'], ['de'], ['full'], ['url'], ['path'], ['admin'], ['cm'], ['wysiwyg'], ['directive'], ['index'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensplant'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['possible'], ['magento'], ['mage'], ['adminhtml'], ['block'], ['widget'], ['gridgetcsvfile'], ['sql'], ['injection'], ['attempt'], ['inbound'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xf'], ['ack'], ['xbedac'], ['win'], ['xe'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['ex'], ['http'], ['uri'], ['admin'], ['cm'], ['wysiwyg'], ['directive'], ['index'], ['ex'], ['http'], ['hostname'], ['www'], ['company'], ['de'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['dd'], ['e'], ['f'], ['ba'], ['ae'], ['dd'], ['n'], ['pyx'], ['dac'], ['f'], ['kn'], ['cb'], ['ac'], ['cc'], ['f'], ['j'], ['apost'], ['ad'], ['ef'], ['f'], ['min'], ['cm'], ['wysiwyg'], ['e'], ['directive'], ['index'], ['e'], ['f'], ['http'], ['host'], ['eb'], ['e'], ['ce'], ['www'], ['company'], ['da'], ['af'], ['ad'], ['de'], ['accept'], ['fe'], ['dc'], ['content'], ['length'], ['fe'], ['content'], ['c'], ['c'], ['fe'], ['ype'], ['application'], ['f'], ['dd'], ['x'], ['www'], ['form'], ['urle'], ['e'], ['da'], ['da'], ['ncoded'], ['filter'], ['dc'], ['cgwdwxhcmlevt'], ['e'], ['mcmtxtwjnbvchv'], ['c'], ['syxjpdhlbdgdptm'], ['dc'], ['mcgwdwxhcmlevt'], ['sid'], ['c'], ['mawvszflehbyxt'], ['e'], ['wktttrvqgqfnbtfq'], ['e'], ['ef'], ['gpsancnanonfvcb'], ['aueftuyaienptkn'], ['f'], ['bvchnrduoqoqf'], ['ukcbaufmvcasicd'], ['eb'], ['zwwzwsnkerplcb'], ['fa'], ['af'], ['ec'], ['dtdqvqojzonlcb'], ['aufmvcapktttrux'], ['fqqgqevyvfjbido'], ['c'], ['iebwchlehryysk'], ['ca'], ['c'], ['grljptsbhzgpbl'], ['cvyifdirvjfigv'], ['c'], ['dhjhieltiepvcb'], ['df'], ['f'], ['ovuxmolouvsvcb'], ['jtlrpigbhzgpbl'], ['ee'], ['cvyycaoygzpcnn'], ['bmftzwasigbsyxn'], ['bmftzwasygvtywl'], ['c'], ['sycxgdxnlcmhbwv'], ['e'], ['glgbwyxnzdyzga'], ['c'], ['sygnyzwfzwrglgb'], ['sbdudfrtglgbyzwx'], ['e'], ['vywrfywnsxzsywd'], ['c'], ['glgbpchyrpdmv'], ['c'], ['glgblehryywasyhj'], ['e'], ['wxrvavuycxgcnb'], ['c'], ['fdgrzwfyjlyxr'], ['ca'], ['lzfhdgapifzbtfv'], ['fa'], ['ee'], ['fuyaojzpcnnbmf'], ['tzscsjxhcruyw'], ['ca'], ['ljywncvjdxjpdhl'], ['ea'], ['abwfnzwbnvbw'], ['de'], ['cc'], ['de'], ['lcmnllmnvbscsjb'], ['vbgljescsqfbbum'], ['b'], ['stkxkcksmcwwlde'], ['c'], ['sqevyvfjblevtew'], ['ce'], ['siepvygpkttjtln'], ['fulqgsuutybgywr'], ['b'], ['tawfcmszwagkhb'], ['hcmvudfpzcxcmv'], ['c'], ['e'], ['lxxldmvslhnvcnr'], ['ba'], ['fbjkzxisupply'], ['chainszv'], ['cc'], ['exbllhvzzxjfawq'], ['cb'], ['supply'], ['chainszvuywlksb'], ['b'], ['wquxvrvmgkdesmiw'], ['wlcdvjywouvmrun'], ['ca'], ['uihvzzxjfawqgrlj'], ['c'], ['ptsbhzgpblcv'], ['yifdirvjfihvzzxj'], ['uywlidgjbvbgl'], ['jescplcdgaxjzdg'], ['eb'], ['ff'], ['hbwunkts'], ['dir'], ['ective'], ['etibgja'], ['b'], ['ybexblpufkbwlua'], ['hrtbcyzxbvcnrfc'], ['de'], ['vhcmnoyawqgb'], ['c'], ['vchvpwdldenzd'], ['ba'], ['kzpbgvfq'], ['andforw'], ['arded'], ['pcap'], ['hex'], ['event'], ['shown'], ['due'], ['space'], ['constraint'], ['take'], ['action'], ['ticket'], ['action']] k: 4067 len: <class 'list'> Data: ['plc', 'ip'] processed_text: ['plc', 'ip'] list_processed_text: [['plc'], ['ip']] k: 4068 len: <class 'list'> Data: ['reset', 'password', 'hgyvopct', 'dhckfmbq', 'using', 'password', 'management', 'tool', 'password', 'reset', 'sdguo'] processed_text: ['reset', 'password', 'hgyvopct', 'dhckfmbq', 'using', 'password', 'management', 'tool', 'password', 'reset', 'sdguo'] list_processed_text: [['reset'], ['password'], ['hgyvopct'], ['dhckfmbq'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['sdguo']] k: 4069 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4070 len: <class 'list'> Data: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler']] k: 4071 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4072 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4073 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4074 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 4075 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4076 len: <class 'list'> Data: ['erp', 'logon', 'help', 'team', 'today', 'chinese', 'working', 'day', 'open', 'erp', 'system', 'aerp', 'rujpckto', 'lhutkpxm', 'material', 'manager', 'company', 'apac', 'co', 'ltd'] processed_text: ['erp', 'logon', 'help', 'team', 'today', 'chinese', 'working', 'day', 'open', 'erp', 'system', 'aerp', 'rujpckto', 'lhutkpxm', 'material', 'manager', 'company', 'apac', 'co', 'ltd'] list_processed_text: [['erp'], ['logon'], ['help'], ['team'], ['today'], ['chinese'], ['working'], ['day'], ['open'], ['erp'], ['system'], ['aerp'], ['rujpckto'], ['lhutkpxm'], ['material'], ['manager'], ['company'], ['apac'], ['co'], ['ltd']] k: 4077 len: <class 'list'> Data: ['alwaysupservice', 'exe', 'running', 'many', 'plm', 'conversion', 'server', 'hostname', 'hostname', 'hostname', 'hostname', 'hostname', 'alwaysupservice', 'exe', 'running'] processed_text: ['alwaysupservice', 'exe', 'running', 'many', 'plm', 'conversion', 'server', 'hostname', 'hostname', 'hostname', 'hostname', 'hostname', 'alwaysupservice', 'exe', 'running'] list_processed_text: [['alwaysupservice'], ['exe'], ['running'], ['many'], ['plm'], ['conversion'], ['server'], ['hostname'], ['hostname'], ['hostname'], ['hostname'], ['hostname'], ['alwaysupservice'], ['exe'], ['running']] k: 4078 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4079 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4080 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4081 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4082 len: <class 'list'> Data: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwdpmbkp', 'failed', 'job', 'scheduler', 'job', 'bwdpmbkp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwdpmbkp'], ['failed'], ['job'], ['scheduler']] k: 4083 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4084 len: <class 'list'> Data: ['received', 'call', 'music', 'playing', 'one', 'awswering', 'received', 'call', 'music', 'playing', 'one', 'answering', 'interaction', 'id'] processed_text: ['received', 'call', 'music', 'playing', 'one', 'awswering', 'received', 'call', 'music', 'playing', 'one', 'answering', 'interaction', 'id'] list_processed_text: [['received'], ['call'], ['music'], ['playing'], ['one'], ['awswering'], ['received'], ['call'], ['music'], ['playing'], ['one'], ['answering'], ['interaction'], ['id']] k: 4085 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4086 len: <class 'list'> Data: ['job', 'bkwin', 'm', 'cluster', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'm', 'cluster', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'm', 'cluster', 'full', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'm', 'cluster', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['m'], ['cluster'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['m'], ['cluster'], ['full'], ['failed'], ['job'], ['scheduler']] k: 4087 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4088 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'passwordmanager', 'password', 'reset', 'password', 'management', 'tool', 'passwordmanager'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'passwordmanager', 'password', 'reset', 'password', 'management', 'tool', 'passwordmanager'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['passwordmanager'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['passwordmanager']] k: 4089 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4090 len: <class 'list'> Data: ['account', 'thomafghk', 'disabled', 'account', 'thomafghk', 'disabled'] processed_text: ['account', 'thomafghk', 'disabled', 'account', 'thomafghk', 'disabled'] list_processed_text: [['account'], ['thomafghk'], ['disabled'], ['account'], ['thomafghk'], ['disabled']] k: 4091 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 4092 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] processed_text: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] list_processed_text: [['mobile'], ['device'], ['activation'], ['company'], ['provided'], ['mobile'], ['device'], ['activation'], ['company'], ['provided']] k: 4093 len: <class 'list'> Data: ['fwd', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'accessed', 'admin', 'please', 'activate', 'new', 'mobile', 'phone', '.', 'sincerely'] processed_text: ['fwd', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'accessed', 'admin', 'please', 'activate', 'new', 'mobile', 'phone', '.', 'sincerely'] list_processed_text: [['fwd'], ['synchronization'], ['exchange'], ['activesync'], ['temporarily'], ['blocked'], ['ger'], ['accessed'], ['admin'], ['please'], ['activate'], ['new'], ['mobile'], ['phone'], ['.'], ['sincerely']] k: 4094 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 4095 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4096 len: <class 'list'> Data: ['cannot', 'submit', 'engineering', 'tool', 'system', 'trying', 'submit', 'engineering', 'tool', 'system', 'problem', 'message', 'error', 'connected', 'company', 'network', 'think', 'already', 'connect', 'vpn', 'company', 'try', 'submit', 'still', 'get', 'failed', 'please', 'advise'] processed_text: ['cannot', 'submit', 'engineering', 'tool', 'system', 'trying', 'submit', 'engineering', 'tool', 'system', 'problem', 'message', 'error', 'connected', 'company', 'network', 'think', 'already', 'connect', 'vpn', 'company', 'try', 'submit', 'still', 'get', 'failed', 'please', 'advise'] list_processed_text: [['cannot'], ['submit'], ['engineering'], ['tool'], ['system'], ['trying'], ['submit'], ['engineering'], ['tool'], ['system'], ['problem'], ['message'], ['error'], ['connected'], ['company'], ['network'], ['think'], ['already'], ['connect'], ['vpn'], ['company'], ['try'], ['submit'], ['still'], ['get'], ['failed'], ['please'], ['advise']] k: 4097 len: <class 'list'> Data: ['able', 'submit', 'report', 'engineering', 'tool', 'able', 'submit', 'report', 'engineering', 'tool', 'contact'] processed_text: ['able', 'submit', 'report', 'engineering', 'tool', 'able', 'submit', 'report', 'engineering', 'tool', 'contact'] list_processed_text: [['able'], ['submit'], ['report'], ['engineering'], ['tool'], ['able'], ['submit'], ['report'], ['engineering'], ['tool'], ['contact']] k: 4098 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ab', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ab'], ['space'], ['consumed'], ['space'], ['available']] k: 4099 len: <class 'list'> Data: ['internet', 'signal', 'itjzudor', 'ybtmorxp', 'ecwtrjnq', 'jpecxuty', 'nwfodmhc', 'exurcwkm', 'important', 'internet', 'signal', 'importance', 'high', 'hello', 'hartghymutg', 'internet', 'line', 'work', 'connection', 'signal', 'input', 'lan', 'call', 'support', 'thank', 'info', 'best'] processed_text: ['internet', 'signal', 'itjzudor', 'ybtmorxp', 'ecwtrjnq', 'jpecxuty', 'nwfodmhc', 'exurcwkm', 'important', 'internet', 'signal', 'importance', 'high', 'hello', 'hartghymutg', 'internet', 'line', 'work', 'connection', 'signal', 'input', 'lan', 'call', 'support', 'thank', 'info', 'best'] list_processed_text: [['internet'], ['signal'], ['itjzudor'], ['ybtmorxp'], ['ecwtrjnq'], ['jpecxuty'], ['nwfodmhc'], ['exurcwkm'], ['important'], ['internet'], ['signal'], ['importance'], ['high'], ['hello'], ['hartghymutg'], ['internet'], ['line'], ['work'], ['connection'], ['signal'], ['input'], ['lan'], ['call'], ['support'], ['thank'], ['info'], ['best']] k: 4100 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4101 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 4102 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4103 len: <class 'list'> Data: ['skype', 'working', 'name', 'ganedsght', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'working'] processed_text: ['skype', 'working', 'name', 'ganedsght', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'skype', 'working'] list_processed_text: [['skype'], ['working'], ['name'], ['ganedsght'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['skype'], ['working']] k: 4104 len: <class 'list'> Data: ['servrs', 'job', 'scheduler', 'unlinked', 'serf', 'job', 'scheduler', 'unlinked', 'responding', 'trying', 'reconnect'] processed_text: ['servrs', 'job', 'scheduler', 'unlinked', 'serf', 'job', 'scheduler', 'unlinked', 'responding', 'trying', 'reconnect'] list_processed_text: [['servrs'], ['job'], ['scheduler'], ['unlinked'], ['serf'], ['job'], ['scheduler'], ['unlinked'], ['responding'], ['trying'], ['reconnect']] k: 4105 len: <class 'list'> Data: ['hostname', 'swap', 'space', 'hostname', 'le', 'hostname', 'swap', 'space', 'hostname', 'le'] processed_text: ['hostname', 'swap', 'space', 'hostname', 'le', 'hostname', 'swap', 'space', 'hostname', 'le'] list_processed_text: [['hostname'], ['swap'], ['space'], ['hostname'], ['le'], ['hostname'], ['swap'], ['space'], ['hostname'], ['le']] k: 4106 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 4107 len: <class 'list'> Data: ['production', 'order', 'interface', 'app', 'server', 'india', 'able', 'release', 'production', 'order', 'production', 'order', 'interface', 'app', 'server', 'india', 'able', 'release', 'production', 'order'] processed_text: ['production', 'order', 'interface', 'app', 'server', 'india', 'able', 'release', 'production', 'order', 'production', 'order', 'interface', 'app', 'server', 'india', 'able', 'release', 'production', 'order'] list_processed_text: [['production'], ['order'], ['interface'], ['app'], ['server'], ['india'], ['able'], ['release'], ['production'], ['order'], ['production'], ['order'], ['interface'], ['app'], ['server'], ['india'], ['able'], ['release'], ['production'], ['order']] k: 4108 len: <class 'list'> Data: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] processed_text: ['error', 'message', 'route', 'card', 'release', 'hello', 'route', 'card', 'release', 'error', 'message', 'appearing', 'route', 'card', 'get', 'printed', 'required', 'help', 'resolving', 'issue', 'please', 'print', 'email', 'unless', 'absolutely', 'necessary', 'spread', 'environmental', 'awareness', 'confidentiality', 'caution', 'communication', 'including', 'accompanying', 'document', 'intended', 'sole', 'use', 'person', 'addressed', 'contain', 'information', 'privileged', 'confidential', 'exempt', 'disclosure', 'unauthorised', 'reading', 'dissemination', 'distribution', 'duplication', 'communication', 'someone', 'intended', 'recipient', 'strictly', 'prohibited', 'receipt', 'communication', 'error', 'please', 'notify', 'sender', 'destrtgoy', 'original', 'communication', 'immediately'] list_processed_text: [['error'], ['message'], ['route'], ['card'], ['release'], ['hello'], ['route'], ['card'], ['release'], ['error'], ['message'], ['appearing'], ['route'], ['card'], ['get'], ['printed'], ['required'], ['help'], ['resolving'], ['issue'], ['please'], ['print'], ['email'], ['unless'], ['absolutely'], ['necessary'], ['spread'], ['environmental'], ['awareness'], ['confidentiality'], ['caution'], ['communication'], ['including'], ['accompanying'], ['document'], ['intended'], ['sole'], ['use'], ['person'], ['addressed'], ['contain'], ['information'], ['privileged'], ['confidential'], ['exempt'], ['disclosure'], ['unauthorised'], ['reading'], ['dissemination'], ['distribution'], ['duplication'], ['communication'], ['someone'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['receipt'], ['communication'], ['error'], ['please'], ['notify'], ['sender'], ['destrtgoy'], ['original'], ['communication'], ['immediately']] k: 4109 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 4110 len: <class 'list'> Data: ['po', 'print', 'hello', 'please', 'refer', 'screen', 'shot', 'getting', 'po', 'print', 'please', 'needful', 'thanking', 'srinifghvahs', 'www', 'company', 'com'] processed_text: ['po', 'print', 'hello', 'please', 'refer', 'screen', 'shot', 'getting', 'po', 'print', 'please', 'needful', 'thanking', 'srinifghvahs', 'www', 'company', 'com'] list_processed_text: [['po'], ['print'], ['hello'], ['please'], ['refer'], ['screen'], ['shot'], ['getting'], ['po'], ['print'], ['please'], ['needful'], ['thanking'], ['srinifghvahs'], ['www'], ['company'], ['com']] k: 4111 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4112 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 4113 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4114 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4115 len: <class 'list'> Data: ['password', 'reset', 'hr', 'tool', 'mii', 'password', 'reset', 'hr', 'tool', 'mii'] processed_text: ['password', 'reset', 'hr', 'tool', 'mii', 'password', 'reset', 'hr', 'tool', 'mii'] list_processed_text: [['password'], ['reset'], ['hr'], ['tool'], ['mii'], ['password'], ['reset'], ['hr'], ['tool'], ['mii']] k: 4116 len: <class 'list'> Data: ['unable', 'get', 'crm', 'add', 'excel', 'unable', 'get', 'crm', 'add', 'excel'] processed_text: ['unable', 'get', 'crm', 'add', 'excel', 'unable', 'get', 'crm', 'add', 'excel'] list_processed_text: [['unable'], ['get'], ['crm'], ['add'], ['excel'], ['unable'], ['get'], ['crm'], ['add'], ['excel']] k: 4117 len: <class 'list'> Data: ['password', 'reset', 'login', 'collaboration', 'platform', 'check', 'paystub', 'password', 'reset', 'login', 'collaboration', 'platform', 'check', 'paystub'] processed_text: ['password', 'reset', 'login', 'collaboration', 'platform', 'check', 'paystub', 'password', 'reset', 'login', 'collaboration', 'platform', 'check', 'paystub'] list_processed_text: [['password'], ['reset'], ['login'], ['collaboration'], ['platform'], ['check'], ['paystub'], ['password'], ['reset'], ['login'], ['collaboration'], ['platform'], ['check'], ['paystub']] k: 4118 len: <class 'list'> Data: ['user', 'want', 'download', 'software', 'shared', 'collaboration', 'platform', 'user', 'want', 'download', 'software', 'shared', 'collaboration', 'platform', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'download', 'software', 'local', 'system', 'issue', 'resolved'] processed_text: ['user', 'want', 'download', 'software', 'shared', 'collaboration', 'platform', 'user', 'want', 'download', 'software', 'shared', 'collaboration', 'platform', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'download', 'software', 'local', 'system', 'issue', 'resolved'] list_processed_text: [['user'], ['want'], ['download'], ['software'], ['shared'], ['collaboration'], ['platform'], ['user'], ['want'], ['download'], ['software'], ['shared'], ['collaboration'], ['platform'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['download'], ['software'], ['local'], ['system'], ['issue'], ['resolved']] k: 4119 len: <class 'list'> Data: ['correct', 'delivery', 'date', 'showing', 'schedule', 'line', 'output', 'set', 'ship', 'day', 'air', 'would', 'however', 'erp', 'showing', 'delivery', 'date', 'day', 'quote', 'entered', 'next', 'day', 'air', 'shipping', 'delivery', 'date', 'quote', 'entered', 'next', 'day', 'air', 'shipping', 'delivery', 'date'] processed_text: ['correct', 'delivery', 'date', 'showing', 'schedule', 'line', 'output', 'set', 'ship', 'day', 'air', 'would', 'however', 'erp', 'showing', 'delivery', 'date', 'day', 'quote', 'entered', 'next', 'day', 'air', 'shipping', 'delivery', 'date', 'quote', 'entered', 'next', 'day', 'air', 'shipping', 'delivery', 'date'] list_processed_text: [['correct'], ['delivery'], ['date'], ['showing'], ['schedule'], ['line'], ['output'], ['set'], ['ship'], ['day'], ['air'], ['would'], ['however'], ['erp'], ['showing'], ['delivery'], ['date'], ['day'], ['quote'], ['entered'], ['next'], ['day'], ['air'], ['shipping'], ['delivery'], ['date'], ['quote'], ['entered'], ['next'], ['day'], ['air'], ['shipping'], ['delivery'], ['date']] k: 4120 len: <class 'list'> Data: ['phone', 'issue', 'user', 'decided', 'need', 'office', 'turned', 'degree', 'mean', 'phone', 'another', 'port', 'managed', 'get', 'powered', 'using', 'poe', 'injector', 'currently', 'phone', 'sync', 'extension', 'mac', 'address', 'aa'] processed_text: ['phone', 'issue', 'user', 'decided', 'need', 'office', 'turned', 'degree', 'mean', 'phone', 'another', 'port', 'managed', 'get', 'powered', 'using', 'poe', 'injector', 'currently', 'phone', 'sync', 'extension', 'mac', 'address', 'aa'] list_processed_text: [['phone'], ['issue'], ['user'], ['decided'], ['need'], ['office'], ['turned'], ['degree'], ['mean'], ['phone'], ['another'], ['port'], ['managed'], ['get'], ['powered'], ['using'], ['poe'], ['injector'], ['currently'], ['phone'], ['sync'], ['extension'], ['mac'], ['address'], ['aa']] k: 4121 len: <class 'list'> Data: ['erp', 'log', 'please', 'unlock', 'erp', 'password', 'working', 'changed', 'vyjmlain', 'hvjbmdgi', 'senior', 'technical', 'service', 'rep'] processed_text: ['erp', 'log', 'please', 'unlock', 'erp', 'password', 'working', 'changed', 'vyjmlain', 'hvjbmdgi', 'senior', 'technical', 'service', 'rep'] list_processed_text: [['erp'], ['log'], ['please'], ['unlock'], ['erp'], ['password'], ['working'], ['changed'], ['vyjmlain'], ['hvjbmdgi'], ['senior'], ['technical'], ['service'], ['rep']] k: 4122 len: <class 'list'> Data: ['unable', 'log', 'erp', 'unable', 'log', 'erp'] processed_text: ['unable', 'log', 'erp', 'unable', 'log', 'erp'] list_processed_text: [['unable'], ['log'], ['erp'], ['unable'], ['log'], ['erp']] k: 4123 len: <class 'list'> Data: ['error', 'programdntya', 'docad', 'rj', 'user', 'olghiveii', 'error', 'accessing', 'programdntya', 'docad', 'unavailable', 'database'] processed_text: ['error', 'programdntya', 'docad', 'rj', 'user', 'olghiveii', 'error', 'accessing', 'programdntya', 'docad', 'unavailable', 'database'] list_processed_text: [['error'], ['programdntya'], ['docad'], ['rj'], ['user'], ['olghiveii'], ['error'], ['accessing'], ['programdntya'], ['docad'], ['unavailable'], ['database']] k: 4124 len: <class 'list'> Data: ['slight', 'change', 'desktop', 'hello', 'way', 'remove', 'information', 'desktop', 'screen'] processed_text: ['slight', 'change', 'desktop', 'hello', 'way', 'remove', 'information', 'desktop', 'screen'] list_processed_text: [['slight'], ['change'], ['desktop'], ['hello'], ['way'], ['remove'], ['information'], ['desktop'], ['screen']] k: 4125 len: <class 'list'> Data: ['call', 'vitalyst', 'opportunity', 'editable', 'call', 'vitalyst', 'opportunity', 'editable', 'check', 'screen', 'shot', 'required', 'use', 'enter', 'customer', 'lead', 'opportstorage', 'product', 'data', 'crm', 'understand', 'many', 'time', 'actual', 'data', 'entry', 'field', 'locked', 'u', 'cannot', 'enter', 'anything', 'also', 'flow', 'screen', 'lack', 'intuitive', 'input', 'much', 'challenging', 'true', 'opportstorage', 'product', 'screen', 'also', 'lead', 'screen', 'etc'] processed_text: ['call', 'vitalyst', 'opportunity', 'editable', 'call', 'vitalyst', 'opportunity', 'editable', 'check', 'screen', 'shot', 'required', 'use', 'enter', 'customer', 'lead', 'opportstorage', 'product', 'data', 'crm', 'understand', 'many', 'time', 'actual', 'data', 'entry', 'field', 'locked', 'u', 'cannot', 'enter', 'anything', 'also', 'flow', 'screen', 'lack', 'intuitive', 'input', 'much', 'challenging', 'true', 'opportstorage', 'product', 'screen', 'also', 'lead', 'screen', 'etc'] list_processed_text: [['call'], ['vitalyst'], ['opportunity'], ['editable'], ['call'], ['vitalyst'], ['opportunity'], ['editable'], ['check'], ['screen'], ['shot'], ['required'], ['use'], ['enter'], ['customer'], ['lead'], ['opportstorage'], ['product'], ['data'], ['crm'], ['understand'], ['many'], ['time'], ['actual'], ['data'], ['entry'], ['field'], ['locked'], ['u'], ['cannot'], ['enter'], ['anything'], ['also'], ['flow'], ['screen'], ['lack'], ['intuitive'], ['input'], ['much'], ['challenging'], ['true'], ['opportstorage'], ['product'], ['screen'], ['also'], ['lead'], ['screen'], ['etc']] k: 4126 len: <class 'list'> Data: ['laptop', 'screen', 'problem', 'dear', 'team', 'face', 'problem', 'laptop', 'screen', 'vertical', 'line', 'strip', 'coming', 'screen', 'today', 'refer', 'pic', 'earlier', 'also', 'facing', 'problem', 'permanent', 'today', 'continue', 'screen', 'kindly', 'look', 'rohjghit', 'kumghtwar', 'application', 'engineering'] processed_text: ['laptop', 'screen', 'problem', 'dear', 'team', 'face', 'problem', 'laptop', 'screen', 'vertical', 'line', 'strip', 'coming', 'screen', 'today', 'refer', 'pic', 'earlier', 'also', 'facing', 'problem', 'permanent', 'today', 'continue', 'screen', 'kindly', 'look', 'rohjghit', 'kumghtwar', 'application', 'engineering'] list_processed_text: [['laptop'], ['screen'], ['problem'], ['dear'], ['team'], ['face'], ['problem'], ['laptop'], ['screen'], ['vertical'], ['line'], ['strip'], ['coming'], ['screen'], ['today'], ['refer'], ['pic'], ['earlier'], ['also'], ['facing'], ['problem'], ['permanent'], ['today'], ['continue'], ['screen'], ['kindly'], ['look'], ['rohjghit'], ['kumghtwar'], ['application'], ['engineering']] k: 4127 len: <class 'list'> Data: ['admin', 'access', 'need', 'administrator', 'access', 'user', 'vijghyduhprga', 'yeghrrajghodu', 'install', 'dac', 'software'] processed_text: ['admin', 'access', 'need', 'administrator', 'access', 'user', 'vijghyduhprga', 'yeghrrajghodu', 'install', 'dac', 'software'] list_processed_text: [['admin'], ['access'], ['need'], ['administrator'], ['access'], ['user'], ['vijghyduhprga'], ['yeghrrajghodu'], ['install'], ['dac'], ['software']] k: 4128 len: <class 'list'> Data: ['interface', 'ethernet', 'port', 'channel', 'fluke', 'trueview', 'appliance', 'intermittenly', 'going', 'interface', 'ethernet', 'port', 'channel', 'fluke', 'trueview', 'appliance', 'company', 'dc', 'nx', 'company', 'com', 'going', 'intermittently'] processed_text: ['interface', 'ethernet', 'port', 'channel', 'fluke', 'trueview', 'appliance', 'intermittenly', 'going', 'interface', 'ethernet', 'port', 'channel', 'fluke', 'trueview', 'appliance', 'company', 'dc', 'nx', 'company', 'com', 'going', 'intermittently'] list_processed_text: [['interface'], ['ethernet'], ['port'], ['channel'], ['fluke'], ['trueview'], ['appliance'], ['intermittenly'], ['going'], ['interface'], ['ethernet'], ['port'], ['channel'], ['fluke'], ['trueview'], ['appliance'], ['company'], ['dc'], ['nx'], ['company'], ['com'], ['going'], ['intermittently']] k: 4129 len: <class 'list'> Data: ['vat', 'tally', 'raghyvhdra', 'najuty', 'pm', 'nwfodmhc', 'exurcwkm', 'srinfhyath', 'araghtyu', 'parthyrubhji', 'erathyur', 'hdfvbjoe', 'obvrxtya', 'raghjkavhjkdra', 'rao', 'dan', 'vat', 'tally', 'please', 'refer', 'mail', 'mention', 'vat', 'tally', 'inwarehouse', 'tool', 'dated', 'inwarehouse', 'tool', 'dated', 'raised', 'similar', 'ticket', 'last', 'week', 'inwarehouse', 'tool', 'coming', 'across', 'issue', 'frequently', 'request', 'ensure', 'type', 'error', 'repeated'] processed_text: ['vat', 'tally', 'raghyvhdra', 'najuty', 'pm', 'nwfodmhc', 'exurcwkm', 'srinfhyath', 'araghtyu', 'parthyrubhji', 'erathyur', 'hdfvbjoe', 'obvrxtya', 'raghjkavhjkdra', 'rao', 'dan', 'vat', 'tally', 'please', 'refer', 'mail', 'mention', 'vat', 'tally', 'inwarehouse', 'tool', 'dated', 'inwarehouse', 'tool', 'dated', 'raised', 'similar', 'ticket', 'last', 'week', 'inwarehouse', 'tool', 'coming', 'across', 'issue', 'frequently', 'request', 'ensure', 'type', 'error', 'repeated'] list_processed_text: [['vat'], ['tally'], ['raghyvhdra'], ['najuty'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['srinfhyath'], ['araghtyu'], ['parthyrubhji'], ['erathyur'], ['hdfvbjoe'], ['obvrxtya'], ['raghjkavhjkdra'], ['rao'], ['dan'], ['vat'], ['tally'], ['please'], ['refer'], ['mail'], ['mention'], ['vat'], ['tally'], ['inwarehouse'], ['tool'], ['dated'], ['inwarehouse'], ['tool'], ['dated'], ['raised'], ['similar'], ['ticket'], ['last'], ['week'], ['inwarehouse'], ['tool'], ['coming'], ['across'], ['issue'], ['frequently'], ['request'], ['ensure'], ['type'], ['error'], ['repeated']] k: 4130 len: <class 'list'> Data: ['please', 'check', 'bobj', 'account', 'stefdgthy', 'get', 'enclosed', 'error', 'message', 'trying', 'open', 'bobj', 'report', 'dear', 'please', 'check', 'bobj', 'account', 'wohzmlib', 'fxwjhapo', 'get', 'enclosed', 'error', 'message', 'trying', 'open', 'bobj', 'report'] processed_text: ['please', 'check', 'bobj', 'account', 'stefdgthy', 'get', 'enclosed', 'error', 'message', 'trying', 'open', 'bobj', 'report', 'dear', 'please', 'check', 'bobj', 'account', 'wohzmlib', 'fxwjhapo', 'get', 'enclosed', 'error', 'message', 'trying', 'open', 'bobj', 'report'] list_processed_text: [['please'], ['check'], ['bobj'], ['account'], ['stefdgthy'], ['get'], ['enclosed'], ['error'], ['message'], ['trying'], ['open'], ['bobj'], ['report'], ['dear'], ['please'], ['check'], ['bobj'], ['account'], ['wohzmlib'], ['fxwjhapo'], ['get'], ['enclosed'], ['error'], ['message'], ['trying'], ['open'], ['bobj'], ['report']] k: 4131 len: <class 'list'> Data: ['one', 'note', 'issue', 'file', 'getting', 'synched', 'one', 'note', 'issue', 'file', 'getting', 'synched', 'logged', 'trying', 'logging', 'back', 'go', 'checked', 'user', 'able', 'sync', 'issue', 'user'] processed_text: ['one', 'note', 'issue', 'file', 'getting', 'synched', 'one', 'note', 'issue', 'file', 'getting', 'synched', 'logged', 'trying', 'logging', 'back', 'go', 'checked', 'user', 'able', 'sync', 'issue', 'user'] list_processed_text: [['one'], ['note'], ['issue'], ['file'], ['getting'], ['synched'], ['one'], ['note'], ['issue'], ['file'], ['getting'], ['synched'], ['logged'], ['trying'], ['logging'], ['back'], ['go'], ['checked'], ['user'], ['able'], ['sync'], ['issue'], ['user']] k: 4132 len: <class 'list'> Data: ['printer', 'printing', 'name', 'ljztkmds', 'ltjkirwy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'access', 'printer', 'usa', 'plant', 'act', 'like', 'need', 'install', 'driver', 'give', 'access', 'hostname', 'never', 'issue', 'past', 'sure', 'permission', 'changed', 'change', 'position'] processed_text: ['printer', 'printing', 'name', 'ljztkmds', 'ltjkirwy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'access', 'printer', 'usa', 'plant', 'act', 'like', 'need', 'install', 'driver', 'give', 'access', 'hostname', 'never', 'issue', 'past', 'sure', 'permission', 'changed', 'change', 'position'] list_processed_text: [['printer'], ['printing'], ['name'], ['ljztkmds'], ['ltjkirwy'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['access'], ['printer'], ['usa'], ['plant'], ['act'], ['like'], ['need'], ['install'], ['driver'], ['give'], ['access'], ['hostname'], ['never'], ['issue'], ['past'], ['sure'], ['permission'], ['changed'], ['change'], ['position']] k: 4133 len: <class 'list'> Data: ['change', 'mm', 'package', 'plant', 'bom', 'hi', 'team', 'need', 'item', 'related', 'must', 'replaced', 'new', 'package', 'filled', 'plant', 'bom', 'current', 'change', 'current', 'change', 'current', 'change', 'current', 'change', 'current', 'change'] processed_text: ['change', 'mm', 'package', 'plant', 'bom', 'hi', 'team', 'need', 'item', 'related', 'must', 'replaced', 'new', 'package', 'filled', 'plant', 'bom', 'current', 'change', 'current', 'change', 'current', 'change', 'current', 'change', 'current', 'change'] list_processed_text: [['change'], ['mm'], ['package'], ['plant'], ['bom'], ['hi'], ['team'], ['need'], ['item'], ['related'], ['must'], ['replaced'], ['new'], ['package'], ['filled'], ['plant'], ['bom'], ['current'], ['change'], ['current'], ['change'], ['current'], ['change'], ['current'], ['change'], ['current'], ['change']] k: 4134 len: <class 'list'> Data: ['unable', 'get', 'audio', 'skype', 'meeting', 'unable', 'get', 'audio', 'skype', 'meeting'] processed_text: ['unable', 'get', 'audio', 'skype', 'meeting', 'unable', 'get', 'audio', 'skype', 'meeting'] list_processed_text: [['unable'], ['get'], ['audio'], ['skype'], ['meeting'], ['unable'], ['get'], ['audio'], ['skype'], ['meeting']] k: 4135 len: <class 'list'> Data: ['entering', 'power', 'save', 'mode', 'external', 'monitor', 'entering', 'power', 'save', 'mode', 'external', 'monitor'] processed_text: ['entering', 'power', 'save', 'mode', 'external', 'monitor', 'entering', 'power', 'save', 'mode', 'external', 'monitor'] list_processed_text: [['entering'], ['power'], ['save'], ['mode'], ['external'], ['monitor'], ['entering'], ['power'], ['save'], ['mode'], ['external'], ['monitor']] k: 4136 len: <class 'list'> Data: ['stop', 'hr', 'job', 'hi', 'tim', 'please', 'stop', 'attached', 'hr', 'job', 'immediate', 'effect', 'hr', 'hr'] processed_text: ['stop', 'hr', 'job', 'hi', 'tim', 'please', 'stop', 'attached', 'hr', 'job', 'immediate', 'effect', 'hr', 'hr'] list_processed_text: [['stop'], ['hr'], ['job'], ['hi'], ['tim'], ['please'], ['stop'], ['attached'], ['hr'], ['job'], ['immediate'], ['effect'], ['hr'], ['hr']] k: 4137 len: <class 'list'> Data: ['expense', 'report', 'error', 'manager', 'need', 'authorization', 'hello', 'spqrtkew', 'vpmnusaf', 'need', 'authorization', 'approve', 'expense', 'report', 'sqmabtwn', 'fchijage', 'one', 'team', 'correct', 'sqmabtwn', 'fchijage', 'reporting', 'avigtshay', 'expense', 'side', 'need', 'updated', 'error', 'getting'] processed_text: ['expense', 'report', 'error', 'manager', 'need', 'authorization', 'hello', 'spqrtkew', 'vpmnusaf', 'need', 'authorization', 'approve', 'expense', 'report', 'sqmabtwn', 'fchijage', 'one', 'team', 'correct', 'sqmabtwn', 'fchijage', 'reporting', 'avigtshay', 'expense', 'side', 'need', 'updated', 'error', 'getting'] list_processed_text: [['expense'], ['report'], ['error'], ['manager'], ['need'], ['authorization'], ['hello'], ['spqrtkew'], ['vpmnusaf'], ['need'], ['authorization'], ['approve'], ['expense'], ['report'], ['sqmabtwn'], ['fchijage'], ['one'], ['team'], ['correct'], ['sqmabtwn'], ['fchijage'], ['reporting'], ['avigtshay'], ['expense'], ['side'], ['need'], ['updated'], ['error'], ['getting']] k: 4138 len: <class 'list'> Data: ['unable', 'login', 'ethic', 'trying', 'login', 'ethic', 'user', 'get', 'following', 'error', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered'] processed_text: ['unable', 'login', 'ethic', 'trying', 'login', 'ethic', 'user', 'get', 'following', 'error', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered'] list_processed_text: [['unable'], ['login'], ['ethic'], ['trying'], ['login'], ['ethic'], ['user'], ['get'], ['following'], ['error'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered']] k: 4139 len: <class 'list'> Data: ['install', 'aiqjxhuv', 'dceghpwn', 'viewer', 'install', 'aiqjxhuv', 'dceghpwn', 'viewer', 'software', 'available', 'drive', 'temporary', 'aiqjxhuv', 'dceghpwn', 'viewer', 'subdirectory'] processed_text: ['install', 'aiqjxhuv', 'dceghpwn', 'viewer', 'install', 'aiqjxhuv', 'dceghpwn', 'viewer', 'software', 'available', 'drive', 'temporary', 'aiqjxhuv', 'dceghpwn', 'viewer', 'subdirectory'] list_processed_text: [['install'], ['aiqjxhuv'], ['dceghpwn'], ['viewer'], ['install'], ['aiqjxhuv'], ['dceghpwn'], ['viewer'], ['software'], ['available'], ['drive'], ['temporary'], ['aiqjxhuv'], ['dceghpwn'], ['viewer'], ['subdirectory']] k: 4140 len: <class 'list'> Data: ['urgent', 'request', 'complete', 'requirement', 'fy', 'ethic', 'module', 'working', 'together', 'promoting', 'mutual', 'respect', 'hello', 'please', 'advise', 'undeliverable', 'mail', 'person', 'still', 'company'] processed_text: ['urgent', 'request', 'complete', 'requirement', 'fy', 'ethic', 'module', 'working', 'together', 'promoting', 'mutual', 'respect', 'hello', 'please', 'advise', 'undeliverable', 'mail', 'person', 'still', 'company'] list_processed_text: [['urgent'], ['request'], ['complete'], ['requirement'], ['fy'], ['ethic'], ['module'], ['working'], ['together'], ['promoting'], ['mutual'], ['respect'], ['hello'], ['please'], ['advise'], ['undeliverable'], ['mail'], ['person'], ['still'], ['company']] k: 4141 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4142 len: <class 'list'> Data: ['able', 'lopgin', 'collaboration', 'platform', 'using', 'email', 'address', 'able', 'login', 'collaboration', 'platform', 'using', 'email', 'address', 'change', 'setting', 'extension', 'attribute', 'editor', 'asked', 'user', 'login', 'time'] processed_text: ['able', 'lopgin', 'collaboration', 'platform', 'using', 'email', 'address', 'able', 'login', 'collaboration', 'platform', 'using', 'email', 'address', 'change', 'setting', 'extension', 'attribute', 'editor', 'asked', 'user', 'login', 'time'] list_processed_text: [['able'], ['lopgin'], ['collaboration'], ['platform'], ['using'], ['email'], ['address'], ['able'], ['login'], ['collaboration'], ['platform'], ['using'], ['email'], ['address'], ['change'], ['setting'], ['extension'], ['attribute'], ['editor'], ['asked'], ['user'], ['login'], ['time']] k: 4143 len: <class 'list'> Data: ['ship', 'created', 'visible', 'erp', 'customermaster', 'pm', 'repyzajo', 'lxfwopyq', 'customermaster', 'nwfodmhc', 'exurcwkm', 'fctmzhyk', 'cznlfbom', 'amar', 'ship', 'created', 'visible', 'erp', 'importance', 'high', 'ship', 'account', 'created', 'crm', 'hr', 'ago', 'still', 'visible', 'ecc', 'sid', 'required', 'field', 'completed', 'please', 'advise', 'account', 'replicated', 'sid', 'account', 'needed', 'additional', 'action', 'nkthumgf', 'mwgdenbs', 'ph', 'repyzajo', 'lxfwopyq', 'customermaster', 'fctmzhyk', 'cznlfbom', 'ship', 'created', 'visible', 'erp', 'importance', 'high', 'hello', 'customer', 'master', 'team', 'created', 'new', 'ship', 'address', 'sold', 'account', 'set', 'correctly', 'visible', 'crm', 'hour', 'still', 'visible', 'erp', 'could', 'please', 'help', 'best'] processed_text: ['ship', 'created', 'visible', 'erp', 'customermaster', 'pm', 'repyzajo', 'lxfwopyq', 'customermaster', 'nwfodmhc', 'exurcwkm', 'fctmzhyk', 'cznlfbom', 'amar', 'ship', 'created', 'visible', 'erp', 'importance', 'high', 'ship', 'account', 'created', 'crm', 'hr', 'ago', 'still', 'visible', 'ecc', 'sid', 'required', 'field', 'completed', 'please', 'advise', 'account', 'replicated', 'sid', 'account', 'needed', 'additional', 'action', 'nkthumgf', 'mwgdenbs', 'ph', 'repyzajo', 'lxfwopyq', 'customermaster', 'fctmzhyk', 'cznlfbom', 'ship', 'created', 'visible', 'erp', 'importance', 'high', 'hello', 'customer', 'master', 'team', 'created', 'new', 'ship', 'address', 'sold', 'account', 'set', 'correctly', 'visible', 'crm', 'hour', 'still', 'visible', 'erp', 'could', 'please', 'help', 'best'] list_processed_text: [['ship'], ['created'], ['visible'], ['erp'], ['customermaster'], ['pm'], ['repyzajo'], ['lxfwopyq'], ['customermaster'], ['nwfodmhc'], ['exurcwkm'], ['fctmzhyk'], ['cznlfbom'], ['amar'], ['ship'], ['created'], ['visible'], ['erp'], ['importance'], ['high'], ['ship'], ['account'], ['created'], ['crm'], ['hr'], ['ago'], ['still'], ['visible'], ['ecc'], ['sid'], ['required'], ['field'], ['completed'], ['please'], ['advise'], ['account'], ['replicated'], ['sid'], ['account'], ['needed'], ['additional'], ['action'], ['nkthumgf'], ['mwgdenbs'], ['ph'], ['repyzajo'], ['lxfwopyq'], ['customermaster'], ['fctmzhyk'], ['cznlfbom'], ['ship'], ['created'], ['visible'], ['erp'], ['importance'], ['high'], ['hello'], ['customer'], ['master'], ['team'], ['created'], ['new'], ['ship'], ['address'], ['sold'], ['account'], ['set'], ['correctly'], ['visible'], ['crm'], ['hour'], ['still'], ['visible'], ['erp'], ['could'], ['please'], ['help'], ['best']] k: 4144 len: <class 'list'> Data: ['request', 'install', 'adobe', 'acrobat', 'software', 'request', 'install', 'adobe', 'acrobat', 'software', 'maintenance', 'creation', 'various', 'document', 'import', 'export'] processed_text: ['request', 'install', 'adobe', 'acrobat', 'software', 'request', 'install', 'adobe', 'acrobat', 'software', 'maintenance', 'creation', 'various', 'document', 'import', 'export'] list_processed_text: [['request'], ['install'], ['adobe'], ['acrobat'], ['software'], ['request'], ['install'], ['adobe'], ['acrobat'], ['software'], ['maintenance'], ['creation'], ['various'], ['document'], ['import'], ['export']] k: 4145 len: <class 'list'> Data: ['analysis', 'office', 'hana', 'access', 'user', 'without', 'access', 'hana', 'hello', 'within', 'european', 'pricing', 'team', 'experiencing', 'user', 'trouble', 'getting', 'right', 'connection', 'business', 'explorer', 'hana', 'receive', 'couple', 'ticket', 'showing', 'error', 'behavior', 'hope', 'quick', 'resolution', 'user', 'uylvgtfi', 'eovkxgpn', 'germany', 'location', 'attachment', 'set', 'instruction', 'using', 'error', 'log', 'screenshot', 'setup', 'machine', 'completed', 'local', 'best'] processed_text: ['analysis', 'office', 'hana', 'access', 'user', 'without', 'access', 'hana', 'hello', 'within', 'european', 'pricing', 'team', 'experiencing', 'user', 'trouble', 'getting', 'right', 'connection', 'business', 'explorer', 'hana', 'receive', 'couple', 'ticket', 'showing', 'error', 'behavior', 'hope', 'quick', 'resolution', 'user', 'uylvgtfi', 'eovkxgpn', 'germany', 'location', 'attachment', 'set', 'instruction', 'using', 'error', 'log', 'screenshot', 'setup', 'machine', 'completed', 'local', 'best'] list_processed_text: [['analysis'], ['office'], ['hana'], ['access'], ['user'], ['without'], ['access'], ['hana'], ['hello'], ['within'], ['european'], ['pricing'], ['team'], ['experiencing'], ['user'], ['trouble'], ['getting'], ['right'], ['connection'], ['business'], ['explorer'], ['hana'], ['receive'], ['couple'], ['ticket'], ['showing'], ['error'], ['behavior'], ['hope'], ['quick'], ['resolution'], ['user'], ['uylvgtfi'], ['eovkxgpn'], ['germany'], ['location'], ['attachment'], ['set'], ['instruction'], ['using'], ['error'], ['log'], ['screenshot'], ['setup'], ['machine'], ['completed'], ['local'], ['best']] k: 4146 len: <class 'list'> Data: ['vendor', 'customer', 'balance', 'local', 'currency', 'list', 'alr', 'alr', 'help', 'desk', 'fy', 'end', 'month', 'balance', 'alr', 'different', 'trial', 'balance', 'previous', 'month', 'end', 'balance', 'zero', 'alr', 'condition', 'fy', 'previous', 'month', 'end', 'balance', 'appear', 'end', 'month', 'balance', 'match', 'alr', 'cause'] processed_text: ['vendor', 'customer', 'balance', 'local', 'currency', 'list', 'alr', 'alr', 'help', 'desk', 'fy', 'end', 'month', 'balance', 'alr', 'different', 'trial', 'balance', 'previous', 'month', 'end', 'balance', 'zero', 'alr', 'condition', 'fy', 'previous', 'month', 'end', 'balance', 'appear', 'end', 'month', 'balance', 'match', 'alr', 'cause'] list_processed_text: [['vendor'], ['customer'], ['balance'], ['local'], ['currency'], ['list'], ['alr'], ['alr'], ['help'], ['desk'], ['fy'], ['end'], ['month'], ['balance'], ['alr'], ['different'], ['trial'], ['balance'], ['previous'], ['month'], ['end'], ['balance'], ['zero'], ['alr'], ['condition'], ['fy'], ['previous'], ['month'], ['end'], ['balance'], ['appear'], ['end'], ['month'], ['balance'], ['match'], ['alr'], ['cause']] k: 4147 len: <class 'list'> Data: ['erp', 'access', 'issue', 'passward', 'set', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'arrojhsjd', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'passward', 'set', 'sid', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'arrojhsjd', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['passward'], ['set'], ['sid'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['arrojhsjd'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 4148 len: <class 'list'> Data: ['wireless', 'working', 'wireless', 'working'] processed_text: ['wireless', 'working', 'wireless', 'working'] list_processed_text: [['wireless'], ['working'], ['wireless'], ['working']] k: 4149 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 4150 len: <class 'list'> Data: ['need', 'access', 'shop', 'floor', 'app', 'corrected', 'access', 'update', 'work', 'center', 'shop', 'floor', 'app', 'access', 'system', 'tab', 'shop', 'floor', 'app', 'look', 'like', 'missing', 'item'] processed_text: ['need', 'access', 'shop', 'floor', 'app', 'corrected', 'access', 'update', 'work', 'center', 'shop', 'floor', 'app', 'access', 'system', 'tab', 'shop', 'floor', 'app', 'look', 'like', 'missing', 'item'] list_processed_text: [['need'], ['access'], ['shop'], ['floor'], ['app'], ['corrected'], ['access'], ['update'], ['work'], ['center'], ['shop'], ['floor'], ['app'], ['access'], ['system'], ['tab'], ['shop'], ['floor'], ['app'], ['look'], ['like'], ['missing'], ['item']] k: 4151 len: <class 'list'> Data: ['virus', 'issue', 'google', 'map', 'issue', 'virus', 'issue', 'google', 'map', 'issue'] processed_text: ['virus', 'issue', 'google', 'map', 'issue', 'virus', 'issue', 'google', 'map', 'issue'] list_processed_text: [['virus'], ['issue'], ['google'], ['map'], ['issue'], ['virus'], ['issue'], ['google'], ['map'], ['issue']] k: 4152 len: <class 'list'> Data: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] processed_text: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] list_processed_text: [['unable'], ['install'], ['engineering'], ['tool'], ['unable'], ['install'], ['engineering'], ['tool']] k: 4153 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 4154 len: <class 'list'> Data: ['johghajknn', 'needed', 'information', 'password', 'johghajknn', 'needed', 'information', 'password'] processed_text: ['johghajknn', 'needed', 'information', 'password', 'johghajknn', 'needed', 'information', 'password'] list_processed_text: [['johghajknn'], ['needed'], ['information'], ['password'], ['johghajknn'], ['needed'], ['information'], ['password']] k: 4155 len: <class 'list'> Data: ['unable', 'launch', 'engineering', 'tool', 'name', 'stefyty', 'hipghkinjyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'engineering', 'tool', 'failed', 'load', 'error', 'log', 'available', 'large', 'paste'] processed_text: ['unable', 'launch', 'engineering', 'tool', 'name', 'stefyty', 'hipghkinjyt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'engineering', 'tool', 'failed', 'load', 'error', 'log', 'available', 'large', 'paste'] list_processed_text: [['unable'], ['launch'], ['engineering'], ['tool'], ['name'], ['stefyty'], ['hipghkinjyt'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['engineering'], ['tool'], ['failed'], ['load'], ['error'], ['log'], ['available'], ['large'], ['paste']] k: 4156 len: <class 'list'> Data: ['unlocked', 'account', 'unlocked', 'account'] processed_text: ['unlocked', 'account', 'unlocked', 'account'] list_processed_text: [['unlocked'], ['account'], ['unlocked'], ['account']] k: 4157 len: <class 'list'> Data: ['explanation', 'password', 'manager', 'required', 'explanation', 'password', 'manager', 'required'] processed_text: ['explanation', 'password', 'manager', 'required', 'explanation', 'password', 'manager', 'required'] list_processed_text: [['explanation'], ['password'], ['manager'], ['required'], ['explanation'], ['password'], ['manager'], ['required']] k: 4158 len: <class 'list'> Data: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] processed_text: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] list_processed_text: [['unable'], ['connect'], ['wireless'], ['unable'], ['connect'], ['wireless']] k: 4159 len: <class 'list'> Data: ['mjvfxnka', 'zvjxuahe', 'able', 'add', 'campaign', 'global', 'hard', 'machining', 'opportunity', 'user', 'add', 'campaign', 'opportstorage', 'product', 'hit', 'save', 'crm', 'delivers', 'error', 'privilages', 'perform', 'action', 'log', 'file', 'screenshot', 'attached', 'eva'] processed_text: ['mjvfxnka', 'zvjxuahe', 'able', 'add', 'campaign', 'global', 'hard', 'machining', 'opportunity', 'user', 'add', 'campaign', 'opportstorage', 'product', 'hit', 'save', 'crm', 'delivers', 'error', 'privilages', 'perform', 'action', 'log', 'file', 'screenshot', 'attached', 'eva'] list_processed_text: [['mjvfxnka'], ['zvjxuahe'], ['able'], ['add'], ['campaign'], ['global'], ['hard'], ['machining'], ['opportunity'], ['user'], ['add'], ['campaign'], ['opportstorage'], ['product'], ['hit'], ['save'], ['crm'], ['delivers'], ['error'], ['privilages'], ['perform'], ['action'], ['log'], ['file'], ['screenshot'], ['attached'], ['eva']] k: 4160 len: <class 'list'> Data: ['install', 'pdfmailer', 'ahlqgjwx', 'wbsfavhg', 'install', 'pdfmailer', 'ahlqgjwx', 'wbsfavhg'] processed_text: ['install', 'pdfmailer', 'ahlqgjwx', 'wbsfavhg', 'install', 'pdfmailer', 'ahlqgjwx', 'wbsfavhg'] list_processed_text: [['install'], ['pdfmailer'], ['ahlqgjwx'], ['wbsfavhg'], ['install'], ['pdfmailer'], ['ahlqgjwx'], ['wbsfavhg']] k: 4161 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] processed_text: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['unable'], ['connect'], ['wifi']] k: 4162 len: <class 'list'> Data: ['password', 'change', 'outlook', 'changed', 'password', 'morning', 'cannot', 'open', 'outlook', 'happened', 'last', 'time', 'also', 'crm', 'issue', 'happens', 'password', 'changed', 'high', 'importance', 'xkegcqov', 'drctxjqi', 'application', 'engineer', 'cmp', 'industrial', 'segment'] processed_text: ['password', 'change', 'outlook', 'changed', 'password', 'morning', 'cannot', 'open', 'outlook', 'happened', 'last', 'time', 'also', 'crm', 'issue', 'happens', 'password', 'changed', 'high', 'importance', 'xkegcqov', 'drctxjqi', 'application', 'engineer', 'cmp', 'industrial', 'segment'] list_processed_text: [['password'], ['change'], ['outlook'], ['changed'], ['password'], ['morning'], ['cannot'], ['open'], ['outlook'], ['happened'], ['last'], ['time'], ['also'], ['crm'], ['issue'], ['happens'], ['password'], ['changed'], ['high'], ['importance'], ['xkegcqov'], ['drctxjqi'], ['application'], ['engineer'], ['cmp'], ['industrial'], ['segment']] k: 4163 len: <class 'list'> Data: ['installl', 'bex', 'analysis', 'add', 'installl', 'bex', 'analysis', 'add'] processed_text: ['installl', 'bex', 'analysis', 'add', 'installl', 'bex', 'analysis', 'add'] list_processed_text: [['installl'], ['bex'], ['analysis'], ['add'], ['installl'], ['bex'], ['analysis'], ['add']] k: 4164 len: <class 'list'> Data: ['laptop', 'battery', 'need', 'replaced', 'aerp', 'service', 'tag', 'ddp', 'laptop', 'battery', 'need', 'replaced', 'aerp', 'battery', 'backup', 'poor', 'laptop', 'powering', 'remove', 'docking', 'station', 'service', 'tag', 'ddp', 'laptop', 'model', 'dell', 'latitude', 'e'] processed_text: ['laptop', 'battery', 'need', 'replaced', 'aerp', 'service', 'tag', 'ddp', 'laptop', 'battery', 'need', 'replaced', 'aerp', 'battery', 'backup', 'poor', 'laptop', 'powering', 'remove', 'docking', 'station', 'service', 'tag', 'ddp', 'laptop', 'model', 'dell', 'latitude', 'e'] list_processed_text: [['laptop'], ['battery'], ['need'], ['replaced'], ['aerp'], ['service'], ['tag'], ['ddp'], ['laptop'], ['battery'], ['need'], ['replaced'], ['aerp'], ['battery'], ['backup'], ['poor'], ['laptop'], ['powering'], ['remove'], ['docking'], ['station'], ['service'], ['tag'], ['ddp'], ['laptop'], ['model'], ['dell'], ['latitude'], ['e']] k: 4165 len: <class 'list'> Data: ['original', 'dir', 'manufacturing', 'waiting', 'original', 'file', 'created', 'dir', 'fr', 'production', 'hold', 'waiting', 'file'] processed_text: ['original', 'dir', 'manufacturing', 'waiting', 'original', 'file', 'created', 'dir', 'fr', 'production', 'hold', 'waiting', 'file'] list_processed_text: [['original'], ['dir'], ['manufacturing'], ['waiting'], ['original'], ['file'], ['created'], ['dir'], ['fr'], ['production'], ['hold'], ['waiting'], ['file']] k: 4166 len: <class 'list'> Data: ['network', 'connection', 'working', 'agathon', 'combi', 'machine', 'hello', 'network', 'connection', 'working', 'agathon', 'combi', 'machine', 'please', 'take', 'look', 'thank', 'gru', 'marftgytin'] processed_text: ['network', 'connection', 'working', 'agathon', 'combi', 'machine', 'hello', 'network', 'connection', 'working', 'agathon', 'combi', 'machine', 'please', 'take', 'look', 'thank', 'gru', 'marftgytin'] list_processed_text: [['network'], ['connection'], ['working'], ['agathon'], ['combi'], ['machine'], ['hello'], ['network'], ['connection'], ['working'], ['agathon'], ['combi'], ['machine'], ['please'], ['take'], ['look'], ['thank'], ['gru'], ['marftgytin']] k: 4167 len: <class 'list'> Data: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] processed_text: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] list_processed_text: [['unable'], ['install'], ['engineering'], ['tool'], ['unable'], ['install'], ['engineering'], ['tool']] k: 4168 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 4169 len: <class 'list'> Data: ['skype', 'audio', 'issue', 'person', 'unable', 'hear', 'warehouse', 'tool', 'skype', 'call'] processed_text: ['skype', 'audio', 'issue', 'person', 'unable', 'hear', 'warehouse', 'tool', 'skype', 'call'] list_processed_text: [['skype'], ['audio'], ['issue'], ['person'], ['unable'], ['hear'], ['warehouse'], ['tool'], ['skype'], ['call']] k: 4170 len: <class 'list'> Data: ['space', 'requirement', 'grinding', 'drive', 'dear', 'sir', 'madam', 'space', 'available', 'grinding', 'drive', 'mb', 'please', 'provide', 'additional', 'space', 'drive', 'earliest'] processed_text: ['space', 'requirement', 'grinding', 'drive', 'dear', 'sir', 'madam', 'space', 'available', 'grinding', 'drive', 'mb', 'please', 'provide', 'additional', 'space', 'drive', 'earliest'] list_processed_text: [['space'], ['requirement'], ['grinding'], ['drive'], ['dear'], ['sir'], ['madam'], ['space'], ['available'], ['grinding'], ['drive'], ['mb'], ['please'], ['provide'], ['additional'], ['space'], ['drive'], ['earliest']] k: 4171 len: <class 'list'> Data: ['network', 'outage', 'india', 'india', 'vpn', 'circuit', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'india', 'vpn', 'circuit', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['india'], ['vpn'], ['circuit'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4172 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 4173 len: <class 'list'> Data: ['need', 'telephony', 'software', 'installed', 'ebhl', 'xwgnvksi', 'dwijxgob', 'urgent', 'csr', 'cannot', 'take', 'call', 'need', 'telephony', 'software', 'installed', 'ebhl', 'xwgnvksi', 'dwijxgob', 'please', 'contact', 'karghyuen', 'via', 'skype', 'remote', 'installation', 'zmgsfner', 'caltmgoe', 'phone'] processed_text: ['need', 'telephony', 'software', 'installed', 'ebhl', 'xwgnvksi', 'dwijxgob', 'urgent', 'csr', 'cannot', 'take', 'call', 'need', 'telephony', 'software', 'installed', 'ebhl', 'xwgnvksi', 'dwijxgob', 'please', 'contact', 'karghyuen', 'via', 'skype', 'remote', 'installation', 'zmgsfner', 'caltmgoe', 'phone'] list_processed_text: [['need'], ['telephony'], ['software'], ['installed'], ['ebhl'], ['xwgnvksi'], ['dwijxgob'], ['urgent'], ['csr'], ['cannot'], ['take'], ['call'], ['need'], ['telephony'], ['software'], ['installed'], ['ebhl'], ['xwgnvksi'], ['dwijxgob'], ['please'], ['contact'], ['karghyuen'], ['via'], ['skype'], ['remote'], ['installation'], ['zmgsfner'], ['caltmgoe'], ['phone']] k: 4174 len: <class 'list'> Data: ['call', 'check', 'hybegvwo', 'dbgrtqhs', 'account', 'disabled', 'call', 'check', 'hybegvwo', 'dbgrtqhs', 'account', 'disabled'] processed_text: ['call', 'check', 'hybegvwo', 'dbgrtqhs', 'account', 'disabled', 'call', 'check', 'hybegvwo', 'dbgrtqhs', 'account', 'disabled'] list_processed_text: [['call'], ['check'], ['hybegvwo'], ['dbgrtqhs'], ['account'], ['disabled'], ['call'], ['check'], ['hybegvwo'], ['dbgrtqhs'], ['account'], ['disabled']] k: 4175 len: <class 'list'> Data: ['revised', 'price', 'local', 'hi', 'make', 'sure', 'fact', 'please', 'please', 'confirm', 'customer', 'valid', 'statement', 'complaining', 'service', 'response', 'mail', 'info', 'forwarded', 'please', 'copy', 'comment', 'janhytrn', 'ooshstyizen', 'sale', 'manager', 'construction', 'sa', 'new', 'road', 'king', 'bit', 'catalog', 'johan', 'kok', 'mail', 'jofghan', 'kddok', 'janhytrn', 'ooshstyizen', 'hennidgtydhyue', 'booysen', 'revised', 'price', 'local', 'hi', 'request', 'please', 'could', 'ensure', 'mail', 'administrator', 'wherever', 'world', 'sits', 'could', 'fix', 'message', 'created', 'automatically', 'mail', 'delivery', 'software', 'message', 'sent', 'could', 'delivered', 'one', 'recipient', 'permanent', 'error', 'following', 'address', 'e', 'failed', 'host', 'company', 'com', 'mail', 'protection', 'outlook', 'com', 'smtp', 'error', 'remote', 'mail', 'server', 'rcpt', 'service', 'unavailable', 'client', 'host', 'blocked', 'using', 'customer', 'block', 'list'] processed_text: ['revised', 'price', 'local', 'hi', 'make', 'sure', 'fact', 'please', 'please', 'confirm', 'customer', 'valid', 'statement', 'complaining', 'service', 'response', 'mail', 'info', 'forwarded', 'please', 'copy', 'comment', 'janhytrn', 'ooshstyizen', 'sale', 'manager', 'construction', 'sa', 'new', 'road', 'king', 'bit', 'catalog', 'johan', 'kok', 'mail', 'jofghan', 'kddok', 'janhytrn', 'ooshstyizen', 'hennidgtydhyue', 'booysen', 'revised', 'price', 'local', 'hi', 'request', 'please', 'could', 'ensure', 'mail', 'administrator', 'wherever', 'world', 'sits', 'could', 'fix', 'message', 'created', 'automatically', 'mail', 'delivery', 'software', 'message', 'sent', 'could', 'delivered', 'one', 'recipient', 'permanent', 'error', 'following', 'address', 'e', 'failed', 'host', 'company', 'com', 'mail', 'protection', 'outlook', 'com', 'smtp', 'error', 'remote', 'mail', 'server', 'rcpt', 'service', 'unavailable', 'client', 'host', 'blocked', 'using', 'customer', 'block', 'list'] list_processed_text: [['revised'], ['price'], ['local'], ['hi'], ['make'], ['sure'], ['fact'], ['please'], ['please'], ['confirm'], ['customer'], ['valid'], ['statement'], ['complaining'], ['service'], ['response'], ['mail'], ['info'], ['forwarded'], ['please'], ['copy'], ['comment'], ['janhytrn'], ['ooshstyizen'], ['sale'], ['manager'], ['construction'], ['sa'], ['new'], ['road'], ['king'], ['bit'], ['catalog'], ['johan'], ['kok'], ['mail'], ['jofghan'], ['kddok'], ['janhytrn'], ['ooshstyizen'], ['hennidgtydhyue'], ['booysen'], ['revised'], ['price'], ['local'], ['hi'], ['request'], ['please'], ['could'], ['ensure'], ['mail'], ['administrator'], ['wherever'], ['world'], ['sits'], ['could'], ['fix'], ['message'], ['created'], ['automatically'], ['mail'], ['delivery'], ['software'], ['message'], ['sent'], ['could'], ['delivered'], ['one'], ['recipient'], ['permanent'], ['error'], ['following'], ['address'], ['e'], ['failed'], ['host'], ['company'], ['com'], ['mail'], ['protection'], ['outlook'], ['com'], ['smtp'], ['error'], ['remote'], ['mail'], ['server'], ['rcpt'], ['service'], ['unavailable'], ['client'], ['host'], ['blocked'], ['using'], ['customer'], ['block'], ['list']] k: 4176 len: <class 'list'> Data: ['wunderlist', 'add', 'hello', 'use', 'microsoft', 'mobile', 'phone', 'outlook', 'mobile', 'task', 'available', 'use', 'wunderlist', 'add', 'app', 'outlook', 'add', 'starting', 'best'] processed_text: ['wunderlist', 'add', 'hello', 'use', 'microsoft', 'mobile', 'phone', 'outlook', 'mobile', 'task', 'available', 'use', 'wunderlist', 'add', 'app', 'outlook', 'add', 'starting', 'best'] list_processed_text: [['wunderlist'], ['add'], ['hello'], ['use'], ['microsoft'], ['mobile'], ['phone'], ['outlook'], ['mobile'], ['task'], ['available'], ['use'], ['wunderlist'], ['add'], ['app'], ['outlook'], ['add'], ['starting'], ['best']] k: 4177 len: <class 'list'> Data: ['longer', 'see', 'travel', 'expense', 'report', 'erp', 'transaction', 'pr', 'longer', 'see', 'travel', 'expense', 'report', 'erp', 'transaction', 'pr', 'message', 'infotype', 'exist', 'pers', 'appears'] processed_text: ['longer', 'see', 'travel', 'expense', 'report', 'erp', 'transaction', 'pr', 'longer', 'see', 'travel', 'expense', 'report', 'erp', 'transaction', 'pr', 'message', 'infotype', 'exist', 'pers', 'appears'] list_processed_text: [['longer'], ['see'], ['travel'], ['expense'], ['report'], ['erp'], ['transaction'], ['pr'], ['longer'], ['see'], ['travel'], ['expense'], ['report'], ['erp'], ['transaction'], ['pr'], ['message'], ['infotype'], ['exist'], ['pers'], ['appears']] k: 4178 len: <class 'list'> Data: ['getting', 'communication', 'attendance', 'tool', 'system', 'following', 'clock', 'request', 'check', 'priority', 'getting', 'communication', 'attendance', 'tool', 'system', 'following', 'clock', 'request', 'check', 'priority'] processed_text: ['getting', 'communication', 'attendance', 'tool', 'system', 'following', 'clock', 'request', 'check', 'priority', 'getting', 'communication', 'attendance', 'tool', 'system', 'following', 'clock', 'request', 'check', 'priority'] list_processed_text: [['getting'], ['communication'], ['attendance'], ['tool'], ['system'], ['following'], ['clock'], ['request'], ['check'], ['priority'], ['getting'], ['communication'], ['attendance'], ['tool'], ['system'], ['following'], ['clock'], ['request'], ['check'], ['priority']] k: 4179 len: <class 'list'> Data: ['swap', 'printer', 'gogtyek', 'swap', 'printer', 'gogtyek'] processed_text: ['swap', 'printer', 'gogtyek', 'swap', 'printer', 'gogtyek'] list_processed_text: [['swap'], ['printer'], ['gogtyek'], ['swap'], ['printer'], ['gogtyek']] k: 4180 len: <class 'list'> Data: ['account', 'thomafghk', 'disabled', 'hello', 'someone', 'disabled', 'ad', 'account', 'hybegvwo', 'dbgrtqhs', 'thomafghk', 'day', 'ago', 'could', 'please', 'reactivate', 'tell', 'u', 'disabled', 'changed', 'location', 'switzerland', 'germany', 'still', 'employee', 'michghytuael', 'manager', 'hybegvwo', 'dbgrtqhs', 'mathyuithihyt', 'director', 'hr', 'please', 'confirm', 'still', 'working', 'company'] processed_text: ['account', 'thomafghk', 'disabled', 'hello', 'someone', 'disabled', 'ad', 'account', 'hybegvwo', 'dbgrtqhs', 'thomafghk', 'day', 'ago', 'could', 'please', 'reactivate', 'tell', 'u', 'disabled', 'changed', 'location', 'switzerland', 'germany', 'still', 'employee', 'michghytuael', 'manager', 'hybegvwo', 'dbgrtqhs', 'mathyuithihyt', 'director', 'hr', 'please', 'confirm', 'still', 'working', 'company'] list_processed_text: [['account'], ['thomafghk'], ['disabled'], ['hello'], ['someone'], ['disabled'], ['ad'], ['account'], ['hybegvwo'], ['dbgrtqhs'], ['thomafghk'], ['day'], ['ago'], ['could'], ['please'], ['reactivate'], ['tell'], ['u'], ['disabled'], ['changed'], ['location'], ['switzerland'], ['germany'], ['still'], ['employee'], ['michghytuael'], ['manager'], ['hybegvwo'], ['dbgrtqhs'], ['mathyuithihyt'], ['director'], ['hr'], ['please'], ['confirm'], ['still'], ['working'], ['company']] k: 4181 len: <class 'list'> Data: ['problem', 'outlook', 'engracia', 'gonzales', 'fernandez', 'problem', 'outlook', 'engracia', 'gonzales', 'fernandez'] processed_text: ['problem', 'outlook', 'engracia', 'gonzales', 'fernandez', 'problem', 'outlook', 'engracia', 'gonzales', 'fernandez'] list_processed_text: [['problem'], ['outlook'], ['engracia'], ['gonzales'], ['fernandez'], ['problem'], ['outlook'], ['engracia'], ['gonzales'], ['fernandez']] k: 4182 len: <class 'list'> Data: ['kpobysnc', 'tqvefyui', 'mail', 'box', 'need', 'approved', 'nad', 'uacyltoe', 'hxgaycze', 'enable', 'please', 'approve', 'mailbox', 'kpobysnc', 'tqvefyui', 'user', 'following', 'environment', 'uacyltoe', 'hxgaycze', 'tempdev', 'train', 'prod'] processed_text: ['kpobysnc', 'tqvefyui', 'mail', 'box', 'need', 'approved', 'nad', 'uacyltoe', 'hxgaycze', 'enable', 'please', 'approve', 'mailbox', 'kpobysnc', 'tqvefyui', 'user', 'following', 'environment', 'uacyltoe', 'hxgaycze', 'tempdev', 'train', 'prod'] list_processed_text: [['kpobysnc'], ['tqvefyui'], ['mail'], ['box'], ['need'], ['approved'], ['nad'], ['uacyltoe'], ['hxgaycze'], ['enable'], ['please'], ['approve'], ['mailbox'], ['kpobysnc'], ['tqvefyui'], ['user'], ['following'], ['environment'], ['uacyltoe'], ['hxgaycze'], ['tempdev'], ['train'], ['prod']] k: 4183 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'colleague', 'opened', 'ticket', 'issue', 'spain', 'sale', 'org', 'portugal', 'sale', 'org', 'ticket', 'inc', 'best'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'colleague', 'opened', 'ticket', 'issue', 'spain', 'sale', 'org', 'portugal', 'sale', 'org', 'ticket', 'inc', 'best'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['colleague'], ['opened'], ['ticket'], ['issue'], ['spain'], ['sale'], ['org'], ['portugal'], ['sale'], ['org'], ['ticket'], ['inc'], ['best']] k: 4184 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'error', 'cannot', 'authenticate', 'user', 'soap', 'fault', 'detail', 'endpoint', 'soap', 'connection', 'available', 'connection', 'id', 'hostname', 'company', 'company', 'com', 'failed', 'create', 'nfc', 'download', 'stream', 'nfc', 'path', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'error', 'cannot', 'authenticate', 'user', 'soap', 'fault', 'detail', 'endpoint', 'soap', 'connection', 'available', 'connection', 'id', 'hostname', 'company', 'company', 'com', 'failed', 'create', 'nfc', 'download', 'stream', 'nfc', 'path', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['error'], ['cannot'], ['authenticate'], ['user'], ['soap'], ['fault'], ['detail'], ['endpoint'], ['soap'], ['connection'], ['available'], ['connection'], ['id'], ['hostname'], ['company'], ['company'], ['com'], ['failed'], ['create'], ['nfc'], ['download'], ['stream'], ['nfc'], ['path'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4185 len: <class 'list'> Data: ['network', 'access', 'vahjtusa', 'wenghtyele', 'rth', 'network', 'drive', 'required', 'folder', 'eagcldaten', 'team', 'gpc', 'access', 'read', 'write', 'user', 'id', 'weghyndlv'] processed_text: ['network', 'access', 'vahjtusa', 'wenghtyele', 'rth', 'network', 'drive', 'required', 'folder', 'eagcldaten', 'team', 'gpc', 'access', 'read', 'write', 'user', 'id', 'weghyndlv'] list_processed_text: [['network'], ['access'], ['vahjtusa'], ['wenghtyele'], ['rth'], ['network'], ['drive'], ['required'], ['folder'], ['eagcldaten'], ['team'], ['gpc'], ['access'], ['read'], ['write'], ['user'], ['id'], ['weghyndlv']] k: 4186 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsid', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'aborting', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'critical', 'lhqsid', 'company', 'company', 'com', 'time', 'ipc', 'failure', 'reading', 'net', 'message', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'aborting', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['critical'], ['lhqsid'], ['company'], ['company'], ['com'], ['time'], ['ipc'], ['failure'], ['reading'], ['net'], ['message'], ['ipc'], ['read'], ['error'], ['system'], ['error'], ['connection'], ['reset'], ['peer'], ['aborting'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4187 len: <class 'list'> Data: ['network', 'outage', 'usa', 'mi', 'brembo', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'mi', 'brembo', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['mi'], ['brembo'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4188 len: <class 'list'> Data: ['problem', 'erpgui', 'vsdtxwry', 'ngkcdjye', 'problem', 'erpgui', 'vsdtxwry', 'ngkcdjye'] processed_text: ['problem', 'erpgui', 'vsdtxwry', 'ngkcdjye', 'problem', 'erpgui', 'vsdtxwry', 'ngkcdjye'] list_processed_text: [['problem'], ['erpgui'], ['vsdtxwry'], ['ngkcdjye'], ['problem'], ['erpgui'], ['vsdtxwry'], ['ngkcdjye']] k: 4189 len: <class 'list'> Data: ['many', 'user', 'germany', 'location', 'earlier', 'germany', 'complaining', 'response', 'time', 'issue', 'erp', 'experiancing', 'slow', 'response', 'time', 'location', 'erp', 'various', 'transaction', 'va', 'va', 'va', 'va', 'md', 'etc', 'currentlyx', 'server', 'axhg', 'mine', 'ok', 'others', 'complain', 'server', 'hostname', 'experienced', 'also', 'issue', 'heard', 'least', 'server', 'issue', 'hostname', 'please', 'check', 'network', 'connection', 'advise'] processed_text: ['many', 'user', 'germany', 'location', 'earlier', 'germany', 'complaining', 'response', 'time', 'issue', 'erp', 'experiancing', 'slow', 'response', 'time', 'location', 'erp', 'various', 'transaction', 'va', 'va', 'va', 'va', 'md', 'etc', 'currentlyx', 'server', 'axhg', 'mine', 'ok', 'others', 'complain', 'server', 'hostname', 'experienced', 'also', 'issue', 'heard', 'least', 'server', 'issue', 'hostname', 'please', 'check', 'network', 'connection', 'advise'] list_processed_text: [['many'], ['user'], ['germany'], ['location'], ['earlier'], ['germany'], ['complaining'], ['response'], ['time'], ['issue'], ['erp'], ['experiancing'], ['slow'], ['response'], ['time'], ['location'], ['erp'], ['various'], ['transaction'], ['va'], ['va'], ['va'], ['va'], ['md'], ['etc'], ['currentlyx'], ['server'], ['axhg'], ['mine'], ['ok'], ['others'], ['complain'], ['server'], ['hostname'], ['experienced'], ['also'], ['issue'], ['heard'], ['least'], ['server'], ['issue'], ['hostname'], ['please'], ['check'], ['network'], ['connection'], ['advise']] k: 4190 len: <class 'list'> Data: ['erp', 'zload', 'releasing', 'order', 'vsid', 'take', 'much', 'long', 'please', 'check', 'erp', 'response', 'time', 'especially', 'zload', 'take', 'much', 'long', 'anfghyudrejy'] processed_text: ['erp', 'zload', 'releasing', 'order', 'vsid', 'take', 'much', 'long', 'please', 'check', 'erp', 'response', 'time', 'especially', 'zload', 'take', 'much', 'long', 'anfghyudrejy'] list_processed_text: [['erp'], ['zload'], ['releasing'], ['order'], ['vsid'], ['take'], ['much'], ['long'], ['please'], ['check'], ['erp'], ['response'], ['time'], ['especially'], ['zload'], ['take'], ['much'], ['long'], ['anfghyudrejy']] k: 4191 len: <class 'list'> Data: ['erp', 'performance', 'hi', 'noticing', 'slow', 'performance', 'erp', 'uk', 'facility', 'pollaurid', 'phlpiops', 'manager', 'engineering', 'technology'] processed_text: ['erp', 'performance', 'hi', 'noticing', 'slow', 'performance', 'erp', 'uk', 'facility', 'pollaurid', 'phlpiops', 'manager', 'engineering', 'technology'] list_processed_text: [['erp'], ['performance'], ['hi'], ['noticing'], ['slow'], ['performance'], ['erp'], ['uk'], ['facility'], ['pollaurid'], ['phlpiops'], ['manager'], ['engineering'], ['technology']] k: 4192 len: <class 'list'> Data: ['erp', 'slow', 'multiple', 'location', 'poland', 'united', 'kingdom', 'germany', 'erp', 'slow', 'internet', 'running', 'fine', 'application', 'outlook', 'etc', 'running', 'fine', 'many', 'user', 'affected'] processed_text: ['erp', 'slow', 'multiple', 'location', 'poland', 'united', 'kingdom', 'germany', 'erp', 'slow', 'internet', 'running', 'fine', 'application', 'outlook', 'etc', 'running', 'fine', 'many', 'user', 'affected'] list_processed_text: [['erp'], ['slow'], ['multiple'], ['location'], ['poland'], ['united'], ['kingdom'], ['germany'], ['erp'], ['slow'], ['internet'], ['running'], ['fine'], ['application'], ['outlook'], ['etc'], ['running'], ['fine'], ['many'], ['user'], ['affected']] k: 4193 len: <class 'list'> Data: ['laptop', 'use', 'audio', 'dear', 'team', 'laptop', 'use', 'audio', 'file', 'sound', 'best'] processed_text: ['laptop', 'use', 'audio', 'dear', 'team', 'laptop', 'use', 'audio', 'file', 'sound', 'best'] list_processed_text: [['laptop'], ['use'], ['audio'], ['dear'], ['team'], ['laptop'], ['use'], ['audio'], ['file'], ['sound'], ['best']] k: 4194 len: <class 'list'> Data: ['erp', 'slow', 'user', 'poland', 'office', 'erp', 'slow', 'user', 'poland', 'office', 'user', 'impacted'] processed_text: ['erp', 'slow', 'user', 'poland', 'office', 'erp', 'slow', 'user', 'poland', 'office', 'user', 'impacted'] list_processed_text: [['erp'], ['slow'], ['user'], ['poland'], ['office'], ['erp'], ['slow'], ['user'], ['poland'], ['office'], ['user'], ['impacted']] k: 4195 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'system', 'slowly', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'yes', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'apo', 'server', 'eu', 'tool', 'server', 'etc', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'yes', 'many', 'colleague', 'plant', 'application', 'running', 'slow', 'eu', 'tool', 'erp', 'print', 'drawing', 'create', 'delivery', 'note', 'eu', 'tool'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'system', 'slowly', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'yes', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'apo', 'server', 'eu', 'tool', 'server', 'etc', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'yes', 'many', 'colleague', 'plant', 'application', 'running', 'slow', 'eu', 'tool', 'erp', 'print', 'drawing', 'create', 'delivery', 'note', 'eu', 'tool'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['determine'], ['network'], ['problem'], ['system'], ['slowly'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['one'], ['transaction'], ['impacted'], ['yes'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['apo'], ['server'], ['eu'], ['tool'], ['server'], ['etc'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['yes'], ['many'], ['colleague'], ['plant'], ['application'], ['running'], ['slow'], ['eu'], ['tool'], ['erp'], ['print'], ['drawing'], ['create'], ['delivery'], ['note'], ['eu'], ['tool']] k: 4196 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4197 len: <class 'list'> Data: ['cannot', 'syncronize', 'outlook', 'appointment', 'crm', 'dear', 'help', 'team', 'hi', 'cannot', 'synchronize', 'appointment', 'press', 'anything', 'outlook', 'crm', 'tag', 'like', 'attached', 'picture', 'please', 'help'] processed_text: ['cannot', 'syncronize', 'outlook', 'appointment', 'crm', 'dear', 'help', 'team', 'hi', 'cannot', 'synchronize', 'appointment', 'press', 'anything', 'outlook', 'crm', 'tag', 'like', 'attached', 'picture', 'please', 'help'] list_processed_text: [['cannot'], ['syncronize'], ['outlook'], ['appointment'], ['crm'], ['dear'], ['help'], ['team'], ['hi'], ['cannot'], ['synchronize'], ['appointment'], ['press'], ['anything'], ['outlook'], ['crm'], ['tag'], ['like'], ['attached'], ['picture'], ['please'], ['help']] k: 4198 len: <class 'list'> Data: ['foreign', 'trade', 'data', 'missing', 'inwarehouse', 'tool', 'inwarehouse', 'tool', 'blocked', 'system', 'foreign', 'data', 'missing', 'item', 'first', 'analysis', 'info', 'available', 'mm', 'concerned', 'material', 'inwarehouse', 'tool', 'completed', 'could', 'check', 'happened', 'order', 'avoid', 'futur', 'issue', 'material', 'correctly', 'entered', 'mm', 'step', 'missing', 'erp', 'incident', 'lead', 'issue'] processed_text: ['foreign', 'trade', 'data', 'missing', 'inwarehouse', 'tool', 'inwarehouse', 'tool', 'blocked', 'system', 'foreign', 'data', 'missing', 'item', 'first', 'analysis', 'info', 'available', 'mm', 'concerned', 'material', 'inwarehouse', 'tool', 'completed', 'could', 'check', 'happened', 'order', 'avoid', 'futur', 'issue', 'material', 'correctly', 'entered', 'mm', 'step', 'missing', 'erp', 'incident', 'lead', 'issue'] list_processed_text: [['foreign'], ['trade'], ['data'], ['missing'], ['inwarehouse'], ['tool'], ['inwarehouse'], ['tool'], ['blocked'], ['system'], ['foreign'], ['data'], ['missing'], ['item'], ['first'], ['analysis'], ['info'], ['available'], ['mm'], ['concerned'], ['material'], ['inwarehouse'], ['tool'], ['completed'], ['could'], ['check'], ['happened'], ['order'], ['avoid'], ['futur'], ['issue'], ['material'], ['correctly'], ['entered'], ['mm'], ['step'], ['missing'], ['erp'], ['incident'], ['lead'], ['issue']] k: 4199 len: <class 'list'> Data: ['question', 'hello', 'bobhyb', 'sorry', 'know', 'copying', 'help', 'team', 'could', 'help'] processed_text: ['question', 'hello', 'bobhyb', 'sorry', 'know', 'copying', 'help', 'team', 'could', 'help'] list_processed_text: [['question'], ['hello'], ['bobhyb'], ['sorry'], ['know'], ['copying'], ['help'], ['team'], ['could'], ['help']] k: 4200 len: <class 'list'> Data: ['vpn', 'access', 'issue', 'hello', 'team', 'yvhlenaz', 'ptuqhrwk', 'cc', 'cannot', 'connect', 'vpn', 'access', 'try', 'connect', 'vpn', 'small', 'window', 'picture', 'show', 'shortly', 'disconnected', 'second', 'picture', 'say', 'discconect', 'checked', 'device', 'manager', 'could', 'find', 'device', 'pc', 'network', 'adapter', 'lauacyltoe', 'hxgaycze', 'driver', 'please', 'give', 'u', 'advice', 'xmgptwho', 'fmcxikqz', 'k', 'takheghshi', 'afefsano'] processed_text: ['vpn', 'access', 'issue', 'hello', 'team', 'yvhlenaz', 'ptuqhrwk', 'cc', 'cannot', 'connect', 'vpn', 'access', 'try', 'connect', 'vpn', 'small', 'window', 'picture', 'show', 'shortly', 'disconnected', 'second', 'picture', 'say', 'discconect', 'checked', 'device', 'manager', 'could', 'find', 'device', 'pc', 'network', 'adapter', 'lauacyltoe', 'hxgaycze', 'driver', 'please', 'give', 'u', 'advice', 'xmgptwho', 'fmcxikqz', 'k', 'takheghshi', 'afefsano'] list_processed_text: [['vpn'], ['access'], ['issue'], ['hello'], ['team'], ['yvhlenaz'], ['ptuqhrwk'], ['cc'], ['cannot'], ['connect'], ['vpn'], ['access'], ['try'], ['connect'], ['vpn'], ['small'], ['window'], ['picture'], ['show'], ['shortly'], ['disconnected'], ['second'], ['picture'], ['say'], ['discconect'], ['checked'], ['device'], ['manager'], ['could'], ['find'], ['device'], ['pc'], ['network'], ['adapter'], ['lauacyltoe'], ['hxgaycze'], ['driver'], ['please'], ['give'], ['u'], ['advice'], ['xmgptwho'], ['fmcxikqz'], ['k'], ['takheghshi'], ['afefsano']] k: 4201 len: <class 'list'> Data: ['password', 'blocked', 'good', 'morning', 'please', 'unblock', 'user', 'nieghjyukea', 'tried', 'using', 'password', 'management', 'tool', 'id', 'password', 'manager', 'want', 'work', 'cannot', 'get', 'system', 'kind'] processed_text: ['password', 'blocked', 'good', 'morning', 'please', 'unblock', 'user', 'nieghjyukea', 'tried', 'using', 'password', 'management', 'tool', 'id', 'password', 'manager', 'want', 'work', 'cannot', 'get', 'system', 'kind'] list_processed_text: [['password'], ['blocked'], ['good'], ['morning'], ['please'], ['unblock'], ['user'], ['nieghjyukea'], ['tried'], ['using'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['want'], ['work'], ['cannot'], ['get'], ['system'], ['kind']] k: 4202 len: <class 'list'> Data: ['user', 'tuzkadxv', 'rxloutpn', 'cannot', 'use', 'run', 'report', 'hello', 'team', 'user', 'tuzkadxv', 'rxloutpn', 'trying', 'use', 'run', 'report', 'functionality', 'opportstorage', 'product', 'opportstorage', 'product', 'report', 'page', 'summary', 'opportstorage', 'product', 'return', 'data', 'blank', 'screen', 'could', 'find', 'happening', 'could', 'help', 'troubleshoot', 'matheywter', 'screenshot', 'taken', 'user', 'illustrate', 'functionality', 'talking', 'screenshot', 'user', 'yet', 'workng', 'ny', 'opportunity'] processed_text: ['user', 'tuzkadxv', 'rxloutpn', 'cannot', 'use', 'run', 'report', 'hello', 'team', 'user', 'tuzkadxv', 'rxloutpn', 'trying', 'use', 'run', 'report', 'functionality', 'opportstorage', 'product', 'opportstorage', 'product', 'report', 'page', 'summary', 'opportstorage', 'product', 'return', 'data', 'blank', 'screen', 'could', 'find', 'happening', 'could', 'help', 'troubleshoot', 'matheywter', 'screenshot', 'taken', 'user', 'illustrate', 'functionality', 'talking', 'screenshot', 'user', 'yet', 'workng', 'ny', 'opportunity'] list_processed_text: [['user'], ['tuzkadxv'], ['rxloutpn'], ['cannot'], ['use'], ['run'], ['report'], ['hello'], ['team'], ['user'], ['tuzkadxv'], ['rxloutpn'], ['trying'], ['use'], ['run'], ['report'], ['functionality'], ['opportstorage'], ['product'], ['opportstorage'], ['product'], ['report'], ['page'], ['summary'], ['opportstorage'], ['product'], ['return'], ['data'], ['blank'], ['screen'], ['could'], ['find'], ['happening'], ['could'], ['help'], ['troubleshoot'], ['matheywter'], ['screenshot'], ['taken'], ['user'], ['illustrate'], ['functionality'], ['talking'], ['screenshot'], ['user'], ['yet'], ['workng'], ['ny'], ['opportunity']] k: 4203 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4204 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'ftp', 'error', 'put', 'zmm', 'bestand', 'stl', 'dat', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'ftp', 'error', 'put', 'zmm', 'bestand', 'stl', 'dat', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['ftp'], ['error'], ['put'], ['zmm'], ['bestand'], ['stl'], ['dat'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4205 len: <class 'list'> Data: ['able', 'access', 'inq', 'industrial', 'team', 'able', 'access', 'inq', 'industrial', 'receive', 'enquiry', 'special', 'product', 'past', 'one', 'week', 'mentioned', 'shared', 'email', 'box', 'functioning', 'whereas', 'member', 'able', 'access', 'kindly', 'request', 'take', 'upon', 'high', 'priority', 'confirm', 'back'] processed_text: ['able', 'access', 'inq', 'industrial', 'team', 'able', 'access', 'inq', 'industrial', 'receive', 'enquiry', 'special', 'product', 'past', 'one', 'week', 'mentioned', 'shared', 'email', 'box', 'functioning', 'whereas', 'member', 'able', 'access', 'kindly', 'request', 'take', 'upon', 'high', 'priority', 'confirm', 'back'] list_processed_text: [['able'], ['access'], ['inq'], ['industrial'], ['team'], ['able'], ['access'], ['inq'], ['industrial'], ['receive'], ['enquiry'], ['special'], ['product'], ['past'], ['one'], ['week'], ['mentioned'], ['shared'], ['email'], ['box'], ['functioning'], ['whereas'], ['member'], ['able'], ['access'], ['kindly'], ['request'], ['take'], ['upon'], ['high'], ['priority'], ['confirm'], ['back']] k: 4206 len: <class 'list'> Data: ['carrier', 'information', 'lost', 'bulk', 'indicator', 'removed', 'multiple', 'line', 'delivery', 'processed', 'ki', 'carrier', 'ip', 'ship', 'method', 'information', 'lost', 'bulk', 'shipment', 'indicator', 'removed', 'multiple', 'line', 'delivery', 'processed', 'ki', 'carrier', 'ipd'] processed_text: ['carrier', 'information', 'lost', 'bulk', 'indicator', 'removed', 'multiple', 'line', 'delivery', 'processed', 'ki', 'carrier', 'ip', 'ship', 'method', 'information', 'lost', 'bulk', 'shipment', 'indicator', 'removed', 'multiple', 'line', 'delivery', 'processed', 'ki', 'carrier', 'ipd'] list_processed_text: [['carrier'], ['information'], ['lost'], ['bulk'], ['indicator'], ['removed'], ['multiple'], ['line'], ['delivery'], ['processed'], ['ki'], ['carrier'], ['ip'], ['ship'], ['method'], ['information'], ['lost'], ['bulk'], ['shipment'], ['indicator'], ['removed'], ['multiple'], ['line'], ['delivery'], ['processed'], ['ki'], ['carrier'], ['ipd']] k: 4207 len: <class 'list'> Data: ['telephony', 'software', 'break', 'shutdown', 'computer', 'yesterday', 'window', 'update', 'wasload', 'could', 'stop', 'update', 'telephony', 'software', 'must', 'fixed', 'see', 'information', 'identifying', 'update', 'causing', 'issue', 'updating', 'computer', 'disable', 'kb', 'list', 'update', 'case', 'happened', 'anyway', 'remove', 'urvitans', 'laqdwvgo', 'cec', 'analyst', 'operational', 'excellence', 'emea'] processed_text: ['telephony', 'software', 'break', 'shutdown', 'computer', 'yesterday', 'window', 'update', 'wasload', 'could', 'stop', 'update', 'telephony', 'software', 'must', 'fixed', 'see', 'information', 'identifying', 'update', 'causing', 'issue', 'updating', 'computer', 'disable', 'kb', 'list', 'update', 'case', 'happened', 'anyway', 'remove', 'urvitans', 'laqdwvgo', 'cec', 'analyst', 'operational', 'excellence', 'emea'] list_processed_text: [['telephony'], ['software'], ['break'], ['shutdown'], ['computer'], ['yesterday'], ['window'], ['update'], ['wasload'], ['could'], ['stop'], ['update'], ['telephony'], ['software'], ['must'], ['fixed'], ['see'], ['information'], ['identifying'], ['update'], ['causing'], ['issue'], ['updating'], ['computer'], ['disable'], ['kb'], ['list'], ['update'], ['case'], ['happened'], ['anyway'], ['remove'], ['urvitans'], ['laqdwvgo'], ['cec'], ['analyst'], ['operational'], ['excellence'], ['emea']] k: 4208 len: <class 'list'> Data: ['network', 'outage', 'usa', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4209 len: <class 'list'> Data: ['gtehdnyushot', 'kennconnect', 'problem', 'hello', 'changed', 'password', 'yesterday', 'open', 'kennconnect', 'log', 'thing', 'changed', 'favorite', 'dierppeared', 'asks', 'input', 'customer', 'customer', 'search', 'work', 'opening', 'favorite', 'say', 'call', 'helpdesk', 'please', 'call', 'aerp', 'able', 'work', 'today', 'gtehdnyushot', 'capture', 'best'] processed_text: ['gtehdnyushot', 'kennconnect', 'problem', 'hello', 'changed', 'password', 'yesterday', 'open', 'kennconnect', 'log', 'thing', 'changed', 'favorite', 'dierppeared', 'asks', 'input', 'customer', 'customer', 'search', 'work', 'opening', 'favorite', 'say', 'call', 'helpdesk', 'please', 'call', 'aerp', 'able', 'work', 'today', 'gtehdnyushot', 'capture', 'best'] list_processed_text: [['gtehdnyushot'], ['kennconnect'], ['problem'], ['hello'], ['changed'], ['password'], ['yesterday'], ['open'], ['kennconnect'], ['log'], ['thing'], ['changed'], ['favorite'], ['dierppeared'], ['asks'], ['input'], ['customer'], ['customer'], ['search'], ['work'], ['opening'], ['favorite'], ['say'], ['call'], ['helpdesk'], ['please'], ['call'], ['aerp'], ['able'], ['work'], ['today'], ['gtehdnyushot'], ['capture'], ['best']] k: 4210 len: <class 'list'> Data: ['milano', 'italy', 'duplex', 'mismatch', 'gi', 'router', 'gi', 'router', 'see', 'discription', 'info', 'duplex', 'mismatch', 'duplex', 'mode', 'interface', 'gigabitethernet', 'uplink', 'company', 'eu', 'ita', 'milano', 'dmvpn', 'rtr', 'company', 'eu', 'ita', 'milan', 'core', 'stack', 'sw', 'company', 'com', 'half', 'check', 'duplex', 'configuration', 'end', 'device', 'link', 'make', 'sure', 'duplex', 'mode', 'match', 'duplex', 'mismatch', 'duplex', 'mode', 'interface', 'gigabitethernet', 'connection', 'lan', 'company', 'eu', 'ita', 'milano', 'dmvpn', 'rtr', 'company', 'com', 'full', 'check', 'duplex', 'configuration', 'end', 'device', 'link', 'make', 'sure', 'duplex', 'mode', 'match'] processed_text: ['milano', 'italy', 'duplex', 'mismatch', 'gi', 'router', 'gi', 'router', 'see', 'discription', 'info', 'duplex', 'mismatch', 'duplex', 'mode', 'interface', 'gigabitethernet', 'uplink', 'company', 'eu', 'ita', 'milano', 'dmvpn', 'rtr', 'company', 'eu', 'ita', 'milan', 'core', 'stack', 'sw', 'company', 'com', 'half', 'check', 'duplex', 'configuration', 'end', 'device', 'link', 'make', 'sure', 'duplex', 'mode', 'match', 'duplex', 'mismatch', 'duplex', 'mode', 'interface', 'gigabitethernet', 'connection', 'lan', 'company', 'eu', 'ita', 'milano', 'dmvpn', 'rtr', 'company', 'com', 'full', 'check', 'duplex', 'configuration', 'end', 'device', 'link', 'make', 'sure', 'duplex', 'mode', 'match'] list_processed_text: [['milano'], ['italy'], ['duplex'], ['mismatch'], ['gi'], ['router'], ['gi'], ['router'], ['see'], ['discription'], ['info'], ['duplex'], ['mismatch'], ['duplex'], ['mode'], ['interface'], ['gigabitethernet'], ['uplink'], ['company'], ['eu'], ['ita'], ['milano'], ['dmvpn'], ['rtr'], ['company'], ['eu'], ['ita'], ['milan'], ['core'], ['stack'], ['sw'], ['company'], ['com'], ['half'], ['check'], ['duplex'], ['configuration'], ['end'], ['device'], ['link'], ['make'], ['sure'], ['duplex'], ['mode'], ['match'], ['duplex'], ['mismatch'], ['duplex'], ['mode'], ['interface'], ['gigabitethernet'], ['connection'], ['lan'], ['company'], ['eu'], ['ita'], ['milano'], ['dmvpn'], ['rtr'], ['company'], ['com'], ['full'], ['check'], ['duplex'], ['configuration'], ['end'], ['device'], ['link'], ['make'], ['sure'], ['duplex'], ['mode'], ['match']] k: 4211 len: <class 'list'> Data: ['urgent', 'mm', 'dn', 'pt', 'indonesia', 'pratma', 'dear', 'team', 'could', 'please', 'check', 'advise', 'cost', 'attached', 'shipping', 'inwarehouse', 'tool', 'per', 'standard', 'cost', 'usd', 'per', 'piece', 'deusad', 'shipping', 'document', 'sgd', 'usd', 'matheywter', 'effect', 'customer', 'pay', 'high', 'cost', 'import', 'duty', 'best'] processed_text: ['urgent', 'mm', 'dn', 'pt', 'indonesia', 'pratma', 'dear', 'team', 'could', 'please', 'check', 'advise', 'cost', 'attached', 'shipping', 'inwarehouse', 'tool', 'per', 'standard', 'cost', 'usd', 'per', 'piece', 'deusad', 'shipping', 'document', 'sgd', 'usd', 'matheywter', 'effect', 'customer', 'pay', 'high', 'cost', 'import', 'duty', 'best'] list_processed_text: [['urgent'], ['mm'], ['dn'], ['pt'], ['indonesia'], ['pratma'], ['dear'], ['team'], ['could'], ['please'], ['check'], ['advise'], ['cost'], ['attached'], ['shipping'], ['inwarehouse'], ['tool'], ['per'], ['standard'], ['cost'], ['usd'], ['per'], ['piece'], ['deusad'], ['shipping'], ['document'], ['sgd'], ['usd'], ['matheywter'], ['effect'], ['customer'], ['pay'], ['high'], ['cost'], ['import'], ['duty'], ['best']] k: 4212 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'home', 'hello', 'company', 'help', 'could', 'please', 'check', 'laptop', 'setting', 'getting', 'inconsistent', 'company', 'vpn', 'connection', 'home'] processed_text: ['unable', 'connect', 'vpn', 'home', 'hello', 'company', 'help', 'could', 'please', 'check', 'laptop', 'setting', 'getting', 'inconsistent', 'company', 'vpn', 'connection', 'home'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['home'], ['hello'], ['company'], ['help'], ['could'], ['please'], ['check'], ['laptop'], ['setting'], ['getting'], ['inconsistent'], ['company'], ['vpn'], ['connection'], ['home']] k: 4213 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 4214 len: <class 'list'> Data: ['erp', 'locked', 'hello', 'erp', 'locked', 'please', 'unlock', 'used', 'password', 'management', 'tool', 'password', 'manager', 'unlock', 'account', 'use', 'vpn', 'log', 'erp'] processed_text: ['erp', 'locked', 'hello', 'erp', 'locked', 'please', 'unlock', 'used', 'password', 'management', 'tool', 'password', 'manager', 'unlock', 'account', 'use', 'vpn', 'log', 'erp'] list_processed_text: [['erp'], ['locked'], ['hello'], ['erp'], ['locked'], ['please'], ['unlock'], ['used'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unlock'], ['account'], ['use'], ['vpn'], ['log'], ['erp']] k: 4215 len: <class 'list'> Data: ['able', 'connect', 'erp', 'able', 'connect', 'erp'] processed_text: ['able', 'connect', 'erp', 'able', 'connect', 'erp'] list_processed_text: [['able'], ['connect'], ['erp'], ['able'], ['connect'], ['erp']] k: 4216 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'ftp', 'connection', 'error', 'system', 'hostname', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'ftp', 'connection', 'error', 'system', 'hostname', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['ftp'], ['connection'], ['error'], ['system'], ['hostname'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4217 len: <class 'list'> Data: ['unable', 'submit', 'report', 'engineering', 'tool', 'unable', 'submit', 'report', 'engineering', 'tool', 'please', 'refer', 'screenshots'] processed_text: ['unable', 'submit', 'report', 'engineering', 'tool', 'unable', 'submit', 'report', 'engineering', 'tool', 'please', 'refer', 'screenshots'] list_processed_text: [['unable'], ['submit'], ['report'], ['engineering'], ['tool'], ['unable'], ['submit'], ['report'], ['engineering'], ['tool'], ['please'], ['refer'], ['screenshots']] k: 4218 len: <class 'list'> Data: ['outlook', 'stopped', 'working', 'hello', 'need', 'help', 'aerp', 'outlook', 'stopped', 'working', 'pc'] processed_text: ['outlook', 'stopped', 'working', 'hello', 'need', 'help', 'aerp', 'outlook', 'stopped', 'working', 'pc'] list_processed_text: [['outlook'], ['stopped'], ['working'], ['hello'], ['need'], ['help'], ['aerp'], ['outlook'], ['stopped'], ['working'], ['pc']] k: 4219 len: <class 'list'> Data: ['cant', 'open', 'photo', 'iphone', 'best'] processed_text: ['cant', 'open', 'photo', 'iphone', 'best'] list_processed_text: [['cant'], ['open'], ['photo'], ['iphone'], ['best']] k: 4220 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4221 len: <class 'list'> Data: ['dell', 'skype', 'audio', 'working', 'dell', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'bios', 'user', 'system', 'restarted', 'system', 'skype', 'audio', 'working', 'uacyltoe', 'hxgaycze', 'call', 'user', 'call', 'user', 'back', 'tomorrow', 'check', 'issue'] processed_text: ['dell', 'skype', 'audio', 'working', 'dell', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'bios', 'user', 'system', 'restarted', 'system', 'skype', 'audio', 'working', 'uacyltoe', 'hxgaycze', 'call', 'user', 'call', 'user', 'back', 'tomorrow', 'check', 'issue'] list_processed_text: [['dell'], ['skype'], ['audio'], ['working'], ['dell'], ['skype'], ['audio'], ['working'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['updated'], ['bios'], ['user'], ['system'], ['restarted'], ['system'], ['skype'], ['audio'], ['working'], ['uacyltoe'], ['hxgaycze'], ['call'], ['user'], ['call'], ['user'], ['back'], ['tomorrow'], ['check'], ['issue']] k: 4222 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'arc', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['arc'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['arc'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 4223 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4224 len: <class 'list'> Data: ['user', 'unable', 'login', 'pc', 'user', 'unable', 'login', 'pc', 'checked', 'ad', 'infotrmed', 'user', 'account', 'locked', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['user', 'unable', 'login', 'pc', 'user', 'unable', 'login', 'pc', 'checked', 'ad', 'infotrmed', 'user', 'account', 'locked', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['user'], ['unable'], ['login'], ['pc'], ['user'], ['unable'], ['login'], ['pc'], ['checked'], ['ad'], ['infotrmed'], ['user'], ['account'], ['locked'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4225 len: <class 'list'> Data: ['distributor', 'tool', 'login', 'issue', 'distributor', 'tool', 'login', 'issue'] processed_text: ['distributor', 'tool', 'login', 'issue', 'distributor', 'tool', 'login', 'issue'] list_processed_text: [['distributor'], ['tool'], ['login'], ['issue'], ['distributor'], ['tool'], ['login'], ['issue']] k: 4226 len: <class 'list'> Data: ['collaboration', 'platform', 'link', 'name', 'grtaoivq', 'dwjvfkqe', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'collaboration', 'platform', 'link'] processed_text: ['collaboration', 'platform', 'link', 'name', 'grtaoivq', 'dwjvfkqe', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'collaboration', 'platform', 'link'] list_processed_text: [['collaboration'], ['platform'], ['link'], ['name'], ['grtaoivq'], ['dwjvfkqe'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['collaboration'], ['platform'], ['link']] k: 4227 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 4228 len: <class 'list'> Data: ['create', 'express', 'stock', 'transiit', 'mm', 'order', 'cnc', 'art', 'hi', 'please', 'help', 'check', 'see', 'error', 'side'] processed_text: ['create', 'express', 'stock', 'transiit', 'mm', 'order', 'cnc', 'art', 'hi', 'please', 'help', 'check', 'see', 'error', 'side'] list_processed_text: [['create'], ['express'], ['stock'], ['transiit'], ['mm'], ['order'], ['cnc'], ['art'], ['hi'], ['please'], ['help'], ['check'], ['see'], ['error'], ['side']] k: 4229 len: <class 'list'> Data: ['user', 'trying', 'install', 'software', 'customer', 'pc', 'user', 'trying', 'install', 'software', 'customer', 'pc', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'able', 'login', 'distributor', 'tool', 'go', 'engineering', 'tool', 'tab', 'install', 'software', 'unable', 'install', 'software', 'user', 'system', 'customer', 'email', 'id', 'c'] processed_text: ['user', 'trying', 'install', 'software', 'customer', 'pc', 'user', 'trying', 'install', 'software', 'customer', 'pc', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'able', 'login', 'distributor', 'tool', 'go', 'engineering', 'tool', 'tab', 'install', 'software', 'unable', 'install', 'software', 'user', 'system', 'customer', 'email', 'id', 'c'] list_processed_text: [['user'], ['trying'], ['install'], ['software'], ['customer'], ['pc'], ['user'], ['trying'], ['install'], ['software'], ['customer'], ['pc'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['user'], ['able'], ['login'], ['distributor'], ['tool'], ['go'], ['engineering'], ['tool'], ['tab'], ['install'], ['software'], ['unable'], ['install'], ['software'], ['user'], ['system'], ['customer'], ['email'], ['id'], ['c']] k: 4230 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 4231 len: <class 'list'> Data: ['jvshydix', 'rzpmnylt', 'general', 'query', 'jvshydix', 'rzpmnylt', 'general', 'query'] processed_text: ['jvshydix', 'rzpmnylt', 'general', 'query', 'jvshydix', 'rzpmnylt', 'general', 'query'] list_processed_text: [['jvshydix'], ['rzpmnylt'], ['general'], ['query'], ['jvshydix'], ['rzpmnylt'], ['general'], ['query']] k: 4232 len: <class 'list'> Data: ['mm', 'grade', 'changed', 'material', 'engineering', 'tool', 'validated', 'save', 'delete', 'selected', 'mm', 'used', 'change', 'grade', 'rqfhiong', 'zkwfqagb', 'logic', 'executes', 'verifies', 'engineering', 'tool', 'valid', 'new', 'grade', 'working', 'correctly', 'save', 'selected', 'catalog', 'id', 'grade', 'screen', 'save', 'delete', 'selected', 'logic', 'working', 'invalid', 'engineering', 'tool', 'value', 'left', 'rqfhiong', 'zkwfqagbs', 'affecting', 'user', 'one', 'logic', 'need', 'corrected', 'save', 'delete'] processed_text: ['mm', 'grade', 'changed', 'material', 'engineering', 'tool', 'validated', 'save', 'delete', 'selected', 'mm', 'used', 'change', 'grade', 'rqfhiong', 'zkwfqagb', 'logic', 'executes', 'verifies', 'engineering', 'tool', 'valid', 'new', 'grade', 'working', 'correctly', 'save', 'selected', 'catalog', 'id', 'grade', 'screen', 'save', 'delete', 'selected', 'logic', 'working', 'invalid', 'engineering', 'tool', 'value', 'left', 'rqfhiong', 'zkwfqagbs', 'affecting', 'user', 'one', 'logic', 'need', 'corrected', 'save', 'delete'] list_processed_text: [['mm'], ['grade'], ['changed'], ['material'], ['engineering'], ['tool'], ['validated'], ['save'], ['delete'], ['selected'], ['mm'], ['used'], ['change'], ['grade'], ['rqfhiong'], ['zkwfqagb'], ['logic'], ['executes'], ['verifies'], ['engineering'], ['tool'], ['valid'], ['new'], ['grade'], ['working'], ['correctly'], ['save'], ['selected'], ['catalog'], ['id'], ['grade'], ['screen'], ['save'], ['delete'], ['selected'], ['logic'], ['working'], ['invalid'], ['engineering'], ['tool'], ['value'], ['left'], ['rqfhiong'], ['zkwfqagbs'], ['affecting'], ['user'], ['one'], ['logic'], ['need'], ['corrected'], ['save'], ['delete']] k: 4233 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 4234 len: <class 'list'> Data: ['user', 'wanted', 'speak', 'one', 'usa', 'asked', 'jashyht', 'contact', 'user', 'wanted', 'speak', 'one', 'usa', 'asked', 'jashyht', 'contact'] processed_text: ['user', 'wanted', 'speak', 'one', 'usa', 'asked', 'jashyht', 'contact', 'user', 'wanted', 'speak', 'one', 'usa', 'asked', 'jashyht', 'contact'] list_processed_text: [['user'], ['wanted'], ['speak'], ['one'], ['usa'], ['asked'], ['jashyht'], ['contact'], ['user'], ['wanted'], ['speak'], ['one'], ['usa'], ['asked'], ['jashyht'], ['contact']] k: 4235 len: <class 'list'> Data: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] processed_text: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] list_processed_text: [['unable'], ['log'], ['skype'], ['unable'], ['log'], ['skype']] k: 4236 len: <class 'list'> Data: ['sto', 'notion', 'order', 'mm', 'sto', 'notion', 'order', 'mm'] processed_text: ['sto', 'notion', 'order', 'mm', 'sto', 'notion', 'order', 'mm'] list_processed_text: [['sto'], ['notion'], ['order'], ['mm'], ['sto'], ['notion'], ['order'], ['mm']] k: 4237 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4238 len: <class 'list'> Data: ['cant', 'connect', 'erp', 'vpn', 'issue', 'cant', 'connect', 'erp', 'vpn', 'issue'] processed_text: ['cant', 'connect', 'erp', 'vpn', 'issue', 'cant', 'connect', 'erp', 'vpn', 'issue'] list_processed_text: [['cant'], ['connect'], ['erp'], ['vpn'], ['issue'], ['cant'], ['connect'], ['erp'], ['vpn'], ['issue']] k: 4239 len: <class 'list'> Data: ['getting', 'error', 'trying', 'open', 'hana', 'file', 'help', 'erp', 'excel', 'add-in', 'issue'] processed_text: ['getting', 'error', 'trying', 'open', 'hana', 'file', 'help', 'erp', 'excel', 'add-in', 'issue'] list_processed_text: [['getting'], ['error'], ['trying'], ['open'], ['hana'], ['file'], ['help'], ['erp'], ['excel'], ['add-in'], ['issue']] k: 4240 len: <class 'list'> Data: ['terminate', 'action', 'mdulwthb', 'sldowapb', 'completed', 'terminate', 'action', 'mdulwthb', 'sldowapb', 'completed'] processed_text: ['terminate', 'action', 'mdulwthb', 'sldowapb', 'completed', 'terminate', 'action', 'mdulwthb', 'sldowapb', 'completed'] list_processed_text: [['terminate'], ['action'], ['mdulwthb'], ['sldowapb'], ['completed'], ['terminate'], ['action'], ['mdulwthb'], ['sldowapb'], ['completed']] k: 4241 len: <class 'list'> Data: ['erp', 'log', 'issue', 'erp', 'log', 'issue'] processed_text: ['erp', 'log', 'issue', 'erp', 'log', 'issue'] list_processed_text: [['erp'], ['log'], ['issue'], ['erp'], ['log'], ['issue']] k: 4242 len: <class 'list'> Data: ['usa', 'plant', 'power', 'outage', 'everyone', 'power', 'whole', 'usa', 'manufacturing', 'plant', 'generator', 'keep', 'computer', 'room', 'running', 'switch', 'located', 'remote', 'network', 'closet', 'drop', 'turn', 'back', 'power', 'resume'] processed_text: ['usa', 'plant', 'power', 'outage', 'everyone', 'power', 'whole', 'usa', 'manufacturing', 'plant', 'generator', 'keep', 'computer', 'room', 'running', 'switch', 'located', 'remote', 'network', 'closet', 'drop', 'turn', 'back', 'power', 'resume'] list_processed_text: [['usa'], ['plant'], ['power'], ['outage'], ['everyone'], ['power'], ['whole'], ['usa'], ['manufacturing'], ['plant'], ['generator'], ['keep'], ['computer'], ['room'], ['running'], ['switch'], ['located'], ['remote'], ['network'], ['closet'], ['drop'], ['turn'], ['back'], ['power'], ['resume']] k: 4243 len: <class 'list'> Data: ['called', 'unlock', 'ad', 'account', 'user', 'qcxivzag', 'vyucbagx', 'called', 'unlock', 'ad', 'account', 'user', 'qcxivzag', 'vyucbagx'] processed_text: ['called', 'unlock', 'ad', 'account', 'user', 'qcxivzag', 'vyucbagx', 'called', 'unlock', 'ad', 'account', 'user', 'qcxivzag', 'vyucbagx'] list_processed_text: [['called'], ['unlock'], ['ad'], ['account'], ['user'], ['qcxivzag'], ['vyucbagx'], ['called'], ['unlock'], ['ad'], ['account'], ['user'], ['qcxivzag'], ['vyucbagx']] k: 4244 len: <class 'list'> Data: ['dell', 'system', 'slow', 'mscrm', 'slow', 'dell', 'system', 'slow', 'connected', 'user', 'system', 'using', 'teamviewer', 'cleared', 'cache', 'cooky', 'temp', 'file', 'updated', 'symantec', 'user', 'updated', 'system', 'bios', 'restarted', 'pc', 'advised', 'user', 'try', 'check', 'user', 'launched', 'mscrm', 'working', 'fine', 'issue', 'resolved', 'c'] processed_text: ['dell', 'system', 'slow', 'mscrm', 'slow', 'dell', 'system', 'slow', 'connected', 'user', 'system', 'using', 'teamviewer', 'cleared', 'cache', 'cooky', 'temp', 'file', 'updated', 'symantec', 'user', 'updated', 'system', 'bios', 'restarted', 'pc', 'advised', 'user', 'try', 'check', 'user', 'launched', 'mscrm', 'working', 'fine', 'issue', 'resolved', 'c'] list_processed_text: [['dell'], ['system'], ['slow'], ['mscrm'], ['slow'], ['dell'], ['system'], ['slow'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['cleared'], ['cache'], ['cooky'], ['temp'], ['file'], ['updated'], ['symantec'], ['user'], ['updated'], ['system'], ['bios'], ['restarted'], ['pc'], ['advised'], ['user'], ['try'], ['check'], ['user'], ['launched'], ['mscrm'], ['working'], ['fine'], ['issue'], ['resolved'], ['c']] k: 4245 len: <class 'list'> Data: ['unable', 'submit', 'expense', 'report', 'unable', 'submit', 'expense', 'report'] processed_text: ['unable', 'submit', 'expense', 'report', 'unable', 'submit', 'expense', 'report'] list_processed_text: [['unable'], ['submit'], ['expense'], ['report'], ['unable'], ['submit'], ['expense'], ['report']] k: 4246 len: <class 'list'> Data: ['change', 'skirtylset', 'percentage', 'change', 'skirtylset', 'percentage', 'effective', 'see', 'list', 'attached'] processed_text: ['change', 'skirtylset', 'percentage', 'change', 'skirtylset', 'percentage', 'effective', 'see', 'list', 'attached'] list_processed_text: [['change'], ['skirtylset'], ['percentage'], ['change'], ['skirtylset'], ['percentage'], ['effective'], ['see'], ['list'], ['attached']] k: 4247 len: <class 'list'> Data: ['printer', 'setrup', 'id', 'printer', 'setup'] processed_text: ['printer', 'setrup', 'id', 'printer', 'setup'] list_processed_text: [['printer'], ['setrup'], ['id'], ['printer'], ['setup']] k: 4248 len: <class 'list'> Data: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] processed_text: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] list_processed_text: [['printer'], ['driver'], ['update'], ['printer'], ['driver'], ['update']] k: 4249 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 4250 len: <class 'list'> Data: ['outlook', 'getting', 'connected', 'outlook', 'getting', 'connected'] processed_text: ['outlook', 'getting', 'connected', 'outlook', 'getting', 'connected'] list_processed_text: [['outlook'], ['getting'], ['connected'], ['outlook'], ['getting'], ['connected']] k: 4251 len: <class 'list'> Data: ['audio', 'working', 'driver', 'issue', 'audio', 'working', 'driver', 'issue'] processed_text: ['audio', 'working', 'driver', 'issue', 'audio', 'working', 'driver', 'issue'] list_processed_text: [['audio'], ['working'], ['driver'], ['issue'], ['audio'], ['working'], ['driver'], ['issue']] k: 4252 len: <class 'list'> Data: ['window', 'accout', 'lockout', 'window', 'accout', 'lockout'] processed_text: ['window', 'accout', 'lockout', 'window', 'accout', 'lockout'] list_processed_text: [['window'], ['accout'], ['lockout'], ['window'], ['accout'], ['lockout']] k: 4253 len: <class 'list'> Data: ['incorrect', 'vendor', 'po', 'extract', 'please', 'favor', 'check', 'po', 'extract', 'file', 'po', 'check', 'vendor', 'assigned', 'po', 'assigned', 'vendor', 'erp', 'rr', 'show', 'vendor', 'see', 'attachment', 'screen', 'print'] processed_text: ['incorrect', 'vendor', 'po', 'extract', 'please', 'favor', 'check', 'po', 'extract', 'file', 'po', 'check', 'vendor', 'assigned', 'po', 'assigned', 'vendor', 'erp', 'rr', 'show', 'vendor', 'see', 'attachment', 'screen', 'print'] list_processed_text: [['incorrect'], ['vendor'], ['po'], ['extract'], ['please'], ['favor'], ['check'], ['po'], ['extract'], ['file'], ['po'], ['check'], ['vendor'], ['assigned'], ['po'], ['assigned'], ['vendor'], ['erp'], ['rr'], ['show'], ['vendor'], ['see'], ['attachment'], ['screen'], ['print']] k: 4254 len: <class 'list'> Data: ['travel', 'expense', 'error', 'travel', 'expense', 'error'] processed_text: ['travel', 'expense', 'error', 'travel', 'expense', 'error'] list_processed_text: [['travel'], ['expense'], ['error'], ['travel'], ['expense'], ['error']] k: 4255 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'site', 'hard', 'et', 'backup', 'circuit', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'site', 'hard', 'et', 'backup', 'circuit', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['site'], ['hard'], ['et'], ['backup'], ['circuit'], ['site'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4256 len: <class 'list'> Data: ['ethic', 'issue', 'hi', 'still', 'cannot', 'access', 'beec', 'module', 'see', 'message', 'please', 'correct'] processed_text: ['ethic', 'issue', 'hi', 'still', 'cannot', 'access', 'beec', 'module', 'see', 'message', 'please', 'correct'] list_processed_text: [['ethic'], ['issue'], ['hi'], ['still'], ['cannot'], ['access'], ['beec'], ['module'], ['see'], ['message'], ['please'], ['correct']] k: 4257 len: <class 'list'> Data: ['able', 'apply', 'job', 'company', 'portal', 'external', 'user', 'able', 'apply', 'job', 'company', 'portal', 'external', 'user'] processed_text: ['able', 'apply', 'job', 'company', 'portal', 'external', 'user', 'able', 'apply', 'job', 'company', 'portal', 'external', 'user'] list_processed_text: [['able'], ['apply'], ['job'], ['company'], ['portal'], ['external'], ['user'], ['able'], ['apply'], ['job'], ['company'], ['portal'], ['external'], ['user']] k: 4258 len: <class 'list'> Data: ['working', 'home', 'connection', 'vpn', 'get', 'disconnected', 'continue', 'get', 'disconnected', 'vpn', 'reconnect', 'multiple', 'time', 'day'] processed_text: ['working', 'home', 'connection', 'vpn', 'get', 'disconnected', 'continue', 'get', 'disconnected', 'vpn', 'reconnect', 'multiple', 'time', 'day'] list_processed_text: [['working'], ['home'], ['connection'], ['vpn'], ['get'], ['disconnected'], ['continue'], ['get'], ['disconnected'], ['vpn'], ['reconnect'], ['multiple'], ['time'], ['day']] k: 4259 len: <class 'list'> Data: ['reset', 'password', 'user', 'zigioachstyac', 'sid', 'reset', 'password', 'user', 'zigioachstyac', 'sid'] processed_text: ['reset', 'password', 'user', 'zigioachstyac', 'sid', 'reset', 'password', 'user', 'zigioachstyac', 'sid'] list_processed_text: [['reset'], ['password'], ['user'], ['zigioachstyac'], ['sid'], ['reset'], ['password'], ['user'], ['zigioachstyac'], ['sid']] k: 4260 len: <class 'list'> Data: ['procenter', 'login', 'credential', 'new', 'joiner', 'please', 'create', 'procenter', 'login', 'credential', 'new', 'joiner', 'name', 'vijghyduhprga', 'yeghrrajghodu', 'user', 'id', 'yerrav', 'name', 'ulezhxfw', 'kslocjtaaruthapandian', 'user', 'id', 'karhjuyutk'] processed_text: ['procenter', 'login', 'credential', 'new', 'joiner', 'please', 'create', 'procenter', 'login', 'credential', 'new', 'joiner', 'name', 'vijghyduhprga', 'yeghrrajghodu', 'user', 'id', 'yerrav', 'name', 'ulezhxfw', 'kslocjtaaruthapandian', 'user', 'id', 'karhjuyutk'] list_processed_text: [['procenter'], ['login'], ['credential'], ['new'], ['joiner'], ['please'], ['create'], ['procenter'], ['login'], ['credential'], ['new'], ['joiner'], ['name'], ['vijghyduhprga'], ['yeghrrajghodu'], ['user'], ['id'], ['yerrav'], ['name'], ['ulezhxfw'], ['kslocjtaaruthapandian'], ['user'], ['id'], ['karhjuyutk']] k: 4261 len: <class 'list'> Data: ['add', 'member', 'distribution', 'group', 'add', 'member', 'distribution', 'group'] processed_text: ['add', 'member', 'distribution', 'group', 'add', 'member', 'distribution', 'group'] list_processed_text: [['add'], ['member'], ['distribution'], ['group'], ['add'], ['member'], ['distribution'], ['group']] k: 4262 len: <class 'list'> Data: ['skype', 'issue', 'hallo', 'friend', 'changed', 'password', 'today', 'problem', 'message', 'coming', 'password', 'change', 'everything', 'gtehdnyu', 'saying', 'ok', 'password', 'successfully', 'changed', 'reason', 'able', 'log', 'skype', 'business', 'showing', 'following', 'please', 'let', 'know'] processed_text: ['skype', 'issue', 'hallo', 'friend', 'changed', 'password', 'today', 'problem', 'message', 'coming', 'password', 'change', 'everything', 'gtehdnyu', 'saying', 'ok', 'password', 'successfully', 'changed', 'reason', 'able', 'log', 'skype', 'business', 'showing', 'following', 'please', 'let', 'know'] list_processed_text: [['skype'], ['issue'], ['hallo'], ['friend'], ['changed'], ['password'], ['today'], ['problem'], ['message'], ['coming'], ['password'], ['change'], ['everything'], ['gtehdnyu'], ['saying'], ['ok'], ['password'], ['successfully'], ['changed'], ['reason'], ['able'], ['log'], ['skype'], ['business'], ['showing'], ['following'], ['please'], ['let'], ['know']] k: 4263 len: <class 'list'> Data: ['call', 'vitalyst', 'error', 'section', 'display', 'note', 'section', 'group', 'supported', 'one', 'note', 'issue', 'error', 'section', 'display', 'note', 'section', 'group', 'supported'] processed_text: ['call', 'vitalyst', 'error', 'section', 'display', 'note', 'section', 'group', 'supported', 'one', 'note', 'issue', 'error', 'section', 'display', 'note', 'section', 'group', 'supported'] list_processed_text: [['call'], ['vitalyst'], ['error'], ['section'], ['display'], ['note'], ['section'], ['group'], ['supported'], ['one'], ['note'], ['issue'], ['error'], ['section'], ['display'], ['note'], ['section'], ['group'], ['supported']] k: 4264 len: <class 'list'> Data: ['ticket', 'change', 'ansi', 'iso', 'closed', 'ticket'] processed_text: ['ticket', 'change', 'ansi', 'iso', 'closed', 'ticket'] list_processed_text: [['ticket'], ['change'], ['ansi'], ['iso'], ['closed'], ['ticket']] k: 4265 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'spam', 'mail', 'coming', 'inbox'] processed_text: ['ticket', 'update', 'ticket', 'spam', 'mail', 'coming', 'inbox'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['spam'], ['mail'], ['coming'], ['inbox']] k: 4266 len: <class 'list'> Data: ['aw', 'ticket', 'change', 'ansi', 'iso', 'hello', 'sudghhahjkkar', 'would', 'please', 'close', 'ticket', 'moment', 'tried', 'change', 'ansi', 'iso', 'worked', 'well', 'please', 'excuse', 'inconvenience'] processed_text: ['aw', 'ticket', 'change', 'ansi', 'iso', 'hello', 'sudghhahjkkar', 'would', 'please', 'close', 'ticket', 'moment', 'tried', 'change', 'ansi', 'iso', 'worked', 'well', 'please', 'excuse', 'inconvenience'] list_processed_text: [['aw'], ['ticket'], ['change'], ['ansi'], ['iso'], ['hello'], ['sudghhahjkkar'], ['would'], ['please'], ['close'], ['ticket'], ['moment'], ['tried'], ['change'], ['ansi'], ['iso'], ['worked'], ['well'], ['please'], ['excuse'], ['inconvenience']] k: 4267 len: <class 'list'> Data: ['change', 'ethic', 'dear', 'change', 'company', 'company', 'mail', 'seems', 'creating', 'problem', 'ethnic', 'site', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'please', 'make', 'sure', 'access'] processed_text: ['change', 'ethic', 'dear', 'change', 'company', 'company', 'mail', 'seems', 'creating', 'problem', 'ethnic', 'site', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp', 'please', 'make', 'sure', 'access'] list_processed_text: [['change'], ['ethic'], ['dear'], ['change'], ['company'], ['company'], ['mail'], ['seems'], ['creating'], ['problem'], ['ethnic'], ['site'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp'], ['please'], ['make'], ['sure'], ['access']] k: 4268 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching'] processed_text: ['outlook', 'launching', 'outlook', 'launching'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching']] k: 4269 len: <class 'list'> Data: ['unable', 'submit', 'time', 'card', 'hi', 'team', 'unable', 'submit', 'time', 'card', 'attached', 'screenshot', 'please', 'help'] processed_text: ['unable', 'submit', 'time', 'card', 'hi', 'team', 'unable', 'submit', 'time', 'card', 'attached', 'screenshot', 'please', 'help'] list_processed_text: [['unable'], ['submit'], ['time'], ['card'], ['hi'], ['team'], ['unable'], ['submit'], ['time'], ['card'], ['attached'], ['screenshot'], ['please'], ['help']] k: 4270 len: <class 'list'> Data: ['outlook', 'updating', 'please', 'see', 'error', 'outlook', 'updating', 'saying', 'password', 'wrong', 'connect', 'server', 'open', 'outlook', 'programdnty', 'asked', 'enter', 'credential', 'server', 'connect', 'currently', 'using', 'web', 'based', 'version', 'outlook', 'internet', 'explorer', 'cid', 'abbc', 'efe', 'aeea', 'aa'] processed_text: ['outlook', 'updating', 'please', 'see', 'error', 'outlook', 'updating', 'saying', 'password', 'wrong', 'connect', 'server', 'open', 'outlook', 'programdnty', 'asked', 'enter', 'credential', 'server', 'connect', 'currently', 'using', 'web', 'based', 'version', 'outlook', 'internet', 'explorer', 'cid', 'abbc', 'efe', 'aeea', 'aa'] list_processed_text: [['outlook'], ['updating'], ['please'], ['see'], ['error'], ['outlook'], ['updating'], ['saying'], ['password'], ['wrong'], ['connect'], ['server'], ['open'], ['outlook'], ['programdnty'], ['asked'], ['enter'], ['credential'], ['server'], ['connect'], ['currently'], ['using'], ['web'], ['based'], ['version'], ['outlook'], ['internet'], ['explorer'], ['cid'], ['abbc'], ['efe'], ['aeea'], ['aa']] k: 4271 len: <class 'list'> Data: ['rrc', 'email', 'box', 'good', 'morning', 'need', 'added', 'couple', 'email', 'box', 'access', 'please', 'assist', 'also', 'muywpnof', 'prtikusy', 'requesting', 'owner', 'email', 'address', 'add', 'people', 'needed', 'possible'] processed_text: ['rrc', 'email', 'box', 'good', 'morning', 'need', 'added', 'couple', 'email', 'box', 'access', 'please', 'assist', 'also', 'muywpnof', 'prtikusy', 'requesting', 'owner', 'email', 'address', 'add', 'people', 'needed', 'possible'] list_processed_text: [['rrc'], ['email'], ['box'], ['good'], ['morning'], ['need'], ['added'], ['couple'], ['email'], ['box'], ['access'], ['please'], ['assist'], ['also'], ['muywpnof'], ['prtikusy'], ['requesting'], ['owner'], ['email'], ['address'], ['add'], ['people'], ['needed'], ['possible']] k: 4272 len: <class 'list'> Data: ['vpn', 'query', 'vpn', 'query'] processed_text: ['vpn', 'query', 'vpn', 'query'] list_processed_text: [['vpn'], ['query'], ['vpn'], ['query']] k: 4273 len: <class 'list'> Data: ['network', 'outage', 'israel', 'israel', 'sale', 'facility', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'israel', 'israel', 'sale', 'facility', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['israel'], ['israel'], ['sale'], ['facility'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4274 len: <class 'list'> Data: ['unable', 'log', 'window', 'unable', 'log', 'window'] processed_text: ['unable', 'log', 'window', 'unable', 'log', 'window'] list_processed_text: [['unable'], ['log'], ['window'], ['unable'], ['log'], ['window']] k: 4275 len: <class 'list'> Data: ['connect', 'share', 'collaboration', 'platform', 'pc', 'collaboration', 'platform', 'company', 'hub', 'hello', 'personnel', 'used', 'collaboration', 'platform', 'saved', 'local', 'computer', 'drive', 'would', 'like', 'connect', 'local', 'collaboration', 'platform', 'collaboration', 'platform', 'accessed', 'office', 'software', 'collaboration', 'platform', 'company', 'hub', 'connect', 'two', 'location', 'best'] processed_text: ['connect', 'share', 'collaboration', 'platform', 'pc', 'collaboration', 'platform', 'company', 'hub', 'hello', 'personnel', 'used', 'collaboration', 'platform', 'saved', 'local', 'computer', 'drive', 'would', 'like', 'connect', 'local', 'collaboration', 'platform', 'collaboration', 'platform', 'accessed', 'office', 'software', 'collaboration', 'platform', 'company', 'hub', 'connect', 'two', 'location', 'best'] list_processed_text: [['connect'], ['share'], ['collaboration'], ['platform'], ['pc'], ['collaboration'], ['platform'], ['company'], ['hub'], ['hello'], ['personnel'], ['used'], ['collaboration'], ['platform'], ['saved'], ['local'], ['computer'], ['drive'], ['would'], ['like'], ['connect'], ['local'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['accessed'], ['office'], ['software'], ['collaboration'], ['platform'], ['company'], ['hub'], ['connect'], ['two'], ['location'], ['best']] k: 4276 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4277 len: <class 'list'> Data: ['important', 'please', 'synchronize', 'network', 'hello', 'mr', 'dwfiykeo', 'argtxmvcumar', 'hello', 'help', 'team', 'please', 'synchronize', 'two', 'network', 'must', 'identical', 'moment', 'data', 'match,', 'thank', 'advance', 'kind', 'regard', 'mafghyrina', 'ntner', 'specialist', 'hr', 'shared', 'service', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['important', 'please', 'synchronize', 'network', 'hello', 'mr', 'dwfiykeo', 'argtxmvcumar', 'hello', 'help', 'team', 'please', 'synchronize', 'two', 'network', 'must', 'identical', 'moment', 'data', 'match,', 'thank', 'advance', 'kind', 'regard', 'mafghyrina', 'ntner', 'specialist', 'hr', 'shared', 'service', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['important'], ['please'], ['synchronize'], ['network'], ['hello'], ['mr'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['help'], ['team'], ['please'], ['synchronize'], ['two'], ['network'], ['must'], ['identical'], ['moment'], ['data'], ['match,'], ['thank'], ['advance'], ['kind'], ['regard'], ['mafghyrina'], ['ntner'], ['specialist'], ['hr'], ['shared'], ['service'], ['company'], ['shared'], ['service'], ['gmbh'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 4278 len: <class 'list'> Data: ['reset', 'password', 'tfsehruw', 'dzrgpkyn', 'erp', 'produktion', 'erp', 'reset', 'password', 'tfsehruw', 'dzrgpkyn', 'erp', 'produktion', 'erp'] processed_text: ['reset', 'password', 'tfsehruw', 'dzrgpkyn', 'erp', 'produktion', 'erp', 'reset', 'password', 'tfsehruw', 'dzrgpkyn', 'erp', 'produktion', 'erp'] list_processed_text: [['reset'], ['password'], ['tfsehruw'], ['dzrgpkyn'], ['erp'], ['produktion'], ['erp'], ['reset'], ['password'], ['tfsehruw'], ['dzrgpkyn'], ['erp'], ['produktion'], ['erp']] k: 4279 len: <class 'list'> Data: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] processed_text: ['call', 'ecwtrjnq', 'jpecxuty', 'call', 'ecwtrjnq', 'jpecxuty'] list_processed_text: [['call'], ['ecwtrjnq'], ['jpecxuty'], ['call'], ['ecwtrjnq'], ['jpecxuty']] k: 4280 len: <class 'list'> Data: ['interface', 'gigabitethernet', 'mtb', 'gf', 'wirelss', 'ap', 'company', 'ap', 'ind', 'kirty', 'pu', 'ff', 'stack', 'sw', 'company', 'com', 'interface', 'gigabitethernet', 'mtb', 'gf', 'wirelss', 'ap', 'company', 'ap', 'ind', 'kirty', 'pu', 'ff', 'stack', 'sw', 'company', 'com'] processed_text: ['interface', 'gigabitethernet', 'mtb', 'gf', 'wirelss', 'ap', 'company', 'ap', 'ind', 'kirty', 'pu', 'ff', 'stack', 'sw', 'company', 'com', 'interface', 'gigabitethernet', 'mtb', 'gf', 'wirelss', 'ap', 'company', 'ap', 'ind', 'kirty', 'pu', 'ff', 'stack', 'sw', 'company', 'com'] list_processed_text: [['interface'], ['gigabitethernet'], ['mtb'], ['gf'], ['wirelss'], ['ap'], ['company'], ['ap'], ['ind'], ['kirty'], ['pu'], ['ff'], ['stack'], ['sw'], ['company'], ['com'], ['interface'], ['gigabitethernet'], ['mtb'], ['gf'], ['wirelss'], ['ap'], ['company'], ['ap'], ['ind'], ['kirty'], ['pu'], ['ff'], ['stack'], ['sw'], ['company'], ['com']] k: 4281 len: <class 'list'> Data: ['skype', 'poor', 'quality', 'please', 'open', 'ticket', 'skype', 'call', 'recently', 'quality', 'poor', 'call', 'multinational', 'india', 'apac', 'participant', 'u', 'audio', 'quality', 'poor', 'could', 'understand', 'point', 'meeting', 'almost', 'waste', 'time', 'also', 'ability', 'broadcast', 'powerpoint', 'erp', 'screen', 'image', 'ba', 'well', 'participant', 'meeting', 'could', 'see', 'content', 'making', 'meeting', 'waste', 'time', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] processed_text: ['skype', 'poor', 'quality', 'please', 'open', 'ticket', 'skype', 'call', 'recently', 'quality', 'poor', 'call', 'multinational', 'india', 'apac', 'participant', 'u', 'audio', 'quality', 'poor', 'could', 'understand', 'point', 'meeting', 'almost', 'waste', 'time', 'also', 'ability', 'broadcast', 'powerpoint', 'erp', 'screen', 'image', 'ba', 'well', 'participant', 'meeting', 'could', 'see', 'content', 'making', 'meeting', 'waste', 'time', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] list_processed_text: [['skype'], ['poor'], ['quality'], ['please'], ['open'], ['ticket'], ['skype'], ['call'], ['recently'], ['quality'], ['poor'], ['call'], ['multinational'], ['india'], ['apac'], ['participant'], ['u'], ['audio'], ['quality'], ['poor'], ['could'], ['understand'], ['point'], ['meeting'], ['almost'], ['waste'], ['time'], ['also'], ['ability'], ['broadcast'], ['powerpoint'], ['erp'], ['screen'], ['image'], ['ba'], ['well'], ['participant'], ['meeting'], ['could'], ['see'], ['content'], ['making'], ['meeting'], ['waste'], ['time'], ['mikhghytr'], ['wafglhdrhjop'], ['sr'], ['manager'], ['global'], ['ethic'], ['compliance'], ['programdntys']] k: 4282 len: <class 'list'> Data: ['cannot', 'log', 'onto', 'telephony', 'software', 'cannot', 'log', 'onto', 'telephony', 'software', 'error', 'message', 'authentication', 'process', 'failed', 'telephone'] processed_text: ['cannot', 'log', 'onto', 'telephony', 'software', 'cannot', 'log', 'onto', 'telephony', 'software', 'error', 'message', 'authentication', 'process', 'failed', 'telephone'] list_processed_text: [['cannot'], ['log'], ['onto'], ['telephony'], ['software'], ['cannot'], ['log'], ['onto'], ['telephony'], ['software'], ['error'], ['message'], ['authentication'], ['process'], ['failed'], ['telephone']] k: 4283 len: <class 'list'> Data: ['laptop', 'need', 'formatheywted', 'sagfhosh', 'karhtyiio', 'hgwofcbx', 'tnowikyv', 'gmrkisxy', 'wgtcylir', 'sridthshar', 'herytur', 'ufpzergq', 'zchjbfdehivashankaraiah', 'asset', 'hi', 'ghkkytu', 'discussed', 'please', 'format', 'laptop', 'need', 'given', 'new', 'joiner', 'vijuryat', 'dgurhtya', 'assigned', 'inc', 'team'] processed_text: ['laptop', 'need', 'formatheywted', 'sagfhosh', 'karhtyiio', 'hgwofcbx', 'tnowikyv', 'gmrkisxy', 'wgtcylir', 'sridthshar', 'herytur', 'ufpzergq', 'zchjbfdehivashankaraiah', 'asset', 'hi', 'ghkkytu', 'discussed', 'please', 'format', 'laptop', 'need', 'given', 'new', 'joiner', 'vijuryat', 'dgurhtya', 'assigned', 'inc', 'team'] list_processed_text: [['laptop'], ['need'], ['formatheywted'], ['sagfhosh'], ['karhtyiio'], ['hgwofcbx'], ['tnowikyv'], ['gmrkisxy'], ['wgtcylir'], ['sridthshar'], ['herytur'], ['ufpzergq'], ['zchjbfdehivashankaraiah'], ['asset'], ['hi'], ['ghkkytu'], ['discussed'], ['please'], ['format'], ['laptop'], ['need'], ['given'], ['new'], ['joiner'], ['vijuryat'], ['dgurhtya'], ['assigned'], ['inc'], ['team']] k: 4284 len: <class 'list'> Data: ['cannot', 'connect', 'outlook', 'connect', 'exchange', 'skype', 'also', 'issue', 'com', 'add', 'excel', 'repeat', 'issue', 'past', 'able', 'connect', 'outlook', 'also', 'com', 'add', 'staying', 'available', 'excel', 'file', 'reselect', 'time', 'open', 'file'] processed_text: ['cannot', 'connect', 'outlook', 'connect', 'exchange', 'skype', 'also', 'issue', 'com', 'add', 'excel', 'repeat', 'issue', 'past', 'able', 'connect', 'outlook', 'also', 'com', 'add', 'staying', 'available', 'excel', 'file', 'reselect', 'time', 'open', 'file'] list_processed_text: [['cannot'], ['connect'], ['outlook'], ['connect'], ['exchange'], ['skype'], ['also'], ['issue'], ['com'], ['add'], ['excel'], ['repeat'], ['issue'], ['past'], ['able'], ['connect'], ['outlook'], ['also'], ['com'], ['add'], ['staying'], ['available'], ['excel'], ['file'], ['reselect'], ['time'], ['open'], ['file']] k: 4285 len: <class 'list'> Data: ['rder', 'material', 'sartlgeo', 'lhqksbdx', 'create', 'delivery', 'allowed', 'sys', 'status', 'exls', 'object', 'vb', 'text', 'need', 'create', 'delivery'] processed_text: ['rder', 'material', 'sartlgeo', 'lhqksbdx', 'create', 'delivery', 'allowed', 'sys', 'status', 'exls', 'object', 'vb', 'text', 'need', 'create', 'delivery'] list_processed_text: [['rder'], ['material'], ['sartlgeo'], ['lhqksbdx'], ['create'], ['delivery'], ['allowed'], ['sys'], ['status'], ['exls'], ['object'], ['vb'], ['text'], ['need'], ['create'], ['delivery']] k: 4286 len: <class 'list'> Data: ['log', 'onto', 'skype', 'changed', 'password', 'yesterday', 'recognize', 'today', 'log', 'onto', 'skype', 'changed', 'password', 'yesterday', 'recognize', 'today'] processed_text: ['log', 'onto', 'skype', 'changed', 'password', 'yesterday', 'recognize', 'today', 'log', 'onto', 'skype', 'changed', 'password', 'yesterday', 'recognize', 'today'] list_processed_text: [['log'], ['onto'], ['skype'], ['changed'], ['password'], ['yesterday'], ['recognize'], ['today'], ['log'], ['onto'], ['skype'], ['changed'], ['password'], ['yesterday'], ['recognize'], ['today']] k: 4287 len: <class 'list'> Data: ['folder', 'access', 'team', 'working', 'please', 'usa', 'access'] processed_text: ['folder', 'access', 'team', 'working', 'please', 'usa', 'access'] list_processed_text: [['folder'], ['access'], ['team'], ['working'], ['please'], ['usa'], ['access']] k: 4288 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'reroute', 'rn', 'back', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'reroute', 'rn', 'back', 'erp', 'fixed', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'reroute', 'rn', 'back', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'reroute', 'rn', 'back', 'erp', 'fixed', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['reroute'], ['rn'], ['back'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['detailed'], ['description'], ['problem'], ['reroute'], ['rn'], ['back'], ['erp'], ['fixed'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 4289 len: <class 'list'> Data: ['instalar', 'docad', 'eletronico', 'user', 'olghiveii', 'segue', 'link'] processed_text: ['instalar', 'docad', 'eletronico', 'user', 'olghiveii', 'segue', 'link'] list_processed_text: [['instalar'], ['docad'], ['eletronico'], ['user'], ['olghiveii'], ['segue'], ['link']] k: 4290 len: <class 'list'> Data: ['speker', 'skype', 'conference', 'germany', 'skype', 'speaker', 'required', 'confernece', 'room', 'conference', 'room', 'behind', 'cantine', 'therefore', 'michghytuael', 'cker', 'confirmed', 'purchase', 'new', 'two', 'speaker', 'xvwchsdg', 'pladjmxt', 'suggested', 'go', 'one', 'bigger', 'speaker', 'instead', 'please', 'check', 'price', 'allow', 'michghytuael', 'compare', 'possibility'] processed_text: ['speker', 'skype', 'conference', 'germany', 'skype', 'speaker', 'required', 'confernece', 'room', 'conference', 'room', 'behind', 'cantine', 'therefore', 'michghytuael', 'cker', 'confirmed', 'purchase', 'new', 'two', 'speaker', 'xvwchsdg', 'pladjmxt', 'suggested', 'go', 'one', 'bigger', 'speaker', 'instead', 'please', 'check', 'price', 'allow', 'michghytuael', 'compare', 'possibility'] list_processed_text: [['speker'], ['skype'], ['conference'], ['germany'], ['skype'], ['speaker'], ['required'], ['confernece'], ['room'], ['conference'], ['room'], ['behind'], ['cantine'], ['therefore'], ['michghytuael'], ['cker'], ['confirmed'], ['purchase'], ['new'], ['two'], ['speaker'], ['xvwchsdg'], ['pladjmxt'], ['suggested'], ['go'], ['one'], ['bigger'], ['speaker'], ['instead'], ['please'], ['check'], ['price'], ['allow'], ['michghytuael'], ['compare'], ['possibility']] k: 4291 len: <class 'list'> Data: ['user', 'safghghga', 'need', 'reset', 'password', 'hello', 'could', 'pls', 'help', 'create', 'new', 'password', 'user', 'id', 'safghghga', 'gabryltka', 'sabhtyhiko', 'blocked', 'computer', 'need', 'access', 'aerp', 'please', 'contact', 'done'] processed_text: ['user', 'safghghga', 'need', 'reset', 'password', 'hello', 'could', 'pls', 'help', 'create', 'new', 'password', 'user', 'id', 'safghghga', 'gabryltka', 'sabhtyhiko', 'blocked', 'computer', 'need', 'access', 'aerp', 'please', 'contact', 'done'] list_processed_text: [['user'], ['safghghga'], ['need'], ['reset'], ['password'], ['hello'], ['could'], ['pls'], ['help'], ['create'], ['new'], ['password'], ['user'], ['id'], ['safghghga'], ['gabryltka'], ['sabhtyhiko'], ['blocked'], ['computer'], ['need'], ['access'], ['aerp'], ['please'], ['contact'], ['done']] k: 4292 len: <class 'list'> Data: ['problem', 'crm', 'lead', 'hi', 'received', 'lead', 'tried', 'convert', 'opportstorage', 'product', 'qualifying', 'got', 'error', 'see', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'crm', 'lead', 'hi', 'received', 'lead', 'tried', 'convert', 'opportstorage', 'product', 'qualifying', 'got', 'error', 'see', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['crm'], ['lead'], ['hi'], ['received'], ['lead'], ['tried'], ['convert'], ['opportstorage'], ['product'], ['qualifying'], ['got'], ['error'], ['see'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 4293 len: <class 'list'> Data: ['company', 'iphone', 'device', 'activation', 'company', 'iphone', 'device', 'activation'] processed_text: ['company', 'iphone', 'device', 'activation', 'company', 'iphone', 'device', 'activation'] list_processed_text: [['company'], ['iphone'], ['device'], ['activation'], ['company'], ['iphone'], ['device'], ['activation']] k: 4294 len: <class 'list'> Data: ['vip', 'unable', 'get', 'network', 'vip', 'unable', 'get', 'network'] processed_text: ['vip', 'unable', 'get', 'network', 'vip', 'unable', 'get', 'network'] list_processed_text: [['vip'], ['unable'], ['get'], ['network'], ['vip'], ['unable'], ['get'], ['network']] k: 4295 len: <class 'list'> Data: ['printer', 'rjc', 'printer', 'server', 'hostname', 'right', 'x', 'printer', 'add', 'pc', 'fine', 'trying', 'print', 'continuously', 'print', 'character', 'symbol', 'used', 'x', 'pc', 'server', 'hostname', 'print', 'fine', 'printer', 'laserjet', 'si', 'mx', 'tim', 'komar', 'looked'] processed_text: ['printer', 'rjc', 'printer', 'server', 'hostname', 'right', 'x', 'printer', 'add', 'pc', 'fine', 'trying', 'print', 'continuously', 'print', 'character', 'symbol', 'used', 'x', 'pc', 'server', 'hostname', 'print', 'fine', 'printer', 'laserjet', 'si', 'mx', 'tim', 'komar', 'looked'] list_processed_text: [['printer'], ['rjc'], ['printer'], ['server'], ['hostname'], ['right'], ['x'], ['printer'], ['add'], ['pc'], ['fine'], ['trying'], ['print'], ['continuously'], ['print'], ['character'], ['symbol'], ['used'], ['x'], ['pc'], ['server'], ['hostname'], ['print'], ['fine'], ['printer'], ['laserjet'], ['si'], ['mx'], ['tim'], ['komar'], ['looked']] k: 4296 len: <class 'list'> Data: ['get', 'erp', 'issue', 'delivery', 'sto', 'truck', 'scheduled', 'pick', 'today', 'stock', 'available', 'erp', 'apparently', 'apo', 'please', 'help', 'issue', 'delivery', 'return', 'scrap', 'powder', 'powder', 'plant'] processed_text: ['get', 'erp', 'issue', 'delivery', 'sto', 'truck', 'scheduled', 'pick', 'today', 'stock', 'available', 'erp', 'apparently', 'apo', 'please', 'help', 'issue', 'delivery', 'return', 'scrap', 'powder', 'powder', 'plant'] list_processed_text: [['get'], ['erp'], ['issue'], ['delivery'], ['sto'], ['truck'], ['scheduled'], ['pick'], ['today'], ['stock'], ['available'], ['erp'], ['apparently'], ['apo'], ['please'], ['help'], ['issue'], ['delivery'], ['return'], ['scrap'], ['powder'], ['powder'], ['plant']] k: 4297 len: <class 'list'> Data: ['fitness', 'center', 'digital', 'signage', 'pc', 'connect', 'network', 'get', 'update', 'fitness', 'center', 'digital', 'signage', 'pc', 'connect', 'network', 'get', 'update'] processed_text: ['fitness', 'center', 'digital', 'signage', 'pc', 'connect', 'network', 'get', 'update', 'fitness', 'center', 'digital', 'signage', 'pc', 'connect', 'network', 'get', 'update'] list_processed_text: [['fitness'], ['center'], ['digital'], ['signage'], ['pc'], ['connect'], ['network'], ['get'], ['update'], ['fitness'], ['center'], ['digital'], ['signage'], ['pc'], ['connect'], ['network'], ['get'], ['update']] k: 4298 len: <class 'list'> Data: ['unable', 'logon', 'erp', 'unable', 'logon', 'erp'] processed_text: ['unable', 'logon', 'erp', 'unable', 'logon', 'erp'] list_processed_text: [['unable'], ['logon'], ['erp'], ['unable'], ['logon'], ['erp']] k: 4299 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4300 len: <class 'list'> Data: ['reset', 'password', 'user', 'zigioachstyac', 'sid', 'sid', 'reset', 'password', 'user', 'zigioachstyac', 'sid', 'sid'] processed_text: ['reset', 'password', 'user', 'zigioachstyac', 'sid', 'sid', 'reset', 'password', 'user', 'zigioachstyac', 'sid', 'sid'] list_processed_text: [['reset'], ['password'], ['user'], ['zigioachstyac'], ['sid'], ['sid'], ['reset'], ['password'], ['user'], ['zigioachstyac'], ['sid'], ['sid']] k: 4301 len: <class 'list'> Data: ['wg', 'drawing', 'vgsqetbx', 'wpkcbtjl', 'sent', 'thursday', 'dnwfhpyl', 'zqbldipk', 'subject', 'drawing', 'hello', 'another', 'drawing', 'incorrectly', 'printed', 'drawing', 'number,', 'please', 'correct', 'kind', 'regard', 'vgsqetbx', 'wpkcbtjl', 'production', 'planner', 'company', 'produktions', 'gmbh', 'co', 'kg', 'gesch', 'ftshmfqn', 'dab', 'rtnhip', 'sent', 'dq', 'rtnhip', 'ftsmdip', 'dr', 'jofghyuach', 'tuesday', 'tfhzidnq', 'wqpfdobe', 'vgsqetbx', 'wpkcbtjl', 'ksvqzmre', 'yqnajdwh', 'subject', 'aw', 'erp', 'plm', 'drawing', 'different', 'drawing', 'number', 'hello', 'heighjtyich', 'apologize', 'wrong', 'gdw', 'drawing', 'drawing', 'accidentally', 'converted', 'second', 'time', 'month', 'plm', 'go', 'live', 'plm', 'number', 'always', 'one', 'top', 'right', 'stamp', 'also', 'many', 'scanned', 'drawing', 'could', 'nictafvwlpz', 'opfigqramdntyatically', 'converted', 'pdf', "i'm", 'sorry', 'drawing', 'converted', 'caused', 'problem', 'hundred', 'seem', 'e', 'repair', 'before,', 'necessary,', 'best', 'best'] processed_text: ['wg', 'drawing', 'vgsqetbx', 'wpkcbtjl', 'sent', 'thursday', 'dnwfhpyl', 'zqbldipk', 'subject', 'drawing', 'hello', 'another', 'drawing', 'incorrectly', 'printed', 'drawing', 'number,', 'please', 'correct', 'kind', 'regard', 'vgsqetbx', 'wpkcbtjl', 'production', 'planner', 'company', 'produktions', 'gmbh', 'co', 'kg', 'gesch', 'ftshmfqn', 'dab', 'rtnhip', 'sent', 'dq', 'rtnhip', 'ftsmdip', 'dr', 'jofghyuach', 'tuesday', 'tfhzidnq', 'wqpfdobe', 'vgsqetbx', 'wpkcbtjl', 'ksvqzmre', 'yqnajdwh', 'subject', 'aw', 'erp', 'plm', 'drawing', 'different', 'drawing', 'number', 'hello', 'heighjtyich', 'apologize', 'wrong', 'gdw', 'drawing', 'drawing', 'accidentally', 'converted', 'second', 'time', 'month', 'plm', 'go', 'live', 'plm', 'number', 'always', 'one', 'top', 'right', 'stamp', 'also', 'many', 'scanned', 'drawing', 'could', 'nictafvwlpz', 'opfigqramdntyatically', 'converted', 'pdf', "i'm", 'sorry', 'drawing', 'converted', 'caused', 'problem', 'hundred', 'seem', 'e', 'repair', 'before,', 'necessary,', 'best', 'best'] list_processed_text: [['wg'], ['drawing'], ['vgsqetbx'], ['wpkcbtjl'], ['sent'], ['thursday'], ['dnwfhpyl'], ['zqbldipk'], ['subject'], ['drawing'], ['hello'], ['another'], ['drawing'], ['incorrectly'], ['printed'], ['drawing'], ['number,'], ['please'], ['correct'], ['kind'], ['regard'], ['vgsqetbx'], ['wpkcbtjl'], ['production'], ['planner'], ['company'], ['produktions'], ['gmbh'], ['co'], ['kg'], ['gesch'], ['ftshmfqn'], ['dab'], ['rtnhip'], ['sent'], ['dq'], ['rtnhip'], ['ftsmdip'], ['dr'], ['jofghyuach'], ['tuesday'], ['tfhzidnq'], ['wqpfdobe'], ['vgsqetbx'], ['wpkcbtjl'], ['ksvqzmre'], ['yqnajdwh'], ['subject'], ['aw'], ['erp'], ['plm'], ['drawing'], ['different'], ['drawing'], ['number'], ['hello'], ['heighjtyich'], ['apologize'], ['wrong'], ['gdw'], ['drawing'], ['drawing'], ['accidentally'], ['converted'], ['second'], ['time'], ['month'], ['plm'], ['go'], ['live'], ['plm'], ['number'], ['always'], ['one'], ['top'], ['right'], ['stamp'], ['also'], ['many'], ['scanned'], ['drawing'], ['could'], ['nictafvwlpz'], ['opfigqramdntyatically'], ['converted'], ['pdf'], ["i'm"], ['sorry'], ['drawing'], ['converted'], ['caused'], ['problem'], ['hundred'], ['seem'], ['e'], ['repair'], ['before,'], ['necessary,'], ['best'], ['best']] k: 4302 len: <class 'list'> Data: ['able', 'access', 'email', 'able', 'access', 'email', 'itclukpe', 'aimcfeko', 'manager'] processed_text: ['able', 'access', 'email', 'able', 'access', 'email', 'itclukpe', 'aimcfeko', 'manager'] list_processed_text: [['able'], ['access'], ['email'], ['able'], ['access'], ['email'], ['itclukpe'], ['aimcfeko'], ['manager']] k: 4303 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 4304 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 4305 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 4306 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 4307 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 4308 len: <class 'list'> Data: ['vpn', 'doesnt', 'check', 'antivirus', 'company', 'domain', 'connecting', 'outside', 'network', 'refer', 'screenshot'] processed_text: ['vpn', 'doesnt', 'check', 'antivirus', 'company', 'domain', 'connecting', 'outside', 'network', 'refer', 'screenshot'] list_processed_text: [['vpn'], ['doesnt'], ['check'], ['antivirus'], ['company'], ['domain'], ['connecting'], ['outside'], ['network'], ['refer'], ['screenshot']] k: 4309 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4310 len: <class 'list'> Data: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'issue', 'week', 'ago', 'ticket', 'inc', 'virtual', 'center', 'server'] processed_text: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'issue', 'week', 'ago', 'ticket', 'inc', 'virtual', 'center', 'server'] list_processed_text: [['system'], ['disk'], ['server'], ['hostname'], ['full'], ['hello'], ['system'], ['disk'], ['server'], ['hostname'], ['full'], ['please'], ['check'], ['issue'], ['week'], ['ago'], ['ticket'], ['inc'], ['virtual'], ['center'], ['server']] k: 4311 len: <class 'list'> Data: ['reporting', 'tool', 'issue', 'daily', 'sale', 'order', 'report', 'reply', 'panjkytr', 'please', 'create', 'case', 'need', 'possibility', 'subscribe', 'dedicated', 'daily', 'sale', 'order', 'report', 'receive', 'mti', 'data', 'per', 'email', 'instead', 'total', 'industrial', 'result', 'consisting', 'combined', 'result', 'tooling', 'mti', 'mit', 'freundlichen', 'grugermany', 'best'] processed_text: ['reporting', 'tool', 'issue', 'daily', 'sale', 'order', 'report', 'reply', 'panjkytr', 'please', 'create', 'case', 'need', 'possibility', 'subscribe', 'dedicated', 'daily', 'sale', 'order', 'report', 'receive', 'mti', 'data', 'per', 'email', 'instead', 'total', 'industrial', 'result', 'consisting', 'combined', 'result', 'tooling', 'mti', 'mit', 'freundlichen', 'grugermany', 'best'] list_processed_text: [['reporting'], ['tool'], ['issue'], ['daily'], ['sale'], ['order'], ['report'], ['reply'], ['panjkytr'], ['please'], ['create'], ['case'], ['need'], ['possibility'], ['subscribe'], ['dedicated'], ['daily'], ['sale'], ['order'], ['report'], ['receive'], ['mti'], ['data'], ['per'], ['email'], ['instead'], ['total'], ['industrial'], ['result'], ['consisting'], ['combined'], ['result'], ['tooling'], ['mti'], ['mit'], ['freundlichen'], ['grugermany'], ['best']] k: 4312 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 4313 len: <class 'list'> Data: ['mr', 'tmqfjard', 'qzhgdoua', 'ordinary', 'requires', 'full', 'access', 'following', 'eu', 'tool', 'module', 'fyi', 'axesnghb', 'cyzuomxa', 'sent', 'thursday', 'ughzilfm', 'cfibdamq', 'tmqfjard', 'qzhgdoua', 'subject', 'tmqfjard', 'qzhgdoua', 'authorization', 'r', 'eu', 'tool', 'module', 'hello', 'mr', 'bghakch', 'mr', 'tmqfjard', 'qzhgdoua', 'gr', 'en', 'master', 'production', 'department', 'requires', 'full', 'access', 'following', 'eu', 'tool', 'module', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'registered', 'office', 'germany', 'personally', 'liable', 'partner', 'general', 'partner', 'company', 'gmbh', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'u', 'nd', 'read', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['mr', 'tmqfjard', 'qzhgdoua', 'ordinary', 'requires', 'full', 'access', 'following', 'eu', 'tool', 'module', 'fyi', 'axesnghb', 'cyzuomxa', 'sent', 'thursday', 'ughzilfm', 'cfibdamq', 'tmqfjard', 'qzhgdoua', 'subject', 'tmqfjard', 'qzhgdoua', 'authorization', 'r', 'eu', 'tool', 'module', 'hello', 'mr', 'bghakch', 'mr', 'tmqfjard', 'qzhgdoua', 'gr', 'en', 'master', 'production', 'department', 'requires', 'full', 'access', 'following', 'eu', 'tool', 'module', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'registered', 'office', 'germany', 'personally', 'liable', 'partner', 'general', 'partner', 'company', 'gmbh', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'u', 'nd', 'read', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['mr'], ['tmqfjard'], ['qzhgdoua'], ['ordinary'], ['requires'], ['full'], ['access'], ['following'], ['eu'], ['tool'], ['module'], ['fyi'], ['axesnghb'], ['cyzuomxa'], ['sent'], ['thursday'], ['ughzilfm'], ['cfibdamq'], ['tmqfjard'], ['qzhgdoua'], ['subject'], ['tmqfjard'], ['qzhgdoua'], ['authorization'], ['r'], ['eu'], ['tool'], ['module'], ['hello'], ['mr'], ['bghakch'], ['mr'], ['tmqfjard'], ['qzhgdoua'], ['gr'], ['en'], ['master'], ['production'], ['department'], ['requires'], ['full'], ['access'], ['following'], ['eu'], ['tool'], ['module'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['registered'], ['office'], ['germany'], ['personally'], ['liable'], ['partner'], ['general'], ['partner'], ['company'], ['gmbh'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['excluded'], ['disclosure'], ['applicable'], ['law'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['prohibited.'], ['received'], ['communication'], ['mistake,'], ['please'], ['notify'], ['sender'], ['u'], ['nd'], ['read'], ['message'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 4314 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'trying', 'ship', 'product', 'usa', 'getting', 'put', 'away', 'ticket', 'system', 'taking', 'estorage', 'productly', 'long', 'time', 'process', 'transaction', 'getting', 'error', 'stating', 'update', 'terminated', 'site', 'location', 'company', 'usa', 'ohio', 'user', 'id', 'ad', 'lilesfhpk', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'sid', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'md', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'production', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'sure', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'trying', 'ship', 'product', 'usa', 'getting', 'put', 'away', 'ticket', 'system', 'taking', 'estorage', 'productly', 'long', 'time', 'process', 'transaction', 'getting', 'error', 'stating', 'update', 'terminated', 'site', 'location', 'company', 'usa', 'ohio', 'user', 'id', 'ad', 'lilesfhpk', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'sid', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'md', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'production', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'sure', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['trying'], ['ship'], ['product'], ['usa'], ['getting'], ['put'], ['away'], ['ticket'], ['system'], ['taking'], ['estorage'], ['productly'], ['long'], ['time'], ['process'], ['transaction'], ['getting'], ['error'], ['stating'], ['update'], ['terminated'], ['site'], ['location'], ['company'], ['usa'], ['ohio'], ['user'], ['id'], ['ad'], ['lilesfhpk'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['erp'], ['sid'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['md'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['production'], ['issue'], ['replicated'], ['support'], ['group'], ['user'], ['seeing'], ['sure'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred']] k: 4315 len: <class 'list'> Data: ['request', 'mobile', 'email', 'access', 'dear', 'sir', 'attached', 'filled', 'wireless', 'mobility', 'policy', 'sheet', 'manager', 'approval', 'kindly', 'enable', 'email', 'access', 'mobile', 'kindly', 'contact', 'information', 'required', 'regard', 'best'] processed_text: ['request', 'mobile', 'email', 'access', 'dear', 'sir', 'attached', 'filled', 'wireless', 'mobility', 'policy', 'sheet', 'manager', 'approval', 'kindly', 'enable', 'email', 'access', 'mobile', 'kindly', 'contact', 'information', 'required', 'regard', 'best'] list_processed_text: [['request'], ['mobile'], ['email'], ['access'], ['dear'], ['sir'], ['attached'], ['filled'], ['wireless'], ['mobility'], ['policy'], ['sheet'], ['manager'], ['approval'], ['kindly'], ['enable'], ['email'], ['access'], ['mobile'], ['kindly'], ['contact'], ['information'], ['required'], ['regard'], ['best']] k: 4316 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4317 len: <class 'list'> Data: ['nan', 'good', 'morning', 'trying', 'log', 'erp', 'get', 'error', 'please', 'help', 'urgently', 'process', 'customer', 'order'] processed_text: ['nan', 'good', 'morning', 'trying', 'log', 'erp', 'get', 'error', 'please', 'help', 'urgently', 'process', 'customer', 'order'] list_processed_text: [['nan'], ['good'], ['morning'], ['trying'], ['log'], ['erp'], ['get'], ['error'], ['please'], ['help'], ['urgently'], ['process'], ['customer'], ['order']] k: 4318 len: <class 'list'> Data: ['computer', 'get', 'hot', 'hello', 'computer', 'hot', 'fan', 'run', 'time', 'hear', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['computer', 'get', 'hot', 'hello', 'computer', 'hot', 'fan', 'run', 'time', 'hear', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['computer'], ['get'], ['hot'], ['hello'], ['computer'], ['hot'], ['fan'], ['run'], ['time'], ['hear'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 4319 len: <class 'list'> Data: ['cable', 'vga', 'swap', 'jionmpsf', 'wnkpzcmv', 'cable', 'vga', 'swap', 'jionmpsf', 'wnkpzcmv'] processed_text: ['cable', 'vga', 'swap', 'jionmpsf', 'wnkpzcmv', 'cable', 'vga', 'swap', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['cable'], ['vga'], ['swap'], ['jionmpsf'], ['wnkpzcmv'], ['cable'], ['vga'], ['swap'], ['jionmpsf'], ['wnkpzcmv']] k: 4320 len: <class 'list'> Data: ['monitor', 'defective', 'hello', 'monitor', 'ahmet', 'k', 'material', 'warehouse', 'causing', 'problem', 'please', 'take', 'look'] processed_text: ['monitor', 'defective', 'hello', 'monitor', 'ahmet', 'k', 'material', 'warehouse', 'causing', 'problem', 'please', 'take', 'look'] list_processed_text: [['monitor'], ['defective'], ['hello'], ['monitor'], ['ahmet'], ['k'], ['material'], ['warehouse'], ['causing'], ['problem'], ['please'], ['take'], ['look']] k: 4321 len: <class 'list'> Data: ['install', 'pulverleitstand', 'tmqfjard', 'qzhgdoua', 'install', 'pulverleitstand', 'tmqfjard', 'qzhgdoua'] processed_text: ['install', 'pulverleitstand', 'tmqfjard', 'qzhgdoua', 'install', 'pulverleitstand', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['install'], ['pulverleitstand'], ['tmqfjard'], ['qzhgdoua'], ['install'], ['pulverleitstand'], ['tmqfjard'], ['qzhgdoua']] k: 4322 len: <class 'list'> Data: ['falsche', 'formatierung', 'pdf', 'bfqnvezs', 'vwkasnxe', 'falsche', 'formatierung', 'pdf', 'bfqnvezs', 'vwkasnxe'] processed_text: ['falsche', 'formatierung', 'pdf', 'bfqnvezs', 'vwkasnxe', 'falsche', 'formatierung', 'pdf', 'bfqnvezs', 'vwkasnxe'] list_processed_text: [['falsche'], ['formatierung'], ['pdf'], ['bfqnvezs'], ['vwkasnxe'], ['falsche'], ['formatierung'], ['pdf'], ['bfqnvezs'], ['vwkasnxe']] k: 4323 len: <class 'list'> Data: ['install', 'pulverleitstand', 'vaigycet', 'jtgmpdcr', 'install', 'pulverleitstand', 'vaigycet', 'jtgmpdcr'] processed_text: ['install', 'pulverleitstand', 'vaigycet', 'jtgmpdcr', 'install', 'pulverleitstand', 'vaigycet', 'jtgmpdcr'] list_processed_text: [['install'], ['pulverleitstand'], ['vaigycet'], ['jtgmpdcr'], ['install'], ['pulverleitstand'], ['vaigycet'], ['jtgmpdcr']] k: 4324 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4325 len: <class 'list'> Data: ['crm', 'complaint', 'ticket', 'required', 'hello', 'please', 'raise', 'ticket', 'behalf', 'crm', 'complaint', 'error', 'archived', 'ecc', 'best'] processed_text: ['crm', 'complaint', 'ticket', 'required', 'hello', 'please', 'raise', 'ticket', 'behalf', 'crm', 'complaint', 'error', 'archived', 'ecc', 'best'] list_processed_text: [['crm'], ['complaint'], ['ticket'], ['required'], ['hello'], ['please'], ['raise'], ['ticket'], ['behalf'], ['crm'], ['complaint'], ['error'], ['archived'], ['ecc'], ['best']] k: 4326 len: <class 'list'> Data: ['login', 'failure', 'erp', 'user', 'nieghjyukea', 'good', 'morning', 'team', 'problem', 'login', 'erp', 'please', 'assist', 'kind'] processed_text: ['login', 'failure', 'erp', 'user', 'nieghjyukea', 'good', 'morning', 'team', 'problem', 'login', 'erp', 'please', 'assist', 'kind'] list_processed_text: [['login'], ['failure'], ['erp'], ['user'], ['nieghjyukea'], ['good'], ['morning'], ['team'], ['problem'], ['login'], ['erp'], ['please'], ['assist'], ['kind']] k: 4327 len: <class 'list'> Data: ['erp', 'engineering', 'tool', 'please', 'reset', 'password', 'erp', 'engineering', 'tool', 'dipl', 'ing', 'ba', 'bqapjkcl', 'ljeakcqf', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['erp', 'engineering', 'tool', 'please', 'reset', 'password', 'erp', 'engineering', 'tool', 'dipl', 'ing', 'ba', 'bqapjkcl', 'ljeakcqf', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['erp'], ['engineering'], ['tool'], ['please'], ['reset'], ['password'], ['erp'], ['engineering'], ['tool'], ['dipl'], ['ing'], ['ba'], ['bqapjkcl'], ['ljeakcqf'], ['company'], ['shared'], ['service'], ['gmbh'], ['managing'], ['director'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 4328 len: <class 'list'> Data: ['reenable', 'erp', 'sid', 'account', 'vvaghjnthl', 'henghl', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'sid', 'password', 'user', 'vvaghjnthl', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] processed_text: ['reenable', 'erp', 'sid', 'account', 'vvaghjnthl', 'henghl', 'hi', 'team', 'kindly', 'please', 'assist', 'reset', 'sid', 'password', 'user', 'vvaghjnthl', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'email'] list_processed_text: [['reenable'], ['erp'], ['sid'], ['account'], ['vvaghjnthl'], ['henghl'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['reset'], ['sid'], ['password'], ['user'], ['vvaghjnthl'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['email']] k: 4329 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'good', 'morning', 'please', 'help', 'u', 'south', 'africa', 'office', 'south', 'africa', 'cannot', 'log', 'erp', 'getting', 'log', 'balancing', 'error', 'look', 'like', 'diginet', 'line', 'effecting', 'everyone', 'kind'] processed_text: ['logon', 'balancing', 'error', 'good', 'morning', 'please', 'help', 'u', 'south', 'africa', 'office', 'south', 'africa', 'cannot', 'log', 'erp', 'getting', 'log', 'balancing', 'error', 'look', 'like', 'diginet', 'line', 'effecting', 'everyone', 'kind'] list_processed_text: [['logon'], ['balancing'], ['error'], ['good'], ['morning'], ['please'], ['help'], ['u'], ['south'], ['africa'], ['office'], ['south'], ['africa'], ['cannot'], ['log'], ['erp'], ['getting'], ['log'], ['balancing'], ['error'], ['look'], ['like'], ['diginet'], ['line'], ['effecting'], ['everyone'], ['kind']] k: 4330 len: <class 'list'> Data: ['username', 'mabelteghj', 'erp', 'logon', 'good', 'morning', 'able', 'log', 'erp', 'kindly', 'assist', 'kind'] processed_text: ['username', 'mabelteghj', 'erp', 'logon', 'good', 'morning', 'able', 'log', 'erp', 'kindly', 'assist', 'kind'] list_processed_text: [['username'], ['mabelteghj'], ['erp'], ['logon'], ['good'], ['morning'], ['able'], ['log'], ['erp'], ['kindly'], ['assist'], ['kind']] k: 4331 len: <class 'list'> Data: ['erp', 'system', 'morning', 'please', 'help', 'syghmesa', 'lock', 'erp', 'shutdown', 'computer', 'still', 'please', 'please', 'help', 'u', 'company', 'south', 'africa'] processed_text: ['erp', 'system', 'morning', 'please', 'help', 'syghmesa', 'lock', 'erp', 'shutdown', 'computer', 'still', 'please', 'please', 'help', 'u', 'company', 'south', 'africa'] list_processed_text: [['erp'], ['system'], ['morning'], ['please'], ['help'], ['syghmesa'], ['lock'], ['erp'], ['shutdown'], ['computer'], ['still'], ['please'], ['please'], ['help'], ['u'], ['company'], ['south'], ['africa']] k: 4332 len: <class 'list'> Data: ['erp', 'good', 'morning', 'please', 'assist', 'cannot', 'log', 'erp', 'receive', 'following', 'error'] processed_text: ['erp', 'good', 'morning', 'please', 'assist', 'cannot', 'log', 'erp', 'receive', 'following', 'error'] list_processed_text: [['erp'], ['good'], ['morning'], ['please'], ['assist'], ['cannot'], ['log'], ['erp'], ['receive'], ['following'], ['error']] k: 4333 len: <class 'list'> Data: ['erp', 'good', 'day', 'trust', 'well', 'please', 'help', 'cant', 'lock', 'erp', 'give', 'code'] processed_text: ['erp', 'good', 'day', 'trust', 'well', 'please', 'help', 'cant', 'lock', 'erp', 'give', 'code'] list_processed_text: [['erp'], ['good'], ['day'], ['trust'], ['well'], ['please'], ['help'], ['cant'], ['lock'], ['erp'], ['give'], ['code']] k: 4334 len: <class 'list'> Data: ['terminal', 'iso,', 'drawing', 'called', 'eu', 'tool', 'terminal', 'iso,', 'drawing', 'called', 'eu', 'tool', 'function', 'required', 'prepare', 'order'] processed_text: ['terminal', 'iso,', 'drawing', 'called', 'eu', 'tool', 'terminal', 'iso,', 'drawing', 'called', 'eu', 'tool', 'function', 'required', 'prepare', 'order'] list_processed_text: [['terminal'], ['iso,'], ['drawing'], ['called'], ['eu'], ['tool'], ['terminal'], ['iso,'], ['drawing'], ['called'], ['eu'], ['tool'], ['function'], ['required'], ['prepare'], ['order']] k: 4335 len: <class 'list'> Data: ['bobj', 'error', 'issue', 'refreshing', 'global', 'spend', 'analytics', 'report', 'bobj'] processed_text: ['bobj', 'error', 'issue', 'refreshing', 'global', 'spend', 'analytics', 'report', 'bobj'] list_processed_text: [['bobj'], ['error'], ['issue'], ['refreshing'], ['global'], ['spend'], ['analytics'], ['report'], ['bobj']] k: 4336 len: <class 'list'> Data: ['job', 'bkwin', 'tax', 'interface', 'qa', 'daily', 'failed', 'job', 'scheduler', 'critical', 'lib', 'drive', 'time', 'pm', 'device', 'address', 'found', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'tax', 'interface', 'qa', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'tax', 'interface', 'qa', 'daily', 'failed', 'job', 'scheduler', 'critical', 'lib', 'drive', 'time', 'pm', 'device', 'address', 'found', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'tax', 'interface', 'qa', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['tax'], ['interface'], ['qa'], ['daily'], ['failed'], ['job'], ['scheduler'], ['critical'], ['lib'], ['drive'], ['time'], ['pm'], ['device'], ['address'], ['found'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['bkwin'], ['tax'], ['interface'], ['qa'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 4337 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 4338 len: <class 'list'> Data: ['delete', 'charm', 'since', 'longer', 'required', 'request', 'delete', 'charm', 'since', 'longer', 'required'] processed_text: ['delete', 'charm', 'since', 'longer', 'required', 'request', 'delete', 'charm', 'since', 'longer', 'required'] list_processed_text: [['delete'], ['charm'], ['since'], ['longer'], ['required'], ['request'], ['delete'], ['charm'], ['since'], ['longer'], ['required']] k: 4339 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 4340 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'major', 'hostname', 'full', 'backup', 'time', 'pm', 'lost', 'connection', 'vbda', 'named', 'hostname', 'company', 'company', 'com', 'host', 'hostname', 'company', 'company', 'com', 'ipc', 'subsystem', 'report', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'major', 'hostname', 'full', 'backup', 'time', 'pm', 'lost', 'connection', 'vbda', 'named', 'hostname', 'company', 'company', 'com', 'host', 'hostname', 'company', 'company', 'com', 'ipc', 'subsystem', 'report', 'ipc', 'read', 'error', 'system', 'error', 'connection', 'reset', 'peer', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['major'], ['hostname'], ['full'], ['backup'], ['time'], ['pm'], ['lost'], ['connection'], ['vbda'], ['named'], ['hostname'], ['company'], ['company'], ['com'], ['host'], ['hostname'], ['company'], ['company'], ['com'], ['ipc'], ['subsystem'], ['report'], ['ipc'], ['read'], ['error'], ['system'], ['error'], ['connection'], ['reset'], ['peer'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 4341 len: <class 'list'> Data: ['unable', 'load', 'engineering', 'tool', 'new', 'say', 'cannot', 'connect', 'internet', 'see', 'cell'] processed_text: ['unable', 'load', 'engineering', 'tool', 'new', 'say', 'cannot', 'connect', 'internet', 'see', 'cell'] list_processed_text: [['unable'], ['load'], ['engineering'], ['tool'], ['new'], ['say'], ['cannot'], ['connect'], ['internet'], ['see'], ['cell']] k: 4342 len: <class 'list'> Data: ['vpn', 'vpn', 'allow', 'access', 'erp', 'second', 'time', 'week', 'issue', 'vpn', 'vpn', 'workaround', 'working', 'either', 'evening', 'pfzxecbo', 'ptygkvzl', 'sr', 'analyst', 'na', 'indirect', 'industrial', 'sale'] processed_text: ['vpn', 'vpn', 'allow', 'access', 'erp', 'second', 'time', 'week', 'issue', 'vpn', 'vpn', 'workaround', 'working', 'either', 'evening', 'pfzxecbo', 'ptygkvzl', 'sr', 'analyst', 'na', 'indirect', 'industrial', 'sale'] list_processed_text: [['vpn'], ['vpn'], ['allow'], ['access'], ['erp'], ['second'], ['time'], ['week'], ['issue'], ['vpn'], ['vpn'], ['workaround'], ['working'], ['either'], ['evening'], ['pfzxecbo'], ['ptygkvzl'], ['sr'], ['analyst'], ['na'], ['indirect'], ['industrial'], ['sale']] k: 4343 len: <class 'list'> Data: ['engineering', 'tool', 'phone', 'app', 'please', 'see', 'attached', 'screenshot', 'engineering', 'tool', 'app', 'longer', 'able', 'check', 'availability', 'message', 'unable', 'connect', 'availability', 'server', 'tried', 'uninstalling', 'reinstalling', 'fix', 'problem', 'known', 'issue', 'like', 'week'] processed_text: ['engineering', 'tool', 'phone', 'app', 'please', 'see', 'attached', 'screenshot', 'engineering', 'tool', 'app', 'longer', 'able', 'check', 'availability', 'message', 'unable', 'connect', 'availability', 'server', 'tried', 'uninstalling', 'reinstalling', 'fix', 'problem', 'known', 'issue', 'like', 'week'] list_processed_text: [['engineering'], ['tool'], ['phone'], ['app'], ['please'], ['see'], ['attached'], ['screenshot'], ['engineering'], ['tool'], ['app'], ['longer'], ['able'], ['check'], ['availability'], ['message'], ['unable'], ['connect'], ['availability'], ['server'], ['tried'], ['uninstalling'], ['reinstalling'], ['fix'], ['problem'], ['known'], ['issue'], ['like'], ['week']] k: 4344 len: <class 'list'> Data: ['please', 'remove', 'quyhn', 'mcgudftigre', 'usa', 'campus', 'calendar', 'requested', 'cwuospin', 'nbhoxqpe', 'pm', 'othybin', 'graceuyt', 'nwfodmhc', 'exurcwkm', 'facility', 'rakthyesh', 'elt', 'update', 'call', 'hello', 'help', 'please', 'remove', 'quyhn', 'mcgudftigre', 'usa', 'campus', 'calendar', 'requested', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'usa', 'campus', 'othybin', 'graceuyt', 'wrote', 'hello', 'please', 'check', 'see', 'quyhn', 'meeting', 'removed', 'calendar'] processed_text: ['please', 'remove', 'quyhn', 'mcgudftigre', 'usa', 'campus', 'calendar', 'requested', 'cwuospin', 'nbhoxqpe', 'pm', 'othybin', 'graceuyt', 'nwfodmhc', 'exurcwkm', 'facility', 'rakthyesh', 'elt', 'update', 'call', 'hello', 'help', 'please', 'remove', 'quyhn', 'mcgudftigre', 'usa', 'campus', 'calendar', 'requested', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'usa', 'campus', 'othybin', 'graceuyt', 'wrote', 'hello', 'please', 'check', 'see', 'quyhn', 'meeting', 'removed', 'calendar'] list_processed_text: [['please'], ['remove'], ['quyhn'], ['mcgudftigre'], ['usa'], ['campus'], ['calendar'], ['requested'], ['cwuospin'], ['nbhoxqpe'], ['pm'], ['othybin'], ['graceuyt'], ['nwfodmhc'], ['exurcwkm'], ['facility'], ['rakthyesh'], ['elt'], ['update'], ['call'], ['hello'], ['help'], ['please'], ['remove'], ['quyhn'], ['mcgudftigre'], ['usa'], ['campus'], ['calendar'], ['requested'], ['sincerely'], ['stanfghyley'], ['guhtykes'], ['fmp'], ['facility'], ['manager'], ['usa'], ['campus'], ['othybin'], ['graceuyt'], ['wrote'], ['hello'], ['please'], ['check'], ['see'], ['quyhn'], ['meeting'], ['removed'], ['calendar']] k: 4345 len: <class 'list'> Data: ['since', 'last', 'security', 'update', 'unable', 'print', 'anything', 'network', 'printer', 'error', 'message', 'asks', 'trust', 'printer', 'tell', 'need', 'download', 'driver', 'phone', 'number'] processed_text: ['since', 'last', 'security', 'update', 'unable', 'print', 'anything', 'network', 'printer', 'error', 'message', 'asks', 'trust', 'printer', 'tell', 'need', 'download', 'driver', 'phone', 'number'] list_processed_text: [['since'], ['last'], ['security'], ['update'], ['unable'], ['print'], ['anything'], ['network'], ['printer'], ['error'], ['message'], ['asks'], ['trust'], ['printer'], ['tell'], ['need'], ['download'], ['driver'], ['phone'], ['number']] k: 4346 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'usa', 'user', 'id', 'ad', 'steince', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'sid', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'va', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'order', 'processing', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'remote', 'user', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'usa', 'user', 'id', 'ad', 'steince', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'sid', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'va', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'order', 'processing', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'remote', 'user', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['please'], ['provide'], ['detail'], ['template'], ['multiple'], ['application'], ['impacted'], ['please'], ['use'], ['quick'], ['ticket'], ['template'], ['operation'], ['folder'], ['site'], ['location'], ['usa'], ['user'], ['id'], ['ad'], ['steince'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['erp'], ['sid'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['va'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['order'], ['processing'], ['issue'], ['replicated'], ['support'], ['group'], ['user'], ['seeing'], ['remote'], ['user'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred']] k: 4347 len: <class 'list'> Data: ['outlook', 'crm', 'error', 'neither', 'crm', 'outlook', 'load', 'restarted', 'pc', 'time', 'locked', 'several', 'time', 'synchronizing', 'crm', 'login', 'wghjkftewj', 'image', 'jpg', 'image', 'jpg'] processed_text: ['outlook', 'crm', 'error', 'neither', 'crm', 'outlook', 'load', 'restarted', 'pc', 'time', 'locked', 'several', 'time', 'synchronizing', 'crm', 'login', 'wghjkftewj', 'image', 'jpg', 'image', 'jpg'] list_processed_text: [['outlook'], ['crm'], ['error'], ['neither'], ['crm'], ['outlook'], ['load'], ['restarted'], ['pc'], ['time'], ['locked'], ['several'], ['time'], ['synchronizing'], ['crm'], ['login'], ['wghjkftewj'], ['image'], ['jpg'], ['image'], ['jpg']] k: 4348 len: <class 'list'> Data: ['contact', 'loaded', 'imts', 'existing', 'account', 'carry', 'required', 'field', 'erp', 'crm', 'msd', 'prospect', 'account', 'contact', 'came', 'ok', 'contact', 'came', 'incorrectly', 'came', 'elm'] processed_text: ['contact', 'loaded', 'imts', 'existing', 'account', 'carry', 'required', 'field', 'erp', 'crm', 'msd', 'prospect', 'account', 'contact', 'came', 'ok', 'contact', 'came', 'incorrectly', 'came', 'elm'] list_processed_text: [['contact'], ['loaded'], ['imts'], ['existing'], ['account'], ['carry'], ['required'], ['field'], ['erp'], ['crm'], ['msd'], ['prospect'], ['account'], ['contact'], ['came'], ['ok'], ['contact'], ['came'], ['incorrectly'], ['came'], ['elm']] k: 4349 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4350 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4351 len: <class 'list'> Data: ['office', 'qohfjpna', 'exphkims', 'show', 'activation', 'required', 'needed', 'reimage', 'pc', 'qohfjpna', 'exphkims', 'palghjmal', 'office', 'come', 'company', 'image', 'deeghyupak', 'raju', 'showing', 'activation', 'required', 'also', 'show', 'leslie', 'account', 'associated', 'office', 'product', 'always', 'm', 'office', 'needed', 'reimage', 'pc', 'could', 'please', 'check', 'account', 'fix'] processed_text: ['office', 'qohfjpna', 'exphkims', 'show', 'activation', 'required', 'needed', 'reimage', 'pc', 'qohfjpna', 'exphkims', 'palghjmal', 'office', 'come', 'company', 'image', 'deeghyupak', 'raju', 'showing', 'activation', 'required', 'also', 'show', 'leslie', 'account', 'associated', 'office', 'product', 'always', 'm', 'office', 'needed', 'reimage', 'pc', 'could', 'please', 'check', 'account', 'fix'] list_processed_text: [['office'], ['qohfjpna'], ['exphkims'], ['show'], ['activation'], ['required'], ['needed'], ['reimage'], ['pc'], ['qohfjpna'], ['exphkims'], ['palghjmal'], ['office'], ['come'], ['company'], ['image'], ['deeghyupak'], ['raju'], ['showing'], ['activation'], ['required'], ['also'], ['show'], ['leslie'], ['account'], ['associated'], ['office'], ['product'], ['always'], ['m'], ['office'], ['needed'], ['reimage'], ['pc'], ['could'], ['please'], ['check'], ['account'], ['fix']] k: 4352 len: <class 'list'> Data: ['remove', 'hi', 'please', 'help', 'remove', 'rujpckto', 'lhutkpxm', 'themfg', 'grp', 'group'] processed_text: ['remove', 'hi', 'please', 'help', 'remove', 'rujpckto', 'lhutkpxm', 'themfg', 'grp', 'group'] list_processed_text: [['remove'], ['hi'], ['please'], ['help'], ['remove'], ['rujpckto'], ['lhutkpxm'], ['themfg'], ['grp'], ['group']] k: 4353 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4354 len: <class 'list'> Data: ['need', 'change', 'password', 'get', 'synced', 'system', 'need', 'change', 'password', 'get', 'synced', 'system'] processed_text: ['need', 'change', 'password', 'get', 'synced', 'system', 'need', 'change', 'password', 'get', 'synced', 'system'] list_processed_text: [['need'], ['change'], ['password'], ['get'], ['synced'], ['system'], ['need'], ['change'], ['password'], ['get'], ['synced'], ['system']] k: 4355 len: <class 'list'> Data: ['outlook', 'allowing', 'open', 'email', 'inbox', 'outlook', 'allowing', 'open', 'email', 'inbox', 'connected', 'user', 'system', 'using', 'teamviewer', 'sent', 'uacyltoe', 'hxgaycze', 'mail', 'user', 'user', 'mailbox', 'user', 'confirmed', 'able', 'open', 'advised', 'user', 'close', 'reopen', 'outllok', 'check', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] processed_text: ['outlook', 'allowing', 'open', 'email', 'inbox', 'outlook', 'allowing', 'open', 'email', 'inbox', 'connected', 'user', 'system', 'using', 'teamviewer', 'sent', 'uacyltoe', 'hxgaycze', 'mail', 'user', 'user', 'mailbox', 'user', 'confirmed', 'able', 'open', 'advised', 'user', 'close', 'reopen', 'outllok', 'check', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] list_processed_text: [['outlook'], ['allowing'], ['open'], ['email'], ['inbox'], ['outlook'], ['allowing'], ['open'], ['email'], ['inbox'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['sent'], ['uacyltoe'], ['hxgaycze'], ['mail'], ['user'], ['user'], ['mailbox'], ['user'], ['confirmed'], ['able'], ['open'], ['advised'], ['user'], ['close'], ['reopen'], ['outllok'], ['check'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved']] k: 4356 len: <class 'list'> Data: ['external', 'monitor', 'detecting', 'dell', 'tablet', 'external', 'monitor', 'detecting', 'dell', 'tablet'] processed_text: ['external', 'monitor', 'detecting', 'dell', 'tablet', 'external', 'monitor', 'detecting', 'dell', 'tablet'] list_processed_text: [['external'], ['monitor'], ['detecting'], ['dell'], ['tablet'], ['external'], ['monitor'], ['detecting'], ['dell'], ['tablet']] k: 4357 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 4358 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'kd', 'hp', 'color', 'laserjet', 'pcl', 'detailed', 'description', 'problem', 'try', 'send', 'document', 'printer', 'say', 'driver', 'update', 'needed', 'next', 'printer', 'name', 'click', 'print', 'start', 'download', 'driver', 'repeat', 'several', 'time', 'displaying', 'error', 'window', 'cannot', 'print', 'due', 'problem', 'current', 'printer', 'setup', 'printed', 'printer', 'machine', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'specifically', 'microsoft', 'word', 'document', 'also', 'tried', 'printing', 'email', 'excel', 'document', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'microsoft', 'word', 'microsoft', 'excel', 'microsoft', 'outlook', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'kd', 'hp', 'color', 'laserjet', 'pcl', 'detailed', 'description', 'problem', 'try', 'send', 'document', 'printer', 'say', 'driver', 'update', 'needed', 'next', 'printer', 'name', 'click', 'print', 'start', 'download', 'driver', 'repeat', 'several', 'time', 'displaying', 'error', 'window', 'cannot', 'print', 'due', 'problem', 'current', 'printer', 'setup', 'printed', 'printer', 'machine', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'specifically', 'microsoft', 'word', 'document', 'also', 'tried', 'printing', 'email', 'excel', 'document', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'microsoft', 'word', 'microsoft', 'excel', 'microsoft', 'outlook', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['kd'], ['hp'], ['color'], ['laserjet'], ['pcl'], ['detailed'], ['description'], ['problem'], ['try'], ['send'], ['document'], ['printer'], ['say'], ['driver'], ['update'], ['needed'], ['next'], ['printer'], ['name'], ['click'], ['print'], ['start'], ['download'], ['driver'], ['repeat'], ['several'], ['time'], ['displaying'], ['error'], ['window'], ['cannot'], ['print'], ['due'], ['problem'], ['current'], ['printer'], ['setup'], ['printed'], ['printer'], ['machine'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['specifically'], ['microsoft'], ['word'], ['document'], ['also'], ['tried'], ['printing'], ['email'], ['excel'], ['document'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['microsoft'], ['word'], ['microsoft'], ['excel'], ['microsoft'], ['outlook'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 4359 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 4360 len: <class 'list'> Data: ['printer', 'driver', 'error', 'good', 'afternoon', 'know', 'happening', 'get', 'error', 'try', 'print', 'normal', 'default', 'printer', 'say', 'need', 'driver', 'installed', 'get', 'box', 'try', 'get', 'screenshot', 'printing', 'box', 'pop', 'close', 'snipping', 'tool', 'go', 'away', 'pop', 'back', 'every', 'time', 'try', 'use', 'snipping', 'tool', 'show', 'error', 'bzxljkoy', 'rvoiqthl', 'getting', 'error'] processed_text: ['printer', 'driver', 'error', 'good', 'afternoon', 'know', 'happening', 'get', 'error', 'try', 'print', 'normal', 'default', 'printer', 'say', 'need', 'driver', 'installed', 'get', 'box', 'try', 'get', 'screenshot', 'printing', 'box', 'pop', 'close', 'snipping', 'tool', 'go', 'away', 'pop', 'back', 'every', 'time', 'try', 'use', 'snipping', 'tool', 'show', 'error', 'bzxljkoy', 'rvoiqthl', 'getting', 'error'] list_processed_text: [['printer'], ['driver'], ['error'], ['good'], ['afternoon'], ['know'], ['happening'], ['get'], ['error'], ['try'], ['print'], ['normal'], ['default'], ['printer'], ['say'], ['need'], ['driver'], ['installed'], ['get'], ['box'], ['try'], ['get'], ['screenshot'], ['printing'], ['box'], ['pop'], ['close'], ['snipping'], ['tool'], ['go'], ['away'], ['pop'], ['back'], ['every'], ['time'], ['try'], ['use'], ['snipping'], ['tool'], ['show'], ['error'], ['bzxljkoy'], ['rvoiqthl'], ['getting'], ['error']] k: 4361 len: <class 'list'> Data: ['pc', 'set', 'new', 'employee', 'mghlisha', 'baranwfhrty', 'setup', 'laptop', 'new', 'hire', 'mghlisha', 'baranwfhrty'] processed_text: ['pc', 'set', 'new', 'employee', 'mghlisha', 'baranwfhrty', 'setup', 'laptop', 'new', 'hire', 'mghlisha', 'baranwfhrty'] list_processed_text: [['pc'], ['set'], ['new'], ['employee'], ['mghlisha'], ['baranwfhrty'], ['setup'], ['laptop'], ['new'], ['hire'], ['mghlisha'], ['baranwfhrty']] k: 4362 len: <class 'list'> Data: ['wifi', 'issue', 'wifi', 'getting', 'connect'] processed_text: ['wifi', 'issue', 'wifi', 'getting', 'connect'] list_processed_text: [['wifi'], ['issue'], ['wifi'], ['getting'], ['connect']] k: 4363 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 4364 len: <class 'list'> Data: ['spam', 'email', 'vmqcyzda', 'kgvrfwcj', 'pm', 'ron', 'port', 'nwfodmhc', 'exurcwkm', 'tjlizqgc', 'ngvwoukp', 'ytqhfmwi', 'itnakpmc', 'billghj', 'dhjuyick', 'lipfnxsy', 'rvjlnpef', 'amar', 'fw', 'summit', 'meeting', 'importance', 'high', 'help', 'desk', 'email', 'legit', 'look', 'like', 'upcoming', 'business', 'practice', 'summit', 'best'] processed_text: ['spam', 'email', 'vmqcyzda', 'kgvrfwcj', 'pm', 'ron', 'port', 'nwfodmhc', 'exurcwkm', 'tjlizqgc', 'ngvwoukp', 'ytqhfmwi', 'itnakpmc', 'billghj', 'dhjuyick', 'lipfnxsy', 'rvjlnpef', 'amar', 'fw', 'summit', 'meeting', 'importance', 'high', 'help', 'desk', 'email', 'legit', 'look', 'like', 'upcoming', 'business', 'practice', 'summit', 'best'] list_processed_text: [['spam'], ['email'], ['vmqcyzda'], ['kgvrfwcj'], ['pm'], ['ron'], ['port'], ['nwfodmhc'], ['exurcwkm'], ['tjlizqgc'], ['ngvwoukp'], ['ytqhfmwi'], ['itnakpmc'], ['billghj'], ['dhjuyick'], ['lipfnxsy'], ['rvjlnpef'], ['amar'], ['fw'], ['summit'], ['meeting'], ['importance'], ['high'], ['help'], ['desk'], ['email'], ['legit'], ['look'], ['like'], ['upcoming'], ['business'], ['practice'], ['summit'], ['best']] k: 4365 len: <class 'list'> Data: ['pc', 'set', 'new', 'employee', 'pc', 'set', 'new', 'employee', 'krisyuhnyrtkurtyar', 'kghpanhjuwdian'] processed_text: ['pc', 'set', 'new', 'employee', 'pc', 'set', 'new', 'employee', 'krisyuhnyrtkurtyar', 'kghpanhjuwdian'] list_processed_text: [['pc'], ['set'], ['new'], ['employee'], ['pc'], ['set'], ['new'], ['employee'], ['krisyuhnyrtkurtyar'], ['kghpanhjuwdian']] k: 4366 len: <class 'list'> Data: ['pdf', 'printer', 'want', 'software', 'print', 'document', 'pdf'] processed_text: ['pdf', 'printer', 'want', 'software', 'print', 'document', 'pdf'] list_processed_text: [['pdf'], ['printer'], ['want'], ['software'], ['print'], ['document'], ['pdf']] k: 4367 len: <class 'list'> Data: ['change', 'old', 'pc', 'configure', 'new', 'laptop', 'remove', 'old', 'pc'] processed_text: ['change', 'old', 'pc', 'configure', 'new', 'laptop', 'remove', 'old', 'pc'] list_processed_text: [['change'], ['old'], ['pc'], ['configure'], ['new'], ['laptop'], ['remove'], ['old'], ['pc']] k: 4368 len: <class 'list'> Data: ['frequent', 'account', 'lockout', 'account', 'getting', 'locked', 'frequently', 'worked', 'gso', 'many', 'time', 'still', 'please', 'check', 'end'] processed_text: ['frequent', 'account', 'lockout', 'account', 'getting', 'locked', 'frequently', 'worked', 'gso', 'many', 'time', 'still', 'please', 'check', 'end'] list_processed_text: [['frequent'], ['account'], ['lockout'], ['account'], ['getting'], ['locked'], ['frequently'], ['worked'], ['gso'], ['many'], ['time'], ['still'], ['please'], ['check'], ['end']] k: 4369 len: <class 'list'> Data: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded'] processed_text: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded'] list_processed_text: [['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['duration'], ['high'], ['loading'], ['refresh'], ['loaded'], ['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['duration'], ['high'], ['loading'], ['refresh'], ['loaded']] k: 4370 len: <class 'list'> Data: ['approved', 'expense', 'report', 'date', 'range', 'error', 'es', 'portal', 'expense', 'report', 'approved', 'wrong', 'date', 'range', 'showing', 'need', 'say', 'need', 'change', 'date', 'order', 'enter', 'expense', 'report', 'date', 'ranging'] processed_text: ['approved', 'expense', 'report', 'date', 'range', 'error', 'es', 'portal', 'expense', 'report', 'approved', 'wrong', 'date', 'range', 'showing', 'need', 'say', 'need', 'change', 'date', 'order', 'enter', 'expense', 'report', 'date', 'ranging'] list_processed_text: [['approved'], ['expense'], ['report'], ['date'], ['range'], ['error'], ['es'], ['portal'], ['expense'], ['report'], ['approved'], ['wrong'], ['date'], ['range'], ['showing'], ['need'], ['say'], ['need'], ['change'], ['date'], ['order'], ['enter'], ['expense'], ['report'], ['date'], ['ranging']] k: 4371 len: <class 'list'> Data: ['locked', 'skype', 'nan'] processed_text: ['locked', 'skype', 'nan'] list_processed_text: [['locked'], ['skype'], ['nan']] k: 4372 len: <class 'list'> Data: ['unable', 'host', 'skype', 'meeting', 'conference', 'room', 'unable', 'host', 'skype', 'meeting', 'conference', 'room'] processed_text: ['unable', 'host', 'skype', 'meeting', 'conference', 'room', 'unable', 'host', 'skype', 'meeting', 'conference', 'room'] list_processed_text: [['unable'], ['host'], ['skype'], ['meeting'], ['conference'], ['room'], ['unable'], ['host'], ['skype'], ['meeting'], ['conference'], ['room']] k: 4373 len: <class 'list'> Data: ['vip', 'printer', 'driver', 'update', 'vip', 'printer', 'driver', 'update'] processed_text: ['vip', 'printer', 'driver', 'update', 'vip', 'printer', 'driver', 'update'] list_processed_text: [['vip'], ['printer'], ['driver'], ['update'], ['vip'], ['printer'], ['driver'], ['update']] k: 4374 len: <class 'list'> Data: ['erp', 'user', 'blocked', 'please', 'unlock', 'immediately', 'extend', 'account', 'necessary', 'tomorrow', 'py', 'run', 'please', 'unlock', 'user', 'ghjvreicj', 'immediately', 'erp', 'extend', 'account', 'immediately', 'needed', 'tomorrow', 'py', 'run', 'tszvorba', 'wtldpncx', 'mail', 'sent', 'wednesday', 'nkjtoxwv', 'wqtlzvxu', 'lixwgnto', 'krutnylz', 'subject', 'locked', 'erp', 'please', 'urgently', 'unlock', 'importance', 'high', 'hello', 'mr', 'hohgajnn', 'wanted', 'log', 'entered', 'correct', 'login', 'data', 'unfortunately', 'blocked', 'view', 'imminent', 'billing,', 'urgently', 'need', 'activation', 'erp', 'many', 'thanks', 'advance', 'many', 'gr', 'tszvorba', 'wtldpncx', 'team', 'management', 'logo', 'new', 'final', 'klein', 'personal', 'partner', 'strixner', 'gmbh', 'message', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['erp', 'user', 'blocked', 'please', 'unlock', 'immediately', 'extend', 'account', 'necessary', 'tomorrow', 'py', 'run', 'please', 'unlock', 'user', 'ghjvreicj', 'immediately', 'erp', 'extend', 'account', 'immediately', 'needed', 'tomorrow', 'py', 'run', 'tszvorba', 'wtldpncx', 'mail', 'sent', 'wednesday', 'nkjtoxwv', 'wqtlzvxu', 'lixwgnto', 'krutnylz', 'subject', 'locked', 'erp', 'please', 'urgently', 'unlock', 'importance', 'high', 'hello', 'mr', 'hohgajnn', 'wanted', 'log', 'entered', 'correct', 'login', 'data', 'unfortunately', 'blocked', 'view', 'imminent', 'billing,', 'urgently', 'need', 'activation', 'erp', 'many', 'thanks', 'advance', 'many', 'gr', 'tszvorba', 'wtldpncx', 'team', 'management', 'logo', 'new', 'final', 'klein', 'personal', 'partner', 'strixner', 'gmbh', 'message', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['erp'], ['user'], ['blocked'], ['please'], ['unlock'], ['immediately'], ['extend'], ['account'], ['necessary'], ['tomorrow'], ['py'], ['run'], ['please'], ['unlock'], ['user'], ['ghjvreicj'], ['immediately'], ['erp'], ['extend'], ['account'], ['immediately'], ['needed'], ['tomorrow'], ['py'], ['run'], ['tszvorba'], ['wtldpncx'], ['mail'], ['sent'], ['wednesday'], ['nkjtoxwv'], ['wqtlzvxu'], ['lixwgnto'], ['krutnylz'], ['subject'], ['locked'], ['erp'], ['please'], ['urgently'], ['unlock'], ['importance'], ['high'], ['hello'], ['mr'], ['hohgajnn'], ['wanted'], ['log'], ['entered'], ['correct'], ['login'], ['data'], ['unfortunately'], ['blocked'], ['view'], ['imminent'], ['billing,'], ['urgently'], ['need'], ['activation'], ['erp'], ['many'], ['thanks'], ['advance'], ['many'], ['gr'], ['tszvorba'], ['wtldpncx'], ['team'], ['management'], ['logo'], ['new'], ['final'], ['klein'], ['personal'], ['partner'], ['strixner'], ['gmbh'], ['message'], ['solely'], ['intended'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['forbidden'], ['received'], ['message'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 4375 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'reset', 'password', 'management', 'tool'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['password'], ['management'], ['tool']] k: 4376 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 4377 len: <class 'list'> Data: ['problem', 'printing', 'hello', 'unable', 'print', 'network', 'printer', 'area', 'get', 'pop', 'ups', 'install', 'driver', 'error', 'please', 'help'] processed_text: ['problem', 'printing', 'hello', 'unable', 'print', 'network', 'printer', 'area', 'get', 'pop', 'ups', 'install', 'driver', 'error', 'please', 'help'] list_processed_text: [['problem'], ['printing'], ['hello'], ['unable'], ['print'], ['network'], ['printer'], ['area'], ['get'], ['pop'], ['ups'], ['install'], ['driver'], ['error'], ['please'], ['help']] k: 4378 len: <class 'list'> Data: ['pricing', 'error', 'order', 'number', 'unable', 'change', 'price', 'order', 'number', 'please', 'help', 'u', 'fix', 'issue', 'inwarehouse', 'tool', 'created', 'tonight'] processed_text: ['pricing', 'error', 'order', 'number', 'unable', 'change', 'price', 'order', 'number', 'please', 'help', 'u', 'fix', 'issue', 'inwarehouse', 'tool', 'created', 'tonight'] list_processed_text: [['pricing'], ['error'], ['order'], ['number'], ['unable'], ['change'], ['price'], ['order'], ['number'], ['please'], ['help'], ['u'], ['fix'], ['issue'], ['inwarehouse'], ['tool'], ['created'], ['tonight']] k: 4379 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 4380 len: <class 'list'> Data: ['reset', 'password', 'ahydmrbu', 'fjymgtvo', 'telephony', 'software', 'hello', 'could', 'please', 'reset', 'password', 'telephony', 'software', 'supervisor', 'system'] processed_text: ['reset', 'password', 'ahydmrbu', 'fjymgtvo', 'telephony', 'software', 'hello', 'could', 'please', 'reset', 'password', 'telephony', 'software', 'supervisor', 'system'] list_processed_text: [['reset'], ['password'], ['ahydmrbu'], ['fjymgtvo'], ['telephony'], ['software'], ['hello'], ['could'], ['please'], ['reset'], ['password'], ['telephony'], ['software'], ['supervisor'], ['system']] k: 4381 len: <class 'list'> Data: ['account', 'locked', 'ad', 'name', 'afplnyxb', 'eiomnuba', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'password', 'vpn', 'blokker', 'please', 'reset', 'teh', 'password', 'username', 'vanghtydec', 'change', 'password', 'unlocked'] processed_text: ['account', 'locked', 'ad', 'name', 'afplnyxb', 'eiomnuba', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'password', 'vpn', 'blokker', 'please', 'reset', 'teh', 'password', 'username', 'vanghtydec', 'change', 'password', 'unlocked'] list_processed_text: [['account'], ['locked'], ['ad'], ['name'], ['afplnyxb'], ['eiomnuba'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['password'], ['vpn'], ['blokker'], ['please'], ['reset'], ['teh'], ['password'], ['username'], ['vanghtydec'], ['change'], ['password'], ['unlocked']] k: 4382 len: <class 'list'> Data: ['unable', 'log', 'outlook', 'morning', 'unable', 'log', 'outlook', 'morning', 'microsoft', 'crm', 'add', 'corrupted'] processed_text: ['unable', 'log', 'outlook', 'morning', 'unable', 'log', 'outlook', 'morning', 'microsoft', 'crm', 'add', 'corrupted'] list_processed_text: [['unable'], ['log'], ['outlook'], ['morning'], ['unable'], ['log'], ['outlook'], ['morning'], ['microsoft'], ['crm'], ['add'], ['corrupted']] k: 4383 len: <class 'list'> Data: ['unable', 'get', 'skype', 'call', 'name', 'bixsapwu', 'lcamiopz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reason', 'skype', 'call', 'conference', 'room', 'usa', 'campus'] processed_text: ['unable', 'get', 'skype', 'call', 'name', 'bixsapwu', 'lcamiopz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reason', 'skype', 'call', 'conference', 'room', 'usa', 'campus'] list_processed_text: [['unable'], ['get'], ['skype'], ['call'], ['name'], ['bixsapwu'], ['lcamiopz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['reason'], ['skype'], ['call'], ['conference'], ['room'], ['usa'], ['campus']] k: 4384 len: <class 'list'> Data: ['power', 'outage', 'vogelfontein', 'sa', 'vpn', 'circuit', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'vogelfontein', 'sa', 'vpn', 'circuit', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['vogelfontein'], ['sa'], ['vpn'], ['circuit'], ['et'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4385 len: <class 'list'> Data: ['update', 'user', 'interaction', 'desktop', 'update', 'user', 'interaction', 'desktop', 'ypdhesrq', 'eotjzyxm', 'rqll'] processed_text: ['update', 'user', 'interaction', 'desktop', 'update', 'user', 'interaction', 'desktop', 'ypdhesrq', 'eotjzyxm', 'rqll'] list_processed_text: [['update'], ['user'], ['interaction'], ['desktop'], ['update'], ['user'], ['interaction'], ['desktop'], ['ypdhesrq'], ['eotjzyxm'], ['rqll']] k: 4386 len: <class 'list'> Data: ['infotype', 'exist', 'personal', 'infotype', 'exist', 'personal', 'phone'] processed_text: ['infotype', 'exist', 'personal', 'infotype', 'exist', 'personal', 'phone'] list_processed_text: [['infotype'], ['exist'], ['personal'], ['infotype'], ['exist'], ['personal'], ['phone']] k: 4387 len: <class 'list'> Data: ['unable', 'install', 'gdandt', 'font', 'name', 'ovxwqybe', 'gevzkrlp', 'email', 'telephone', 'summary', 'need', 'gdandt', 'font', 'installed'] processed_text: ['unable', 'install', 'gdandt', 'font', 'name', 'ovxwqybe', 'gevzkrlp', 'email', 'telephone', 'summary', 'need', 'gdandt', 'font', 'installed'] list_processed_text: [['unable'], ['install'], ['gdandt'], ['font'], ['name'], ['ovxwqybe'], ['gevzkrlp'], ['email'], ['telephone'], ['summary'], ['need'], ['gdandt'], ['font'], ['installed']] k: 4388 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'screen', 'print', 'attached', 'highlight', 'field', 'listed', 'spreadsheet', 'provided', 'live', 'sid', 'example', 'reviewed', 'incase', 'werent', 'aware', 'pfzxecbo', 'ptygkvzl', 'pm', 'raghfhgh', 'gowhjtya', 'ticket', 'comment', 'added', 'example', 'attached', 'sid', 'question', 'please', 'let', 'know'] processed_text: ['ticket', 'comment', 'added', 'screen', 'print', 'attached', 'highlight', 'field', 'listed', 'spreadsheet', 'provided', 'live', 'sid', 'example', 'reviewed', 'incase', 'werent', 'aware', 'pfzxecbo', 'ptygkvzl', 'pm', 'raghfhgh', 'gowhjtya', 'ticket', 'comment', 'added', 'example', 'attached', 'sid', 'question', 'please', 'let', 'know'] list_processed_text: [['ticket'], ['comment'], ['added'], ['screen'], ['print'], ['attached'], ['highlight'], ['field'], ['listed'], ['spreadsheet'], ['provided'], ['live'], ['sid'], ['example'], ['reviewed'], ['incase'], ['werent'], ['aware'], ['pfzxecbo'], ['ptygkvzl'], ['pm'], ['raghfhgh'], ['gowhjtya'], ['ticket'], ['comment'], ['added'], ['example'], ['attached'], ['sid'], ['question'], ['please'], ['let'], ['know']] k: 4389 len: <class 'list'> Data: ['sid', 'user', 'locked', 'sid', 'user', 'locked'] processed_text: ['sid', 'user', 'locked', 'sid', 'user', 'locked'] list_processed_text: [['sid'], ['user'], ['locked'], ['sid'], ['user'], ['locked']] k: 4390 len: <class 'list'> Data: ['thousand', 'update', 'thousand', 'update'] processed_text: ['thousand', 'update', 'thousand', 'update'] list_processed_text: [['thousand'], ['update'], ['thousand'], ['update']] k: 4391 len: <class 'list'> Data: ['unable', 'login', 'vpn', 'unable', 'login', 'vpn', 'page', 'stopped', 'checking', 'antivirus', 'client'] processed_text: ['unable', 'login', 'vpn', 'unable', 'login', 'vpn', 'page', 'stopped', 'checking', 'antivirus', 'client'] list_processed_text: [['unable'], ['login'], ['vpn'], ['unable'], ['login'], ['vpn'], ['page'], ['stopped'], ['checking'], ['antivirus'], ['client']] k: 4392 len: <class 'list'> Data: ['error', 'failed', 'reset', 'cached', 'password', 'locked', 'unlocked', 'pc', 'new', 'password', 'updated', 'password', 'email', 'access', 'companysecure', 'cell', 'phone'] processed_text: ['error', 'failed', 'reset', 'cached', 'password', 'locked', 'unlocked', 'pc', 'new', 'password', 'updated', 'password', 'email', 'access', 'companysecure', 'cell', 'phone'] list_processed_text: [['error'], ['failed'], ['reset'], ['cached'], ['password'], ['locked'], ['unlocked'], ['pc'], ['new'], ['password'], ['updated'], ['password'], ['email'], ['access'], ['companysecure'], ['cell'], ['phone']] k: 4393 len: <class 'list'> Data: ['vmsliazh', 'ltksxmyv', 'edksm', 'please', 'change', 'schedule', 'job', 'import', 'complete', 'erp', 'data', 'nightly', 'file', 'seems', 'missing', 'record', 'later', 'file', 'seems', 'complete', 'nightly', 'update', 'milano', 'run', 'simplyfies', 'support', 'please', 'change', 'value', 'field', 'occurs', 'starting', 'attached', 'schedule', 'picture'] processed_text: ['vmsliazh', 'ltksxmyv', 'edksm', 'please', 'change', 'schedule', 'job', 'import', 'complete', 'erp', 'data', 'nightly', 'file', 'seems', 'missing', 'record', 'later', 'file', 'seems', 'complete', 'nightly', 'update', 'milano', 'run', 'simplyfies', 'support', 'please', 'change', 'value', 'field', 'occurs', 'starting', 'attached', 'schedule', 'picture'] list_processed_text: [['vmsliazh'], ['ltksxmyv'], ['edksm'], ['please'], ['change'], ['schedule'], ['job'], ['import'], ['complete'], ['erp'], ['data'], ['nightly'], ['file'], ['seems'], ['missing'], ['record'], ['later'], ['file'], ['seems'], ['complete'], ['nightly'], ['update'], ['milano'], ['run'], ['simplyfies'], ['support'], ['please'], ['change'], ['value'], ['field'], ['occurs'], ['starting'], ['attached'], ['schedule'], ['picture']] k: 4394 len: <class 'list'> Data: ['speaker', 'working', 'issue', 'speaker', 'working', 'troubleshooting', 'ran', 'hardware', 'troubleshooter', 'got', 'message', 'speaker', 'hehr', 'toolhone', 'connected', 'device', 'checked', 'device', 'manager', 'realtek', 'audio', 'driver', 'installed', 'tried', 'updating', 'update', 'available', 'tried', 'downloading', 'driver', 'dell', 'com', 'support', 'speaker', 'installed', 'system', 'unable', 'install', 'driver', 'checked', 'playing', 'audio', 'using', 'earphone', 'worked', 'fine', 'confirming', 'issue', 'hardware', 'conclusion', 'either', 'speaker', 'installed', 'working'] processed_text: ['speaker', 'working', 'issue', 'speaker', 'working', 'troubleshooting', 'ran', 'hardware', 'troubleshooter', 'got', 'message', 'speaker', 'hehr', 'toolhone', 'connected', 'device', 'checked', 'device', 'manager', 'realtek', 'audio', 'driver', 'installed', 'tried', 'updating', 'update', 'available', 'tried', 'downloading', 'driver', 'dell', 'com', 'support', 'speaker', 'installed', 'system', 'unable', 'install', 'driver', 'checked', 'playing', 'audio', 'using', 'earphone', 'worked', 'fine', 'confirming', 'issue', 'hardware', 'conclusion', 'either', 'speaker', 'installed', 'working'] list_processed_text: [['speaker'], ['working'], ['issue'], ['speaker'], ['working'], ['troubleshooting'], ['ran'], ['hardware'], ['troubleshooter'], ['got'], ['message'], ['speaker'], ['hehr'], ['toolhone'], ['connected'], ['device'], ['checked'], ['device'], ['manager'], ['realtek'], ['audio'], ['driver'], ['installed'], ['tried'], ['updating'], ['update'], ['available'], ['tried'], ['downloading'], ['driver'], ['dell'], ['com'], ['support'], ['speaker'], ['installed'], ['system'], ['unable'], ['install'], ['driver'], ['checked'], ['playing'], ['audio'], ['using'], ['earphone'], ['worked'], ['fine'], ['confirming'], ['issue'], ['hardware'], ['conclusion'], ['either'], ['speaker'], ['installed'], ['working']] k: 4395 len: <class 'list'> Data: ['outlook', 'responding', 'crm', 'sync', 'outlook', 'responding', 'crm', 'sync'] processed_text: ['outlook', 'responding', 'crm', 'sync', 'outlook', 'responding', 'crm', 'sync'] list_processed_text: [['outlook'], ['responding'], ['crm'], ['sync'], ['outlook'], ['responding'], ['crm'], ['sync']] k: 4396 len: <class 'list'> Data: ['reset', 'prtgghjk', 'password', 'please', 'reset', 'prtgghjk', 'password'] processed_text: ['reset', 'prtgghjk', 'password', 'please', 'reset', 'prtgghjk', 'password'] list_processed_text: [['reset'], ['prtgghjk'], ['password'], ['please'], ['reset'], ['prtgghjk'], ['password']] k: 4397 len: <class 'list'> Data: ['print', 'tc', 'tc', 'hostname', 'since', 'mandatory', 'reboot', 'trkwehzg', 'pqjrhsul', 'unable', 'print', 'tc', 'tried', 'tc', 'morning', 'also', 'unsuccessful', 'attempting', 'print', 'dialogue', 'box', 'pop', 'copy', 'dll', 'file', 'drive', 'error', 'message', 'pop', 'saying', 'error', 'printing', 'started', 'check', 'printer', 'setup', 'window', 'control', 'panel', 'tried', 'update', 'driver', 'control', 'panel', 'dll', 'file', 'downloaded', 'attempt', 'print', 'tried', 'printing', 'several', 'application', 'outlook', 'excel', 'adobe', 'reader', 'success', 'user', 'still', 'able', 'print', 'printer', 'spit', 'erp', 'order', 'one', 'engineer'] processed_text: ['print', 'tc', 'tc', 'hostname', 'since', 'mandatory', 'reboot', 'trkwehzg', 'pqjrhsul', 'unable', 'print', 'tc', 'tried', 'tc', 'morning', 'also', 'unsuccessful', 'attempting', 'print', 'dialogue', 'box', 'pop', 'copy', 'dll', 'file', 'drive', 'error', 'message', 'pop', 'saying', 'error', 'printing', 'started', 'check', 'printer', 'setup', 'window', 'control', 'panel', 'tried', 'update', 'driver', 'control', 'panel', 'dll', 'file', 'downloaded', 'attempt', 'print', 'tried', 'printing', 'several', 'application', 'outlook', 'excel', 'adobe', 'reader', 'success', 'user', 'still', 'able', 'print', 'printer', 'spit', 'erp', 'order', 'one', 'engineer'] list_processed_text: [['print'], ['tc'], ['tc'], ['hostname'], ['since'], ['mandatory'], ['reboot'], ['trkwehzg'], ['pqjrhsul'], ['unable'], ['print'], ['tc'], ['tried'], ['tc'], ['morning'], ['also'], ['unsuccessful'], ['attempting'], ['print'], ['dialogue'], ['box'], ['pop'], ['copy'], ['dll'], ['file'], ['drive'], ['error'], ['message'], ['pop'], ['saying'], ['error'], ['printing'], ['started'], ['check'], ['printer'], ['setup'], ['window'], ['control'], ['panel'], ['tried'], ['update'], ['driver'], ['control'], ['panel'], ['dll'], ['file'], ['downloaded'], ['attempt'], ['print'], ['tried'], ['printing'], ['several'], ['application'], ['outlook'], ['excel'], ['adobe'], ['reader'], ['success'], ['user'], ['still'], ['able'], ['print'], ['printer'], ['spit'], ['erp'], ['order'], ['one'], ['engineer']] k: 4398 len: <class 'list'> Data: ['skype', 'audio', 'functionality', 'working', 'per', 'expected', 'skype', 'audio', 'functionality', 'working', 'per', 'expected'] processed_text: ['skype', 'audio', 'functionality', 'working', 'per', 'expected', 'skype', 'audio', 'functionality', 'working', 'per', 'expected'] list_processed_text: [['skype'], ['audio'], ['functionality'], ['working'], ['per'], ['expected'], ['skype'], ['audio'], ['functionality'], ['working'], ['per'], ['expected']] k: 4399 len: <class 'list'> Data: ['locked', 'sid', 'please', 'reset', 'password', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['locked', 'sid', 'please', 'reset', 'password', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['locked'], ['sid'], ['please'], ['reset'], ['password'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 4400 len: <class 'list'> Data: ['outlook', 'password', 'prompt', 'microsoft', 'connectivity', 'analyzer', 'software', 'confirms', 'software', 'old', 'support', 'downloading', 'installing', 'service', 'pack', 'fails', 'supported', 'software', 'found', 'repaired', 'm', 'office', 'installation', 'cleared', 'credential', 'manager', 'deleted', 'profile', 'content', 'app', 'data', 'local', 'm', 'outlook', 'restarted', 'pc', 'microsoft', 'office', 'version'] processed_text: ['outlook', 'password', 'prompt', 'microsoft', 'connectivity', 'analyzer', 'software', 'confirms', 'software', 'old', 'support', 'downloading', 'installing', 'service', 'pack', 'fails', 'supported', 'software', 'found', 'repaired', 'm', 'office', 'installation', 'cleared', 'credential', 'manager', 'deleted', 'profile', 'content', 'app', 'data', 'local', 'm', 'outlook', 'restarted', 'pc', 'microsoft', 'office', 'version'] list_processed_text: [['outlook'], ['password'], ['prompt'], ['microsoft'], ['connectivity'], ['analyzer'], ['software'], ['confirms'], ['software'], ['old'], ['support'], ['downloading'], ['installing'], ['service'], ['pack'], ['fails'], ['supported'], ['software'], ['found'], ['repaired'], ['m'], ['office'], ['installation'], ['cleared'], ['credential'], ['manager'], ['deleted'], ['profile'], ['content'], ['app'], ['data'], ['local'], ['m'], ['outlook'], ['restarted'], ['pc'], ['microsoft'], ['office'], ['version']] k: 4401 len: <class 'list'> Data: ['erp', 'issue', 'invoicing', 'insufficient', 'stock', 'mm', 'even', 'though', 'inventory', 'available', 'customer', 'service', 'usa', 'issue', 'sale', 'order', 'acct', 'consignment', 'inventory', 'show', 'stock', 'batch', 'block', 'prevents', 'allocating', 'inventrtgoy', 'billing', 'purpose', 'something', 'odd', 'mm', 'mb', 'erp', 'maghyuigie', 'ghjkzalez', 'ph'] processed_text: ['erp', 'issue', 'invoicing', 'insufficient', 'stock', 'mm', 'even', 'though', 'inventory', 'available', 'customer', 'service', 'usa', 'issue', 'sale', 'order', 'acct', 'consignment', 'inventory', 'show', 'stock', 'batch', 'block', 'prevents', 'allocating', 'inventrtgoy', 'billing', 'purpose', 'something', 'odd', 'mm', 'mb', 'erp', 'maghyuigie', 'ghjkzalez', 'ph'] list_processed_text: [['erp'], ['issue'], ['invoicing'], ['insufficient'], ['stock'], ['mm'], ['even'], ['though'], ['inventory'], ['available'], ['customer'], ['service'], ['usa'], ['issue'], ['sale'], ['order'], ['acct'], ['consignment'], ['inventory'], ['show'], ['stock'], ['batch'], ['block'], ['prevents'], ['allocating'], ['inventrtgoy'], ['billing'], ['purpose'], ['something'], ['odd'], ['mm'], ['mb'], ['erp'], ['maghyuigie'], ['ghjkzalez'], ['ph']] k: 4402 len: <class 'list'> Data: ['open', 'attached', 'inwarehouse', 'tool', 'opentext', 'erp', 'see', 'attachment', 'open', 'attached', 'inwarehouse', 'tool', 'opentext', 'erp', 'see', 'attachment'] processed_text: ['open', 'attached', 'inwarehouse', 'tool', 'opentext', 'erp', 'see', 'attachment', 'open', 'attached', 'inwarehouse', 'tool', 'opentext', 'erp', 'see', 'attachment'] list_processed_text: [['open'], ['attached'], ['inwarehouse'], ['tool'], ['opentext'], ['erp'], ['see'], ['attachment'], ['open'], ['attached'], ['inwarehouse'], ['tool'], ['opentext'], ['erp'], ['see'], ['attachment']] k: 4403 len: <class 'list'> Data: ['transfer', 'tool', 'trial', 'report', 'old', 'laptop', 'new', 'laptop', 'hello', 'could', 'please', 'help', 'subjected', 'case'] processed_text: ['transfer', 'tool', 'trial', 'report', 'old', 'laptop', 'new', 'laptop', 'hello', 'could', 'please', 'help', 'subjected', 'case'] list_processed_text: [['transfer'], ['tool'], ['trial'], ['report'], ['old'], ['laptop'], ['new'], ['laptop'], ['hello'], ['could'], ['please'], ['help'], ['subjected'], ['case']] k: 4404 len: <class 'list'> Data: ['mobile', 'phone', 'mail', 'receipt', 'user', 'jkuaslxe', 'hrodszpl', 'gezpktrq', 'opkqwevj', 'would', 'please', 'contact', 'user', 'currently', 'receiving', 'mail', 'mobile', 'phone', 'jkuaslxe', 'hrodszpl', 'gezpktrq', 'opkqwevj', 'please', 'note', 'currently', 'travelling', 'outside', 'germany'] processed_text: ['mobile', 'phone', 'mail', 'receipt', 'user', 'jkuaslxe', 'hrodszpl', 'gezpktrq', 'opkqwevj', 'would', 'please', 'contact', 'user', 'currently', 'receiving', 'mail', 'mobile', 'phone', 'jkuaslxe', 'hrodszpl', 'gezpktrq', 'opkqwevj', 'please', 'note', 'currently', 'travelling', 'outside', 'germany'] list_processed_text: [['mobile'], ['phone'], ['mail'], ['receipt'], ['user'], ['jkuaslxe'], ['hrodszpl'], ['gezpktrq'], ['opkqwevj'], ['would'], ['please'], ['contact'], ['user'], ['currently'], ['receiving'], ['mail'], ['mobile'], ['phone'], ['jkuaslxe'], ['hrodszpl'], ['gezpktrq'], ['opkqwevj'], ['please'], ['note'], ['currently'], ['travelling'], ['outside'], ['germany']] k: 4405 len: <class 'list'> Data: ['mii', 'working', 'mii', 'taking', 'min', 'load', 'load', 'everyone', 'getting', 'br', 'error', 'attached'] processed_text: ['mii', 'working', 'mii', 'taking', 'min', 'load', 'load', 'everyone', 'getting', 'br', 'error', 'attached'] list_processed_text: [['mii'], ['working'], ['mii'], ['taking'], ['min'], ['load'], ['load'], ['everyone'], ['getting'], ['br'], ['error'], ['attached']] k: 4406 len: <class 'list'> Data: ['wl', 'scanner', 'working', 'wl', 'scanner', 'working', 'printer', 'working', 'fine', 'scanner', 'working', 'phone'] processed_text: ['wl', 'scanner', 'working', 'wl', 'scanner', 'working', 'printer', 'working', 'fine', 'scanner', 'working', 'phone'] list_processed_text: [['wl'], ['scanner'], ['working'], ['wl'], ['scanner'], ['working'], ['printer'], ['working'], ['fine'], ['scanner'], ['working'], ['phone']] k: 4407 len: <class 'list'> Data: ['file', 'server', 'functioning', 'light', 'back', 'one', 'file', 'server', 'site', 'blinking', 'part', 'plant', 'access', 'network', 'resource', 'please', 'help', 'check', 'local', 'file', 'server', 'hostname', 'lrrsm', 'hostname', 'contact'] processed_text: ['file', 'server', 'functioning', 'light', 'back', 'one', 'file', 'server', 'site', 'blinking', 'part', 'plant', 'access', 'network', 'resource', 'please', 'help', 'check', 'local', 'file', 'server', 'hostname', 'lrrsm', 'hostname', 'contact'] list_processed_text: [['file'], ['server'], ['functioning'], ['light'], ['back'], ['one'], ['file'], ['server'], ['site'], ['blinking'], ['part'], ['plant'], ['access'], ['network'], ['resource'], ['please'], ['help'], ['check'], ['local'], ['file'], ['server'], ['hostname'], ['lrrsm'], ['hostname'], ['contact']] k: 4408 len: <class 'list'> Data: ['shop', 'floor', 'app', 'password', 'misplaced', 'name', 'deghjick', 'culghjn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'forgotten', 'password', 'shop', 'floor', 'app'] processed_text: ['shop', 'floor', 'app', 'password', 'misplaced', 'name', 'deghjick', 'culghjn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'forgotten', 'password', 'shop', 'floor', 'app'] list_processed_text: [['shop'], ['floor'], ['app'], ['password'], ['misplaced'], ['name'], ['deghjick'], ['culghjn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['forgotten'], ['password'], ['shop'], ['floor'], ['app']] k: 4409 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 4410 len: <class 'list'> Data: ['erp', 'mii', 'hostname', 'jstart', 'exe', 'service', 'showing', 'critical', 'erp', 'mii', 'hostname', 'jstart', 'exe', 'service', 'showing', 'critical'] processed_text: ['erp', 'mii', 'hostname', 'jstart', 'exe', 'service', 'showing', 'critical', 'erp', 'mii', 'hostname', 'jstart', 'exe', 'service', 'showing', 'critical'] list_processed_text: [['erp'], ['mii'], ['hostname'], ['jstart'], ['exe'], ['service'], ['showing'], ['critical'], ['erp'], ['mii'], ['hostname'], ['jstart'], ['exe'], ['service'], ['showing'], ['critical']] k: 4411 len: <class 'list'> Data: ['mii', 'technical', 'error', 'across', 'usa', 'location', 'usa', 'receiving', 'technical', 'error', 'mii', 'system', 'cannot', 'even', 'log', 'contact', 'number'] processed_text: ['mii', 'technical', 'error', 'across', 'usa', 'location', 'usa', 'receiving', 'technical', 'error', 'mii', 'system', 'cannot', 'even', 'log', 'contact', 'number'] list_processed_text: [['mii'], ['technical'], ['error'], ['across'], ['usa'], ['location'], ['usa'], ['receiving'], ['technical'], ['error'], ['mii'], ['system'], ['cannot'], ['even'], ['log'], ['contact'], ['number']] k: 4412 len: <class 'list'> Data: ['editing', 'current', 'situation', 'hello', 'file', 'available', 'following', 'link', 'since', 'today', 'fr', 'longer', 'possible', 'edit', 'file', 'following', 'error', 'message', 'displayed', 'opening', 'file', 'best', 'regard'] processed_text: ['editing', 'current', 'situation', 'hello', 'file', 'available', 'following', 'link', 'since', 'today', 'fr', 'longer', 'possible', 'edit', 'file', 'following', 'error', 'message', 'displayed', 'opening', 'file', 'best', 'regard'] list_processed_text: [['editing'], ['current'], ['situation'], ['hello'], ['file'], ['available'], ['following'], ['link'], ['since'], ['today'], ['fr'], ['longer'], ['possible'], ['edit'], ['file'], ['following'], ['error'], ['message'], ['displayed'], ['opening'], ['file'], ['best'], ['regard']] k: 4413 len: <class 'list'> Data: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded'] processed_text: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'duration', 'high', 'loading', 'refresh', 'loaded'] list_processed_text: [['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['duration'], ['high'], ['loading'], ['refresh'], ['loaded'], ['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['duration'], ['high'], ['loading'], ['refresh'], ['loaded']] k: 4414 len: <class 'list'> Data: ['erp', 'mii', 'functioning', 'erp', 'mii', 'functioning', 'raonoke', 'rapid', 'employee', 'unable', 'use', 'software', 'clock', 'software', 'locked', 'phone'] processed_text: ['erp', 'mii', 'functioning', 'erp', 'mii', 'functioning', 'raonoke', 'rapid', 'employee', 'unable', 'use', 'software', 'clock', 'software', 'locked', 'phone'] list_processed_text: [['erp'], ['mii'], ['functioning'], ['erp'], ['mii'], ['functioning'], ['raonoke'], ['rapid'], ['employee'], ['unable'], ['use'], ['software'], ['clock'], ['software'], ['locked'], ['phone']] k: 4415 len: <class 'list'> Data: ['bnsh', 'account', 'unlock', 'erp', 'sid', 'bnsh', 'account', 'unlock', 'erp', 'sid'] processed_text: ['bnsh', 'account', 'unlock', 'erp', 'sid', 'bnsh', 'account', 'unlock', 'erp', 'sid'] list_processed_text: [['bnsh'], ['account'], ['unlock'], ['erp'], ['sid'], ['bnsh'], ['account'], ['unlock'], ['erp'], ['sid']] k: 4416 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 4417 len: <class 'list'> Data: ['responding', 'business', 'client', 'hello', 'refer', 'screen', 'shot', 'warm'] processed_text: ['responding', 'business', 'client', 'hello', 'refer', 'screen', 'shot', 'warm'] list_processed_text: [['responding'], ['business'], ['client'], ['hello'], ['refer'], ['screen'], ['shot'], ['warm']] k: 4418 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 4419 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'trying', 'print', 'tc', 'hqntn', 'driver', 'need', 'updated', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'tc', 'hqntn', 'detailed', 'description', 'problem', 'driver', 'need', 'updated', 'load', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'trying', 'print', 'tc', 'hqntn', 'driver', 'need', 'updated', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'tc', 'hqntn', 'detailed', 'description', 'problem', 'driver', 'need', 'updated', 'load', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'window', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['trying'], ['print'], ['tc'], ['hqntn'], ['driver'], ['need'], ['updated'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['tc'], ['hqntn'], ['detailed'], ['description'], ['problem'], ['driver'], ['need'], ['updated'], ['load'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['window'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 4420 len: <class 'list'> Data: ['vpn', 'issue', 'dear', 'sir', 'madam', 'able', 'connect', 'vpn', 'please', 'address', 'also', 'install', 'new', 'apvpn', 'well'] processed_text: ['vpn', 'issue', 'dear', 'sir', 'madam', 'able', 'connect', 'vpn', 'please', 'address', 'also', 'install', 'new', 'apvpn', 'well'] list_processed_text: [['vpn'], ['issue'], ['dear'], ['sir'], ['madam'], ['able'], ['connect'], ['vpn'], ['please'], ['address'], ['also'], ['install'], ['new'], ['apvpn'], ['well']] k: 4421 len: <class 'list'> Data: ['ng', 'ff', 'account', 'unlock', 'erp', 'sid', 'ng', 'ff', 'account', 'unlock', 'erp', 'sid'] processed_text: ['ng', 'ff', 'account', 'unlock', 'erp', 'sid', 'ng', 'ff', 'account', 'unlock', 'erp', 'sid'] list_processed_text: [['ng'], ['ff'], ['account'], ['unlock'], ['erp'], ['sid'], ['ng'], ['ff'], ['account'], ['unlock'], ['erp'], ['sid']] k: 4422 len: <class 'list'> Data: ['barcode', 'scanner', 'eemw', 'defective,', 'please', 'replace', 'barcode', 'scanner', 'eemw', 'defective', 'please', 'replace', 'pc', 'located', 'cvd', 'area', '\u200b\u200bthe', 'system'] processed_text: ['barcode', 'scanner', 'eemw', 'defective,', 'please', 'replace', 'barcode', 'scanner', 'eemw', 'defective', 'please', 'replace', 'pc', 'located', 'cvd', 'area', '\u200b\u200bthe', 'system'] list_processed_text: [['barcode'], ['scanner'], ['eemw'], ['defective,'], ['please'], ['replace'], ['barcode'], ['scanner'], ['eemw'], ['defective'], ['please'], ['replace'], ['pc'], ['located'], ['cvd'], ['area'], ['\u200b\u200bthe'], ['system']] k: 4423 len: <class 'list'> Data: ['unable', 'print', 'need', 'driver', 'update', 'unable', 'print', 'need', 'driver', 'update'] processed_text: ['unable', 'print', 'need', 'driver', 'update', 'unable', 'print', 'need', 'driver', 'update'] list_processed_text: [['unable'], ['print'], ['need'], ['driver'], ['update'], ['unable'], ['print'], ['need'], ['driver'], ['update']] k: 4424 len: <class 'list'> Data: ['unable', 'print', 'driver', 'updating', 'unable', 'print', 'driver', 'updating'] processed_text: ['unable', 'print', 'driver', 'updating', 'unable', 'print', 'driver', 'updating'] list_processed_text: [['unable'], ['print'], ['driver'], ['updating'], ['unable'], ['print'], ['driver'], ['updating']] k: 4425 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4426 len: <class 'list'> Data: ['install', 'vlc', 'dear', 'sir', 'please', 'install', 'vlc', 'player', 'system', 'able', 'play', 'product', 'demonstration', 'wmp'] processed_text: ['install', 'vlc', 'dear', 'sir', 'please', 'install', 'vlc', 'player', 'system', 'able', 'play', 'product', 'demonstration', 'wmp'] list_processed_text: [['install'], ['vlc'], ['dear'], ['sir'], ['please'], ['install'], ['vlc'], ['player'], ['system'], ['able'], ['play'], ['product'], ['demonstration'], ['wmp']] k: 4427 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['sql'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 4428 len: <class 'list'> Data: ['service', 'kit', 'r', 'liefern', 'hcuixqgj', 'mavxgqbs', 'service', 'kit', 'r', 'liefern', 'hcuixqgj', 'mavxgqbs'] processed_text: ['service', 'kit', 'r', 'liefern', 'hcuixqgj', 'mavxgqbs', 'service', 'kit', 'r', 'liefern', 'hcuixqgj', 'mavxgqbs'] list_processed_text: [['service'], ['kit'], ['r'], ['liefern'], ['hcuixqgj'], ['mavxgqbs'], ['service'], ['kit'], ['r'], ['liefern'], ['hcuixqgj'], ['mavxgqbs']] k: 4429 len: <class 'list'> Data: ['probleme', 'mit', 'office', 'dtlmbcrx', 'mwuateyx', 'probleme', 'mit', 'office', 'dtlmbcrx', 'mwuateyx'] processed_text: ['probleme', 'mit', 'office', 'dtlmbcrx', 'mwuateyx', 'probleme', 'mit', 'office', 'dtlmbcrx', 'mwuateyx'] list_processed_text: [['probleme'], ['mit'], ['office'], ['dtlmbcrx'], ['mwuateyx'], ['probleme'], ['mit'], ['office'], ['dtlmbcrx'], ['mwuateyx']] k: 4430 len: <class 'list'> Data: ['problem', 'batch', 'management', 'tmqfjard', 'qzhgdoua', 'problem', 'batch', 'management', 'tmqfjard', 'qzhgdoua'] processed_text: ['problem', 'batch', 'management', 'tmqfjard', 'qzhgdoua', 'problem', 'batch', 'management', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['problem'], ['batch'], ['management'], ['tmqfjard'], ['qzhgdoua'], ['problem'], ['batch'], ['management'], ['tmqfjard'], ['qzhgdoua']] k: 4431 len: <class 'list'> Data: ['problem', 'batch', 'management', 'howfanzi', 'siavgtby', 'problem', 'batch', 'management', 'howfanzi', 'siavgtby'] processed_text: ['problem', 'batch', 'management', 'howfanzi', 'siavgtby', 'problem', 'batch', 'management', 'howfanzi', 'siavgtby'] list_processed_text: [['problem'], ['batch'], ['management'], ['howfanzi'], ['siavgtby'], ['problem'], ['batch'], ['management'], ['howfanzi'], ['siavgtby']] k: 4432 len: <class 'list'> Data: ['setup', 'new', 'w', 'uadkqcsj', 'xtmjlari', 'setup', 'new', 'w', 'uadkqcsj', 'xtmjlari'] processed_text: ['setup', 'new', 'w', 'uadkqcsj', 'xtmjlari', 'setup', 'new', 'w', 'uadkqcsj', 'xtmjlari'] list_processed_text: [['setup'], ['new'], ['w'], ['uadkqcsj'], ['xtmjlari'], ['setup'], ['new'], ['w'], ['uadkqcsj'], ['xtmjlari']] k: 4433 len: <class 'list'> Data: ['need', 'assistance', 'transfer', 'elengineering', 'toolonic', 'amb', 'show', 'ticket', 'onto', 'company', 'iphone', 'need', 'assistance', 'transfer', 'elengineering', 'toolonic', 'amb', 'show', 'ticket', 'onto', 'company', 'iphone'] processed_text: ['need', 'assistance', 'transfer', 'elengineering', 'toolonic', 'amb', 'show', 'ticket', 'onto', 'company', 'iphone', 'need', 'assistance', 'transfer', 'elengineering', 'toolonic', 'amb', 'show', 'ticket', 'onto', 'company', 'iphone'] list_processed_text: [['need'], ['assistance'], ['transfer'], ['elengineering'], ['toolonic'], ['amb'], ['show'], ['ticket'], ['onto'], ['company'], ['iphone'], ['need'], ['assistance'], ['transfer'], ['elengineering'], ['toolonic'], ['amb'], ['show'], ['ticket'], ['onto'], ['company'], ['iphone']] k: 4434 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4435 len: <class 'list'> Data: ['excel', 'issue', 'able', 'open', 'excel', 'file', 'following', 'error', 'message', 'route', 'file', 'gru'] processed_text: ['excel', 'issue', 'able', 'open', 'excel', 'file', 'following', 'error', 'message', 'route', 'file', 'gru'] list_processed_text: [['excel'], ['issue'], ['able'], ['open'], ['excel'], ['file'], ['following'], ['error'], ['message'], ['route'], ['file'], ['gru']] k: 4436 len: <class 'list'> Data: ['activation', 'folder', 'ce', 'ap', 'data', 'drive', 'departmenst', 'hostname', 'please', 'enable', 'read', 'write', 'access', 'folder', 'mentioned', 'above.', 'folder', 'required', 'work'] processed_text: ['activation', 'folder', 'ce', 'ap', 'data', 'drive', 'departmenst', 'hostname', 'please', 'enable', 'read', 'write', 'access', 'folder', 'mentioned', 'above.', 'folder', 'required', 'work'] list_processed_text: [['activation'], ['folder'], ['ce'], ['ap'], ['data'], ['drive'], ['departmenst'], ['hostname'], ['please'], ['enable'], ['read'], ['write'], ['access'], ['folder'], ['mentioned'], ['above.'], ['folder'], ['required'], ['work']] k: 4437 len: <class 'list'> Data: ['efdl', 'outlook', 'issue', 'good', 'morning', 'password', 'change', 'outlook', 'opening', 'please', 'help', 'mit', 'freundlichen', 'gr', 'en', 'kind'] processed_text: ['efdl', 'outlook', 'issue', 'good', 'morning', 'password', 'change', 'outlook', 'opening', 'please', 'help', 'mit', 'freundlichen', 'gr', 'en', 'kind'] list_processed_text: [['efdl'], ['outlook'], ['issue'], ['good'], ['morning'], ['password'], ['change'], ['outlook'], ['opening'], ['please'], ['help'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['kind']] k: 4438 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4439 len: <class 'list'> Data: ['restore', 'deleted', 'opportunity', 'hello', 'shikghtyuha', 'per', 'email', 'seems', 'user', 'ukwfgxrl', 'rieqbtnp', 'deleted', 'opportunity', 'another', 'user', 'rqfmcjak', 'gcxvtbrz', 'detail', 'oportunities', 'visible', 'anymore', 'say', 'deleted', 'period', 'likely', 'opportstorage', 'product', 'name', 'start', 'ae', 'seibel', 'could', 'please', 'verify', 'chance', 'restore'] processed_text: ['restore', 'deleted', 'opportunity', 'hello', 'shikghtyuha', 'per', 'email', 'seems', 'user', 'ukwfgxrl', 'rieqbtnp', 'deleted', 'opportunity', 'another', 'user', 'rqfmcjak', 'gcxvtbrz', 'detail', 'oportunities', 'visible', 'anymore', 'say', 'deleted', 'period', 'likely', 'opportstorage', 'product', 'name', 'start', 'ae', 'seibel', 'could', 'please', 'verify', 'chance', 'restore'] list_processed_text: [['restore'], ['deleted'], ['opportunity'], ['hello'], ['shikghtyuha'], ['per'], ['email'], ['seems'], ['user'], ['ukwfgxrl'], ['rieqbtnp'], ['deleted'], ['opportunity'], ['another'], ['user'], ['rqfmcjak'], ['gcxvtbrz'], ['detail'], ['oportunities'], ['visible'], ['anymore'], ['say'], ['deleted'], ['period'], ['likely'], ['opportstorage'], ['product'], ['name'], ['start'], ['ae'], ['seibel'], ['could'], ['please'], ['verify'], ['chance'], ['restore']] k: 4440 len: <class 'list'> Data: ['please', 'reactivate', 'id', 'tempuser', 'sid', 'erp', 'production', 'pls', 'reset', 'password', 'tempuser', 'erp', 'sid', 'erp', 'prodn'] processed_text: ['please', 'reactivate', 'id', 'tempuser', 'sid', 'erp', 'production', 'pls', 'reset', 'password', 'tempuser', 'erp', 'sid', 'erp', 'prodn'] list_processed_text: [['please'], ['reactivate'], ['id'], ['tempuser'], ['sid'], ['erp'], ['production'], ['pls'], ['reset'], ['password'], ['tempuser'], ['erp'], ['sid'], ['erp'], ['prodn']] k: 4441 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4442 len: <class 'list'> Data: ['frequent', 'wifi', 'diconnection', 'new', 'bay', 'basis', 'area', 'team', 'please', 'check', 'frequent', 'disconnection', 'wifi', 'connection', 'erp', 'skype', 'disconnecting'] processed_text: ['frequent', 'wifi', 'diconnection', 'new', 'bay', 'basis', 'area', 'team', 'please', 'check', 'frequent', 'disconnection', 'wifi', 'connection', 'erp', 'skype', 'disconnecting'] list_processed_text: [['frequent'], ['wifi'], ['diconnection'], ['new'], ['bay'], ['basis'], ['area'], ['team'], ['please'], ['check'], ['frequent'], ['disconnection'], ['wifi'], ['connection'], ['erp'], ['skype'], ['disconnecting']] k: 4443 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4444 len: <class 'list'> Data: ['set', 'pc', 'eemw', 'printer', 'parting', 'program', 'dntym', 'set', 'pc', 'eemw', 'printer', 'parting', 'program', 'dntym'] processed_text: ['set', 'pc', 'eemw', 'printer', 'parting', 'program', 'dntym', 'set', 'pc', 'eemw', 'printer', 'parting', 'program', 'dntym'] list_processed_text: [['set'], ['pc'], ['eemw'], ['printer'], ['parting'], ['program'], ['dntym'], ['set'], ['pc'], ['eemw'], ['printer'], ['parting'], ['program'], ['dntym']] k: 4445 len: <class 'list'> Data: ['please', 'reset', 'sid', 'erp', 'password', 'hello', 'please', 'reset', 'sid', 'erp', 'password'] processed_text: ['please', 'reset', 'sid', 'erp', 'password', 'hello', 'please', 'reset', 'sid', 'erp', 'password'] list_processed_text: [['please'], ['reset'], ['sid'], ['erp'], ['password'], ['hello'], ['please'], ['reset'], ['sid'], ['erp'], ['password']] k: 4446 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 4447 len: <class 'list'> Data: ['erp', 'locked', 'gso', 'please', 'unlock', 'erp', 'sid', 'account', 'id', 'tjtigtyps', 'soon', 'reset', 'password'] processed_text: ['erp', 'locked', 'gso', 'please', 'unlock', 'erp', 'sid', 'account', 'id', 'tjtigtyps', 'soon', 'reset', 'password'] list_processed_text: [['erp'], ['locked'], ['gso'], ['please'], ['unlock'], ['erp'], ['sid'], ['account'], ['id'], ['tjtigtyps'], ['soon'], ['reset'], ['password']] k: 4448 len: <class 'list'> Data: ['zollerfgh', 'machine', 'image', 'restoration', 'hello', 'image', 'machine', 'pc', 'zollerfgh', 'genius', 'need', 'restored', 'pc', 'pen', 'drive', 'please', 'help', 'issue', 'urgent', 'basis'] processed_text: ['zollerfgh', 'machine', 'image', 'restoration', 'hello', 'image', 'machine', 'pc', 'zollerfgh', 'genius', 'need', 'restored', 'pc', 'pen', 'drive', 'please', 'help', 'issue', 'urgent', 'basis'] list_processed_text: [['zollerfgh'], ['machine'], ['image'], ['restoration'], ['hello'], ['image'], ['machine'], ['pc'], ['zollerfgh'], ['genius'], ['need'], ['restored'], ['pc'], ['pen'], ['drive'], ['please'], ['help'], ['issue'], ['urgent'], ['basis']] k: 4449 len: <class 'list'> Data: ['printer', 'em', 'frau', 'zeilmann', 'defective', 'paper', 'creased', 'printing', 'copying', 'process', 'printer', 'em', 'frau', 'zeilmann', 'defective', 'paper', 'creased', 'printing', 'copying', 'process'] processed_text: ['printer', 'em', 'frau', 'zeilmann', 'defective', 'paper', 'creased', 'printing', 'copying', 'process', 'printer', 'em', 'frau', 'zeilmann', 'defective', 'paper', 'creased', 'printing', 'copying', 'process'] list_processed_text: [['printer'], ['em'], ['frau'], ['zeilmann'], ['defective'], ['paper'], ['creased'], ['printing'], ['copying'], ['process'], ['printer'], ['em'], ['frau'], ['zeilmann'], ['defective'], ['paper'], ['creased'], ['printing'], ['copying'], ['process']] k: 4450 len: <class 'list'> Data: ['hardware', 'damage', 'sir', 'facixepyfbga', 'wtqdyoin', 'ware', 'issue', 'laptop', 'monitor', 'plastic', 'portion', 'come', 'groove', 'left', 'control', 'key', 'working', 'kindly', 'take', 'necessary', 'action', 'detail', 'laptop', 'warm'] processed_text: ['hardware', 'damage', 'sir', 'facixepyfbga', 'wtqdyoin', 'ware', 'issue', 'laptop', 'monitor', 'plastic', 'portion', 'come', 'groove', 'left', 'control', 'key', 'working', 'kindly', 'take', 'necessary', 'action', 'detail', 'laptop', 'warm'] list_processed_text: [['hardware'], ['damage'], ['sir'], ['facixepyfbga'], ['wtqdyoin'], ['ware'], ['issue'], ['laptop'], ['monitor'], ['plastic'], ['portion'], ['come'], ['groove'], ['left'], ['control'], ['key'], ['working'], ['kindly'], ['take'], ['necessary'], ['action'], ['detail'], ['laptop'], ['warm']] k: 4451 len: <class 'list'> Data: ['erp', 'logon', 'password', 'hi', 'please', 'send', 'new', 'password', 'erp', 'lost', 'mine', 'sorry', 'janhytrn', 'ooshstyizen', 'sale', 'manager', 'construction', 'sa', 'new', 'road', 'king', 'bit', 'catalog'] processed_text: ['erp', 'logon', 'password', 'hi', 'please', 'send', 'new', 'password', 'erp', 'lost', 'mine', 'sorry', 'janhytrn', 'ooshstyizen', 'sale', 'manager', 'construction', 'sa', 'new', 'road', 'king', 'bit', 'catalog'] list_processed_text: [['erp'], ['logon'], ['password'], ['hi'], ['please'], ['send'], ['new'], ['password'], ['erp'], ['lost'], ['mine'], ['sorry'], ['janhytrn'], ['ooshstyizen'], ['sale'], ['manager'], ['construction'], ['sa'], ['new'], ['road'], ['king'], ['bit'], ['catalog']] k: 4452 len: <class 'list'> Data: ['prdord', 'release', 'please', 'help', 'fix', 'business', 'transaction', 'cannot', 'carried'] processed_text: ['prdord', 'release', 'please', 'help', 'fix', 'business', 'transaction', 'cannot', 'carried'] list_processed_text: [['prdord'], ['release'], ['please'], ['help'], ['fix'], ['business'], ['transaction'], ['cannot'], ['carried']] k: 4453 len: <class 'list'> Data: ['enterprise', 'scan', 'client', 'open', 'text', 'erp', 'need', 'installed', 'computer', 'eagwt', 'connected', 'scanner', 'fujitsu', 'fi', 'scanner', 'driver', 'need', 'also', 'installed', 'computer', 'scanner', 'online', 'nobody', 'working', 'scan', 'client', 'installed', 'take', 'everytime', 'controll', 'computer', 'open', 'text', 'viewer', 'already', 'installed', 'need', 'site', 'support', 'please', 'let', 'know'] processed_text: ['enterprise', 'scan', 'client', 'open', 'text', 'erp', 'need', 'installed', 'computer', 'eagwt', 'connected', 'scanner', 'fujitsu', 'fi', 'scanner', 'driver', 'need', 'also', 'installed', 'computer', 'scanner', 'online', 'nobody', 'working', 'scan', 'client', 'installed', 'take', 'everytime', 'controll', 'computer', 'open', 'text', 'viewer', 'already', 'installed', 'need', 'site', 'support', 'please', 'let', 'know'] list_processed_text: [['enterprise'], ['scan'], ['client'], ['open'], ['text'], ['erp'], ['need'], ['installed'], ['computer'], ['eagwt'], ['connected'], ['scanner'], ['fujitsu'], ['fi'], ['scanner'], ['driver'], ['need'], ['also'], ['installed'], ['computer'], ['scanner'], ['online'], ['nobody'], ['working'], ['scan'], ['client'], ['installed'], ['take'], ['everytime'], ['controll'], ['computer'], ['open'], ['text'], ['viewer'], ['already'], ['installed'], ['need'], ['site'], ['support'], ['please'], ['let'], ['know']] k: 4454 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4455 len: <class 'list'> Data: ['vpn', 'vpn', 'symantec'] processed_text: ['vpn', 'vpn', 'symantec'] list_processed_text: [['vpn'], ['vpn'], ['symantec']] k: 4456 len: <class 'list'> Data: ['monthly', 'quality', 'working', 'group', 'qwg', 'global', 'round', 'tool', 'input', 'needed', 'hello', 'help', 'team', 'pls', 'see', 'ralf', 'email', 'last', 'month', 'write', 'access', 'issue', 'possible', 'participant', 'round', 'tool', 'group', 'work', 'collaboration', 'platform', 'file', 'even', 'file', 'name', 'change', 'need', 'update', 'file', 'month', 'save', 'respective', 'month', 'idea', 'handle'] processed_text: ['monthly', 'quality', 'working', 'group', 'qwg', 'global', 'round', 'tool', 'input', 'needed', 'hello', 'help', 'team', 'pls', 'see', 'ralf', 'email', 'last', 'month', 'write', 'access', 'issue', 'possible', 'participant', 'round', 'tool', 'group', 'work', 'collaboration', 'platform', 'file', 'even', 'file', 'name', 'change', 'need', 'update', 'file', 'month', 'save', 'respective', 'month', 'idea', 'handle'] list_processed_text: [['monthly'], ['quality'], ['working'], ['group'], ['qwg'], ['global'], ['round'], ['tool'], ['input'], ['needed'], ['hello'], ['help'], ['team'], ['pls'], ['see'], ['ralf'], ['email'], ['last'], ['month'], ['write'], ['access'], ['issue'], ['possible'], ['participant'], ['round'], ['tool'], ['group'], ['work'], ['collaboration'], ['platform'], ['file'], ['even'], ['file'], ['name'], ['change'], ['need'], ['update'], ['file'], ['month'], ['save'], ['respective'], ['month'], ['idea'], ['handle']] k: 4457 len: <class 'list'> Data: ['need', 'support', 'hello', 'material', 'use', 'purchasing', 'please', 'replicate', 'best'] processed_text: ['need', 'support', 'hello', 'material', 'use', 'purchasing', 'please', 'replicate', 'best'] list_processed_text: [['need'], ['support'], ['hello'], ['material'], ['use'], ['purchasing'], ['please'], ['replicate'], ['best']] k: 4458 len: <class 'list'> Data: ['bw', 'server', 'error', 'message', 'hello', 'team', 'one', 'company', 'user', 'uxndyfrs', 'vahxnfgl', 'sometimes', 'go', 'error', 'message', 'think', 'erp', 'server', 'connection', 'issue', 'solution', 'error', 'show', 'error', 'happened', 'accessing', 'bw', 'server', 'connection', 'stopped', 'error', 'xmgptwho', 'fmcxikqz', 'k', 'takeshi', 'asano'] processed_text: ['bw', 'server', 'error', 'message', 'hello', 'team', 'one', 'company', 'user', 'uxndyfrs', 'vahxnfgl', 'sometimes', 'go', 'error', 'message', 'think', 'erp', 'server', 'connection', 'issue', 'solution', 'error', 'show', 'error', 'happened', 'accessing', 'bw', 'server', 'connection', 'stopped', 'error', 'xmgptwho', 'fmcxikqz', 'k', 'takeshi', 'asano'] list_processed_text: [['bw'], ['server'], ['error'], ['message'], ['hello'], ['team'], ['one'], ['company'], ['user'], ['uxndyfrs'], ['vahxnfgl'], ['sometimes'], ['go'], ['error'], ['message'], ['think'], ['erp'], ['server'], ['connection'], ['issue'], ['solution'], ['error'], ['show'], ['error'], ['happened'], ['accessing'], ['bw'], ['server'], ['connection'], ['stopped'], ['error'], ['xmgptwho'], ['fmcxikqz'], ['k'], ['takeshi'], ['asano']] k: 4459 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mathyida', 'transaction', 'code', 'user', 'need', 'working', 'unable', 'logon', 'locked', 'describe', 'issue', 'please', 'unlock', 'account', 'reset', 'password', 'system'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mathyida', 'transaction', 'code', 'user', 'need', 'working', 'unable', 'logon', 'locked', 'describe', 'issue', 'please', 'unlock', 'account', 'reset', 'password', 'system'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['mathyida'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['unable'], ['logon'], ['locked'], ['describe'], ['issue'], ['please'], ['unlock'], ['account'], ['reset'], ['password'], ['system']] k: 4460 len: <class 'list'> Data: ['unable', 'update', 'profile', 'detail', 'unable', 'update', 'profile', 'detail', 'given', 'unable', 'update', 'user', 'shighjvnn', 'found', 'error', 'please', 'assist'] processed_text: ['unable', 'update', 'profile', 'detail', 'unable', 'update', 'profile', 'detail', 'given', 'unable', 'update', 'user', 'shighjvnn', 'found', 'error', 'please', 'assist'] list_processed_text: [['unable'], ['update'], ['profile'], ['detail'], ['unable'], ['update'], ['profile'], ['detail'], ['given'], ['unable'], ['update'], ['user'], ['shighjvnn'], ['found'], ['error'], ['please'], ['assist']] k: 4461 len: <class 'list'> Data: ['virus', 'laptop', 'system', 'virus', 'effected', 'please', 'remove', 'permanently', 'please', 'find', 'screen', 'shot'] processed_text: ['virus', 'laptop', 'system', 'virus', 'effected', 'please', 'remove', 'permanently', 'please', 'find', 'screen', 'shot'] list_processed_text: [['virus'], ['laptop'], ['system'], ['virus'], ['effected'], ['please'], ['remove'], ['permanently'], ['please'], ['find'], ['screen'], ['shot']] k: 4462 len: <class 'list'> Data: ['account', 'getting', 'locked', 'hostname', 'account', 'getting', 'locked', 'hostname'] processed_text: ['account', 'getting', 'locked', 'hostname', 'account', 'getting', 'locked', 'hostname'] list_processed_text: [['account'], ['getting'], ['locked'], ['hostname'], ['account'], ['getting'], ['locked'], ['hostname']] k: 4463 len: <class 'list'> Data: ['vpn', 'vpn'] processed_text: ['vpn', 'vpn'] list_processed_text: [['vpn'], ['vpn']] k: 4464 len: <class 'list'> Data: ['problem', 'logging', 'na', 'vpn', 'problem', 'logging', 'na', 'vpn', 'receiving', 'error', 'message', 'saying', 'username', 'password', 'incorrect', 'even', 'though', 'know', 'correct'] processed_text: ['problem', 'logging', 'na', 'vpn', 'problem', 'logging', 'na', 'vpn', 'receiving', 'error', 'message', 'saying', 'username', 'password', 'incorrect', 'even', 'though', 'know', 'correct'] list_processed_text: [['problem'], ['logging'], ['na'], ['vpn'], ['problem'], ['logging'], ['na'], ['vpn'], ['receiving'], ['error'], ['message'], ['saying'], ['username'], ['password'], ['incorrect'], ['even'], ['though'], ['know'], ['correct']] k: 4465 len: <class 'list'> Data: ['companyguest', 'wifi', 'login', 'pw', 'user', 'name', 'hi', 'please', 'help', 'create', 'permanent', 'companyguest', 'wifi', 'login', 'pw', 'user', 'name', 'office', 'need', 'password', 'user', 'name', 'guest', 'coming', 'training', 'meeting', 'able', 'login', 'best'] processed_text: ['companyguest', 'wifi', 'login', 'pw', 'user', 'name', 'hi', 'please', 'help', 'create', 'permanent', 'companyguest', 'wifi', 'login', 'pw', 'user', 'name', 'office', 'need', 'password', 'user', 'name', 'guest', 'coming', 'training', 'meeting', 'able', 'login', 'best'] list_processed_text: [['companyguest'], ['wifi'], ['login'], ['pw'], ['user'], ['name'], ['hi'], ['please'], ['help'], ['create'], ['permanent'], ['companyguest'], ['wifi'], ['login'], ['pw'], ['user'], ['name'], ['office'], ['need'], ['password'], ['user'], ['name'], ['guest'], ['coming'], ['training'], ['meeting'], ['able'], ['login'], ['best']] k: 4466 len: <class 'list'> Data: ['delivery', 'displaying', 'intercompany', 'billing', 'error', 'message', 'intercompany', 'exist', 'unable', 'process', 'order', 'shipping', 'system', 'due', 'system', 'registering', 'existing', 'intercompany', 'billing'] processed_text: ['delivery', 'displaying', 'intercompany', 'billing', 'error', 'message', 'intercompany', 'exist', 'unable', 'process', 'order', 'shipping', 'system', 'due', 'system', 'registering', 'existing', 'intercompany', 'billing'] list_processed_text: [['delivery'], ['displaying'], ['intercompany'], ['billing'], ['error'], ['message'], ['intercompany'], ['exist'], ['unable'], ['process'], ['order'], ['shipping'], ['system'], ['due'], ['system'], ['registering'], ['existing'], ['intercompany'], ['billing']] k: 4467 len: <class 'list'> Data: ['cannot', 'log', 'vpn', 'name', 'cagrty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'vpn'] processed_text: ['cannot', 'log', 'vpn', 'name', 'cagrty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'vpn'] list_processed_text: [['cannot'], ['log'], ['vpn'], ['name'], ['cagrty'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['log'], ['vpn']] k: 4468 len: <class 'list'> Data: ['erp', 'account', 'unlocked', 'erp', 'account', 'unlocked'] processed_text: ['erp', 'account', 'unlocked', 'erp', 'account', 'unlocked'] list_processed_text: [['erp'], ['account'], ['unlocked'], ['erp'], ['account'], ['unlocked']] k: 4469 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4470 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 4471 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 4472 len: <class 'list'> Data: ['timecard', 'generating', 'automatically', 'timecard', 'generating', 'automatically'] processed_text: ['timecard', 'generating', 'automatically', 'timecard', 'generating', 'automatically'] list_processed_text: [['timecard'], ['generating'], ['automatically'], ['timecard'], ['generating'], ['automatically']] k: 4473 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'germany', 'company', 'primary', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'germany', 'company', 'primary', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['germany'], ['company'], ['primary'], ['mpls'], ['circuit'], ['since'], ['et'], ['site'], ['secondary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4474 len: <class 'list'> Data: ['network', 'outage', 'israel', 'israel', 'sale', 'facility', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'israel', 'israel', 'sale', 'facility', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['israel'], ['israel'], ['sale'], ['facility'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4475 len: <class 'list'> Data: ['circuit', 'outage', 'paris', 'company', 'primary', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'paris', 'company', 'primary', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['paris'], ['company'], ['primary'], ['mpls'], ['circuit'], ['since'], ['et'], ['site'], ['secondary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4476 len: <class 'list'> Data: ['network', 'outage', 'israel', 'israel', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'ticket', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'israel', 'israel', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'ticket', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['israel'], ['israel'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['ticket'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4477 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'steel', 'plant', 'company', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'steel', 'plant', 'company', 'mpls', 'circuit', 'since', 'et', 'site', 'secondary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['steel'], ['plant'], ['company'], ['mpls'], ['circuit'], ['since'], ['et'], ['site'], ['secondary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4478 len: <class 'list'> Data: ['request', 'reset', 'password', 'microsoft', 'online', 'service', 'kind'] processed_text: ['request', 'reset', 'password', 'microsoft', 'online', 'service', 'kind'] list_processed_text: [['request'], ['reset'], ['password'], ['microsoft'], ['online'], ['service'], ['kind']] k: 4479 len: <class 'list'> Data: ['inqury', 'email', 'work', 'phone', 'without', 'internet', 'connection', 'inqury', 'email', 'work', 'phone', 'without', 'internet', 'connection'] processed_text: ['inqury', 'email', 'work', 'phone', 'without', 'internet', 'connection', 'inqury', 'email', 'work', 'phone', 'without', 'internet', 'connection'] list_processed_text: [['inqury'], ['email'], ['work'], ['phone'], ['without'], ['internet'], ['connection'], ['inqury'], ['email'], ['work'], ['phone'], ['without'], ['internet'], ['connection']] k: 4480 len: <class 'list'> Data: ['wallpaper', 'beshryu', 'need', 'change', 'window', 'theme', 'wallpaper', 'beshryu', 'need', 'change', 'window', 'theme'] processed_text: ['wallpaper', 'beshryu', 'need', 'change', 'window', 'theme', 'wallpaper', 'beshryu', 'need', 'change', 'window', 'theme'] list_processed_text: [['wallpaper'], ['beshryu'], ['need'], ['change'], ['window'], ['theme'], ['wallpaper'], ['beshryu'], ['need'], ['change'], ['window'], ['theme']] k: 4481 len: <class 'list'> Data: ['unable', 'communicate', 'savin', 'printer', 'unable', 'communicate', 'savin', 'printer'] processed_text: ['unable', 'communicate', 'savin', 'printer', 'unable', 'communicate', 'savin', 'printer'] list_processed_text: [['unable'], ['communicate'], ['savin'], ['printer'], ['unable'], ['communicate'], ['savin'], ['printer']] k: 4482 len: <class 'list'> Data: ['hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'since', 'et', 'hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'since', 'et'] processed_text: ['hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'since', 'et', 'hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'since', 'et'] list_processed_text: [['hostname'], ['erp'], ['search'], ['server'], ['server'], ['erpstartsrv'], ['exe'], ['service'], ['since'], ['et'], ['hostname'], ['erp'], ['search'], ['server'], ['server'], ['erpstartsrv'], ['exe'], ['service'], ['since'], ['et']] k: 4483 len: <class 'list'> Data: ['m', 'excel', 'right', 'click', 'working', 'm', 'excel', 'right', 'click', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'repaired', 'm', 'office', 'reopned', 'excel', 'working', 'fine', 'issue', 'resolved'] processed_text: ['m', 'excel', 'right', 'click', 'working', 'm', 'excel', 'right', 'click', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'repaired', 'm', 'office', 'reopned', 'excel', 'working', 'fine', 'issue', 'resolved'] list_processed_text: [['m'], ['excel'], ['right'], ['click'], ['working'], ['m'], ['excel'], ['right'], ['click'], ['working'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['repaired'], ['m'], ['office'], ['reopned'], ['excel'], ['working'], ['fine'], ['issue'], ['resolved']] k: 4484 len: <class 'list'> Data: ['uacyltoe', 'hxgayczeing', 'available', 'get', 'sid', 'uacyltoe', 'hxgayczeing', 'available', 'get', 'sid'] processed_text: ['uacyltoe', 'hxgayczeing', 'available', 'get', 'sid', 'uacyltoe', 'hxgayczeing', 'available', 'get', 'sid'] list_processed_text: [['uacyltoe'], ['hxgayczeing'], ['available'], ['get'], ['sid'], ['uacyltoe'], ['hxgayczeing'], ['available'], ['get'], ['sid']] k: 4485 len: <class 'list'> Data: ['update', 'inplant', 'update', 'inplant'] processed_text: ['update', 'inplant', 'update', 'inplant'] list_processed_text: [['update'], ['inplant'], ['update'], ['inplant']] k: 4486 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 4487 len: <class 'list'> Data: ['po', 'report', 'pull', 'search', 'result', 'po', 'report', 'pull', 'search', 'result', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'try', 'run', 'po', 'report', 'seen', 'scren', 'shot', 'give', 'user', 'error', 'see', 'attachment', 'contact'] processed_text: ['po', 'report', 'pull', 'search', 'result', 'po', 'report', 'pull', 'search', 'result', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'try', 'run', 'po', 'report', 'seen', 'scren', 'shot', 'give', 'user', 'error', 'see', 'attachment', 'contact'] list_processed_text: [['po'], ['report'], ['pull'], ['search'], ['result'], ['po'], ['report'], ['pull'], ['search'], ['result'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['user'], ['try'], ['run'], ['po'], ['report'], ['seen'], ['scren'], ['shot'], ['give'], ['user'], ['error'], ['see'], ['attachment'], ['contact']] k: 4488 len: <class 'list'> Data: ['unable', 'print', 'tc', 'p', 'printer', 'unable', 'print', 'tc', 'p', 'printer'] processed_text: ['unable', 'print', 'tc', 'p', 'printer', 'unable', 'print', 'tc', 'p', 'printer'] list_processed_text: [['unable'], ['print'], ['tc'], ['p'], ['printer'], ['unable'], ['print'], ['tc'], ['p'], ['printer']] k: 4489 len: <class 'list'> Data: ['unable', 'connect', 'printer', 'unable', 'connect', 'printer'] processed_text: ['unable', 'connect', 'printer', 'unable', 'connect', 'printer'] list_processed_text: [['unable'], ['connect'], ['printer'], ['unable'], ['connect'], ['printer']] k: 4490 len: <class 'list'> Data: ['unable', 'print', 'keep', 'asking', 'install', 'driver', 'printer', 'unable', 'print', 'keep', 'asking', 'install', 'driver', 'printer'] processed_text: ['unable', 'print', 'keep', 'asking', 'install', 'driver', 'printer', 'unable', 'print', 'keep', 'asking', 'install', 'driver', 'printer'] list_processed_text: [['unable'], ['print'], ['keep'], ['asking'], ['install'], ['driver'], ['printer'], ['unable'], ['print'], ['keep'], ['asking'], ['install'], ['driver'], ['printer']] k: 4491 len: <class 'list'> Data: ['unable', 'print', 'able', 'print', 'usa'] processed_text: ['unable', 'print', 'able', 'print', 'usa'] list_processed_text: [['unable'], ['print'], ['able'], ['print'], ['usa']] k: 4492 len: <class 'list'> Data: ['npr', 'issue', 'need', 'access', 'npr', 'template', 'load', 'site', 'cannot', 'enter', 'customer'] processed_text: ['npr', 'issue', 'need', 'access', 'npr', 'template', 'load', 'site', 'cannot', 'enter', 'customer'] list_processed_text: [['npr'], ['issue'], ['need'], ['access'], ['npr'], ['template'], ['load'], ['site'], ['cannot'], ['enter'], ['customer']] k: 4493 len: <class 'list'> Data: ['creating', 'group', 'collaboration', 'platform', 'get', 'error', 'message', 'trying', 'create', 'group', 'people', 'collaboration', 'platform', 'get', 'error', 'message', 'ability', 'create', 'group', 'turned', 'person', 'manages', 'email'] processed_text: ['creating', 'group', 'collaboration', 'platform', 'get', 'error', 'message', 'trying', 'create', 'group', 'people', 'collaboration', 'platform', 'get', 'error', 'message', 'ability', 'create', 'group', 'turned', 'person', 'manages', 'email'] list_processed_text: [['creating'], ['group'], ['collaboration'], ['platform'], ['get'], ['error'], ['message'], ['trying'], ['create'], ['group'], ['people'], ['collaboration'], ['platform'], ['get'], ['error'], ['message'], ['ability'], ['create'], ['group'], ['turned'], ['person'], ['manages'], ['email']] k: 4494 len: <class 'list'> Data: ['approve', 'primary', 'email', 'crm', 'user', 'kpobysnc', 'tqvefyui', 'production', 'approve', 'primary', 'email', 'crm', 'qlhmawgi', 'sgwipoxn', 'called', 'kpobysnc', 'tqvefyui', 'msd', 'crm', 'production'] processed_text: ['approve', 'primary', 'email', 'crm', 'user', 'kpobysnc', 'tqvefyui', 'production', 'approve', 'primary', 'email', 'crm', 'qlhmawgi', 'sgwipoxn', 'called', 'kpobysnc', 'tqvefyui', 'msd', 'crm', 'production'] list_processed_text: [['approve'], ['primary'], ['email'], ['crm'], ['user'], ['kpobysnc'], ['tqvefyui'], ['production'], ['approve'], ['primary'], ['email'], ['crm'], ['qlhmawgi'], ['sgwipoxn'], ['called'], ['kpobysnc'], ['tqvefyui'], ['msd'], ['crm'], ['production']] k: 4495 len: <class 'list'> Data: ['computer', 'connect', 'printer', 'keep', 'installing', 'driver', 'hello', 'team', 'afternoon', 'computer', 'stopped', 'connecting', 'printer', 'cl', 'p', 'attempt', 'print', 'document', 'prompt', 'install', 'driver', 'printer', 'let', 'open', 'document', 'try', 'print', 'thing', 'tell', 'cannot', 'print', 'main', 'printer', 'using', 'since', 'sure', 'suddenly', 'stopped', 'working', 'could', 'please', 'assist', 'get', 'moment', 'appreciate', 'print', 'another', 'nearby', 'printer', 'meantime', 'allowing', 'print', 'network', 'printer', 'need', 'contact', 'please', 'feel', 'free', 'call', 'reached', 'via', 'skype'] processed_text: ['computer', 'connect', 'printer', 'keep', 'installing', 'driver', 'hello', 'team', 'afternoon', 'computer', 'stopped', 'connecting', 'printer', 'cl', 'p', 'attempt', 'print', 'document', 'prompt', 'install', 'driver', 'printer', 'let', 'open', 'document', 'try', 'print', 'thing', 'tell', 'cannot', 'print', 'main', 'printer', 'using', 'since', 'sure', 'suddenly', 'stopped', 'working', 'could', 'please', 'assist', 'get', 'moment', 'appreciate', 'print', 'another', 'nearby', 'printer', 'meantime', 'allowing', 'print', 'network', 'printer', 'need', 'contact', 'please', 'feel', 'free', 'call', 'reached', 'via', 'skype'] list_processed_text: [['computer'], ['connect'], ['printer'], ['keep'], ['installing'], ['driver'], ['hello'], ['team'], ['afternoon'], ['computer'], ['stopped'], ['connecting'], ['printer'], ['cl'], ['p'], ['attempt'], ['print'], ['document'], ['prompt'], ['install'], ['driver'], ['printer'], ['let'], ['open'], ['document'], ['try'], ['print'], ['thing'], ['tell'], ['cannot'], ['print'], ['main'], ['printer'], ['using'], ['since'], ['sure'], ['suddenly'], ['stopped'], ['working'], ['could'], ['please'], ['assist'], ['get'], ['moment'], ['appreciate'], ['print'], ['another'], ['nearby'], ['printer'], ['meantime'], ['allowing'], ['print'], ['network'], ['printer'], ['need'], ['contact'], ['please'], ['feel'], ['free'], ['call'], ['reached'], ['via'], ['skype']] k: 4496 len: <class 'list'> Data: ['setup', 'client', 'e', 'laptop', 'setup', 'client', 'e', 'laptop'] processed_text: ['setup', 'client', 'e', 'laptop', 'setup', 'client', 'e', 'laptop'] list_processed_text: [['setup'], ['client'], ['e'], ['laptop'], ['setup'], ['client'], ['e'], ['laptop']] k: 4497 len: <class 'list'> Data: ['unable', 'open', 'powerpoint', 'file', 'name', 'lpriokwa', 'bgwneavl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'difficulty', 'opening', 'power', 'point', 'open', 'say', 'repair', 'click', 'cannot', 'open'] processed_text: ['unable', 'open', 'powerpoint', 'file', 'name', 'lpriokwa', 'bgwneavl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'difficulty', 'opening', 'power', 'point', 'open', 'say', 'repair', 'click', 'cannot', 'open'] list_processed_text: [['unable'], ['open'], ['powerpoint'], ['file'], ['name'], ['lpriokwa'], ['bgwneavl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['difficulty'], ['opening'], ['power'], ['point'], ['open'], ['say'], ['repair'], ['click'], ['cannot'], ['open']] k: 4498 len: <class 'list'> Data: ['cannot', 'sync', 'internal', 'collaboration', 'platform', 'notebook', 'updated', 'password', 'using', 'password', 'management', 'tool', 'collaboration', 'platform', 'asking', 'enter', 'credential', 'enter', 'old', 'password', 'collaboration', 'platform', 'say', 'incorrect', 'enter', 'newly', 'updated', 'password', 'message', 'contacting', 'server', 'information', 'pop', 'dierppears', 'asks', 'sign', 'collaboration', 'platform', 'shared', 'collaboration', 'platform', 'coworkers', 'attached', 'video', 'show', 'happening'] processed_text: ['cannot', 'sync', 'internal', 'collaboration', 'platform', 'notebook', 'updated', 'password', 'using', 'password', 'management', 'tool', 'collaboration', 'platform', 'asking', 'enter', 'credential', 'enter', 'old', 'password', 'collaboration', 'platform', 'say', 'incorrect', 'enter', 'newly', 'updated', 'password', 'message', 'contacting', 'server', 'information', 'pop', 'dierppears', 'asks', 'sign', 'collaboration', 'platform', 'shared', 'collaboration', 'platform', 'coworkers', 'attached', 'video', 'show', 'happening'] list_processed_text: [['cannot'], ['sync'], ['internal'], ['collaboration'], ['platform'], ['notebook'], ['updated'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['collaboration'], ['platform'], ['asking'], ['enter'], ['credential'], ['enter'], ['old'], ['password'], ['collaboration'], ['platform'], ['say'], ['incorrect'], ['enter'], ['newly'], ['updated'], ['password'], ['message'], ['contacting'], ['server'], ['information'], ['pop'], ['dierppears'], ['asks'], ['sign'], ['collaboration'], ['platform'], ['shared'], ['collaboration'], ['platform'], ['coworkers'], ['attached'], ['video'], ['show'], ['happening']] k: 4499 len: <class 'list'> Data: ['generirtc', 'issue', 'msoffice', 'version', 'generirtc', 'issue', 'msoffice', 'version'] processed_text: ['generirtc', 'issue', 'msoffice', 'version', 'generirtc', 'issue', 'msoffice', 'version'] list_processed_text: [['generirtc'], ['issue'], ['msoffice'], ['version'], ['generirtc'], ['issue'], ['msoffice'], ['version']] k: 4500 len: <class 'list'> Data: ['vip', 'german', 'payroll', 'collaboration', 'platform', 'site', 'requested', 'hello', 'please', 'create', 'standard', 'collaboration', 'platform', 'template', 'site', 'german', 'payroll', 'implementation', 'project', 'owner', 'jywvemun', 'qngschtz', 'lixwgnto', 'krutnylz', 'backup', 'full', 'update', 'access', 'also', 'usaed', 'lixwgnto', 'krutnylz', 'przcxbml', 'vnjdghui', 'tvcdfqgp', 'nrbcqwgj', 'johyue', 'ghjuardt', 'jywvemun', 'qngschtz', 'jfcrdavy', 'sxpotjlu', 'nicrhty', 'edmhihryu', 'also', 'require', 'vendor', 'external', 'company', 'access', 'certain', 'folder', 'well', 'please', 'inform', 'soon', 'site', 'created', 'many'] processed_text: ['vip', 'german', 'payroll', 'collaboration', 'platform', 'site', 'requested', 'hello', 'please', 'create', 'standard', 'collaboration', 'platform', 'template', 'site', 'german', 'payroll', 'implementation', 'project', 'owner', 'jywvemun', 'qngschtz', 'lixwgnto', 'krutnylz', 'backup', 'full', 'update', 'access', 'also', 'usaed', 'lixwgnto', 'krutnylz', 'przcxbml', 'vnjdghui', 'tvcdfqgp', 'nrbcqwgj', 'johyue', 'ghjuardt', 'jywvemun', 'qngschtz', 'jfcrdavy', 'sxpotjlu', 'nicrhty', 'edmhihryu', 'also', 'require', 'vendor', 'external', 'company', 'access', 'certain', 'folder', 'well', 'please', 'inform', 'soon', 'site', 'created', 'many'] list_processed_text: [['vip'], ['german'], ['payroll'], ['collaboration'], ['platform'], ['site'], ['requested'], ['hello'], ['please'], ['create'], ['standard'], ['collaboration'], ['platform'], ['template'], ['site'], ['german'], ['payroll'], ['implementation'], ['project'], ['owner'], ['jywvemun'], ['qngschtz'], ['lixwgnto'], ['krutnylz'], ['backup'], ['full'], ['update'], ['access'], ['also'], ['usaed'], ['lixwgnto'], ['krutnylz'], ['przcxbml'], ['vnjdghui'], ['tvcdfqgp'], ['nrbcqwgj'], ['johyue'], ['ghjuardt'], ['jywvemun'], ['qngschtz'], ['jfcrdavy'], ['sxpotjlu'], ['nicrhty'], ['edmhihryu'], ['also'], ['require'], ['vendor'], ['external'], ['company'], ['access'], ['certain'], ['folder'], ['well'], ['please'], ['inform'], ['soon'], ['site'], ['created'], ['many']] k: 4501 len: <class 'list'> Data: ['erp', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'hakim', 'belhadjhamida', 'erp', 'password', 'locked', 'entered', 'wrong', 'one', 'way', 'changed', 'password', 'morning', 'rakthyesh', 'ramdntythanjesh', 'hi', 'hakityum'] processed_text: ['erp', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'hakim', 'belhadjhamida', 'erp', 'password', 'locked', 'entered', 'wrong', 'one', 'way', 'changed', 'password', 'morning', 'rakthyesh', 'ramdntythanjesh', 'hi', 'hakityum'] list_processed_text: [['erp'], ['password'], ['reset'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['hakim'], ['belhadjhamida'], ['erp'], ['password'], ['locked'], ['entered'], ['wrong'], ['one'], ['way'], ['changed'], ['password'], ['morning'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['hakityum']] k: 4502 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'laffekr', 'erp', 'sid', 'account', 'unlock', 'laffekr'] processed_text: ['erp', 'sid', 'account', 'unlock', 'laffekr', 'erp', 'sid', 'account', 'unlock', 'laffekr'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['laffekr'], ['erp'], ['sid'], ['account'], ['unlock'], ['laffekr']] k: 4503 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 4504 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4505 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4506 len: <class 'list'> Data: ['background', 'report', 'erp', 'running', 'hello', 'nightly', 'erp', 'report', 'longer', 'running', 'day', 'reset', 'still', 'run'] processed_text: ['background', 'report', 'erp', 'running', 'hello', 'nightly', 'erp', 'report', 'longer', 'running', 'day', 'reset', 'still', 'run'] list_processed_text: [['background'], ['report'], ['erp'], ['running'], ['hello'], ['nightly'], ['erp'], ['report'], ['longer'], ['running'], ['day'], ['reset'], ['still'], ['run']] k: 4507 len: <class 'list'> Data: ['locked', 'crm', 'need', 'get', 'get', 'shipment', 'today', 'name', 'vfjsubao', 'yihelxgp', 'language', 'browser', 'netscape', 'customer', 'number', 'telephone', 'summary', 'locked', 'crm', 'need', 'get', 'get', 'shipment', 'today'] processed_text: ['locked', 'crm', 'need', 'get', 'get', 'shipment', 'today', 'name', 'vfjsubao', 'yihelxgp', 'language', 'browser', 'netscape', 'customer', 'number', 'telephone', 'summary', 'locked', 'crm', 'need', 'get', 'get', 'shipment', 'today'] list_processed_text: [['locked'], ['crm'], ['need'], ['get'], ['get'], ['shipment'], ['today'], ['name'], ['vfjsubao'], ['yihelxgp'], ['language'], ['browser'], ['netscape'], ['customer'], ['number'], ['telephone'], ['summary'], ['locked'], ['crm'], ['need'], ['get'], ['get'], ['shipment'], ['today']] k: 4508 len: <class 'list'> Data: ['please', 'activate', 'new', 'iphone', 'company', 'owned', 'device', 'nwfodmhc', 'exurcwkm', 'pm', 'fmzdkyqv', 'dbrslnhe', 'sab', 'wg', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator', 'hi', 'michghytuael', 'device', 'successfully', 'activated'] processed_text: ['please', 'activate', 'new', 'iphone', 'company', 'owned', 'device', 'nwfodmhc', 'exurcwkm', 'pm', 'fmzdkyqv', 'dbrslnhe', 'sab', 'wg', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator', 'hi', 'michghytuael', 'device', 'successfully', 'activated'] list_processed_text: [['please'], ['activate'], ['new'], ['iphone'], ['company'], ['owned'], ['device'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['fmzdkyqv'], ['dbrslnhe'], ['sab'], ['wg'], ['synchronization'], ['exchange'], ['activesync'], ['temporarily'], ['blocked'], ['ger'], ['access'], ['granted'], ['administrator'], ['hi'], ['michghytuael'], ['device'], ['successfully'], ['activated']] k: 4509 len: <class 'list'> Data: ['unable', 'log', 'window', 'unable', 'log', 'window'] processed_text: ['unable', 'log', 'window', 'unable', 'log', 'window'] list_processed_text: [['unable'], ['log'], ['window'], ['unable'], ['log'], ['window']] k: 4510 len: <class 'list'> Data: ['lhqsm', 'drive', 'space', 'consumed', 'space', 'available', 'gb', 'volume', 'label', 'dat', 'lhqsm', 'eead', 'server', 'lhqsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['lhqsm', 'drive', 'space', 'consumed', 'space', 'available', 'gb', 'volume', 'label', 'dat', 'lhqsm', 'eead', 'server', 'lhqsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['lhqsm'], ['drive'], ['space'], ['consumed'], ['space'], ['available'], ['gb'], ['volume'], ['label'], ['dat'], ['lhqsm'], ['eead'], ['server'], ['lhqsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4511 len: <class 'list'> Data: ['audio', 'doesnt', 'work', 'anymore', 'laptop', 'neither', 'earbuds', 'plantronics', 'working', 'anymore'] processed_text: ['audio', 'doesnt', 'work', 'anymore', 'laptop', 'neither', 'earbuds', 'plantronics', 'working', 'anymore'] list_processed_text: [['audio'], ['doesnt'], ['work'], ['anymore'], ['laptop'], ['neither'], ['earbuds'], ['plantronics'], ['working'], ['anymore']] k: 4512 len: <class 'list'> Data: ['printer', 'installation', 'name', 'fbhyeksq', 'caexmols', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'print', 'updated', 'driver', 'however', 'still', 'saying', 'need', 'updated'] processed_text: ['printer', 'installation', 'name', 'fbhyeksq', 'caexmols', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'print', 'updated', 'driver', 'however', 'still', 'saying', 'need', 'updated'] list_processed_text: [['printer'], ['installation'], ['name'], ['fbhyeksq'], ['caexmols'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unable'], ['print'], ['updated'], ['driver'], ['however'], ['still'], ['saying'], ['need'], ['updated']] k: 4513 len: <class 'list'> Data: ['outlook', 'start', 'outlook', 'start'] processed_text: ['outlook', 'start', 'outlook', 'start'] list_processed_text: [['outlook'], ['start'], ['outlook'], ['start']] k: 4514 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'unlocked', 'confirmed', 'user'] processed_text: ['erp', 'sid', 'account', 'locked', 'unlocked', 'confirmed', 'user'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['unlocked'], ['confirmed'], ['user']] k: 4515 len: <class 'list'> Data: ['locked', 'password', 'management', 'tool', 'please', 'reset', 'password', 'vfjsubao', 'yihelxgp', 'customer', 'service', 'representative'] processed_text: ['locked', 'password', 'management', 'tool', 'please', 'reset', 'password', 'vfjsubao', 'yihelxgp', 'customer', 'service', 'representative'] list_processed_text: [['locked'], ['password'], ['management'], ['tool'], ['please'], ['reset'], ['password'], ['vfjsubao'], ['yihelxgp'], ['customer'], ['service'], ['representative']] k: 4516 len: <class 'list'> Data: ['unable', 'connect', 'tx', 'tx', 'unable', 'connect', 'tx', 'tx'] processed_text: ['unable', 'connect', 'tx', 'tx', 'unable', 'connect', 'tx', 'tx'] list_processed_text: [['unable'], ['connect'], ['tx'], ['tx'], ['unable'], ['connect'], ['tx'], ['tx']] k: 4517 len: <class 'list'> Data: ['outlook', 'start', 'outlook', 'start'] processed_text: ['outlook', 'start', 'outlook', 'start'] list_processed_text: [['outlook'], ['start'], ['outlook'], ['start']] k: 4518 len: <class 'list'> Data: ['ticket', 'udpate', 'inplant', 'fumkcsji', 'sarmtlhyanardhanan', 'pm', 'bvwepigr', 'ekmarvgd', 'vyluaepi', 'dtwfaejr', 'inc', 'hi', 'jashyht', 'user', 'called', 'mention', 'need', 'able', 'get', 'wireless', 'travelling'] processed_text: ['ticket', 'udpate', 'inplant', 'fumkcsji', 'sarmtlhyanardhanan', 'pm', 'bvwepigr', 'ekmarvgd', 'vyluaepi', 'dtwfaejr', 'inc', 'hi', 'jashyht', 'user', 'called', 'mention', 'need', 'able', 'get', 'wireless', 'travelling'] list_processed_text: [['ticket'], ['udpate'], ['inplant'], ['fumkcsji'], ['sarmtlhyanardhanan'], ['pm'], ['bvwepigr'], ['ekmarvgd'], ['vyluaepi'], ['dtwfaejr'], ['inc'], ['hi'], ['jashyht'], ['user'], ['called'], ['mention'], ['need'], ['able'], ['get'], ['wireless'], ['travelling']] k: 4519 len: <class 'list'> Data: ['add', 'rqiw', 'rqigfgage', 'qlhmawgi', 'sgwipoxn', 'name', 'seghyurghei', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'add', 'rqiw', 'rqigfgage', 'qlhmawgi', 'sgwipoxn'] processed_text: ['add', 'rqiw', 'rqigfgage', 'qlhmawgi', 'sgwipoxn', 'name', 'seghyurghei', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'add', 'rqiw', 'rqigfgage', 'qlhmawgi', 'sgwipoxn'] list_processed_text: [['add'], ['rqiw'], ['rqigfgage'], ['qlhmawgi'], ['sgwipoxn'], ['name'], ['seghyurghei'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['add'], ['rqiw'], ['rqigfgage'], ['qlhmawgi'], ['sgwipoxn']] k: 4520 len: <class 'list'> Data: ['time', 'card', 'missing', 'service', 'change', 'supervisor', 'name', 'sagfhosh', 'karhtyiio', 'rabhtui', 'edula', 'ufpzergq', 'zchjbfdehivashankaraiah', 'rkupnshb', 'gsmzfojw', 'inc', 'time', 'card', 'missing', 'ticketing', 'tool', 'change', 'supervisor', 'name', 'hi', 'rabhtui', 'look', 'like', 'timecard', 'last', 'two', 'week', 'week', 'missing', 'service', 'also', 'checked', 'team', 'member', 'venkat', 'also', 'issue', 'also', 'request', 'change', 'supervisor', 'name', 'erihyuk', 'baurhty', 'xabkyoug', 'wdkyiqfx', 'inc', 'assigned', 'please', 'take', 'look', 'please', 'revert', 'clarification'] processed_text: ['time', 'card', 'missing', 'service', 'change', 'supervisor', 'name', 'sagfhosh', 'karhtyiio', 'rabhtui', 'edula', 'ufpzergq', 'zchjbfdehivashankaraiah', 'rkupnshb', 'gsmzfojw', 'inc', 'time', 'card', 'missing', 'ticketing', 'tool', 'change', 'supervisor', 'name', 'hi', 'rabhtui', 'look', 'like', 'timecard', 'last', 'two', 'week', 'week', 'missing', 'service', 'also', 'checked', 'team', 'member', 'venkat', 'also', 'issue', 'also', 'request', 'change', 'supervisor', 'name', 'erihyuk', 'baurhty', 'xabkyoug', 'wdkyiqfx', 'inc', 'assigned', 'please', 'take', 'look', 'please', 'revert', 'clarification'] list_processed_text: [['time'], ['card'], ['missing'], ['service'], ['change'], ['supervisor'], ['name'], ['sagfhosh'], ['karhtyiio'], ['rabhtui'], ['edula'], ['ufpzergq'], ['zchjbfdehivashankaraiah'], ['rkupnshb'], ['gsmzfojw'], ['inc'], ['time'], ['card'], ['missing'], ['ticketing'], ['tool'], ['change'], ['supervisor'], ['name'], ['hi'], ['rabhtui'], ['look'], ['like'], ['timecard'], ['last'], ['two'], ['week'], ['week'], ['missing'], ['service'], ['also'], ['checked'], ['team'], ['member'], ['venkat'], ['also'], ['issue'], ['also'], ['request'], ['change'], ['supervisor'], ['name'], ['erihyuk'], ['baurhty'], ['xabkyoug'], ['wdkyiqfx'], ['inc'], ['assigned'], ['please'], ['take'], ['look'], ['please'], ['revert'], ['clarification']] k: 4521 len: <class 'list'> Data: ['pdf', 'file', 'getting', 'saved', 'freeze', 'server', 'pdf', 'file', 'getting', 'saved', 'freeze', 'server'] processed_text: ['pdf', 'file', 'getting', 'saved', 'freeze', 'server', 'pdf', 'file', 'getting', 'saved', 'freeze', 'server'] list_processed_text: [['pdf'], ['file'], ['getting'], ['saved'], ['freeze'], ['server'], ['pdf'], ['file'], ['getting'], ['saved'], ['freeze'], ['server']] k: 4522 len: <class 'list'> Data: ['call', 'disconnected', 'due', 'vpn', 'disconnection', 'call', 'disconnected', 'due', 'vpn', 'disconnection'] processed_text: ['call', 'disconnected', 'due', 'vpn', 'disconnection', 'call', 'disconnected', 'due', 'vpn', 'disconnection'] list_processed_text: [['call'], ['disconnected'], ['due'], ['vpn'], ['disconnection'], ['call'], ['disconnected'], ['due'], ['vpn'], ['disconnection']] k: 4523 len: <class 'list'> Data: ['call', 'disconnected', 'due', 'vpn', 'disconnection', 'call', 'disconnected', 'due', 'vpn', 'disconnection'] processed_text: ['call', 'disconnected', 'due', 'vpn', 'disconnection', 'call', 'disconnected', 'due', 'vpn', 'disconnection'] list_processed_text: [['call'], ['disconnected'], ['due'], ['vpn'], ['disconnection'], ['call'], ['disconnected'], ['due'], ['vpn'], ['disconnection']] k: 4524 len: <class 'list'> Data: ['unable', 'print', 'cl', 'unable', 'print', 'cl'] processed_text: ['unable', 'print', 'cl', 'unable', 'print', 'cl'] list_processed_text: [['unable'], ['print'], ['cl'], ['unable'], ['print'], ['cl']] k: 4525 len: <class 'list'> Data: ['german', 'call', 'caller', 'disconnected', 'german', 'call', 'caller', 'disconnected'] processed_text: ['german', 'call', 'caller', 'disconnected', 'german', 'call', 'caller', 'disconnected'] list_processed_text: [['german'], ['call'], ['caller'], ['disconnected'], ['german'], ['call'], ['caller'], ['disconnected']] k: 4526 len: <class 'list'> Data: ['microsoft', 'word', 'stopped', 'working', 'unable', 'open', 'file', 'microsoft', 'word', 'stopped', 'working', 'unable', 'open', 'file'] processed_text: ['microsoft', 'word', 'stopped', 'working', 'unable', 'open', 'file', 'microsoft', 'word', 'stopped', 'working', 'unable', 'open', 'file'] list_processed_text: [['microsoft'], ['word'], ['stopped'], ['working'], ['unable'], ['open'], ['file'], ['microsoft'], ['word'], ['stopped'], ['working'], ['unable'], ['open'], ['file']] k: 4527 len: <class 'list'> Data: ['user', 'wanted', 'contact', 'hr', 'user', 'wanted', 'contact', 'hr'] processed_text: ['user', 'wanted', 'contact', 'hr', 'user', 'wanted', 'contact', 'hr'] list_processed_text: [['user'], ['wanted'], ['contact'], ['hr'], ['user'], ['wanted'], ['contact'], ['hr']] k: 4528 len: <class 'list'> Data: ['password', 'expired', 'password', 'expired'] processed_text: ['password', 'expired', 'password', 'expired'] list_processed_text: [['password'], ['expired'], ['password'], ['expired']] k: 4529 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4530 len: <class 'list'> Data: ['frequently', 'getting', 'error', 'outlook', 'application', 'frequently', 'getting', 'error', 'outlook', 'application', 'error', 'message', 'attached'] processed_text: ['frequently', 'getting', 'error', 'outlook', 'application', 'frequently', 'getting', 'error', 'outlook', 'application', 'error', 'message', 'attached'] list_processed_text: [['frequently'], ['getting'], ['error'], ['outlook'], ['application'], ['frequently'], ['getting'], ['error'], ['outlook'], ['application'], ['error'], ['message'], ['attached']] k: 4531 len: <class 'list'> Data: ['call', 'got', 'disconnected', 'vpn', 'went', 'call', 'got', 'disconnected', 'vpn', 'went'] processed_text: ['call', 'got', 'disconnected', 'vpn', 'went', 'call', 'got', 'disconnected', 'vpn', 'went'] list_processed_text: [['call'], ['got'], ['disconnected'], ['vpn'], ['went'], ['call'], ['got'], ['disconnected'], ['vpn'], ['went']] k: 4532 len: <class 'list'> Data: ['auto', 'output', 'inwarehouse', 'tool', 'auto', 'output', 'inwarehouse', 'tool', 'siemens', 'cm', 'set', 'auto', 'output', 'inwarehouse', 'tool', 'however', 'received', 'email', 'trigger', 'line', 'invoicing', 'customer', 'website'] processed_text: ['auto', 'output', 'inwarehouse', 'tool', 'auto', 'output', 'inwarehouse', 'tool', 'siemens', 'cm', 'set', 'auto', 'output', 'inwarehouse', 'tool', 'however', 'received', 'email', 'trigger', 'line', 'invoicing', 'customer', 'website'] list_processed_text: [['auto'], ['output'], ['inwarehouse'], ['tool'], ['auto'], ['output'], ['inwarehouse'], ['tool'], ['siemens'], ['cm'], ['set'], ['auto'], ['output'], ['inwarehouse'], ['tool'], ['however'], ['received'], ['email'], ['trigger'], ['line'], ['invoicing'], ['customer'], ['website']] k: 4533 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'recurring', 'problem', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'printer', 'detailed', 'description', 'problem', 'say', 'install', 'driver', 'print', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'document', 'system', 'application', 'used', 'time', 'problem', 'system', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'yes', 'erp', 'system', 'system', 'system', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'recurring', 'problem', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'printer', 'detailed', 'description', 'problem', 'say', 'install', 'driver', 'print', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'document', 'system', 'application', 'used', 'time', 'problem', 'system', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'yes', 'erp', 'system', 'system', 'system', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['recurring'], ['problem'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['printer'], ['detailed'], ['description'], ['problem'], ['say'], ['install'], ['driver'], ['print'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['document'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['system'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['yes'], ['erp'], ['system'], ['system'], ['system'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 4534 len: <class 'list'> Data: ['zcor', 'variant', 'plant', 'rodstock', 'working', 'erp', 'zcor', 'variant', 'plant', 'rodstock', 'working', 'erp'] processed_text: ['zcor', 'variant', 'plant', 'rodstock', 'working', 'erp', 'zcor', 'variant', 'plant', 'rodstock', 'working', 'erp'] list_processed_text: [['zcor'], ['variant'], ['plant'], ['rodstock'], ['working'], ['erp'], ['zcor'], ['variant'], ['plant'], ['rodstock'], ['working'], ['erp']] k: 4535 len: <class 'list'> Data: ['unable', 'create', 'new', 'expense', 'unable', 'create', 'new', 'expense', 'showing', 'infotype', 'error'] processed_text: ['unable', 'create', 'new', 'expense', 'unable', 'create', 'new', 'expense', 'showing', 'infotype', 'error'] list_processed_text: [['unable'], ['create'], ['new'], ['expense'], ['unable'], ['create'], ['new'], ['expense'], ['showing'], ['infotype'], ['error']] k: 4536 len: <class 'list'> Data: ['sandir', 'usa', 'pa', 'interface', 'fc', 'since', 'et', 'sandir', 'usa', 'pa', 'interface', 'fc', 'since', 'et'] processed_text: ['sandir', 'usa', 'pa', 'interface', 'fc', 'since', 'et', 'sandir', 'usa', 'pa', 'interface', 'fc', 'since', 'et'] list_processed_text: [['sandir'], ['usa'], ['pa'], ['interface'], ['fc'], ['since'], ['et'], ['sandir'], ['usa'], ['pa'], ['interface'], ['fc'], ['since'], ['et']] k: 4537 len: <class 'list'> Data: ['inwarehouse', 'tool', 'included', 'payment', 'proposal', 'inwarehouse', 'tool', 'included', 'payment', 'proposal'] processed_text: ['inwarehouse', 'tool', 'included', 'payment', 'proposal', 'inwarehouse', 'tool', 'included', 'payment', 'proposal'] list_processed_text: [['inwarehouse'], ['tool'], ['included'], ['payment'], ['proposal'], ['inwarehouse'], ['tool'], ['included'], ['payment'], ['proposal']] k: 4538 len: <class 'list'> Data: ['account', 'unlocked', 'account', 'unlocked'] processed_text: ['account', 'unlocked', 'account', 'unlocked'] list_processed_text: [['account'], ['unlocked'], ['account'], ['unlocked']] k: 4539 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4540 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 4541 len: <class 'list'> Data: ['call', 'private', 'number', 'got', 'disconnected', 'call', 'private', 'number', 'got', 'disconnected'] processed_text: ['call', 'private', 'number', 'got', 'disconnected', 'call', 'private', 'number', 'got', 'disconnected'] list_processed_text: [['call'], ['private'], ['number'], ['got'], ['disconnected'], ['call'], ['private'], ['number'], ['got'], ['disconnected']] k: 4542 len: <class 'list'> Data: ['able', 'connect', 'regular', 'printer', 'printer', 'td', 'body', 'hostname', 'x'] processed_text: ['able', 'connect', 'regular', 'printer', 'printer', 'td', 'body', 'hostname', 'x'] list_processed_text: [['able'], ['connect'], ['regular'], ['printer'], ['printer'], ['td'], ['body'], ['hostname'], ['x']] k: 4543 len: <class 'list'> Data: ['company', 'na', 'usa', 'usa', 'switch', 'tc', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'furnace', 'pc', 'ray', 'jankowski', 'company', 'na', 'usa', 'usa', 'switch', 'tc', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'furnace', 'pc', 'ray', 'jankowski'] processed_text: ['company', 'na', 'usa', 'usa', 'switch', 'tc', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'furnace', 'pc', 'ray', 'jankowski', 'company', 'na', 'usa', 'usa', 'switch', 'tc', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'furnace', 'pc', 'ray', 'jankowski'] list_processed_text: [['company'], ['na'], ['usa'], ['usa'], ['switch'], ['tc'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['furnace'], ['pc'], ['ray'], ['jankowski'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['tc'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['furnace'], ['pc'], ['ray'], ['jankowski']] k: 4544 len: <class 'list'> Data: ['machine', 'pc', 'kentip', 'area', 'longer', 'start', 'machine', 'pc', 'kentip', 'area', 'longer', 'start'] processed_text: ['machine', 'pc', 'kentip', 'area', 'longer', 'start', 'machine', 'pc', 'kentip', 'area', 'longer', 'start'] list_processed_text: [['machine'], ['pc'], ['kentip'], ['area'], ['longer'], ['start'], ['machine'], ['pc'], ['kentip'], ['area'], ['longer'], ['start']] k: 4545 len: <class 'list'> Data: ['erp', 'problem', 'want', 'open', 'drawing', 'computer', 'evh', 'erp', 'schlie', 'erp', 'log', 'two', 'ticket', 'already', 'written', 'problem', 'yet', 'resolved'] processed_text: ['erp', 'problem', 'want', 'open', 'drawing', 'computer', 'evh', 'erp', 'schlie', 'erp', 'log', 'two', 'ticket', 'already', 'written', 'problem', 'yet', 'resolved'] list_processed_text: [['erp'], ['problem'], ['want'], ['open'], ['drawing'], ['computer'], ['evh'], ['erp'], ['schlie'], ['erp'], ['log'], ['two'], ['ticket'], ['already'], ['written'], ['problem'], ['yet'], ['resolved']] k: 4546 len: <class 'list'> Data: ['impossible', 'remove', 'country', 'origin', 'data', 'inwarehouse', 'tool', 'export', 'customer', 'made', 'uacyltoe', 'hxgaycze', 'xawlkiey', 'demjqrfl', 'sid', 'inwarehouse', 'tool', 'number', 'also', 'inwarehouse', 'tool', 'proforma', 'sid', 'example', 'please', 'note', 'english', 'sentence', 'automatic', 'one', 'french', 'manual', 'one', 'customer', 'master', 'level', 'classification', 'checked', 'print', 'export', 'info', 'work'] processed_text: ['impossible', 'remove', 'country', 'origin', 'data', 'inwarehouse', 'tool', 'export', 'customer', 'made', 'uacyltoe', 'hxgaycze', 'xawlkiey', 'demjqrfl', 'sid', 'inwarehouse', 'tool', 'number', 'also', 'inwarehouse', 'tool', 'proforma', 'sid', 'example', 'please', 'note', 'english', 'sentence', 'automatic', 'one', 'french', 'manual', 'one', 'customer', 'master', 'level', 'classification', 'checked', 'print', 'export', 'info', 'work'] list_processed_text: [['impossible'], ['remove'], ['country'], ['origin'], ['data'], ['inwarehouse'], ['tool'], ['export'], ['customer'], ['made'], ['uacyltoe'], ['hxgaycze'], ['xawlkiey'], ['demjqrfl'], ['sid'], ['inwarehouse'], ['tool'], ['number'], ['also'], ['inwarehouse'], ['tool'], ['proforma'], ['sid'], ['example'], ['please'], ['note'], ['english'], ['sentence'], ['automatic'], ['one'], ['french'], ['manual'], ['one'], ['customer'], ['master'], ['level'], ['classification'], ['checked'], ['print'], ['export'], ['info'], ['work']] k: 4547 len: <class 'list'> Data: ['urgent', 'personnel', 'number', 'accepted', 'travel', 'expense', 'manager', 'erp', 'personnel', 'number', 'accepted', 'travel', 'expense', 'manager', 'erp'] processed_text: ['urgent', 'personnel', 'number', 'accepted', 'travel', 'expense', 'manager', 'erp', 'personnel', 'number', 'accepted', 'travel', 'expense', 'manager', 'erp'] list_processed_text: [['urgent'], ['personnel'], ['number'], ['accepted'], ['travel'], ['expense'], ['manager'], ['erp'], ['personnel'], ['number'], ['accepted'], ['travel'], ['expense'], ['manager'], ['erp']] k: 4548 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'hostname', 'average', 'sample', 'disk', 'free'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'hostname', 'average', 'sample', 'disk', 'free'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['hostname'], ['average'], ['sample'], ['disk'], ['free']] k: 4549 len: <class 'list'> Data: ['reset', 'hello', 'help', 'reset', 'database', 'marked', 'plan', 'stock', 'report', 'daily', 'xlsx', 'the,', 'thank', 'cflrqoew', 'qbgjwaye', 'process', 'planning', 'company', 'company', 'produktions', 'gmbh', 'co', 'kg', 'managing', 'director', 'dr', 'jofghyuach', 'fabry', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'sole', 'use', 'r', 'addressee', 'determines', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'oversight', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['reset', 'hello', 'help', 'reset', 'database', 'marked', 'plan', 'stock', 'report', 'daily', 'xlsx', 'the,', 'thank', 'cflrqoew', 'qbgjwaye', 'process', 'planning', 'company', 'company', 'produktions', 'gmbh', 'co', 'kg', 'managing', 'director', 'dr', 'jofghyuach', 'fabry', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'sole', 'use', 'r', 'addressee', 'determines', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'oversight', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['reset'], ['hello'], ['help'], ['reset'], ['database'], ['marked'], ['plan'], ['stock'], ['report'], ['daily'], ['xlsx'], ['the,'], ['thank'], ['cflrqoew'], ['qbgjwaye'], ['process'], ['planning'], ['company'], ['company'], ['produktions'], ['gmbh'], ['co'], ['kg'], ['managing'], ['director'], ['dr'], ['jofghyuach'], ['fabry'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['communication'], ['sole'], ['use'], ['r'], ['addressee'], ['determines'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['communication'], ['due'], ['oversight'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 4550 len: <class 'list'> Data: ['problem', 'mit', 'portal', 'ujtmipzv', 'cwdzunxs', 'problem', 'mit', 'portal', 'ujtmipzv', 'cwdzunxs'] processed_text: ['problem', 'mit', 'portal', 'ujtmipzv', 'cwdzunxs', 'problem', 'mit', 'portal', 'ujtmipzv', 'cwdzunxs'] list_processed_text: [['problem'], ['mit'], ['portal'], ['ujtmipzv'], ['cwdzunxs'], ['problem'], ['mit'], ['portal'], ['ujtmipzv'], ['cwdzunxs']] k: 4551 len: <class 'list'> Data: ['time', 'recording', 'work', 'q', 'quality', 'management', 'xwirzvda', 'okhyipgr', 'time', 'recording', 'work', 'q', 'quality', 'management', 'xwirzvda', 'okhyipgr'] processed_text: ['time', 'recording', 'work', 'q', 'quality', 'management', 'xwirzvda', 'okhyipgr', 'time', 'recording', 'work', 'q', 'quality', 'management', 'xwirzvda', 'okhyipgr'] list_processed_text: [['time'], ['recording'], ['work'], ['q'], ['quality'], ['management'], ['xwirzvda'], ['okhyipgr'], ['time'], ['recording'], ['work'], ['q'], ['quality'], ['management'], ['xwirzvda'], ['okhyipgr']] k: 4552 len: <class 'list'> Data: ['scanner', 'metroligic', 'r', 'computer', 'wu', 'defective', 'zedlet', 'canner', 'metroligic', 'r', 'calculator', 'wu', 'defective', 'zedlet'] processed_text: ['scanner', 'metroligic', 'r', 'computer', 'wu', 'defective', 'zedlet', 'canner', 'metroligic', 'r', 'calculator', 'wu', 'defective', 'zedlet'] list_processed_text: [['scanner'], ['metroligic'], ['r'], ['computer'], ['wu'], ['defective'], ['zedlet'], ['canner'], ['metroligic'], ['r'], ['calculator'], ['wu'], ['defective'], ['zedlet']] k: 4553 len: <class 'list'> Data: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] processed_text: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml'], ['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml']] k: 4554 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4555 len: <class 'list'> Data: ['repeat', 'print', 'tip', 'printer', 'repeat', 'print', 'tip', 'printer'] processed_text: ['repeat', 'print', 'tip', 'printer', 'repeat', 'print', 'tip', 'printer'] list_processed_text: [['repeat'], ['print'], ['tip'], ['printer'], ['repeat'], ['print'], ['tip'], ['printer']] k: 4556 len: <class 'list'> Data: ['hostname', 'label', 'dat', 'hostname', 'ebcd', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'label', 'dat', 'hostname', 'ebcd', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'label', 'dat', 'hostname', 'ebcd', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'label', 'dat', 'hostname', 'ebcd', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['label'], ['dat'], ['hostname'], ['ebcd'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['label'], ['dat'], ['hostname'], ['ebcd'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4557 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'web', 'wu', 'unlock', 'qlhmawgi', 'sgwipoxn', 'web', 'wu', 'unlock'] processed_text: ['qlhmawgi', 'sgwipoxn', 'web', 'wu', 'unlock', 'qlhmawgi', 'sgwipoxn', 'web', 'wu', 'unlock'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['web'], ['wu'], ['unlock'], ['qlhmawgi'], ['sgwipoxn'], ['web'], ['wu'], ['unlock']] k: 4558 len: <class 'list'> Data: ['purchasing', 'freetext', 'requisition', 'cannot', 'created', 'serious', 'issue', 'creating', 'shopping', 'car', 'purchasing', 'buyer', 'group', 'apac', 'defaulting', 'changeable', 'since', 'buyer', 'group', 'belongs', 'different', 'purch', 'org', 'cause', 'error', 'cannot', 'overwritten', 'seems', 'happens', 'creating', 'freetext', 'shopping', 'cart', 'need', 'immediate', 'action', 'one', 'create', 'freetext', 'requisition'] processed_text: ['purchasing', 'freetext', 'requisition', 'cannot', 'created', 'serious', 'issue', 'creating', 'shopping', 'car', 'purchasing', 'buyer', 'group', 'apac', 'defaulting', 'changeable', 'since', 'buyer', 'group', 'belongs', 'different', 'purch', 'org', 'cause', 'error', 'cannot', 'overwritten', 'seems', 'happens', 'creating', 'freetext', 'shopping', 'cart', 'need', 'immediate', 'action', 'one', 'create', 'freetext', 'requisition'] list_processed_text: [['purchasing'], ['freetext'], ['requisition'], ['cannot'], ['created'], ['serious'], ['issue'], ['creating'], ['shopping'], ['car'], ['purchasing'], ['buyer'], ['group'], ['apac'], ['defaulting'], ['changeable'], ['since'], ['buyer'], ['group'], ['belongs'], ['different'], ['purch'], ['org'], ['cause'], ['error'], ['cannot'], ['overwritten'], ['seems'], ['happens'], ['creating'], ['freetext'], ['shopping'], ['cart'], ['need'], ['immediate'], ['action'], ['one'], ['create'], ['freetext'], ['requisition']] k: 4559 len: <class 'list'> Data: ['vip', 'outlook', 'working', 'asking', 'password', 'vip', 'outlook', 'working', 'asking', 'password', 'password', 'prompt', 'coming'] processed_text: ['vip', 'outlook', 'working', 'asking', 'password', 'vip', 'outlook', 'working', 'asking', 'password', 'password', 'prompt', 'coming'] list_processed_text: [['vip'], ['outlook'], ['working'], ['asking'], ['password'], ['vip'], ['outlook'], ['working'], ['asking'], ['password'], ['password'], ['prompt'], ['coming']] k: 4560 len: <class 'list'> Data: ['need', 'dn', 'material', 'pc', 'plant', 'plant', 'thanks', 'need', 'dn', 'material', 'pc', 'plant', 'plant'] processed_text: ['need', 'dn', 'material', 'pc', 'plant', 'plant', 'thanks', 'need', 'dn', 'material', 'pc', 'plant', 'plant'] list_processed_text: [['need'], ['dn'], ['material'], ['pc'], ['plant'], ['plant'], ['thanks'], ['need'], ['dn'], ['material'], ['pc'], ['plant'], ['plant']] k: 4561 len: <class 'list'> Data: ['access', 'sid', 'access', 'sid'] processed_text: ['access', 'sid', 'access', 'sid'] list_processed_text: [['access'], ['sid'], ['access'], ['sid']] k: 4562 len: <class 'list'> Data: ['error', 'ordering', 'purchasing', 'catalog', 'good', 'morning', 'discussed', 'hotline,', 'send', 'error', 'message', 'appears', 'purchasing', 'catalog', 'shopping', 'cid', 'hardcopy', 'cid', 'contact'] processed_text: ['error', 'ordering', 'purchasing', 'catalog', 'good', 'morning', 'discussed', 'hotline,', 'send', 'error', 'message', 'appears', 'purchasing', 'catalog', 'shopping', 'cid', 'hardcopy', 'cid', 'contact'] list_processed_text: [['error'], ['ordering'], ['purchasing'], ['catalog'], ['good'], ['morning'], ['discussed'], ['hotline,'], ['send'], ['error'], ['message'], ['appears'], ['purchasing'], ['catalog'], ['shopping'], ['cid'], ['hardcopy'], ['cid'], ['contact']] k: 4563 len: <class 'list'> Data: ['need', 'cute', 'pdf', 'installed', 'need', 'cute', 'pdf', 'installed'] processed_text: ['need', 'cute', 'pdf', 'installed', 'need', 'cute', 'pdf', 'installed'] list_processed_text: [['need'], ['cute'], ['pdf'], ['installed'], ['need'], ['cute'], ['pdf'], ['installed']] k: 4564 len: <class 'list'> Data: ['vpn', 'working', 'yuxloigj', 'tzfwjxhe', 'nwfodmhc', 'exurcwkm', 'action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'hello', 'vpn', 'working', 'kindly', 'help'] processed_text: ['vpn', 'working', 'yuxloigj', 'tzfwjxhe', 'nwfodmhc', 'exurcwkm', 'action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'hello', 'vpn', 'working', 'kindly', 'help'] list_processed_text: [['vpn'], ['working'], ['yuxloigj'], ['tzfwjxhe'], ['nwfodmhc'], ['exurcwkm'], ['action'], ['required'], ['please'], ['connect'], ['new'], ['vpn'], ['url'], ['hello'], ['vpn'], ['working'], ['kindly'], ['help']] k: 4565 len: <class 'list'> Data: ['user', 'tfazwrdv', 'upwonzvd', 'pc', 'name', 'changed', 'atcl', 'old', 'pc', 'name', 'atclx', 'user', 'tfazwrdv', 'upwonzvd', 'pc', 'name', 'changed', 'atcl', 'old', 'pc', 'name', 'atclx', 'user', 'want', 'updated', 'telephony', 'software', 'system', 'update', 'yi', 'date', 'gmt', 'rajyutyi', 'kuttiadi', 'obuwfnkm', 'ufpwmybi', 'tfazwrdv', 'upwonzvd', 'fw', 'computer', 'name', 'change', 'telephony', 'software', 'hello', 'rajyutyi', 'could', 'help', 'put', 'station', 'company', 'net', 'user', 'name', 'new', 'pc', 'name', 'mac', 'address', 'tfazwrdv', 'upwonzvd', 'atcl', 'b', 'best'] processed_text: ['user', 'tfazwrdv', 'upwonzvd', 'pc', 'name', 'changed', 'atcl', 'old', 'pc', 'name', 'atclx', 'user', 'tfazwrdv', 'upwonzvd', 'pc', 'name', 'changed', 'atcl', 'old', 'pc', 'name', 'atclx', 'user', 'want', 'updated', 'telephony', 'software', 'system', 'update', 'yi', 'date', 'gmt', 'rajyutyi', 'kuttiadi', 'obuwfnkm', 'ufpwmybi', 'tfazwrdv', 'upwonzvd', 'fw', 'computer', 'name', 'change', 'telephony', 'software', 'hello', 'rajyutyi', 'could', 'help', 'put', 'station', 'company', 'net', 'user', 'name', 'new', 'pc', 'name', 'mac', 'address', 'tfazwrdv', 'upwonzvd', 'atcl', 'b', 'best'] list_processed_text: [['user'], ['tfazwrdv'], ['upwonzvd'], ['pc'], ['name'], ['changed'], ['atcl'], ['old'], ['pc'], ['name'], ['atclx'], ['user'], ['tfazwrdv'], ['upwonzvd'], ['pc'], ['name'], ['changed'], ['atcl'], ['old'], ['pc'], ['name'], ['atclx'], ['user'], ['want'], ['updated'], ['telephony'], ['software'], ['system'], ['update'], ['yi'], ['date'], ['gmt'], ['rajyutyi'], ['kuttiadi'], ['obuwfnkm'], ['ufpwmybi'], ['tfazwrdv'], ['upwonzvd'], ['fw'], ['computer'], ['name'], ['change'], ['telephony'], ['software'], ['hello'], ['rajyutyi'], ['could'], ['help'], ['put'], ['station'], ['company'], ['net'], ['user'], ['name'], ['new'], ['pc'], ['name'], ['mac'], ['address'], ['tfazwrdv'], ['upwonzvd'], ['atcl'], ['b'], ['best']] k: 4566 len: <class 'list'> Data: ['ethic', 'guten', 'morgen', 'leider', 'kann', 'ich', 'den', 'kurs', 'nicht', 'absolvieren', 'da', 'ich', 'keinen', 'zugang', 'bekomme', 'bi', 'hierher', 'geht', 'mit', 'den', 'besten', 'nschen', 'und', 'gr', 'en', 'gasbfqvp', 'fmvqgjih', 'designer', 'product', 'engineering', 'wear', 'solution', 'company', 'shared', 'service', 'gmbh', 'tel', 'fax', 'mobil', 'mail', 'adresse', 'www', 'company', 'com', 'eckersdorfer', 'stra', 'germany', 'bayern', 'germany', 'gesch', 'ftsf', 'hrer', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'sitz', 'registered', 'office', 'rth', 'bay', 'registergerirtcht', 'listed', 'court', 'register', 'rth', 'bay', 'hra', 'pers', 'nlich', 'haftende', 'gesellschafterin', 'general', 'partner', 'company', 'deutschland', 'gmbh', 'sitz', 'registered', 'office', 'germany', 'registergerirtcht', 'listed', 'court', 'register', 'bad', 'homburg', 'hrb'] processed_text: ['ethic', 'guten', 'morgen', 'leider', 'kann', 'ich', 'den', 'kurs', 'nicht', 'absolvieren', 'da', 'ich', 'keinen', 'zugang', 'bekomme', 'bi', 'hierher', 'geht', 'mit', 'den', 'besten', 'nschen', 'und', 'gr', 'en', 'gasbfqvp', 'fmvqgjih', 'designer', 'product', 'engineering', 'wear', 'solution', 'company', 'shared', 'service', 'gmbh', 'tel', 'fax', 'mobil', 'mail', 'adresse', 'www', 'company', 'com', 'eckersdorfer', 'stra', 'germany', 'bayern', 'germany', 'gesch', 'ftsf', 'hrer', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'sitz', 'registered', 'office', 'rth', 'bay', 'registergerirtcht', 'listed', 'court', 'register', 'rth', 'bay', 'hra', 'pers', 'nlich', 'haftende', 'gesellschafterin', 'general', 'partner', 'company', 'deutschland', 'gmbh', 'sitz', 'registered', 'office', 'germany', 'registergerirtcht', 'listed', 'court', 'register', 'bad', 'homburg', 'hrb'] list_processed_text: [['ethic'], ['guten'], ['morgen'], ['leider'], ['kann'], ['ich'], ['den'], ['kurs'], ['nicht'], ['absolvieren'], ['da'], ['ich'], ['keinen'], ['zugang'], ['bekomme'], ['bi'], ['hierher'], ['geht'], ['mit'], ['den'], ['besten'], ['nschen'], ['und'], ['gr'], ['en'], ['gasbfqvp'], ['fmvqgjih'], ['designer'], ['product'], ['engineering'], ['wear'], ['solution'], ['company'], ['shared'], ['service'], ['gmbh'], ['tel'], ['fax'], ['mobil'], ['mail'], ['adresse'], ['www'], ['company'], ['com'], ['eckersdorfer'], ['stra'], ['germany'], ['bayern'], ['germany'], ['gesch'], ['ftsf'], ['hrer'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['sitz'], ['registered'], ['office'], ['rth'], ['bay'], ['registergerirtcht'], ['listed'], ['court'], ['register'], ['rth'], ['bay'], ['hra'], ['pers'], ['nlich'], ['haftende'], ['gesellschafterin'], ['general'], ['partner'], ['company'], ['deutschland'], ['gmbh'], ['sitz'], ['registered'], ['office'], ['germany'], ['registergerirtcht'], ['listed'], ['court'], ['register'], ['bad'], ['homburg'], ['hrb']] k: 4567 len: <class 'list'> Data: ['purchase', 'requisition', 'purchasing', 'see', 'attachment', 'purchase', 'requisition', 'purchasing', 'see', 'attachment', 'account', 'requires', 'assignment', 'co', 'object', 'select', 'byer'] processed_text: ['purchase', 'requisition', 'purchasing', 'see', 'attachment', 'purchase', 'requisition', 'purchasing', 'see', 'attachment', 'account', 'requires', 'assignment', 'co', 'object', 'select', 'byer'] list_processed_text: [['purchase'], ['requisition'], ['purchasing'], ['see'], ['attachment'], ['purchase'], ['requisition'], ['purchasing'], ['see'], ['attachment'], ['account'], ['requires'], ['assignment'], ['co'], ['object'], ['select'], ['byer']] k: 4568 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4569 len: <class 'list'> Data: ['computer', 'started', 'computer', 'started'] processed_text: ['computer', 'started', 'computer', 'started'] list_processed_text: [['computer'], ['started'], ['computer'], ['started']] k: 4570 len: <class 'list'> Data: ['need', 'install', 'nvyjtmca', 'xjhpznds', 'application', 'need', 'install', 'nvyjtmca', 'xjhpznds', 'application', 'job', 'scheduler', 'backup', 'tool', 'vmware', 'vnc', 'viewer', 'trying', 'install', 'application', 'asking', 'administration', 'access'] processed_text: ['need', 'install', 'nvyjtmca', 'xjhpznds', 'application', 'need', 'install', 'nvyjtmca', 'xjhpznds', 'application', 'job', 'scheduler', 'backup', 'tool', 'vmware', 'vnc', 'viewer', 'trying', 'install', 'application', 'asking', 'administration', 'access'] list_processed_text: [['need'], ['install'], ['nvyjtmca'], ['xjhpznds'], ['application'], ['need'], ['install'], ['nvyjtmca'], ['xjhpznds'], ['application'], ['job'], ['scheduler'], ['backup'], ['tool'], ['vmware'], ['vnc'], ['viewer'], ['trying'], ['install'], ['application'], ['asking'], ['administration'], ['access']] k: 4571 len: <class 'list'> Data: ['new', 'fax', 'ricoh', 'fax', 'folder', 'company', 'malaysia', 'public', 'amssm', 'q', 'cannot', 'see', 'new', 'fax', 'public', 'amssm', 'ricoh', 'fax', 'folder', 'since', 'end', 'could', 'please', 'check', 'fix', 'problem'] processed_text: ['new', 'fax', 'ricoh', 'fax', 'folder', 'company', 'malaysia', 'public', 'amssm', 'q', 'cannot', 'see', 'new', 'fax', 'public', 'amssm', 'ricoh', 'fax', 'folder', 'since', 'end', 'could', 'please', 'check', 'fix', 'problem'] list_processed_text: [['new'], ['fax'], ['ricoh'], ['fax'], ['folder'], ['company'], ['malaysia'], ['public'], ['amssm'], ['q'], ['cannot'], ['see'], ['new'], ['fax'], ['public'], ['amssm'], ['ricoh'], ['fax'], ['folder'], ['since'], ['end'], ['could'], ['please'], ['check'], ['fix'], ['problem']] k: 4572 len: <class 'list'> Data: ['outloot', 'outloot'] processed_text: ['outloot', 'outloot'] list_processed_text: [['outloot'], ['outloot']] k: 4573 len: <class 'list'> Data: ['job', 'bkwin', 'search', 'server', 'qa', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'qa', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'search', 'server', 'qa', 'daily', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'search', 'server', 'qa', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['search'], ['server'], ['qa'], ['daily'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['search'], ['server'], ['qa'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 4574 len: <class 'list'> Data: ['extract', 'file', 'request', 'extract', 'file', 'request', 'using', 'rscrm', 'bapi'] processed_text: ['extract', 'file', 'request', 'extract', 'file', 'request', 'using', 'rscrm', 'bapi'] list_processed_text: [['extract'], ['file'], ['request'], ['extract'], ['file'], ['request'], ['using'], ['rscrm'], ['bapi']] k: 4575 len: <class 'list'> Data: ['please', 'help', 'qskwgjym', 'bsqdaxhf', 'delete', 'paramdntyeters', 'payment', 'run', 'code', 'f', 'please', 'help', 'qskwgjym', 'bsqdaxhf', 'delete', 'paramdntyeters', 'payment', 'run', 'code', 'f'] processed_text: ['please', 'help', 'qskwgjym', 'bsqdaxhf', 'delete', 'paramdntyeters', 'payment', 'run', 'code', 'f', 'please', 'help', 'qskwgjym', 'bsqdaxhf', 'delete', 'paramdntyeters', 'payment', 'run', 'code', 'f'] list_processed_text: [['please'], ['help'], ['qskwgjym'], ['bsqdaxhf'], ['delete'], ['paramdntyeters'], ['payment'], ['run'], ['code'], ['f'], ['please'], ['help'], ['qskwgjym'], ['bsqdaxhf'], ['delete'], ['paramdntyeters'], ['payment'], ['run'], ['code'], ['f']] k: 4576 len: <class 'list'> Data: ['job', 'sid', 'stat', 'failed', 'job', 'scheduler', 'job', 'sid', 'stat', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'stat', 'failed', 'job', 'scheduler', 'job', 'sid', 'stat', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['stat'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['stat'], ['failed'], ['job'], ['scheduler']] k: 4577 len: <class 'list'> Data: ['gr', 'error', 'dear', 'would', 'please', 'help', 'u', 'complete', 'gr', 'mm', 'qty', 'po'] processed_text: ['gr', 'error', 'dear', 'would', 'please', 'help', 'u', 'complete', 'gr', 'mm', 'qty', 'po'] list_processed_text: [['gr'], ['error'], ['dear'], ['would'], ['please'], ['help'], ['u'], ['complete'], ['gr'], ['mm'], ['qty'], ['po']] k: 4578 len: <class 'list'> Data: ['switch', 'company', 'ap', 'ind', 'kirty', 'coating', 'access', 'sw', 'located', 'india', 'kirty', 'since', 'pm', 'et', 'switch', 'company', 'ap', 'ind', 'kirty', 'coating', 'access', 'sw', 'located', 'india', 'kirty', 'since', 'pm', 'et'] processed_text: ['switch', 'company', 'ap', 'ind', 'kirty', 'coating', 'access', 'sw', 'located', 'india', 'kirty', 'since', 'pm', 'et', 'switch', 'company', 'ap', 'ind', 'kirty', 'coating', 'access', 'sw', 'located', 'india', 'kirty', 'since', 'pm', 'et'] list_processed_text: [['switch'], ['company'], ['ap'], ['ind'], ['kirty'], ['coating'], ['access'], ['sw'], ['located'], ['india'], ['kirty'], ['since'], ['pm'], ['et'], ['switch'], ['company'], ['ap'], ['ind'], ['kirty'], ['coating'], ['access'], ['sw'], ['located'], ['india'], ['kirty'], ['since'], ['pm'], ['et']] k: 4579 len: <class 'list'> Data: ['job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'tax', 'interface', 'dev', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['tax'], ['interface'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['bkwin'], ['tax'], ['interface'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 4580 len: <class 'list'> Data: ['could', 'resolve', 'item', 'category', 'error', 'zfd', 'ordering', 'hello', 'team', 'facing', 'item', 'category', 'issue', 'zfd', 'free', 'charge', 'order', 'cannot', 'select', 'item', 'category', 'zkln', 'could', 'please', 'check', 'resolve', 'issue', 'order', 'detail', 'sale', 'org', 'order', 'type', 'zfd', 'mm', 'qty', 'pc', 'delivery', 'plant', 'plant', 'usage', 'product', 'lost', 'intrans', 'cannot', 'select', 'item', 'category', 'zkln', 'without', 'error', 'hence', 'erp', 'cannot', 'identify', 'open', 'order', 'cannot', 'see', 'open', 'order', 'md', 'screen'] processed_text: ['could', 'resolve', 'item', 'category', 'error', 'zfd', 'ordering', 'hello', 'team', 'facing', 'item', 'category', 'issue', 'zfd', 'free', 'charge', 'order', 'cannot', 'select', 'item', 'category', 'zkln', 'could', 'please', 'check', 'resolve', 'issue', 'order', 'detail', 'sale', 'org', 'order', 'type', 'zfd', 'mm', 'qty', 'pc', 'delivery', 'plant', 'plant', 'usage', 'product', 'lost', 'intrans', 'cannot', 'select', 'item', 'category', 'zkln', 'without', 'error', 'hence', 'erp', 'cannot', 'identify', 'open', 'order', 'cannot', 'see', 'open', 'order', 'md', 'screen'] list_processed_text: [['could'], ['resolve'], ['item'], ['category'], ['error'], ['zfd'], ['ordering'], ['hello'], ['team'], ['facing'], ['item'], ['category'], ['issue'], ['zfd'], ['free'], ['charge'], ['order'], ['cannot'], ['select'], ['item'], ['category'], ['zkln'], ['could'], ['please'], ['check'], ['resolve'], ['issue'], ['order'], ['detail'], ['sale'], ['org'], ['order'], ['type'], ['zfd'], ['mm'], ['qty'], ['pc'], ['delivery'], ['plant'], ['plant'], ['usage'], ['product'], ['lost'], ['intrans'], ['cannot'], ['select'], ['item'], ['category'], ['zkln'], ['without'], ['error'], ['hence'], ['erp'], ['cannot'], ['identify'], ['open'], ['order'], ['cannot'], ['see'], ['open'], ['order'], ['md'], ['screen']] k: 4581 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'critical', 'nfsbackup', 'hana', 'sid', 'differential', 'backup', 'time', 'pm', 'received', 'abort', 'request', 'sm', 'aborting', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'critical', 'nfsbackup', 'hana', 'sid', 'differential', 'backup', 'time', 'pm', 'received', 'abort', 'request', 'sm', 'aborting', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['major'], ['lib'], ['drive'], ['time'], ['pm'], ['dev'], ['rmt'], ['cannot'], ['write'], ['device'], ['error'], ['critical'], ['nfsbackup'], ['hana'], ['sid'], ['differential'], ['backup'], ['time'], ['pm'], ['received'], ['abort'], ['request'], ['sm'], ['aborting'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 4582 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'critical', 'hostname', 'bk', 'hq', 'company', 'com', 'usr', 'erp', 'time', 'pm', 'received', 'abort', 'request', 'sm', 'aborting', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'critical', 'hostname', 'bk', 'hq', 'company', 'com', 'usr', 'erp', 'time', 'pm', 'received', 'abort', 'request', 'sm', 'aborting', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['major'], ['lib'], ['drive'], ['time'], ['pm'], ['dev'], ['rmt'], ['cannot'], ['write'], ['device'], ['error'], ['critical'], ['hostname'], ['bk'], ['hq'], ['company'], ['com'], ['usr'], ['erp'], ['time'], ['pm'], ['received'], ['abort'], ['request'], ['sm'], ['aborting'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 4583 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 4584 len: <class 'list'> Data: ['lnssm', 'shop', 'floor', 'app', 'application', 'pm', 'shop', 'floor', 'app', 'reporting', 'unreachable', 'status', 'lnssm', 'please', 'investigate'] processed_text: ['lnssm', 'shop', 'floor', 'app', 'application', 'pm', 'shop', 'floor', 'app', 'reporting', 'unreachable', 'status', 'lnssm', 'please', 'investigate'] list_processed_text: [['lnssm'], ['shop'], ['floor'], ['app'], ['application'], ['pm'], ['shop'], ['floor'], ['app'], ['reporting'], ['unreachable'], ['status'], ['lnssm'], ['please'], ['investigate']] k: 4585 len: <class 'list'> Data: ['sid', 'keep', 'receiving', 'balancing', 'error', 'sid', 'keep', 'receiving', 'balancing', 'error'] processed_text: ['sid', 'keep', 'receiving', 'balancing', 'error', 'sid', 'keep', 'receiving', 'balancing', 'error'] list_processed_text: [['sid'], ['keep'], ['receiving'], ['balancing'], ['error'], ['sid'], ['keep'], ['receiving'], ['balancing'], ['error']] k: 4586 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 4587 len: <class 'list'> Data: ['vpn', 'good', 'evening', 'lost', 'vpn', 'login', 'icon', 'reinstated'] processed_text: ['vpn', 'good', 'evening', 'lost', 'vpn', 'login', 'icon', 'reinstated'] list_processed_text: [['vpn'], ['good'], ['evening'], ['lost'], ['vpn'], ['login'], ['icon'], ['reinstated']] k: 4588 len: <class 'list'> Data: ['skype', 'outlook', 'launching', 'skype', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'connectt', 'company', 'vpn', 'deleted', 'rsa', 'file', 'help', 'user', 'login', 'skype', 'tried', 'reconfigure', 'mscrm', 'go', 'tried', 'repair', 'm', 'office', 'reinstalled', 'm', 'office', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved', 'computer', 'lmsl', 'contact'] processed_text: ['skype', 'outlook', 'launching', 'skype', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'user', 'connectt', 'company', 'vpn', 'deleted', 'rsa', 'file', 'help', 'user', 'login', 'skype', 'tried', 'reconfigure', 'mscrm', 'go', 'tried', 'repair', 'm', 'office', 'reinstalled', 'm', 'office', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved', 'computer', 'lmsl', 'contact'] list_processed_text: [['skype'], ['outlook'], ['launching'], ['skype'], ['outlook'], ['launching'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['user'], ['connectt'], ['company'], ['vpn'], ['deleted'], ['rsa'], ['file'], ['help'], ['user'], ['login'], ['skype'], ['tried'], ['reconfigure'], ['mscrm'], ['go'], ['tried'], ['repair'], ['m'], ['office'], ['reinstalled'], ['m'], ['office'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved'], ['computer'], ['lmsl'], ['contact']] k: 4589 len: <class 'list'> Data: ['hostname', 'status', 'utilized', 'hostname', 'status', 'label', 'dat', 'hostname', 'ebcd', 'utilized'] processed_text: ['hostname', 'status', 'utilized', 'hostname', 'status', 'label', 'dat', 'hostname', 'ebcd', 'utilized'] list_processed_text: [['hostname'], ['status'], ['utilized'], ['hostname'], ['status'], ['label'], ['dat'], ['hostname'], ['ebcd'], ['utilized']] k: 4590 len: <class 'list'> Data: ['hostname', 'status', 'utilized', 'hostname', 'status', 'label', 'sys', 'hostname', 'ab', 'utilized'] processed_text: ['hostname', 'status', 'utilized', 'hostname', 'status', 'label', 'sys', 'hostname', 'ab', 'utilized'] list_processed_text: [['hostname'], ['status'], ['utilized'], ['hostname'], ['status'], ['label'], ['sys'], ['hostname'], ['ab'], ['utilized']] k: 4591 len: <class 'list'> Data: ['static', 'call', 'static', 'call'] processed_text: ['static', 'call', 'static', 'call'] list_processed_text: [['static'], ['call'], ['static'], ['call']] k: 4592 len: <class 'list'> Data: ['change', 'made', 'ticket', 'inc', 'caused', 'issue', 'delivery', 'printing', 'plant', 'change', 'made', 'ticket', 'inc', 'caused', 'issue', 'delivery', 'printing', 'plant', 'plant', 'reconditioning', 'facility', 'located', 'plant', 'facility', 'illinois', 'usa', 'change', 'made', 'pick', 'request', 'printing', 'group', 'employee', 'affected', 'entire', 'facility', 'plant', 'group', 'used', 'print', 'delivery', 'note', 'user', 'paramdntyeter', 'delivery', 'note', 'printing', 'office', 'printer', 'near', 'working', 'productive', 'please', 'reach', 'omiwzbue', 'auvolfhp', 'help', 'resolve', 'soon', 'possible'] processed_text: ['change', 'made', 'ticket', 'inc', 'caused', 'issue', 'delivery', 'printing', 'plant', 'change', 'made', 'ticket', 'inc', 'caused', 'issue', 'delivery', 'printing', 'plant', 'plant', 'reconditioning', 'facility', 'located', 'plant', 'facility', 'illinois', 'usa', 'change', 'made', 'pick', 'request', 'printing', 'group', 'employee', 'affected', 'entire', 'facility', 'plant', 'group', 'used', 'print', 'delivery', 'note', 'user', 'paramdntyeter', 'delivery', 'note', 'printing', 'office', 'printer', 'near', 'working', 'productive', 'please', 'reach', 'omiwzbue', 'auvolfhp', 'help', 'resolve', 'soon', 'possible'] list_processed_text: [['change'], ['made'], ['ticket'], ['inc'], ['caused'], ['issue'], ['delivery'], ['printing'], ['plant'], ['change'], ['made'], ['ticket'], ['inc'], ['caused'], ['issue'], ['delivery'], ['printing'], ['plant'], ['plant'], ['reconditioning'], ['facility'], ['located'], ['plant'], ['facility'], ['illinois'], ['usa'], ['change'], ['made'], ['pick'], ['request'], ['printing'], ['group'], ['employee'], ['affected'], ['entire'], ['facility'], ['plant'], ['group'], ['used'], ['print'], ['delivery'], ['note'], ['user'], ['paramdntyeter'], ['delivery'], ['note'], ['printing'], ['office'], ['printer'], ['near'], ['working'], ['productive'], ['please'], ['reach'], ['omiwzbue'], ['auvolfhp'], ['help'], ['resolve'], ['soon'], ['possible']] k: 4593 len: <class 'list'> Data: ['invalid', 'incompletion', 'error', 'configuration', 'incompletion', 'item', 'invalid', 'item', 'complete', 'error'] processed_text: ['invalid', 'incompletion', 'error', 'configuration', 'incompletion', 'item', 'invalid', 'item', 'complete', 'error'] list_processed_text: [['invalid'], ['incompletion'], ['error'], ['configuration'], ['incompletion'], ['item'], ['invalid'], ['item'], ['complete'], ['error']] k: 4594 len: <class 'list'> Data: ['properly', 'ace', 'excel', 'word', 'skype', 'outlook', 'message', 'product', 'disabled', 'continue', 'use', 'activate', 'try', 'use', 'excel', 'word', 'skype', 'outlook', 'message', 'product', 'disabled', 'continue', 'use', 'activate', 'tried', 'using', 'mail', 'account', 'message', 'account', 'associated', 'product', 'active', 'installation', 'please', 'enter', 'account', 'associated', 'product'] processed_text: ['properly', 'ace', 'excel', 'word', 'skype', 'outlook', 'message', 'product', 'disabled', 'continue', 'use', 'activate', 'try', 'use', 'excel', 'word', 'skype', 'outlook', 'message', 'product', 'disabled', 'continue', 'use', 'activate', 'tried', 'using', 'mail', 'account', 'message', 'account', 'associated', 'product', 'active', 'installation', 'please', 'enter', 'account', 'associated', 'product'] list_processed_text: [['properly'], ['ace'], ['excel'], ['word'], ['skype'], ['outlook'], ['message'], ['product'], ['disabled'], ['continue'], ['use'], ['activate'], ['try'], ['use'], ['excel'], ['word'], ['skype'], ['outlook'], ['message'], ['product'], ['disabled'], ['continue'], ['use'], ['activate'], ['tried'], ['using'], ['mail'], ['account'], ['message'], ['account'], ['associated'], ['product'], ['active'], ['installation'], ['please'], ['enter'], ['account'], ['associated'], ['product']] k: 4595 len: <class 'list'> Data: ['downloading', 'archiving', 'tool', 'software', 'erp', 'sid', 'lkwspqce', 'knxaipyj', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'support', 'installing', 'archiving', 'tool', 'allowe', 'view', 'vendor', 'inwarehouse', 'tool', 'hello', 'please', 'support', 'downloading', 'archiving', 'tool', 'software', 'erp', 'sid', 'allow', 'access', 'view', 'vendor', 'inwarehouse', 'tool'] processed_text: ['downloading', 'archiving', 'tool', 'software', 'erp', 'sid', 'lkwspqce', 'knxaipyj', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'support', 'installing', 'archiving', 'tool', 'allowe', 'view', 'vendor', 'inwarehouse', 'tool', 'hello', 'please', 'support', 'downloading', 'archiving', 'tool', 'software', 'erp', 'sid', 'allow', 'access', 'view', 'vendor', 'inwarehouse', 'tool'] list_processed_text: [['downloading'], ['archiving'], ['tool'], ['software'], ['erp'], ['sid'], ['lkwspqce'], ['knxaipyj'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['support'], ['installing'], ['archiving'], ['tool'], ['allowe'], ['view'], ['vendor'], ['inwarehouse'], ['tool'], ['hello'], ['please'], ['support'], ['downloading'], ['archiving'], ['tool'], ['software'], ['erp'], ['sid'], ['allow'], ['access'], ['view'], ['vendor'], ['inwarehouse'], ['tool']] k: 4596 len: <class 'list'> Data: ['hana', 'report', 'refresh', 'analysis', 'button', 'deactivated', 'high', 'priority', 'see', 'attached', 'workbook', 'required', 'refreshed', 'msc', 'requirement'] processed_text: ['hana', 'report', 'refresh', 'analysis', 'button', 'deactivated', 'high', 'priority', 'see', 'attached', 'workbook', 'required', 'refreshed', 'msc', 'requirement'] list_processed_text: [['hana'], ['report'], ['refresh'], ['analysis'], ['button'], ['deactivated'], ['high'], ['priority'], ['see'], ['attached'], ['workbook'], ['required'], ['refreshed'], ['msc'], ['requirement']] k: 4597 len: <class 'list'> Data: ['please', 'reset', 'erp', 'password', 'battel', 'log', 'username', 'bragtydlc', 'thanks', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] processed_text: ['please', 'reset', 'erp', 'password', 'battel', 'log', 'username', 'bragtydlc', 'thanks', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] list_processed_text: [['please'], ['reset'], ['erp'], ['password'], ['battel'], ['log'], ['username'], ['bragtydlc'], ['thanks'], ['gvderpbx'], ['udrzjxkm'], ['junior'], ['application'], ['sale'], ['engineer']] k: 4598 len: <class 'list'> Data: ['rma', 'receiving', 'issue', 'item', 'lb', 'rma', 'two', 'item', 'name', 'debhyue', 'fhyuiinch', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'rma', 'receiving', 'issue', 'item', 'lb', 'rma', 'two', 'item', 'try', 'receive', 'item', 'mm', 'erp', 'round', 'value', 'lb', 'lb', 'way', 'receive', 'exact', 'weight'] processed_text: ['rma', 'receiving', 'issue', 'item', 'lb', 'rma', 'two', 'item', 'name', 'debhyue', 'fhyuiinch', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'rma', 'receiving', 'issue', 'item', 'lb', 'rma', 'two', 'item', 'try', 'receive', 'item', 'mm', 'erp', 'round', 'value', 'lb', 'lb', 'way', 'receive', 'exact', 'weight'] list_processed_text: [['rma'], ['receiving'], ['issue'], ['item'], ['lb'], ['rma'], ['two'], ['item'], ['name'], ['debhyue'], ['fhyuiinch'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['rma'], ['receiving'], ['issue'], ['item'], ['lb'], ['rma'], ['two'], ['item'], ['try'], ['receive'], ['item'], ['mm'], ['erp'], ['round'], ['value'], ['lb'], ['lb'], ['way'], ['receive'], ['exact'], ['weight']] k: 4599 len: <class 'list'> Data: ['please', 'help', 'brianna', 'get', 'working', 'business', 'manager', 'please', 'help', 'brianna', 'get', 'working', 'business', 'manager'] processed_text: ['please', 'help', 'brianna', 'get', 'working', 'business', 'manager', 'please', 'help', 'brianna', 'get', 'working', 'business', 'manager'] list_processed_text: [['please'], ['help'], ['brianna'], ['get'], ['working'], ['business'], ['manager'], ['please'], ['help'], ['brianna'], ['get'], ['working'], ['business'], ['manager']] k: 4600 len: <class 'list'> Data: ['tnghnha', 'ajuiegrson', 'need', 'access', 'met', 'lab', 'computer', 'able', 'perform', 'job', 'tnghnha', 'ajuiegrson', 'need', 'access', 'met', 'lab', 'computer', 'able', 'perform', 'job'] processed_text: ['tnghnha', 'ajuiegrson', 'need', 'access', 'met', 'lab', 'computer', 'able', 'perform', 'job', 'tnghnha', 'ajuiegrson', 'need', 'access', 'met', 'lab', 'computer', 'able', 'perform', 'job'] list_processed_text: [['tnghnha'], ['ajuiegrson'], ['need'], ['access'], ['met'], ['lab'], ['computer'], ['able'], ['perform'], ['job'], ['tnghnha'], ['ajuiegrson'], ['need'], ['access'], ['met'], ['lab'], ['computer'], ['able'], ['perform'], ['job']] k: 4601 len: <class 'list'> Data: ['enterprise', 'search', 'result', 'following', 'object', 'search', 'connector', 'enterprise', 'search', 'returning', 'result', 'material', 'material', 'bom', 'specification'] processed_text: ['enterprise', 'search', 'result', 'following', 'object', 'search', 'connector', 'enterprise', 'search', 'returning', 'result', 'material', 'material', 'bom', 'specification'] list_processed_text: [['enterprise'], ['search'], ['result'], ['following'], ['object'], ['search'], ['connector'], ['enterprise'], ['search'], ['returning'], ['result'], ['material'], ['material'], ['bom'], ['specification']] k: 4602 len: <class 'list'> Data: ['accrual', 'value', 'matching', 'compensation', 'system', 'bug', 'performance', 'sproc', 'calculates', 'payout', 'value', 'small', 'modification', 'need', 'occur', 'order', 'calculate', 'payout', 'value', 'monthly', 'basis', 'missed', 'uacyltoe', 'hxgayczeing', 'due', 'uacyltoe', 'hxgayczeing', 'taking', 'place', 'first', 'period', 'financial', 'toolcal', 'year', 'issue', 'arises', 'subsequent', 'period'] processed_text: ['accrual', 'value', 'matching', 'compensation', 'system', 'bug', 'performance', 'sproc', 'calculates', 'payout', 'value', 'small', 'modification', 'need', 'occur', 'order', 'calculate', 'payout', 'value', 'monthly', 'basis', 'missed', 'uacyltoe', 'hxgayczeing', 'due', 'uacyltoe', 'hxgayczeing', 'taking', 'place', 'first', 'period', 'financial', 'toolcal', 'year', 'issue', 'arises', 'subsequent', 'period'] list_processed_text: [['accrual'], ['value'], ['matching'], ['compensation'], ['system'], ['bug'], ['performance'], ['sproc'], ['calculates'], ['payout'], ['value'], ['small'], ['modification'], ['need'], ['occur'], ['order'], ['calculate'], ['payout'], ['value'], ['monthly'], ['basis'], ['missed'], ['uacyltoe'], ['hxgayczeing'], ['due'], ['uacyltoe'], ['hxgayczeing'], ['taking'], ['place'], ['first'], ['period'], ['financial'], ['toolcal'], ['year'], ['issue'], ['arises'], ['subsequent'], ['period']] k: 4603 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 4604 len: <class 'list'> Data: ['able', 'create', 'delivery', 'sto', 'able', 'create', 'delivery', 'sto', 'could', 'please', 'verify', 'apo', 'please', 'assing', 'supply', 'chain', 'group'] processed_text: ['able', 'create', 'delivery', 'sto', 'able', 'create', 'delivery', 'sto', 'could', 'please', 'verify', 'apo', 'please', 'assing', 'supply', 'chain', 'group'] list_processed_text: [['able'], ['create'], ['delivery'], ['sto'], ['able'], ['create'], ['delivery'], ['sto'], ['could'], ['please'], ['verify'], ['apo'], ['please'], ['assing'], ['supply'], ['chain'], ['group']] k: 4605 len: <class 'list'> Data: ['skype', 'sound', 'working', 'skype', 'sound', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'sound', 'driver', 'restarted', 'pc', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'able', 'hear', 'sound', 'clearly', 'issue', 'resolved'] processed_text: ['skype', 'sound', 'working', 'skype', 'sound', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'sound', 'driver', 'restarted', 'pc', 'gave', 'uacyltoe', 'hxgaycze', 'call', 'user', 'able', 'hear', 'sound', 'clearly', 'issue', 'resolved'] list_processed_text: [['skype'], ['sound'], ['working'], ['skype'], ['sound'], ['working'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['installed'], ['sound'], ['driver'], ['restarted'], ['pc'], ['gave'], ['uacyltoe'], ['hxgaycze'], ['call'], ['user'], ['able'], ['hear'], ['sound'], ['clearly'], ['issue'], ['resolved']] k: 4606 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4607 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 4608 len: <class 'list'> Data: ['tax', 'calculated', 'raghyvhdra', 'najuty', 'pm', 'nwfodmhc', 'exurcwkm', 'srinfhyath', 'araghtyu', 'parthyrubhji', 'erathyur', 'trurthyuft', 'tax', 'calculated', 'hello', 'please', 'note', 'material', 'reached', 'along', 'excise', 'inwarehouse', 'tool', 'without', 'vat', 'r', 'inwarehouse', 'tool', 'dt', 'dt', 'dt'] processed_text: ['tax', 'calculated', 'raghyvhdra', 'najuty', 'pm', 'nwfodmhc', 'exurcwkm', 'srinfhyath', 'araghtyu', 'parthyrubhji', 'erathyur', 'trurthyuft', 'tax', 'calculated', 'hello', 'please', 'note', 'material', 'reached', 'along', 'excise', 'inwarehouse', 'tool', 'without', 'vat', 'r', 'inwarehouse', 'tool', 'dt', 'dt', 'dt'] list_processed_text: [['tax'], ['calculated'], ['raghyvhdra'], ['najuty'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['srinfhyath'], ['araghtyu'], ['parthyrubhji'], ['erathyur'], ['trurthyuft'], ['tax'], ['calculated'], ['hello'], ['please'], ['note'], ['material'], ['reached'], ['along'], ['excise'], ['inwarehouse'], ['tool'], ['without'], ['vat'], ['r'], ['inwarehouse'], ['tool'], ['dt'], ['dt'], ['dt']] k: 4609 len: <class 'list'> Data: ['need', 'configure', 'email', 'company', 'iphone', 'device', 'need', 'configure', 'email', 'company', 'iphone', 'device'] processed_text: ['need', 'configure', 'email', 'company', 'iphone', 'device', 'need', 'configure', 'email', 'company', 'iphone', 'device'] list_processed_text: [['need'], ['configure'], ['email'], ['company'], ['iphone'], ['device'], ['need'], ['configure'], ['email'], ['company'], ['iphone'], ['device']] k: 4610 len: <class 'list'> Data: ['erp', 'query', 'erp', 'query'] processed_text: ['erp', 'query', 'erp', 'query'] list_processed_text: [['erp'], ['query'], ['erp'], ['query']] k: 4611 len: <class 'list'> Data: ['unlocked', 'erp', 'sid', 'unlocked', 'erp', 'sid'] processed_text: ['unlocked', 'erp', 'sid', 'unlocked', 'erp', 'sid'] list_processed_text: [['unlocked'], ['erp'], ['sid'], ['unlocked'], ['erp'], ['sid']] k: 4612 len: <class 'list'> Data: ['need', 'full', 'control', 'access', 'hostname', 'team', 'consigned', 'inventory', 'need', 'full', 'control', 'access', 'hostname', 'team', 'consigned', 'inventory'] processed_text: ['need', 'full', 'control', 'access', 'hostname', 'team', 'consigned', 'inventory', 'need', 'full', 'control', 'access', 'hostname', 'team', 'consigned', 'inventory'] list_processed_text: [['need'], ['full'], ['control'], ['access'], ['hostname'], ['team'], ['consigned'], ['inventory'], ['need'], ['full'], ['control'], ['access'], ['hostname'], ['team'], ['consigned'], ['inventory']] k: 4613 len: <class 'list'> Data: ['unable', 'end', 'email', 'emailed', 'step', 'awaiting', 'uacyltoe', 'hxgayczeing', 'nwfodmhc', 'exurcwkm', 'pm', 'shhkioaprhkuoash', 'm', 'fw', 'fw', 'fw', 'engineering', 'drawing', 'tool', 'automation', 'hi', 'shiv', 'please', 'see', 'removing', 'name', 'outlook', 'cache', 'fix', 'issue', 'please', 'type', 'name', 'recipient', 'find', 'x', 'next', 'name', 'click', 'remove', 'cache', 'open', 'new', 'email', 'type', 'complete', 'email', 'address', 'uacyltoe', 'hxgaycze', 'able', 'send', 'email'] processed_text: ['unable', 'end', 'email', 'emailed', 'step', 'awaiting', 'uacyltoe', 'hxgayczeing', 'nwfodmhc', 'exurcwkm', 'pm', 'shhkioaprhkuoash', 'm', 'fw', 'fw', 'fw', 'engineering', 'drawing', 'tool', 'automation', 'hi', 'shiv', 'please', 'see', 'removing', 'name', 'outlook', 'cache', 'fix', 'issue', 'please', 'type', 'name', 'recipient', 'find', 'x', 'next', 'name', 'click', 'remove', 'cache', 'open', 'new', 'email', 'type', 'complete', 'email', 'address', 'uacyltoe', 'hxgaycze', 'able', 'send', 'email'] list_processed_text: [['unable'], ['end'], ['email'], ['emailed'], ['step'], ['awaiting'], ['uacyltoe'], ['hxgayczeing'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['shhkioaprhkuoash'], ['m'], ['fw'], ['fw'], ['fw'], ['engineering'], ['drawing'], ['tool'], ['automation'], ['hi'], ['shiv'], ['please'], ['see'], ['removing'], ['name'], ['outlook'], ['cache'], ['fix'], ['issue'], ['please'], ['type'], ['name'], ['recipient'], ['find'], ['x'], ['next'], ['name'], ['click'], ['remove'], ['cache'], ['open'], ['new'], ['email'], ['type'], ['complete'], ['email'], ['address'], ['uacyltoe'], ['hxgaycze'], ['able'], ['send'], ['email']] k: 4614 len: <class 'list'> Data: ['issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'deliver', 'ext', 'summary', 'issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'deliver'] processed_text: ['issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'deliver', 'ext', 'summary', 'issue', 'delivering', 'part', 'stock', 'another', 'plant', 'rqfhiong', 'zkwfqagb', 'deliver', 'plant', 'plant', 'deliver'] list_processed_text: [['issue'], ['delivering'], ['part'], ['stock'], ['another'], ['plant'], ['rqfhiong'], ['zkwfqagb'], ['deliver'], ['plant'], ['plant'], ['issue'], ['delivering'], ['part'], ['stock'], ['another'], ['plant'], ['rqfhiong'], ['zkwfqagb'], ['deliver'], ['plant'], ['plant'], ['deliver'], ['ext'], ['summary'], ['issue'], ['delivering'], ['part'], ['stock'], ['another'], ['plant'], ['rqfhiong'], ['zkwfqagb'], ['deliver'], ['plant'], ['plant'], ['deliver']] k: 4615 len: <class 'list'> Data: ['could', 'hear', 'user', 'side', 'could', 'hear', 'user', 'side', 'phone', 'issue'] processed_text: ['could', 'hear', 'user', 'side', 'could', 'hear', 'user', 'side', 'phone', 'issue'] list_processed_text: [['could'], ['hear'], ['user'], ['side'], ['could'], ['hear'], ['user'], ['side'], ['phone'], ['issue']] k: 4616 len: <class 'list'> Data: ['user', 'unable', 'connect', 'network', 'drive', 'hostname', 'user', 'unable', 'connect', 'network', 'drive', 'hostname', 'server', 'also', 'reachable'] processed_text: ['user', 'unable', 'connect', 'network', 'drive', 'hostname', 'user', 'unable', 'connect', 'network', 'drive', 'hostname', 'server', 'also', 'reachable'] list_processed_text: [['user'], ['unable'], ['connect'], ['network'], ['drive'], ['hostname'], ['user'], ['unable'], ['connect'], ['network'], ['drive'], ['hostname'], ['server'], ['also'], ['reachable']] k: 4617 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'puxsvfwr', 'cwkjruni', 'pm', 'nwfodmhc', 'exurcwkm', 'sab', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'hi', 'please', 'activate', 'mobile', 'devise', 'recieve', 'email', 'new', 'business', 'iphone'] processed_text: ['mobile', 'device', 'activation', 'puxsvfwr', 'cwkjruni', 'pm', 'nwfodmhc', 'exurcwkm', 'sab', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'importance', 'high', 'hi', 'please', 'activate', 'mobile', 'devise', 'recieve', 'email', 'new', 'business', 'iphone'] list_processed_text: [['mobile'], ['device'], ['activation'], ['puxsvfwr'], ['cwkjruni'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['sab'], ['wg'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['importance'], ['high'], ['hi'], ['please'], ['activate'], ['mobile'], ['devise'], ['recieve'], ['email'], ['new'], ['business'], ['iphone']] k: 4618 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4619 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 4620 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 4621 len: <class 'list'> Data: ['unable', 'connect', 'wireless', 'laptop', 'unable', 'connect', 'wireless', 'laptop'] processed_text: ['unable', 'connect', 'wireless', 'laptop', 'unable', 'connect', 'wireless', 'laptop'] list_processed_text: [['unable'], ['connect'], ['wireless'], ['laptop'], ['unable'], ['connect'], ['wireless'], ['laptop']] k: 4622 len: <class 'list'> Data: ['urgent', 'reference', 'ticket', 'inc', 'uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'hostname', 'incorrectly', 'helped', 'mapping', 'network', 'drive', 'correctly', 'inc', 'reboot', 'computer', 'connecting', 'back', 'kkbsm', 'instead', 'hostname', 'access', 'drive', 'drive', 'drive', 'server', 'hostname', 'pc', 'name', 'ekxw', 'please', 'help', 'update', 'login', 'script', 'user', 'sica', 'pez', 'rufo', 'also', 'user', 'requested', 'process', 'request', 'soon', 'possible', 'daily', 'work', 'getting', 'hampered', 'urgent'] processed_text: ['urgent', 'reference', 'ticket', 'inc', 'uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'hostname', 'incorrectly', 'helped', 'mapping', 'network', 'drive', 'correctly', 'inc', 'reboot', 'computer', 'connecting', 'back', 'kkbsm', 'instead', 'hostname', 'access', 'drive', 'drive', 'drive', 'server', 'hostname', 'pc', 'name', 'ekxw', 'please', 'help', 'update', 'login', 'script', 'user', 'sica', 'pez', 'rufo', 'also', 'user', 'requested', 'process', 'request', 'soon', 'possible', 'daily', 'work', 'getting', 'hampered', 'urgent'] list_processed_text: [['urgent'], ['reference'], ['ticket'], ['inc'], ['uyjlodhq'], ['ymedkatw'], ['lghuiezj'], ['mapped'], ['unit'], ['department'], ['public'], ['team'], ['hostname'], ['incorrectly'], ['helped'], ['mapping'], ['network'], ['drive'], ['correctly'], ['inc'], ['reboot'], ['computer'], ['connecting'], ['back'], ['kkbsm'], ['instead'], ['hostname'], ['access'], ['drive'], ['drive'], ['drive'], ['server'], ['hostname'], ['pc'], ['name'], ['ekxw'], ['please'], ['help'], ['update'], ['login'], ['script'], ['user'], ['sica'], ['pez'], ['rufo'], ['also'], ['user'], ['requested'], ['process'], ['request'], ['soon'], ['possible'], ['daily'], ['work'], ['getting'], ['hampered'], ['urgent']] k: 4623 len: <class 'list'> Data: ['vpn', 'access', 'pc', 'name', 'aidl', 'user', 'id', 'thhyuokhkp', 'vpn', 'access', 'pc', 'name', 'aidl'] processed_text: ['vpn', 'access', 'pc', 'name', 'aidl', 'user', 'id', 'thhyuokhkp', 'vpn', 'access', 'pc', 'name', 'aidl'] list_processed_text: [['vpn'], ['access'], ['pc'], ['name'], ['aidl'], ['user'], ['id'], ['thhyuokhkp'], ['vpn'], ['access'], ['pc'], ['name'], ['aidl']] k: 4624 len: <class 'list'> Data: ['office', 'least', 'next', 'month', 'need', 'password', 'reset', 'mail', 'office', 'least', 'next', 'month', 'need', 'password', 'reset', 'mail'] processed_text: ['office', 'least', 'next', 'month', 'need', 'password', 'reset', 'mail', 'office', 'least', 'next', 'month', 'need', 'password', 'reset', 'mail'] list_processed_text: [['office'], ['least'], ['next'], ['month'], ['need'], ['password'], ['reset'], ['mail'], ['office'], ['least'], ['next'], ['month'], ['need'], ['password'], ['reset'], ['mail']] k: 4625 len: <class 'list'> Data: ['outlook', 'loading', 'outlook', 'loading'] processed_text: ['outlook', 'loading', 'outlook', 'loading'] list_processed_text: [['outlook'], ['loading'], ['outlook'], ['loading']] k: 4626 len: <class 'list'> Data: ['response', 'side', 'german', 'call', 'response', 'side', 'german', 'call'] processed_text: ['response', 'side', 'german', 'call', 'response', 'side', 'german', 'call'] list_processed_text: [['response'], ['side'], ['german'], ['call'], ['response'], ['side'], ['german'], ['call']] k: 4627 len: <class 'list'> Data: ['removing', 'another', 'mail', 'box', 'outlook', 'removing', 'another', 'mail', 'box', 'outlook'] processed_text: ['removing', 'another', 'mail', 'box', 'outlook', 'removing', 'another', 'mail', 'box', 'outlook'] list_processed_text: [['removing'], ['another'], ['mail'], ['box'], ['outlook'], ['removing'], ['another'], ['mail'], ['box'], ['outlook']] k: 4628 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 4629 len: <class 'list'> Data: ['erp', 'help', 'hello', 'try', 'get', 'erp', 'search', 'explorer', 'analytics', 'blank', 'screen', 'come', 'problem'] processed_text: ['erp', 'help', 'hello', 'try', 'get', 'erp', 'search', 'explorer', 'analytics', 'blank', 'screen', 'come', 'problem'] list_processed_text: [['erp'], ['help'], ['hello'], ['try'], ['get'], ['erp'], ['search'], ['explorer'], ['analytics'], ['blank'], ['screen'], ['come'], ['problem']] k: 4630 len: <class 'list'> Data: ['need', 'contact', 'keyhtyvin', 'toriaytun', 'need', 'contact', 'keyhtyvin', 'toriaytun'] processed_text: ['need', 'contact', 'keyhtyvin', 'toriaytun', 'need', 'contact', 'keyhtyvin', 'toriaytun'] list_processed_text: [['need'], ['contact'], ['keyhtyvin'], ['toriaytun'], ['need'], ['contact'], ['keyhtyvin'], ['toriaytun']] k: 4631 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 4632 len: <class 'list'> Data: ['erp', 'customer', 'ref', 'delivery', 'hoi', 'view', 'attached', 'example', 'customer', 'ref', 'entered', 'erp', 'printing', 'delivery', 'sale', 'org', 'also', 'printscreen', 'order', 'wikfnmlwds', 'wmtiruac', 'attached', 'might', 'also', 'case', 'sale', 'org', 'please', 'also', 'check'] processed_text: ['erp', 'customer', 'ref', 'delivery', 'hoi', 'view', 'attached', 'example', 'customer', 'ref', 'entered', 'erp', 'printing', 'delivery', 'sale', 'org', 'also', 'printscreen', 'order', 'wikfnmlwds', 'wmtiruac', 'attached', 'might', 'also', 'case', 'sale', 'org', 'please', 'also', 'check'] list_processed_text: [['erp'], ['customer'], ['ref'], ['delivery'], ['hoi'], ['view'], ['attached'], ['example'], ['customer'], ['ref'], ['entered'], ['erp'], ['printing'], ['delivery'], ['sale'], ['org'], ['also'], ['printscreen'], ['order'], ['wikfnmlwds'], ['wmtiruac'], ['attached'], ['might'], ['also'], ['case'], ['sale'], ['org'], ['please'], ['also'], ['check']] k: 4633 len: <class 'list'> Data: ['please', 'set', 'field', 'service', 'collaboration', 'platform', 'page', 'include', 'collaboration', 'platform', 'meeting', 'section', 'explained', 'please', 'set', 'field', 'service', 'collaboration', 'platform', 'page', 'include', 'collaboration', 'platform', 'meeting', 'section', 'explained'] processed_text: ['please', 'set', 'field', 'service', 'collaboration', 'platform', 'page', 'include', 'collaboration', 'platform', 'meeting', 'section', 'explained', 'please', 'set', 'field', 'service', 'collaboration', 'platform', 'page', 'include', 'collaboration', 'platform', 'meeting', 'section', 'explained'] list_processed_text: [['please'], ['set'], ['field'], ['service'], ['collaboration'], ['platform'], ['page'], ['include'], ['collaboration'], ['platform'], ['meeting'], ['section'], ['explained'], ['please'], ['set'], ['field'], ['service'], ['collaboration'], ['platform'], ['page'], ['include'], ['collaboration'], ['platform'], ['meeting'], ['section'], ['explained']] k: 4634 len: <class 'list'> Data: ['password', 'manager', 'error', 'failed', 'log', 'inn', 'please', 'reset', 'blocked', 'phone'] processed_text: ['password', 'manager', 'error', 'failed', 'log', 'inn', 'please', 'reset', 'blocked', 'phone'] list_processed_text: [['password'], ['manager'], ['error'], ['failed'], ['log'], ['inn'], ['please'], ['reset'], ['blocked'], ['phone']] k: 4635 len: <class 'list'> Data: ['printout', 'shipament', 'lable', 'working', 'name', 'frafhyuo', 'ajuyanni', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'frafhyuo', 'ajuyanni', 'company', 'italy', 'try', 'create', 'delivery', 'pweaver', 'ship', 'printout', 'shipament', 'lable', 'working', 'italian', 'shipmet', 'work', 'others', 'country', 'working', 'please', 'give', 'support'] processed_text: ['printout', 'shipament', 'lable', 'working', 'name', 'frafhyuo', 'ajuyanni', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'frafhyuo', 'ajuyanni', 'company', 'italy', 'try', 'create', 'delivery', 'pweaver', 'ship', 'printout', 'shipament', 'lable', 'working', 'italian', 'shipmet', 'work', 'others', 'country', 'working', 'please', 'give', 'support'] list_processed_text: [['printout'], ['shipament'], ['lable'], ['working'], ['name'], ['frafhyuo'], ['ajuyanni'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['frafhyuo'], ['ajuyanni'], ['company'], ['italy'], ['try'], ['create'], ['delivery'], ['pweaver'], ['ship'], ['printout'], ['shipament'], ['lable'], ['working'], ['italian'], ['shipmet'], ['work'], ['others'], ['country'], ['working'], ['please'], ['give'], ['support']] k: 4636 len: <class 'list'> Data: ['response', 'side', 'response', 'side'] processed_text: ['response', 'side', 'response', 'side'] list_processed_text: [['response'], ['side'], ['response'], ['side']] k: 4637 len: <class 'list'> Data: ['follow', 'call', 'inplant', 'follow', 'call', 'inplant'] processed_text: ['follow', 'call', 'inplant', 'follow', 'call', 'inplant'] list_processed_text: [['follow'], ['call'], ['inplant'], ['follow'], ['call'], ['inplant']] k: 4638 len: <class 'list'> Data: ['wifi', 'randd', 'conference', 'room', 'please', 'investigate', 'repair', 'cause', 'weak', 'wifi', 'signal', 'randd', 'area', 'used', 'full', 'bar', 'reason', 'barley', 'bar'] processed_text: ['wifi', 'randd', 'conference', 'room', 'please', 'investigate', 'repair', 'cause', 'weak', 'wifi', 'signal', 'randd', 'area', 'used', 'full', 'bar', 'reason', 'barley', 'bar'] list_processed_text: [['wifi'], ['randd'], ['conference'], ['room'], ['please'], ['investigate'], ['repair'], ['cause'], ['weak'], ['wifi'], ['signal'], ['randd'], ['area'], ['used'], ['full'], ['bar'], ['reason'], ['barley'], ['bar']] k: 4639 len: <class 'list'> Data: ['dual', 'monitor', 'issue', 'dual', 'monitor', 'issue'] processed_text: ['dual', 'monitor', 'issue', 'dual', 'monitor', 'issue'] list_processed_text: [['dual'], ['monitor'], ['issue'], ['dual'], ['monitor'], ['issue']] k: 4640 len: <class 'list'> Data: ['need', 'interaction', 'password', 'reset', 'need', 'interaction', 'password', 'reset', 'phone'] processed_text: ['need', 'interaction', 'password', 'reset', 'need', 'interaction', 'password', 'reset', 'phone'] list_processed_text: [['need'], ['interaction'], ['password'], ['reset'], ['need'], ['interaction'], ['password'], ['reset'], ['phone']] k: 4641 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'query', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'query'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'query', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'help', 'query'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['help'], ['query'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['help'], ['query']] k: 4642 len: <class 'list'> Data: ['printer', 'em', 'paper', 'transport', 'defective', 'transporting', 'printer', 'paper,', 'notch', 'appear', 'regular', 'intervals.', 'paper', 'feed', 'defective'] processed_text: ['printer', 'em', 'paper', 'transport', 'defective', 'transporting', 'printer', 'paper,', 'notch', 'appear', 'regular', 'intervals.', 'paper', 'feed', 'defective'] list_processed_text: [['printer'], ['em'], ['paper'], ['transport'], ['defective'], ['transporting'], ['printer'], ['paper,'], ['notch'], ['appear'], ['regular'], ['intervals.'], ['paper'], ['feed'], ['defective']] k: 4643 len: <class 'list'> Data: ['unable', 'log', 'mii', 'system', 'unable', 'log', 'mii', 'system', 'user', 'authentication', 'failed'] processed_text: ['unable', 'log', 'mii', 'system', 'unable', 'log', 'mii', 'system', 'user', 'authentication', 'failed'] list_processed_text: [['unable'], ['log'], ['mii'], ['system'], ['unable'], ['log'], ['mii'], ['system'], ['user'], ['authentication'], ['failed']] k: 4644 len: <class 'list'> Data: ['issue', 'usa', 'functioning', 'ups', 'system', 'switch', 'server', 'plugged', 'wall', 'please', 'ship', 'two', 'aerp', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] processed_text: ['issue', 'usa', 'functioning', 'ups', 'system', 'switch', 'server', 'plugged', 'wall', 'please', 'ship', 'two', 'aerp', 'shrugott', 'tyhuellis', 'usa', 'facility', 'mgr'] list_processed_text: [['issue'], ['usa'], ['functioning'], ['ups'], ['system'], ['switch'], ['server'], ['plugged'], ['wall'], ['please'], ['ship'], ['two'], ['aerp'], ['shrugott'], ['tyhuellis'], ['usa'], ['facility'], ['mgr']] k: 4645 len: <class 'list'> Data: ['reset', 'password', 'robhyertyj', 'duca', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'robhyertyj', 'duca', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['robhyertyj'], ['duca'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4646 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching'] processed_text: ['outlook', 'launching', 'outlook', 'launching'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching']] k: 4647 len: <class 'list'> Data: ['missing', 'data', 'bex', 'productmanagement', 'urgent', 'hello', 'data', 'dierppearing', 'bex', 'productmanagement', 'master', 'found', 'reason', 'anybody', 'changed', 'key', 'figure', 'name', 'sale', 'revenue', 'total', 'sale', 'revenue', 'addition', 'new', 'key', 'figure', 'net', 'value', 'nobody', 'informed', 'change', 'different', 'content', 'two', 'key', 'figure', 'immediately', 'need', 'change', 'back', 'report', 'work', 'best'] processed_text: ['missing', 'data', 'bex', 'productmanagement', 'urgent', 'hello', 'data', 'dierppearing', 'bex', 'productmanagement', 'master', 'found', 'reason', 'anybody', 'changed', 'key', 'figure', 'name', 'sale', 'revenue', 'total', 'sale', 'revenue', 'addition', 'new', 'key', 'figure', 'net', 'value', 'nobody', 'informed', 'change', 'different', 'content', 'two', 'key', 'figure', 'immediately', 'need', 'change', 'back', 'report', 'work', 'best'] list_processed_text: [['missing'], ['data'], ['bex'], ['productmanagement'], ['urgent'], ['hello'], ['data'], ['dierppearing'], ['bex'], ['productmanagement'], ['master'], ['found'], ['reason'], ['anybody'], ['changed'], ['key'], ['figure'], ['name'], ['sale'], ['revenue'], ['total'], ['sale'], ['revenue'], ['addition'], ['new'], ['key'], ['figure'], ['net'], ['value'], ['nobody'], ['informed'], ['change'], ['different'], ['content'], ['two'], ['key'], ['figure'], ['immediately'], ['need'], ['change'], ['back'], ['report'], ['work'], ['best']] k: 4648 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 4649 len: <class 'list'> Data: ['outlook', 'issue', 'hello', 'guy', 'please', 'help', 'advised', 'change', 'password', 'password', 'management', 'tool', 'manager', 'since', 'done', 'delay', 'mail', 'per', 'screenshot'] processed_text: ['outlook', 'issue', 'hello', 'guy', 'please', 'help', 'advised', 'change', 'password', 'password', 'management', 'tool', 'manager', 'since', 'done', 'delay', 'mail', 'per', 'screenshot'] list_processed_text: [['outlook'], ['issue'], ['hello'], ['guy'], ['please'], ['help'], ['advised'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['manager'], ['since'], ['done'], ['delay'], ['mail'], ['per'], ['screenshot']] k: 4650 len: <class 'list'> Data: ['active', 'directory', 'locked', 'active', 'directory', 'locked'] processed_text: ['active', 'directory', 'locked', 'active', 'directory', 'locked'] list_processed_text: [['active'], ['directory'], ['locked'], ['active'], ['directory'], ['locked']] k: 4651 len: <class 'list'> Data: ['mobile', 'device', 'activated', 'mobile', 'device', 'activated'] processed_text: ['mobile', 'device', 'activated', 'mobile', 'device', 'activated'] list_processed_text: [['mobile'], ['device'], ['activated'], ['mobile'], ['device'], ['activated']] k: 4652 len: <class 'list'> Data: ['correct', 'tax', 'rate', 'inwarehouse', 'tool', 'hello', 'implementation', 'updation', 'tax', 'rate', 'system', 'come', 'across', 'instance', 'wherein', 'system', 'capturing', 'different', 'tax', 'rate', 'local', 'sale', 'within', 'karnataka', 'one', 'recommended', 'connection', 'attaching', 'herewith', 'mail', 'communication', 'team', 'request', 'look', 'aspect', 'resulting', 'non', 'compliance'] processed_text: ['correct', 'tax', 'rate', 'inwarehouse', 'tool', 'hello', 'implementation', 'updation', 'tax', 'rate', 'system', 'come', 'across', 'instance', 'wherein', 'system', 'capturing', 'different', 'tax', 'rate', 'local', 'sale', 'within', 'karnataka', 'one', 'recommended', 'connection', 'attaching', 'herewith', 'mail', 'communication', 'team', 'request', 'look', 'aspect', 'resulting', 'non', 'compliance'] list_processed_text: [['correct'], ['tax'], ['rate'], ['inwarehouse'], ['tool'], ['hello'], ['implementation'], ['updation'], ['tax'], ['rate'], ['system'], ['come'], ['across'], ['instance'], ['wherein'], ['system'], ['capturing'], ['different'], ['tax'], ['rate'], ['local'], ['sale'], ['within'], ['karnataka'], ['one'], ['recommended'], ['connection'], ['attaching'], ['herewith'], ['mail'], ['communication'], ['team'], ['request'], ['look'], ['aspect'], ['resulting'], ['non'], ['compliance']] k: 4653 len: <class 'list'> Data: ['contractor', 'locked', 'please', 'unlock', 'vvlahstyurr', 'ad', 'erp', 'sid', 'student', 'working', 'project', 'vinhytry', 'reported', 'password', 'longer', 'working', 'access', 'data', 'assumption', 'got', 'password', 'mixed', 'ad', 'hana', 'sid', 'locked', 'one', 'please', 'look', 'unlocking', 'account'] processed_text: ['contractor', 'locked', 'please', 'unlock', 'vvlahstyurr', 'ad', 'erp', 'sid', 'student', 'working', 'project', 'vinhytry', 'reported', 'password', 'longer', 'working', 'access', 'data', 'assumption', 'got', 'password', 'mixed', 'ad', 'hana', 'sid', 'locked', 'one', 'please', 'look', 'unlocking', 'account'] list_processed_text: [['contractor'], ['locked'], ['please'], ['unlock'], ['vvlahstyurr'], ['ad'], ['erp'], ['sid'], ['student'], ['working'], ['project'], ['vinhytry'], ['reported'], ['password'], ['longer'], ['working'], ['access'], ['data'], ['assumption'], ['got'], ['password'], ['mixed'], ['ad'], ['hana'], ['sid'], ['locked'], ['one'], ['please'], ['look'], ['unlocking'], ['account']] k: 4654 len: <class 'list'> Data: ['need', 'log', 'skype', 'business', 'cannot', 'access', 'skype', 'business', 'login', 'credential'] processed_text: ['need', 'log', 'skype', 'business', 'cannot', 'access', 'skype', 'business', 'login', 'credential'] list_processed_text: [['need'], ['log'], ['skype'], ['business'], ['cannot'], ['access'], ['skype'], ['business'], ['login'], ['credential']] k: 4655 len: <class 'list'> Data: ['erp', 'crm', 'instatnt', 'timeout', 'user', 'issue', 'user', 'session', 'instantly', 'kirtyled', 'timeout', 'error', 'per', 'attached', 'screen'] processed_text: ['erp', 'crm', 'instatnt', 'timeout', 'user', 'issue', 'user', 'session', 'instantly', 'kirtyled', 'timeout', 'error', 'per', 'attached', 'screen'] list_processed_text: [['erp'], ['crm'], ['instatnt'], ['timeout'], ['user'], ['issue'], ['user'], ['session'], ['instantly'], ['kirtyled'], ['timeout'], ['error'], ['per'], ['attached'], ['screen']] k: 4656 len: <class 'list'> Data: ['access', 'vpn', 'added', 'user', 'employee', 'group', 'ryafbthn', 'uacyltoe', 'hxgaycze', 'call', 'issue'] processed_text: ['access', 'vpn', 'added', 'user', 'employee', 'group', 'ryafbthn', 'uacyltoe', 'hxgaycze', 'call', 'issue'] list_processed_text: [['access'], ['vpn'], ['added'], ['user'], ['employee'], ['group'], ['ryafbthn'], ['uacyltoe'], ['hxgaycze'], ['call'], ['issue']] k: 4657 len: <class 'list'> Data: ['password', 'word-honor', 'hello', 'please', 'r', 'wothyehre', 'clear', 'password', 'r', 'window', 'erp', 'thank', 'best', 'regard'] processed_text: ['password', 'word-honor', 'hello', 'please', 'r', 'wothyehre', 'clear', 'password', 'r', 'window', 'erp', 'thank', 'best', 'regard'] list_processed_text: [['password'], ['word-honor'], ['hello'], ['please'], ['r'], ['wothyehre'], ['clear'], ['password'], ['r'], ['window'], ['erp'], ['thank'], ['best'], ['regard']] k: 4658 len: <class 'list'> Data: ['computer', 'work', 'computer', 'start', 'keybankrd', 'mouse', 'work', 'impossible', 'login', 'cable', 'connection', 'ok', 'keybankrd', 'mouse', 'light'] processed_text: ['computer', 'work', 'computer', 'start', 'keybankrd', 'mouse', 'work', 'impossible', 'login', 'cable', 'connection', 'ok', 'keybankrd', 'mouse', 'light'] list_processed_text: [['computer'], ['work'], ['computer'], ['start'], ['keybankrd'], ['mouse'], ['work'], ['impossible'], ['login'], ['cable'], ['connection'], ['ok'], ['keybankrd'], ['mouse'], ['light']] k: 4659 len: <class 'list'> Data: ['bobj', 'explorer', 'info', 'space', 'load', 'issue', 'email', 'sent', 'basis', 'dac', 'team', 'hi', 'team', 'basis', 'team', 'dac', 'please', 'investigate', 'bobj', 'explorer', 'service', 'running', 'showing', 'blank', 'screen', 'moment', 'indexed', 'information', 'space', 'help', 'please', 'assist', 'earliest', 'create', 'ticket', 'minute', 'update'] processed_text: ['bobj', 'explorer', 'info', 'space', 'load', 'issue', 'email', 'sent', 'basis', 'dac', 'team', 'hi', 'team', 'basis', 'team', 'dac', 'please', 'investigate', 'bobj', 'explorer', 'service', 'running', 'showing', 'blank', 'screen', 'moment', 'indexed', 'information', 'space', 'help', 'please', 'assist', 'earliest', 'create', 'ticket', 'minute', 'update'] list_processed_text: [['bobj'], ['explorer'], ['info'], ['space'], ['load'], ['issue'], ['email'], ['sent'], ['basis'], ['dac'], ['team'], ['hi'], ['team'], ['basis'], ['team'], ['dac'], ['please'], ['investigate'], ['bobj'], ['explorer'], ['service'], ['running'], ['showing'], ['blank'], ['screen'], ['moment'], ['indexed'], ['information'], ['space'], ['help'], ['please'], ['assist'], ['earliest'], ['create'], ['ticket'], ['minute'], ['update']] k: 4660 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 4661 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4662 len: <class 'list'> Data: ['erp', 'issue', 'batch', 'hello', 'erp', 'create', 'automatically', 'following', 'error', 'message'] processed_text: ['erp', 'issue', 'batch', 'hello', 'erp', 'create', 'automatically', 'following', 'error', 'message'] list_processed_text: [['erp'], ['issue'], ['batch'], ['hello'], ['erp'], ['create'], ['automatically'], ['following'], ['error'], ['message']] k: 4663 len: <class 'list'> Data: ['entering', 'proven', 'solution', 'p', 'page', 'cannot', 'foun', 'would', 'please', 'delete', 'solution', 'upload'] processed_text: ['entering', 'proven', 'solution', 'p', 'page', 'cannot', 'foun', 'would', 'please', 'delete', 'solution', 'upload'] list_processed_text: [['entering'], ['proven'], ['solution'], ['p'], ['page'], ['cannot'], ['foun'], ['would'], ['please'], ['delete'], ['solution'], ['upload']] k: 4664 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 4665 len: <class 'list'> Data: ['please', 'create', 'account', 'hello', 'please', 'create', 'account', 'reference', 'user', 'twdyzsfr', 'gjedmfvh', 'client', 'scedxqur', 'pocxqtrl'] processed_text: ['please', 'create', 'account', 'hello', 'please', 'create', 'account', 'reference', 'user', 'twdyzsfr', 'gjedmfvh', 'client', 'scedxqur', 'pocxqtrl'] list_processed_text: [['please'], ['create'], ['account'], ['hello'], ['please'], ['create'], ['account'], ['reference'], ['user'], ['twdyzsfr'], ['gjedmfvh'], ['client'], ['scedxqur'], ['pocxqtrl']] k: 4666 len: <class 'list'> Data: ['hzptilsw', 'wusdajqv', 'log', 'balancing', 'error', 'sid', 'sid', 'hzptilsw', 'wusdajqv', 'log', 'balancing', 'error', 'sid', 'sid'] processed_text: ['hzptilsw', 'wusdajqv', 'log', 'balancing', 'error', 'sid', 'sid', 'hzptilsw', 'wusdajqv', 'log', 'balancing', 'error', 'sid', 'sid'] list_processed_text: [['hzptilsw'], ['wusdajqv'], ['log'], ['balancing'], ['error'], ['sid'], ['sid'], ['hzptilsw'], ['wusdajqv'], ['log'], ['balancing'], ['error'], ['sid'], ['sid']] k: 4667 len: <class 'list'> Data: ['lhbsm', 'disk', 'free', 'warning', 'threshold', 'lhbsm', 'disk', 'free', 'warning', 'threshold'] processed_text: ['lhbsm', 'disk', 'free', 'warning', 'threshold', 'lhbsm', 'disk', 'free', 'warning', 'threshold'] list_processed_text: [['lhbsm'], ['disk'], ['free'], ['warning'], ['threshold'], ['lhbsm'], ['disk'], ['free'], ['warning'], ['threshold']] k: 4668 len: <class 'list'> Data: ['please', 'set', 'write', 'read', 'authorization', 'staebefertigung', 'folder', 'good', 'morning', 'please', 'set', 'write', 'read', 'authorization', 'r', 'folder', 'staebefertigung', 'thank', 'friendly', 'gr', 'child'] processed_text: ['please', 'set', 'write', 'read', 'authorization', 'staebefertigung', 'folder', 'good', 'morning', 'please', 'set', 'write', 'read', 'authorization', 'r', 'folder', 'staebefertigung', 'thank', 'friendly', 'gr', 'child'] list_processed_text: [['please'], ['set'], ['write'], ['read'], ['authorization'], ['staebefertigung'], ['folder'], ['good'], ['morning'], ['please'], ['set'], ['write'], ['read'], ['authorization'], ['r'], ['folder'], ['staebefertigung'], ['thank'], ['friendly'], ['gr'], ['child']] k: 4669 len: <class 'list'> Data: ['revert', 'change', 'done', 'chg', 'revert', 'change', 'done', 'chg', 'please', 'find', 'attachment', 'issue', 'user', 'facing'] processed_text: ['revert', 'change', 'done', 'chg', 'revert', 'change', 'done', 'chg', 'please', 'find', 'attachment', 'issue', 'user', 'facing'] list_processed_text: [['revert'], ['change'], ['done'], ['chg'], ['revert'], ['change'], ['done'], ['chg'], ['please'], ['find'], ['attachment'], ['issue'], ['user'], ['facing']] k: 4670 len: <class 'list'> Data: ['search', 'explorer', 'analytics', 'issue', 'search', 'explorer', 'analytics', 'issue', 'blank', 'bobj', 'login', 'search', 'analytics', 'es', 'search', 'list', 'available', 'phone'] processed_text: ['search', 'explorer', 'analytics', 'issue', 'search', 'explorer', 'analytics', 'issue', 'blank', 'bobj', 'login', 'search', 'analytics', 'es', 'search', 'list', 'available', 'phone'] list_processed_text: [['search'], ['explorer'], ['analytics'], ['issue'], ['search'], ['explorer'], ['analytics'], ['issue'], ['blank'], ['bobj'], ['login'], ['search'], ['analytics'], ['es'], ['search'], ['list'], ['available'], ['phone']] k: 4671 len: <class 'list'> Data: ['te', 'application', 'run', 'good', 'morning', 'double', 'click', 'te', 'icon', 'desktop', 'start', 'initial', 'loading', 'page', 'second', 'application', 'close', 'programdnty', 'run', 'many'] processed_text: ['te', 'application', 'run', 'good', 'morning', 'double', 'click', 'te', 'icon', 'desktop', 'start', 'initial', 'loading', 'page', 'second', 'application', 'close', 'programdnty', 'run', 'many'] list_processed_text: [['te'], ['application'], ['run'], ['good'], ['morning'], ['double'], ['click'], ['te'], ['icon'], ['desktop'], ['start'], ['initial'], ['loading'], ['page'], ['second'], ['application'], ['close'], ['programdnty'], ['run'], ['many']] k: 4672 len: <class 'list'> Data: ['bobj', 'dear', 'someone', 'please', 'check', 'fix', 'problem', 'sale', 'rep', 'reported', 'report', 'available', 'bobj', 'checked', 'also', 'get', 'error', 'message'] processed_text: ['bobj', 'dear', 'someone', 'please', 'check', 'fix', 'problem', 'sale', 'rep', 'reported', 'report', 'available', 'bobj', 'checked', 'also', 'get', 'error', 'message'] list_processed_text: [['bobj'], ['dear'], ['someone'], ['please'], ['check'], ['fix'], ['problem'], ['sale'], ['rep'], ['reported'], ['report'], ['available'], ['bobj'], ['checked'], ['also'], ['get'], ['error'], ['message']] k: 4673 len: <class 'list'> Data: ['window', 'account', 'locked', 'good', 'day', 'please', 'unlock', 'user', 'window', 'account'] processed_text: ['window', 'account', 'locked', 'good', 'day', 'please', 'unlock', 'user', 'window', 'account'] list_processed_text: [['window'], ['account'], ['locked'], ['good'], ['day'], ['please'], ['unlock'], ['user'], ['window'], ['account']] k: 4674 len: <class 'list'> Data: ['local', 'availability', 'pricing', 'information', 'missing', 'various', 'obsolete', 'product', 'see', 'screenshot', 'local', 'availability', 'pricing', 'information', 'missing', 'various', 'obsolete', 'product', 'see', 'screenshot'] processed_text: ['local', 'availability', 'pricing', 'information', 'missing', 'various', 'obsolete', 'product', 'see', 'screenshot', 'local', 'availability', 'pricing', 'information', 'missing', 'various', 'obsolete', 'product', 'see', 'screenshot'] list_processed_text: [['local'], ['availability'], ['pricing'], ['information'], ['missing'], ['various'], ['obsolete'], ['product'], ['see'], ['screenshot'], ['local'], ['availability'], ['pricing'], ['information'], ['missing'], ['various'], ['obsolete'], ['product'], ['see'], ['screenshot']] k: 4675 len: <class 'list'> Data: ['unable', 'turn', 'computer', 'unable', 'turn', 'computer'] processed_text: ['unable', 'turn', 'computer', 'unable', 'turn', 'computer'] list_processed_text: [['unable'], ['turn'], ['computer'], ['unable'], ['turn'], ['computer']] k: 4676 len: <class 'list'> Data: ['po', 'display', 'vendor', 'proper', 'po', 'display', 'vendor', 'showing', 'pending', 'po', 'selection', 'paramdntyeter', 'selected', 'showing', 'pending', 'po', 'selection', 'paramdntyeter', 'kept', 'blank', 'showing', 'complete', 'po', 'done', 'vendor'] processed_text: ['po', 'display', 'vendor', 'proper', 'po', 'display', 'vendor', 'showing', 'pending', 'po', 'selection', 'paramdntyeter', 'selected', 'showing', 'pending', 'po', 'selection', 'paramdntyeter', 'kept', 'blank', 'showing', 'complete', 'po', 'done', 'vendor'] list_processed_text: [['po'], ['display'], ['vendor'], ['proper'], ['po'], ['display'], ['vendor'], ['showing'], ['pending'], ['po'], ['selection'], ['paramdntyeter'], ['selected'], ['showing'], ['pending'], ['po'], ['selection'], ['paramdntyeter'], ['kept'], ['blank'], ['showing'], ['complete'], ['po'], ['done'], ['vendor']] k: 4677 len: <class 'list'> Data: ['private', 'address', 'field', 'enabled', 'employee', 'master', 'crm', 'ui', 'disable', 'private', 'address', 'field', 'new', 'edit', 'button', 'employee', 'master', 'crm', 'ui'] processed_text: ['private', 'address', 'field', 'enabled', 'employee', 'master', 'crm', 'ui', 'disable', 'private', 'address', 'field', 'new', 'edit', 'button', 'employee', 'master', 'crm', 'ui'] list_processed_text: [['private'], ['address'], ['field'], ['enabled'], ['employee'], ['master'], ['crm'], ['ui'], ['disable'], ['private'], ['address'], ['field'], ['new'], ['edit'], ['button'], ['employee'], ['master'], ['crm'], ['ui']] k: 4678 len: <class 'list'> Data: ['hostname', 'responding', 'since', 'et', 'hostname', 'responding', 'since', 'et'] processed_text: ['hostname', 'responding', 'since', 'et', 'hostname', 'responding', 'since', 'et'] list_processed_text: [['hostname'], ['responding'], ['since'], ['et'], ['hostname'], ['responding'], ['since'], ['et']] k: 4679 len: <class 'list'> Data: ['please', 'add', 'new', 'user', 'company', 'ru', 'nm', 'nghyuakm', 'please', 'add', 'new', 'user', 'company', 'ru', 'nm', 'nghyuakm', 'install', 'phone', 'headset', 'well'] processed_text: ['please', 'add', 'new', 'user', 'company', 'ru', 'nm', 'nghyuakm', 'please', 'add', 'new', 'user', 'company', 'ru', 'nm', 'nghyuakm', 'install', 'phone', 'headset', 'well'] list_processed_text: [['please'], ['add'], ['new'], ['user'], ['company'], ['ru'], ['nm'], ['nghyuakm'], ['please'], ['add'], ['new'], ['user'], ['company'], ['ru'], ['nm'], ['nghyuakm'], ['install'], ['phone'], ['headset'], ['well']] k: 4680 len: <class 'list'> Data: ['aqzcisjy', 'raflghneib', 'account', 'disabled', 'aqzcisjy', 'raflghneib', 'account', 'disabled'] processed_text: ['aqzcisjy', 'raflghneib', 'account', 'disabled', 'aqzcisjy', 'raflghneib', 'account', 'disabled'] list_processed_text: [['aqzcisjy'], ['raflghneib'], ['account'], ['disabled'], ['aqzcisjy'], ['raflghneib'], ['account'], ['disabled']] k: 4681 len: <class 'list'> Data: ['password', 'reset', 'collaboration', 'platform', 'problem', 'hello', 'changed', 'password', 'morning', 'password', 'manager', 'problem', 'synching', 'collaboration', 'platform', 'collaboration', 'platform', 'keep', 'asking', 'enter', 'new', 'password', 'rest', 'including', 'office', 'workstation', 'mobile', 'working', 'ok', 'new', 'password', 'collaboration', 'platform', 'problem', 'suggestion', 'many'] processed_text: ['password', 'reset', 'collaboration', 'platform', 'problem', 'hello', 'changed', 'password', 'morning', 'password', 'manager', 'problem', 'synching', 'collaboration', 'platform', 'collaboration', 'platform', 'keep', 'asking', 'enter', 'new', 'password', 'rest', 'including', 'office', 'workstation', 'mobile', 'working', 'ok', 'new', 'password', 'collaboration', 'platform', 'problem', 'suggestion', 'many'] list_processed_text: [['password'], ['reset'], ['collaboration'], ['platform'], ['problem'], ['hello'], ['changed'], ['password'], ['morning'], ['password'], ['manager'], ['problem'], ['synching'], ['collaboration'], ['platform'], ['collaboration'], ['platform'], ['keep'], ['asking'], ['enter'], ['new'], ['password'], ['rest'], ['including'], ['office'], ['workstation'], ['mobile'], ['working'], ['ok'], ['new'], ['password'], ['collaboration'], ['platform'], ['problem'], ['suggestion'], ['many']] k: 4682 len: <class 'list'> Data: ['unable', 'take', 'print', 'scan', 'new', 'laptop', 'dear', 'sir', 'received', 'new', 'laptop', 'dell', 'latitude', 'unable', 'take', 'printout', 'scan', 'office', 'printer', 'kindly', 'help', 'resolving', 'issue', 'best'] processed_text: ['unable', 'take', 'print', 'scan', 'new', 'laptop', 'dear', 'sir', 'received', 'new', 'laptop', 'dell', 'latitude', 'unable', 'take', 'printout', 'scan', 'office', 'printer', 'kindly', 'help', 'resolving', 'issue', 'best'] list_processed_text: [['unable'], ['take'], ['print'], ['scan'], ['new'], ['laptop'], ['dear'], ['sir'], ['received'], ['new'], ['laptop'], ['dell'], ['latitude'], ['unable'], ['take'], ['printout'], ['scan'], ['office'], ['printer'], ['kindly'], ['help'], ['resolving'], ['issue'], ['best']] k: 4683 len: <class 'list'> Data: ['help', 'reset', 'erp', 'sid', 'bw', 'production', 'account', 'password', 'xighjacj', 'erp', 'sid', 'bw', 'production', 'account', 'password', 'changed', 'failed', 'password', 'management', 'tool', 'system', 'erp', 'bex', 'login', 'user', 'id', 'xighjacj', 'hi', 'please', 'help', 'issue'] processed_text: ['help', 'reset', 'erp', 'sid', 'bw', 'production', 'account', 'password', 'xighjacj', 'erp', 'sid', 'bw', 'production', 'account', 'password', 'changed', 'failed', 'password', 'management', 'tool', 'system', 'erp', 'bex', 'login', 'user', 'id', 'xighjacj', 'hi', 'please', 'help', 'issue'] list_processed_text: [['help'], ['reset'], ['erp'], ['sid'], ['bw'], ['production'], ['account'], ['password'], ['xighjacj'], ['erp'], ['sid'], ['bw'], ['production'], ['account'], ['password'], ['changed'], ['failed'], ['password'], ['management'], ['tool'], ['system'], ['erp'], ['bex'], ['login'], ['user'], ['id'], ['xighjacj'], ['hi'], ['please'], ['help'], ['issue']] k: 4684 len: <class 'list'> Data: ['error', 'druing', 'password', 'change', 'hi', 'got', 'message', 'password', 'change', 'kindly', 'help', 'cid', 'bb', 'e', 'eeec'] processed_text: ['error', 'druing', 'password', 'change', 'hi', 'got', 'message', 'password', 'change', 'kindly', 'help', 'cid', 'bb', 'e', 'eeec'] list_processed_text: [['error'], ['druing'], ['password'], ['change'], ['hi'], ['got'], ['message'], ['password'], ['change'], ['kindly'], ['help'], ['cid'], ['bb'], ['e'], ['eeec']] k: 4685 len: <class 'list'> Data: ['ooo', 'till', 'problem', 'engineering', 'tool', 'offline', 'version', 'starting', 'win', 'bit', 'dell', 'sincerely'] processed_text: ['ooo', 'till', 'problem', 'engineering', 'tool', 'offline', 'version', 'starting', 'win', 'bit', 'dell', 'sincerely'] list_processed_text: [['ooo'], ['till'], ['problem'], ['engineering'], ['tool'], ['offline'], ['version'], ['starting'], ['win'], ['bit'], ['dell'], ['sincerely']] k: 4686 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'error', 'vm', 'hostname', 'ref', 'vm', 'disconnected', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'error', 'vm', 'hostname', 'ref', 'vm', 'disconnected', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['error'], ['vm'], ['hostname'], ['ref'], ['vm'], ['disconnected'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4687 len: <class 'list'> Data: ['shift', 'leader', 'gabryltk', 'byczkowski', "stankewitz's", 'computer', 'defective', 'hello', 'computer', 'shift', 'leader', 'gabryltk', 'byczkowski', 'stankewitz', 'defective', 'please', 'come'] processed_text: ['shift', 'leader', 'gabryltk', 'byczkowski', "stankewitz's", 'computer', 'defective', 'hello', 'computer', 'shift', 'leader', 'gabryltk', 'byczkowski', 'stankewitz', 'defective', 'please', 'come'] list_processed_text: [['shift'], ['leader'], ['gabryltk'], ['byczkowski'], ["stankewitz's"], ['computer'], ['defective'], ['hello'], ['computer'], ['shift'], ['leader'], ['gabryltk'], ['byczkowski'], ['stankewitz'], ['defective'], ['please'], ['come']] k: 4688 len: <class 'list'> Data: ['computer', 'r', 'measuring', 'device', 'steli', 'work', 'zedlet', 'computer', 'r', 'measuring', 'device', 'steli', 'work', 'zedlet'] processed_text: ['computer', 'r', 'measuring', 'device', 'steli', 'work', 'zedlet', 'computer', 'r', 'measuring', 'device', 'steli', 'work', 'zedlet'] list_processed_text: [['computer'], ['r'], ['measuring'], ['device'], ['steli'], ['work'], ['zedlet'], ['computer'], ['r'], ['measuring'], ['device'], ['steli'], ['work'], ['zedlet']] k: 4689 len: <class 'list'> Data: ['problem', 'accespoint', 'conferenzraum', 'fande', 'niptbwdq', 'csenjruz', 'problem', 'accespoint', 'conferenzraum', 'fande', 'niptbwdq', 'csenjruz'] processed_text: ['problem', 'accespoint', 'conferenzraum', 'fande', 'niptbwdq', 'csenjruz', 'problem', 'accespoint', 'conferenzraum', 'fande', 'niptbwdq', 'csenjruz'] list_processed_text: [['problem'], ['accespoint'], ['conferenzraum'], ['fande'], ['niptbwdq'], ['csenjruz'], ['problem'], ['accespoint'], ['conferenzraum'], ['fande'], ['niptbwdq'], ['csenjruz']] k: 4690 len: <class 'list'> Data: ['problem', 'opening', 'wsb', 'exe', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'opening', 'wsb', 'exe', 'wu', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['problem', 'opening', 'wsb', 'exe', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'opening', 'wsb', 'exe', 'wu', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['problem'], ['opening'], ['wsb'], ['exe'], ['wu'], ['pfjwinbg'], ['ljtzbdqg'], ['problem'], ['opening'], ['wsb'], ['exe'], ['wu'], ['pfjwinbg'], ['ljtzbdqg']] k: 4691 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4692 len: <class 'list'> Data: ['data', 'logger', 'opus', 'thip', 'cannot', 'establish', 'connection', 'data', 'logger', 'opus', 'thip', 'required', 'monitor', 'room', 'temperature', 'external', 'maintenance', 'network', 'connection', 'pm', 'pc'] processed_text: ['data', 'logger', 'opus', 'thip', 'cannot', 'establish', 'connection', 'data', 'logger', 'opus', 'thip', 'required', 'monitor', 'room', 'temperature', 'external', 'maintenance', 'network', 'connection', 'pm', 'pc'] list_processed_text: [['data'], ['logger'], ['opus'], ['thip'], ['cannot'], ['establish'], ['connection'], ['data'], ['logger'], ['opus'], ['thip'], ['required'], ['monitor'], ['room'], ['temperature'], ['external'], ['maintenance'], ['network'], ['connection'], ['pm'], ['pc']] k: 4693 len: <class 'list'> Data: ['remote', 'vpn', 'issue', 'cannot', 'connect', 'remote', 'vpn', 'using', 'either', 'link', 'probably', 'something', 'emea', 'upgrade', 'activity', 'took', 'place', 'please', 'fix', 'problem', 'connect', 'vpn'] processed_text: ['remote', 'vpn', 'issue', 'cannot', 'connect', 'remote', 'vpn', 'using', 'either', 'link', 'probably', 'something', 'emea', 'upgrade', 'activity', 'took', 'place', 'please', 'fix', 'problem', 'connect', 'vpn'] list_processed_text: [['remote'], ['vpn'], ['issue'], ['cannot'], ['connect'], ['remote'], ['vpn'], ['using'], ['either'], ['link'], ['probably'], ['something'], ['emea'], ['upgrade'], ['activity'], ['took'], ['place'], ['please'], ['fix'], ['problem'], ['connect'], ['vpn']] k: 4694 len: <class 'list'> Data: ['requirement', 'internet', 'access', 'machine', 'pc', 'eorjylzm', 'vrkofesj', 'pu', 'machine', 'detail', 'ip', 'address', 'subnet', 'mask', 'physical', 'address', 'host', 'name', 'mc', 'service', 'engg', 'machine', 'supplier', 'switzerland', 'u', 'training', 'programdntyme', 'need', 'internet', 'access', 'machine', 'week', 'request', 'immediate', 'support', 'kuhgtyjvelu', 'manager', 'reliability', 'engineering'] processed_text: ['requirement', 'internet', 'access', 'machine', 'pc', 'eorjylzm', 'vrkofesj', 'pu', 'machine', 'detail', 'ip', 'address', 'subnet', 'mask', 'physical', 'address', 'host', 'name', 'mc', 'service', 'engg', 'machine', 'supplier', 'switzerland', 'u', 'training', 'programdntyme', 'need', 'internet', 'access', 'machine', 'week', 'request', 'immediate', 'support', 'kuhgtyjvelu', 'manager', 'reliability', 'engineering'] list_processed_text: [['requirement'], ['internet'], ['access'], ['machine'], ['pc'], ['eorjylzm'], ['vrkofesj'], ['pu'], ['machine'], ['detail'], ['ip'], ['address'], ['subnet'], ['mask'], ['physical'], ['address'], ['host'], ['name'], ['mc'], ['service'], ['engg'], ['machine'], ['supplier'], ['switzerland'], ['u'], ['training'], ['programdntyme'], ['need'], ['internet'], ['access'], ['machine'], ['week'], ['request'], ['immediate'], ['support'], ['kuhgtyjvelu'], ['manager'], ['reliability'], ['engineering']] k: 4695 len: <class 'list'> Data: ['create', 'inventory', 'list', 'forwarded', 'request', 'rqfhiong', 'zkwfqagb', 'dl', 'copying', 'tomoe', 'email', 'zsqabokr', 'xbtsaodr', 'pm', 'nwfodmhc', 'exurcwkm', 'create', 'inventory', 'list', 'help', 'desk', 'quantity', 'mm', 'want', 'change', 'zero', 'please', 'find', 'attached', 'document', 'problem', 'inventory', 'list', 'cannot', 'show', 'mb', 'inventory', 'list', 'cannot', 'create', 'mi', 'best'] processed_text: ['create', 'inventory', 'list', 'forwarded', 'request', 'rqfhiong', 'zkwfqagb', 'dl', 'copying', 'tomoe', 'email', 'zsqabokr', 'xbtsaodr', 'pm', 'nwfodmhc', 'exurcwkm', 'create', 'inventory', 'list', 'help', 'desk', 'quantity', 'mm', 'want', 'change', 'zero', 'please', 'find', 'attached', 'document', 'problem', 'inventory', 'list', 'cannot', 'show', 'mb', 'inventory', 'list', 'cannot', 'create', 'mi', 'best'] list_processed_text: [['create'], ['inventory'], ['list'], ['forwarded'], ['request'], ['rqfhiong'], ['zkwfqagb'], ['dl'], ['copying'], ['tomoe'], ['email'], ['zsqabokr'], ['xbtsaodr'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['create'], ['inventory'], ['list'], ['help'], ['desk'], ['quantity'], ['mm'], ['want'], ['change'], ['zero'], ['please'], ['find'], ['attached'], ['document'], ['problem'], ['inventory'], ['list'], ['cannot'], ['show'], ['mb'], ['inventory'], ['list'], ['cannot'], ['create'], ['mi'], ['best']] k: 4696 len: <class 'list'> Data: ['rma', 'dear', 'team', 'need', 'cancel', 'sto', 'pls', 'help', 'reverse', 'inwarehouse', 'tool', 'markhtyed', 'red', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['rma', 'dear', 'team', 'need', 'cancel', 'sto', 'pls', 'help', 'reverse', 'inwarehouse', 'tool', 'markhtyed', 'red', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['rma'], ['dear'], ['team'], ['need'], ['cancel'], ['sto'], ['pls'], ['help'], ['reverse'], ['inwarehouse'], ['tool'], ['markhtyed'], ['red'], ['thx'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 4697 len: <class 'list'> Data: ['account', 'aqzcisjy', 'raflghneib', 'vvdghtteij', 'locked', 'please', 'unlock', 'account', 'aqzcisjy', 'raflghneib', 'vvdghtteij', 'locked', 'please', 'unlock'] processed_text: ['account', 'aqzcisjy', 'raflghneib', 'vvdghtteij', 'locked', 'please', 'unlock', 'account', 'aqzcisjy', 'raflghneib', 'vvdghtteij', 'locked', 'please', 'unlock'] list_processed_text: [['account'], ['aqzcisjy'], ['raflghneib'], ['vvdghtteij'], ['locked'], ['please'], ['unlock'], ['account'], ['aqzcisjy'], ['raflghneib'], ['vvdghtteij'], ['locked'], ['please'], ['unlock']] k: 4698 len: <class 'list'> Data: ['password', 'expires', 'day', 'dear', 'password', 'run', 'day', 'travelling', 'chance', 'come', 'company', 'network', 'please', 'extend', 'current', 'password'] processed_text: ['password', 'expires', 'day', 'dear', 'password', 'run', 'day', 'travelling', 'chance', 'come', 'company', 'network', 'please', 'extend', 'current', 'password'] list_processed_text: [['password'], ['expires'], ['day'], ['dear'], ['password'], ['run'], ['day'], ['travelling'], ['chance'], ['come'], ['company'], ['network'], ['please'], ['extend'], ['current'], ['password']] k: 4699 len: <class 'list'> Data: ['unable', 'set', 'skype', 'meeting', 'outlook', 'unable', 'set', 'skype', 'meeting', 'outlook'] processed_text: ['unable', 'set', 'skype', 'meeting', 'outlook', 'unable', 'set', 'skype', 'meeting', 'outlook'] list_processed_text: [['unable'], ['set'], ['skype'], ['meeting'], ['outlook'], ['unable'], ['set'], ['skype'], ['meeting'], ['outlook']] k: 4700 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4701 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4702 len: <class 'list'> Data: ['price', 'customer', 'pruchase', 'order', 'customer', 'group', 'customer', 'defigned', 'cn', 'told', 'price', 'product', 'mm', 'maitained', 'system', 'order', 'price', 'please', 'check', 'let', 'know', 'wrong', 'system', 'customer', 'urgnet', 'need', 'order', 'please', 'solve', 'problem', 'u', 'aerp', 'please', 'find', 'detail', 'attached'] processed_text: ['price', 'customer', 'pruchase', 'order', 'customer', 'group', 'customer', 'defigned', 'cn', 'told', 'price', 'product', 'mm', 'maitained', 'system', 'order', 'price', 'please', 'check', 'let', 'know', 'wrong', 'system', 'customer', 'urgnet', 'need', 'order', 'please', 'solve', 'problem', 'u', 'aerp', 'please', 'find', 'detail', 'attached'] list_processed_text: [['price'], ['customer'], ['pruchase'], ['order'], ['customer'], ['group'], ['customer'], ['defigned'], ['cn'], ['told'], ['price'], ['product'], ['mm'], ['maitained'], ['system'], ['order'], ['price'], ['please'], ['check'], ['let'], ['know'], ['wrong'], ['system'], ['customer'], ['urgnet'], ['need'], ['order'], ['please'], ['solve'], ['problem'], ['u'], ['aerp'], ['please'], ['find'], ['detail'], ['attached']] k: 4703 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'apul', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'user', 'name', 'xcirqlup', 'zopbiufn', 'location', 'asiapac', 'apac', 'apacpuchn', 'computer', 'apul', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xaad', 'ack', 'xce', 'win', 'xb', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'domain', 'newflv', 'sohu', 'ccgslb', 'net', 'ex', 'http', 'hostname', 'sso', 'anbtr', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'b', 'h', 'f', 'cde', 'ac', 'ebc', 'ad', 'p', 'ce', 'h', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'fe', 'mon', 'sep', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'fe', 'xt', 'html', 'connect', 'f', 'ea', 'cf', 'da', 'ion', 'close', 'set', 'f', 'fb', 'cookie', 'anbtr', 'acbccb', 'b', 'efb', 'f', 'sid', 'de', 'ee', 'domain', 'ccgslb', 'da', 'cf', 'fe', 'et', 'location', 'ht', 'af', 'fe', 'c', 'tp', 'xsso', 'newflv', 'f', 'c', 'ee', 'sohu', 'ccgslb', 'net', 'aacbcc', 'befb', 'ad', 'af', 'go', 'fe', 'c', 'f', 'sso', 'newflv', 'sohu', 'ee', 'ccgslb', 'net', 'aa', 'cbccb', 'efb', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'malware', 'infection', 'traffic', 'sinkhole', 'domain', 'apul', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'user', 'name', 'xcirqlup', 'zopbiufn', 'location', 'asiapac', 'apac', 'apacpuchn', 'computer', 'apul', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'lisbon', 'prt', 'destination', 'ip', 'destination', 'hostname', 'apul', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'status', 'code', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cookie', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xaad', 'ack', 'xce', 'win', 'xb', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'domain', 'newflv', 'sohu', 'ccgslb', 'net', 'ex', 'http', 'hostname', 'sso', 'anbtr', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'b', 'h', 'f', 'cde', 'ac', 'ebc', 'ad', 'p', 'ce', 'h', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'fe', 'mon', 'sep', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'fe', 'xt', 'html', 'connect', 'f', 'ea', 'cf', 'da', 'ion', 'close', 'set', 'f', 'fb', 'cookie', 'anbtr', 'acbccb', 'b', 'efb', 'f', 'sid', 'de', 'ee', 'domain', 'ccgslb', 'da', 'cf', 'fe', 'et', 'location', 'ht', 'af', 'fe', 'c', 'tp', 'xsso', 'newflv', 'f', 'c', 'ee', 'sohu', 'ccgslb', 'net', 'aacbcc', 'befb', 'ad', 'af', 'go', 'fe', 'c', 'f', 'sso', 'newflv', 'sohu', 'ee', 'ccgslb', 'net', 'aa', 'cbccb', 'efb', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['infection'], ['traffic'], ['sinkhole'], ['domain'], ['apul'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['apul'], ['destination'], ['port'], ['user'], ['name'], ['xcirqlup'], ['zopbiufn'], ['location'], ['asiapac'], ['apac'], ['apacpuchn'], ['computer'], ['apul'], ['sm'], ['status'], ['updated'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['lisbon'], ['prt'], ['destination'], ['ip'], ['destination'], ['hostname'], ['apul'], ['destination'], ['port'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['status'], ['code'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cookie'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xaad'], ['ack'], ['xce'], ['win'], ['xb'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['domain'], ['newflv'], ['sohu'], ['ccgslb'], ['net'], ['ex'], ['http'], ['hostname'], ['sso'], ['anbtr'], ['com'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['b'], ['h'], ['f'], ['cde'], ['ac'], ['ebc'], ['ad'], ['p'], ['ce'], ['h'], ['http'], ['e'], ['f'], ['moved'], ['f'], ['da'], ['emporarily'], ['serv'], ['e'], ['er'], ['nginx'], ['date'], ['fe'], ['mon'], ['sep'], ['da'], ['gmt'], ['e'], ['content'], ['type'], ['te'], ['f'], ['cd'], ['fe'], ['xt'], ['html'], ['connect'], ['f'], ['ea'], ['cf'], ['da'], ['ion'], ['close'], ['set'], ['f'], ['fb'], ['cookie'], ['anbtr'], ['acbccb'], ['b'], ['efb'], ['f'], ['sid'], ['de'], ['ee'], ['domain'], ['ccgslb'], ['da'], ['cf'], ['fe'], ['et'], ['location'], ['ht'], ['af'], ['fe'], ['c'], ['tp'], ['xsso'], ['newflv'], ['f'], ['c'], ['ee'], ['sohu'], ['ccgslb'], ['net'], ['aacbcc'], ['befb'], ['ad'], ['af'], ['go'], ['fe'], ['c'], ['f'], ['sso'], ['newflv'], ['sohu'], ['ee'], ['ccgslb'], ['net'], ['aa'], ['cbccb'], ['efb'], ['pcap'], ['hex'], ['e']] k: 4704 len: <class 'list'> Data: ['apac', 'apac', 'china', 'company', 'ap', 'chn', 'china', 'access', 'vmsw', 'multiple', 'server', 'went', 'et', 'job', 'name'] processed_text: ['apac', 'apac', 'china', 'company', 'ap', 'chn', 'china', 'access', 'vmsw', 'multiple', 'server', 'went', 'et', 'job', 'name'] list_processed_text: [['apac'], ['apac'], ['china'], ['company'], ['ap'], ['chn'], ['china'], ['access'], ['vmsw'], ['multiple'], ['server'], ['went'], ['et'], ['job'], ['name']] k: 4705 len: <class 'list'> Data: ['unable', 'open', 'jpg', 'png', 'file', 'hello', 'unable', 'open', 'jpg', 'png', 'file', 'pls', 'needful', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] processed_text: ['unable', 'open', 'jpg', 'png', 'file', 'hello', 'unable', 'open', 'jpg', 'png', 'file', 'pls', 'needful', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] list_processed_text: [['unable'], ['open'], ['jpg'], ['png'], ['file'], ['hello'], ['unable'], ['open'], ['jpg'], ['png'], ['file'], ['pls'], ['needful'], ['vivthyek'], ['byuihand'], ['asst'], ['manager'], ['sale'], ['company'], ['india'], ['ltd'], ['india']] k: 4706 len: <class 'list'> Data: ['recall', 'send', 'message', 'outlook', 'recall', 'send', 'message', 'outlook'] processed_text: ['recall', 'send', 'message', 'outlook', 'recall', 'send', 'message', 'outlook'] list_processed_text: [['recall'], ['send'], ['message'], ['outlook'], ['recall'], ['send'], ['message'], ['outlook']] k: 4707 len: <class 'list'> Data: ['reset', 'password', 'mobaidfx', 'gviwlsrm', 'erp', 'production', 'hcm', 'reset', 'password'] processed_text: ['reset', 'password', 'mobaidfx', 'gviwlsrm', 'erp', 'production', 'hcm', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['mobaidfx'], ['gviwlsrm'], ['erp'], ['production'], ['hcm'], ['reset'], ['password']] k: 4708 len: <class 'list'> Data: ['hand', 'scanner', 'ckmeldeterminal', 'defective', 'hand', 'scanner', 'ckmeldeterminal', 'defective', 'kln'] processed_text: ['hand', 'scanner', 'ckmeldeterminal', 'defective', 'hand', 'scanner', 'ckmeldeterminal', 'defective', 'kln'] list_processed_text: [['hand'], ['scanner'], ['ckmeldeterminal'], ['defective'], ['hand'], ['scanner'], ['ckmeldeterminal'], ['defective'], ['kln']] k: 4709 len: <class 'list'> Data: ['netweaver', 'folgender', 'fehler', 'microsoft', 'net', 'framdntyework', 'installed', 'please', 'contact', 'administrator'] processed_text: ['netweaver', 'folgender', 'fehler', 'microsoft', 'net', 'framdntyework', 'installed', 'please', 'contact', 'administrator'] list_processed_text: [['netweaver'], ['folgender'], ['fehler'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['please'], ['contact'], ['administrator']] k: 4710 len: <class 'list'> Data: ['company', 'engineering', 'tool', 'access', 'hello', 'please', 'help', 'access', 'company', 'engineering', 'tool', 'tool', 'data', 'system', 'crm', 'company', 'engineering', 'tool', 'asking', 'email', 'password', 'open', 'tried', 'email', 'password', 'showing', 'incorrect', 'id', 'password', 'please', 'needful', 'thanking', 'ramdntygy'] processed_text: ['company', 'engineering', 'tool', 'access', 'hello', 'please', 'help', 'access', 'company', 'engineering', 'tool', 'tool', 'data', 'system', 'crm', 'company', 'engineering', 'tool', 'asking', 'email', 'password', 'open', 'tried', 'email', 'password', 'showing', 'incorrect', 'id', 'password', 'please', 'needful', 'thanking', 'ramdntygy'] list_processed_text: [['company'], ['engineering'], ['tool'], ['access'], ['hello'], ['please'], ['help'], ['access'], ['company'], ['engineering'], ['tool'], ['tool'], ['data'], ['system'], ['crm'], ['company'], ['engineering'], ['tool'], ['asking'], ['email'], ['password'], ['open'], ['tried'], ['email'], ['password'], ['showing'], ['incorrect'], ['id'], ['password'], ['please'], ['needful'], ['thanking'], ['ramdntygy']] k: 4711 len: <class 'list'> Data: ['unable', 'connect', 'engineering', 'tool', 'unable', 'connect', 'engineering', 'tool'] processed_text: ['unable', 'connect', 'engineering', 'tool', 'unable', 'connect', 'engineering', 'tool'] list_processed_text: [['unable'], ['connect'], ['engineering'], ['tool'], ['unable'], ['connect'], ['engineering'], ['tool']] k: 4712 len: <class 'list'> Data: ['log', 'vpn', 'name', 'gwptzvxm', 'rhozsfty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'log', 'vpn'] processed_text: ['log', 'vpn', 'name', 'gwptzvxm', 'rhozsfty', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'log', 'vpn'] list_processed_text: [['log'], ['vpn'], ['name'], ['gwptzvxm'], ['rhozsfty'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['log'], ['vpn']] k: 4713 len: <class 'list'> Data: ['sorahdyggs', 'ijyuvind', 'sohytganvi', 'system', 'locked', 'able', 'log', 'name', 'pradtheyp', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'sorahdyggs', 'ijyuvind', 'sohytganvi', 'system', 'locked', 'able', 'log'] processed_text: ['sorahdyggs', 'ijyuvind', 'sohytganvi', 'system', 'locked', 'able', 'log', 'name', 'pradtheyp', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'sorahdyggs', 'ijyuvind', 'sohytganvi', 'system', 'locked', 'able', 'log'] list_processed_text: [['sorahdyggs'], ['ijyuvind'], ['sohytganvi'], ['system'], ['locked'], ['able'], ['log'], ['name'], ['pradtheyp'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['sorahdyggs'], ['ijyuvind'], ['sohytganvi'], ['system'], ['locked'], ['able'], ['log']] k: 4714 len: <class 'list'> Data: ['generated', 'dear', 'generated', 'dn', 'would', 'pls', 'help', 'check'] processed_text: ['generated', 'dear', 'generated', 'dn', 'would', 'pls', 'help', 'check'] list_processed_text: [['generated'], ['dear'], ['generated'], ['dn'], ['would'], ['pls'], ['help'], ['check']] k: 4715 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4716 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 4717 len: <class 'list'> Data: ['retrieving', 'data', 'old', 'new', 'laptop', 'hello', 'forgot', 'password', 'old', 'laptop', 'submit', 'india', 'office', 'want', 'transfer', 'data', 'especially', 'engineering', 'tool', 'could', 'please', 'help', 'resolving', 'issue'] processed_text: ['retrieving', 'data', 'old', 'new', 'laptop', 'hello', 'forgot', 'password', 'old', 'laptop', 'submit', 'india', 'office', 'want', 'transfer', 'data', 'especially', 'engineering', 'tool', 'could', 'please', 'help', 'resolving', 'issue'] list_processed_text: [['retrieving'], ['data'], ['old'], ['new'], ['laptop'], ['hello'], ['forgot'], ['password'], ['old'], ['laptop'], ['submit'], ['india'], ['office'], ['want'], ['transfer'], ['data'], ['especially'], ['engineering'], ['tool'], ['could'], ['please'], ['help'], ['resolving'], ['issue']] k: 4718 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 4719 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4720 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4721 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 4722 len: <class 'list'> Data: ['battery', 'warning', 'status', 'battery', 'showing', 'warning', 'status'] processed_text: ['battery', 'warning', 'status', 'battery', 'showing', 'warning', 'status'] list_processed_text: [['battery'], ['warning'], ['status'], ['battery'], ['showing'], ['warning'], ['status']] k: 4723 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 4724 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn'], ['vpn']] k: 4725 len: <class 'list'> Data: ['unlock', 'erp', 'logon', 'hello', 'please', 'help', 'unlock', 'erp', 'logon', 'logon', 'erp', 'system', 'input', 'password', 'best'] processed_text: ['unlock', 'erp', 'logon', 'hello', 'please', 'help', 'unlock', 'erp', 'logon', 'logon', 'erp', 'system', 'input', 'password', 'best'] list_processed_text: [['unlock'], ['erp'], ['logon'], ['hello'], ['please'], ['help'], ['unlock'], ['erp'], ['logon'], ['logon'], ['erp'], ['system'], ['input'], ['password'], ['best']] k: 4726 len: <class 'list'> Data: ['security', 'tool', 'password', 'manager', 'service', 'component', 'server', 'lhqsm', 'lhqsm', 'security', 'tool', 'application', 'component', 'name', 'security', 'tool', 'password', 'manager'] processed_text: ['security', 'tool', 'password', 'manager', 'service', 'component', 'server', 'lhqsm', 'lhqsm', 'security', 'tool', 'application', 'component', 'name', 'security', 'tool', 'password', 'manager'] list_processed_text: [['security'], ['tool'], ['password'], ['manager'], ['service'], ['component'], ['server'], ['lhqsm'], ['lhqsm'], ['security'], ['tool'], ['application'], ['component'], ['name'], ['security'], ['tool'], ['password'], ['manager']] k: 4727 len: <class 'list'> Data: ['hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'ex', 'hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe'] processed_text: ['hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'ex', 'hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe'] list_processed_text: [['hostname'], ['plm'], ['conversion'], ['production'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe'], ['ex'], ['hostname'], ['plm'], ['conversion'], ['production'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe']] k: 4728 len: <class 'list'> Data: ['hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'space', 'consumed', 'space', 'available', 'hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available']] k: 4729 len: <class 'list'> Data: ['lhbsm', 'disk', 'space', 'consumed', 'space', 'available', 'g', 'lhbsm', 'volume', 'label', 'dat', 'lhbsm', 'ecc', 'server', 'lhbsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['lhbsm', 'disk', 'space', 'consumed', 'space', 'available', 'g', 'lhbsm', 'volume', 'label', 'dat', 'lhbsm', 'ecc', 'server', 'lhbsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['lhbsm'], ['disk'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['lhbsm'], ['volume'], ['label'], ['dat'], ['lhbsm'], ['ecc'], ['server'], ['lhbsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4730 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 4731 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 4732 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 4733 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4734 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 4735 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 4736 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'o', 'wly', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'wly', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['o'], ['wly'], ['failed'], ['job'], ['scheduler']] k: 4737 len: <class 'list'> Data: ['vip', 'change', 'password', 'remotely', 'traveling', 'expires', 'day', 'mail', 'sent'] processed_text: ['vip', 'change', 'password', 'remotely', 'traveling', 'expires', 'day', 'mail', 'sent'] list_processed_text: [['vip'], ['change'], ['password'], ['remotely'], ['traveling'], ['expires'], ['day'], ['mail'], ['sent']] k: 4738 len: <class 'list'> Data: ['able', 'access', 'drive', 'name', 'cighytol', 'yjurztgd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'closing', 'laptop', 'starting', 'vpn', 'solved', 'issue', 'access', 'drive', 'today', 'team', 'global', 'work', 'access', 'restored', 'please', 'help'] processed_text: ['able', 'access', 'drive', 'name', 'cighytol', 'yjurztgd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'closing', 'laptop', 'starting', 'vpn', 'solved', 'issue', 'access', 'drive', 'today', 'team', 'global', 'work', 'access', 'restored', 'please', 'help'] list_processed_text: [['able'], ['access'], ['drive'], ['name'], ['cighytol'], ['yjurztgd'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['closing'], ['laptop'], ['starting'], ['vpn'], ['solved'], ['issue'], ['access'], ['drive'], ['today'], ['team'], ['global'], ['work'], ['access'], ['restored'], ['please'], ['help']] k: 4739 len: <class 'list'> Data: ['unable', 'connect', 'outlook', 'unable', 'connect', 'outlook'] processed_text: ['unable', 'connect', 'outlook', 'unable', 'connect', 'outlook'] list_processed_text: [['unable'], ['connect'], ['outlook'], ['unable'], ['connect'], ['outlook']] k: 4740 len: <class 'list'> Data: ['m', 'office', 'installation', 'm', 'office', 'installation', 'contact'] processed_text: ['m', 'office', 'installation', 'm', 'office', 'installation', 'contact'] list_processed_text: [['m'], ['office'], ['installation'], ['m'], ['office'], ['installation'], ['contact']] k: 4741 len: <class 'list'> Data: ['power', 'supplied', 'failed', 'library', 'timnhyt', 'rehtyulds', 'datacenter', 'dacl', 'qa', 'cold', 'backup'] processed_text: ['power', 'supplied', 'failed', 'library', 'timnhyt', 'rehtyulds', 'datacenter', 'dacl', 'qa', 'cold', 'backup'] list_processed_text: [['power'], ['supplied'], ['failed'], ['library'], ['timnhyt'], ['rehtyulds'], ['datacenter'], ['dacl'], ['qa'], ['cold'], ['backup']] k: 4742 len: <class 'list'> Data: ['hostname', 'service', 'weekend', 'reboot', 'erpstartsrv', 'exe', 'hostname', 'service', 'weekend', 'reboot', 'erpstartsrv', 'exe'] processed_text: ['hostname', 'service', 'weekend', 'reboot', 'erpstartsrv', 'exe', 'hostname', 'service', 'weekend', 'reboot', 'erpstartsrv', 'exe'] list_processed_text: [['hostname'], ['service'], ['weekend'], ['reboot'], ['erpstartsrv'], ['exe'], ['hostname'], ['service'], ['weekend'], ['reboot'], ['erpstartsrv'], ['exe']] k: 4743 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4744 len: <class 'list'> Data: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler'], ['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler']] k: 4745 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 4746 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 4747 len: <class 'list'> Data: ['network', 'outage', 'malaysia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'malaysia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['malaysia'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4748 len: <class 'list'> Data: ['hostname', 'label', 'sys', 'hostname', 'ab', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'label', 'sys', 'hostname', 'ab', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'label', 'sys', 'hostname', 'ab', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'label', 'sys', 'hostname', 'ab', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['label'], ['sys'], ['hostname'], ['ab'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['label'], ['sys'], ['hostname'], ['ab'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 4749 len: <class 'list'> Data: ['restoring', 'ppt', 'restoring', 'ppt'] processed_text: ['restoring', 'ppt', 'restoring', 'ppt'] list_processed_text: [['restoring'], ['ppt'], ['restoring'], ['ppt']] k: 4750 len: <class 'list'> Data: ['erp', 'login', 'password', 'issue', 'hello', 'facing', 'erp', 'login', 'problem', 'password', 'issue', 'best'] processed_text: ['erp', 'login', 'password', 'issue', 'hello', 'facing', 'erp', 'login', 'problem', 'password', 'issue', 'best'] list_processed_text: [['erp'], ['login'], ['password'], ['issue'], ['hello'], ['facing'], ['erp'], ['login'], ['problem'], ['password'], ['issue'], ['best']] k: 4751 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4752 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 4753 len: <class 'list'> Data: ['engineering', 'tool', 'installation', 'm', 'office', 'installation', 'vpn', 'access', 'erp', 'access', 'engineering', 'tool', 'installation', 'm', 'office', 'installation', 'vpn', 'access', 'erp', 'access'] processed_text: ['engineering', 'tool', 'installation', 'm', 'office', 'installation', 'vpn', 'access', 'erp', 'access', 'engineering', 'tool', 'installation', 'm', 'office', 'installation', 'vpn', 'access', 'erp', 'access'] list_processed_text: [['engineering'], ['tool'], ['installation'], ['m'], ['office'], ['installation'], ['vpn'], ['access'], ['erp'], ['access'], ['engineering'], ['tool'], ['installation'], ['m'], ['office'], ['installation'], ['vpn'], ['access'], ['erp'], ['access']] k: 4754 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 4755 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 4756 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 4757 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4758 len: <class 'list'> Data: ['vpn', 'issue', 'hi', 'liuytre', 'sorry', 'hear', 'issue', 'ethic', 'vpn', 'experiencing', 'access', 'vpn', 'able', 'connect', 'also', 'please', 'could', 'share', 'error', 'trying', 'get', 'ethic', 'understand', 'change', 'employment', 'status', 'might', 'contributing', 'need', 'confirm', 'please', 'share', 'change', 'took', 'place', 'error', 'message'] processed_text: ['vpn', 'issue', 'hi', 'liuytre', 'sorry', 'hear', 'issue', 'ethic', 'vpn', 'experiencing', 'access', 'vpn', 'able', 'connect', 'also', 'please', 'could', 'share', 'error', 'trying', 'get', 'ethic', 'understand', 'change', 'employment', 'status', 'might', 'contributing', 'need', 'confirm', 'please', 'share', 'change', 'took', 'place', 'error', 'message'] list_processed_text: [['vpn'], ['issue'], ['hi'], ['liuytre'], ['sorry'], ['hear'], ['issue'], ['ethic'], ['vpn'], ['experiencing'], ['access'], ['vpn'], ['able'], ['connect'], ['also'], ['please'], ['could'], ['share'], ['error'], ['trying'], ['get'], ['ethic'], ['understand'], ['change'], ['employment'], ['status'], ['might'], ['contributing'], ['need'], ['confirm'], ['please'], ['share'], ['change'], ['took'], ['place'], ['error'], ['message']] k: 4759 len: <class 'list'> Data: ['ethic', 'issue', 'hi', 'liuytre', 'sorry', 'hear', 'issue', 'ethic', 'vpn', 'experiencing', 'access', 'vpn', 'able', 'connect', 'also', 'please', 'could', 'share', 'error', 'trying', 'get', 'ethic', 'understand', 'change', 'employment', 'status', 'might', 'contributing', 'need', 'confirm', 'please', 'share', 'change', 'took', 'place', 'error', 'message'] processed_text: ['ethic', 'issue', 'hi', 'liuytre', 'sorry', 'hear', 'issue', 'ethic', 'vpn', 'experiencing', 'access', 'vpn', 'able', 'connect', 'also', 'please', 'could', 'share', 'error', 'trying', 'get', 'ethic', 'understand', 'change', 'employment', 'status', 'might', 'contributing', 'need', 'confirm', 'please', 'share', 'change', 'took', 'place', 'error', 'message'] list_processed_text: [['ethic'], ['issue'], ['hi'], ['liuytre'], ['sorry'], ['hear'], ['issue'], ['ethic'], ['vpn'], ['experiencing'], ['access'], ['vpn'], ['able'], ['connect'], ['also'], ['please'], ['could'], ['share'], ['error'], ['trying'], ['get'], ['ethic'], ['understand'], ['change'], ['employment'], ['status'], ['might'], ['contributing'], ['need'], ['confirm'], ['please'], ['share'], ['change'], ['took'], ['place'], ['error'], ['message']] k: 4760 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 4761 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 4762 len: <class 'list'> Data: ['power', 'outage', 'jundiai', 'company', 'company', 'sifco', 'jundiai', 'rtr', 'circuit', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'na', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'jundiai', 'company', 'company', 'sifco', 'jundiai', 'rtr', 'circuit', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'na', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['jundiai'], ['company'], ['company'], ['sifco'], ['jundiai'], ['rtr'], ['circuit'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['na'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4763 len: <class 'list'> Data: ['dynamic', 'crm', 'url', 'check', 'reporting', 'status', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'application', 'dynamic', 'crm', 'url', 'check', 'node', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net'] processed_text: ['dynamic', 'crm', 'url', 'check', 'reporting', 'status', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'application', 'dynamic', 'crm', 'url', 'check', 'node', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net'] list_processed_text: [['dynamic'], ['crm'], ['url'], ['check'], ['reporting'], ['status'], ['company'], ['crm'], ['sp'], ['mfg'], ['tooltion'], ['azurewebsites'], ['net'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['et'], ['application'], ['dynamic'], ['crm'], ['url'], ['check'], ['node'], ['company'], ['crm'], ['sp'], ['mfg'], ['tooltion'], ['azurewebsites'], ['net']] k: 4764 len: <class 'list'> Data: ['ap', 'vpn', 'getting', 'connected', 'ap', 'vpn', 'getting', 'connected', 'please', 'assist', 'earliest'] processed_text: ['ap', 'vpn', 'getting', 'connected', 'ap', 'vpn', 'getting', 'connected', 'please', 'assist', 'earliest'] list_processed_text: [['ap'], ['vpn'], ['getting'], ['connected'], ['ap'], ['vpn'], ['getting'], ['connected'], ['please'], ['assist'], ['earliest']] k: 4765 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'secondary', 'vpn', 'circuit', 'since', 'et', 'site', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'secondary', 'vpn', 'circuit', 'since', 'et', 'site', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['secondary'], ['vpn'], ['circuit'], ['since'], ['et'], ['site'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4766 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4767 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4768 len: <class 'list'> Data: ['unable', 'print', 'production', 'order', 'error', 'production', 'order', 'interface', 'vendor', 'connc', 'bng', 'unable', 'print', 'production', 'order', 'since', 'last', 'hour', 'user', 'half', 'day', 'mentioned', 'contact', 'issue', 'sure', 'rest', 'user', 'india', 'plant', 'facing', 'issue', 'collated', 'information', 'issue', 'screenshot', 'assigning', 'concern', 'team', 'connection', 'system', 'production', 'order', 'interface', 'app', 'bng', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'bng', 'okay'] processed_text: ['unable', 'print', 'production', 'order', 'error', 'production', 'order', 'interface', 'vendor', 'connc', 'bng', 'unable', 'print', 'production', 'order', 'since', 'last', 'hour', 'user', 'half', 'day', 'mentioned', 'contact', 'issue', 'sure', 'rest', 'user', 'india', 'plant', 'facing', 'issue', 'collated', 'information', 'issue', 'screenshot', 'assigning', 'concern', 'team', 'connection', 'system', 'production', 'order', 'interface', 'app', 'bng', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'bng', 'okay'] list_processed_text: [['unable'], ['print'], ['production'], ['order'], ['error'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['bng'], ['unable'], ['print'], ['production'], ['order'], ['since'], ['last'], ['hour'], ['user'], ['half'], ['day'], ['mentioned'], ['contact'], ['issue'], ['sure'], ['rest'], ['user'], ['india'], ['plant'], ['facing'], ['issue'], ['collated'], ['information'], ['issue'], ['screenshot'], ['assigning'], ['concern'], ['team'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['bng'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['bng'], ['okay']] k: 4769 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4770 len: <class 'list'> Data: ['account', 'lcoked', 'summary', 'password', 'change', 'locked', 'need', 'change', 'password'] processed_text: ['account', 'lcoked', 'summary', 'password', 'change', 'locked', 'need', 'change', 'password'] list_processed_text: [['account'], ['lcoked'], ['summary'], ['password'], ['change'], ['locked'], ['need'], ['change'], ['password']] k: 4771 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4772 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4773 len: <class 'list'> Data: ['clientless', 'vpn', 'working', 'hello', 'greeting', 'day', 'please', 'note', 'clientless', 'vpn', 'working', 'system', 'detail', 'kind', 'information', 'user', 'id', 'sarhytukas', 'system', 'id', 'awyl', 'please', 'find', 'snap', 'receiving', 'trying', 'use', 'vpn', 'please', 'needful'] processed_text: ['clientless', 'vpn', 'working', 'hello', 'greeting', 'day', 'please', 'note', 'clientless', 'vpn', 'working', 'system', 'detail', 'kind', 'information', 'user', 'id', 'sarhytukas', 'system', 'id', 'awyl', 'please', 'find', 'snap', 'receiving', 'trying', 'use', 'vpn', 'please', 'needful'] list_processed_text: [['clientless'], ['vpn'], ['working'], ['hello'], ['greeting'], ['day'], ['please'], ['note'], ['clientless'], ['vpn'], ['working'], ['system'], ['detail'], ['kind'], ['information'], ['user'], ['id'], ['sarhytukas'], ['system'], ['id'], ['awyl'], ['please'], ['find'], ['snap'], ['receiving'], ['trying'], ['use'], ['vpn'], ['please'], ['needful']] k: 4774 len: <class 'list'> Data: ['network', 'outage', 'apac', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'apac', 'site', 'hard', 'since', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['apac'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4775 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 4776 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 4777 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4778 len: <class 'list'> Data: ['skype', 'login', 'issue', 'skype', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'skype', 'issue', 'resolved'] processed_text: ['skype', 'login', 'issue', 'skype', 'login', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'skype', 'issue', 'resolved'] list_processed_text: [['skype'], ['login'], ['issue'], ['skype'], ['login'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['skype'], ['issue'], ['resolved']] k: 4779 len: <class 'list'> Data: ['audio', 'skype', 'meeting', 'audio', 'skype', 'meeting'] processed_text: ['audio', 'skype', 'meeting', 'audio', 'skype', 'meeting'] list_processed_text: [['audio'], ['skype'], ['meeting'], ['audio'], ['skype'], ['meeting']] k: 4780 len: <class 'list'> Data: ['confidential', 'project', 'update', 'outlook', 'issue', 'displaying', 'image', 'meeting', 'invite', 'm', 'project', 'image', 'png', 'im', 'hello', 'company', 'help', 'reason', 'image', 'invitation', 'show', 'see', 'think', 'oc', 'issue', 'end', 'outlook', 'setup', 'something', 'sender', 'side'] processed_text: ['confidential', 'project', 'update', 'outlook', 'issue', 'displaying', 'image', 'meeting', 'invite', 'm', 'project', 'image', 'png', 'im', 'hello', 'company', 'help', 'reason', 'image', 'invitation', 'show', 'see', 'think', 'oc', 'issue', 'end', 'outlook', 'setup', 'something', 'sender', 'side'] list_processed_text: [['confidential'], ['project'], ['update'], ['outlook'], ['issue'], ['displaying'], ['image'], ['meeting'], ['invite'], ['m'], ['project'], ['image'], ['png'], ['im'], ['hello'], ['company'], ['help'], ['reason'], ['image'], ['invitation'], ['show'], ['see'], ['think'], ['oc'], ['issue'], ['end'], ['outlook'], ['setup'], ['something'], ['sender'], ['side']] k: 4781 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4782 len: <class 'list'> Data: ['odbc', 'connection', 'glovia', 'old', 'longer', 'work', 'access', 'glovia', 'data', 'access', 'longer', 'connect', 'dsn', 'glovia', 'old', 'need', 'connection', 'obtain', 'archived', 'data', 'please', 'assign', 'keyhtyvin', 'toriaytun'] processed_text: ['odbc', 'connection', 'glovia', 'old', 'longer', 'work', 'access', 'glovia', 'data', 'access', 'longer', 'connect', 'dsn', 'glovia', 'old', 'need', 'connection', 'obtain', 'archived', 'data', 'please', 'assign', 'keyhtyvin', 'toriaytun'] list_processed_text: [['odbc'], ['connection'], ['glovia'], ['old'], ['longer'], ['work'], ['access'], ['glovia'], ['data'], ['access'], ['longer'], ['connect'], ['dsn'], ['glovia'], ['old'], ['need'], ['connection'], ['obtain'], ['archived'], ['data'], ['please'], ['assign'], ['keyhtyvin'], ['toriaytun']] k: 4783 len: <class 'list'> Data: ['email', 'updating', 'outlook', 'email', 'updating', 'outlook'] processed_text: ['email', 'updating', 'outlook', 'email', 'updating', 'outlook'] list_processed_text: [['email'], ['updating'], ['outlook'], ['email'], ['updating'], ['outlook']] k: 4784 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4785 len: <class 'list'> Data: ['update', 'office', 'bit', 'name', 'kvrmnuix', 'yicpojmf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'update', 'office', 'bit'] processed_text: ['update', 'office', 'bit', 'name', 'kvrmnuix', 'yicpojmf', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'update', 'office', 'bit'] list_processed_text: [['update'], ['office'], ['bit'], ['name'], ['kvrmnuix'], ['yicpojmf'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['update'], ['office'], ['bit']] k: 4786 len: <class 'list'> Data: ['skype', 'error', 'skype', 'error'] processed_text: ['skype', 'error', 'skype', 'error'] list_processed_text: [['skype'], ['error'], ['skype'], ['error']] k: 4787 len: <class 'list'> Data: ['unable', 'submit', 'discount', 'form', 'unable', 'submit', 'discount', 'form'] processed_text: ['unable', 'submit', 'discount', 'form', 'unable', 'submit', 'discount', 'form'] list_processed_text: [['unable'], ['submit'], ['discount'], ['form'], ['unable'], ['submit'], ['discount'], ['form']] k: 4788 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 4789 len: <class 'list'> Data: ['please', 'install', 'project', 'back', 'client', 'pc', 'please', 'install', 'project', 'back', 'client', 'pc'] processed_text: ['please', 'install', 'project', 'back', 'client', 'pc', 'please', 'install', 'project', 'back', 'client', 'pc'] list_processed_text: [['please'], ['install'], ['project'], ['back'], ['client'], ['pc'], ['please'], ['install'], ['project'], ['back'], ['client'], ['pc']] k: 4790 len: <class 'list'> Data: ['engineering', 'tool', 'try', 'create', 'new', 'task', 'option', 'displayed', 'engineering', 'tool', 'try', 'create', 'new', 'task', 'option', 'displayed', 'please', 'refer', 'attachment'] processed_text: ['engineering', 'tool', 'try', 'create', 'new', 'task', 'option', 'displayed', 'engineering', 'tool', 'try', 'create', 'new', 'task', 'option', 'displayed', 'please', 'refer', 'attachment'] list_processed_text: [['engineering'], ['tool'], ['try'], ['create'], ['new'], ['task'], ['option'], ['displayed'], ['engineering'], ['tool'], ['try'], ['create'], ['new'], ['task'], ['option'], ['displayed'], ['please'], ['refer'], ['attachment']] k: 4791 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4792 len: <class 'list'> Data: ['supply', 'chian', 'mgmt', 'tool', 'password', 'reset', 'supply', 'chian', 'mgmt', 'tool', 'password', 'reset'] processed_text: ['supply', 'chian', 'mgmt', 'tool', 'password', 'reset', 'supply', 'chian', 'mgmt', 'tool', 'password', 'reset'] list_processed_text: [['supply'], ['chian'], ['mgmt'], ['tool'], ['password'], ['reset'], ['supply'], ['chian'], ['mgmt'], ['tool'], ['password'], ['reset']] k: 4793 len: <class 'list'> Data: ['lauacyltoe', 'hxgaycze', 'java', 'installed', 'lauacyltoe', 'hxgaycze', 'java', 'installed'] processed_text: ['lauacyltoe', 'hxgaycze', 'java', 'installed', 'lauacyltoe', 'hxgaycze', 'java', 'installed'] list_processed_text: [['lauacyltoe'], ['hxgaycze'], ['java'], ['installed'], ['lauacyltoe'], ['hxgaycze'], ['java'], ['installed']] k: 4794 len: <class 'list'> Data: ['chg', 'hello', 'everyone', 'user', 'receive', 'message', 'logon', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn'] processed_text: ['chg', 'hello', 'everyone', 'user', 'receive', 'message', 'logon', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn'] list_processed_text: [['chg'], ['hello'], ['everyone'], ['user'], ['receive'], ['message'], ['logon'], ['afkstcev'], ['utbnkyop'], ['senior'], ['analyst'], ['bokrgadu'], ['euobrlcn']] k: 4795 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 4796 len: <class 'list'> Data: ['user', 'need', 'access', 'engineering', 'tool', 'user', 'need', 'access', 'engineering', 'tool'] processed_text: ['user', 'need', 'access', 'engineering', 'tool', 'user', 'need', 'access', 'engineering', 'tool'] list_processed_text: [['user'], ['need'], ['access'], ['engineering'], ['tool'], ['user'], ['need'], ['access'], ['engineering'], ['tool']] k: 4797 len: <class 'list'> Data: ['unable', 'add', 'contact', 'markhtyeting', 'list', 'receive', 'catalog', 'crm', 'unable', 'add', 'contact', 'markhtyeting', 'list', 'receive', 'catalog', 'crm', 'user', 'id', 'kindftyed', 'contact'] processed_text: ['unable', 'add', 'contact', 'markhtyeting', 'list', 'receive', 'catalog', 'crm', 'unable', 'add', 'contact', 'markhtyeting', 'list', 'receive', 'catalog', 'crm', 'user', 'id', 'kindftyed', 'contact'] list_processed_text: [['unable'], ['add'], ['contact'], ['markhtyeting'], ['list'], ['receive'], ['catalog'], ['crm'], ['unable'], ['add'], ['contact'], ['markhtyeting'], ['list'], ['receive'], ['catalog'], ['crm'], ['user'], ['id'], ['kindftyed'], ['contact']] k: 4798 len: <class 'list'> Data: ['incident', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'dane', 'williuthyr', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'user', 'name', 'dghuane', 'whryuiams', 'wijuiidl', 'location', 'usa', 'pa', 'eh', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'alert', 'traffic', 'dane', 'williuthyr', 'external', 'ip', 'address', 'beshryulisted', 'counter', 'threat', 'unit', 'ctu', 'team', 'due', 'association', 'malware', 'phishing', 'form', 'submit', 'outbound', 'affected', 'asset', 'investigated', 'traffic', 'beshryulisted', 'ip', 'address', 'indicate', 'host', 'infected', 'malware', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'mail', 'notification', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'full', 'escalation', 'related', 'event', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'event', 'id', 'event', 'summary', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'source', 'mac', 'address', 'eb', 'db', 'destination', 'ip', 'destination', 'hostname', 'ip', 'ip', 'secureserver', 'net', 'destination', 'ip', 'geolocation', 'schtrtgoyhtsdale', 'usa', 'connection', 'directionality', 'outgoing', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'built', 'outbound', 'tcp', 'connection', 'outside', 'inside', 'correlation', 'data', 'dhcpd', 'dhcpack', 'eb', 'db', 'dane', 'williuthyr', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'take', 'action', 'ticket', 'action'] processed_text: ['incident', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'dane', 'williuthyr', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'user', 'name', 'dghuane', 'whryuiams', 'wijuiidl', 'location', 'usa', 'pa', 'eh', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'alert', 'traffic', 'dane', 'williuthyr', 'external', 'ip', 'address', 'beshryulisted', 'counter', 'threat', 'unit', 'ctu', 'team', 'due', 'association', 'malware', 'phishing', 'form', 'submit', 'outbound', 'affected', 'asset', 'investigated', 'traffic', 'beshryulisted', 'ip', 'address', 'indicate', 'host', 'infected', 'malware', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'mail', 'notification', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'full', 'escalation', 'related', 'event', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'event', 'id', 'event', 'summary', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'source', 'mac', 'address', 'eb', 'db', 'destination', 'ip', 'destination', 'hostname', 'ip', 'ip', 'secureserver', 'net', 'destination', 'ip', 'geolocation', 'schtrtgoyhtsdale', 'usa', 'connection', 'directionality', 'outgoing', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'built', 'outbound', 'tcp', 'connection', 'outside', 'inside', 'correlation', 'data', 'dhcpd', 'dhcpack', 'eb', 'db', 'dane', 'williuthyr', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'take', 'action', 'ticket', 'action'] list_processed_text: [['incident'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['dane'], ['williuthyr'], ['source'], ['ip'], ['source'], ['hostname'], ['dane'], ['williuthyr'], ['user'], ['name'], ['dghuane'], ['whryuiams'], ['wijuiidl'], ['location'], ['usa'], ['pa'], ['eh'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['ipbl'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['alert'], ['traffic'], ['dane'], ['williuthyr'], ['external'], ['ip'], ['address'], ['beshryulisted'], ['counter'], ['threat'], ['unit'], ['ctu'], ['team'], ['due'], ['association'], ['malware'], ['phishing'], ['form'], ['submit'], ['outbound'], ['affected'], ['asset'], ['investigated'], ['traffic'], ['beshryulisted'], ['ip'], ['address'], ['indicate'], ['host'], ['infected'], ['malware'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['full'], ['escalation'], ['related'], ['event'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['ctoc'], ['event'], ['data'], ['event'], ['id'], ['event'], ['summary'], ['ipbl'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['dane'], ['williuthyr'], ['source'], ['mac'], ['address'], ['eb'], ['db'], ['destination'], ['ip'], ['destination'], ['hostname'], ['ip'], ['ip'], ['secureserver'], ['net'], ['destination'], ['ip'], ['geolocation'], ['schtrtgoyhtsdale'], ['usa'], ['connection'], ['directionality'], ['outgoing'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['built'], ['outbound'], ['tcp'], ['connection'], ['outside'], ['inside'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['eb'], ['db'], ['dane'], ['williuthyr'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['take'], ['action'], ['ticket'], ['action']] k: 4799 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4800 len: <class 'list'> Data: ['repair', 'adobe', 'pdf', 'receipt', 'generated', 'pdf', 'leaving', 'character'] processed_text: ['repair', 'adobe', 'pdf', 'receipt', 'generated', 'pdf', 'leaving', 'character'] list_processed_text: [['repair'], ['adobe'], ['pdf'], ['receipt'], ['generated'], ['pdf'], ['leaving'], ['character']] k: 4801 len: <class 'list'> Data: ['design', 'tool', 'service', 'file', 'naming', 'convention', 'changed', 'geengineering', 'tooloductdata', 'web', 'service', 'call', 'design', 'tool', 'service', 'obtain', 'cad', 'model', 'engineering', 'tool', 'believe', 'link', 'point', 'design', 'tool', 'uacyltoe', 'hxgaycze', 'service', 'look', 'like', 'naming', 'convention', 'changed', 'last', 'day', 'file', 'returned', 'service', 'named', 'material', 'management', 'number', 'g', 'mm', 'sid', 'see', 'attached', 'fw', 'engineering', 'tool', 'drill', 'msg', 'detail', 'change', 'causing', 'issue', 'model', 'returned', 'engineering', 'tool', 'engineering', 'tool', 'demoed', 'imts', 'starting', 'need', 'urgent', 'fix', 'revert', 'change', 'might', 'made', 'file', 'naming', 'convention', 'file', 'design', 'tool', 'service', 'original', 'rule', 'uli', 'implemented', 'file', 'name', 'cad', 'file', 'returned', 'service', 'implemented', 'naming', 'rule', 'cad', 'catalog', 'iso', 'taken', 'else', 'cad', 'catalog', 'ansi', 'taken', 'else', 'rqfhiong', 'zkwfqagb', 'taken', 'underscore', 'plus', 'cad', 'graph', 'type', 'added', 'finally', 'original', 'file', 'extension', 'added'] processed_text: ['design', 'tool', 'service', 'file', 'naming', 'convention', 'changed', 'geengineering', 'tooloductdata', 'web', 'service', 'call', 'design', 'tool', 'service', 'obtain', 'cad', 'model', 'engineering', 'tool', 'believe', 'link', 'point', 'design', 'tool', 'uacyltoe', 'hxgaycze', 'service', 'look', 'like', 'naming', 'convention', 'changed', 'last', 'day', 'file', 'returned', 'service', 'named', 'material', 'management', 'number', 'g', 'mm', 'sid', 'see', 'attached', 'fw', 'engineering', 'tool', 'drill', 'msg', 'detail', 'change', 'causing', 'issue', 'model', 'returned', 'engineering', 'tool', 'engineering', 'tool', 'demoed', 'imts', 'starting', 'need', 'urgent', 'fix', 'revert', 'change', 'might', 'made', 'file', 'naming', 'convention', 'file', 'design', 'tool', 'service', 'original', 'rule', 'uli', 'implemented', 'file', 'name', 'cad', 'file', 'returned', 'service', 'implemented', 'naming', 'rule', 'cad', 'catalog', 'iso', 'taken', 'else', 'cad', 'catalog', 'ansi', 'taken', 'else', 'rqfhiong', 'zkwfqagb', 'taken', 'underscore', 'plus', 'cad', 'graph', 'type', 'added', 'finally', 'original', 'file', 'extension', 'added'] list_processed_text: [['design'], ['tool'], ['service'], ['file'], ['naming'], ['convention'], ['changed'], ['geengineering'], ['tooloductdata'], ['web'], ['service'], ['call'], ['design'], ['tool'], ['service'], ['obtain'], ['cad'], ['model'], ['engineering'], ['tool'], ['believe'], ['link'], ['point'], ['design'], ['tool'], ['uacyltoe'], ['hxgaycze'], ['service'], ['look'], ['like'], ['naming'], ['convention'], ['changed'], ['last'], ['day'], ['file'], ['returned'], ['service'], ['named'], ['material'], ['management'], ['number'], ['g'], ['mm'], ['sid'], ['see'], ['attached'], ['fw'], ['engineering'], ['tool'], ['drill'], ['msg'], ['detail'], ['change'], ['causing'], ['issue'], ['model'], ['returned'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['demoed'], ['imts'], ['starting'], ['need'], ['urgent'], ['fix'], ['revert'], ['change'], ['might'], ['made'], ['file'], ['naming'], ['convention'], ['file'], ['design'], ['tool'], ['service'], ['original'], ['rule'], ['uli'], ['implemented'], ['file'], ['name'], ['cad'], ['file'], ['returned'], ['service'], ['implemented'], ['naming'], ['rule'], ['cad'], ['catalog'], ['iso'], ['taken'], ['else'], ['cad'], ['catalog'], ['ansi'], ['taken'], ['else'], ['rqfhiong'], ['zkwfqagb'], ['taken'], ['underscore'], ['plus'], ['cad'], ['graph'], ['type'], ['added'], ['finally'], ['original'], ['file'], ['extension'], ['added']] k: 4802 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4803 len: <class 'list'> Data: ['dell', 'tablet', 'cracked', 'accidentally', 'dropped', 'dell', 'tablet', 'cracked', 'accidentally', 'dropped'] processed_text: ['dell', 'tablet', 'cracked', 'accidentally', 'dropped', 'dell', 'tablet', 'cracked', 'accidentally', 'dropped'] list_processed_text: [['dell'], ['tablet'], ['cracked'], ['accidentally'], ['dropped'], ['dell'], ['tablet'], ['cracked'], ['accidentally'], ['dropped']] k: 4804 len: <class 'list'> Data: ['approval', 'workflow', 'problem', 'approfghaching', 'problem', 'approval', 'workflow', 'credit', 'memo', 'request', 'respectively', 'rmas', 'opened', 'several', 'ticket', 'regarding', 'topic', 'unfortunately', 'lead', 'final', 'solution', 'maybe', 'erp', 'language', 'problem', 'part', 'anyway', 'hope', 'help', 'get', 'fixed', 'approval', 'level', 'organization', 'follows', 'regardless', 'sale', 'person', 'customer', 'account', 'level', 'jwqyxbzs', 'adpvilqu', 'afcbrhqw', 'vudghzcb', 'subsitute', 'possible', 'level', 'jwqyxbzs', 'adpvilqu', 'afcbrhqw', 'vudghzcb', 'substitute', 'possible', 'level', 'qsoxltny', 'dzjespml', 'tjnwdauo', 'jkdwbhgs', 'substitute', 'possible', 'level', 'plus', 'michghytuael', 'nz', 'tjnwdauo', 'jkdwbhgs', 'substitute', 'possible', 'often', 'happens', 'workflow', 'routed', 'wrong', 'person', 'lauacyltoe', 'hxgaycze', 'example', 'rma', 'routed', 'level', 'approved', 'jmkcewds', 'qkoipbzn', 'level', 'wo', 'nothing', 'take', 'lot', 'time', 'gather', 'wrong', 'routed', 'workflow', 'forward', 'responsible', 'person', 'appreciate', 'help'] processed_text: ['approval', 'workflow', 'problem', 'approfghaching', 'problem', 'approval', 'workflow', 'credit', 'memo', 'request', 'respectively', 'rmas', 'opened', 'several', 'ticket', 'regarding', 'topic', 'unfortunately', 'lead', 'final', 'solution', 'maybe', 'erp', 'language', 'problem', 'part', 'anyway', 'hope', 'help', 'get', 'fixed', 'approval', 'level', 'organization', 'follows', 'regardless', 'sale', 'person', 'customer', 'account', 'level', 'jwqyxbzs', 'adpvilqu', 'afcbrhqw', 'vudghzcb', 'subsitute', 'possible', 'level', 'jwqyxbzs', 'adpvilqu', 'afcbrhqw', 'vudghzcb', 'substitute', 'possible', 'level', 'qsoxltny', 'dzjespml', 'tjnwdauo', 'jkdwbhgs', 'substitute', 'possible', 'level', 'plus', 'michghytuael', 'nz', 'tjnwdauo', 'jkdwbhgs', 'substitute', 'possible', 'often', 'happens', 'workflow', 'routed', 'wrong', 'person', 'lauacyltoe', 'hxgaycze', 'example', 'rma', 'routed', 'level', 'approved', 'jmkcewds', 'qkoipbzn', 'level', 'wo', 'nothing', 'take', 'lot', 'time', 'gather', 'wrong', 'routed', 'workflow', 'forward', 'responsible', 'person', 'appreciate', 'help'] list_processed_text: [['approval'], ['workflow'], ['problem'], ['approfghaching'], ['problem'], ['approval'], ['workflow'], ['credit'], ['memo'], ['request'], ['respectively'], ['rmas'], ['opened'], ['several'], ['ticket'], ['regarding'], ['topic'], ['unfortunately'], ['lead'], ['final'], ['solution'], ['maybe'], ['erp'], ['language'], ['problem'], ['part'], ['anyway'], ['hope'], ['help'], ['get'], ['fixed'], ['approval'], ['level'], ['organization'], ['follows'], ['regardless'], ['sale'], ['person'], ['customer'], ['account'], ['level'], ['jwqyxbzs'], ['adpvilqu'], ['afcbrhqw'], ['vudghzcb'], ['subsitute'], ['possible'], ['level'], ['jwqyxbzs'], ['adpvilqu'], ['afcbrhqw'], ['vudghzcb'], ['substitute'], ['possible'], ['level'], ['qsoxltny'], ['dzjespml'], ['tjnwdauo'], ['jkdwbhgs'], ['substitute'], ['possible'], ['level'], ['plus'], ['michghytuael'], ['nz'], ['tjnwdauo'], ['jkdwbhgs'], ['substitute'], ['possible'], ['often'], ['happens'], ['workflow'], ['routed'], ['wrong'], ['person'], ['lauacyltoe'], ['hxgaycze'], ['example'], ['rma'], ['routed'], ['level'], ['approved'], ['jmkcewds'], ['qkoipbzn'], ['level'], ['wo'], ['nothing'], ['take'], ['lot'], ['time'], ['gather'], ['wrong'], ['routed'], ['workflow'], ['forward'], ['responsible'], ['person'], ['appreciate'], ['help']] k: 4805 len: <class 'list'> Data: ['sound', 'working', 'sound', 'working'] processed_text: ['sound', 'working', 'sound', 'working'] list_processed_text: [['sound'], ['working'], ['sound'], ['working']] k: 4806 len: <class 'list'> Data: ['erp', 'open', 'hi', 'erp', 'vpn', 'user', 'keep', 'getting', 'error', 'every', 'time', 'try', 'log', 'sid', 'erp', 'hr', 'ago', 'trouble', 'please', 'help', 'nkthumgf', 'mwgdenbs', 'ph'] processed_text: ['erp', 'open', 'hi', 'erp', 'vpn', 'user', 'keep', 'getting', 'error', 'every', 'time', 'try', 'log', 'sid', 'erp', 'hr', 'ago', 'trouble', 'please', 'help', 'nkthumgf', 'mwgdenbs', 'ph'] list_processed_text: [['erp'], ['open'], ['hi'], ['erp'], ['vpn'], ['user'], ['keep'], ['getting'], ['error'], ['every'], ['time'], ['try'], ['log'], ['sid'], ['erp'], ['hr'], ['ago'], ['trouble'], ['please'], ['help'], ['nkthumgf'], ['mwgdenbs'], ['ph']] k: 4807 len: <class 'list'> Data: ['update', 'inplant', 'update', 'inplant'] processed_text: ['update', 'inplant', 'update', 'inplant'] list_processed_text: [['update'], ['inplant'], ['update'], ['inplant']] k: 4808 len: <class 'list'> Data: ['trying', 'print', 'network', 'printer', 'savin', 'c', 'trying', 'print', 'network', 'printer', 'savin', 'c'] processed_text: ['trying', 'print', 'network', 'printer', 'savin', 'c', 'trying', 'print', 'network', 'printer', 'savin', 'c'] list_processed_text: [['trying'], ['print'], ['network'], ['printer'], ['savin'], ['c'], ['trying'], ['print'], ['network'], ['printer'], ['savin'], ['c']] k: 4809 len: <class 'list'> Data: ['kicked', 'vpn', 'reconnected', 'vpn', 'stopped', 'working', 'able', 'reconnected', 'minute'] processed_text: ['kicked', 'vpn', 'reconnected', 'vpn', 'stopped', 'working', 'able', 'reconnected', 'minute'] list_processed_text: [['kicked'], ['vpn'], ['reconnected'], ['vpn'], ['stopped'], ['working'], ['able'], ['reconnected'], ['minute']] k: 4810 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4811 len: <class 'list'> Data: ['error', 'logging', 'hana', 'please', 'see', 'attached', 'error', 'receive', 'trying', 'log', 'hana'] processed_text: ['error', 'logging', 'hana', 'please', 'see', 'attached', 'error', 'receive', 'trying', 'log', 'hana'] list_processed_text: [['error'], ['logging'], ['hana'], ['please'], ['see'], ['attached'], ['error'], ['receive'], ['trying'], ['log'], ['hana']] k: 4812 len: <class 'list'> Data: ['unable', 'login', 'sid', 'unable', 'login', 'sid'] processed_text: ['unable', 'login', 'sid', 'unable', 'login', 'sid'] list_processed_text: [['unable'], ['login'], ['sid'], ['unable'], ['login'], ['sid']] k: 4813 len: <class 'list'> Data: ['locked', 'global', 'view', 'prtgghjk', 'need', 'password', 'reset', 'urgent', 'payroll', 'report', 'must', 'pull', 'locked', 'global', 'view', 'prtgghjk', 'need', 'password', 'reset', 'urgent', 'payroll', 'report', 'must', 'pull', 'morning'] processed_text: ['locked', 'global', 'view', 'prtgghjk', 'need', 'password', 'reset', 'urgent', 'payroll', 'report', 'must', 'pull', 'locked', 'global', 'view', 'prtgghjk', 'need', 'password', 'reset', 'urgent', 'payroll', 'report', 'must', 'pull', 'morning'] list_processed_text: [['locked'], ['global'], ['view'], ['prtgghjk'], ['need'], ['password'], ['reset'], ['urgent'], ['payroll'], ['report'], ['must'], ['pull'], ['locked'], ['global'], ['view'], ['prtgghjk'], ['need'], ['password'], ['reset'], ['urgent'], ['payroll'], ['report'], ['must'], ['pull'], ['morning']] k: 4814 len: <class 'list'> Data: ['window', 'password', 'reset', 'tinmuym', 'alrthyu', 'window', 'password', 'reset', 'tinmuym', 'alrthyu'] processed_text: ['window', 'password', 'reset', 'tinmuym', 'alrthyu', 'window', 'password', 'reset', 'tinmuym', 'alrthyu'] list_processed_text: [['window'], ['password'], ['reset'], ['tinmuym'], ['alrthyu'], ['window'], ['password'], ['reset'], ['tinmuym'], ['alrthyu']] k: 4815 len: <class 'list'> Data: ['ltcl', 'hgmxq', 'e', 'rarty', 'old', 'laptop', 'need', 'login', 'cannot', 'connected', 'network', 'error', 'security', 'database', 'server', 'computer', 'account', 'workstation', 'trust', 'relationship', 'connected', 'old', 'password', 'need', 'play', 'cd', 'new', 'laptop', 'cd', 'drive', 'please', 'see', 'laptop', 'cannot', 'found', 'ad', 'ph'] processed_text: ['ltcl', 'hgmxq', 'e', 'rarty', 'old', 'laptop', 'need', 'login', 'cannot', 'connected', 'network', 'error', 'security', 'database', 'server', 'computer', 'account', 'workstation', 'trust', 'relationship', 'connected', 'old', 'password', 'need', 'play', 'cd', 'new', 'laptop', 'cd', 'drive', 'please', 'see', 'laptop', 'cannot', 'found', 'ad', 'ph'] list_processed_text: [['ltcl'], ['hgmxq'], ['e'], ['rarty'], ['old'], ['laptop'], ['need'], ['login'], ['cannot'], ['connected'], ['network'], ['error'], ['security'], ['database'], ['server'], ['computer'], ['account'], ['workstation'], ['trust'], ['relationship'], ['connected'], ['old'], ['password'], ['need'], ['play'], ['cd'], ['new'], ['laptop'], ['cd'], ['drive'], ['please'], ['see'], ['laptop'], ['cannot'], ['found'], ['ad'], ['ph']] k: 4816 len: <class 'list'> Data: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] processed_text: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] list_processed_text: [['skype'], ['audio'], ['working'], ['skype'], ['audio'], ['working']] k: 4817 len: <class 'list'> Data: ['vpn', 'vpn', 'working', 'need', 'urgent', 'help', 'best'] processed_text: ['vpn', 'vpn', 'working', 'need', 'urgent', 'help', 'best'] list_processed_text: [['vpn'], ['vpn'], ['working'], ['need'], ['urgent'], ['help'], ['best']] k: 4818 len: <class 'list'> Data: ['hr', 'engineering', 'tool', 'unable', 'run', 'report', 'etime', 'unable', 'run', 'report', 'etime'] processed_text: ['hr', 'engineering', 'tool', 'unable', 'run', 'report', 'etime', 'unable', 'run', 'report', 'etime'] list_processed_text: [['hr'], ['engineering'], ['tool'], ['unable'], ['run'], ['report'], ['etime'], ['unable'], ['run'], ['report'], ['etime']] k: 4819 len: <class 'list'> Data: ['unable', 'launch', 'business', 'client', 'net', 'framdntyework', 'need', 'installed', 'initiated', 'download', 'net'] processed_text: ['unable', 'launch', 'business', 'client', 'net', 'framdntyework', 'need', 'installed', 'initiated', 'download', 'net'] list_processed_text: [['unable'], ['launch'], ['business'], ['client'], ['net'], ['framdntyework'], ['need'], ['installed'], ['initiated'], ['download'], ['net']] k: 4820 len: <class 'list'> Data: ['account', 'unlock', 'erp', 'sid', 'unlocked', 'account', 'todd', 'able', 'get', 'successfully'] processed_text: ['account', 'unlock', 'erp', 'sid', 'unlocked', 'account', 'todd', 'able', 'get', 'successfully'] list_processed_text: [['account'], ['unlock'], ['erp'], ['sid'], ['unlocked'], ['account'], ['todd'], ['able'], ['get'], ['successfully']] k: 4821 len: <class 'list'> Data: ['unable', 'launch', 'skype', 'unable', 'launch', 'skype'] processed_text: ['unable', 'launch', 'skype', 'unable', 'launch', 'skype'] list_processed_text: [['unable'], ['launch'], ['skype'], ['unable'], ['launch'], ['skype']] k: 4822 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 4823 len: <class 'list'> Data: ['unable', 'log', 'skype', 'hello', 'getting', 'error', 'trying', 'log', 'skype', 'address', 'correct', 'log', 'id', 'correct', 'password', 'correct', 'tried', 'time', 'get', 'error', 'need', 'able', 'log', 'skype'] processed_text: ['unable', 'log', 'skype', 'hello', 'getting', 'error', 'trying', 'log', 'skype', 'address', 'correct', 'log', 'id', 'correct', 'password', 'correct', 'tried', 'time', 'get', 'error', 'need', 'able', 'log', 'skype'] list_processed_text: [['unable'], ['log'], ['skype'], ['hello'], ['getting'], ['error'], ['trying'], ['log'], ['skype'], ['address'], ['correct'], ['log'], ['id'], ['correct'], ['password'], ['correct'], ['tried'], ['time'], ['get'], ['error'], ['need'], ['able'], ['log'], ['skype']] k: 4824 len: <class 'list'> Data: ['account', 'number', 'incorrect', 'urgent', 'trurthyuft', 'per', 'converstion', 'shatryung', 'screen', 'teamviewer', 'morning', 'screen', 'shot', 'account', 'issue', 'look', 'opportstorage', 'product', 'number', 'mdosid', 'correct', 'account', 'number', 'customer', 'opp', 'created', 'problem', 'selecting', 'correct', 'account', 'number', 'opportunity', 'created', 'recently', 'able', 'choose', 'account', 'number', 'correct', 'account', 'number', 'need', 'close', 'today'] processed_text: ['account', 'number', 'incorrect', 'urgent', 'trurthyuft', 'per', 'converstion', 'shatryung', 'screen', 'teamviewer', 'morning', 'screen', 'shot', 'account', 'issue', 'look', 'opportstorage', 'product', 'number', 'mdosid', 'correct', 'account', 'number', 'customer', 'opp', 'created', 'problem', 'selecting', 'correct', 'account', 'number', 'opportunity', 'created', 'recently', 'able', 'choose', 'account', 'number', 'correct', 'account', 'number', 'need', 'close', 'today'] list_processed_text: [['account'], ['number'], ['incorrect'], ['urgent'], ['trurthyuft'], ['per'], ['converstion'], ['shatryung'], ['screen'], ['teamviewer'], ['morning'], ['screen'], ['shot'], ['account'], ['issue'], ['look'], ['opportstorage'], ['product'], ['number'], ['mdosid'], ['correct'], ['account'], ['number'], ['customer'], ['opp'], ['created'], ['problem'], ['selecting'], ['correct'], ['account'], ['number'], ['opportunity'], ['created'], ['recently'], ['able'], ['choose'], ['account'], ['number'], ['correct'], ['account'], ['number'], ['need'], ['close'], ['today']] k: 4825 len: <class 'list'> Data: ['erp', 'engineering', 'tool', 'locked', 'erp', 'engineering', 'tool', 'locked'] processed_text: ['erp', 'engineering', 'tool', 'locked', 'erp', 'engineering', 'tool', 'locked'] list_processed_text: [['erp'], ['engineering'], ['tool'], ['locked'], ['erp'], ['engineering'], ['tool'], ['locked']] k: 4826 len: <class 'list'> Data: ['bahdqrcs', 'xvgzdtqj', 'onbankrding', 'experience', 'hello', 'bahdqrcs', 'xvgzdtqj', 'intern', 'hired', 'full', 'time', 'effective', 'followed', 'process', 'old', 'manager', 'transfer', 'new', 'manager', 'oneteam', 'new', 'manager', 'entered', 'new', 'job', 'compensation', 'information', 'like', 'instructed', 'however', 'honest', 'onbankrding', 'experience', 'disaster', 'far', 'say', 'every', 'time', 'call', 'hr', 'help', 'helpful', 'resolve', 'issue', 'hr', 'tell', 'problem', 'tell', 'hr', 'problem', 'issue', 'still', 'access', 'benefit', 'information', 'collaboration', 'tool', 'follows', 'direction', 'given', 'get', 'error', 'message', 'say', 'need', 'approval', 'request', 'submitted', 'ethic', 'access', 'expense', 'report', 'access', 'able', 'enter', 'expense', 'report', 'however', 'went', 'submit', 'got', 'error', 'message', 'try', 'log', 'get', 'error', 'message', 'said', 'problem', 'access', 'vpn', 'said', 'hr', 'need', 'update', 'sid', 'really', 'sure', 'incorrect', 'paycheck', 'receive', 'paycheck', 'told', 'depending', 'information', 'processed', 'payroll', 'might', 'caught', 'fact', 'salary', 'corrected', 'paycheck', 'sharee', 'emailed', 'yesterday', 'made', 'sound', 'like', 'everything', 'going', 'corrected', 'paycheck', 'sent', 'follow', 'email', 'saying', 'already', 'ran', 'going', 'able', 'backdate', 'effective', 'date', 'change', 'going', 'want', 'liuytre', 'provide', 'hour', 'worked', 'going', 'work', 'liuytre', 'stopped', 'tracking', 'hour', 'since', 'salaried', 'employee', 'also', 'company', 'conference', 'week', 'technically', 'worked', 'way', 'hour', 'week', 'part', 'meeting', 'dinner', 'hour', 'team', 'building', 'activity', 'someone', 'shared', 'service', 'designated', 'contact', 'work', 'issue', 'everything', 'figured', 'something', 'issue', 'hr', 'follow', 'passed', 'back', 'forth', 'beyond', 'frustrated', 'next', 'figure', 'benefit', 'eligibility', 'timeframdntye'] processed_text: ['bahdqrcs', 'xvgzdtqj', 'onbankrding', 'experience', 'hello', 'bahdqrcs', 'xvgzdtqj', 'intern', 'hired', 'full', 'time', 'effective', 'followed', 'process', 'old', 'manager', 'transfer', 'new', 'manager', 'oneteam', 'new', 'manager', 'entered', 'new', 'job', 'compensation', 'information', 'like', 'instructed', 'however', 'honest', 'onbankrding', 'experience', 'disaster', 'far', 'say', 'every', 'time', 'call', 'hr', 'help', 'helpful', 'resolve', 'issue', 'hr', 'tell', 'problem', 'tell', 'hr', 'problem', 'issue', 'still', 'access', 'benefit', 'information', 'collaboration', 'tool', 'follows', 'direction', 'given', 'get', 'error', 'message', 'say', 'need', 'approval', 'request', 'submitted', 'ethic', 'access', 'expense', 'report', 'access', 'able', 'enter', 'expense', 'report', 'however', 'went', 'submit', 'got', 'error', 'message', 'try', 'log', 'get', 'error', 'message', 'said', 'problem', 'access', 'vpn', 'said', 'hr', 'need', 'update', 'sid', 'really', 'sure', 'incorrect', 'paycheck', 'receive', 'paycheck', 'told', 'depending', 'information', 'processed', 'payroll', 'might', 'caught', 'fact', 'salary', 'corrected', 'paycheck', 'sharee', 'emailed', 'yesterday', 'made', 'sound', 'like', 'everything', 'going', 'corrected', 'paycheck', 'sent', 'follow', 'email', 'saying', 'already', 'ran', 'going', 'able', 'backdate', 'effective', 'date', 'change', 'going', 'want', 'liuytre', 'provide', 'hour', 'worked', 'going', 'work', 'liuytre', 'stopped', 'tracking', 'hour', 'since', 'salaried', 'employee', 'also', 'company', 'conference', 'week', 'technically', 'worked', 'way', 'hour', 'week', 'part', 'meeting', 'dinner', 'hour', 'team', 'building', 'activity', 'someone', 'shared', 'service', 'designated', 'contact', 'work', 'issue', 'everything', 'figured', 'something', 'issue', 'hr', 'follow', 'passed', 'back', 'forth', 'beyond', 'frustrated', 'next', 'figure', 'benefit', 'eligibility', 'timeframdntye'] list_processed_text: [['bahdqrcs'], ['xvgzdtqj'], ['onbankrding'], ['experience'], ['hello'], ['bahdqrcs'], ['xvgzdtqj'], ['intern'], ['hired'], ['full'], ['time'], ['effective'], ['followed'], ['process'], ['old'], ['manager'], ['transfer'], ['new'], ['manager'], ['oneteam'], ['new'], ['manager'], ['entered'], ['new'], ['job'], ['compensation'], ['information'], ['like'], ['instructed'], ['however'], ['honest'], ['onbankrding'], ['experience'], ['disaster'], ['far'], ['say'], ['every'], ['time'], ['call'], ['hr'], ['help'], ['helpful'], ['resolve'], ['issue'], ['hr'], ['tell'], ['problem'], ['tell'], ['hr'], ['problem'], ['issue'], ['still'], ['access'], ['benefit'], ['information'], ['collaboration'], ['tool'], ['follows'], ['direction'], ['given'], ['get'], ['error'], ['message'], ['say'], ['need'], ['approval'], ['request'], ['submitted'], ['ethic'], ['access'], ['expense'], ['report'], ['access'], ['able'], ['enter'], ['expense'], ['report'], ['however'], ['went'], ['submit'], ['got'], ['error'], ['message'], ['try'], ['log'], ['get'], ['error'], ['message'], ['said'], ['problem'], ['access'], ['vpn'], ['said'], ['hr'], ['need'], ['update'], ['sid'], ['really'], ['sure'], ['incorrect'], ['paycheck'], ['receive'], ['paycheck'], ['told'], ['depending'], ['information'], ['processed'], ['payroll'], ['might'], ['caught'], ['fact'], ['salary'], ['corrected'], ['paycheck'], ['sharee'], ['emailed'], ['yesterday'], ['made'], ['sound'], ['like'], ['everything'], ['going'], ['corrected'], ['paycheck'], ['sent'], ['follow'], ['email'], ['saying'], ['already'], ['ran'], ['going'], ['able'], ['backdate'], ['effective'], ['date'], ['change'], ['going'], ['want'], ['liuytre'], ['provide'], ['hour'], ['worked'], ['going'], ['work'], ['liuytre'], ['stopped'], ['tracking'], ['hour'], ['since'], ['salaried'], ['employee'], ['also'], ['company'], ['conference'], ['week'], ['technically'], ['worked'], ['way'], ['hour'], ['week'], ['part'], ['meeting'], ['dinner'], ['hour'], ['team'], ['building'], ['activity'], ['someone'], ['shared'], ['service'], ['designated'], ['contact'], ['work'], ['issue'], ['everything'], ['figured'], ['something'], ['issue'], ['hr'], ['follow'], ['passed'], ['back'], ['forth'], ['beyond'], ['frustrated'], ['next'], ['figure'], ['benefit'], ['eligibility'], ['timeframdntye']] k: 4827 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sid', 'password', 'reset', 'erp', 'sid'] processed_text: ['password', 'reset', 'erp', 'sid', 'password', 'reset', 'erp', 'sid'] list_processed_text: [['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid']] k: 4828 len: <class 'list'> Data: ['interface', 'fc', 'hostname', 'sandplant', 'since', 'et', 'interface', 'fc', 'hostname', 'sandplant', 'since', 'et'] processed_text: ['interface', 'fc', 'hostname', 'sandplant', 'since', 'et', 'interface', 'fc', 'hostname', 'sandplant', 'since', 'et'] list_processed_text: [['interface'], ['fc'], ['hostname'], ['sandplant'], ['since'], ['et'], ['interface'], ['fc'], ['hostname'], ['sandplant'], ['since'], ['et']] k: 4829 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 4830 len: <class 'list'> Data: ['vpn', 'query', 'vpn', 'query'] processed_text: ['vpn', 'query', 'vpn', 'query'] list_processed_text: [['vpn'], ['query'], ['vpn'], ['query']] k: 4831 len: <class 'list'> Data: ['vpn', 'hello', 'get', 'following', 'error', 'try', 'start', 'vpn', 'also', 'try', 'install', 'say', 'need', 'admin', 'right', 'best'] processed_text: ['vpn', 'hello', 'get', 'following', 'error', 'try', 'start', 'vpn', 'also', 'try', 'install', 'say', 'need', 'admin', 'right', 'best'] list_processed_text: [['vpn'], ['hello'], ['get'], ['following'], ['error'], ['try'], ['start'], ['vpn'], ['also'], ['try'], ['install'], ['say'], ['need'], ['admin'], ['right'], ['best']] k: 4832 len: <class 'list'> Data: ['please', 'take', 'snapshot', 'vms', 'manually', 'hostname', 'please', 'take', 'snapshot', 'vms', 'manually', 'hostname'] processed_text: ['please', 'take', 'snapshot', 'vms', 'manually', 'hostname', 'please', 'take', 'snapshot', 'vms', 'manually', 'hostname'] list_processed_text: [['please'], ['take'], ['snapshot'], ['vms'], ['manually'], ['hostname'], ['please'], ['take'], ['snapshot'], ['vms'], ['manually'], ['hostname']] k: 4833 len: <class 'list'> Data: ['skype', 'content', 'showing', 'meeting', 'skype', 'content', 'showing', 'meeting'] processed_text: ['skype', 'content', 'showing', 'meeting', 'skype', 'content', 'showing', 'meeting'] list_processed_text: [['skype'], ['content'], ['showing'], ['meeting'], ['skype'], ['content'], ['showing'], ['meeting']] k: 4834 len: <class 'list'> Data: ['error', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'failed', 'customer', 'number', 'telephone', 'summary', 'away', 'computer', 'length', 'time', 'sometimes', 'start', 'getting', 'following', 'error', 'message', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'failed', 'pain', 'keep', 'totally', 'reboot', 'computer', 'away', 'desk', 'time'] processed_text: ['error', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'failed', 'customer', 'number', 'telephone', 'summary', 'away', 'computer', 'length', 'time', 'sometimes', 'start', 'getting', 'following', 'error', 'message', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'failed', 'pain', 'keep', 'totally', 'reboot', 'computer', 'away', 'desk', 'time'] list_processed_text: [['error'], ['trust'], ['relationship'], ['workstation'], ['primary'], ['domain'], ['failed'], ['customer'], ['number'], ['telephone'], ['summary'], ['away'], ['computer'], ['length'], ['time'], ['sometimes'], ['start'], ['getting'], ['following'], ['error'], ['message'], ['trust'], ['relationship'], ['workstation'], ['primary'], ['domain'], ['failed'], ['pain'], ['keep'], ['totally'], ['reboot'], ['computer'], ['away'], ['desk'], ['time']] k: 4835 len: <class 'list'> Data: ['skype', 'meetinmg', 'button', 'dear', 'lost', 'skpe', 'button', 'view', 'colleague', 'view', 'nter', 'webfnhtyer', 'manager', 'sourcing', 'company', 'shared', 'service', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['skype', 'meetinmg', 'button', 'dear', 'lost', 'skpe', 'button', 'view', 'colleague', 'view', 'nter', 'webfnhtyer', 'manager', 'sourcing', 'company', 'shared', 'service', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['skype'], ['meetinmg'], ['button'], ['dear'], ['lost'], ['skpe'], ['button'], ['view'], ['colleague'], ['view'], ['nter'], ['webfnhtyer'], ['manager'], ['sourcing'], ['company'], ['shared'], ['service'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 4836 len: <class 'list'> Data: ['outlook', 'loading', 'outlook', 'loading'] processed_text: ['outlook', 'loading', 'outlook', 'loading'] list_processed_text: [['outlook'], ['loading'], ['outlook'], ['loading']] k: 4837 len: <class 'list'> Data: ['finance', 'app', 'time', 'error', 'finance', 'app', 'time', 'error'] processed_text: ['finance', 'app', 'time', 'error', 'finance', 'app', 'time', 'error'] list_processed_text: [['finance'], ['app'], ['time'], ['error'], ['finance'], ['app'], ['time'], ['error']] k: 4838 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 4839 len: <class 'list'> Data: ['account', 'extension', 'fqiurzas', 'eidtfbqk', 'vvlfbhtyeisd', 'account', 'extension', 'fqiurzas', 'eidtfbqk', 'vvlfbhtyeisd', 'extend', 'account', 'another', 'six', 'month'] processed_text: ['account', 'extension', 'fqiurzas', 'eidtfbqk', 'vvlfbhtyeisd', 'account', 'extension', 'fqiurzas', 'eidtfbqk', 'vvlfbhtyeisd', 'extend', 'account', 'another', 'six', 'month'] list_processed_text: [['account'], ['extension'], ['fqiurzas'], ['eidtfbqk'], ['vvlfbhtyeisd'], ['account'], ['extension'], ['fqiurzas'], ['eidtfbqk'], ['vvlfbhtyeisd'], ['extend'], ['account'], ['another'], ['six'], ['month']] k: 4840 len: <class 'list'> Data: ['job', 'bkwin', 'm', 'cluster', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'm', 'cluster', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'm', 'cluster', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'm', 'cluster', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['m'], ['cluster'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['m'], ['cluster'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 4841 len: <class 'list'> Data: ['audio', 'stop', 'working', 'company', 'update', 'audio', 'device', 'stoped', 'working', 'company', 'update', 'show', 'message', 'audio', 'output', 'device', 'installed', 'coworkers', 'trouble'] processed_text: ['audio', 'stop', 'working', 'company', 'update', 'audio', 'device', 'stoped', 'working', 'company', 'update', 'show', 'message', 'audio', 'output', 'device', 'installed', 'coworkers', 'trouble'] list_processed_text: [['audio'], ['stop'], ['working'], ['company'], ['update'], ['audio'], ['device'], ['stoped'], ['working'], ['company'], ['update'], ['show'], ['message'], ['audio'], ['output'], ['device'], ['installed'], ['coworkers'], ['trouble']] k: 4842 len: <class 'list'> Data: ['unable', 'login', 'vcenter', 'hostname', 'vsphere', 'client', 'unable', 'login', 'vcenter', 'hostname', 'vsphere', 'client', 'kindly', 'check', 'issue'] processed_text: ['unable', 'login', 'vcenter', 'hostname', 'vsphere', 'client', 'unable', 'login', 'vcenter', 'hostname', 'vsphere', 'client', 'kindly', 'check', 'issue'] list_processed_text: [['unable'], ['login'], ['vcenter'], ['hostname'], ['vsphere'], ['client'], ['unable'], ['login'], ['vcenter'], ['hostname'], ['vsphere'], ['client'], ['kindly'], ['check'], ['issue']] k: 4843 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'shipment', 'iak', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'apac', 'issue', 'description', 'error', 'message', 'please', 'check', 'attached'] processed_text: ['unable', 'create', 'delivery', 'shipment', 'iak', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'apac', 'issue', 'description', 'error', 'message', 'please', 'check', 'attached'] list_processed_text: [['unable'], ['create'], ['delivery'], ['shipment'], ['iak'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['apac'], ['issue'], ['description'], ['error'], ['message'], ['please'], ['check'], ['attached']] k: 4844 len: <class 'list'> Data: ['uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'wrong', 'server', 'uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'wrong', 'server', 'would', 'unit', 'hostname', 'pc', 'name', 'ekxw'] processed_text: ['uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'wrong', 'server', 'uyjlodhq', 'ymedkatw', 'lghuiezj', 'mapped', 'unit', 'department', 'public', 'team', 'wrong', 'server', 'would', 'unit', 'hostname', 'pc', 'name', 'ekxw'] list_processed_text: [['uyjlodhq'], ['ymedkatw'], ['lghuiezj'], ['mapped'], ['unit'], ['department'], ['public'], ['team'], ['wrong'], ['server'], ['uyjlodhq'], ['ymedkatw'], ['lghuiezj'], ['mapped'], ['unit'], ['department'], ['public'], ['team'], ['wrong'], ['server'], ['would'], ['unit'], ['hostname'], ['pc'], ['name'], ['ekxw']] k: 4845 len: <class 'list'> Data: ['usb', 'port', 'detecting', 'device', 'usb', 'port', 'detecting', 'device'] processed_text: ['usb', 'port', 'detecting', 'device', 'usb', 'port', 'detecting', 'device'] list_processed_text: [['usb'], ['port'], ['detecting'], ['device'], ['usb'], ['port'], ['detecting'], ['device']] k: 4846 len: <class 'list'> Data: ['ewel', 'konto', 'einlegen', 'ewel', 'konto', 'einlegen', 'assigning', 'yevirgnl', 'ylhogjct', 'per', 'ughzilfm', 'cfibdamq'] processed_text: ['ewel', 'konto', 'einlegen', 'ewel', 'konto', 'einlegen', 'assigning', 'yevirgnl', 'ylhogjct', 'per', 'ughzilfm', 'cfibdamq'] list_processed_text: [['ewel'], ['konto'], ['einlegen'], ['ewel'], ['konto'], ['einlegen'], ['assigning'], ['yevirgnl'], ['ylhogjct'], ['per'], ['ughzilfm'], ['cfibdamq']] k: 4847 len: <class 'list'> Data: ['travel', 'expense', 'manager', 'erp', 'transaction', 'pr', 'working', 'hello', 'travel', 'expense', 'manager', 'erp', 'transaction', 'pr', 'working', 'anylonger', 'start', 'best'] processed_text: ['travel', 'expense', 'manager', 'erp', 'transaction', 'pr', 'working', 'hello', 'travel', 'expense', 'manager', 'erp', 'transaction', 'pr', 'working', 'anylonger', 'start', 'best'] list_processed_text: [['travel'], ['expense'], ['manager'], ['erp'], ['transaction'], ['pr'], ['working'], ['hello'], ['travel'], ['expense'], ['manager'], ['erp'], ['transaction'], ['pr'], ['working'], ['anylonger'], ['start'], ['best']] k: 4848 len: <class 'list'> Data: ['query', 'query'] processed_text: ['query', 'query'] list_processed_text: [['query'], ['query']] k: 4849 len: <class 'list'> Data: ['e', 'mail', 'sent', 'company', 'quarantine', 'database', 'e', 'mail', 'sent', 'company', 'quarantine', 'database'] processed_text: ['e', 'mail', 'sent', 'company', 'quarantine', 'database', 'e', 'mail', 'sent', 'company', 'quarantine', 'database'] list_processed_text: [['e'], ['mail'], ['sent'], ['company'], ['quarantine'], ['database'], ['e'], ['mail'], ['sent'], ['company'], ['quarantine'], ['database']] k: 4850 len: <class 'list'> Data: ['cable', 'vga', 'defective', 'banknote', 'cable', 'vga', 'defective', 'banknote'] processed_text: ['cable', 'vga', 'defective', 'banknote', 'cable', 'vga', 'defective', 'banknote'] list_processed_text: [['cable'], ['vga'], ['defective'], ['banknote'], ['cable'], ['vga'], ['defective'], ['banknote']] k: 4851 len: <class 'list'> Data: ['install', 'ki', 'ewew', 'guvgytniak', 'install', 'ki', 'ewew', 'guvgytniak'] processed_text: ['install', 'ki', 'ewew', 'guvgytniak', 'install', 'ki', 'ewew', 'guvgytniak'] list_processed_text: [['install'], ['ki'], ['ewew'], ['guvgytniak'], ['install'], ['ki'], ['ewew'], ['guvgytniak']] k: 4852 len: <class 'list'> Data: ['install', 'ki', 'ewew', 'zlqfptjx', 'xnklbfua', 'install', 'ki', 'ewew', 'zlqfptjx', 'xnklbfua'] processed_text: ['install', 'ki', 'ewew', 'zlqfptjx', 'xnklbfua', 'install', 'ki', 'ewew', 'zlqfptjx', 'xnklbfua'] list_processed_text: [['install'], ['ki'], ['ewew'], ['zlqfptjx'], ['xnklbfua'], ['install'], ['ki'], ['ewew'], ['zlqfptjx'], ['xnklbfua']] k: 4853 len: <class 'list'> Data: ['install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg', 'install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg', 'install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['install'], ['zebra'], ['wu'], ['pfjwinbg'], ['ljtzbdqg'], ['install'], ['zebra'], ['wu'], ['pfjwinbg'], ['ljtzbdqg']] k: 4854 len: <class 'list'> Data: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] processed_text: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml'], ['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml']] k: 4855 len: <class 'list'> Data: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] processed_text: ['install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'company', 'barcode', 'r', 'ewew', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml'], ['install'], ['company'], ['barcode'], ['r'], ['ewew'], ['vzqomdgt'], ['jwoqbuml']] k: 4856 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4857 len: <class 'list'> Data: ['shipment', 'iak', 'hi', 'move', 'shipping', 'date', 'dn', 'created', 'pls', 'help', 'ship'] processed_text: ['shipment', 'iak', 'hi', 'move', 'shipping', 'date', 'dn', 'created', 'pls', 'help', 'ship'] list_processed_text: [['shipment'], ['iak'], ['hi'], ['move'], ['shipping'], ['date'], ['dn'], ['created'], ['pls'], ['help'], ['ship']] k: 4858 len: <class 'list'> Data: ['job', 'bk', 'bia', 'bobje', 'failed', 'job', 'scheduler', 'job', 'bk', 'bia', 'bobje', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'bia', 'bobje', 'failed', 'job', 'scheduler', 'job', 'bk', 'bia', 'bobje', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['bia'], ['bobje'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['bia'], ['bobje'], ['failed'], ['job'], ['scheduler']] k: 4859 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'phone', 'home', 'request', 'rgtw', 'source', 'ip', 'system', 'name', 'rgtw', 'user', 'name', 'workstation', 'server', 'location', 'usa', 'nvyjtmca', 'xjhpznds', 'traversecitymi', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'malware', 'defender', 'fakeav', 'phone', 'home', 'alert', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'rgtw', 'destined', 'port', 'tcp', 'wilmington', 'usa', 'occurred', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'tps', 'doubleverify', 'com', 'url', 'path', 'event', 'jpg', 'user', 'agent', 'mozilla', 'window', 'nt', 'applewebkit', 'khtml', 'like', 'gecko', 'chrome', 'safari', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'related', 'event', 'event', 'shown', 'due', 'space', 'constraint'] processed_text: ['security', 'incident', 'possible', 'malware', 'phone', 'home', 'request', 'rgtw', 'source', 'ip', 'system', 'name', 'rgtw', 'user', 'name', 'workstation', 'server', 'location', 'usa', 'nvyjtmca', 'xjhpznds', 'traversecitymi', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'malware', 'defender', 'fakeav', 'phone', 'home', 'alert', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'rgtw', 'destined', 'port', 'tcp', 'wilmington', 'usa', 'occurred', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'tps', 'doubleverify', 'com', 'url', 'path', 'event', 'jpg', 'user', 'agent', 'mozilla', 'window', 'nt', 'applewebkit', 'khtml', 'like', 'gecko', 'chrome', 'safari', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'related', 'event', 'event', 'shown', 'due', 'space', 'constraint'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['phone'], ['home'], ['request'], ['rgtw'], ['source'], ['ip'], ['system'], ['name'], ['rgtw'], ['user'], ['name'], ['workstation'], ['server'], ['location'], ['usa'], ['nvyjtmca'], ['xjhpznds'], ['traversecitymi'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['incident'], ['overview'], ['ctoc'], ['received'], ['least'], ['occurrence'], ['vid'], ['malware'], ['defender'], ['fakeav'], ['phone'], ['home'], ['alert'], ['isensor'], ['device'], ['isensor'], ['company'], ['com'], ['traffic'], ['blocked'], ['sourcing'], ['port'], ['tcp'], ['rgtw'], ['destined'], ['port'], ['tcp'], ['wilmington'], ['usa'], ['occurred'], ['outbound'], ['http'], ['traffic'], ['infected'], ['device'], ['contained'], ['following'], ['method'], ['data'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['version'], ['http'], ['domain'], ['tps'], ['doubleverify'], ['com'], ['url'], ['path'], ['event'], ['jpg'], ['user'], ['agent'], ['mozilla'], ['window'], ['nt'], ['applewebkit'], ['khtml'], ['like'], ['gecko'], ['chrome'], ['safari'], ['content'], ['length'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['related'], ['event'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['ctoc'], ['event'], ['data'], ['related'], ['event'], ['event'], ['shown'], ['due'], ['space'], ['constraint']] k: 4860 len: <class 'list'> Data: ['efdl', 'need', 'add', 'software', 'installed', 'new', 'latitude', 'storch', 'tel', 'efdl', 'need', 'add', 'software', 'installed', 'new', 'latitude', 'storch', 'tel', 'archiving', 'tool', 'viewer', 'hardcopy', 'reisekosten'] processed_text: ['efdl', 'need', 'add', 'software', 'installed', 'new', 'latitude', 'storch', 'tel', 'efdl', 'need', 'add', 'software', 'installed', 'new', 'latitude', 'storch', 'tel', 'archiving', 'tool', 'viewer', 'hardcopy', 'reisekosten'] list_processed_text: [['efdl'], ['need'], ['add'], ['software'], ['installed'], ['new'], ['latitude'], ['storch'], ['tel'], ['efdl'], ['need'], ['add'], ['software'], ['installed'], ['new'], ['latitude'], ['storch'], ['tel'], ['archiving'], ['tool'], ['viewer'], ['hardcopy'], ['reisekosten']] k: 4861 len: <class 'list'> Data: ['set', 'workstation', 'pc', 'telephone', 'germany', 'roffner', 'lfel', 'due', 'fact', 'germany', 'one', 'day', 'week', 'look', 'trainee', 'stationed', 'germany', 'need', 'job', 'germany'] processed_text: ['set', 'workstation', 'pc', 'telephone', 'germany', 'roffner', 'lfel', 'due', 'fact', 'germany', 'one', 'day', 'week', 'look', 'trainee', 'stationed', 'germany', 'need', 'job', 'germany'] list_processed_text: [['set'], ['workstation'], ['pc'], ['telephone'], ['germany'], ['roffner'], ['lfel'], ['due'], ['fact'], ['germany'], ['one'], ['day'], ['week'], ['look'], ['trainee'], ['stationed'], ['germany'], ['need'], ['job'], ['germany']] k: 4862 len: <class 'list'> Data: ['access', 'application', 'dear', 'sir', 'please', 'provide', 'access', 'application', 'company', 'engineering', 'tool', 'business', 'client'] processed_text: ['access', 'application', 'dear', 'sir', 'please', 'provide', 'access', 'application', 'company', 'engineering', 'tool', 'business', 'client'] list_processed_text: [['access'], ['application'], ['dear'], ['sir'], ['please'], ['provide'], ['access'], ['application'], ['company'], ['engineering'], ['tool'], ['business'], ['client']] k: 4863 len: <class 'list'> Data: ['need', 'add', 'lxkecjgr', 'fwknxupq', 'shared', 'mailbox', 'need', 'add', 'lxkecjgr', 'fwknxupq', 'shared', 'mailbox'] processed_text: ['need', 'add', 'lxkecjgr', 'fwknxupq', 'shared', 'mailbox', 'need', 'add', 'lxkecjgr', 'fwknxupq', 'shared', 'mailbox'] list_processed_text: [['need'], ['add'], ['lxkecjgr'], ['fwknxupq'], ['shared'], ['mailbox'], ['need'], ['add'], ['lxkecjgr'], ['fwknxupq'], ['shared'], ['mailbox']] k: 4864 len: <class 'list'> Data: ['erp', 'transaction', 'pr', 'work', 'hello', 'erp', 'transaction', 'pr', 'show', 'following', 'error', 'message', 'kind', 'regard', 'ida', 'financial', 'quality', 'technician', 'email', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['erp', 'transaction', 'pr', 'work', 'hello', 'erp', 'transaction', 'pr', 'show', 'following', 'error', 'message', 'kind', 'regard', 'ida', 'financial', 'quality', 'technician', 'email', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['erp'], ['transaction'], ['pr'], ['work'], ['hello'], ['erp'], ['transaction'], ['pr'], ['show'], ['following'], ['error'], ['message'], ['kind'], ['regard'], ['ida'], ['financial'], ['quality'], ['technician'], ['email'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 4865 len: <class 'list'> Data: ['erp', 'sid', 'account', 'password', 'locked', 'hi', 'user', 'sonhygg', 'erp', 'sid', 'account', 'password', 'locked', 'unlock', 'help'] processed_text: ['erp', 'sid', 'account', 'password', 'locked', 'hi', 'user', 'sonhygg', 'erp', 'sid', 'account', 'password', 'locked', 'unlock', 'help'] list_processed_text: [['erp'], ['sid'], ['account'], ['password'], ['locked'], ['hi'], ['user'], ['sonhygg'], ['erp'], ['sid'], ['account'], ['password'], ['locked'], ['unlock'], ['help']] k: 4866 len: <class 'list'> Data: ['security', 'incident', 'possible', 'malware', 'phone', 'home', 'request', 'rgtw', 'source', 'ip', 'system', 'name', 'rgtw', 'user', 'name', 'workstation', 'server', 'location', 'usa', 'nvyjtmca', 'xjhpznds', 'traversecitymi', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'malware', 'defender', 'fakeav', 'phone', 'home', 'alert', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'rgtw', 'destined', 'port', 'tcp', 'wilmington', 'usa', 'occurred', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'tps', 'doubleverify', 'com', 'url', 'path', 'event', 'jpg', 'user', 'agent', 'mozilla', 'window', 'nt', 'applewebkit', 'khtml', 'like', 'gecko', 'chrome', 'safari', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'related', 'event', 'event', 'shown', 'due', 'space', 'constraint'] processed_text: ['security', 'incident', 'possible', 'malware', 'phone', 'home', 'request', 'rgtw', 'source', 'ip', 'system', 'name', 'rgtw', 'user', 'name', 'workstation', 'server', 'location', 'usa', 'nvyjtmca', 'xjhpznds', 'traversecitymi', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'incident', 'overview', 'ctoc', 'received', 'least', 'occurrence', 'vid', 'malware', 'defender', 'fakeav', 'phone', 'home', 'alert', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'blocked', 'sourcing', 'port', 'tcp', 'rgtw', 'destined', 'port', 'tcp', 'wilmington', 'usa', 'occurred', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'tps', 'doubleverify', 'com', 'url', 'path', 'event', 'jpg', 'user', 'agent', 'mozilla', 'window', 'nt', 'applewebkit', 'khtml', 'like', 'gecko', 'chrome', 'safari', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'related', 'event', 'event', 'shown', 'due', 'space', 'constraint'] list_processed_text: [['security'], ['incident'], ['possible'], ['malware'], ['phone'], ['home'], ['request'], ['rgtw'], ['source'], ['ip'], ['system'], ['name'], ['rgtw'], ['user'], ['name'], ['workstation'], ['server'], ['location'], ['usa'], ['nvyjtmca'], ['xjhpznds'], ['traversecitymi'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['incident'], ['overview'], ['ctoc'], ['received'], ['least'], ['occurrence'], ['vid'], ['malware'], ['defender'], ['fakeav'], ['phone'], ['home'], ['alert'], ['isensor'], ['device'], ['isensor'], ['company'], ['com'], ['traffic'], ['blocked'], ['sourcing'], ['port'], ['tcp'], ['rgtw'], ['destined'], ['port'], ['tcp'], ['wilmington'], ['usa'], ['occurred'], ['outbound'], ['http'], ['traffic'], ['infected'], ['device'], ['contained'], ['following'], ['method'], ['data'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['version'], ['http'], ['domain'], ['tps'], ['doubleverify'], ['com'], ['url'], ['path'], ['event'], ['jpg'], ['user'], ['agent'], ['mozilla'], ['window'], ['nt'], ['applewebkit'], ['khtml'], ['like'], ['gecko'], ['chrome'], ['safari'], ['content'], ['length'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['related'], ['event'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['ctoc'], ['event'], ['data'], ['related'], ['event'], ['event'], ['shown'], ['due'], ['space'], ['constraint']] k: 4867 len: <class 'list'> Data: ['wifi', 'guest', 'account', 'hello', 'help', 'team', 'meeting', 'scheduled', 'rth', 'pls', 'arrange', 'wifi', 'guest', 'account', 'two', 'external', 'trainer', 'day', 'name', 'utthku', 'tehrsytu', 'email', 'uwe', 'tryhutehdtui', 'email'] processed_text: ['wifi', 'guest', 'account', 'hello', 'help', 'team', 'meeting', 'scheduled', 'rth', 'pls', 'arrange', 'wifi', 'guest', 'account', 'two', 'external', 'trainer', 'day', 'name', 'utthku', 'tehrsytu', 'email', 'uwe', 'tryhutehdtui', 'email'] list_processed_text: [['wifi'], ['guest'], ['account'], ['hello'], ['help'], ['team'], ['meeting'], ['scheduled'], ['rth'], ['pls'], ['arrange'], ['wifi'], ['guest'], ['account'], ['two'], ['external'], ['trainer'], ['day'], ['name'], ['utthku'], ['tehrsytu'], ['email'], ['uwe'], ['tryhutehdtui'], ['email']] k: 4868 len: <class 'list'> Data: ['unlock', 'exchange', 'active', 'sync', 'io', 'vmthcrkf', 'iceyusnd', 'pipfhypeu', 'company', 'device', 'hello', 'team', 'possible', 'exchange', 'active', 'sync', 'io', 'unlocked', 'advance', 'prior', 'getting', 'normal', 'email', 'shall', 'forwarded', 'vmthcrkf', 'iceyusnd', 'receiving', 'iphone', 'today', 'would', 'good', 'use', 'immediately', 'best'] processed_text: ['unlock', 'exchange', 'active', 'sync', 'io', 'vmthcrkf', 'iceyusnd', 'pipfhypeu', 'company', 'device', 'hello', 'team', 'possible', 'exchange', 'active', 'sync', 'io', 'unlocked', 'advance', 'prior', 'getting', 'normal', 'email', 'shall', 'forwarded', 'vmthcrkf', 'iceyusnd', 'receiving', 'iphone', 'today', 'would', 'good', 'use', 'immediately', 'best'] list_processed_text: [['unlock'], ['exchange'], ['active'], ['sync'], ['io'], ['vmthcrkf'], ['iceyusnd'], ['pipfhypeu'], ['company'], ['device'], ['hello'], ['team'], ['possible'], ['exchange'], ['active'], ['sync'], ['io'], ['unlocked'], ['advance'], ['prior'], ['getting'], ['normal'], ['email'], ['shall'], ['forwarded'], ['vmthcrkf'], ['iceyusnd'], ['receiving'], ['iphone'], ['today'], ['would'], ['good'], ['use'], ['immediately'], ['best']] k: 4869 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'mp', 'fax', 'longer', 'work'] processed_text: ['printer', 'problem', 'issue', 'information', 'mp', 'fax', 'longer', 'work'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['mp'], ['fax'], ['longer'], ['work']] k: 4870 len: <class 'list'> Data: ['folder', 'mb', 'hello', 'helpteam', 'department', 'drive', 'germany', 'steel', 'ehs', 'folder', 'subfolder', 'mb', 'disappeared', 'please', 'restore', 'many', 'thanks', 'many', 'gr', 'best'] processed_text: ['folder', 'mb', 'hello', 'helpteam', 'department', 'drive', 'germany', 'steel', 'ehs', 'folder', 'subfolder', 'mb', 'disappeared', 'please', 'restore', 'many', 'thanks', 'many', 'gr', 'best'] list_processed_text: [['folder'], ['mb'], ['hello'], ['helpteam'], ['department'], ['drive'], ['germany'], ['steel'], ['ehs'], ['folder'], ['subfolder'], ['mb'], ['disappeared'], ['please'], ['restore'], ['many'], ['thanks'], ['many'], ['gr'], ['best']] k: 4871 len: <class 'list'> Data: ['outlook', 'search', 'working', 'well', 'issue', 'search', 'tool', 'outlook', 'whenever', 'connected', 'net', 'work', 'working', 'offline', 'nt', 'wrk'] processed_text: ['outlook', 'search', 'working', 'well', 'issue', 'search', 'tool', 'outlook', 'whenever', 'connected', 'net', 'work', 'working', 'offline', 'nt', 'wrk'] list_processed_text: [['outlook'], ['search'], ['working'], ['well'], ['issue'], ['search'], ['tool'], ['outlook'], ['whenever'], ['connected'], ['net'], ['work'], ['working'], ['offline'], ['nt'], ['wrk']] k: 4872 len: <class 'list'> Data: ['please', 'help', 'enable', 'video', 'service', 'attached', 'video', 'received', 'mail', 'via', 'office', 'cannot', 'opened', 'cannot', 'watch', 'video', 'let', 'talk'] processed_text: ['please', 'help', 'enable', 'video', 'service', 'attached', 'video', 'received', 'mail', 'via', 'office', 'cannot', 'opened', 'cannot', 'watch', 'video', 'let', 'talk'] list_processed_text: [['please'], ['help'], ['enable'], ['video'], ['service'], ['attached'], ['video'], ['received'], ['mail'], ['via'], ['office'], ['cannot'], ['opened'], ['cannot'], ['watch'], ['video'], ['let'], ['talk']] k: 4873 len: <class 'list'> Data: ['ie', 'browser', 'issue', 'ie', 'browser', 'issue'] processed_text: ['ie', 'browser', 'issue', 'ie', 'browser', 'issue'] list_processed_text: [['ie'], ['browser'], ['issue'], ['ie'], ['browser'], ['issue']] k: 4874 len: <class 'list'> Data: ['engineering', 'tool', 'company', 'issue', 'engineering', 'tool', 'company', 'issue', 'forbidden', 'error'] processed_text: ['engineering', 'tool', 'company', 'issue', 'engineering', 'tool', 'company', 'issue', 'forbidden', 'error'] list_processed_text: [['engineering'], ['tool'], ['company'], ['issue'], ['engineering'], ['tool'], ['company'], ['issue'], ['forbidden'], ['error']] k: 4875 len: <class 'list'> Data: ['attendance', 'tool', 'login', 'issue', 'summary', 'problem', 'attendance', 'tool'] processed_text: ['attendance', 'tool', 'login', 'issue', 'summary', 'problem', 'attendance', 'tool'] list_processed_text: [['attendance'], ['tool'], ['login'], ['issue'], ['summary'], ['problem'], ['attendance'], ['tool']] k: 4876 len: <class 'list'> Data: ['login', 'problem', 'attendance', 'tool', 'portal', 'dear', 'sir', 'im', 'facing', 'problem', 'login', 'attendance', 'tool', 'portal', 'please', 'help', 'solve', 'issue'] processed_text: ['login', 'problem', 'attendance', 'tool', 'portal', 'dear', 'sir', 'im', 'facing', 'problem', 'login', 'attendance', 'tool', 'portal', 'please', 'help', 'solve', 'issue'] list_processed_text: [['login'], ['problem'], ['attendance'], ['tool'], ['portal'], ['dear'], ['sir'], ['im'], ['facing'], ['problem'], ['login'], ['attendance'], ['tool'], ['portal'], ['please'], ['help'], ['solve'], ['issue']] k: 4877 len: <class 'list'> Data: ['network', 'outage', 'united', 'kingdom', 'company', 'united', 'kingdom', 'company', 'dmvpn', 'rtr', 'went', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'united', 'kingdom', 'company', 'united', 'kingdom', 'company', 'dmvpn', 'rtr', 'went', 'pm', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['united'], ['kingdom'], ['company'], ['united'], ['kingdom'], ['company'], ['dmvpn'], ['rtr'], ['went'], ['pm'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4878 len: <class 'list'> Data: ['job', 'bkwin', 'search', 'server', 'dev', 'daily', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'search', 'server', 'dev', 'daily', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'search', 'server', 'dev', 'daily', 'failed', 'job', 'scheduler', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'job', 'bkwin', 'search', 'server', 'dev', 'daily', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['search'], ['server'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['job'], ['bkwin'], ['search'], ['server'], ['dev'], ['daily'], ['failed'], ['job'], ['scheduler']] k: 4879 len: <class 'list'> Data: ['copy', 'window', 'monitor', 'hi', 'team', 'please', 'fix', 'problem', 'copy', 'window', 'monitor'] processed_text: ['copy', 'window', 'monitor', 'hi', 'team', 'please', 'fix', 'problem', 'copy', 'window', 'monitor'] list_processed_text: [['copy'], ['window'], ['monitor'], ['hi'], ['team'], ['please'], ['fix'], ['problem'], ['copy'], ['window'], ['monitor']] k: 4880 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'exit', 'status', 'system', 'time', 'second', 'elapsed', 'time', 'minute', 'user', 'time', 'second', 'eastern', 'daylight', 'time', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'major', 'lib', 'drive', 'time', 'pm', 'dev', 'rmt', 'cannot', 'write', 'device', 'error', 'backup', 'statistic', 'session', 'queuing', 'time', 'hour', 'completed', 'disk', 'agent', 'failed', 'disk', 'agent', 'aborted', 'disk', 'agent', 'disk', 'agent', 'total', 'completed', 'medium', 'agent', 'failed', 'medium', 'agent', 'aborted', 'medium', 'agent', 'medium', 'agent', 'total', 'mbytes', 'total', 'mb', 'used', 'medium', 'total', 'disk', 'agent', 'error', 'total', 'exit', 'status', 'system', 'time', 'second', 'elapsed', 'time', 'minute', 'user', 'time', 'second', 'eastern', 'daylight', 'time', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['major'], ['lib'], ['drive'], ['time'], ['pm'], ['dev'], ['rmt'], ['cannot'], ['write'], ['device'], ['error'], ['backup'], ['statistic'], ['session'], ['queuing'], ['time'], ['hour'], ['completed'], ['disk'], ['agent'], ['failed'], ['disk'], ['agent'], ['aborted'], ['disk'], ['agent'], ['disk'], ['agent'], ['total'], ['completed'], ['medium'], ['agent'], ['failed'], ['medium'], ['agent'], ['aborted'], ['medium'], ['agent'], ['medium'], ['agent'], ['total'], ['mbytes'], ['total'], ['mb'], ['used'], ['medium'], ['total'], ['disk'], ['agent'], ['error'], ['total'], ['exit'], ['status'], ['system'], ['time'], ['second'], ['elapsed'], ['time'], ['minute'], ['user'], ['time'], ['second'], ['eastern'], ['daylight'], ['time'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4881 len: <class 'list'> Data: ['outlook', 'outlook'] processed_text: ['outlook', 'outlook'] list_processed_text: [['outlook'], ['outlook']] k: 4882 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4883 len: <class 'list'> Data: ['india', 'company', 'ap', 'ind', 'pu', 'lean', 'stack', 'sw', 'went', 'pm', 'india', 'company', 'ap', 'ind', 'kirty', 'pu', 'lean', 'stack', 'sw', 'went', 'pm', 'gigabitethernet', 'uplink', 'company', 'ap', 'ind', 'pu', 'lean', 'stack', 'sw', 'company', 'ap', 'ind', 'pu', 'gf', 'access', 'sw', 'company', 'com'] processed_text: ['india', 'company', 'ap', 'ind', 'pu', 'lean', 'stack', 'sw', 'went', 'pm', 'india', 'company', 'ap', 'ind', 'kirty', 'pu', 'lean', 'stack', 'sw', 'went', 'pm', 'gigabitethernet', 'uplink', 'company', 'ap', 'ind', 'pu', 'lean', 'stack', 'sw', 'company', 'ap', 'ind', 'pu', 'gf', 'access', 'sw', 'company', 'com'] list_processed_text: [['india'], ['company'], ['ap'], ['ind'], ['pu'], ['lean'], ['stack'], ['sw'], ['went'], ['pm'], ['india'], ['company'], ['ap'], ['ind'], ['kirty'], ['pu'], ['lean'], ['stack'], ['sw'], ['went'], ['pm'], ['gigabitethernet'], ['uplink'], ['company'], ['ap'], ['ind'], ['pu'], ['lean'], ['stack'], ['sw'], ['company'], ['ap'], ['ind'], ['pu'], ['gf'], ['access'], ['sw'], ['company'], ['com']] k: 4884 len: <class 'list'> Data: ['finished', 'start', 'sandop', 'process', 'hello', 'help', 'since', 'territory', 'sale', 'director', 'resigned', 'need', 'response', 'reviewing', 'forecast', 'future', 'please', 'help', 'assign', 'approval', 'authorization', 'sandop'] processed_text: ['finished', 'start', 'sandop', 'process', 'hello', 'help', 'since', 'territory', 'sale', 'director', 'resigned', 'need', 'response', 'reviewing', 'forecast', 'future', 'please', 'help', 'assign', 'approval', 'authorization', 'sandop'] list_processed_text: [['finished'], ['start'], ['sandop'], ['process'], ['hello'], ['help'], ['since'], ['territory'], ['sale'], ['director'], ['resigned'], ['need'], ['response'], ['reviewing'], ['forecast'], ['future'], ['please'], ['help'], ['assign'], ['approval'], ['authorization'], ['sandop']] k: 4885 len: <class 'list'> Data: ['erp', 'issue', 'reversed', 'dn', 'sale', 'order', 'went', 'valn', 'complete', 'delivery', 'get', 'thi', 'name', 'maghyuigie', 'ghjkzalez', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'team', 'erp', 'issue', 'reversed', 'dn', 'sale', 'order', 'went', 'valn', 'complete', 'delivery', 'get', 'message', 'value', 'modific', 'counter', 'doc', 'supply', 'chain', 'please', 'help'] processed_text: ['erp', 'issue', 'reversed', 'dn', 'sale', 'order', 'went', 'valn', 'complete', 'delivery', 'get', 'thi', 'name', 'maghyuigie', 'ghjkzalez', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'team', 'erp', 'issue', 'reversed', 'dn', 'sale', 'order', 'went', 'valn', 'complete', 'delivery', 'get', 'message', 'value', 'modific', 'counter', 'doc', 'supply', 'chain', 'please', 'help'] list_processed_text: [['erp'], ['issue'], ['reversed'], ['dn'], ['sale'], ['order'], ['went'], ['valn'], ['complete'], ['delivery'], ['get'], ['thi'], ['name'], ['maghyuigie'], ['ghjkzalez'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hi'], ['team'], ['erp'], ['issue'], ['reversed'], ['dn'], ['sale'], ['order'], ['went'], ['valn'], ['complete'], ['delivery'], ['get'], ['message'], ['value'], ['modific'], ['counter'], ['doc'], ['supply'], ['chain'], ['please'], ['help']] k: 4886 len: <class 'list'> Data: ['skype', 'audio', 'working', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'audio', 'driver', 'checking', 'sound', 'setting', 'restarted', 'pc', 'audio', 'working', 'fine', 'issue', 'resolved'] processed_text: ['skype', 'audio', 'working', 'skype', 'audio', 'working', 'connected', 'user', 'system', 'using', 'teamviewer', 'updated', 'audio', 'driver', 'checking', 'sound', 'setting', 'restarted', 'pc', 'audio', 'working', 'fine', 'issue', 'resolved'] list_processed_text: [['skype'], ['audio'], ['working'], ['skype'], ['audio'], ['working'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['updated'], ['audio'], ['driver'], ['checking'], ['sound'], ['setting'], ['restarted'], ['pc'], ['audio'], ['working'], ['fine'], ['issue'], ['resolved']] k: 4887 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4888 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 4889 len: <class 'list'> Data: ['extend', 'network', 'cable', 'erp', 'printer', 'network', 'cable', 'erp', 'printer', 'em', 'extend', 'ro', 'heiner', 'sponsel'] processed_text: ['extend', 'network', 'cable', 'erp', 'printer', 'network', 'cable', 'erp', 'printer', 'em', 'extend', 'ro', 'heiner', 'sponsel'] list_processed_text: [['extend'], ['network'], ['cable'], ['erp'], ['printer'], ['network'], ['cable'], ['erp'], ['printer'], ['em'], ['extend'], ['ro'], ['heiner'], ['sponsel']] k: 4890 len: <class 'list'> Data: ['need', 'add', 'pc', 'lvlw', 'domain', 'need', 'add', 'pc', 'lvlw', 'domain'] processed_text: ['need', 'add', 'pc', 'lvlw', 'domain', 'need', 'add', 'pc', 'lvlw', 'domain'] list_processed_text: [['need'], ['add'], ['pc'], ['lvlw'], ['domain'], ['need'], ['add'], ['pc'], ['lvlw'], ['domain']] k: 4891 len: <class 'list'> Data: ['erp', 'netweaver', 'business', 'client', 'open', 'drawing', 'name', 'xyjkndus', 'ltcevgap', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'netweaver', 'business', 'client', 'open', 'drawing'] processed_text: ['erp', 'netweaver', 'business', 'client', 'open', 'drawing', 'name', 'xyjkndus', 'ltcevgap', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'netweaver', 'business', 'client', 'open', 'drawing'] list_processed_text: [['erp'], ['netweaver'], ['business'], ['client'], ['open'], ['drawing'], ['name'], ['xyjkndus'], ['ltcevgap'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['netweaver'], ['business'], ['client'], ['open'], ['drawing']] k: 4892 len: <class 'list'> Data: ['easiest', 'way', 'change', 'password', 'name', 'slrgconp', 'onukdesq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'easiest', 'way', 'change', 'password'] processed_text: ['easiest', 'way', 'change', 'password', 'name', 'slrgconp', 'onukdesq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'easiest', 'way', 'change', 'password'] list_processed_text: [['easiest'], ['way'], ['change'], ['password'], ['name'], ['slrgconp'], ['onukdesq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['easiest'], ['way'], ['change'], ['password']] k: 4893 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 4894 len: <class 'list'> Data: ['unable', 'log', 'engineering', 'tool', 'unable', 'log', 'engineering', 'tool'] processed_text: ['unable', 'log', 'engineering', 'tool', 'unable', 'log', 'engineering', 'tool'] list_processed_text: [['unable'], ['log'], ['engineering'], ['tool'], ['unable'], ['log'], ['engineering'], ['tool']] k: 4895 len: <class 'list'> Data: ['user', 'name', 'fabxjimdghtyo', 'depfugcy', 'user', 'name', 'fabxjimdghtyo', 'depfugcy'] processed_text: ['user', 'name', 'fabxjimdghtyo', 'depfugcy', 'user', 'name', 'fabxjimdghtyo', 'depfugcy'] list_processed_text: [['user'], ['name'], ['fabxjimdghtyo'], ['depfugcy'], ['user'], ['name'], ['fabxjimdghtyo'], ['depfugcy']] k: 4896 len: <class 'list'> Data: ['vip', 'printer', 'hr', 'printing', 'pdf', 'document', 'printer', 'hr', 'printing', 'pdf', 'document', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'printer', 'readded', 'printer', 'able', 'print', 'word', 'doc', 'able', 'print', 'pdf', 'doc', 'user', 'issue', 'user', 'need', 'local', 'take', 'look', 'aerp', 'computer', 'name', 'lhol', 'contact'] processed_text: ['vip', 'printer', 'hr', 'printing', 'pdf', 'document', 'printer', 'hr', 'printing', 'pdf', 'document', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'printer', 'readded', 'printer', 'able', 'print', 'word', 'doc', 'able', 'print', 'pdf', 'doc', 'user', 'issue', 'user', 'need', 'local', 'take', 'look', 'aerp', 'computer', 'name', 'lhol', 'contact'] list_processed_text: [['vip'], ['printer'], ['hr'], ['printing'], ['pdf'], ['document'], ['printer'], ['hr'], ['printing'], ['pdf'], ['document'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['deleted'], ['printer'], ['readded'], ['printer'], ['able'], ['print'], ['word'], ['doc'], ['able'], ['print'], ['pdf'], ['doc'], ['user'], ['issue'], ['user'], ['need'], ['local'], ['take'], ['look'], ['aerp'], ['computer'], ['name'], ['lhol'], ['contact']] k: 4897 len: <class 'list'> Data: ['password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'window', 'password', 'erp', 'password', 'laffekr'] processed_text: ['password', 'reset', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'window', 'password', 'erp', 'password', 'laffekr'] list_processed_text: [['password'], ['reset'], ['name'], ['mfeyouli'], ['ndobtzpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['reset'], ['window'], ['password'], ['erp'], ['password'], ['laffekr']] k: 4898 len: <class 'list'> Data: ['vendor', 'need', 'save', 'file', 'local', 'pc', 'hi', 'please', 'reference', 'inc', 'another', 'vendor', 'vvnookr', 'involved', 'usa', 'carve', 'project', 'need', 'save', 'file', 'local', 'pc', 'add', 'vvnookr', 'exception', 'group', 'nicrhty', 'edmhihryu', 'approve', 'necessary'] processed_text: ['vendor', 'need', 'save', 'file', 'local', 'pc', 'hi', 'please', 'reference', 'inc', 'another', 'vendor', 'vvnookr', 'involved', 'usa', 'carve', 'project', 'need', 'save', 'file', 'local', 'pc', 'add', 'vvnookr', 'exception', 'group', 'nicrhty', 'edmhihryu', 'approve', 'necessary'] list_processed_text: [['vendor'], ['need'], ['save'], ['file'], ['local'], ['pc'], ['hi'], ['please'], ['reference'], ['inc'], ['another'], ['vendor'], ['vvnookr'], ['involved'], ['usa'], ['carve'], ['project'], ['need'], ['save'], ['file'], ['local'], ['pc'], ['add'], ['vvnookr'], ['exception'], ['group'], ['nicrhty'], ['edmhihryu'], ['approve'], ['necessary']] k: 4899 len: <class 'list'> Data: ['erp', 'runtime', 'error', 'eventually', 'seeing', 'good', 'afternoon', 'difficulty', 'looking', 'top', 'notch', 'drawing', 'keep', 'getting', 'time', 'error', 'screen', 'come', 'looking', 'drawing', 'cvn', 'page', 'directed', 'following', 'see', 'top', 'notch', 'drawing', 'sure', 'permission', 'problem', 'erp', 'problem', 'way', 'could', 'shed', 'light', 'get', 'try', 'look', 'drawing'] processed_text: ['erp', 'runtime', 'error', 'eventually', 'seeing', 'good', 'afternoon', 'difficulty', 'looking', 'top', 'notch', 'drawing', 'keep', 'getting', 'time', 'error', 'screen', 'come', 'looking', 'drawing', 'cvn', 'page', 'directed', 'following', 'see', 'top', 'notch', 'drawing', 'sure', 'permission', 'problem', 'erp', 'problem', 'way', 'could', 'shed', 'light', 'get', 'try', 'look', 'drawing'] list_processed_text: [['erp'], ['runtime'], ['error'], ['eventually'], ['seeing'], ['good'], ['afternoon'], ['difficulty'], ['looking'], ['top'], ['notch'], ['drawing'], ['keep'], ['getting'], ['time'], ['error'], ['screen'], ['come'], ['looking'], ['drawing'], ['cvn'], ['page'], ['directed'], ['following'], ['see'], ['top'], ['notch'], ['drawing'], ['sure'], ['permission'], ['problem'], ['erp'], ['problem'], ['way'], ['could'], ['shed'], ['light'], ['get'], ['try'], ['look'], ['drawing']] k: 4900 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 4901 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 4902 len: <class 'list'> Data: ['snagit', 'company', 'corporate', 'license', 'snagit', 'editor', 'qmglkaru', 'qiwhfkdv', 'manager', 'business', 'system', 'crm', 'news', 'final', 'release', 'fy', 'dynamic', 'crm', 'project', 'microsoft', 'dynamic', 'crm', 'mobile', 'app', 'available', 'download', 'crm', 'user', 'app', 'installed', 'io', 'android', 'window', 'phone', 'tablet', 'including', 'dell', 'window', 'tablet', 'laptop', 'detail', 'app', 'watch', 'launch', 'video', 'need', 'help', 'dynamic', 'crm', 'click', 'chat', 'live', 'agent', 'dynamic', 'crm', 'click'] processed_text: ['snagit', 'company', 'corporate', 'license', 'snagit', 'editor', 'qmglkaru', 'qiwhfkdv', 'manager', 'business', 'system', 'crm', 'news', 'final', 'release', 'fy', 'dynamic', 'crm', 'project', 'microsoft', 'dynamic', 'crm', 'mobile', 'app', 'available', 'download', 'crm', 'user', 'app', 'installed', 'io', 'android', 'window', 'phone', 'tablet', 'including', 'dell', 'window', 'tablet', 'laptop', 'detail', 'app', 'watch', 'launch', 'video', 'need', 'help', 'dynamic', 'crm', 'click', 'chat', 'live', 'agent', 'dynamic', 'crm', 'click'] list_processed_text: [['snagit'], ['company'], ['corporate'], ['license'], ['snagit'], ['editor'], ['qmglkaru'], ['qiwhfkdv'], ['manager'], ['business'], ['system'], ['crm'], ['news'], ['final'], ['release'], ['fy'], ['dynamic'], ['crm'], ['project'], ['microsoft'], ['dynamic'], ['crm'], ['mobile'], ['app'], ['available'], ['download'], ['crm'], ['user'], ['app'], ['installed'], ['io'], ['android'], ['window'], ['phone'], ['tablet'], ['including'], ['dell'], ['window'], ['tablet'], ['laptop'], ['detail'], ['app'], ['watch'], ['launch'], ['video'], ['need'], ['help'], ['dynamic'], ['crm'], ['click'], ['chat'], ['live'], ['agent'], ['dynamic'], ['crm'], ['click']] k: 4903 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'name', 'oikhfqyl', 'gcknzthb', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'onto', 'outlook', 'get', 'blue', 'screen', 'dot', 'moving', 'bottom', 'tried', 'cold', 'boot', 'thrgxqsuojr', 'xwbesorfs'] processed_text: ['unable', 'open', 'outlook', 'name', 'oikhfqyl', 'gcknzthb', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'onto', 'outlook', 'get', 'blue', 'screen', 'dot', 'moving', 'bottom', 'tried', 'cold', 'boot', 'thrgxqsuojr', 'xwbesorfs'] list_processed_text: [['unable'], ['open'], ['outlook'], ['name'], ['oikhfqyl'], ['gcknzthb'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['get'], ['onto'], ['outlook'], ['get'], ['blue'], ['screen'], ['dot'], ['moving'], ['bottom'], ['tried'], ['cold'], ['boot'], ['thrgxqsuojr'], ['xwbesorfs']] k: 4904 len: <class 'list'> Data: ['user', 'harrfgyibs', 'locked', 'erp', 'mii', 'system', 'user', 'harrfgyibs', 'locked', 'erp', 'mii', 'system', 'help', 'user', 'login', 'unlocking', 'user', 'account', 'issue', 'resolved'] processed_text: ['user', 'harrfgyibs', 'locked', 'erp', 'mii', 'system', 'user', 'harrfgyibs', 'locked', 'erp', 'mii', 'system', 'help', 'user', 'login', 'unlocking', 'user', 'account', 'issue', 'resolved'] list_processed_text: [['user'], ['harrfgyibs'], ['locked'], ['erp'], ['mii'], ['system'], ['user'], ['harrfgyibs'], ['locked'], ['erp'], ['mii'], ['system'], ['help'], ['user'], ['login'], ['unlocking'], ['user'], ['account'], ['issue'], ['resolved']] k: 4905 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4906 len: <class 'list'> Data: ['telecom', 'vendor', 'dongle', 'help', 'configure', 'dongle', 'new', 'laptop'] processed_text: ['telecom', 'vendor', 'dongle', 'help', 'configure', 'dongle', 'new', 'laptop'] list_processed_text: [['telecom'], ['vendor'], ['dongle'], ['help'], ['configure'], ['dongle'], ['new'], ['laptop']] k: 4907 len: <class 'list'> Data: ['id', 'printer', 'printer', 'setup'] processed_text: ['id', 'printer', 'printer', 'setup'] list_processed_text: [['id'], ['printer'], ['printer'], ['setup']] k: 4908 len: <class 'list'> Data: ['id', 'printer', 'issue', 'id', 'printer', 'working'] processed_text: ['id', 'printer', 'issue', 'id', 'printer', 'working'] list_processed_text: [['id'], ['printer'], ['issue'], ['id'], ['printer'], ['working']] k: 4909 len: <class 'list'> Data: ['user', 'want', 'messgage', 'recall', 'aerp', 'urgent', 'user', 'want', 'messgage', 'recall', 'aerp', 'urgent'] processed_text: ['user', 'want', 'messgage', 'recall', 'aerp', 'urgent', 'user', 'want', 'messgage', 'recall', 'aerp', 'urgent'] list_processed_text: [['user'], ['want'], ['messgage'], ['recall'], ['aerp'], ['urgent'], ['user'], ['want'], ['messgage'], ['recall'], ['aerp'], ['urgent']] k: 4910 len: <class 'list'> Data: ['erp', 'response', 'time', 'long', 'even', 'simple', 'transaction', 'please', 'check', 'plant', 'vsid', 'reporting', 'erp', 'response', 'time', 'long', 'even', 'simple', 'transaction', 'please', 'check', 'plant', 'vsid', 'reporting'] processed_text: ['erp', 'response', 'time', 'long', 'even', 'simple', 'transaction', 'please', 'check', 'plant', 'vsid', 'reporting', 'erp', 'response', 'time', 'long', 'even', 'simple', 'transaction', 'please', 'check', 'plant', 'vsid', 'reporting'] list_processed_text: [['erp'], ['response'], ['time'], ['long'], ['even'], ['simple'], ['transaction'], ['please'], ['check'], ['plant'], ['vsid'], ['reporting'], ['erp'], ['response'], ['time'], ['long'], ['even'], ['simple'], ['transaction'], ['please'], ['check'], ['plant'], ['vsid'], ['reporting']] k: 4911 len: <class 'list'> Data: ['circuit', 'outage', 'apac', 'company', 'secondary', 'vpn', 'circuit', 'since', 'pm', 'et', 'site', 'primary', 'mpls', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'slo', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'apac', 'company', 'secondary', 'vpn', 'circuit', 'since', 'pm', 'et', 'site', 'primary', 'mpls', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'slo', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['apac'], ['company'], ['secondary'], ['vpn'], ['circuit'], ['since'], ['pm'], ['et'], ['site'], ['primary'], ['mpls'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['slo'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['na'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4912 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 4913 len: <class 'list'> Data: ['outlook', 'constantly', 'freeze', 'contact', 'xt', 'needed', 'error', 'message'] processed_text: ['outlook', 'constantly', 'freeze', 'contact', 'xt', 'needed', 'error', 'message'] list_processed_text: [['outlook'], ['constantly'], ['freeze'], ['contact'], ['xt'], ['needed'], ['error'], ['message']] k: 4914 len: <class 'list'> Data: ['unable', 'update', 'password', 'password', 'management', 'tool', 'unable', 'update', 'password', 'password', 'management', 'tool'] processed_text: ['unable', 'update', 'password', 'password', 'management', 'tool', 'unable', 'update', 'password', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['update'], ['password'], ['password'], ['management'], ['tool']] k: 4915 len: <class 'list'> Data: ['mapping', 'network', 'drive', 'mapping', 'network', 'drive'] processed_text: ['mapping', 'network', 'drive', 'mapping', 'network', 'drive'] list_processed_text: [['mapping'], ['network'], ['drive'], ['mapping'], ['network'], ['drive']] k: 4916 len: <class 'list'> Data: ['cad', 'pc', 'main', 'training', 'room', 'please', 'configure', 'install', 'cad', 'machine', 'av', 'cabinet', 'new', 'training', 'room', 'machine', 'need', 'standard', 'cad', 'configuration', 'please', 'also', 'install', 'wireless', 'mouse', 'keybankrd', 'cad', 'manipulator', 'machine', 'need', 'setup', 'multiple', 'user', 'sign', 'credential', 'per', 'request', 'ehs', 'also', 'need', 'dvd', 'drive', 'play', 'safety', 'training', 'video'] processed_text: ['cad', 'pc', 'main', 'training', 'room', 'please', 'configure', 'install', 'cad', 'machine', 'av', 'cabinet', 'new', 'training', 'room', 'machine', 'need', 'standard', 'cad', 'configuration', 'please', 'also', 'install', 'wireless', 'mouse', 'keybankrd', 'cad', 'manipulator', 'machine', 'need', 'setup', 'multiple', 'user', 'sign', 'credential', 'per', 'request', 'ehs', 'also', 'need', 'dvd', 'drive', 'play', 'safety', 'training', 'video'] list_processed_text: [['cad'], ['pc'], ['main'], ['training'], ['room'], ['please'], ['configure'], ['install'], ['cad'], ['machine'], ['av'], ['cabinet'], ['new'], ['training'], ['room'], ['machine'], ['need'], ['standard'], ['cad'], ['configuration'], ['please'], ['also'], ['install'], ['wireless'], ['mouse'], ['keybankrd'], ['cad'], ['manipulator'], ['machine'], ['need'], ['setup'], ['multiple'], ['user'], ['sign'], ['credential'], ['per'], ['request'], ['ehs'], ['also'], ['need'], ['dvd'], ['drive'], ['play'], ['safety'], ['training'], ['video']] k: 4917 len: <class 'list'> Data: ['sent', 'snipping', 'tool', 'unable', 'convert', 'planned', 'order', 'item', 'also', 'unable', 'create', 'production', 'order', 'item', 'received', 'error', 'message', 'time'] processed_text: ['sent', 'snipping', 'tool', 'unable', 'convert', 'planned', 'order', 'item', 'also', 'unable', 'create', 'production', 'order', 'item', 'received', 'error', 'message', 'time'] list_processed_text: [['sent'], ['snipping'], ['tool'], ['unable'], ['convert'], ['planned'], ['order'], ['item'], ['also'], ['unable'], ['create'], ['production'], ['order'], ['item'], ['received'], ['error'], ['message'], ['time']] k: 4918 len: <class 'list'> Data: ['drive', 'responding', 'mount', 'request', 'library', 'drive', 'responding', 'mount', 'request', 'library'] processed_text: ['drive', 'responding', 'mount', 'request', 'library', 'drive', 'responding', 'mount', 'request', 'library'] list_processed_text: [['drive'], ['responding'], ['mount'], ['request'], ['library'], ['drive'], ['responding'], ['mount'], ['request'], ['library']] k: 4919 len: <class 'list'> Data: ['cannot', 'log', 'skype', 'cannot', 'log', 'skype', 'saying', 'credential', 'bad'] processed_text: ['cannot', 'log', 'skype', 'cannot', 'log', 'skype', 'saying', 'credential', 'bad'] list_processed_text: [['cannot'], ['log'], ['skype'], ['cannot'], ['log'], ['skype'], ['saying'], ['credential'], ['bad']] k: 4920 len: <class 'list'> Data: ['vm', 'lhqsm', 'taking', 'excessive', 'length', 'time', 'release', 'backup', 'snapshot', 'backup', 'tool', 'backup', 'lhqsm', 'taking', 'hour', 'release', 'snapshot', 'end', 'backup', 'look', 'vm', 'advise', 'problem', 'lhqsm'] processed_text: ['vm', 'lhqsm', 'taking', 'excessive', 'length', 'time', 'release', 'backup', 'snapshot', 'backup', 'tool', 'backup', 'lhqsm', 'taking', 'hour', 'release', 'snapshot', 'end', 'backup', 'look', 'vm', 'advise', 'problem', 'lhqsm'] list_processed_text: [['vm'], ['lhqsm'], ['taking'], ['excessive'], ['length'], ['time'], ['release'], ['backup'], ['snapshot'], ['backup'], ['tool'], ['backup'], ['lhqsm'], ['taking'], ['hour'], ['release'], ['snapshot'], ['end'], ['backup'], ['look'], ['vm'], ['advise'], ['problem'], ['lhqsm']] k: 4921 len: <class 'list'> Data: ['ticket', 'update', 'inc', 'ticket', 'update', 'inc'] processed_text: ['ticket', 'update', 'inc', 'ticket', 'update', 'inc'] list_processed_text: [['ticket'], ['update'], ['inc'], ['ticket'], ['update'], ['inc']] k: 4922 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sid', 'account', 'password', 'reset', 'erp', 'sid', 'account'] processed_text: ['password', 'reset', 'erp', 'sid', 'account', 'password', 'reset', 'erp', 'sid', 'account'] list_processed_text: [['password'], ['reset'], ['erp'], ['sid'], ['account'], ['password'], ['reset'], ['erp'], ['sid'], ['account']] k: 4923 len: <class 'list'> Data: ['quantum', 'oracle', 'database', 'connection', 'working', 'hostname', 'hostname', 'database', 'listener', 'functioning', 'ever', 'try', 'uacyltoe', 'hxgaycze', 'connection', 'connect', 'affection', 'production', 'production', 'making', 'user', 'enter', 'data', 'manually', 'database', 'quantum', 'glog', 'ip', 'address', 'hostname', 'proglovia', 'ip', 'address', 'cisco', 'ucs', 'manager', 'console', 'tried', 'every', 'set', 'credential', 'access', 'anyone', 'change', 'credential', 'hostname', 'hostname', 'restarted', 'requested', 'please', 'check', 'database', 'listener', 'databaseslisted', 'quantum', 'glog', 'glogold'] processed_text: ['quantum', 'oracle', 'database', 'connection', 'working', 'hostname', 'hostname', 'database', 'listener', 'functioning', 'ever', 'try', 'uacyltoe', 'hxgaycze', 'connection', 'connect', 'affection', 'production', 'production', 'making', 'user', 'enter', 'data', 'manually', 'database', 'quantum', 'glog', 'ip', 'address', 'hostname', 'proglovia', 'ip', 'address', 'cisco', 'ucs', 'manager', 'console', 'tried', 'every', 'set', 'credential', 'access', 'anyone', 'change', 'credential', 'hostname', 'hostname', 'restarted', 'requested', 'please', 'check', 'database', 'listener', 'databaseslisted', 'quantum', 'glog', 'glogold'] list_processed_text: [['quantum'], ['oracle'], ['database'], ['connection'], ['working'], ['hostname'], ['hostname'], ['database'], ['listener'], ['functioning'], ['ever'], ['try'], ['uacyltoe'], ['hxgaycze'], ['connection'], ['connect'], ['affection'], ['production'], ['production'], ['making'], ['user'], ['enter'], ['data'], ['manually'], ['database'], ['quantum'], ['glog'], ['ip'], ['address'], ['hostname'], ['proglovia'], ['ip'], ['address'], ['cisco'], ['ucs'], ['manager'], ['console'], ['tried'], ['every'], ['set'], ['credential'], ['access'], ['anyone'], ['change'], ['credential'], ['hostname'], ['hostname'], ['restarted'], ['requested'], ['please'], ['check'], ['database'], ['listener'], ['databaseslisted'], ['quantum'], ['glog'], ['glogold']] k: 4924 len: <class 'list'> Data: ['german', 'call', 'german', 'call'] processed_text: ['german', 'call', 'german', 'call'] list_processed_text: [['german'], ['call'], ['german'], ['call']] k: 4925 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 4926 len: <class 'list'> Data: ['create', 'delivery', 'note', 'sto', 'plant', 'plant', 'create', 'delivery', 'note', 'sto', 'plant', 'plant', 'item', 'item', 'sto', 'available', 'stock', 'plant', 'system', 'see', 'please', 'check', 'generate', 'delivery', 'note', 'quite', 'urgent', 'drum', 'need', 'sent', 'apac', 'exposition', 'apac'] processed_text: ['create', 'delivery', 'note', 'sto', 'plant', 'plant', 'create', 'delivery', 'note', 'sto', 'plant', 'plant', 'item', 'item', 'sto', 'available', 'stock', 'plant', 'system', 'see', 'please', 'check', 'generate', 'delivery', 'note', 'quite', 'urgent', 'drum', 'need', 'sent', 'apac', 'exposition', 'apac'] list_processed_text: [['create'], ['delivery'], ['note'], ['sto'], ['plant'], ['plant'], ['create'], ['delivery'], ['note'], ['sto'], ['plant'], ['plant'], ['item'], ['item'], ['sto'], ['available'], ['stock'], ['plant'], ['system'], ['see'], ['please'], ['check'], ['generate'], ['delivery'], ['note'], ['quite'], ['urgent'], ['drum'], ['need'], ['sent'], ['apac'], ['exposition'], ['apac']] k: 4927 len: <class 'list'> Data: ['vpn', 'access', 'unable', 'access', 'network', 'folder', 'connected', 'vpn'] processed_text: ['vpn', 'access', 'unable', 'access', 'network', 'folder', 'connected', 'vpn'] list_processed_text: [['vpn'], ['access'], ['unable'], ['access'], ['network'], ['folder'], ['connected'], ['vpn']] k: 4928 len: <class 'list'> Data: ['node', 'germany', 'pbx', 'trunk', 'card', 'located', 'germany', 'pm', 'et', 'node', 'germany', 'pbx', 'trunk', 'card', 'located', 'germany', 'pm', 'et'] processed_text: ['node', 'germany', 'pbx', 'trunk', 'card', 'located', 'germany', 'pm', 'et', 'node', 'germany', 'pbx', 'trunk', 'card', 'located', 'germany', 'pm', 'et'] list_processed_text: [['node'], ['germany'], ['pbx'], ['trunk'], ['card'], ['located'], ['germany'], ['pm'], ['et'], ['node'], ['germany'], ['pbx'], ['trunk'], ['card'], ['located'], ['germany'], ['pm'], ['et']] k: 4929 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 4930 len: <class 'list'> Data: ['need', 'access', 'znqcljxt', 'azvoespk', 'collaboration', 'platform', 'contact'] processed_text: ['need', 'access', 'znqcljxt', 'azvoespk', 'collaboration', 'platform', 'contact'] list_processed_text: [['need'], ['access'], ['znqcljxt'], ['azvoespk'], ['collaboration'], ['platform'], ['contact']] k: 4931 len: <class 'list'> Data: ['npc', 'plant', 'selected', 'notified', 'kuznvase', 'jrxtbuqz', 'npc', 'issue', 'apparently', 'plant', 'selected', 'execution', 'task', 'please', 'investigate', 'talk', 'thilo', 'specific'] processed_text: ['npc', 'plant', 'selected', 'notified', 'kuznvase', 'jrxtbuqz', 'npc', 'issue', 'apparently', 'plant', 'selected', 'execution', 'task', 'please', 'investigate', 'talk', 'thilo', 'specific'] list_processed_text: [['npc'], ['plant'], ['selected'], ['notified'], ['kuznvase'], ['jrxtbuqz'], ['npc'], ['issue'], ['apparently'], ['plant'], ['selected'], ['execution'], ['task'], ['please'], ['investigate'], ['talk'], ['thilo'], ['specific']] k: 4932 len: <class 'list'> Data: ['sid', 'crm', 'problem', 'please', 'help', 'fix', 'aerp', 'thanks', 'dear', 'helper', 'please', 'see', 'message', 'trying', 'process', 'complaint', 'allow', 'change', 'anything', 'say', 'crm', 'processed', 'user', 'sundj', 'sundj', 'would', 'please', 'help', 'fix', 'reboot', 'computer', 'message', 'still'] processed_text: ['sid', 'crm', 'problem', 'please', 'help', 'fix', 'aerp', 'thanks', 'dear', 'helper', 'please', 'see', 'message', 'trying', 'process', 'complaint', 'allow', 'change', 'anything', 'say', 'crm', 'processed', 'user', 'sundj', 'sundj', 'would', 'please', 'help', 'fix', 'reboot', 'computer', 'message', 'still'] list_processed_text: [['sid'], ['crm'], ['problem'], ['please'], ['help'], ['fix'], ['aerp'], ['thanks'], ['dear'], ['helper'], ['please'], ['see'], ['message'], ['trying'], ['process'], ['complaint'], ['allow'], ['change'], ['anything'], ['say'], ['crm'], ['processed'], ['user'], ['sundj'], ['sundj'], ['would'], ['please'], ['help'], ['fix'], ['reboot'], ['computer'], ['message'], ['still']] k: 4933 len: <class 'list'> Data: ['problem', 'crm', 'hi', 'signed', 'crm', 'got', 'error', 'message', 'reporting', 'engineering', 'tool', 'load', 'see', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'crm', 'hi', 'signed', 'crm', 'got', 'error', 'message', 'reporting', 'engineering', 'tool', 'load', 'see', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['crm'], ['hi'], ['signed'], ['crm'], ['got'], ['error'], ['message'], ['reporting'], ['engineering'], ['tool'], ['load'], ['see'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 4934 len: <class 'list'> Data: ['error', 'trying', 'access', 'sid', 'quality', 'system', 'erp', 'error', 'trying', 'access', 'sid', 'quality', 'system', 'erp'] processed_text: ['error', 'trying', 'access', 'sid', 'quality', 'system', 'erp', 'error', 'trying', 'access', 'sid', 'quality', 'system', 'erp'] list_processed_text: [['error'], ['trying'], ['access'], ['sid'], ['quality'], ['system'], ['erp'], ['error'], ['trying'], ['access'], ['sid'], ['quality'], ['system'], ['erp']] k: 4935 len: <class 'list'> Data: ['u', 'drive', 'access', 'hello', 'next', 'one', 'month', 'bedord', 'usa', 'request', 'provide', 'access', 'drive', 'ldbsm', 'engineering', 'application', 'since', 'taking', 'much', 'time', 'open', 'nx', 'document', 'engineering', 'tool', 'current', 'drive', 'path', 'hostname', 'engineering', 'application', 'kindly', 'process', 'aerp'] processed_text: ['u', 'drive', 'access', 'hello', 'next', 'one', 'month', 'bedord', 'usa', 'request', 'provide', 'access', 'drive', 'ldbsm', 'engineering', 'application', 'since', 'taking', 'much', 'time', 'open', 'nx', 'document', 'engineering', 'tool', 'current', 'drive', 'path', 'hostname', 'engineering', 'application', 'kindly', 'process', 'aerp'] list_processed_text: [['u'], ['drive'], ['access'], ['hello'], ['next'], ['one'], ['month'], ['bedord'], ['usa'], ['request'], ['provide'], ['access'], ['drive'], ['ldbsm'], ['engineering'], ['application'], ['since'], ['taking'], ['much'], ['time'], ['open'], ['nx'], ['document'], ['engineering'], ['tool'], ['current'], ['drive'], ['path'], ['hostname'], ['engineering'], ['application'], ['kindly'], ['process'], ['aerp']] k: 4936 len: <class 'list'> Data: ['lizenz', 'let', 'talk', 'video', "can't", 'ffnetted'] processed_text: ['lizenz', 'let', 'talk', 'video', "can't", 'ffnetted'] list_processed_text: [['lizenz'], ['let'], ['talk'], ['video'], ["can't"], ['ffnetted']] k: 4937 len: <class 'list'> Data: ['usa', 'nc', 'server', 'hostname', 'responding', 'access', 'usa', 'nc', 'server', 'hostname', 'responding', 'access'] processed_text: ['usa', 'nc', 'server', 'hostname', 'responding', 'access', 'usa', 'nc', 'server', 'hostname', 'responding', 'access'] list_processed_text: [['usa'], ['nc'], ['server'], ['hostname'], ['responding'], ['access'], ['usa'], ['nc'], ['server'], ['hostname'], ['responding'], ['access']] k: 4938 len: <class 'list'> Data: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'help', 'team', 'attached', 'find', 'agreement', 'need', 'next', 'get', 'mail', 'push', 'calendar', 'synchronization', 'etc', 'mit', 'freundlichem', 'gru', 'best'] processed_text: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'help', 'team', 'attached', 'find', 'agreement', 'need', 'next', 'get', 'mail', 'push', 'calendar', 'synchronization', 'etc', 'mit', 'freundlichem', 'gru', 'best'] list_processed_text: [['employee'], ['owned'], ['mobility'], ['agreement'], ['hello'], ['help'], ['team'], ['attached'], ['find'], ['agreement'], ['need'], ['next'], ['get'], ['mail'], ['push'], ['calendar'], ['synchronization'], ['etc'], ['mit'], ['freundlichem'], ['gru'], ['best']] k: 4939 len: <class 'list'> Data: ['sync', 'hr', 'org', 'detail', 'purchasing', 'sync', 'hr', 'org', 'detail', 'purchasing', 'dhmfuvgw', 'jralkfcb', 'hufghygh', 'getting', 'following', 'error', 'data', 'found', 'employee', 'inform', 'system', 'administration'] processed_text: ['sync', 'hr', 'org', 'detail', 'purchasing', 'sync', 'hr', 'org', 'detail', 'purchasing', 'dhmfuvgw', 'jralkfcb', 'hufghygh', 'getting', 'following', 'error', 'data', 'found', 'employee', 'inform', 'system', 'administration'] list_processed_text: [['sync'], ['hr'], ['org'], ['detail'], ['purchasing'], ['sync'], ['hr'], ['org'], ['detail'], ['purchasing'], ['dhmfuvgw'], ['jralkfcb'], ['hufghygh'], ['getting'], ['following'], ['error'], ['data'], ['found'], ['employee'], ['inform'], ['system'], ['administration']] k: 4940 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4941 len: <class 'list'> Data: ['duplicate', 'machine', 'displaying', 'machine', 'list', 'work', 'center', 'changed', 'machine', 'erp', 'pm', 'machine', 'old', 'new', 'work', 'center', 'appear', 'machine', 'list', 'mii'] processed_text: ['duplicate', 'machine', 'displaying', 'machine', 'list', 'work', 'center', 'changed', 'machine', 'erp', 'pm', 'machine', 'old', 'new', 'work', 'center', 'appear', 'machine', 'list', 'mii'] list_processed_text: [['duplicate'], ['machine'], ['displaying'], ['machine'], ['list'], ['work'], ['center'], ['changed'], ['machine'], ['erp'], ['pm'], ['machine'], ['old'], ['new'], ['work'], ['center'], ['appear'], ['machine'], ['list'], ['mii']] k: 4942 len: <class 'list'> Data: ['skype', 'audio', 'working', 'kind', 'attn', 'kindly', 'resolve', 'subject', 'issue', 'earliest', 'best'] processed_text: ['skype', 'audio', 'working', 'kind', 'attn', 'kindly', 'resolve', 'subject', 'issue', 'earliest', 'best'] list_processed_text: [['skype'], ['audio'], ['working'], ['kind'], ['attn'], ['kindly'], ['resolve'], ['subject'], ['issue'], ['earliest'], ['best']] k: 4943 len: <class 'list'> Data: ['drucker', 'ng', 'funktioniert', 'nicht', 'mehr', 'hardware', 'problem', 'dringend', 'ben', 'tigt', 'r', 'auftragspapiere', 'und', 'bestellungen', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hp', 'laserjet', 'detailed', 'description', 'problem', 'papier', 'staut', 'sich', 'e', 'kommt', 'kein', 'ausdruck', 'raus', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'erp', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['drucker', 'ng', 'funktioniert', 'nicht', 'mehr', 'hardware', 'problem', 'dringend', 'ben', 'tigt', 'r', 'auftragspapiere', 'und', 'bestellungen', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hp', 'laserjet', 'detailed', 'description', 'problem', 'papier', 'staut', 'sich', 'e', 'kommt', 'kein', 'ausdruck', 'raus', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'erp', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'sid', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['drucker'], ['ng'], ['funktioniert'], ['nicht'], ['mehr'], ['hardware'], ['problem'], ['dringend'], ['ben'], ['tigt'], ['r'], ['auftragspapiere'], ['und'], ['bestellungen'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['hp'], ['laserjet'], ['detailed'], ['description'], ['problem'], ['papier'], ['staut'], ['sich'], ['e'], ['kommt'], ['kein'], ['ausdruck'], ['raus'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['erp'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['sid'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 4944 len: <class 'list'> Data: ['problem', 'engineering', 'tool', 'hello', 'problem', 'transferring', 'report', 'engineering', 'tool', 'system', 'see', 'yellow', 'field', 'already', 'filled', 'field', 'several', 'time', 'saved', 'want', 'report', 'transferred', 'system', 'error', 'message', 'see', 'appendix', 'sincerely,', 'best'] processed_text: ['problem', 'engineering', 'tool', 'hello', 'problem', 'transferring', 'report', 'engineering', 'tool', 'system', 'see', 'yellow', 'field', 'already', 'filled', 'field', 'several', 'time', 'saved', 'want', 'report', 'transferred', 'system', 'error', 'message', 'see', 'appendix', 'sincerely,', 'best'] list_processed_text: [['problem'], ['engineering'], ['tool'], ['hello'], ['problem'], ['transferring'], ['report'], ['engineering'], ['tool'], ['system'], ['see'], ['yellow'], ['field'], ['already'], ['filled'], ['field'], ['several'], ['time'], ['saved'], ['want'], ['report'], ['transferred'], ['system'], ['error'], ['message'], ['see'], ['appendix'], ['sincerely,'], ['best']] k: 4945 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call', 'germany', 'interaction', 'id'] processed_text: ['blank', 'call', 'blank', 'call', 'germany', 'interaction', 'id'] list_processed_text: [['blank'], ['call'], ['blank'], ['call'], ['germany'], ['interaction'], ['id']] k: 4946 len: <class 'list'> Data: ['md', 'extenral', 'monitor', 'stay', 'one', 'flash', 'briefly', 'go', 'md', 'extenral', 'monitor', 'stay', 'one', 'flash', 'briefly', 'go'] processed_text: ['md', 'extenral', 'monitor', 'stay', 'one', 'flash', 'briefly', 'go', 'md', 'extenral', 'monitor', 'stay', 'one', 'flash', 'briefly', 'go'] list_processed_text: [['md'], ['extenral'], ['monitor'], ['stay'], ['one'], ['flash'], ['briefly'], ['go'], ['md'], ['extenral'], ['monitor'], ['stay'], ['one'], ['flash'], ['briefly'], ['go']] k: 4947 len: <class 'list'> Data: ['travel', 'expense', 'erp', 'hi', 'get', 'information', 'want', 'travel', 'expense', 'zero', 'amount', 'entered', 'number', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] processed_text: ['travel', 'expense', 'erp', 'hi', 'get', 'information', 'want', 'travel', 'expense', 'zero', 'amount', 'entered', 'number', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] list_processed_text: [['travel'], ['expense'], ['erp'], ['hi'], ['get'], ['information'], ['want'], ['travel'], ['expense'], ['zero'], ['amount'], ['entered'], ['number'], ['uyrpdvoq'], ['mbzevtcx'], ['sale'], ['manager'], ['earthwork'], ['european'], ['served'], ['area'], ['north'], ['company'], ['infrastructure'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['und'], ['naruedlk'], ['mpvhakdq'], ['www'], ['company'], ['com']] k: 4948 len: <class 'list'> Data: ['telephony', 'software', 'interaction', 'desktop', 'fails', 'connect', 'seems', 'started', 'window', 'update', 'kb', 'got', 'installed', 'user', 'pc', 'please', 'find', 'screenshot', 'attached', 'email'] processed_text: ['telephony', 'software', 'interaction', 'desktop', 'fails', 'connect', 'seems', 'started', 'window', 'update', 'kb', 'got', 'installed', 'user', 'pc', 'please', 'find', 'screenshot', 'attached', 'email'] list_processed_text: [['telephony'], ['software'], ['interaction'], ['desktop'], ['fails'], ['connect'], ['seems'], ['started'], ['window'], ['update'], ['kb'], ['got'], ['installed'], ['user'], ['pc'], ['please'], ['find'], ['screenshot'], ['attached'], ['email']] k: 4949 len: <class 'list'> Data: ['please', 'check', 'ale', 'detail', 'ongoing', 'issue', 'sending', 'data', 'hrp', 'sid', 'sid', 'assign', 'sreedhar', 'please', 'close', 'look', 'ale', 'interface', 'production', 'environment', 'work', 'request', 'expense', 'reporting', 'issue', 'found', 'many', 'change', 'hrp', 'move', 'sid', 'via', 'ale', 'even', 'data', 'fine', 'hr', 'side', 'example', 'change', 'around', 'stefyty', 'tom', 'reflected', 'sid', 'look', 'like', 'majority', 'change', 'since', 'least', 'month', 'synced', 'sure', 'nothing', 'went', 'could', 'manual', 'run', 'ale', 'hris', 'team'] processed_text: ['please', 'check', 'ale', 'detail', 'ongoing', 'issue', 'sending', 'data', 'hrp', 'sid', 'sid', 'assign', 'sreedhar', 'please', 'close', 'look', 'ale', 'interface', 'production', 'environment', 'work', 'request', 'expense', 'reporting', 'issue', 'found', 'many', 'change', 'hrp', 'move', 'sid', 'via', 'ale', 'even', 'data', 'fine', 'hr', 'side', 'example', 'change', 'around', 'stefyty', 'tom', 'reflected', 'sid', 'look', 'like', 'majority', 'change', 'since', 'least', 'month', 'synced', 'sure', 'nothing', 'went', 'could', 'manual', 'run', 'ale', 'hris', 'team'] list_processed_text: [['please'], ['check'], ['ale'], ['detail'], ['ongoing'], ['issue'], ['sending'], ['data'], ['hrp'], ['sid'], ['sid'], ['assign'], ['sreedhar'], ['please'], ['close'], ['look'], ['ale'], ['interface'], ['production'], ['environment'], ['work'], ['request'], ['expense'], ['reporting'], ['issue'], ['found'], ['many'], ['change'], ['hrp'], ['move'], ['sid'], ['via'], ['ale'], ['even'], ['data'], ['fine'], ['hr'], ['side'], ['example'], ['change'], ['around'], ['stefyty'], ['tom'], ['reflected'], ['sid'], ['look'], ['like'], ['majority'], ['change'], ['since'], ['least'], ['month'], ['synced'], ['sure'], ['nothing'], ['went'], ['could'], ['manual'], ['run'], ['ale'], ['hris'], ['team']] k: 4950 len: <class 'list'> Data: ['printer', 'hp', 'laserjet', 'mp', 'defective', 'hp', 'printer', 'cp', 'defective', 'already', 'replaced', 'hp', 'laserjet'] processed_text: ['printer', 'hp', 'laserjet', 'mp', 'defective', 'hp', 'printer', 'cp', 'defective', 'already', 'replaced', 'hp', 'laserjet'] list_processed_text: [['printer'], ['hp'], ['laserjet'], ['mp'], ['defective'], ['hp'], ['printer'], ['cp'], ['defective'], ['already'], ['replaced'], ['hp'], ['laserjet']] k: 4951 len: <class 'list'> Data: ['reset', 'password', 'davidthd', 'robankm', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'davidthd', 'robankm', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['davidthd'], ['robankm'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4952 len: <class 'list'> Data: ['computer', 'r', 'measuring', 'device', 'steli', 'work', 'jionmpsf', 'wnkpzcmv', 'computer', 'r', 'measuring', 'device', 'steli', 'work', 'jionmpsf', 'wnkpzcmv'] processed_text: ['computer', 'r', 'measuring', 'device', 'steli', 'work', 'jionmpsf', 'wnkpzcmv', 'computer', 'r', 'measuring', 'device', 'steli', 'work', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['computer'], ['r'], ['measuring'], ['device'], ['steli'], ['work'], ['jionmpsf'], ['wnkpzcmv'], ['computer'], ['r'], ['measuring'], ['device'], ['steli'], ['work'], ['jionmpsf'], ['wnkpzcmv']] k: 4953 len: <class 'list'> Data: ['barcode', 'scanner', 'defective', 'paternoster', 'bur', 'orde', 'barcode', 'scanner', 'defective', 'paternoster', 'bur', 'orde'] processed_text: ['barcode', 'scanner', 'defective', 'paternoster', 'bur', 'orde', 'barcode', 'scanner', 'defective', 'paternoster', 'bur', 'orde'] list_processed_text: [['barcode'], ['scanner'], ['defective'], ['paternoster'], ['bur'], ['orde'], ['barcode'], ['scanner'], ['defective'], ['paternoster'], ['bur'], ['orde']] k: 4954 len: <class 'list'> Data: ['usb', 'verl', 'ngerungskabel', 'liefern', 'hxwtidja', 'ixahzmvf', 'usb', 'verl', 'ngerungskabel', 'liefern', 'hxwtidja', 'ixahzmvf'] processed_text: ['usb', 'verl', 'ngerungskabel', 'liefern', 'hxwtidja', 'ixahzmvf', 'usb', 'verl', 'ngerungskabel', 'liefern', 'hxwtidja', 'ixahzmvf'] list_processed_text: [['usb'], ['verl'], ['ngerungskabel'], ['liefern'], ['hxwtidja'], ['ixahzmvf'], ['usb'], ['verl'], ['ngerungskabel'], ['liefern'], ['hxwtidja'], ['ixahzmvf']] k: 4955 len: <class 'list'> Data: ['computer', 'start', 'update', 'ewew', 'cudgevmx', 'waqslrbd', 'computer', 'start', 'update', 'ewew', 'cudgevmx', 'waqslrbd'] processed_text: ['computer', 'start', 'update', 'ewew', 'cudgevmx', 'waqslrbd', 'computer', 'start', 'update', 'ewew', 'cudgevmx', 'waqslrbd'] list_processed_text: [['computer'], ['start'], ['update'], ['ewew'], ['cudgevmx'], ['waqslrbd'], ['computer'], ['start'], ['update'], ['ewew'], ['cudgevmx'], ['waqslrbd']] k: 4956 len: <class 'list'> Data: ['iehs', 'metric', 'input', 'unable', 'scroll', 'urgent', 'please', 'good', 'day', 'please', 'advise', 'scroll', 'screen', 'minimize', 'order', 'view', 'entry', 'sure', 'wrong', 'please', 'help', 'best'] processed_text: ['iehs', 'metric', 'input', 'unable', 'scroll', 'urgent', 'please', 'good', 'day', 'please', 'advise', 'scroll', 'screen', 'minimize', 'order', 'view', 'entry', 'sure', 'wrong', 'please', 'help', 'best'] list_processed_text: [['iehs'], ['metric'], ['input'], ['unable'], ['scroll'], ['urgent'], ['please'], ['good'], ['day'], ['please'], ['advise'], ['scroll'], ['screen'], ['minimize'], ['order'], ['view'], ['entry'], ['sure'], ['wrong'], ['please'], ['help'], ['best']] k: 4957 len: <class 'list'> Data: ['reset', 'password', 'cubdsrml', 'znewqgop', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'cubdsrml', 'znewqgop', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['cubdsrml'], ['znewqgop'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4958 len: <class 'list'> Data: ['kein', 'rechnungseingang', 'beim', 'kunden', 'per', 'mail', 'kunde', 'cc', 'erh', 'lt', 'unsere', 'rechnungen', 'per', 'mail', 'rechnungsempf', 'nger', 'cc', 'empfangende', 'mail', 'adresse', 'bi', 'zum', 'hat', 'der', 'kunde', 'problemlos', 'die', 'rechnungen', 'erhalten', 'ab', 'dem', 'nicht', 'mehr', 'dem', 'kunden', 'liegen', 'die', 'rechnungen', 'somit', 'nicht', 'vor', 'und', 'werden', 'deshalb', 'auch', 'nicht', 'bezahlt', 'ich', 'kann', 'keine', 'nderung', 'feststellen', 'und', 'bitte', 'deshalb', 'um', 'kl', 'rung', 'danke', 'translation', 'customer', 'cc', 'receive', 'inwarehouse', 'tool', 'email', 'inwarehouse', 'tool', 'recipient', 'cc', 'receiving', 'email', 'address', 'customer', 'easily', 'get', 'bill', 'customer', 'therefore', 'bill', 'therefore', 'paid', 'detect', 'change', 'therefore', 'ask', 'clarification'] processed_text: ['kein', 'rechnungseingang', 'beim', 'kunden', 'per', 'mail', 'kunde', 'cc', 'erh', 'lt', 'unsere', 'rechnungen', 'per', 'mail', 'rechnungsempf', 'nger', 'cc', 'empfangende', 'mail', 'adresse', 'bi', 'zum', 'hat', 'der', 'kunde', 'problemlos', 'die', 'rechnungen', 'erhalten', 'ab', 'dem', 'nicht', 'mehr', 'dem', 'kunden', 'liegen', 'die', 'rechnungen', 'somit', 'nicht', 'vor', 'und', 'werden', 'deshalb', 'auch', 'nicht', 'bezahlt', 'ich', 'kann', 'keine', 'nderung', 'feststellen', 'und', 'bitte', 'deshalb', 'um', 'kl', 'rung', 'danke', 'translation', 'customer', 'cc', 'receive', 'inwarehouse', 'tool', 'email', 'inwarehouse', 'tool', 'recipient', 'cc', 'receiving', 'email', 'address', 'customer', 'easily', 'get', 'bill', 'customer', 'therefore', 'bill', 'therefore', 'paid', 'detect', 'change', 'therefore', 'ask', 'clarification'] list_processed_text: [['kein'], ['rechnungseingang'], ['beim'], ['kunden'], ['per'], ['mail'], ['kunde'], ['cc'], ['erh'], ['lt'], ['unsere'], ['rechnungen'], ['per'], ['mail'], ['rechnungsempf'], ['nger'], ['cc'], ['empfangende'], ['mail'], ['adresse'], ['bi'], ['zum'], ['hat'], ['der'], ['kunde'], ['problemlos'], ['die'], ['rechnungen'], ['erhalten'], ['ab'], ['dem'], ['nicht'], ['mehr'], ['dem'], ['kunden'], ['liegen'], ['die'], ['rechnungen'], ['somit'], ['nicht'], ['vor'], ['und'], ['werden'], ['deshalb'], ['auch'], ['nicht'], ['bezahlt'], ['ich'], ['kann'], ['keine'], ['nderung'], ['feststellen'], ['und'], ['bitte'], ['deshalb'], ['um'], ['kl'], ['rung'], ['danke'], ['translation'], ['customer'], ['cc'], ['receive'], ['inwarehouse'], ['tool'], ['email'], ['inwarehouse'], ['tool'], ['recipient'], ['cc'], ['receiving'], ['email'], ['address'], ['customer'], ['easily'], ['get'], ['bill'], ['customer'], ['therefore'], ['bill'], ['therefore'], ['paid'], ['detect'], ['change'], ['therefore'], ['ask'], ['clarification']] k: 4959 len: <class 'list'> Data: ['informed', 'company', 'malaysia', 'office', 'faced', 'problem', 'internet', 'access', 'please', 'help', 'check', 'confirm', 'needful', 'mail', 'request'] processed_text: ['informed', 'company', 'malaysia', 'office', 'faced', 'problem', 'internet', 'access', 'please', 'help', 'check', 'confirm', 'needful', 'mail', 'request'] list_processed_text: [['informed'], ['company'], ['malaysia'], ['office'], ['faced'], ['problem'], ['internet'], ['access'], ['please'], ['help'], ['check'], ['confirm'], ['needful'], ['mail'], ['request']] k: 4960 len: <class 'list'> Data: ['open', 'ticket', 'nter', 'steinh', 'er', 'need', 'support', 'one', 'team', 'member', 'ter', 'steinh', 'usser', 'location', 'germany', 'already', 'opened', 'already', 'ticket', 'get', 'skype', 'speed', 'mentioned', 'solved', 'two', 'month', 'nter', 'participate', 'important', 'hr', 'call', 'able', 'work', 'common', 'communication', 'technology', 'please', 'support', 'follow', 'nter', 'directly', 'german', 'language', 'necessary'] processed_text: ['open', 'ticket', 'nter', 'steinh', 'er', 'need', 'support', 'one', 'team', 'member', 'ter', 'steinh', 'usser', 'location', 'germany', 'already', 'opened', 'already', 'ticket', 'get', 'skype', 'speed', 'mentioned', 'solved', 'two', 'month', 'nter', 'participate', 'important', 'hr', 'call', 'able', 'work', 'common', 'communication', 'technology', 'please', 'support', 'follow', 'nter', 'directly', 'german', 'language', 'necessary'] list_processed_text: [['open'], ['ticket'], ['nter'], ['steinh'], ['er'], ['need'], ['support'], ['one'], ['team'], ['member'], ['ter'], ['steinh'], ['usser'], ['location'], ['germany'], ['already'], ['opened'], ['already'], ['ticket'], ['get'], ['skype'], ['speed'], ['mentioned'], ['solved'], ['two'], ['month'], ['nter'], ['participate'], ['important'], ['hr'], ['call'], ['able'], ['work'], ['common'], ['communication'], ['technology'], ['please'], ['support'], ['follow'], ['nter'], ['directly'], ['german'], ['language'], ['necessary']] k: 4961 len: <class 'list'> Data: ['fixed', 'asset', 'addition', 'list', 'addition', 'matching', 'trial', 'balance', 'settlement', 'list', 'difference', 'mainly', 'cwip', 'last', 'year', 'settled', 'current', 'year'] processed_text: ['fixed', 'asset', 'addition', 'list', 'addition', 'matching', 'trial', 'balance', 'settlement', 'list', 'difference', 'mainly', 'cwip', 'last', 'year', 'settled', 'current', 'year'] list_processed_text: [['fixed'], ['asset'], ['addition'], ['list'], ['addition'], ['matching'], ['trial'], ['balance'], ['settlement'], ['list'], ['difference'], ['mainly'], ['cwip'], ['last'], ['year'], ['settled'], ['current'], ['year']] k: 4962 len: <class 'list'> Data: ['powerpoint', 'application', 'crashed', 'everytime', 'starting', 'file', 'impossible', 'work', 'powerpoint', 'application', 'crashed', 'everytime', 'starting', 'file', 'impossible', 'work', 'need', 'work', 'customer', 'proposal', 'internal', 'presentation', 'matheywter', 'pptx', 'file', 'open', 'application', 'crash', 'immediateley', 'need', 'restart', 'computer', 'absolutely', 'impossible', 'work', 'powerpoint', 'laptop', 'present', 'transit', 'home', 'businesstrip', 'reach', 'german', 'time'] processed_text: ['powerpoint', 'application', 'crashed', 'everytime', 'starting', 'file', 'impossible', 'work', 'powerpoint', 'application', 'crashed', 'everytime', 'starting', 'file', 'impossible', 'work', 'need', 'work', 'customer', 'proposal', 'internal', 'presentation', 'matheywter', 'pptx', 'file', 'open', 'application', 'crash', 'immediateley', 'need', 'restart', 'computer', 'absolutely', 'impossible', 'work', 'powerpoint', 'laptop', 'present', 'transit', 'home', 'businesstrip', 'reach', 'german', 'time'] list_processed_text: [['powerpoint'], ['application'], ['crashed'], ['everytime'], ['starting'], ['file'], ['impossible'], ['work'], ['powerpoint'], ['application'], ['crashed'], ['everytime'], ['starting'], ['file'], ['impossible'], ['work'], ['need'], ['work'], ['customer'], ['proposal'], ['internal'], ['presentation'], ['matheywter'], ['pptx'], ['file'], ['open'], ['application'], ['crash'], ['immediateley'], ['need'], ['restart'], ['computer'], ['absolutely'], ['impossible'], ['work'], ['powerpoint'], ['laptop'], ['present'], ['transit'], ['home'], ['businesstrip'], ['reach'], ['german'], ['time']] k: 4963 len: <class 'list'> Data: ['netweaver', 'business', 'client', 'hello', 'colleague', 'need', 'help', 'today', 'start', 'netweaver', 'business', 'client', 'start', 'er', 'unfortunately', 'netweaver', 'business', 'client', 'working'] processed_text: ['netweaver', 'business', 'client', 'hello', 'colleague', 'need', 'help', 'today', 'start', 'netweaver', 'business', 'client', 'start', 'er', 'unfortunately', 'netweaver', 'business', 'client', 'working'] list_processed_text: [['netweaver'], ['business'], ['client'], ['hello'], ['colleague'], ['need'], ['help'], ['today'], ['start'], ['netweaver'], ['business'], ['client'], ['start'], ['er'], ['unfortunately'], ['netweaver'], ['business'], ['client'], ['working']] k: 4964 len: <class 'list'> Data: ['reset', 'password', 'davidthd', 'robankm', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'davidthd', 'robankm', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['davidthd'], ['robankm'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 4965 len: <class 'list'> Data: ['problem', 'laser', 'pc', 'old', 'pc', 'semi-automatic', 'machine', 'turn', 'heat', 'fter', 'power', 'supply', 'turn'] processed_text: ['problem', 'laser', 'pc', 'old', 'pc', 'semi-automatic', 'machine', 'turn', 'heat', 'fter', 'power', 'supply', 'turn'] list_processed_text: [['problem'], ['laser'], ['pc'], ['old'], ['pc'], ['semi-automatic'], ['machine'], ['turn'], ['heat'], ['fter'], ['power'], ['supply'], ['turn']] k: 4966 len: <class 'list'> Data: ['need', 'help', 'adding', 'user', 'need', 'help', 'adding', 'user'] processed_text: ['need', 'help', 'adding', 'user', 'need', 'help', 'adding', 'user'] list_processed_text: [['need'], ['help'], ['adding'], ['user'], ['need'], ['help'], ['adding'], ['user']] k: 4967 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'sto', 'possible', 'combination'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'sto', 'possible', 'combination'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['sto'], ['possible'], ['combination']] k: 4968 len: <class 'list'> Data: ['fc', 'r', 'department', 'skv', 'alicona', 'hello', 'marfhtyio', 'activation', 'srgtycha', 'clear,', 'please', 'call', 'hr', 'bxgwyamr', 'hjbukvcq', 'personalnr', 'hr', 'wjzvabrl', 'bmcfrlyz', 'personalnr', 'also', 'unlock', 'thank', 'advance', 'mfg', 'reinhard', 'von', 'yevirgnl', 'ylhogjct', 'regarding', 'purely', 'access', 'right', 'wednesday', 'p', 'ok', 'access,', 'greeting', 'marfhtyio', 'best', 'regard'] processed_text: ['fc', 'r', 'department', 'skv', 'alicona', 'hello', 'marfhtyio', 'activation', 'srgtycha', 'clear,', 'please', 'call', 'hr', 'bxgwyamr', 'hjbukvcq', 'personalnr', 'hr', 'wjzvabrl', 'bmcfrlyz', 'personalnr', 'also', 'unlock', 'thank', 'advance', 'mfg', 'reinhard', 'von', 'yevirgnl', 'ylhogjct', 'regarding', 'purely', 'access', 'right', 'wednesday', 'p', 'ok', 'access,', 'greeting', 'marfhtyio', 'best', 'regard'] list_processed_text: [['fc'], ['r'], ['department'], ['skv'], ['alicona'], ['hello'], ['marfhtyio'], ['activation'], ['srgtycha'], ['clear,'], ['please'], ['call'], ['hr'], ['bxgwyamr'], ['hjbukvcq'], ['personalnr'], ['hr'], ['wjzvabrl'], ['bmcfrlyz'], ['personalnr'], ['also'], ['unlock'], ['thank'], ['advance'], ['mfg'], ['reinhard'], ['von'], ['yevirgnl'], ['ylhogjct'], ['regarding'], ['purely'], ['access'], ['right'], ['wednesday'], ['p'], ['ok'], ['access,'], ['greeting'], ['marfhtyio'], ['best'], ['regard']] k: 4969 len: <class 'list'> Data: ['issue', 'difference', 'amount', 'po', 'approval', 'report', 'zpsr', 'also', 'kindly', 'remove', 'programdnty', 'zpsu', 'issue', 'difference', 'amount', 'po', 'approval', 'report', 'zpsr', 'also', 'kindly', 'remove', 'programdnty', 'zpsu', 'longer', 'used'] processed_text: ['issue', 'difference', 'amount', 'po', 'approval', 'report', 'zpsr', 'also', 'kindly', 'remove', 'programdnty', 'zpsu', 'issue', 'difference', 'amount', 'po', 'approval', 'report', 'zpsr', 'also', 'kindly', 'remove', 'programdnty', 'zpsu', 'longer', 'used'] list_processed_text: [['issue'], ['difference'], ['amount'], ['po'], ['approval'], ['report'], ['zpsr'], ['also'], ['kindly'], ['remove'], ['programdnty'], ['zpsu'], ['issue'], ['difference'], ['amount'], ['po'], ['approval'], ['report'], ['zpsr'], ['also'], ['kindly'], ['remove'], ['programdnty'], ['zpsu'], ['longer'], ['used']] k: 4970 len: <class 'list'> Data: ['fc', 'department', 'scan', 'good', 'morning', 'please', 'write', 'read', 'authorization', 'r', 'folder', 'scan', 'set', 'thank', 'friendly', 'gr', 'child'] processed_text: ['fc', 'department', 'scan', 'good', 'morning', 'please', 'write', 'read', 'authorization', 'r', 'folder', 'scan', 'set', 'thank', 'friendly', 'gr', 'child'] list_processed_text: [['fc'], ['department'], ['scan'], ['good'], ['morning'], ['please'], ['write'], ['read'], ['authorization'], ['r'], ['folder'], ['scan'], ['set'], ['thank'], ['friendly'], ['gr'], ['child']] k: 4971 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'confirmed', 'email', 'address', 'typed', 'userid', 'field', 'system', 'away', 'phone', 'called', 'back', 'mobile', 'pavan', 'confirmed', 'issue', 'resolved'] processed_text: ['unable', 'sign', 'skype', 'confirmed', 'email', 'address', 'typed', 'userid', 'field', 'system', 'away', 'phone', 'called', 'back', 'mobile', 'pavan', 'confirmed', 'issue', 'resolved'] list_processed_text: [['unable'], ['sign'], ['skype'], ['confirmed'], ['email'], ['address'], ['typed'], ['userid'], ['field'], ['system'], ['away'], ['phone'], ['called'], ['back'], ['mobile'], ['pavan'], ['confirmed'], ['issue'], ['resolved']] k: 4972 len: <class 'list'> Data: ['msd', 'crm', 'still', 'synchronize', 'erp', 'still', 'synchronize', 'erp', 'repair', 'zip', 'code', 'see', 'ticket', 'still', 'showing', 'error', 'see', 'attached', 'file', 'zip', 'code', 'correct', 'user', 'company', 'israel'] processed_text: ['msd', 'crm', 'still', 'synchronize', 'erp', 'still', 'synchronize', 'erp', 'repair', 'zip', 'code', 'see', 'ticket', 'still', 'showing', 'error', 'see', 'attached', 'file', 'zip', 'code', 'correct', 'user', 'company', 'israel'] list_processed_text: [['msd'], ['crm'], ['still'], ['synchronize'], ['erp'], ['still'], ['synchronize'], ['erp'], ['repair'], ['zip'], ['code'], ['see'], ['ticket'], ['still'], ['showing'], ['error'], ['see'], ['attached'], ['file'], ['zip'], ['code'], ['correct'], ['user'], ['company'], ['israel']] k: 4973 len: <class 'list'> Data: ['question', 'login', 'impact', 'award', 'login', 'impact', 'award'] processed_text: ['question', 'login', 'impact', 'award', 'login', 'impact', 'award'] list_processed_text: [['question'], ['login'], ['impact'], ['award'], ['login'], ['impact'], ['award']] k: 4974 len: <class 'list'> Data: ['account', 'unlock', 'lichtyuiwu', 'markhty', 'leibdrty', 'called', 'account', 'unlocked', 'unlocked', 'confirmed', 'able', 'login'] processed_text: ['account', 'unlock', 'lichtyuiwu', 'markhty', 'leibdrty', 'called', 'account', 'unlocked', 'unlocked', 'confirmed', 'able', 'login'] list_processed_text: [['account'], ['unlock'], ['lichtyuiwu'], ['markhty'], ['leibdrty'], ['called'], ['account'], ['unlocked'], ['unlocked'], ['confirmed'], ['able'], ['login']] k: 4975 len: <class 'list'> Data: ['erp', 'netweaver', 'enterence', 'please', 'help', 'aerp', 'colleague', 'enter', 'programdntys', 'need', 'immediately', 'please', 'help', 'aerp', 'please', 'see', 'best'] processed_text: ['erp', 'netweaver', 'enterence', 'please', 'help', 'aerp', 'colleague', 'enter', 'programdntys', 'need', 'immediately', 'please', 'help', 'aerp', 'please', 'see', 'best'] list_processed_text: [['erp'], ['netweaver'], ['enterence'], ['please'], ['help'], ['aerp'], ['colleague'], ['enter'], ['programdntys'], ['need'], ['immediately'], ['please'], ['help'], ['aerp'], ['please'], ['see'], ['best']] k: 4976 len: <class 'list'> Data: ['ferbfhyunam', 'able', 'connect', 'telephony', 'software', 'interaction', 'desktop', 'error', 'message', 'unable', 'log', 'following', 'reason', 'byte', 'read', 'network', 'stream', 'user', 'ferbfhyunam', 'workstation', 'ekmw', 'see', 'attached', 'picture'] processed_text: ['ferbfhyunam', 'able', 'connect', 'telephony', 'software', 'interaction', 'desktop', 'error', 'message', 'unable', 'log', 'following', 'reason', 'byte', 'read', 'network', 'stream', 'user', 'ferbfhyunam', 'workstation', 'ekmw', 'see', 'attached', 'picture'] list_processed_text: [['ferbfhyunam'], ['able'], ['connect'], ['telephony'], ['software'], ['interaction'], ['desktop'], ['error'], ['message'], ['unable'], ['log'], ['following'], ['reason'], ['byte'], ['read'], ['network'], ['stream'], ['user'], ['ferbfhyunam'], ['workstation'], ['ekmw'], ['see'], ['attached'], ['picture']] k: 4977 len: <class 'list'> Data: ['erp', 'net', 'weaver', 'doesnt', 'work', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed', 'erp', 'net', 'weaver', 'doesnt', 'work', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed'] processed_text: ['erp', 'net', 'weaver', 'doesnt', 'work', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed', 'erp', 'net', 'weaver', 'doesnt', 'work', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed'] list_processed_text: [['erp'], ['net'], ['weaver'], ['doesnt'], ['work'], ['error'], ['message'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['erp'], ['net'], ['weaver'], ['doesnt'], ['work'], ['error'], ['message'], ['microsoft'], ['net'], ['framdntyework'], ['installed']] k: 4978 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 4979 len: <class 'list'> Data: ['business', 'client', 'log', 'error', 'business', 'client', 'logon', 'working', 'throwing', 'error', 'seems', 'issue', 'laptop', 'logon', 'working', 'fine', 'tried', 'system'] processed_text: ['business', 'client', 'log', 'error', 'business', 'client', 'logon', 'working', 'throwing', 'error', 'seems', 'issue', 'laptop', 'logon', 'working', 'fine', 'tried', 'system'] list_processed_text: [['business'], ['client'], ['log'], ['error'], ['business'], ['client'], ['logon'], ['working'], ['throwing'], ['error'], ['seems'], ['issue'], ['laptop'], ['logon'], ['working'], ['fine'], ['tried'], ['system']] k: 4980 len: <class 'list'> Data: ['power', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'south', 'amerirtca', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['south'], ['amerirtca'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4981 len: <class 'list'> Data: ['skype', 'working', 'skype', 'working'] processed_text: ['skype', 'working', 'skype', 'working'] list_processed_text: [['skype'], ['working'], ['skype'], ['working']] k: 4982 len: <class 'list'> Data: ['need', 'participant', 'access', 'guest', 'wifi', 'system', 'house', 'see', 'attached', 'excel', 'spread', 'sheet', 'ylqvitsk', 'bfnackrw', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'wg', 'cost', 'center', 'importance', 'high', 'hello', 'need', 'participant', 'access', 'guest', 'wifi', 'system', 'house', 'see', 'attached', 'excel', 'spread', 'sheet', 'time', 'access', 'day', 'location', 'company', 'rth', 'germany', 'room', 'event', 'technical', 'training', 'metal', 'cutting', 'different', 'name', 'find', 'attached', 'excel', 'list'] processed_text: ['need', 'participant', 'access', 'guest', 'wifi', 'system', 'house', 'see', 'attached', 'excel', 'spread', 'sheet', 'ylqvitsk', 'bfnackrw', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'wg', 'cost', 'center', 'importance', 'high', 'hello', 'need', 'participant', 'access', 'guest', 'wifi', 'system', 'house', 'see', 'attached', 'excel', 'spread', 'sheet', 'time', 'access', 'day', 'location', 'company', 'rth', 'germany', 'room', 'event', 'technical', 'training', 'metal', 'cutting', 'different', 'name', 'find', 'attached', 'excel', 'list'] list_processed_text: [['need'], ['participant'], ['access'], ['guest'], ['wifi'], ['system'], ['house'], ['see'], ['attached'], ['excel'], ['spread'], ['sheet'], ['ylqvitsk'], ['bfnackrw'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['wg'], ['cost'], ['center'], ['importance'], ['high'], ['hello'], ['need'], ['participant'], ['access'], ['guest'], ['wifi'], ['system'], ['house'], ['see'], ['attached'], ['excel'], ['spread'], ['sheet'], ['time'], ['access'], ['day'], ['location'], ['company'], ['rth'], ['germany'], ['room'], ['event'], ['technical'], ['training'], ['metal'], ['cutting'], ['different'], ['name'], ['find'], ['attached'], ['excel'], ['list']] k: 4983 len: <class 'list'> Data: ['action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'vivbhuek', 'kanjdye', 'nwfodmhc', 'exurcwkm', 'action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'hi', 'getting', 'following', 'message', 'system', 'warning', 'clear', 'system', 'warning', 'javascript', 'installed', 'warning', 'full', 'functionality', 'enable', 'javascript', 'browser', 'otherwise', 'feature', 'especially', 'related', 'web', 'application', 'new', 'window', 'work', 'correctly', 'cache', 'cleaner', 'failed', 'warning', 'popup', 'blocker', 'cause', 'cache', 'cleaner', 'fail', 'use', 'popup', 'blocker', 'see', 'outdated', 'page', 'form', 'best', 'functionality', 'disable', 'popup', 'blocker', 'policy', 'restriction', 'access', 'network', 'access', 'resource', 'company', 'vpn', 'denied', 'policy', 'engine', 'reason', 'anti', 'virus', 'anti', 'virus', 'trusted'] processed_text: ['action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'vivbhuek', 'kanjdye', 'nwfodmhc', 'exurcwkm', 'action', 'required', 'please', 'connect', 'new', 'vpn', 'url', 'hi', 'getting', 'following', 'message', 'system', 'warning', 'clear', 'system', 'warning', 'javascript', 'installed', 'warning', 'full', 'functionality', 'enable', 'javascript', 'browser', 'otherwise', 'feature', 'especially', 'related', 'web', 'application', 'new', 'window', 'work', 'correctly', 'cache', 'cleaner', 'failed', 'warning', 'popup', 'blocker', 'cause', 'cache', 'cleaner', 'fail', 'use', 'popup', 'blocker', 'see', 'outdated', 'page', 'form', 'best', 'functionality', 'disable', 'popup', 'blocker', 'policy', 'restriction', 'access', 'network', 'access', 'resource', 'company', 'vpn', 'denied', 'policy', 'engine', 'reason', 'anti', 'virus', 'anti', 'virus', 'trusted'] list_processed_text: [['action'], ['required'], ['please'], ['connect'], ['new'], ['vpn'], ['url'], ['vivbhuek'], ['kanjdye'], ['nwfodmhc'], ['exurcwkm'], ['action'], ['required'], ['please'], ['connect'], ['new'], ['vpn'], ['url'], ['hi'], ['getting'], ['following'], ['message'], ['system'], ['warning'], ['clear'], ['system'], ['warning'], ['javascript'], ['installed'], ['warning'], ['full'], ['functionality'], ['enable'], ['javascript'], ['browser'], ['otherwise'], ['feature'], ['especially'], ['related'], ['web'], ['application'], ['new'], ['window'], ['work'], ['correctly'], ['cache'], ['cleaner'], ['failed'], ['warning'], ['popup'], ['blocker'], ['cause'], ['cache'], ['cleaner'], ['fail'], ['use'], ['popup'], ['blocker'], ['see'], ['outdated'], ['page'], ['form'], ['best'], ['functionality'], ['disable'], ['popup'], ['blocker'], ['policy'], ['restriction'], ['access'], ['network'], ['access'], ['resource'], ['company'], ['vpn'], ['denied'], ['policy'], ['engine'], ['reason'], ['anti'], ['virus'], ['anti'], ['virus'], ['trusted']] k: 4984 len: <class 'list'> Data: ['cplant', 'depreciation', 'issue', 'dear', 'find', 'gap', 'fsn', 'report', 'asset', 'balance', 'report', 'alr', 'cplant', 'cost', 'center', 'add', 'two', 'rrc', 'asset', 'depreciation', 'rmb', 'increase', 'run', 'fsn', 'find', 'depreciation', 'add', 'rmb', 'give', 'idea'] processed_text: ['cplant', 'depreciation', 'issue', 'dear', 'find', 'gap', 'fsn', 'report', 'asset', 'balance', 'report', 'alr', 'cplant', 'cost', 'center', 'add', 'two', 'rrc', 'asset', 'depreciation', 'rmb', 'increase', 'run', 'fsn', 'find', 'depreciation', 'add', 'rmb', 'give', 'idea'] list_processed_text: [['cplant'], ['depreciation'], ['issue'], ['dear'], ['find'], ['gap'], ['fsn'], ['report'], ['asset'], ['balance'], ['report'], ['alr'], ['cplant'], ['cost'], ['center'], ['add'], ['two'], ['rrc'], ['asset'], ['depreciation'], ['rmb'], ['increase'], ['run'], ['fsn'], ['find'], ['depreciation'], ['add'], ['rmb'], ['give'], ['idea']] k: 4985 len: <class 'list'> Data: ['hsh', 'hi', 'mr', 'hatryupsfshytd', 'user', 'id', 'locked', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'panghyiraj', 'shthuihog', 'emp', 'name', 'useid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] processed_text: ['hsh', 'hi', 'mr', 'hatryupsfshytd', 'user', 'id', 'locked', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'panghyiraj', 'shthuihog', 'emp', 'name', 'useid', 'manager', 'aqihfoly', 'xsrkthvf', 'hsh', 'panghyiraj', 'shthuihog', 'fyi'] list_processed_text: [['hsh'], ['hi'], ['mr'], ['hatryupsfshytd'], ['user'], ['id'], ['locked'], ['please'], ['reset'], ['password'], ['send'], ['new'], ['password'], ['manager'], ['mr'], ['panghyiraj'], ['shthuihog'], ['emp'], ['name'], ['useid'], ['manager'], ['aqihfoly'], ['xsrkthvf'], ['hsh'], ['panghyiraj'], ['shthuihog'], ['fyi']] k: 4986 len: <class 'list'> Data: ['login', 'erp', 'sid', 'uacyltoe', 'hxgayczeing', 'attached', 'screen', 'shot', 'error', 'information'] processed_text: ['login', 'erp', 'sid', 'uacyltoe', 'hxgayczeing', 'attached', 'screen', 'shot', 'error', 'information'] list_processed_text: [['login'], ['erp'], ['sid'], ['uacyltoe'], ['hxgayczeing'], ['attached'], ['screen'], ['shot'], ['error'], ['information']] k: 4987 len: <class 'list'> Data: ['circuit', 'outage', 'primary', 'circuit', 'company', 'eu', 'deu', 'koenigsee', 'mpls', 'rtr', 'company', 'com', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'primary', 'circuit', 'company', 'eu', 'deu', 'koenigsee', 'mpls', 'rtr', 'company', 'com', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['primary'], ['circuit'], ['company'], ['eu'], ['deu'], ['koenigsee'], ['mpls'], ['rtr'], ['company'], ['com'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 4988 len: <class 'list'> Data: ['node', 'lhqsm', 'node', 'lhqsm'] processed_text: ['node', 'lhqsm', 'node', 'lhqsm'] list_processed_text: [['node'], ['lhqsm'], ['node'], ['lhqsm']] k: 4989 len: <class 'list'> Data: ['erp', 'access', 'good', 'afternoon', 'please', 'unlock', 'username', 'erp', 'locked', 'many', 'log', 'attempt', 'vyjmlain', 'hvjbmdgi', 'senior', 'technical', 'service', 'rep'] processed_text: ['erp', 'access', 'good', 'afternoon', 'please', 'unlock', 'username', 'erp', 'locked', 'many', 'log', 'attempt', 'vyjmlain', 'hvjbmdgi', 'senior', 'technical', 'service', 'rep'] list_processed_text: [['erp'], ['access'], ['good'], ['afternoon'], ['please'], ['unlock'], ['username'], ['erp'], ['locked'], ['many'], ['log'], ['attempt'], ['vyjmlain'], ['hvjbmdgi'], ['senior'], ['technical'], ['service'], ['rep']] k: 4990 len: <class 'list'> Data: ['request', 'hello', 'supervisor', 'ybuvlkjq', 'nwcobvpl', 'asked', 'send', 'request', 'able', 'access', 'document', 'folder', 'drive', 'would', 'like', 'permission', 'access', 'document', 'located', 'quality', 'control', 'folder', 'located', 'quality', 'control'] processed_text: ['request', 'hello', 'supervisor', 'ybuvlkjq', 'nwcobvpl', 'asked', 'send', 'request', 'able', 'access', 'document', 'folder', 'drive', 'would', 'like', 'permission', 'access', 'document', 'located', 'quality', 'control', 'folder', 'located', 'quality', 'control'] list_processed_text: [['request'], ['hello'], ['supervisor'], ['ybuvlkjq'], ['nwcobvpl'], ['asked'], ['send'], ['request'], ['able'], ['access'], ['document'], ['folder'], ['drive'], ['would'], ['like'], ['permission'], ['access'], ['document'], ['located'], ['quality'], ['control'], ['folder'], ['located'], ['quality'], ['control']] k: 4991 len: <class 'list'> Data: ['telephony', 'software', 'phone', 'issue', 'hello', 'yesterday', 'telephony', 'software', 'phone', 'system', 'update', 'done', 'today', 'notice', 'show', 'yellow', 'phone', 'icon', 'showing', 'phone', 'receiving', 'call', 'please', 'assist', 'quickly'] processed_text: ['telephony', 'software', 'phone', 'issue', 'hello', 'yesterday', 'telephony', 'software', 'phone', 'system', 'update', 'done', 'today', 'notice', 'show', 'yellow', 'phone', 'icon', 'showing', 'phone', 'receiving', 'call', 'please', 'assist', 'quickly'] list_processed_text: [['telephony'], ['software'], ['phone'], ['issue'], ['hello'], ['yesterday'], ['telephony'], ['software'], ['phone'], ['system'], ['update'], ['done'], ['today'], ['notice'], ['show'], ['yellow'], ['phone'], ['icon'], ['showing'], ['phone'], ['receiving'], ['call'], ['please'], ['assist'], ['quickly']] k: 4992 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 4993 len: <class 'list'> Data: ['uninstall', 'google', 'chrome', 'uninstall', 'google', 'chrome'] processed_text: ['uninstall', 'google', 'chrome', 'uninstall', 'google', 'chrome'] list_processed_text: [['uninstall'], ['google'], ['chrome'], ['uninstall'], ['google'], ['chrome']] k: 4994 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 4995 len: <class 'list'> Data: ['customer', 'erp', 'longer', 'available', 'crm', 'create', 'new', 'opportstorage', 'product', 'closed', 'opportunity', 'customer', 'active', 'open', 'opportunity', 'customer', 'tried', 'create', 'another', 'opportstorage', 'product', 'customer', 'longer', 'list', 'available', 'customer', 'try', 'put', 'name', 'account', 'end', 'user', 'name', 'field', 'get', 'statement', 'record', 'found', 'tried', 'several', 'customer', 'work', 'one'] processed_text: ['customer', 'erp', 'longer', 'available', 'crm', 'create', 'new', 'opportstorage', 'product', 'closed', 'opportunity', 'customer', 'active', 'open', 'opportunity', 'customer', 'tried', 'create', 'another', 'opportstorage', 'product', 'customer', 'longer', 'list', 'available', 'customer', 'try', 'put', 'name', 'account', 'end', 'user', 'name', 'field', 'get', 'statement', 'record', 'found', 'tried', 'several', 'customer', 'work', 'one'] list_processed_text: [['customer'], ['erp'], ['longer'], ['available'], ['crm'], ['create'], ['new'], ['opportstorage'], ['product'], ['closed'], ['opportunity'], ['customer'], ['active'], ['open'], ['opportunity'], ['customer'], ['tried'], ['create'], ['another'], ['opportstorage'], ['product'], ['customer'], ['longer'], ['list'], ['available'], ['customer'], ['try'], ['put'], ['name'], ['account'], ['end'], ['user'], ['name'], ['field'], ['get'], ['statement'], ['record'], ['found'], ['tried'], ['several'], ['customer'], ['work'], ['one']] k: 4996 len: <class 'list'> Data: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] processed_text: ['blank', 'call', 'gso', 'loud', 'noise', 'blank', 'call', 'gso', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['gso'], ['loud'], ['noise'], ['blank'], ['call'], ['gso'], ['loud'], ['noise']] k: 4997 len: <class 'list'> Data: ['unable', 'connect', 'network', 'drive', 'vpn', 'unable', 'connect', 'network', 'drive', 'vpn'] processed_text: ['unable', 'connect', 'network', 'drive', 'vpn', 'unable', 'connect', 'network', 'drive', 'vpn'] list_processed_text: [['unable'], ['connect'], ['network'], ['drive'], ['vpn'], ['unable'], ['connect'], ['network'], ['drive'], ['vpn']] k: 4998 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 4999 len: <class 'list'> Data: ['account', 'locked', 'vpn', 'page', 'account', 'locked', 'vpn', 'page'] processed_text: ['account', 'locked', 'vpn', 'page', 'account', 'locked', 'vpn', 'page'] list_processed_text: [['account'], ['locked'], ['vpn'], ['page'], ['account'], ['locked'], ['vpn'], ['page']] k: 5000 len: <class 'list'> Data: ['company', 'email', 'password', 'working', 'company', 'email', 'password', 'working'] processed_text: ['company', 'email', 'password', 'working', 'company', 'email', 'password', 'working'] list_processed_text: [['company'], ['email'], ['password'], ['working'], ['company'], ['email'], ['password'], ['working']] k: 5001 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 5002 len: <class 'list'> Data: ['vip', 'sid', 'hana', 'login', 'name', 'stdezpqw', 'bkmeuhfz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'access', 'erp', 'hana', 'sid'] processed_text: ['vip', 'sid', 'hana', 'login', 'name', 'stdezpqw', 'bkmeuhfz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'access', 'erp', 'hana', 'sid'] list_processed_text: [['vip'], ['sid'], ['hana'], ['login'], ['name'], ['stdezpqw'], ['bkmeuhfz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['access'], ['erp'], ['hana'], ['sid']] k: 5003 len: <class 'list'> Data: ['ie', 'issue', 'ie', 'issue'] processed_text: ['ie', 'issue', 'ie', 'issue'] list_processed_text: [['ie'], ['issue'], ['ie'], ['issue']] k: 5004 len: <class 'list'> Data: ['reset', 'password', 'iwtvrhnz', 'rxiumhfk', 'erp', 'production', 'erp', 'reset', 'password', 'iwtvrhnz', 'rxiumhfk', 'erp', 'production', 'erp'] processed_text: ['reset', 'password', 'iwtvrhnz', 'rxiumhfk', 'erp', 'production', 'erp', 'reset', 'password', 'iwtvrhnz', 'rxiumhfk', 'erp', 'production', 'erp'] list_processed_text: [['reset'], ['password'], ['iwtvrhnz'], ['rxiumhfk'], ['erp'], ['production'], ['erp'], ['reset'], ['password'], ['iwtvrhnz'], ['rxiumhfk'], ['erp'], ['production'], ['erp']] k: 5005 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5006 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 5007 len: <class 'list'> Data: ['please', 'send', 'expense', 'report', 'qmglkaru', 'qiwhfkdv', 'approval', 'please', 'manually', 'send', 'expense', 'report', 'qmglkaru', 'qiwhfkdv', 'approval', 'stuck', 'pathuick', 'thgheijmer', 'due', 'reporting', 'relationship', 'change'] processed_text: ['please', 'send', 'expense', 'report', 'qmglkaru', 'qiwhfkdv', 'approval', 'please', 'manually', 'send', 'expense', 'report', 'qmglkaru', 'qiwhfkdv', 'approval', 'stuck', 'pathuick', 'thgheijmer', 'due', 'reporting', 'relationship', 'change'] list_processed_text: [['please'], ['send'], ['expense'], ['report'], ['qmglkaru'], ['qiwhfkdv'], ['approval'], ['please'], ['manually'], ['send'], ['expense'], ['report'], ['qmglkaru'], ['qiwhfkdv'], ['approval'], ['stuck'], ['pathuick'], ['thgheijmer'], ['due'], ['reporting'], ['relationship'], ['change']] k: 5008 len: <class 'list'> Data: ['connection', 'issue', 'dear', 'team', 'please', 'help', 'raise', 'ticket', 'network', 'team', 'user', 'slkxgzdj', 'wxpytevu', 'working', 'remotely', 'erp', 'system', 'keep', 'getting', 'kicked', 'without', 'able', 'continue', 'work'] processed_text: ['connection', 'issue', 'dear', 'team', 'please', 'help', 'raise', 'ticket', 'network', 'team', 'user', 'slkxgzdj', 'wxpytevu', 'working', 'remotely', 'erp', 'system', 'keep', 'getting', 'kicked', 'without', 'able', 'continue', 'work'] list_processed_text: [['connection'], ['issue'], ['dear'], ['team'], ['please'], ['help'], ['raise'], ['ticket'], ['network'], ['team'], ['user'], ['slkxgzdj'], ['wxpytevu'], ['working'], ['remotely'], ['erp'], ['system'], ['keep'], ['getting'], ['kicked'], ['without'], ['able'], ['continue'], ['work']] k: 5009 len: <class 'list'> Data: ['hostname', 'plm', 'server', 'let', 'someone', 'dsccache', 'service', 'running', 'hostname'] processed_text: ['hostname', 'plm', 'server', 'let', 'someone', 'dsccache', 'service', 'running', 'hostname'] list_processed_text: [['hostname'], ['plm'], ['server'], ['let'], ['someone'], ['dsccache'], ['service'], ['running'], ['hostname']] k: 5010 len: <class 'list'> Data: ['unable', 'connect', 'dv', 'dv', 'dv', 'unable', 'connect', 'dv', 'dv', 'dv'] processed_text: ['unable', 'connect', 'dv', 'dv', 'dv', 'unable', 'connect', 'dv', 'dv', 'dv'] list_processed_text: [['unable'], ['connect'], ['dv'], ['dv'], ['dv'], ['unable'], ['connect'], ['dv'], ['dv'], ['dv']] k: 5011 len: <class 'list'> Data: ['unknown', 'email', 'miltgntyuon', 'knighdjhtyt', 'going', 'forward', 'email', 'received', 'give', 'alert', 'message', 'see', 'attachment', 'need', 'connect', 'terminal', 'let', 'know', 'moved', 'delete', 'box'] processed_text: ['unknown', 'email', 'miltgntyuon', 'knighdjhtyt', 'going', 'forward', 'email', 'received', 'give', 'alert', 'message', 'see', 'attachment', 'need', 'connect', 'terminal', 'let', 'know', 'moved', 'delete', 'box'] list_processed_text: [['unknown'], ['email'], ['miltgntyuon'], ['knighdjhtyt'], ['going'], ['forward'], ['email'], ['received'], ['give'], ['alert'], ['message'], ['see'], ['attachment'], ['need'], ['connect'], ['terminal'], ['let'], ['know'], ['moved'], ['delete'], ['box']] k: 5012 len: <class 'list'> Data: ['account', 'locked', 'need', 'unlock', 'account', 'locked', 'need', 'unlock'] processed_text: ['account', 'locked', 'need', 'unlock', 'account', 'locked', 'need', 'unlock'] list_processed_text: [['account'], ['locked'], ['need'], ['unlock'], ['account'], ['locked'], ['need'], ['unlock']] k: 5013 len: <class 'list'> Data: ['circuit', 'outage', 'apac', 'china', 'vpn', 'circuit', 'pm', 'et', 'site', 'mpls', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'apac', 'china', 'vpn', 'circuit', 'pm', 'et', 'site', 'mpls', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['apac'], ['china'], ['vpn'], ['circuit'], ['pm'], ['et'], ['site'], ['mpls'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5014 len: <class 'list'> Data: ['install', 'analysis', 'office', 'sp', 'clrgtydia', 'pc', 'since', 'office', 'version', 'hello', 'team', 'please', 'install', 'analysis', 'office', 'sp', 'clrgtydia', 'pc', 'since', 'office', 'version', 'set', 'hana', 'sid', 'sid', 'connection', 'present', 'xawlkiey', 'demjqrfl', 'pc', 'ao', 'compatible', 'office', 'issue', 'sev', 'best'] processed_text: ['install', 'analysis', 'office', 'sp', 'clrgtydia', 'pc', 'since', 'office', 'version', 'hello', 'team', 'please', 'install', 'analysis', 'office', 'sp', 'clrgtydia', 'pc', 'since', 'office', 'version', 'set', 'hana', 'sid', 'sid', 'connection', 'present', 'xawlkiey', 'demjqrfl', 'pc', 'ao', 'compatible', 'office', 'issue', 'sev', 'best'] list_processed_text: [['install'], ['analysis'], ['office'], ['sp'], ['clrgtydia'], ['pc'], ['since'], ['office'], ['version'], ['hello'], ['team'], ['please'], ['install'], ['analysis'], ['office'], ['sp'], ['clrgtydia'], ['pc'], ['since'], ['office'], ['version'], ['set'], ['hana'], ['sid'], ['sid'], ['connection'], ['present'], ['xawlkiey'], ['demjqrfl'], ['pc'], ['ao'], ['compatible'], ['office'], ['issue'], ['sev'], ['best']] k: 5015 len: <class 'list'> Data: ['skype', 'business', 'extend', 'access', 'external', 'partner', 'hello', 'please', 'extend', 'skype', 'business', 'access', 'przcxbml', 'vnjdghui', 'contractor', 'able', 'arrange', 'conference', 'call', 'external', 'company', 'party', 'working', 'critical', 'company', 'payroll', 'project', 'germany', 'involves', 'significant', 'external', 'vendor', 'contact', 'skype', 'permission', 'set', 'mine', 'many'] processed_text: ['skype', 'business', 'extend', 'access', 'external', 'partner', 'hello', 'please', 'extend', 'skype', 'business', 'access', 'przcxbml', 'vnjdghui', 'contractor', 'able', 'arrange', 'conference', 'call', 'external', 'company', 'party', 'working', 'critical', 'company', 'payroll', 'project', 'germany', 'involves', 'significant', 'external', 'vendor', 'contact', 'skype', 'permission', 'set', 'mine', 'many'] list_processed_text: [['skype'], ['business'], ['extend'], ['access'], ['external'], ['partner'], ['hello'], ['please'], ['extend'], ['skype'], ['business'], ['access'], ['przcxbml'], ['vnjdghui'], ['contractor'], ['able'], ['arrange'], ['conference'], ['call'], ['external'], ['company'], ['party'], ['working'], ['critical'], ['company'], ['payroll'], ['project'], ['germany'], ['involves'], ['significant'], ['external'], ['vendor'], ['contact'], ['skype'], ['permission'], ['set'], ['mine'], ['many']] k: 5016 len: <class 'list'> Data: ['unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 5017 len: <class 'list'> Data: ['account', 'reset', 'account', 'reset'] processed_text: ['account', 'reset', 'account', 'reset'] list_processed_text: [['account'], ['reset'], ['account'], ['reset']] k: 5018 len: <class 'list'> Data: ['erp', 'business', 'client', 'password', 'reset', 'request', 'dear', 'sir', 'please', 'help', 'reset', 'password', 'erp', 'sid', 'business', 'client'] processed_text: ['erp', 'business', 'client', 'password', 'reset', 'request', 'dear', 'sir', 'please', 'help', 'reset', 'password', 'erp', 'sid', 'business', 'client'] list_processed_text: [['erp'], ['business'], ['client'], ['password'], ['reset'], ['request'], ['dear'], ['sir'], ['please'], ['help'], ['reset'], ['password'], ['erp'], ['sid'], ['business'], ['client']] k: 5019 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 5020 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5021 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 5022 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 5023 len: <class 'list'> Data: ['password', 'reset', 'hub', 'password', 'reset', 'hub'] processed_text: ['password', 'reset', 'hub', 'password', 'reset', 'hub'] list_processed_text: [['password'], ['reset'], ['hub'], ['password'], ['reset'], ['hub']] k: 5024 len: <class 'list'> Data: ['erp', 'problem', 'hi', 'able', 'see', 'list', 'va'] processed_text: ['erp', 'problem', 'hi', 'able', 'see', 'list', 'va'] list_processed_text: [['erp'], ['problem'], ['hi'], ['able'], ['see'], ['list'], ['va']] k: 5025 len: <class 'list'> Data: ['meaning', 'warning', 'message', 'dear', 'help', 'desk', 'like', 'know', 'meaning', 'following', 'warning', 'message', 'click', 'engineering', 'tool', 'login', 'jdamieul', 'fandyhgg', 'phd', 'u', 'patent', 'agent', 'senior', 'staff', 'engineer'] processed_text: ['meaning', 'warning', 'message', 'dear', 'help', 'desk', 'like', 'know', 'meaning', 'following', 'warning', 'message', 'click', 'engineering', 'tool', 'login', 'jdamieul', 'fandyhgg', 'phd', 'u', 'patent', 'agent', 'senior', 'staff', 'engineer'] list_processed_text: [['meaning'], ['warning'], ['message'], ['dear'], ['help'], ['desk'], ['like'], ['know'], ['meaning'], ['following'], ['warning'], ['message'], ['click'], ['engineering'], ['tool'], ['login'], ['jdamieul'], ['fandyhgg'], ['phd'], ['u'], ['patent'], ['agent'], ['senior'], ['staff'], ['engineer']] k: 5026 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'erp', 'sid', 'boivin'] processed_text: ['erp', 'sid', 'account', 'unlock', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'erp', 'sid', 'boivin'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['name'], ['mfeyouli'], ['ndobtzpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['reset'], ['erp'], ['sid'], ['boivin']] k: 5027 len: <class 'list'> Data: ['constantly', 'receiving', 'usb', 'device', 'recognized', 'install', 'default', 'printer', 'driver', 'every', 'reboot', 'constantly', 'receiving', 'usb', 'device', 'recognized', 'install', 'default', 'printer', 'driver', 'every', 'reboot', 'cl'] processed_text: ['constantly', 'receiving', 'usb', 'device', 'recognized', 'install', 'default', 'printer', 'driver', 'every', 'reboot', 'constantly', 'receiving', 'usb', 'device', 'recognized', 'install', 'default', 'printer', 'driver', 'every', 'reboot', 'cl'] list_processed_text: [['constantly'], ['receiving'], ['usb'], ['device'], ['recognized'], ['install'], ['default'], ['printer'], ['driver'], ['every'], ['reboot'], ['constantly'], ['receiving'], ['usb'], ['device'], ['recognized'], ['install'], ['default'], ['printer'], ['driver'], ['every'], ['reboot'], ['cl']] k: 5028 len: <class 'list'> Data: ['unable', 'log', 'distributor', 'tool', 'unable', 'log', 'distributor', 'tool'] processed_text: ['unable', 'log', 'distributor', 'tool', 'unable', 'log', 'distributor', 'tool'] list_processed_text: [['unable'], ['log'], ['distributor'], ['tool'], ['unable'], ['log'], ['distributor'], ['tool']] k: 5029 len: <class 'list'> Data: ['supply', 'chain', 'software', 'please', 'reset', 'supply', 'chain', 'software', 'password'] processed_text: ['supply', 'chain', 'software', 'please', 'reset', 'supply', 'chain', 'software', 'password'] list_processed_text: [['supply'], ['chain'], ['software'], ['please'], ['reset'], ['supply'], ['chain'], ['software'], ['password']] k: 5030 len: <class 'list'> Data: ['vpn', 'query', 'vpn', 'query', 'user', 'wanted', 'know', 'connect', 'vpn'] processed_text: ['vpn', 'query', 'vpn', 'query', 'user', 'wanted', 'know', 'connect', 'vpn'] list_processed_text: [['vpn'], ['query'], ['vpn'], ['query'], ['user'], ['wanted'], ['know'], ['connect'], ['vpn']] k: 5031 len: <class 'list'> Data: ['cannot', 'log', 'erp', 'sid', 'erp', 'production', 'new', 'password', 'need', 'access', 'hi', 'recently', 'changed', 'password', 'tried', 'log', 'erp', 'keep', 'receiving', 'message', 'login', 'longer', 'possible', 'many', 'failed', 'attempt', 'tried', 'log', 'one', 'time', 'changed', 'password', 'also', 'received', 'error', 'message', 'password', 'change', 'failed', 'see', 'attached', 'new', 'password', 'work', 'application', 'computer', 'except', 'erp', 'use', 'erp', 'daily', 'basis', 'need', 'access', 'sid', 'erp', 'production', 'user', 'id', 'rubyfgty', 'please', 'let', 'know', 'help', 'issue'] processed_text: ['cannot', 'log', 'erp', 'sid', 'erp', 'production', 'new', 'password', 'need', 'access', 'hi', 'recently', 'changed', 'password', 'tried', 'log', 'erp', 'keep', 'receiving', 'message', 'login', 'longer', 'possible', 'many', 'failed', 'attempt', 'tried', 'log', 'one', 'time', 'changed', 'password', 'also', 'received', 'error', 'message', 'password', 'change', 'failed', 'see', 'attached', 'new', 'password', 'work', 'application', 'computer', 'except', 'erp', 'use', 'erp', 'daily', 'basis', 'need', 'access', 'sid', 'erp', 'production', 'user', 'id', 'rubyfgty', 'please', 'let', 'know', 'help', 'issue'] list_processed_text: [['cannot'], ['log'], ['erp'], ['sid'], ['erp'], ['production'], ['new'], ['password'], ['need'], ['access'], ['hi'], ['recently'], ['changed'], ['password'], ['tried'], ['log'], ['erp'], ['keep'], ['receiving'], ['message'], ['login'], ['longer'], ['possible'], ['many'], ['failed'], ['attempt'], ['tried'], ['log'], ['one'], ['time'], ['changed'], ['password'], ['also'], ['received'], ['error'], ['message'], ['password'], ['change'], ['failed'], ['see'], ['attached'], ['new'], ['password'], ['work'], ['application'], ['computer'], ['except'], ['erp'], ['use'], ['erp'], ['daily'], ['basis'], ['need'], ['access'], ['sid'], ['erp'], ['production'], ['user'], ['id'], ['rubyfgty'], ['please'], ['let'], ['know'], ['help'], ['issue']] k: 5032 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 5033 len: <class 'list'> Data: ['unable', 'launch', 'ethic', 'unable', 'launch', 'ethic', 'login', 'credential', 'invalid', 'error', 'primary', 'smtp', 'address', 'outlook', 'address', 'book', 'new', 'company', 'returned', 'resignation', 'account', 'changed', 'temp', 'permanent', 'taken', 'ethic', 'received', 'email', 'ethic', 'take', 'ethic', 'course', 'organizational', 'change', 'yes', 'email', 'address', 'used', 'starting', 'fy', 'moved', 'company', 'name', 'change', 'email', 'address', 'change', 'email', 'address', 'change', 'email', 'address', 'used', 'starting', 'fy', 'moved', 'company', 'medial', 'leave', 'leave', 'absence', 'recently'] processed_text: ['unable', 'launch', 'ethic', 'unable', 'launch', 'ethic', 'login', 'credential', 'invalid', 'error', 'primary', 'smtp', 'address', 'outlook', 'address', 'book', 'new', 'company', 'returned', 'resignation', 'account', 'changed', 'temp', 'permanent', 'taken', 'ethic', 'received', 'email', 'ethic', 'take', 'ethic', 'course', 'organizational', 'change', 'yes', 'email', 'address', 'used', 'starting', 'fy', 'moved', 'company', 'name', 'change', 'email', 'address', 'change', 'email', 'address', 'change', 'email', 'address', 'used', 'starting', 'fy', 'moved', 'company', 'medial', 'leave', 'leave', 'absence', 'recently'] list_processed_text: [['unable'], ['launch'], ['ethic'], ['unable'], ['launch'], ['ethic'], ['login'], ['credential'], ['invalid'], ['error'], ['primary'], ['smtp'], ['address'], ['outlook'], ['address'], ['book'], ['new'], ['company'], ['returned'], ['resignation'], ['account'], ['changed'], ['temp'], ['permanent'], ['taken'], ['ethic'], ['received'], ['email'], ['ethic'], ['take'], ['ethic'], ['course'], ['organizational'], ['change'], ['yes'], ['email'], ['address'], ['used'], ['starting'], ['fy'], ['moved'], ['company'], ['name'], ['change'], ['email'], ['address'], ['change'], ['email'], ['address'], ['change'], ['email'], ['address'], ['used'], ['starting'], ['fy'], ['moved'], ['company'], ['medial'], ['leave'], ['leave'], ['absence'], ['recently']] k: 5034 len: <class 'list'> Data: ['also', 'account', 'need', 'given', 'davgtgyrh', 'smgnhyleck', 'bhghtyum', 'need', 'additional', 'time', 'please', 'delete', 'account', 'also', 'account', 'need', 'given', 'davgtgyrh', 'smgnhyleck'] processed_text: ['also', 'account', 'need', 'given', 'davgtgyrh', 'smgnhyleck', 'bhghtyum', 'need', 'additional', 'time', 'please', 'delete', 'account', 'also', 'account', 'need', 'given', 'davgtgyrh', 'smgnhyleck'] list_processed_text: [['also'], ['account'], ['need'], ['given'], ['davgtgyrh'], ['smgnhyleck'], ['bhghtyum'], ['need'], ['additional'], ['time'], ['please'], ['delete'], ['account'], ['also'], ['account'], ['need'], ['given'], ['davgtgyrh'], ['smgnhyleck']] k: 5035 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 5036 len: <class 'list'> Data: ['password', 'locked', 'erp', 'sid', 'password', 'locked', 'erp', 'sid'] processed_text: ['password', 'locked', 'erp', 'sid', 'password', 'locked', 'erp', 'sid'] list_processed_text: [['password'], ['locked'], ['erp'], ['sid'], ['password'], ['locked'], ['erp'], ['sid']] k: 5037 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 5038 len: <class 'list'> Data: ['outlook', 'updating', 'email', 'outlook', 'updating', 'email'] processed_text: ['outlook', 'updating', 'email', 'outlook', 'updating', 'email'] list_processed_text: [['outlook'], ['updating'], ['email'], ['outlook'], ['updating'], ['email']] k: 5039 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5040 len: <class 'list'> Data: ['release', 'folder', 'r', 'ytcxjzue', 'guplftok', 'krafghyumec', 'zbijdqpg', 'ehpjkwio', 'dinktyhed', 'department', 'hostname', 'info', 'release', 'folder', 'coating', 'subfolders'] processed_text: ['release', 'folder', 'r', 'ytcxjzue', 'guplftok', 'krafghyumec', 'zbijdqpg', 'ehpjkwio', 'dinktyhed', 'department', 'hostname', 'info', 'release', 'folder', 'coating', 'subfolders'] list_processed_text: [['release'], ['folder'], ['r'], ['ytcxjzue'], ['guplftok'], ['krafghyumec'], ['zbijdqpg'], ['ehpjkwio'], ['dinktyhed'], ['department'], ['hostname'], ['info'], ['release'], ['folder'], ['coating'], ['subfolders']] k: 5041 len: <class 'list'> Data: ['change', 'screensaver', 'company', 'company', 'please', 'change', 'screensaver', 'company', 'pc', 'name', 'ekql'] processed_text: ['change', 'screensaver', 'company', 'company', 'please', 'change', 'screensaver', 'company', 'pc', 'name', 'ekql'] list_processed_text: [['change'], ['screensaver'], ['company'], ['company'], ['please'], ['change'], ['screensaver'], ['company'], ['pc'], ['name'], ['ekql']] k: 5042 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'eu', 'tool', 'downloads', 'list', 'vmsliazh', 'ltksxmyv', 'determine', 'network', 'problem', 'want', 'ot', 'download', 'list', 'vmsliazh', 'ltksxmyv', 'interrogates', 'questioning', 'time', 'coming', 'eu', 'tool', 'want', 'print', 'label', 'error', 'coming', 'one', 'transaction', 'impacted', 'server', 'vmsliazh', 'ltksxmyv', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'problem', 'shipment', 'department'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'eu', 'tool', 'downloads', 'list', 'vmsliazh', 'ltksxmyv', 'determine', 'network', 'problem', 'want', 'ot', 'download', 'list', 'vmsliazh', 'ltksxmyv', 'interrogates', 'questioning', 'time', 'coming', 'eu', 'tool', 'want', 'print', 'label', 'error', 'coming', 'one', 'transaction', 'impacted', 'server', 'vmsliazh', 'ltksxmyv', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'problem', 'shipment', 'department'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['eu'], ['tool'], ['downloads'], ['list'], ['vmsliazh'], ['ltksxmyv'], ['determine'], ['network'], ['problem'], ['want'], ['ot'], ['download'], ['list'], ['vmsliazh'], ['ltksxmyv'], ['interrogates'], ['questioning'], ['time'], ['coming'], ['eu'], ['tool'], ['want'], ['print'], ['label'], ['error'], ['coming'], ['one'], ['transaction'], ['impacted'], ['server'], ['vmsliazh'], ['ltksxmyv'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['yes'], ['problem'], ['shipment'], ['department']] k: 5043 len: <class 'list'> Data: ['printer', 'cl', 'good', 'morning', 'made', 'several', 'attempt', 'print', 'printer', 'cl', 'also', 'powered', 'device', 'back', 'retried', 'printing', 'print', 'printer', 'driver', 'refreshed', 'colleague', 'try', 'result', 'deleted', 'printer', 'cl', 'pc', 'reinstalled', 'reinstalled', 'prtgn', 'printed', 'print', 'came', 'successfully', 'printer', 'changed', 'cl', 'gn', 'without', 'notification', 'printer', 'known', 'gn', 'error', 'requires', 'investigation', 'mikhghytr', 'wafglhdrhjop'] processed_text: ['printer', 'cl', 'good', 'morning', 'made', 'several', 'attempt', 'print', 'printer', 'cl', 'also', 'powered', 'device', 'back', 'retried', 'printing', 'print', 'printer', 'driver', 'refreshed', 'colleague', 'try', 'result', 'deleted', 'printer', 'cl', 'pc', 'reinstalled', 'reinstalled', 'prtgn', 'printed', 'print', 'came', 'successfully', 'printer', 'changed', 'cl', 'gn', 'without', 'notification', 'printer', 'known', 'gn', 'error', 'requires', 'investigation', 'mikhghytr', 'wafglhdrhjop'] list_processed_text: [['printer'], ['cl'], ['good'], ['morning'], ['made'], ['several'], ['attempt'], ['print'], ['printer'], ['cl'], ['also'], ['powered'], ['device'], ['back'], ['retried'], ['printing'], ['print'], ['printer'], ['driver'], ['refreshed'], ['colleague'], ['try'], ['result'], ['deleted'], ['printer'], ['cl'], ['pc'], ['reinstalled'], ['reinstalled'], ['prtgn'], ['printed'], ['print'], ['came'], ['successfully'], ['printer'], ['changed'], ['cl'], ['gn'], ['without'], ['notification'], ['printer'], ['known'], ['gn'], ['error'], ['requires'], ['investigation'], ['mikhghytr'], ['wafglhdrhjop']] k: 5044 len: <class 'list'> Data: ['erp', 'step', 'interface', 'programdnty', 'sending', 'ebom', 'data', 'step', 'erp', 'step', 'interface', 'programdnty', 'generating', 'idoc', 'data', 'ebom', 'item', 'example', 'mm', 'sending', 'step', 'ebom', 'data', 'missing', 'ebom', 'insert', 'screw', 'also', 'issue', 'missing', 'ebom', 'item', 'screw', 'mm', 'erp', 'data', 'list', 'bom', 'item', 'material', 'question', 'know', 'm', 'm', 'material', 'type', 'raw', 'material', 'thought', 'able', 'show', 'data', 'bom', 'regardless', 'material', 'type', 'could', 'issue', 'ebom', 'showing', 'drawing', 'ebom', 'created', 'certain', 'material', 'force', 'work', 'joe', 'us', 'programdnty', 'force', 'product', 'material', 'number', 'ansi', 'code', 'position', 'component', 'material', 'ansi', 'component', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'step', 'data', 'bom', 'bom', 'bom', 'krbbscfprc', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krbbscfprc', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool'] processed_text: ['erp', 'step', 'interface', 'programdnty', 'sending', 'ebom', 'data', 'step', 'erp', 'step', 'interface', 'programdnty', 'generating', 'idoc', 'data', 'ebom', 'item', 'example', 'mm', 'sending', 'step', 'ebom', 'data', 'missing', 'ebom', 'insert', 'screw', 'also', 'issue', 'missing', 'ebom', 'item', 'screw', 'mm', 'erp', 'data', 'list', 'bom', 'item', 'material', 'question', 'know', 'm', 'm', 'material', 'type', 'raw', 'material', 'thought', 'able', 'show', 'data', 'bom', 'regardless', 'material', 'type', 'could', 'issue', 'ebom', 'showing', 'drawing', 'ebom', 'created', 'certain', 'material', 'force', 'work', 'joe', 'us', 'programdnty', 'force', 'product', 'material', 'number', 'ansi', 'code', 'position', 'component', 'material', 'ansi', 'component', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'krcscfpry', 'm', 'krcscfpry', 'm', 'krcscfpry', 'ft', 'krcscfpry', 'ft', 'step', 'data', 'bom', 'bom', 'bom', 'krbbscfprc', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krbbscfprc', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'krcscfpry', 'ft', 'torx', 'wrench', 'engineering', 'tool', 'ft', 'torx', 'wrench', 'engineering', 'tool'] list_processed_text: [['erp'], ['step'], ['interface'], ['programdnty'], ['sending'], ['ebom'], ['data'], ['step'], ['erp'], ['step'], ['interface'], ['programdnty'], ['generating'], ['idoc'], ['data'], ['ebom'], ['item'], ['example'], ['mm'], ['sending'], ['step'], ['ebom'], ['data'], ['missing'], ['ebom'], ['insert'], ['screw'], ['also'], ['issue'], ['missing'], ['ebom'], ['item'], ['screw'], ['mm'], ['erp'], ['data'], ['list'], ['bom'], ['item'], ['material'], ['question'], ['know'], ['m'], ['m'], ['material'], ['type'], ['raw'], ['material'], ['thought'], ['able'], ['show'], ['data'], ['bom'], ['regardless'], ['material'], ['type'], ['could'], ['issue'], ['ebom'], ['showing'], ['drawing'], ['ebom'], ['created'], ['certain'], ['material'], ['force'], ['work'], ['joe'], ['us'], ['programdnty'], ['force'], ['product'], ['material'], ['number'], ['ansi'], ['code'], ['position'], ['component'], ['material'], ['ansi'], ['component'], ['krcscfpry'], ['m'], ['krcscfpry'], ['m'], ['krcscfpry'], ['ft'], ['krcscfpry'], ['ft'], ['krcscfpry'], ['m'], ['krcscfpry'], ['m'], ['krcscfpry'], ['ft'], ['krcscfpry'], ['ft'], ['krcscfpry'], ['m'], ['krcscfpry'], ['m'], ['krcscfpry'], ['ft'], ['krcscfpry'], ['ft'], ['step'], ['data'], ['bom'], ['bom'], ['bom'], ['krbbscfprc'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['krbbscfprc'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['krcscfpry'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['krcscfpry'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['krcscfpry'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool'], ['ft'], ['torx'], ['wrench'], ['engineering'], ['tool']] k: 5045 len: <class 'list'> Data: ['need', 'configure', 'printer', 'tc', 'tc', 'need', 'configure', 'printer', 'tc', 'tc'] processed_text: ['need', 'configure', 'printer', 'tc', 'tc', 'need', 'configure', 'printer', 'tc', 'tc'] list_processed_text: [['need'], ['configure'], ['printer'], ['tc'], ['tc'], ['need'], ['configure'], ['printer'], ['tc'], ['tc']] k: 5046 len: <class 'list'> Data: ['reset', 'password', 'mafgtnik', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'mafgtnik', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['mafgtnik'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5047 len: <class 'list'> Data: ['unable', 'extend', 'display', 'external', 'monitor', 'unable', 'extend', 'display', 'external', 'monitor'] processed_text: ['unable', 'extend', 'display', 'external', 'monitor', 'unable', 'extend', 'display', 'external', 'monitor'] list_processed_text: [['unable'], ['extend'], ['display'], ['external'], ['monitor'], ['unable'], ['extend'], ['display'], ['external'], ['monitor']] k: 5048 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'germany', 'divestiture', 'site', 'vpn', 'rtr', 'et', 'site', 'vpn', 'rtr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'germany', 'divestiture', 'site', 'vpn', 'rtr', 'et', 'site', 'vpn', 'rtr', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['germany'], ['divestiture'], ['site'], ['vpn'], ['rtr'], ['et'], ['site'], ['vpn'], ['rtr'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5049 len: <class 'list'> Data: ['reset', 'password', 'sar', 'abreu', 'rghkiriuytes', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'sar', 'abreu', 'rghkiriuytes', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['sar'], ['abreu'], ['rghkiriuytes'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5050 len: <class 'list'> Data: ['unable', 'launch', 'netweaver', 'unable', 'launch', 'netweaver'] processed_text: ['unable', 'launch', 'netweaver', 'unable', 'launch', 'netweaver'] list_processed_text: [['unable'], ['launch'], ['netweaver'], ['unable'], ['launch'], ['netweaver']] k: 5051 len: <class 'list'> Data: ['unable', 'print', 'adobe', 'unable', 'print', 'adobe'] processed_text: ['unable', 'print', 'adobe', 'unable', 'print', 'adobe'] list_processed_text: [['unable'], ['print'], ['adobe'], ['unable'], ['print'], ['adobe']] k: 5052 len: <class 'list'> Data: ['skype', 'meeting', 'code', 'pin', 'need', 'ability', 'create', 'skype', 'meeting', 'outlook'] processed_text: ['skype', 'meeting', 'code', 'pin', 'need', 'ability', 'create', 'skype', 'meeting', 'outlook'] list_processed_text: [['skype'], ['meeting'], ['code'], ['pin'], ['need'], ['ability'], ['create'], ['skype'], ['meeting'], ['outlook']] k: 5053 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'run', 'update', 'ran', 'last', 'night', 'asks', 'adobe', 'flash', 'tried', 'install', 'several', 'time', 'immediate', 'need'] processed_text: ['hr', 'tool', 'etime', 'run', 'update', 'ran', 'last', 'night', 'asks', 'adobe', 'flash', 'tried', 'install', 'several', 'time', 'immediate', 'need'] list_processed_text: [['hr'], ['tool'], ['etime'], ['run'], ['update'], ['ran'], ['last'], ['night'], ['asks'], ['adobe'], ['flash'], ['tried'], ['install'], ['several'], ['time'], ['immediate'], ['need']] k: 5054 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5055 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 5056 len: <class 'list'> Data: ['problleme', 'mit', 'eu', 'tool', 'bejvhsfx', 'dmvsclhp', 'problleme', 'mit', 'eu', 'tool', 'bejvhsfx', 'dmvsclhp'] processed_text: ['problleme', 'mit', 'eu', 'tool', 'bejvhsfx', 'dmvsclhp', 'problleme', 'mit', 'eu', 'tool', 'bejvhsfx', 'dmvsclhp'] list_processed_text: [['problleme'], ['mit'], ['eu'], ['tool'], ['bejvhsfx'], ['dmvsclhp'], ['problleme'], ['mit'], ['eu'], ['tool'], ['bejvhsfx'], ['dmvsclhp']] k: 5057 len: <class 'list'> Data: ['battery', 'charging', 'issue', 'battery', 'charging', 'issue'] processed_text: ['battery', 'charging', 'issue', 'battery', 'charging', 'issue'] list_processed_text: [['battery'], ['charging'], ['issue'], ['battery'], ['charging'], ['issue']] k: 5058 len: <class 'list'> Data: ['need', 'vpn', 'access', 'need', 'vpn', 'access', 'new', 'employee', 'company', 'laptop', 'emzlw'] processed_text: ['need', 'vpn', 'access', 'need', 'vpn', 'access', 'new', 'employee', 'company', 'laptop', 'emzlw'] list_processed_text: [['need'], ['vpn'], ['access'], ['need'], ['vpn'], ['access'], ['new'], ['employee'], ['company'], ['laptop'], ['emzlw']] k: 5059 len: <class 'list'> Data: ['reset', 'password', 'reghythicsa', 'purvis', 'using', 'password', 'management', 'tool', 'password', 'reset', 'need', 'reset', 'password', 'interaction', 'desktop', 'telephony', 'software', 'user', 'name', 'pughjuvirl'] processed_text: ['reset', 'password', 'reghythicsa', 'purvis', 'using', 'password', 'management', 'tool', 'password', 'reset', 'need', 'reset', 'password', 'interaction', 'desktop', 'telephony', 'software', 'user', 'name', 'pughjuvirl'] list_processed_text: [['reset'], ['password'], ['reghythicsa'], ['purvis'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['need'], ['reset'], ['password'], ['interaction'], ['desktop'], ['telephony'], ['software'], ['user'], ['name'], ['pughjuvirl']] k: 5060 len: <class 'list'> Data: ['unlock', 'account', 'lichtyuiwu', 'unlock', 'account', 'lichtyuiwu'] processed_text: ['unlock', 'account', 'lichtyuiwu', 'unlock', 'account', 'lichtyuiwu'] list_processed_text: [['unlock'], ['account'], ['lichtyuiwu'], ['unlock'], ['account'], ['lichtyuiwu']] k: 5061 len: <class 'list'> Data: ['production', 'order', 'grade', 'partially', 'printed', 'hebrew', 'emea', 'production', 'order', 'grade', 'partially', 'printed', 'hebrew', 'please', 'see', 'example', 'attached', 'en', 'printed', 'fully'] processed_text: ['production', 'order', 'grade', 'partially', 'printed', 'hebrew', 'emea', 'production', 'order', 'grade', 'partially', 'printed', 'hebrew', 'please', 'see', 'example', 'attached', 'en', 'printed', 'fully'] list_processed_text: [['production'], ['order'], ['grade'], ['partially'], ['printed'], ['hebrew'], ['emea'], ['production'], ['order'], ['grade'], ['partially'], ['printed'], ['hebrew'], ['please'], ['see'], ['example'], ['attached'], ['en'], ['printed'], ['fully']] k: 5062 len: <class 'list'> Data: ['java', 'issue', 'unable', 'continue', 'java', 'update'] processed_text: ['java', 'issue', 'unable', 'continue', 'java', 'update'] list_processed_text: [['java'], ['issue'], ['unable'], ['continue'], ['java'], ['update']] k: 5063 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'kd', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'install', 'driver', 'use', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'outlook', 'word', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'kd', 'ex', 'hq', 'wy', 'hp', 'detailed', 'description', 'problem', 'install', 'driver', 'use', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'outlook', 'word', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['kd'], ['ex'], ['hq'], ['wy'], ['hp'], ['detailed'], ['description'], ['problem'], ['install'], ['driver'], ['use'], ['printer'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['outlook'], ['word'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 5064 len: <class 'list'> Data: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'lmxl', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'detected', 'least', 'occurrence', 'firewall', 'att', 'apac', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'shatryung', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'lmxl', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'entry', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry', 'appends', 'contain', 'information', 'original', 'alert', 'contain', 'difference', 'source', 'destination', 'pair', 'please', 'view', 'update', 'ticket', 'via', 'portal', 'security', 'operation', 'team', 'notify', 'information', 'becomes', 'available', 'security', 'analysis', 'team'] processed_text: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'lmxl', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'detected', 'least', 'occurrence', 'firewall', 'att', 'apac', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'shatryung', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'lmxl', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'entry', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'apac', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'ascii', 'packet', 'entry', 'hex', 'packet', 'entry', 'appends', 'contain', 'information', 'original', 'alert', 'contain', 'difference', 'source', 'destination', 'pair', 'please', 'view', 'update', 'ticket', 'via', 'portal', 'security', 'operation', 'team', 'notify', 'information', 'becomes', 'available', 'security', 'analysis', 'team'] list_processed_text: [['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['destination'], ['hostname'], ['lmxl'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['soc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['shatryung'], ['additional'], ['information'], ['port'], ['best'], ['practice'], ['found'], ['following'], ['site'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['source'], ['port'], ['destination'], ['hostname'], ['lmxl'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['ascii'], ['packet'], ['entry'], ['hex'], ['packet'], ['entry'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['source'], ['port'], ['destination'], ['hostname'], ['entry'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['ascii'], ['packet'], ['entry'], ['hex'], ['packet'], ['entry'], ['appends'], ['contain'], ['information'], ['original'], ['alert'], ['contain'], ['difference'], ['source'], ['destination'], ['pair'], ['please'], ['view'], ['update'], ['ticket'], ['via'], ['portal'], ['security'], ['operation'], ['team'], ['notify'], ['information'], ['becomes'], ['available'], ['security'], ['analysis'], ['team']] k: 5065 len: <class 'list'> Data: ['spam', 'call', 'received', 'india', 'spam', 'call', 'received', 'india'] processed_text: ['spam', 'call', 'received', 'india', 'spam', 'call', 'received', 'india'] list_processed_text: [['spam'], ['call'], ['received'], ['india'], ['spam'], ['call'], ['received'], ['india']] k: 5066 len: <class 'list'> Data: ['anleitung', 'fuer', 'password', 'management', 'tool', 'password', 'manager', 'gebraucht', 'anleitung', 'fuer', 'password', 'management', 'tool', 'password', 'manager', 'gebraucht'] processed_text: ['anleitung', 'fuer', 'password', 'management', 'tool', 'password', 'manager', 'gebraucht', 'anleitung', 'fuer', 'password', 'management', 'tool', 'password', 'manager', 'gebraucht'] list_processed_text: [['anleitung'], ['fuer'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['gebraucht'], ['anleitung'], ['fuer'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['gebraucht']] k: 5067 len: <class 'list'> Data: ['job', 'scheduler', 'workstation', 'hostname', 'observerd', 'fence', 'limit', 'hostname'] processed_text: ['job', 'scheduler', 'workstation', 'hostname', 'observerd', 'fence', 'limit', 'hostname'] list_processed_text: [['job'], ['scheduler'], ['workstation'], ['hostname'], ['observerd'], ['fence'], ['limit'], ['hostname']] k: 5068 len: <class 'list'> Data: ['internet', 'explorer', 'update', 'version', 'internet', 'explorer', 'update', 'version'] processed_text: ['internet', 'explorer', 'update', 'version', 'internet', 'explorer', 'update', 'version'] list_processed_text: [['internet'], ['explorer'], ['update'], ['version'], ['internet'], ['explorer'], ['update'], ['version']] k: 5069 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 5070 len: <class 'list'> Data: ['simfghon', 'want', 'use', 'mail', 'owa', 'configured', 'explained', 'outlook', 'also', 'already', 'installed'] processed_text: ['simfghon', 'want', 'use', 'mail', 'owa', 'configured', 'explained', 'outlook', 'also', 'already', 'installed'] list_processed_text: [['simfghon'], ['want'], ['use'], ['mail'], ['owa'], ['configured'], ['explained'], ['outlook'], ['also'], ['already'], ['installed']] k: 5071 len: <class 'list'> Data: ['wu', 'account', 'unlock', 'wu', 'account', 'unlock'] processed_text: ['wu', 'account', 'unlock', 'wu', 'account', 'unlock'] list_processed_text: [['wu'], ['account'], ['unlock'], ['wu'], ['account'], ['unlock']] k: 5072 len: <class 'list'> Data: ['would', 'like', 'download', 'free', 'software', 'called', 'bizagi', 'cannot', 'due', 'security', 'set', 'would', 'like', 'download', 'free', 'software', 'called', 'bizagi', 'cannot', 'due', 'security', 'set', 'therefore', 'need', 'support'] processed_text: ['would', 'like', 'download', 'free', 'software', 'called', 'bizagi', 'cannot', 'due', 'security', 'set', 'would', 'like', 'download', 'free', 'software', 'called', 'bizagi', 'cannot', 'due', 'security', 'set', 'therefore', 'need', 'support'] list_processed_text: [['would'], ['like'], ['download'], ['free'], ['software'], ['called'], ['bizagi'], ['cannot'], ['due'], ['security'], ['set'], ['would'], ['like'], ['download'], ['free'], ['software'], ['called'], ['bizagi'], ['cannot'], ['due'], ['security'], ['set'], ['therefore'], ['need'], ['support']] k: 5073 len: <class 'list'> Data: ['data', 'retrieval', 'backup', 'server', 'dear', 'sir', 'madam', 'zipped', 'folder', 'around', 'mb', 'missing', 'following', 'path', 'hostname', 'zollerfgh', 'document', 'file', 'hostname', 'grinding', 'zollerfgh', 'document', 'trial', 'data', 'software', 'zollerfgh', 'file', 'hostname', 'grinding', 'trial', 'data', 'software', 'zollerfgh', 'data', 'backup', 'zollerfgh', 'genius', 'machine', 'required', 'urgent', 'basis', 'machine', 'breakdown', 'condition', 'please', 'retrieve', 'data', 'back', 'server'] processed_text: ['data', 'retrieval', 'backup', 'server', 'dear', 'sir', 'madam', 'zipped', 'folder', 'around', 'mb', 'missing', 'following', 'path', 'hostname', 'zollerfgh', 'document', 'file', 'hostname', 'grinding', 'zollerfgh', 'document', 'trial', 'data', 'software', 'zollerfgh', 'file', 'hostname', 'grinding', 'trial', 'data', 'software', 'zollerfgh', 'data', 'backup', 'zollerfgh', 'genius', 'machine', 'required', 'urgent', 'basis', 'machine', 'breakdown', 'condition', 'please', 'retrieve', 'data', 'back', 'server'] list_processed_text: [['data'], ['retrieval'], ['backup'], ['server'], ['dear'], ['sir'], ['madam'], ['zipped'], ['folder'], ['around'], ['mb'], ['missing'], ['following'], ['path'], ['hostname'], ['zollerfgh'], ['document'], ['file'], ['hostname'], ['grinding'], ['zollerfgh'], ['document'], ['trial'], ['data'], ['software'], ['zollerfgh'], ['file'], ['hostname'], ['grinding'], ['trial'], ['data'], ['software'], ['zollerfgh'], ['data'], ['backup'], ['zollerfgh'], ['genius'], ['machine'], ['required'], ['urgent'], ['basis'], ['machine'], ['breakdown'], ['condition'], ['please'], ['retrieve'], ['data'], ['back'], ['server']] k: 5074 len: <class 'list'> Data: ['cisco', 'access', 'point', 'working', 'hallo', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'drtbe'] processed_text: ['cisco', 'access', 'point', 'working', 'hallo', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'drtbe'] list_processed_text: [['cisco'], ['access'], ['point'], ['working'], ['hallo'], ['cisco'], ['access'], ['point'], ['working'], ['mac'], ['address'], ['drtbe']] k: 5075 len: <class 'list'> Data: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'drtbe'] processed_text: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'drtbe'] list_processed_text: [['cisco'], ['access'], ['point'], ['working'], ['cisco'], ['access'], ['point'], ['working'], ['mac'], ['address'], ['drtbe']] k: 5076 len: <class 'list'> Data: ['account', 'owner', 'issue', 'please', 'assign', 'msd', 'crm', 'team', 'discovered', 'issue', 'account', 'owner', 'msd', 'example', 'company', 'account', 'set', 'owner', 'company', 'erp', 'customer', 'account', 'account', 'owner', 'account', 'account', 'company', 'company', 'company', 'company', 'company', 'company', 'company'] processed_text: ['account', 'owner', 'issue', 'please', 'assign', 'msd', 'crm', 'team', 'discovered', 'issue', 'account', 'owner', 'msd', 'example', 'company', 'account', 'set', 'owner', 'company', 'erp', 'customer', 'account', 'account', 'owner', 'account', 'account', 'company', 'company', 'company', 'company', 'company', 'company', 'company'] list_processed_text: [['account'], ['owner'], ['issue'], ['please'], ['assign'], ['msd'], ['crm'], ['team'], ['discovered'], ['issue'], ['account'], ['owner'], ['msd'], ['example'], ['company'], ['account'], ['set'], ['owner'], ['company'], ['erp'], ['customer'], ['account'], ['account'], ['owner'], ['account'], ['account'], ['company'], ['company'], ['company'], ['company'], ['company'], ['company'], ['company']] k: 5077 len: <class 'list'> Data: ['help', 'hello', 'help', 'team', 'pls', 'open', 'ticket', 'help', 'might', 'needed', 'meeting', 'scheduled', 'rth', 'room', 'start', 'meeting', 'conducted', 'two', 'external', 'trainer', 'might', 'need', 'help', 'start', 'presentation', 'beamer'] processed_text: ['help', 'hello', 'help', 'team', 'pls', 'open', 'ticket', 'help', 'might', 'needed', 'meeting', 'scheduled', 'rth', 'room', 'start', 'meeting', 'conducted', 'two', 'external', 'trainer', 'might', 'need', 'help', 'start', 'presentation', 'beamer'] list_processed_text: [['help'], ['hello'], ['help'], ['team'], ['pls'], ['open'], ['ticket'], ['help'], ['might'], ['needed'], ['meeting'], ['scheduled'], ['rth'], ['room'], ['start'], ['meeting'], ['conducted'], ['two'], ['external'], ['trainer'], ['might'], ['need'], ['help'], ['start'], ['presentation'], ['beamer']] k: 5078 len: <class 'list'> Data: ['able', 'open', 'xcel', 'file', 'able', 'open', 'xcel', 'file'] processed_text: ['able', 'open', 'xcel', 'file', 'able', 'open', 'xcel', 'file'] list_processed_text: [['able'], ['open'], ['xcel'], ['file'], ['able'], ['open'], ['xcel'], ['file']] k: 5079 len: <class 'list'> Data: ['atp', 'available', 'delivery', 'plant', 'plant', 'order', 'item', 'cannot', 'get', 'confirmed', 'day', 'yesterday', 'found', 'order', 'item', 'confirmed', 'future', 'day', 'order', 'entry', 'even', 'full', 'atp', 'available', 'delivery', 'plant', 'plant', 'csrs', 'got', 'many', 'call', 'customer', 'manually', 'generate', 'dn', 'order', 'example', 'please', 'check'] processed_text: ['atp', 'available', 'delivery', 'plant', 'plant', 'order', 'item', 'cannot', 'get', 'confirmed', 'day', 'yesterday', 'found', 'order', 'item', 'confirmed', 'future', 'day', 'order', 'entry', 'even', 'full', 'atp', 'available', 'delivery', 'plant', 'plant', 'csrs', 'got', 'many', 'call', 'customer', 'manually', 'generate', 'dn', 'order', 'example', 'please', 'check'] list_processed_text: [['atp'], ['available'], ['delivery'], ['plant'], ['plant'], ['order'], ['item'], ['cannot'], ['get'], ['confirmed'], ['day'], ['yesterday'], ['found'], ['order'], ['item'], ['confirmed'], ['future'], ['day'], ['order'], ['entry'], ['even'], ['full'], ['atp'], ['available'], ['delivery'], ['plant'], ['plant'], ['csrs'], ['got'], ['many'], ['call'], ['customer'], ['manually'], ['generate'], ['dn'], ['order'], ['example'], ['please'], ['check']] k: 5080 len: <class 'list'> Data: ['hello', 'lbxgodfu', 'usperhki', 'company', 'italy', 'vpn', 'profile', 'working', 'hello', 'lbxgodfu', 'usperhki', 'company', 'italy', 'vpn', 'profile', 'working', 'please', 'verify', 'user', 'piolfghim'] processed_text: ['hello', 'lbxgodfu', 'usperhki', 'company', 'italy', 'vpn', 'profile', 'working', 'hello', 'lbxgodfu', 'usperhki', 'company', 'italy', 'vpn', 'profile', 'working', 'please', 'verify', 'user', 'piolfghim'] list_processed_text: [['hello'], ['lbxgodfu'], ['usperhki'], ['company'], ['italy'], ['vpn'], ['profile'], ['working'], ['hello'], ['lbxgodfu'], ['usperhki'], ['company'], ['italy'], ['vpn'], ['profile'], ['working'], ['please'], ['verify'], ['user'], ['piolfghim']] k: 5081 len: <class 'list'> Data: ['netweaver', 'hello', 'team', 'please', 'help', 'update', 'netweaver', 'receiving', 'message'] processed_text: ['netweaver', 'hello', 'team', 'please', 'help', 'update', 'netweaver', 'receiving', 'message'] list_processed_text: [['netweaver'], ['hello'], ['team'], ['please'], ['help'], ['update'], ['netweaver'], ['receiving'], ['message']] k: 5082 len: <class 'list'> Data: ['policy', 'please', 'forward', 'pc', 'support', 'seems', 'policy', 'place', 'automatically', 'add', 'website', 'list', 'site', 'viewed', 'compatibilty', 'mode', 'setting', 'internet', 'explorer', 'would', 'like', 'policy', 'disabled', 'least', 'automatically', 'add', 'company', 'com', 'company', 'com', 'company', 'com', 'mit', 'freundlichem', 'gru', 'kind'] processed_text: ['policy', 'please', 'forward', 'pc', 'support', 'seems', 'policy', 'place', 'automatically', 'add', 'website', 'list', 'site', 'viewed', 'compatibilty', 'mode', 'setting', 'internet', 'explorer', 'would', 'like', 'policy', 'disabled', 'least', 'automatically', 'add', 'company', 'com', 'company', 'com', 'company', 'com', 'mit', 'freundlichem', 'gru', 'kind'] list_processed_text: [['policy'], ['please'], ['forward'], ['pc'], ['support'], ['seems'], ['policy'], ['place'], ['automatically'], ['add'], ['website'], ['list'], ['site'], ['viewed'], ['compatibilty'], ['mode'], ['setting'], ['internet'], ['explorer'], ['would'], ['like'], ['policy'], ['disabled'], ['least'], ['automatically'], ['add'], ['company'], ['com'], ['company'], ['com'], ['company'], ['com'], ['mit'], ['freundlichem'], ['gru'], ['kind']] k: 5083 len: <class 'list'> Data: ['babiluntr', 'many', 'gr', 'best'] processed_text: ['babiluntr', 'many', 'gr', 'best'] list_processed_text: [['babiluntr'], ['many'], ['gr'], ['best']] k: 5084 len: <class 'list'> Data: ['outlook', 'opening', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'opening'] processed_text: ['outlook', 'opening', 'name', 'ilypdtno', 'mkdfetuq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'opening'] list_processed_text: [['outlook'], ['opening'], ['name'], ['ilypdtno'], ['mkdfetuq'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['opening']] k: 5085 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5086 len: <class 'list'> Data: ['network', 'outage', 'pol', 'poland', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'pol', 'poland', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['pol'], ['poland'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5087 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5088 len: <class 'list'> Data: ['pls', 'unlock', 'reset', 'window', 'erp', 'account', 'user', 'vvtghjscha', 'pls', 'unlock', 'reset', 'window', 'erp', 'account', 'user', 'vvtghjscha'] processed_text: ['pls', 'unlock', 'reset', 'window', 'erp', 'account', 'user', 'vvtghjscha', 'pls', 'unlock', 'reset', 'window', 'erp', 'account', 'user', 'vvtghjscha'] list_processed_text: [['pls'], ['unlock'], ['reset'], ['window'], ['erp'], ['account'], ['user'], ['vvtghjscha'], ['pls'], ['unlock'], ['reset'], ['window'], ['erp'], ['account'], ['user'], ['vvtghjscha']] k: 5089 len: <class 'list'> Data: ['install', 'win', 'ewew', 'sgnubadl', 'gpkovbah', 'install', 'win', 'ewew', 'sgnubadl', 'gpkovbah'] processed_text: ['install', 'win', 'ewew', 'sgnubadl', 'gpkovbah', 'install', 'win', 'ewew', 'sgnubadl', 'gpkovbah'] list_processed_text: [['install'], ['win'], ['ewew'], ['sgnubadl'], ['gpkovbah'], ['install'], ['win'], ['ewew'], ['sgnubadl'], ['gpkovbah']] k: 5090 len: <class 'list'> Data: ['install', 'win', 'ewew', 'sgnubadl', 'gpkovbah', 'install', 'win', 'ewew', 'sgnubadl', 'gpkovbah'] processed_text: ['install', 'win', 'ewew', 'sgnubadl', 'gpkovbah', 'install', 'win', 'ewew', 'sgnubadl', 'gpkovbah'] list_processed_text: [['install'], ['win'], ['ewew'], ['sgnubadl'], ['gpkovbah'], ['install'], ['win'], ['ewew'], ['sgnubadl'], ['gpkovbah']] k: 5091 len: <class 'list'> Data: ['install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml'] processed_text: ['install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['install'], ['win'], ['ewew'], ['vzqomdgt'], ['jwoqbuml'], ['install'], ['win'], ['ewew'], ['vzqomdgt'], ['jwoqbuml']] k: 5092 len: <class 'list'> Data: ['install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml'] processed_text: ['install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml', 'install', 'win', 'ewew', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['install'], ['win'], ['ewew'], ['vzqomdgt'], ['jwoqbuml'], ['install'], ['win'], ['ewew'], ['vzqomdgt'], ['jwoqbuml']] k: 5093 len: <class 'list'> Data: ['performance', 'improvement', 'tuning', 'performance', 'improvement', 'tuning', 'machine', 'summary', 'load', 'list'] processed_text: ['performance', 'improvement', 'tuning', 'performance', 'improvement', 'tuning', 'machine', 'summary', 'load', 'list'] list_processed_text: [['performance'], ['improvement'], ['tuning'], ['performance'], ['improvement'], ['tuning'], ['machine'], ['summary'], ['load'], ['list']] k: 5094 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] processed_text: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['account'], ['locked'], ['password'], ['reset']] k: 5095 len: <class 'list'> Data: ['collaboration', 'platform', 'collaboration', 'platform'] processed_text: ['collaboration', 'platform', 'collaboration', 'platform'] list_processed_text: [['collaboration'], ['platform'], ['collaboration'], ['platform']] k: 5096 len: <class 'list'> Data: ['eu', 'tool', 'working', 'well', 'established', 'work', 'order', 'reported', 'system', 'standstill', 'assumed', 'machine', 'operator', 'longer', 'contract', 'normal', 'maintenance', 'job', 'without', 'stopping', 'machine', 'imported'] processed_text: ['eu', 'tool', 'working', 'well', 'established', 'work', 'order', 'reported', 'system', 'standstill', 'assumed', 'machine', 'operator', 'longer', 'contract', 'normal', 'maintenance', 'job', 'without', 'stopping', 'machine', 'imported'] list_processed_text: [['eu'], ['tool'], ['working'], ['well'], ['established'], ['work'], ['order'], ['reported'], ['system'], ['standstill'], ['assumed'], ['machine'], ['operator'], ['longer'], ['contract'], ['normal'], ['maintenance'], ['job'], ['without'], ['stopping'], ['machine'], ['imported']] k: 5097 len: <class 'list'> Data: ['please', 'unlock', 'reset', 'window', 'password', 'dfrt', 'user', 'kreghtmph', 'please', 'unlock', 'reset', 'window', 'password', 'dfrt', 'user', 'kreghtmph'] processed_text: ['please', 'unlock', 'reset', 'window', 'password', 'dfrt', 'user', 'kreghtmph', 'please', 'unlock', 'reset', 'window', 'password', 'dfrt', 'user', 'kreghtmph'] list_processed_text: [['please'], ['unlock'], ['reset'], ['window'], ['password'], ['dfrt'], ['user'], ['kreghtmph'], ['please'], ['unlock'], ['reset'], ['window'], ['password'], ['dfrt'], ['user'], ['kreghtmph']] k: 5098 len: <class 'list'> Data: ['hostname', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available', 'hostname', 'label', 'dat', 'hostname', 'deb', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] processed_text: ['hostname', 'label', 'dat', 'hostname', 'deb', 'space', 'consumed', 'space', 'available', 'hostname', 'label', 'dat', 'hostname', 'deb', 'server', 'hostname', 'space', 'consumed', 'space', 'available'] list_processed_text: [['hostname'], ['label'], ['dat'], ['hostname'], ['deb'], ['space'], ['consumed'], ['space'], ['available'], ['hostname'], ['label'], ['dat'], ['hostname'], ['deb'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available']] k: 5099 len: <class 'list'> Data: ['impact', 'award', 'password', 'please', 'reset', 'impact', 'award', 'password', 'remember', 'even', 'security', 'question', 'also', 'best'] processed_text: ['impact', 'award', 'password', 'please', 'reset', 'impact', 'award', 'password', 'remember', 'even', 'security', 'question', 'also', 'best'] list_processed_text: [['impact'], ['award'], ['password'], ['please'], ['reset'], ['impact'], ['award'], ['password'], ['remember'], ['even'], ['security'], ['question'], ['also'], ['best']] k: 5100 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'company', 'vpn', 'router', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'company', 'vpn', 'router', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['company'], ['vpn'], ['router'], ['since'], ['et'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5101 len: <class 'list'> Data: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'something', 'error', 'unable', 'create'] processed_text: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'something', 'error', 'unable', 'create'] list_processed_text: [['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['dear'], ['would'], ['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['something'], ['error'], ['unable'], ['create']] k: 5102 len: <class 'list'> Data: ['companysecure', 'user', 'get', 'network', 'dear', 'problem', 'new', 'sale', 'rep', 'rbzymfvx', 'lebqthwv', 'kujfgtats', 'personnel', 'get', 'network', 'companysecure', 'please', 'check', 'setting', 'call', 'mobile'] processed_text: ['companysecure', 'user', 'get', 'network', 'dear', 'problem', 'new', 'sale', 'rep', 'rbzymfvx', 'lebqthwv', 'kujfgtats', 'personnel', 'get', 'network', 'companysecure', 'please', 'check', 'setting', 'call', 'mobile'] list_processed_text: [['companysecure'], ['user'], ['get'], ['network'], ['dear'], ['problem'], ['new'], ['sale'], ['rep'], ['rbzymfvx'], ['lebqthwv'], ['kujfgtats'], ['personnel'], ['get'], ['network'], ['companysecure'], ['please'], ['check'], ['setting'], ['call'], ['mobile']] k: 5103 len: <class 'list'> Data: ['erp', 'bex', 'hana', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'dofghbmes', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'launcher', 'able', 'connect', 'analysis', 'add', 'make', 'sure', 'analysis', 'add', 'disabled', 'office', 'application', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'bex', 'hana', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'enter', 'user', 'id', 'user', 'issue', 'dofghbmes', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'launcher', 'able', 'connect', 'analysis', 'add', 'make', 'sure', 'analysis', 'add', 'disabled', 'office', 'application', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['bex'], ['hana'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['dofghbmes'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['launcher'], ['able'], ['connect'], ['analysis'], ['add'], ['make'], ['sure'], ['analysis'], ['add'], ['disabled'], ['office'], ['application'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 5104 len: <class 'list'> Data: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'russia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'russia', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['engineering'], ['toolkuznetsk'], ['warehouse'], ['russia'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5105 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5106 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 5107 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5108 len: <class 'list'> Data: ['ebhsm', 'label', 'dat', 'ebhsm', 'dcc', 'space', 'consumed', 'space', 'available', 'g', 'ebhsm', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['ebhsm', 'label', 'dat', 'ebhsm', 'dcc', 'space', 'consumed', 'space', 'available', 'g', 'ebhsm', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['ebhsm'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['ebhsm'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['server'], ['ebhsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 5109 len: <class 'list'> Data: ['laptop', 'service', 'tag', 'fhr', 'working', 'keypad', 'issue', 'hi', 'dell', 'laptop', 'system', 'number', 'aiul', 'plug', 'laptop', 'keypad', 'whole', 'system', 'shutting', 'screen', 'docked', 'keybankrd', 'unable', 'start', 'computer', 'tried', 'charging', 'screen', 'docked', 'currently', 'using', 'touch', 'pad', 'screen', 'charging', 'screen', 'keypad', 'totally', 'unresponsive', 'please', 'help', 'user', 'name', 'rajy'] processed_text: ['laptop', 'service', 'tag', 'fhr', 'working', 'keypad', 'issue', 'hi', 'dell', 'laptop', 'system', 'number', 'aiul', 'plug', 'laptop', 'keypad', 'whole', 'system', 'shutting', 'screen', 'docked', 'keybankrd', 'unable', 'start', 'computer', 'tried', 'charging', 'screen', 'docked', 'currently', 'using', 'touch', 'pad', 'screen', 'charging', 'screen', 'keypad', 'totally', 'unresponsive', 'please', 'help', 'user', 'name', 'rajy'] list_processed_text: [['laptop'], ['service'], ['tag'], ['fhr'], ['working'], ['keypad'], ['issue'], ['hi'], ['dell'], ['laptop'], ['system'], ['number'], ['aiul'], ['plug'], ['laptop'], ['keypad'], ['whole'], ['system'], ['shutting'], ['screen'], ['docked'], ['keybankrd'], ['unable'], ['start'], ['computer'], ['tried'], ['charging'], ['screen'], ['docked'], ['currently'], ['using'], ['touch'], ['pad'], ['screen'], ['charging'], ['screen'], ['keypad'], ['totally'], ['unresponsive'], ['please'], ['help'], ['user'], ['name'], ['rajy']] k: 5110 len: <class 'list'> Data: ['mouse', 'working', 'system', 'mouse', 'working', 'system'] processed_text: ['mouse', 'working', 'system', 'mouse', 'working', 'system'] list_processed_text: [['mouse'], ['working'], ['system'], ['mouse'], ['working'], ['system']] k: 5111 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5112 len: <class 'list'> Data: ['error', 'extending', 'mm', 'kbyivdfz', 'zwutmehy', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'error', 'extending', 'mm', 'hello', 'need', 'extend', 'existing', 'mm', 'plant', 'plant', 'plant', 'processing', 'mm', 'error', 'message', 'pop', 'material', 'group', 'start', 'roh', 'type', 'however', 'system', 'allow', 'change', 'material', 'group', 'enormity', 'humanity', 'mankind', 'insensitive', 'kbyivdfz', 'zwutmehy', 'purchasing', 'buyer', 'company', 'k'] processed_text: ['error', 'extending', 'mm', 'kbyivdfz', 'zwutmehy', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'error', 'extending', 'mm', 'hello', 'need', 'extend', 'existing', 'mm', 'plant', 'plant', 'plant', 'processing', 'mm', 'error', 'message', 'pop', 'material', 'group', 'start', 'roh', 'type', 'however', 'system', 'allow', 'change', 'material', 'group', 'enormity', 'humanity', 'mankind', 'insensitive', 'kbyivdfz', 'zwutmehy', 'purchasing', 'buyer', 'company', 'k'] list_processed_text: [['error'], ['extending'], ['mm'], ['kbyivdfz'], ['zwutmehy'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['error'], ['extending'], ['mm'], ['hello'], ['need'], ['extend'], ['existing'], ['mm'], ['plant'], ['plant'], ['plant'], ['processing'], ['mm'], ['error'], ['message'], ['pop'], ['material'], ['group'], ['start'], ['roh'], ['type'], ['however'], ['system'], ['allow'], ['change'], ['material'], ['group'], ['enormity'], ['humanity'], ['mankind'], ['insensitive'], ['kbyivdfz'], ['zwutmehy'], ['purchasing'], ['buyer'], ['company'], ['k']] k: 5113 len: <class 'list'> Data: ['unable', 'login', 'supply', 'chain', 'software', 'unable', 'login', 'supply', 'chain', 'software', 'please', 'reset', 'password'] processed_text: ['unable', 'login', 'supply', 'chain', 'software', 'unable', 'login', 'supply', 'chain', 'software', 'please', 'reset', 'password'] list_processed_text: [['unable'], ['login'], ['supply'], ['chain'], ['software'], ['unable'], ['login'], ['supply'], ['chain'], ['software'], ['please'], ['reset'], ['password']] k: 5114 len: <class 'list'> Data: ['wrench', 'engineering', 'tool', 'macro', 'issue', 'unable', 'run', 'macro', 'used', 'open', 'excel', 'word', 'file', 'solidworks', 'skype', 'updation', 'since', 'macro', 'working', 'fine', 'system', 'skype', 'installed', 'kindly', 'resolve', 'issue', 'earliest', 'best'] processed_text: ['wrench', 'engineering', 'tool', 'macro', 'issue', 'unable', 'run', 'macro', 'used', 'open', 'excel', 'word', 'file', 'solidworks', 'skype', 'updation', 'since', 'macro', 'working', 'fine', 'system', 'skype', 'installed', 'kindly', 'resolve', 'issue', 'earliest', 'best'] list_processed_text: [['wrench'], ['engineering'], ['tool'], ['macro'], ['issue'], ['unable'], ['run'], ['macro'], ['used'], ['open'], ['excel'], ['word'], ['file'], ['solidworks'], ['skype'], ['updation'], ['since'], ['macro'], ['working'], ['fine'], ['system'], ['skype'], ['installed'], ['kindly'], ['resolve'], ['issue'], ['earliest'], ['best']] k: 5115 len: <class 'list'> Data: ['babiluntr', 'licence', 'babiluntr', 'expire', 'day', 'please', 'update', 'use'] processed_text: ['babiluntr', 'licence', 'babiluntr', 'expire', 'day', 'please', 'update', 'use'] list_processed_text: [['babiluntr'], ['licence'], ['babiluntr'], ['expire'], ['day'], ['please'], ['update'], ['use']] k: 5116 len: <class 'list'> Data: ['pls', 'help', 'reset', 'password', 'erp', 'id', 'tempuser', 'pls', 'help', 'reset', 'password', 'id', 'tempuser'] processed_text: ['pls', 'help', 'reset', 'password', 'erp', 'id', 'tempuser', 'pls', 'help', 'reset', 'password', 'id', 'tempuser'] list_processed_text: [['pls'], ['help'], ['reset'], ['password'], ['erp'], ['id'], ['tempuser'], ['pls'], ['help'], ['reset'], ['password'], ['id'], ['tempuser']] k: 5117 len: <class 'list'> Data: ['walkme', 'walkme'] processed_text: ['walkme', 'walkme'] list_processed_text: [['walkme'], ['walkme']] k: 5118 len: <class 'list'> Data: ['gas', 'station', 'telephone', 'line', 'disconnection', 'gas', 'station', 'telephone', 'line', 'disconnection'] processed_text: ['gas', 'station', 'telephone', 'line', 'disconnection', 'gas', 'station', 'telephone', 'line', 'disconnection'] list_processed_text: [['gas'], ['station'], ['telephone'], ['line'], ['disconnection'], ['gas'], ['station'], ['telephone'], ['line'], ['disconnection']] k: 5119 len: <class 'list'> Data: ['im', 'locked', 'erp', 'agian', 'name', 'sndaofyw', 'jetcxpda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'im', 'locked', 'erp', 'agian'] processed_text: ['im', 'locked', 'erp', 'agian', 'name', 'sndaofyw', 'jetcxpda', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'im', 'locked', 'erp', 'agian'] list_processed_text: [['im'], ['locked'], ['erp'], ['agian'], ['name'], ['sndaofyw'], ['jetcxpda'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['im'], ['locked'], ['erp'], ['agian']] k: 5120 len: <class 'list'> Data: ['user', 'need', 'help', 'extended', 'monitor', 'projection', 'user', 'need', 'help', 'extended', 'monitor', 'projection', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'witrh', 'extended', 'monitor', 'projection', 'issue', 'resolved'] processed_text: ['user', 'need', 'help', 'extended', 'monitor', 'projection', 'user', 'need', 'help', 'extended', 'monitor', 'projection', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'witrh', 'extended', 'monitor', 'projection', 'issue', 'resolved'] list_processed_text: [['user'], ['need'], ['help'], ['extended'], ['monitor'], ['projection'], ['user'], ['need'], ['help'], ['extended'], ['monitor'], ['projection'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['witrh'], ['extended'], ['monitor'], ['projection'], ['issue'], ['resolved']] k: 5121 len: <class 'list'> Data: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['es'], ['login'], ['issue'], ['es'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 5122 len: <class 'list'> Data: ['global', 'telecom', 'broadband', 'hi', 'sure', 'direct', 'told', 'contact', 'help', 'desk', 'global', 'telecom', 'broadband', 'working', 'trying', 'use', 'laptop', 'remote', 'location', 'right', 'place', 'davidthd', 'rofghach', 'channel', 'partner', 'sale', 'engineer'] processed_text: ['global', 'telecom', 'broadband', 'hi', 'sure', 'direct', 'told', 'contact', 'help', 'desk', 'global', 'telecom', 'broadband', 'working', 'trying', 'use', 'laptop', 'remote', 'location', 'right', 'place', 'davidthd', 'rofghach', 'channel', 'partner', 'sale', 'engineer'] list_processed_text: [['global'], ['telecom'], ['broadband'], ['hi'], ['sure'], ['direct'], ['told'], ['contact'], ['help'], ['desk'], ['global'], ['telecom'], ['broadband'], ['working'], ['trying'], ['use'], ['laptop'], ['remote'], ['location'], ['right'], ['place'], ['davidthd'], ['rofghach'], ['channel'], ['partner'], ['sale'], ['engineer']] k: 5123 len: <class 'list'> Data: ['unable', 'complete', 'forecast', 'unable', 'complete', 'forecast', 'jochegtyhu', 'vacation', 'help', 'fnqelwpk', 'ahrskvln', 'regional', 'manager', 'latin', 'amerirtca', 'fnqelwpk', 'ahrskvln', 'pm', 'ftnijxup', 'sbltduco', 'help', 'scm', 'software', 'jochegtyhu', 'mean', 'complete', 'forecast', 'fnqelwpk', 'ahrskvln', 'regional', 'manager', 'latin', 'amerirtca'] processed_text: ['unable', 'complete', 'forecast', 'unable', 'complete', 'forecast', 'jochegtyhu', 'vacation', 'help', 'fnqelwpk', 'ahrskvln', 'regional', 'manager', 'latin', 'amerirtca', 'fnqelwpk', 'ahrskvln', 'pm', 'ftnijxup', 'sbltduco', 'help', 'scm', 'software', 'jochegtyhu', 'mean', 'complete', 'forecast', 'fnqelwpk', 'ahrskvln', 'regional', 'manager', 'latin', 'amerirtca'] list_processed_text: [['unable'], ['complete'], ['forecast'], ['unable'], ['complete'], ['forecast'], ['jochegtyhu'], ['vacation'], ['help'], ['fnqelwpk'], ['ahrskvln'], ['regional'], ['manager'], ['latin'], ['amerirtca'], ['fnqelwpk'], ['ahrskvln'], ['pm'], ['ftnijxup'], ['sbltduco'], ['help'], ['scm'], ['software'], ['jochegtyhu'], ['mean'], ['complete'], ['forecast'], ['fnqelwpk'], ['ahrskvln'], ['regional'], ['manager'], ['latin'], ['amerirtca']] k: 5124 len: <class 'list'> Data: ['issue', 'logging', 'skype', 'recently', 'changing', 'password', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'issue', 'logging', 'skype', 'recently', 'changing', 'password'] processed_text: ['issue', 'logging', 'skype', 'recently', 'changing', 'password', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'issue', 'logging', 'skype', 'recently', 'changing', 'password'] list_processed_text: [['issue'], ['logging'], ['skype'], ['recently'], ['changing'], ['password'], ['name'], ['obanjrhg'], ['rnafleys'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['issue'], ['logging'], ['skype'], ['recently'], ['changing'], ['password']] k: 5125 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'pi', 'uacyltoe', 'hxgaycze', 'system', 'enter', 'user', 'id', 'user', 'issue', 'vvgtycargvc', 'please', 'restart', 'password', 'blocked'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'pi', 'uacyltoe', 'hxgaycze', 'system', 'enter', 'user', 'id', 'user', 'issue', 'vvgtycargvc', 'please', 'restart', 'password', 'blocked'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['pi'], ['uacyltoe'], ['hxgaycze'], ['system'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['vvgtycargvc'], ['please'], ['restart'], ['password'], ['blocked']] k: 5126 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5127 len: <class 'list'> Data: ['vip', 'try', 'access', 'ethic', 'training', 'link', 'receive', 'error', 'message', 'error', 'organization', 'code', 'found', 'happens', 'log', 'via', 'public', 'internet', 'well', 'internet', 'vpn'] processed_text: ['vip', 'try', 'access', 'ethic', 'training', 'link', 'receive', 'error', 'message', 'error', 'organization', 'code', 'found', 'happens', 'log', 'via', 'public', 'internet', 'well', 'internet', 'vpn'] list_processed_text: [['vip'], ['try'], ['access'], ['ethic'], ['training'], ['link'], ['receive'], ['error'], ['message'], ['error'], ['organization'], ['code'], ['found'], ['happens'], ['log'], ['via'], ['public'], ['internet'], ['well'], ['internet'], ['vpn']] k: 5128 len: <class 'list'> Data: ['user', 'issue', 'login', 'pc', 'new', 'password', 'user', 'issue', 'login', 'pc', 'new', 'password', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'using', 'new', 'password', 'help', 'user', 'login', 'company', 'vpn', 'sync', 'new', 'password', 'company', 'network', 'help', 'user', 'login', 'outlook', 'skype', 'issue', 'resolved'] processed_text: ['user', 'issue', 'login', 'pc', 'new', 'password', 'user', 'issue', 'login', 'pc', 'new', 'password', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'using', 'new', 'password', 'help', 'user', 'login', 'company', 'vpn', 'sync', 'new', 'password', 'company', 'network', 'help', 'user', 'login', 'outlook', 'skype', 'issue', 'resolved'] list_processed_text: [['user'], ['issue'], ['login'], ['pc'], ['new'], ['password'], ['user'], ['issue'], ['login'], ['pc'], ['new'], ['password'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['using'], ['new'], ['password'], ['help'], ['user'], ['login'], ['company'], ['vpn'], ['sync'], ['new'], ['password'], ['company'], ['network'], ['help'], ['user'], ['login'], ['outlook'], ['skype'], ['issue'], ['resolved']] k: 5129 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 5130 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 5131 len: <class 'list'> Data: ['global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'hello', 'please', 'advise', 'status', 'request', 'hi', 'nafghyncy', 'agbighyail', 'espinosa', 'appears', 'active', 'employee', 'entered', 'bunch', 'sale', 'order', 'erp', 'ecc', 'last', 'day', 'yet', 'central', 'block', 'employee', 'account', 'erp', 'crm', 'show', 'search', 'result', 'search', 'employee', 'account', 'using', 'role', 'employee', 'unless', 'already', 'know', 'reason', 'would', 'please', 'check', 'hr', 'account', 'central', 'block', 'seems', 'like', 'could', 'possibly', 'error', 'gracias'] processed_text: ['global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'hello', 'please', 'advise', 'status', 'request', 'hi', 'nafghyncy', 'agbighyail', 'espinosa', 'appears', 'active', 'employee', 'entered', 'bunch', 'sale', 'order', 'erp', 'ecc', 'last', 'day', 'yet', 'central', 'block', 'employee', 'account', 'erp', 'crm', 'show', 'search', 'result', 'search', 'employee', 'account', 'using', 'role', 'employee', 'unless', 'already', 'know', 'reason', 'would', 'please', 'check', 'hr', 'account', 'central', 'block', 'seems', 'like', 'could', 'possibly', 'error', 'gracias'] list_processed_text: [['global'], ['erp'], ['crm'], ['please'], ['investigate'], ['agbighyail'], ['espinosa'], ['employee'], ['account'], ['erp'], ['crm'], ['recognized'], ['employee'], ['hello'], ['please'], ['advise'], ['status'], ['request'], ['hi'], ['nafghyncy'], ['agbighyail'], ['espinosa'], ['appears'], ['active'], ['employee'], ['entered'], ['bunch'], ['sale'], ['order'], ['erp'], ['ecc'], ['last'], ['day'], ['yet'], ['central'], ['block'], ['employee'], ['account'], ['erp'], ['crm'], ['show'], ['search'], ['result'], ['search'], ['employee'], ['account'], ['using'], ['role'], ['employee'], ['unless'], ['already'], ['know'], ['reason'], ['would'], ['please'], ['check'], ['hr'], ['account'], ['central'], ['block'], ['seems'], ['like'], ['could'], ['possibly'], ['error'], ['gracias']] k: 5132 len: <class 'list'> Data: ['engineering', 'request', 'assignment', 'revise', 'component', 'engineering', 'request', 'assignment', 'revise', 'component', 'completed', 'cannot', 'deleted', 'workflow'] processed_text: ['engineering', 'request', 'assignment', 'revise', 'component', 'engineering', 'request', 'assignment', 'revise', 'component', 'completed', 'cannot', 'deleted', 'workflow'] list_processed_text: [['engineering'], ['request'], ['assignment'], ['revise'], ['component'], ['engineering'], ['request'], ['assignment'], ['revise'], ['component'], ['completed'], ['cannot'], ['deleted'], ['workflow']] k: 5133 len: <class 'list'> Data: ['unable', 'log', 'supply', 'chain', 'software', 'unable', 'log', 'supply', 'chain', 'software'] processed_text: ['unable', 'log', 'supply', 'chain', 'software', 'unable', 'log', 'supply', 'chain', 'software'] list_processed_text: [['unable'], ['log'], ['supply'], ['chain'], ['software'], ['unable'], ['log'], ['supply'], ['chain'], ['software']] k: 5134 len: <class 'list'> Data: ['ethic', 'undeliverable', 'mail', 'good', 'morning', 'please', 'review', 'advise', 'undeliverable', 'mail', 'address'] processed_text: ['ethic', 'undeliverable', 'mail', 'good', 'morning', 'please', 'review', 'advise', 'undeliverable', 'mail', 'address'] list_processed_text: [['ethic'], ['undeliverable'], ['mail'], ['good'], ['morning'], ['please'], ['review'], ['advise'], ['undeliverable'], ['mail'], ['address']] k: 5135 len: <class 'list'> Data: ['need', 'activate', 'new', 'iphone', 'need', 'activate', 'new', 'iphone'] processed_text: ['need', 'activate', 'new', 'iphone', 'need', 'activate', 'new', 'iphone'] list_processed_text: [['need'], ['activate'], ['new'], ['iphone'], ['need'], ['activate'], ['new'], ['iphone']] k: 5136 len: <class 'list'> Data: ['report', 'running', 'properly', 'delivering', 'result', 'dataloads', 'app', 'bex', 'report', 'producing', 'report', 'size', 'instead', 'proper', 'reporting', 'xsdb', 'db', 'credit', 'supposed', 'run', 'month', 'along', 'dashbankrd', 'report', 'last', 'couple', 'month', 'report', 'empty', 'happened', 'previously', 'credit', 'report', 'please', 'correct', 'available', 'next', 'month', 'global', 'dashbankrd', 'used', 'area', 'compensation'] processed_text: ['report', 'running', 'properly', 'delivering', 'result', 'dataloads', 'app', 'bex', 'report', 'producing', 'report', 'size', 'instead', 'proper', 'reporting', 'xsdb', 'db', 'credit', 'supposed', 'run', 'month', 'along', 'dashbankrd', 'report', 'last', 'couple', 'month', 'report', 'empty', 'happened', 'previously', 'credit', 'report', 'please', 'correct', 'available', 'next', 'month', 'global', 'dashbankrd', 'used', 'area', 'compensation'] list_processed_text: [['report'], ['running'], ['properly'], ['delivering'], ['result'], ['dataloads'], ['app'], ['bex'], ['report'], ['producing'], ['report'], ['size'], ['instead'], ['proper'], ['reporting'], ['xsdb'], ['db'], ['credit'], ['supposed'], ['run'], ['month'], ['along'], ['dashbankrd'], ['report'], ['last'], ['couple'], ['month'], ['report'], ['empty'], ['happened'], ['previously'], ['credit'], ['report'], ['please'], ['correct'], ['available'], ['next'], ['month'], ['global'], ['dashbankrd'], ['used'], ['area'], ['compensation']] k: 5137 len: <class 'list'> Data: ['unable', 'access', 'travel', 'site', 'unable', 'access', 'travel', 'site'] processed_text: ['unable', 'access', 'travel', 'site', 'unable', 'access', 'travel', 'site'] list_processed_text: [['unable'], ['access'], ['travel'], ['site'], ['unable'], ['access'], ['travel'], ['site']] k: 5138 len: <class 'list'> Data: ['password', 'reset', 'via', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'via', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['password', 'reset', 'via', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'via', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['reset'], ['via'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['via'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 5139 len: <class 'list'> Data: ['unable', 'post', 'document', 'sid', 'unable', 'post', 'document', 'sid', 'using', 'spreadsheet'] processed_text: ['unable', 'post', 'document', 'sid', 'unable', 'post', 'document', 'sid', 'using', 'spreadsheet'] list_processed_text: [['unable'], ['post'], ['document'], ['sid'], ['unable'], ['post'], ['document'], ['sid'], ['using'], ['spreadsheet']] k: 5140 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vvgtycargvc', 'user', 'account', 'validity', 'date'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vvgtycargvc', 'user', 'account', 'validity', 'date'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['vvgtycargvc'], ['user'], ['account'], ['validity'], ['date']] k: 5141 len: <class 'list'> Data: ['password', 'set', 'hi', 'please', 'set', 'mu', 'login', 'password', 'attendance', 'tool', 'best'] processed_text: ['password', 'set', 'hi', 'please', 'set', 'mu', 'login', 'password', 'attendance', 'tool', 'best'] list_processed_text: [['password'], ['set'], ['hi'], ['please'], ['set'], ['mu'], ['login'], ['password'], ['attendance'], ['tool'], ['best']] k: 5142 len: <class 'list'> Data: ['delivery', 'failure', 'material', 'location', 'plant', 'sto', 'product', 'available', 'cannot', 'create', 'delivery'] processed_text: ['delivery', 'failure', 'material', 'location', 'plant', 'sto', 'product', 'available', 'cannot', 'create', 'delivery'] list_processed_text: [['delivery'], ['failure'], ['material'], ['location'], ['plant'], ['sto'], ['product'], ['available'], ['cannot'], ['create'], ['delivery']] k: 5143 len: <class 'list'> Data: ['password', 'invalid', 'help', 'thanks', 'password', 'invalid', 'help'] processed_text: ['password', 'invalid', 'help', 'thanks', 'password', 'invalid', 'help'] list_processed_text: [['password'], ['invalid'], ['help'], ['thanks'], ['password'], ['invalid'], ['help']] k: 5144 len: <class 'list'> Data: ['computer', 'booting', 'window', 'touchpad', 'usb', 'mouse', 'working', 'computer', 'booting', 'window'] processed_text: ['computer', 'booting', 'window', 'touchpad', 'usb', 'mouse', 'working', 'computer', 'booting', 'window'] list_processed_text: [['computer'], ['booting'], ['window'], ['touchpad'], ['usb'], ['mouse'], ['working'], ['computer'], ['booting'], ['window']] k: 5145 len: <class 'list'> Data: ['user', 'new', 'personal', 'device', 'activation', 'without', 'approval', 'form', 'user', 'new', 'personal', 'device', 'activation', 'without', 'approval', 'form', 'advised', 'user', 'forward', 'approval', 'form', 'activate', 'company', 'email', 'personal', 'device'] processed_text: ['user', 'new', 'personal', 'device', 'activation', 'without', 'approval', 'form', 'user', 'new', 'personal', 'device', 'activation', 'without', 'approval', 'form', 'advised', 'user', 'forward', 'approval', 'form', 'activate', 'company', 'email', 'personal', 'device'] list_processed_text: [['user'], ['new'], ['personal'], ['device'], ['activation'], ['without'], ['approval'], ['form'], ['user'], ['new'], ['personal'], ['device'], ['activation'], ['without'], ['approval'], ['form'], ['advised'], ['user'], ['forward'], ['approval'], ['form'], ['activate'], ['company'], ['email'], ['personal'], ['device']] k: 5146 len: <class 'list'> Data: ['ticket', 'update', 'inc', 'ticket', 'update', 'inc'] processed_text: ['ticket', 'update', 'inc', 'ticket', 'update', 'inc'] list_processed_text: [['ticket'], ['update'], ['inc'], ['ticket'], ['update'], ['inc']] k: 5147 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 5148 len: <class 'list'> Data: ['window', 'zdsxmcwu', 'thdjzolw', 'window', 'zdsxmcwu', 'thdjzolw'] processed_text: ['window', 'zdsxmcwu', 'thdjzolw', 'window', 'zdsxmcwu', 'thdjzolw'] list_processed_text: [['window'], ['zdsxmcwu'], ['thdjzolw'], ['window'], ['zdsxmcwu'], ['thdjzolw']] k: 5149 len: <class 'list'> Data: ['unable', 'login', 'distributor', 'tool', 'new', 'password', 'view', 'saved', 'customer', 'detail', 'unable', 'login', 'distributor', 'tool', 'new', 'password', 'view', 'saved', 'customer', 'detail'] processed_text: ['unable', 'login', 'distributor', 'tool', 'new', 'password', 'view', 'saved', 'customer', 'detail', 'unable', 'login', 'distributor', 'tool', 'new', 'password', 'view', 'saved', 'customer', 'detail'] list_processed_text: [['unable'], ['login'], ['distributor'], ['tool'], ['new'], ['password'], ['view'], ['saved'], ['customer'], ['detail'], ['unable'], ['login'], ['distributor'], ['tool'], ['new'], ['password'], ['view'], ['saved'], ['customer'], ['detail']] k: 5150 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5151 len: <class 'list'> Data: ['reset', 'password', 'yolktfas', 'fyoxqgvh', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'yolktfas', 'fyoxqgvh', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['yolktfas'], ['fyoxqgvh'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5152 len: <class 'list'> Data: ['expense', 'report', 'submission', 'workflow', 'according', 'oneteam', 'jashyht', 'mkuhtyhui', 'qjeymnzs', 'wgpelvyn', 'part', 'team', 'however', 'exepsne', 'report', 'submission', 'coming', 'workflow', 'approval', 'please', 'look', 'advise'] processed_text: ['expense', 'report', 'submission', 'workflow', 'according', 'oneteam', 'jashyht', 'mkuhtyhui', 'qjeymnzs', 'wgpelvyn', 'part', 'team', 'however', 'exepsne', 'report', 'submission', 'coming', 'workflow', 'approval', 'please', 'look', 'advise'] list_processed_text: [['expense'], ['report'], ['submission'], ['workflow'], ['according'], ['oneteam'], ['jashyht'], ['mkuhtyhui'], ['qjeymnzs'], ['wgpelvyn'], ['part'], ['team'], ['however'], ['exepsne'], ['report'], ['submission'], ['coming'], ['workflow'], ['approval'], ['please'], ['look'], ['advise']] k: 5153 len: <class 'list'> Data: ['terminated', 'user', 'called', 'access', 'hub', 'terminated', 'user', 'called', 'access', 'hub'] processed_text: ['terminated', 'user', 'called', 'access', 'hub', 'terminated', 'user', 'called', 'access', 'hub'] list_processed_text: [['terminated'], ['user'], ['called'], ['access'], ['hub'], ['terminated'], ['user'], ['called'], ['access'], ['hub']] k: 5154 len: <class 'list'> Data: ['vip', 'sim', 'card', 'locked', 'company', 'provided', 'phone', 'vip', 'sim', 'card', 'locked', 'company', 'provided', 'phone'] processed_text: ['vip', 'sim', 'card', 'locked', 'company', 'provided', 'phone', 'vip', 'sim', 'card', 'locked', 'company', 'provided', 'phone'] list_processed_text: [['vip'], ['sim'], ['card'], ['locked'], ['company'], ['provided'], ['phone'], ['vip'], ['sim'], ['card'], ['locked'], ['company'], ['provided'], ['phone']] k: 5155 len: <class 'list'> Data: ['dob', 'report', 'showing', 'blank', 'data', 'yzugpdco', 'nsyapewg', 'report', 'working', 'show', 'data', 'laurent', 'open', 'report', 'within', 'reporting', 'tool', 'browser', 'report', 'link', 'used', 'follows', 'site', 'certified', 'content', 'view', 'dailyorderbillingreport', 'mtd', 'ctry', 'iid', 'output', 'per', 'attached'] processed_text: ['dob', 'report', 'showing', 'blank', 'data', 'yzugpdco', 'nsyapewg', 'report', 'working', 'show', 'data', 'laurent', 'open', 'report', 'within', 'reporting', 'tool', 'browser', 'report', 'link', 'used', 'follows', 'site', 'certified', 'content', 'view', 'dailyorderbillingreport', 'mtd', 'ctry', 'iid', 'output', 'per', 'attached'] list_processed_text: [['dob'], ['report'], ['showing'], ['blank'], ['data'], ['yzugpdco'], ['nsyapewg'], ['report'], ['working'], ['show'], ['data'], ['laurent'], ['open'], ['report'], ['within'], ['reporting'], ['tool'], ['browser'], ['report'], ['link'], ['used'], ['follows'], ['site'], ['certified'], ['content'], ['view'], ['dailyorderbillingreport'], ['mtd'], ['ctry'], ['iid'], ['output'], ['per'], ['attached']] k: 5156 len: <class 'list'> Data: ['dynamic', 'crm', 'url', 'check', 'reporting', 'status', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net', 'please', 'investigat', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'application', 'dynamic', 'crm', 'url', 'check', 'node', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net'] processed_text: ['dynamic', 'crm', 'url', 'check', 'reporting', 'status', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net', 'please', 'investigat', 'observing', 'alert', 'monitoring', 'tool', 'since', 'et', 'application', 'dynamic', 'crm', 'url', 'check', 'node', 'company', 'crm', 'sp', 'mfg', 'tooltion', 'azurewebsites', 'net'] list_processed_text: [['dynamic'], ['crm'], ['url'], ['check'], ['reporting'], ['status'], ['company'], ['crm'], ['sp'], ['mfg'], ['tooltion'], ['azurewebsites'], ['net'], ['please'], ['investigat'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['et'], ['application'], ['dynamic'], ['crm'], ['url'], ['check'], ['node'], ['company'], ['crm'], ['sp'], ['mfg'], ['tooltion'], ['azurewebsites'], ['net']] k: 5157 len: <class 'list'> Data: ['need', 'adobe', 'flash', 'player', 'installed', 'pc', 'need', 'adobe', 'flash', 'player', 'installed', 'pc'] processed_text: ['need', 'adobe', 'flash', 'player', 'installed', 'pc', 'need', 'adobe', 'flash', 'player', 'installed', 'pc'] list_processed_text: [['need'], ['adobe'], ['flash'], ['player'], ['installed'], ['pc'], ['need'], ['adobe'], ['flash'], ['player'], ['installed'], ['pc']] k: 5158 len: <class 'list'> Data: ['printer', 'ag', 'rth', 'hello', 'network', 'printer', 'ag', 'rt', 'longer', 'print', 'guest', 'accidentally', 'always', 'seems', 'generate', 'new', 'print', 'job', 'or,', 'according', 'service', 'technician', 'manufacturer', 'hp,', 'spool', 'job', 'probably', 'stored', 'network,', 'cannot', 'see', 'print', 'job', 'stop', 'attempt', 'print', 'abort', 'failed,', 'even', 'pulling', 'plug', 'lan', 'cable', 'tzt', 'nothing', 'help,', 'according', 'hp,', 'administrator', 'thank', 'gabryltke', 'sch', 'tt', 'human', 'resource', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'message', 'use', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'accidentally', 'received', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['printer', 'ag', 'rth', 'hello', 'network', 'printer', 'ag', 'rt', 'longer', 'print', 'guest', 'accidentally', 'always', 'seems', 'generate', 'new', 'print', 'job', 'or,', 'according', 'service', 'technician', 'manufacturer', 'hp,', 'spool', 'job', 'probably', 'stored', 'network,', 'cannot', 'see', 'print', 'job', 'stop', 'attempt', 'print', 'abort', 'failed,', 'even', 'pulling', 'plug', 'lan', 'cable', 'tzt', 'nothing', 'help,', 'according', 'hp,', 'administrator', 'thank', 'gabryltke', 'sch', 'tt', 'human', 'resource', 'company', 'shared', 'service', 'gmbh', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'message', 'use', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'accidentally', 'received', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['printer'], ['ag'], ['rth'], ['hello'], ['network'], ['printer'], ['ag'], ['rt'], ['longer'], ['print'], ['guest'], ['accidentally'], ['always'], ['seems'], ['generate'], ['new'], ['print'], ['job'], ['or,'], ['according'], ['service'], ['technician'], ['manufacturer'], ['hp,'], ['spool'], ['job'], ['probably'], ['stored'], ['network,'], ['cannot'], ['see'], ['print'], ['job'], ['stop'], ['attempt'], ['print'], ['abort'], ['failed,'], ['even'], ['pulling'], ['plug'], ['lan'], ['cable'], ['tzt'], ['nothing'], ['help,'], ['according'], ['hp,'], ['administrator'], ['thank'], ['gabryltke'], ['sch'], ['tt'], ['human'], ['resource'], ['company'], ['shared'], ['service'], ['gmbh'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['message'], ['use'], ['determined'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['communication'], ['due'], ['accidentally'], ['received'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 5159 len: <class 'list'> Data: ['unable', 'login', 'pc', 'changing', 'password', 'unable', 'login', 'pc', 'changing', 'password'] processed_text: ['unable', 'login', 'pc', 'changing', 'password', 'unable', 'login', 'pc', 'changing', 'password'] list_processed_text: [['unable'], ['login'], ['pc'], ['changing'], ['password'], ['unable'], ['login'], ['pc'], ['changing'], ['password']] k: 5160 len: <class 'list'> Data: ['delivery', 'due', 'list', 'created', 'delivery', 'note', 'sto', 'g', 'aw', 'mm', 'sto', 'plant', 'please', 'forward', 'srinfhyath', 'deliver', 'due', 'list', 'ew', 'multiple', 'time', 'running', 'daily', 'basis', 'sometimes', 'ddl', 'create', 'delivery', 'note', 'sto', 'even', 'though', 'material', 'available', 'shipping', 'date', 'overdue', 'check', 'ddl', 'select', 'sto', 'check', 'sto', 'overdue', 'adjust', 'ddl', 'keep', 'user', 'informed', 'result', 'many'] processed_text: ['delivery', 'due', 'list', 'created', 'delivery', 'note', 'sto', 'g', 'aw', 'mm', 'sto', 'plant', 'please', 'forward', 'srinfhyath', 'deliver', 'due', 'list', 'ew', 'multiple', 'time', 'running', 'daily', 'basis', 'sometimes', 'ddl', 'create', 'delivery', 'note', 'sto', 'even', 'though', 'material', 'available', 'shipping', 'date', 'overdue', 'check', 'ddl', 'select', 'sto', 'check', 'sto', 'overdue', 'adjust', 'ddl', 'keep', 'user', 'informed', 'result', 'many'] list_processed_text: [['delivery'], ['due'], ['list'], ['created'], ['delivery'], ['note'], ['sto'], ['g'], ['aw'], ['mm'], ['sto'], ['plant'], ['please'], ['forward'], ['srinfhyath'], ['deliver'], ['due'], ['list'], ['ew'], ['multiple'], ['time'], ['running'], ['daily'], ['basis'], ['sometimes'], ['ddl'], ['create'], ['delivery'], ['note'], ['sto'], ['even'], ['though'], ['material'], ['available'], ['shipping'], ['date'], ['overdue'], ['check'], ['ddl'], ['select'], ['sto'], ['check'], ['sto'], ['overdue'], ['adjust'], ['ddl'], ['keep'], ['user'], ['informed'], ['result'], ['many']] k: 5161 len: <class 'list'> Data: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'mpls', 'circuit', 'et', 'site', 'vpn', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'mpls', 'circuit', 'et', 'site', 'vpn', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['vogelfontein'], ['south'], ['africa'], ['sa'], ['mpls'], ['circuit'], ['et'], ['site'], ['vpn'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5162 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5163 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'personally', 'owned', 'samsung', 'tom', 'called', 'get', 'device', 'activated', 'please', 'find', 'mobility', 'agreement', 'attached'] processed_text: ['mobile', 'device', 'activation', 'personally', 'owned', 'samsung', 'tom', 'called', 'get', 'device', 'activated', 'please', 'find', 'mobility', 'agreement', 'attached'] list_processed_text: [['mobile'], ['device'], ['activation'], ['personally'], ['owned'], ['samsung'], ['tom'], ['called'], ['get'], ['device'], ['activated'], ['please'], ['find'], ['mobility'], ['agreement'], ['attached']] k: 5164 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 5165 len: <class 'list'> Data: ['battery', 'charging', 'battery', 'display', 'charging', 'work', 'battery', 'keybankrd', 'plugged', 'charging', 'sure', 'using', 'charger', 'docking', 'station', 'charger', 'supplied', 'device', 'swapped', 'power', 'point', 'still', 'go', 'updated', 'bios', 'still', 'go', 'please', 'advise'] processed_text: ['battery', 'charging', 'battery', 'display', 'charging', 'work', 'battery', 'keybankrd', 'plugged', 'charging', 'sure', 'using', 'charger', 'docking', 'station', 'charger', 'supplied', 'device', 'swapped', 'power', 'point', 'still', 'go', 'updated', 'bios', 'still', 'go', 'please', 'advise'] list_processed_text: [['battery'], ['charging'], ['battery'], ['display'], ['charging'], ['work'], ['battery'], ['keybankrd'], ['plugged'], ['charging'], ['sure'], ['using'], ['charger'], ['docking'], ['station'], ['charger'], ['supplied'], ['device'], ['swapped'], ['power'], ['point'], ['still'], ['go'], ['updated'], ['bios'], ['still'], ['go'], ['please'], ['advise']] k: 5166 len: <class 'list'> Data: ['reset', 'password', 'tsicojkp', 'kghaozew', 'window', 'login', 'resolved', 'per', 'incident', 'placed', 'earlier', 'need', 'password', 'reset', 'please', 'start', 'window', 'attempt', 'update', 'password', 'management', 'tool'] processed_text: ['reset', 'password', 'tsicojkp', 'kghaozew', 'window', 'login', 'resolved', 'per', 'incident', 'placed', 'earlier', 'need', 'password', 'reset', 'please', 'start', 'window', 'attempt', 'update', 'password', 'management', 'tool'] list_processed_text: [['reset'], ['password'], ['tsicojkp'], ['kghaozew'], ['window'], ['login'], ['resolved'], ['per'], ['incident'], ['placed'], ['earlier'], ['need'], ['password'], ['reset'], ['please'], ['start'], ['window'], ['attempt'], ['update'], ['password'], ['management'], ['tool']] k: 5167 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5168 len: <class 'list'> Data: ['please', 'reset', 'password', 'supply', 'chain', 'software', 'please', 'reset', 'password', 'supply', 'chain', 'software'] processed_text: ['please', 'reset', 'password', 'supply', 'chain', 'software', 'please', 'reset', 'password', 'supply', 'chain', 'software'] list_processed_text: [['please'], ['reset'], ['password'], ['supply'], ['chain'], ['software'], ['please'], ['reset'], ['password'], ['supply'], ['chain'], ['software']] k: 5169 len: <class 'list'> Data: ['ethic', 'login', 'recognized', 'ethic', 'login', 'recognized'] processed_text: ['ethic', 'login', 'recognized', 'ethic', 'login', 'recognized'] list_processed_text: [['ethic'], ['login'], ['recognized'], ['ethic'], ['login'], ['recognized']] k: 5170 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 5171 len: <class 'list'> Data: ['unable', 'print', 'default', 'printer', 'unable', 'print', 'default', 'printer'] processed_text: ['unable', 'print', 'default', 'printer', 'unable', 'print', 'default', 'printer'] list_processed_text: [['unable'], ['print'], ['default'], ['printer'], ['unable'], ['print'], ['default'], ['printer']] k: 5172 len: <class 'list'> Data: ['reset', 'password', 'tsicojkp', 'kghaozew', 'using', 'password', 'management', 'tool', 'password', 'reset', 'locked', 'password', 'management', 'tool', 'id', 'password', 'manager', 'sync', 'password', 'password', 'working', 'please', 'reset', 'password'] processed_text: ['reset', 'password', 'tsicojkp', 'kghaozew', 'using', 'password', 'management', 'tool', 'password', 'reset', 'locked', 'password', 'management', 'tool', 'id', 'password', 'manager', 'sync', 'password', 'password', 'working', 'please', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['tsicojkp'], ['kghaozew'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['locked'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['sync'], ['password'], ['password'], ['working'], ['please'], ['reset'], ['password']] k: 5173 len: <class 'list'> Data: ['employment', 'status', 'three', 'new', 'non', 'employee', 'enter', 'user', 'name', 'page', 'ensure', 'required', 'data', 'field', 'complete', 'submitting', 'use', 'template', 'consultant', 'temp', 'intern', 'vendor', 'etc', 'please', 'complete', 'entry', 'first', 'name', 'rita', 'last', 'name', 'baugtymli', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date', 'first', 'name', 'maximgbilian', 'last', 'name', 'wilsfrtch', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date', 'first', 'name', 'carolutyuin', 'last', 'name', 'votgygel', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date'] processed_text: ['employment', 'status', 'three', 'new', 'non', 'employee', 'enter', 'user', 'name', 'page', 'ensure', 'required', 'data', 'field', 'complete', 'submitting', 'use', 'template', 'consultant', 'temp', 'intern', 'vendor', 'etc', 'please', 'complete', 'entry', 'first', 'name', 'rita', 'last', 'name', 'baugtymli', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date', 'first', 'name', 'maximgbilian', 'last', 'name', 'wilsfrtch', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date', 'first', 'name', 'carolutyuin', 'last', 'name', 'votgygel', 'location', 'germany', 'manager', 'sponsor', 'lkwspqce', 'knxaipyj', 'cost', 'center', 'external', 'company', 'name', 'deloitte', 'touche', 'system', 'need', 'access', 'erp', 'sid', 'mii', 'yes', 'user', 'operator', 'admin', 'supervisor', 'security', 'note', 'mii', 'add', 'im', 'shopfloor', 'user', 'user', 'sid', 'account', 'company', 'email', 'required', 'person', 'yes', 'default', 'k', 'license', 'assigned', 'use', 'owa', 'collaboration', 'platform', 'outlook', 'client', 'skype', 'outlook', 'client', 'skype', 'required', 'costly', 'license', 'must', 'assigned', 'used', 'company', 'computer', 'assign', 'k', 'license', 'access', 'like', 'required', 'review', 'copy', 'person', 'access', 'approval', 'create', 'sid', 'auditor', 'requires', 'access', 'date', 'computer', 'owned', 'company', 'yes', 'laptop', 'desktop', 'computer', 'name', 'remote', 'access', 'vpn', 'required', 'lcitrixerpall', 'yes', 'please', 'provide', 'application', 'erp', 'system', 'network', 'server', 'user', 'need', 'access', 'via', 'vpn', 'start', 'date'] list_processed_text: [['employment'], ['status'], ['three'], ['new'], ['non'], ['employee'], ['enter'], ['user'], ['name'], ['page'], ['ensure'], ['required'], ['data'], ['field'], ['complete'], ['submitting'], ['use'], ['template'], ['consultant'], ['temp'], ['intern'], ['vendor'], ['etc'], ['please'], ['complete'], ['entry'], ['first'], ['name'], ['rita'], ['last'], ['name'], ['baugtymli'], ['location'], ['germany'], ['manager'], ['sponsor'], ['lkwspqce'], ['knxaipyj'], ['cost'], ['center'], ['external'], ['company'], ['name'], ['deloitte'], ['touche'], ['system'], ['need'], ['access'], ['erp'], ['sid'], ['mii'], ['yes'], ['user'], ['operator'], ['admin'], ['supervisor'], ['security'], ['note'], ['mii'], ['add'], ['im'], ['shopfloor'], ['user'], ['user'], ['sid'], ['account'], ['company'], ['email'], ['required'], ['person'], ['yes'], ['default'], ['k'], ['license'], ['assigned'], ['use'], ['owa'], ['collaboration'], ['platform'], ['outlook'], ['client'], ['skype'], ['outlook'], ['client'], ['skype'], ['required'], ['costly'], ['license'], ['must'], ['assigned'], ['used'], ['company'], ['computer'], ['assign'], ['k'], ['license'], ['access'], ['like'], ['required'], ['review'], ['copy'], ['person'], ['access'], ['approval'], ['create'], ['sid'], ['auditor'], ['requires'], ['access'], ['date'], ['computer'], ['owned'], ['company'], ['yes'], ['laptop'], ['desktop'], ['computer'], ['name'], ['remote'], ['access'], ['vpn'], ['required'], ['lcitrixerpall'], ['yes'], ['please'], ['provide'], ['application'], ['erp'], ['system'], ['network'], ['server'], ['user'], ['need'], ['access'], ['via'], ['vpn'], ['start'], ['date'], ['first'], ['name'], ['maximgbilian'], ['last'], ['name'], ['wilsfrtch'], ['location'], ['germany'], ['manager'], ['sponsor'], ['lkwspqce'], ['knxaipyj'], ['cost'], ['center'], ['external'], ['company'], ['name'], ['deloitte'], ['touche'], ['system'], ['need'], ['access'], ['erp'], ['sid'], ['mii'], ['yes'], ['user'], ['operator'], ['admin'], ['supervisor'], ['security'], ['note'], ['mii'], ['add'], ['im'], ['shopfloor'], ['user'], ['user'], ['sid'], ['account'], ['company'], ['email'], ['required'], ['person'], ['yes'], ['default'], ['k'], ['license'], ['assigned'], ['use'], ['owa'], ['collaboration'], ['platform'], ['outlook'], ['client'], ['skype'], ['outlook'], ['client'], ['skype'], ['required'], ['costly'], ['license'], ['must'], ['assigned'], ['used'], ['company'], ['computer'], ['assign'], ['k'], ['license'], ['access'], ['like'], ['required'], ['review'], ['copy'], ['person'], ['access'], ['approval'], ['create'], ['sid'], ['auditor'], ['requires'], ['access'], ['date'], ['computer'], ['owned'], ['company'], ['yes'], ['laptop'], ['desktop'], ['computer'], ['name'], ['remote'], ['access'], ['vpn'], ['required'], ['lcitrixerpall'], ['yes'], ['please'], ['provide'], ['application'], ['erp'], ['system'], ['network'], ['server'], ['user'], ['need'], ['access'], ['via'], ['vpn'], ['start'], ['date'], ['first'], ['name'], ['carolutyuin'], ['last'], ['name'], ['votgygel'], ['location'], ['germany'], ['manager'], ['sponsor'], ['lkwspqce'], ['knxaipyj'], ['cost'], ['center'], ['external'], ['company'], ['name'], ['deloitte'], ['touche'], ['system'], ['need'], ['access'], ['erp'], ['sid'], ['mii'], ['yes'], ['user'], ['operator'], ['admin'], ['supervisor'], ['security'], ['note'], ['mii'], ['add'], ['im'], ['shopfloor'], ['user'], ['user'], ['sid'], ['account'], ['company'], ['email'], ['required'], ['person'], ['yes'], ['default'], ['k'], ['license'], ['assigned'], ['use'], ['owa'], ['collaboration'], ['platform'], ['outlook'], ['client'], ['skype'], ['outlook'], ['client'], ['skype'], ['required'], ['costly'], ['license'], ['must'], ['assigned'], ['used'], ['company'], ['computer'], ['assign'], ['k'], ['license'], ['access'], ['like'], ['required'], ['review'], ['copy'], ['person'], ['access'], ['approval'], ['create'], ['sid'], ['auditor'], ['requires'], ['access'], ['date'], ['computer'], ['owned'], ['company'], ['yes'], ['laptop'], ['desktop'], ['computer'], ['name'], ['remote'], ['access'], ['vpn'], ['required'], ['lcitrixerpall'], ['yes'], ['please'], ['provide'], ['application'], ['erp'], ['system'], ['network'], ['server'], ['user'], ['need'], ['access'], ['via'], ['vpn'], ['start'], ['date']] k: 5174 len: <class 'list'> Data: ['need', 'account', 'adding', 'crm', 'hi', 'please', 'add', 'following', 'account', 'crm', 'one', 'assigned', 'account', 'cannot', 'see', 'account', 'name', 'powercor', 'erp'] processed_text: ['need', 'account', 'adding', 'crm', 'hi', 'please', 'add', 'following', 'account', 'crm', 'one', 'assigned', 'account', 'cannot', 'see', 'account', 'name', 'powercor', 'erp'] list_processed_text: [['need'], ['account'], ['adding'], ['crm'], ['hi'], ['please'], ['add'], ['following'], ['account'], ['crm'], ['one'], ['assigned'], ['account'], ['cannot'], ['see'], ['account'], ['name'], ['powercor'], ['erp']] k: 5175 len: <class 'list'> Data: ['install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg', 'install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg', 'install', 'zebra', 'wu', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['install'], ['zebra'], ['wu'], ['pfjwinbg'], ['ljtzbdqg'], ['install'], ['zebra'], ['wu'], ['pfjwinbg'], ['ljtzbdqg']] k: 5176 len: <class 'list'> Data: ['organisation', 'chart', 'data', 'outlook', 'dear', 'team', 'pl', 'look', 'screen', 'shot', 'omfvxjpw', 'htiemzsg', 'appearing', 'outlook', 'org', 'chart', 'pl', 'remove'] processed_text: ['organisation', 'chart', 'data', 'outlook', 'dear', 'team', 'pl', 'look', 'screen', 'shot', 'omfvxjpw', 'htiemzsg', 'appearing', 'outlook', 'org', 'chart', 'pl', 'remove'] list_processed_text: [['organisation'], ['chart'], ['data'], ['outlook'], ['dear'], ['team'], ['pl'], ['look'], ['screen'], ['shot'], ['omfvxjpw'], ['htiemzsg'], ['appearing'], ['outlook'], ['org'], ['chart'], ['pl'], ['remove']] k: 5177 len: <class 'list'> Data: ['traveler', 'good', 'morning', 'two', 'travel', 'profile', 'please', 'see', 'attached', 'best'] processed_text: ['traveler', 'good', 'morning', 'two', 'travel', 'profile', 'please', 'see', 'attached', 'best'] list_processed_text: [['traveler'], ['good'], ['morning'], ['two'], ['travel'], ['profile'], ['please'], ['see'], ['attached'], ['best']] k: 5178 len: <class 'list'> Data: ['master', 'cost', 'center', 'missing', 'person', 'number', 'master', 'cost', 'center', 'missing', 'person', 'number', 'cost', 'center', 'ltu'] processed_text: ['master', 'cost', 'center', 'missing', 'person', 'number', 'master', 'cost', 'center', 'missing', 'person', 'number', 'cost', 'center', 'ltu'] list_processed_text: [['master'], ['cost'], ['center'], ['missing'], ['person'], ['number'], ['master'], ['cost'], ['center'], ['missing'], ['person'], ['number'], ['cost'], ['center'], ['ltu']] k: 5179 len: <class 'list'> Data: ['mismatch', 'plant', 'erp', 'inventrory', 'hello', 'every', 'month', 'see', 'difference', 'quantity', 'inventory', 'plant', 'stock', 'erp', 'stock', 'assumption', 'erp', 'inward', 'stock', 'without', 'paper', 'customer', 'return', 'paper', 'good', 'resale', 'connection', 'attaching', 'extraction', 'plant', 'register', 'erp', 'inventory', 'plant', 'working', 'show', 'difference', 'erp', 'plant', 'register', 'highlighted', 'material', 'code', 'red', 'color', 'difference', 'erp', 'plant', 'throw', 'light', 'inward', 'made', 'paper', 'also', 'downloaded', 'screen', 'shot', 'material', 'code', 'reference', 'request', 'investigate', 'revert', 'reason', 'difference', 'time', 'bound', 'activity', 'expect', 'closed', 'need', 'informed', 'auditor'] processed_text: ['mismatch', 'plant', 'erp', 'inventrory', 'hello', 'every', 'month', 'see', 'difference', 'quantity', 'inventory', 'plant', 'stock', 'erp', 'stock', 'assumption', 'erp', 'inward', 'stock', 'without', 'paper', 'customer', 'return', 'paper', 'good', 'resale', 'connection', 'attaching', 'extraction', 'plant', 'register', 'erp', 'inventory', 'plant', 'working', 'show', 'difference', 'erp', 'plant', 'register', 'highlighted', 'material', 'code', 'red', 'color', 'difference', 'erp', 'plant', 'throw', 'light', 'inward', 'made', 'paper', 'also', 'downloaded', 'screen', 'shot', 'material', 'code', 'reference', 'request', 'investigate', 'revert', 'reason', 'difference', 'time', 'bound', 'activity', 'expect', 'closed', 'need', 'informed', 'auditor'] list_processed_text: [['mismatch'], ['plant'], ['erp'], ['inventrory'], ['hello'], ['every'], ['month'], ['see'], ['difference'], ['quantity'], ['inventory'], ['plant'], ['stock'], ['erp'], ['stock'], ['assumption'], ['erp'], ['inward'], ['stock'], ['without'], ['paper'], ['customer'], ['return'], ['paper'], ['good'], ['resale'], ['connection'], ['attaching'], ['extraction'], ['plant'], ['register'], ['erp'], ['inventory'], ['plant'], ['working'], ['show'], ['difference'], ['erp'], ['plant'], ['register'], ['highlighted'], ['material'], ['code'], ['red'], ['color'], ['difference'], ['erp'], ['plant'], ['throw'], ['light'], ['inward'], ['made'], ['paper'], ['also'], ['downloaded'], ['screen'], ['shot'], ['material'], ['code'], ['reference'], ['request'], ['investigate'], ['revert'], ['reason'], ['difference'], ['time'], ['bound'], ['activity'], ['expect'], ['closed'], ['need'], ['informed'], ['auditor']] k: 5180 len: <class 'list'> Data: ['infopath', 'issue', 'rule', 'applied', 'infopath', 'issue', 'rule', 'applied'] processed_text: ['infopath', 'issue', 'rule', 'applied', 'infopath', 'issue', 'rule', 'applied'] list_processed_text: [['infopath'], ['issue'], ['rule'], ['applied'], ['infopath'], ['issue'], ['rule'], ['applied']] k: 5181 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 5182 len: <class 'list'> Data: ['circuit', 'outage', 'circuit', 'outage', 'company', 'vpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'circuit', 'outage', 'company', 'vpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['circuit'], ['outage'], ['company'], ['vpn'], ['circuit'], ['et'], ['site'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5183 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 5184 len: <class 'list'> Data: ['request', 'loaner', 'laptop', 'need', 'loaner', 'laptop', 'currently', 'available', 'usa', 'employee', 'usa', 'pa', 'hq', 'usa', 'employee', 'usa', 'ar', 'apologize', 'inconvenience', 'need', 'laptop', 'day', 'notice', 'required', 'loaner', 'ready', 'laptop', 'reserved', 'week', 'advance', 'return', 'laptop', 'laptop', 'borrowed', 'maximum', 'week', 'user', 'need', 'remote', 'access', 'vpn', 'yes', 'requester', 'manager', 'approval', 'needed', 'laptop', 'come', 'erp', 'vpn', 'etc', 'additional', 'software', 'needed', 'office', 'word', 'excel', 'powerpoint', 'n', 'outlook', 'n', 'following', 'updated', 'dell', 'serial', 'number', 'company', 'asset', 'tag', 'note', 'laptop', 'part', 'returned', 'scheduled', 'requestor', 'department', 'charged', 'replacement', 'cost'] processed_text: ['request', 'loaner', 'laptop', 'need', 'loaner', 'laptop', 'currently', 'available', 'usa', 'employee', 'usa', 'pa', 'hq', 'usa', 'employee', 'usa', 'ar', 'apologize', 'inconvenience', 'need', 'laptop', 'day', 'notice', 'required', 'loaner', 'ready', 'laptop', 'reserved', 'week', 'advance', 'return', 'laptop', 'laptop', 'borrowed', 'maximum', 'week', 'user', 'need', 'remote', 'access', 'vpn', 'yes', 'requester', 'manager', 'approval', 'needed', 'laptop', 'come', 'erp', 'vpn', 'etc', 'additional', 'software', 'needed', 'office', 'word', 'excel', 'powerpoint', 'n', 'outlook', 'n', 'following', 'updated', 'dell', 'serial', 'number', 'company', 'asset', 'tag', 'note', 'laptop', 'part', 'returned', 'scheduled', 'requestor', 'department', 'charged', 'replacement', 'cost'] list_processed_text: [['request'], ['loaner'], ['laptop'], ['need'], ['loaner'], ['laptop'], ['currently'], ['available'], ['usa'], ['employee'], ['usa'], ['pa'], ['hq'], ['usa'], ['employee'], ['usa'], ['ar'], ['apologize'], ['inconvenience'], ['need'], ['laptop'], ['day'], ['notice'], ['required'], ['loaner'], ['ready'], ['laptop'], ['reserved'], ['week'], ['advance'], ['return'], ['laptop'], ['laptop'], ['borrowed'], ['maximum'], ['week'], ['user'], ['need'], ['remote'], ['access'], ['vpn'], ['yes'], ['requester'], ['manager'], ['approval'], ['needed'], ['laptop'], ['come'], ['erp'], ['vpn'], ['etc'], ['additional'], ['software'], ['needed'], ['office'], ['word'], ['excel'], ['powerpoint'], ['n'], ['outlook'], ['n'], ['following'], ['updated'], ['dell'], ['serial'], ['number'], ['company'], ['asset'], ['tag'], ['note'], ['laptop'], ['part'], ['returned'], ['scheduled'], ['requestor'], ['department'], ['charged'], ['replacement'], ['cost']] k: 5185 len: <class 'list'> Data: ['help', 'mobile', 'phone', 'good', 'morning', 'issue', 'company', 'phone', 'sure', 'contact', 'help', 'correct', 'issue', 'please', 'get', 'contact', 'help', 'solve', 'problem'] processed_text: ['help', 'mobile', 'phone', 'good', 'morning', 'issue', 'company', 'phone', 'sure', 'contact', 'help', 'correct', 'issue', 'please', 'get', 'contact', 'help', 'solve', 'problem'] list_processed_text: [['help'], ['mobile'], ['phone'], ['good'], ['morning'], ['issue'], ['company'], ['phone'], ['sure'], ['contact'], ['help'], ['correct'], ['issue'], ['please'], ['get'], ['contact'], ['help'], ['solve'], ['problem']] k: 5186 len: <class 'list'> Data: ['unable', 'print', 'requesting', 'printer', 'driver', 'unable', 'print', 'requesting', 'printer', 'driver'] processed_text: ['unable', 'print', 'requesting', 'printer', 'driver', 'unable', 'print', 'requesting', 'printer', 'driver'] list_processed_text: [['unable'], ['print'], ['requesting'], ['printer'], ['driver'], ['unable'], ['print'], ['requesting'], ['printer'], ['driver']] k: 5187 len: <class 'list'> Data: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] processed_text: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] list_processed_text: [['impact'], ['award'], ['password'], ['reset'], ['impact'], ['award'], ['password'], ['reset']] k: 5188 len: <class 'list'> Data: ['hotwlygp', 'afukzhnm', 'frequent', 'account', 'lockout', 'account', 'keep', 'locking', 'last', 'password', 'change'] processed_text: ['hotwlygp', 'afukzhnm', 'frequent', 'account', 'lockout', 'account', 'keep', 'locking', 'last', 'password', 'change'] list_processed_text: [['hotwlygp'], ['afukzhnm'], ['frequent'], ['account'], ['lockout'], ['account'], ['keep'], ['locking'], ['last'], ['password'], ['change']] k: 5189 len: <class 'list'> Data: ['business', 'client', 'plug', 'responding', 'need', 'view', 'attachment', 'er', 'get', 'error', 'plug', 'responding', 'cannot', 'see', 'attachment', 'without', 'seeing', 'attachment', 'know', 'change', 'make', 'drawing', 'part', 'hold', 'manufacturing'] processed_text: ['business', 'client', 'plug', 'responding', 'need', 'view', 'attachment', 'er', 'get', 'error', 'plug', 'responding', 'cannot', 'see', 'attachment', 'without', 'seeing', 'attachment', 'know', 'change', 'make', 'drawing', 'part', 'hold', 'manufacturing'] list_processed_text: [['business'], ['client'], ['plug'], ['responding'], ['need'], ['view'], ['attachment'], ['er'], ['get'], ['error'], ['plug'], ['responding'], ['cannot'], ['see'], ['attachment'], ['without'], ['seeing'], ['attachment'], ['know'], ['change'], ['make'], ['drawing'], ['part'], ['hold'], ['manufacturing']] k: 5190 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5191 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 5192 len: <class 'list'> Data: ['fc', 'department', 'distribution', 'moin', 'marfhtyio', 'please', 'mr', 'lzuwmhpr', 'riuheqsg', 'r', 'drive', 'department', 'hostname', 'distribution', 'form', 'thank', 'kind'] processed_text: ['fc', 'department', 'distribution', 'moin', 'marfhtyio', 'please', 'mr', 'lzuwmhpr', 'riuheqsg', 'r', 'drive', 'department', 'hostname', 'distribution', 'form', 'thank', 'kind'] list_processed_text: [['fc'], ['department'], ['distribution'], ['moin'], ['marfhtyio'], ['please'], ['mr'], ['lzuwmhpr'], ['riuheqsg'], ['r'], ['drive'], ['department'], ['hostname'], ['distribution'], ['form'], ['thank'], ['kind']] k: 5193 len: <class 'list'> Data: ['problem', 'printer', 'print', 'dknejifu', 'dljvtebc', 'problem', 'printer', 'print', 'dknejifu', 'dljvtebc'] processed_text: ['problem', 'printer', 'print', 'dknejifu', 'dljvtebc', 'problem', 'printer', 'print', 'dknejifu', 'dljvtebc'] list_processed_text: [['problem'], ['printer'], ['print'], ['dknejifu'], ['dljvtebc'], ['problem'], ['printer'], ['print'], ['dknejifu'], ['dljvtebc']] k: 5194 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 5195 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 5196 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 5197 len: <class 'list'> Data: ['reset', 'password', 'ugawcoye', 'jcfqgviy', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'ugawcoye', 'jcfqgviy', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['ugawcoye'], ['jcfqgviy'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5198 len: <class 'list'> Data: ['tastatutur', 'defective', 'eewhse', 'vzqomdgt', 'jwoqbuml', 'tastatutur', 'defective', 'eewhse', 'vzqomdgt', 'jwoqbuml'] processed_text: ['tastatutur', 'defective', 'eewhse', 'vzqomdgt', 'jwoqbuml', 'tastatutur', 'defective', 'eewhse', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['tastatutur'], ['defective'], ['eewhse'], ['vzqomdgt'], ['jwoqbuml'], ['tastatutur'], ['defective'], ['eewhse'], ['vzqomdgt'], ['jwoqbuml']] k: 5199 len: <class 'list'> Data: ['install', 'eu', 'tool', 'und', 'zebra', 'ewew', 'zlqfptjx', 'xnklbfua', 'install', 'eu', 'tool', 'und', 'zebra', 'ewew', 'zlqfptjx', 'xnklbfua'] processed_text: ['install', 'eu', 'tool', 'und', 'zebra', 'ewew', 'zlqfptjx', 'xnklbfua', 'install', 'eu', 'tool', 'und', 'zebra', 'ewew', 'zlqfptjx', 'xnklbfua'] list_processed_text: [['install'], ['eu'], ['tool'], ['und'], ['zebra'], ['ewew'], ['zlqfptjx'], ['xnklbfua'], ['install'], ['eu'], ['tool'], ['und'], ['zebra'], ['ewew'], ['zlqfptjx'], ['xnklbfua']] k: 5200 len: <class 'list'> Data: ['dock', 'station', 'required', 'hello', 'team', 'please', 'arrange', 'dock', 'station', 'laptop', 'model', 'latitude', 'please', 'let', 'know', 'required', 'detail', 'br', 'aghynil'] processed_text: ['dock', 'station', 'required', 'hello', 'team', 'please', 'arrange', 'dock', 'station', 'laptop', 'model', 'latitude', 'please', 'let', 'know', 'required', 'detail', 'br', 'aghynil'] list_processed_text: [['dock'], ['station'], ['required'], ['hello'], ['team'], ['please'], ['arrange'], ['dock'], ['station'], ['laptop'], ['model'], ['latitude'], ['please'], ['let'], ['know'], ['required'], ['detail'], ['br'], ['aghynil']] k: 5201 len: <class 'list'> Data: ['erp', 'access', 'issue', 'bex', 'hana', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'dofghbmes', 'transaction', 'code', 'user', 'need', 'working', 'bex', 'describe', 'issue', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'bex', 'hana', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'dofghbmes', 'transaction', 'code', 'user', 'need', 'working', 'bex', 'describe', 'issue', 'password', 'logon', 'longer', 'possible', 'many', 'failed', 'attempt', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['bex'], ['hana'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['dofghbmes'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['bex'], ['describe'], ['issue'], ['password'], ['logon'], ['longer'], ['possible'], ['many'], ['failed'], ['attempt'], ['provide'], ['access'], ['user']] k: 5202 len: <class 'list'> Data: ['issue', 'computer', 'error', 'message', 'enough', 'space', 'issue', 'computer', 'user', 'work', 'regular', 'error', 'message', 'regarding', 'enough', 'space', 'computer', 'file', 'hard', 'drive', 'cleaned', 'problem', 'dierppear', 'user', 'effeghnk', 'computer', 'name', 'efdw', 'please', 'see', 'attached', 'screenshots', 'error', 'message', 'user', 'tried', 'contacting', 'help', 'via', 'chat', 'support', 'work', 'computer', 'probably', 'due', 'recent', 'issue', 'question', 'please', 'contact', 'mizpywld', 'dnrubpis', 'tel', 'via', 'sky', 'business'] processed_text: ['issue', 'computer', 'error', 'message', 'enough', 'space', 'issue', 'computer', 'user', 'work', 'regular', 'error', 'message', 'regarding', 'enough', 'space', 'computer', 'file', 'hard', 'drive', 'cleaned', 'problem', 'dierppear', 'user', 'effeghnk', 'computer', 'name', 'efdw', 'please', 'see', 'attached', 'screenshots', 'error', 'message', 'user', 'tried', 'contacting', 'help', 'via', 'chat', 'support', 'work', 'computer', 'probably', 'due', 'recent', 'issue', 'question', 'please', 'contact', 'mizpywld', 'dnrubpis', 'tel', 'via', 'sky', 'business'] list_processed_text: [['issue'], ['computer'], ['error'], ['message'], ['enough'], ['space'], ['issue'], ['computer'], ['user'], ['work'], ['regular'], ['error'], ['message'], ['regarding'], ['enough'], ['space'], ['computer'], ['file'], ['hard'], ['drive'], ['cleaned'], ['problem'], ['dierppear'], ['user'], ['effeghnk'], ['computer'], ['name'], ['efdw'], ['please'], ['see'], ['attached'], ['screenshots'], ['error'], ['message'], ['user'], ['tried'], ['contacting'], ['help'], ['via'], ['chat'], ['support'], ['work'], ['computer'], ['probably'], ['due'], ['recent'], ['issue'], ['question'], ['please'], ['contact'], ['mizpywld'], ['dnrubpis'], ['tel'], ['via'], ['sky'], ['business']] k: 5203 len: <class 'list'> Data: ['reset', 'password', 'imuwhokc', 'ijdfnayb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'tonight', 'already', 'forgot', 'log', 'anything'] processed_text: ['reset', 'password', 'imuwhokc', 'ijdfnayb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'tonight', 'already', 'forgot', 'log', 'anything'] list_processed_text: [['reset'], ['password'], ['imuwhokc'], ['ijdfnayb'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['tonight'], ['already'], ['forgot'], ['log'], ['anything']] k: 5204 len: <class 'list'> Data: ['bobj', 'erp', 'business', 'object', 'dear', 'someone', 'please', 'check', 'new', 'sale', 'employee', 'name', 'show', 'sale', 'plan', 'v', 'actual', 'bobj', 'report', 'ex', 'mjvfxnka', 'zvjxuahe', 'wohzmlib', 'fxwjhapo', 'someone', 'please', 'check', 'let', 'u', 'know', 'also', 'see', 'name', 'sale', 'people', 'automatic', 'routine'] processed_text: ['bobj', 'erp', 'business', 'object', 'dear', 'someone', 'please', 'check', 'new', 'sale', 'employee', 'name', 'show', 'sale', 'plan', 'v', 'actual', 'bobj', 'report', 'ex', 'mjvfxnka', 'zvjxuahe', 'wohzmlib', 'fxwjhapo', 'someone', 'please', 'check', 'let', 'u', 'know', 'also', 'see', 'name', 'sale', 'people', 'automatic', 'routine'] list_processed_text: [['bobj'], ['erp'], ['business'], ['object'], ['dear'], ['someone'], ['please'], ['check'], ['new'], ['sale'], ['employee'], ['name'], ['show'], ['sale'], ['plan'], ['v'], ['actual'], ['bobj'], ['report'], ['ex'], ['mjvfxnka'], ['zvjxuahe'], ['wohzmlib'], ['fxwjhapo'], ['someone'], ['please'], ['check'], ['let'], ['u'], ['know'], ['also'], ['see'], ['name'], ['sale'], ['people'], ['automatic'], ['routine']] k: 5205 len: <class 'list'> Data: ['laptop', 'login', 'issue', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'facing', 'issue', 'login', 'laptop', 'starting', 'window', 'coming', 'screen', 'shot', 'attached', 'due', 'able', 'login', 'using', 'laptop', 'pad', 'keybankrd', 'showing', 'every', 'time', 'connect', 'keybankrd', 'enter', 'user', 'id', 'password', 'laptop', 'model', 'dell', 'latitude', 'request', 'kindly', 'solve', 'problem', 'best'] processed_text: ['laptop', 'login', 'issue', 'kxmidsga', 'zokivdfa', 'dear', 'sir', 'facing', 'issue', 'login', 'laptop', 'starting', 'window', 'coming', 'screen', 'shot', 'attached', 'due', 'able', 'login', 'using', 'laptop', 'pad', 'keybankrd', 'showing', 'every', 'time', 'connect', 'keybankrd', 'enter', 'user', 'id', 'password', 'laptop', 'model', 'dell', 'latitude', 'request', 'kindly', 'solve', 'problem', 'best'] list_processed_text: [['laptop'], ['login'], ['issue'], ['kxmidsga'], ['zokivdfa'], ['dear'], ['sir'], ['facing'], ['issue'], ['login'], ['laptop'], ['starting'], ['window'], ['coming'], ['screen'], ['shot'], ['attached'], ['due'], ['able'], ['login'], ['using'], ['laptop'], ['pad'], ['keybankrd'], ['showing'], ['every'], ['time'], ['connect'], ['keybankrd'], ['enter'], ['user'], ['id'], ['password'], ['laptop'], ['model'], ['dell'], ['latitude'], ['request'], ['kindly'], ['solve'], ['problem'], ['best']] k: 5206 len: <class 'list'> Data: ['probleme', 'mit', 'outlook', 'axesnghb', 'cyzuomxa', 'probleme', 'mit', 'outlook', 'axesnghb', 'cyzuomxa'] processed_text: ['probleme', 'mit', 'outlook', 'axesnghb', 'cyzuomxa', 'probleme', 'mit', 'outlook', 'axesnghb', 'cyzuomxa'] list_processed_text: [['probleme'], ['mit'], ['outlook'], ['axesnghb'], ['cyzuomxa'], ['probleme'], ['mit'], ['outlook'], ['axesnghb'], ['cyzuomxa']] k: 5207 len: <class 'list'> Data: ['visual', 'studio', 'license', 'issue', 'hi', 'visual', 'studio', 'professional', 'machine', 'license', 'issue', 'warning', 'message', 'indicates', 'license', 'trial', 'expired', 'coverage', 'period', 'existing', 'v', 'license', 'till', 'nov', 'please', 'refer', 'attached', 'image', 'error', 'description', 'license', 'validity', 'detail'] processed_text: ['visual', 'studio', 'license', 'issue', 'hi', 'visual', 'studio', 'professional', 'machine', 'license', 'issue', 'warning', 'message', 'indicates', 'license', 'trial', 'expired', 'coverage', 'period', 'existing', 'v', 'license', 'till', 'nov', 'please', 'refer', 'attached', 'image', 'error', 'description', 'license', 'validity', 'detail'] list_processed_text: [['visual'], ['studio'], ['license'], ['issue'], ['hi'], ['visual'], ['studio'], ['professional'], ['machine'], ['license'], ['issue'], ['warning'], ['message'], ['indicates'], ['license'], ['trial'], ['expired'], ['coverage'], ['period'], ['existing'], ['v'], ['license'], ['till'], ['nov'], ['please'], ['refer'], ['attached'], ['image'], ['error'], ['description'], ['license'], ['validity'], ['detail']] k: 5208 len: <class 'list'> Data: ['unable', 'send', 'receive', 'email', 'external', 'party', 'eonhuwlg', 'sxthcobm', 'wydorpzi', 'taxcizwv', 'praddgtip', 'kumfgtyar', 'hi', 'team', 'eonhuwlg', 'sxthcobm', 'cannot', 'receive', 'send', 'email', 'external', 'party', 'via', 'company', 'email', 'address', 'however', 'colleague', 'wydorpzi', 'taxcizwv', 'send', 'receive', 'email', 'issue', 'kindly', 'investigate', 'issue', 'debaghjsish', 'take', 'sagar', 'user', 'compare', 'difference', 'fyi', 'fi', 'outsource', 'partner', 'also', 'got', 'company', 'email', 'address', 'fi', 'operation', 'support', 'u', 'appreciate', 'could', 'prioritise', 'fix', 'u'] processed_text: ['unable', 'send', 'receive', 'email', 'external', 'party', 'eonhuwlg', 'sxthcobm', 'wydorpzi', 'taxcizwv', 'praddgtip', 'kumfgtyar', 'hi', 'team', 'eonhuwlg', 'sxthcobm', 'cannot', 'receive', 'send', 'email', 'external', 'party', 'via', 'company', 'email', 'address', 'however', 'colleague', 'wydorpzi', 'taxcizwv', 'send', 'receive', 'email', 'issue', 'kindly', 'investigate', 'issue', 'debaghjsish', 'take', 'sagar', 'user', 'compare', 'difference', 'fyi', 'fi', 'outsource', 'partner', 'also', 'got', 'company', 'email', 'address', 'fi', 'operation', 'support', 'u', 'appreciate', 'could', 'prioritise', 'fix', 'u'] list_processed_text: [['unable'], ['send'], ['receive'], ['email'], ['external'], ['party'], ['eonhuwlg'], ['sxthcobm'], ['wydorpzi'], ['taxcizwv'], ['praddgtip'], ['kumfgtyar'], ['hi'], ['team'], ['eonhuwlg'], ['sxthcobm'], ['cannot'], ['receive'], ['send'], ['email'], ['external'], ['party'], ['via'], ['company'], ['email'], ['address'], ['however'], ['colleague'], ['wydorpzi'], ['taxcizwv'], ['send'], ['receive'], ['email'], ['issue'], ['kindly'], ['investigate'], ['issue'], ['debaghjsish'], ['take'], ['sagar'], ['user'], ['compare'], ['difference'], ['fyi'], ['fi'], ['outsource'], ['partner'], ['also'], ['got'], ['company'], ['email'], ['address'], ['fi'], ['operation'], ['support'], ['u'], ['appreciate'], ['could'], ['prioritise'], ['fix'], ['u']] k: 5209 len: <class 'list'> Data: ['read', 'write', 'authorization', 'r', 'kbt', 'job', 'edit', 'hello', 'marfhtyio', 'please', 'give', 'read', 'write', 'authorization', 'r', 'kbt', 'auftrgasbearb', 'thank', 'anfghyudrejy', 'friendly', 'gr', 'child'] processed_text: ['read', 'write', 'authorization', 'r', 'kbt', 'job', 'edit', 'hello', 'marfhtyio', 'please', 'give', 'read', 'write', 'authorization', 'r', 'kbt', 'auftrgasbearb', 'thank', 'anfghyudrejy', 'friendly', 'gr', 'child'] list_processed_text: [['read'], ['write'], ['authorization'], ['r'], ['kbt'], ['job'], ['edit'], ['hello'], ['marfhtyio'], ['please'], ['give'], ['read'], ['write'], ['authorization'], ['r'], ['kbt'], ['auftrgasbearb'], ['thank'], ['anfghyudrejy'], ['friendly'], ['gr'], ['child']] k: 5210 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5211 len: <class 'list'> Data: ['please', 'review', 'eu', 'tool', 'server', 'germany', 'hostname', 'eu', 'tool', 'working', 'urgent', 'please', 'review', 'eu', 'tool', 'server', 'germany', 'hostname', 'eu', 'tool', 'working', 'urgent'] processed_text: ['please', 'review', 'eu', 'tool', 'server', 'germany', 'hostname', 'eu', 'tool', 'working', 'urgent', 'please', 'review', 'eu', 'tool', 'server', 'germany', 'hostname', 'eu', 'tool', 'working', 'urgent'] list_processed_text: [['please'], ['review'], ['eu'], ['tool'], ['server'], ['germany'], ['hostname'], ['eu'], ['tool'], ['working'], ['urgent'], ['please'], ['review'], ['eu'], ['tool'], ['server'], ['germany'], ['hostname'], ['eu'], ['tool'], ['working'], ['urgent']] k: 5212 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5213 len: <class 'list'> Data: ['reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['pyeothbl'], ['agfxelwz'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['reset'], ['password'], ['pyeothbl'], ['agfxelwz'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5214 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'kb', 'hostname', 'drive', 'full'] processed_text: ['hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'kb', 'hostname', 'drive', 'full'] list_processed_text: [['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['kb'], ['hostname'], ['drive'], ['full']] k: 5215 len: <class 'list'> Data: ['reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reset', 'password', 'aerp'] processed_text: ['reset', 'password', 'pyeothbl', 'agfxelwz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reset', 'password', 'aerp'] list_processed_text: [['reset'], ['password'], ['pyeothbl'], ['agfxelwz'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['please'], ['reset'], ['password'], ['aerp']] k: 5216 len: <class 'list'> Data: ['account', 'password', 'expired', 'account', 'expired'] processed_text: ['account', 'password', 'expired', 'account', 'expired'] list_processed_text: [['account'], ['password'], ['expired'], ['account'], ['expired']] k: 5217 len: <class 'list'> Data: ['job', 'que', 'processor', 'engg', 'database', 'stopped', 'please', 'restart', 'database', 'team', 'job', 'processor', 'engg', 'production', 'system', 'stopped', 'please', 'restart'] processed_text: ['job', 'que', 'processor', 'engg', 'database', 'stopped', 'please', 'restart', 'database', 'team', 'job', 'processor', 'engg', 'production', 'system', 'stopped', 'please', 'restart'] list_processed_text: [['job'], ['que'], ['processor'], ['engg'], ['database'], ['stopped'], ['please'], ['restart'], ['database'], ['team'], ['job'], ['processor'], ['engg'], ['production'], ['system'], ['stopped'], ['please'], ['restart']] k: 5218 len: <class 'list'> Data: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'nihktgsh', 'kurtyar', 'last', 'name', 'kaghjtra', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'nihktgsh', 'kurtyar', 'last', 'name', 'kaghjtra', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['rad'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['nihktgsh'], ['kurtyar'], ['last'], ['name'], ['kaghjtra'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 5219 len: <class 'list'> Data: ['able', 'access', 'sid', 'hi', 'able', 'access', 'sid', 'system', 'user', 'id', 'heghjyder', 'gajthyana', 'hegdergyt', 'manager', 'finance'] processed_text: ['able', 'access', 'sid', 'hi', 'able', 'access', 'sid', 'system', 'user', 'id', 'heghjyder', 'gajthyana', 'hegdergyt', 'manager', 'finance'] list_processed_text: [['able'], ['access'], ['sid'], ['hi'], ['able'], ['access'], ['sid'], ['system'], ['user'], ['id'], ['heghjyder'], ['gajthyana'], ['hegdergyt'], ['manager'], ['finance']] k: 5220 len: <class 'list'> Data: ['reset', 'password', 'guldiwmn', 'aroqwuvz', 'erp', 'production', 'erp', 'cannot', 'log', 'change', 'erp', 'password', 'ploease', 'help'] processed_text: ['reset', 'password', 'guldiwmn', 'aroqwuvz', 'erp', 'production', 'erp', 'cannot', 'log', 'change', 'erp', 'password', 'ploease', 'help'] list_processed_text: [['reset'], ['password'], ['guldiwmn'], ['aroqwuvz'], ['erp'], ['production'], ['erp'], ['cannot'], ['log'], ['change'], ['erp'], ['password'], ['ploease'], ['help']] k: 5221 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5222 len: <class 'list'> Data: ['vpn', 'connection', 'failure', 'hello', 'able', 'connect', 'vpn'] processed_text: ['vpn', 'connection', 'failure', 'hello', 'able', 'connect', 'vpn'] list_processed_text: [['vpn'], ['connection'], ['failure'], ['hello'], ['able'], ['connect'], ['vpn']] k: 5223 len: <class 'list'> Data: ['hostname', 'department', 'ehs', 'arbeitsmedizin', 'bitte', 'den', 'verantwortlichen', 'ndern', 'von', 'metghyjznk', 'auf', 'roedfghtec', 'bitte', 'den', 'verantwortlichen', 'de', 'ordners', 'hostname', 'department', 'ehs', 'arbeitsmedizin', 'ndern', 'von', 'ozphysqw', 'pgcmwqze', 'metghyjznk', 'auf', 'clara', 'der', 'roedfghtec', 'danke', 'please', 'change', 'owner', 'folder', 'vhebydgs', 'rtmjwyvk', 'roedfghtec'] processed_text: ['hostname', 'department', 'ehs', 'arbeitsmedizin', 'bitte', 'den', 'verantwortlichen', 'ndern', 'von', 'metghyjznk', 'auf', 'roedfghtec', 'bitte', 'den', 'verantwortlichen', 'de', 'ordners', 'hostname', 'department', 'ehs', 'arbeitsmedizin', 'ndern', 'von', 'ozphysqw', 'pgcmwqze', 'metghyjznk', 'auf', 'clara', 'der', 'roedfghtec', 'danke', 'please', 'change', 'owner', 'folder', 'vhebydgs', 'rtmjwyvk', 'roedfghtec'] list_processed_text: [['hostname'], ['department'], ['ehs'], ['arbeitsmedizin'], ['bitte'], ['den'], ['verantwortlichen'], ['ndern'], ['von'], ['metghyjznk'], ['auf'], ['roedfghtec'], ['bitte'], ['den'], ['verantwortlichen'], ['de'], ['ordners'], ['hostname'], ['department'], ['ehs'], ['arbeitsmedizin'], ['ndern'], ['von'], ['ozphysqw'], ['pgcmwqze'], ['metghyjznk'], ['auf'], ['clara'], ['der'], ['roedfghtec'], ['danke'], ['please'], ['change'], ['owner'], ['folder'], ['vhebydgs'], ['rtmjwyvk'], ['roedfghtec']] k: 5224 len: <class 'list'> Data: ['able', 'login', 'system', 'wh', 'user', 'id', 'detail', 'new', 'hardware', 'replaced', 'computer', 'name', 'aiml'] processed_text: ['able', 'login', 'system', 'wh', 'user', 'id', 'detail', 'new', 'hardware', 'replaced', 'computer', 'name', 'aiml'] list_processed_text: [['able'], ['login'], ['system'], ['wh'], ['user'], ['id'], ['detail'], ['new'], ['hardware'], ['replaced'], ['computer'], ['name'], ['aiml']] k: 5225 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5226 len: <class 'list'> Data: ['excel', 'hostname', 'team', 'business', 'qualitycontrol', 'quality', 'project', 'k', 'weekly', 'layered', 'process', 'audi', 'excel', 'kmfgfr', 'lpa', 'countermeasure', 'fy', 'total', 'hostname', 'team', 'business', 'qualitycontrol', 'quality', 'project', 'k', 'weekly', 'layered', 'process', 'audit', 'fy'] processed_text: ['excel', 'hostname', 'team', 'business', 'qualitycontrol', 'quality', 'project', 'k', 'weekly', 'layered', 'process', 'audi', 'excel', 'kmfgfr', 'lpa', 'countermeasure', 'fy', 'total', 'hostname', 'team', 'business', 'qualitycontrol', 'quality', 'project', 'k', 'weekly', 'layered', 'process', 'audit', 'fy'] list_processed_text: [['excel'], ['hostname'], ['team'], ['business'], ['qualitycontrol'], ['quality'], ['project'], ['k'], ['weekly'], ['layered'], ['process'], ['audi'], ['excel'], ['kmfgfr'], ['lpa'], ['countermeasure'], ['fy'], ['total'], ['hostname'], ['team'], ['business'], ['qualitycontrol'], ['quality'], ['project'], ['k'], ['weekly'], ['layered'], ['process'], ['audit'], ['fy']] k: 5227 len: <class 'list'> Data: ['virus', 'scanned', 'hello', 'pls', 'needful', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] processed_text: ['virus', 'scanned', 'hello', 'pls', 'needful', 'vivthyek', 'byuihand', 'asst', 'manager', 'sale', 'company', 'india', 'ltd', 'india'] list_processed_text: [['virus'], ['scanned'], ['hello'], ['pls'], ['needful'], ['vivthyek'], ['byuihand'], ['asst'], ['manager'], ['sale'], ['company'], ['india'], ['ltd'], ['india']] k: 5228 len: <class 'list'> Data: ['unable', 'connect', 'company', 'wi', 'fi', 'unable', 'connect', 'company', 'wi', 'fi'] processed_text: ['unable', 'connect', 'company', 'wi', 'fi', 'unable', 'connect', 'company', 'wi', 'fi'] list_processed_text: [['unable'], ['connect'], ['company'], ['wi'], ['fi'], ['unable'], ['connect'], ['company'], ['wi'], ['fi']] k: 5229 len: <class 'list'> Data: ['attendance', 'tool', 'id', 'password', 'hello', 'need', 'help', 'forgot', 'attendance', 'tool', 'login', 'id', 'password', 'best'] processed_text: ['attendance', 'tool', 'id', 'password', 'hello', 'need', 'help', 'forgot', 'attendance', 'tool', 'login', 'id', 'password', 'best'] list_processed_text: [['attendance'], ['tool'], ['id'], ['password'], ['hello'], ['need'], ['help'], ['forgot'], ['attendance'], ['tool'], ['login'], ['id'], ['password'], ['best']] k: 5230 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] processed_text: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['account'], ['locked'], ['password'], ['reset']] k: 5231 len: <class 'list'> Data: ['able', 'add', 'id', 'printer', 'laptop', 'able', 'add', 'id', 'printer', 'laptop', 'installing', 'driver', 'system', 'throw', 'error', 'add', 'printer'] processed_text: ['able', 'add', 'id', 'printer', 'laptop', 'able', 'add', 'id', 'printer', 'laptop', 'installing', 'driver', 'system', 'throw', 'error', 'add', 'printer'] list_processed_text: [['able'], ['add'], ['id'], ['printer'], ['laptop'], ['able'], ['add'], ['id'], ['printer'], ['laptop'], ['installing'], ['driver'], ['system'], ['throw'], ['error'], ['add'], ['printer']] k: 5232 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5233 len: <class 'list'> Data: ['ctrl', 'alt', 'delete', 'key', 'working', 'ctrl', 'alt', 'delete', 'key', 'working', 'unable', 'login', 'pc', 'dell', 'latitude', 'contact', 'assisted', 'user', 'click', 'easy', 'access', 'option', 'enable', 'type', 'without', 'key', 'bankrd', 'option', 'help', 'cursor', 'click', 'control', 'alt', 'delete', 'go', 'delete', 'button', 'working'] processed_text: ['ctrl', 'alt', 'delete', 'key', 'working', 'ctrl', 'alt', 'delete', 'key', 'working', 'unable', 'login', 'pc', 'dell', 'latitude', 'contact', 'assisted', 'user', 'click', 'easy', 'access', 'option', 'enable', 'type', 'without', 'key', 'bankrd', 'option', 'help', 'cursor', 'click', 'control', 'alt', 'delete', 'go', 'delete', 'button', 'working'] list_processed_text: [['ctrl'], ['alt'], ['delete'], ['key'], ['working'], ['ctrl'], ['alt'], ['delete'], ['key'], ['working'], ['unable'], ['login'], ['pc'], ['dell'], ['latitude'], ['contact'], ['assisted'], ['user'], ['click'], ['easy'], ['access'], ['option'], ['enable'], ['type'], ['without'], ['key'], ['bankrd'], ['option'], ['help'], ['cursor'], ['click'], ['control'], ['alt'], ['delete'], ['go'], ['delete'], ['button'], ['working']] k: 5234 len: <class 'list'> Data: ['serious', 'issue', 'transport', 'sid', 'observed', 'request', 'sid', 'imported', 'warning', 'imported', 'twice', 'please', 'check', 'share', 'detail', 'happening', 'serious', 'issue', 'request', 'trying', 'write', 'change', 'done', 'post', 'transport'] processed_text: ['serious', 'issue', 'transport', 'sid', 'observed', 'request', 'sid', 'imported', 'warning', 'imported', 'twice', 'please', 'check', 'share', 'detail', 'happening', 'serious', 'issue', 'request', 'trying', 'write', 'change', 'done', 'post', 'transport'] list_processed_text: [['serious'], ['issue'], ['transport'], ['sid'], ['observed'], ['request'], ['sid'], ['imported'], ['warning'], ['imported'], ['twice'], ['please'], ['check'], ['share'], ['detail'], ['happening'], ['serious'], ['issue'], ['request'], ['trying'], ['write'], ['change'], ['done'], ['post'], ['transport']] k: 5235 len: <class 'list'> Data: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'venfgugjhytpal', 'last', 'name', 'nythug', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'venfgugjhytpal', 'last', 'name', 'nythug', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['rad'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['venfgugjhytpal'], ['last'], ['name'], ['nythug'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 5236 len: <class 'list'> Data: ['erp', 'sid', 'ki', 'error', 'hello', 'team', 'dn', 'processed', 'erp', 'ki', 'ki', 'record', 'missed', 'sf', 'tracking', 'number', 'could', 'find', 'cause', 'fix'] processed_text: ['erp', 'sid', 'ki', 'error', 'hello', 'team', 'dn', 'processed', 'erp', 'ki', 'ki', 'record', 'missed', 'sf', 'tracking', 'number', 'could', 'find', 'cause', 'fix'] list_processed_text: [['erp'], ['sid'], ['ki'], ['error'], ['hello'], ['team'], ['dn'], ['processed'], ['erp'], ['ki'], ['ki'], ['record'], ['missed'], ['sf'], ['tracking'], ['number'], ['could'], ['find'], ['cause'], ['fix']] k: 5237 len: <class 'list'> Data: ['folder', 'access', 'request', 'hi', 'please', 'help', 'provide', 'access', 'hostname', 'department', 'follows', 'financemssg', 'apac', 'partner', 'ctc', 'person', 'access', 'lxkecjgr', 'fwknxupq', 'fjzywdpg', 'vkdobexr', 'tnorudbf', 'lauftqmd', 'financemssg', 'apac', 'partner', 'rtr', 'person', 'access', 'qcjevayr', 'xirwgjks', 'nil', 'madhaw', 'rai', 'uyocgasl', 'ogabwxzv', 'nfdtriwx', 'lriupqct', 'level', 'access', 'full', 'control'] processed_text: ['folder', 'access', 'request', 'hi', 'please', 'help', 'provide', 'access', 'hostname', 'department', 'follows', 'financemssg', 'apac', 'partner', 'ctc', 'person', 'access', 'lxkecjgr', 'fwknxupq', 'fjzywdpg', 'vkdobexr', 'tnorudbf', 'lauftqmd', 'financemssg', 'apac', 'partner', 'rtr', 'person', 'access', 'qcjevayr', 'xirwgjks', 'nil', 'madhaw', 'rai', 'uyocgasl', 'ogabwxzv', 'nfdtriwx', 'lriupqct', 'level', 'access', 'full', 'control'] list_processed_text: [['folder'], ['access'], ['request'], ['hi'], ['please'], ['help'], ['provide'], ['access'], ['hostname'], ['department'], ['follows'], ['financemssg'], ['apac'], ['partner'], ['ctc'], ['person'], ['access'], ['lxkecjgr'], ['fwknxupq'], ['fjzywdpg'], ['vkdobexr'], ['tnorudbf'], ['lauftqmd'], ['financemssg'], ['apac'], ['partner'], ['rtr'], ['person'], ['access'], ['qcjevayr'], ['xirwgjks'], ['nil'], ['madhaw'], ['rai'], ['uyocgasl'], ['ogabwxzv'], ['nfdtriwx'], ['lriupqct'], ['level'], ['access'], ['full'], ['control']] k: 5238 len: <class 'list'> Data: ['unable', 'login', 'window', 'unable', 'login', 'window'] processed_text: ['unable', 'login', 'window', 'unable', 'login', 'window'] list_processed_text: [['unable'], ['login'], ['window'], ['unable'], ['login'], ['window']] k: 5239 len: <class 'list'> Data: ['system', 'booting', 'system', 'booting'] processed_text: ['system', 'booting', 'system', 'booting'] list_processed_text: [['system'], ['booting'], ['system'], ['booting']] k: 5240 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5241 len: <class 'list'> Data: ['unable', 'receive', 'mail', 'bank', 'amerirtca', 'cash', 'pro', 'online', 'raised', 'request', 'access', 'bank', 'portal', 'cannot', 'receive', 'mail', 'kindly', 'assist'] processed_text: ['unable', 'receive', 'mail', 'bank', 'amerirtca', 'cash', 'pro', 'online', 'raised', 'request', 'access', 'bank', 'portal', 'cannot', 'receive', 'mail', 'kindly', 'assist'] list_processed_text: [['unable'], ['receive'], ['mail'], ['bank'], ['amerirtca'], ['cash'], ['pro'], ['online'], ['raised'], ['request'], ['access'], ['bank'], ['portal'], ['cannot'], ['receive'], ['mail'], ['kindly'], ['assist']] k: 5242 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5243 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] processed_text: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['account'], ['locked'], ['password'], ['reset']] k: 5244 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5245 len: <class 'list'> Data: ['serch', 'engineering', 'tool', 'hello', 'serch', 'engineering', 'tool', 'specify', 'date', 'error', 'bottom', 'window', 'show', 'access', 'please', 'give', 'access'] processed_text: ['serch', 'engineering', 'tool', 'hello', 'serch', 'engineering', 'tool', 'specify', 'date', 'error', 'bottom', 'window', 'show', 'access', 'please', 'give', 'access'] list_processed_text: [['serch'], ['engineering'], ['tool'], ['hello'], ['serch'], ['engineering'], ['tool'], ['specify'], ['date'], ['error'], ['bottom'], ['window'], ['show'], ['access'], ['please'], ['give'], ['access']] k: 5246 len: <class 'list'> Data: ['gtehdnyu', 'belt', 'tracker', 'link', 'gtehdnyu', 'belt', 'tracker', 'person', 'generated', 'site', 'nicrhty', 'pfgyhtu', 'wrote', 'original', 'programdnty', 'set', 'full', 'time', 'oe', 'personnel', 'ever', 'receive', 'recertification', 'notice', 'warning', 'sudden', 'week', 'receiving', 'email', 'attaching', 'one', 'email', 'list', 'oe', 'personnel', 'receive', 'email', 'gtehdnyu', 'belt', 'clswzxoq', 'higqaepr', 'pattghyuy', 'karcgdwswski', 'dkinobsv', 'wymgzcrh', 'ykolismx', 'kbysnuim', 'yhroaeqj', 'djtyroha', 'phksfqxe', 'wkbovsmu', 'dshferby', 'houtnzdi', 'mikhghytr', 'gerusky', 'jafgty', 'verghjuen', 'double', 'checking', 'see', 'list', 'complete', 'people', 'full', 'time', 'oe', 'permanently', 'certified', 'please', 'let', 'know', 'else', 'need'] processed_text: ['gtehdnyu', 'belt', 'tracker', 'link', 'gtehdnyu', 'belt', 'tracker', 'person', 'generated', 'site', 'nicrhty', 'pfgyhtu', 'wrote', 'original', 'programdnty', 'set', 'full', 'time', 'oe', 'personnel', 'ever', 'receive', 'recertification', 'notice', 'warning', 'sudden', 'week', 'receiving', 'email', 'attaching', 'one', 'email', 'list', 'oe', 'personnel', 'receive', 'email', 'gtehdnyu', 'belt', 'clswzxoq', 'higqaepr', 'pattghyuy', 'karcgdwswski', 'dkinobsv', 'wymgzcrh', 'ykolismx', 'kbysnuim', 'yhroaeqj', 'djtyroha', 'phksfqxe', 'wkbovsmu', 'dshferby', 'houtnzdi', 'mikhghytr', 'gerusky', 'jafgty', 'verghjuen', 'double', 'checking', 'see', 'list', 'complete', 'people', 'full', 'time', 'oe', 'permanently', 'certified', 'please', 'let', 'know', 'else', 'need'] list_processed_text: [['gtehdnyu'], ['belt'], ['tracker'], ['link'], ['gtehdnyu'], ['belt'], ['tracker'], ['person'], ['generated'], ['site'], ['nicrhty'], ['pfgyhtu'], ['wrote'], ['original'], ['programdnty'], ['set'], ['full'], ['time'], ['oe'], ['personnel'], ['ever'], ['receive'], ['recertification'], ['notice'], ['warning'], ['sudden'], ['week'], ['receiving'], ['email'], ['attaching'], ['one'], ['email'], ['list'], ['oe'], ['personnel'], ['receive'], ['email'], ['gtehdnyu'], ['belt'], ['clswzxoq'], ['higqaepr'], ['pattghyuy'], ['karcgdwswski'], ['dkinobsv'], ['wymgzcrh'], ['ykolismx'], ['kbysnuim'], ['yhroaeqj'], ['djtyroha'], ['phksfqxe'], ['wkbovsmu'], ['dshferby'], ['houtnzdi'], ['mikhghytr'], ['gerusky'], ['jafgty'], ['verghjuen'], ['double'], ['checking'], ['see'], ['list'], ['complete'], ['people'], ['full'], ['time'], ['oe'], ['permanently'], ['certified'], ['please'], ['let'], ['know'], ['else'], ['need']] k: 5247 len: <class 'list'> Data: ['user', 'need', 'help', 'login', 'company', 'vpn', 'user', 'need', 'help', 'login', 'company', 'vpn'] processed_text: ['user', 'need', 'help', 'login', 'company', 'vpn', 'user', 'need', 'help', 'login', 'company', 'vpn'] list_processed_text: [['user'], ['need'], ['help'], ['login'], ['company'], ['vpn'], ['user'], ['need'], ['help'], ['login'], ['company'], ['vpn']] k: 5248 len: <class 'list'> Data: ['telephony', 'software', 'password', 'expired', 'telephony', 'software', 'password', 'getting', 'expired', 'today', 'please', 'reset', 'password', 'let', 'know', 'login', 'user', 'id', 'mukghyuhea', 'contact'] processed_text: ['telephony', 'software', 'password', 'expired', 'telephony', 'software', 'password', 'getting', 'expired', 'today', 'please', 'reset', 'password', 'let', 'know', 'login', 'user', 'id', 'mukghyuhea', 'contact'] list_processed_text: [['telephony'], ['software'], ['password'], ['expired'], ['telephony'], ['software'], ['password'], ['getting'], ['expired'], ['today'], ['please'], ['reset'], ['password'], ['let'], ['know'], ['login'], ['user'], ['id'], ['mukghyuhea'], ['contact']] k: 5249 len: <class 'list'> Data: ['collaboration', 'platform', 'application', 'uninstalled', 'collaboration', 'platform', 'application', 'uninstalled'] processed_text: ['collaboration', 'platform', 'application', 'uninstalled', 'collaboration', 'platform', 'application', 'uninstalled'] list_processed_text: [['collaboration'], ['platform'], ['application'], ['uninstalled'], ['collaboration'], ['platform'], ['application'], ['uninstalled']] k: 5250 len: <class 'list'> Data: ['speed', 'internet', 'plnvcwuq', 'ikupsjhb', 'switch', 'ip', 'adjustment', 'router', 'speedport', 'wv', 'hello', 'mrs.', 'muejkipler', 'hope', 'right', 'contact', 'person', 'case', 'know', 'help', 'mr', 'plnvcwuq', 'ikupsjhb', 'mr', 'voigt', 'longer', 'available', 'mr', 'gerberghty', 'vacation', 'would', 'assume', 'direct', 'clarification', 'help', 'assessment', 'telekom', 'necessary', 'know', 'up-to-date', 'status', 'company', 'regard', 'ip', 'conversion', "let's", 'wait', 'mr.', 'gerberghty', 'vacation', 'kind', 'regard'] processed_text: ['speed', 'internet', 'plnvcwuq', 'ikupsjhb', 'switch', 'ip', 'adjustment', 'router', 'speedport', 'wv', 'hello', 'mrs.', 'muejkipler', 'hope', 'right', 'contact', 'person', 'case', 'know', 'help', 'mr', 'plnvcwuq', 'ikupsjhb', 'mr', 'voigt', 'longer', 'available', 'mr', 'gerberghty', 'vacation', 'would', 'assume', 'direct', 'clarification', 'help', 'assessment', 'telekom', 'necessary', 'know', 'up-to-date', 'status', 'company', 'regard', 'ip', 'conversion', "let's", 'wait', 'mr.', 'gerberghty', 'vacation', 'kind', 'regard'] list_processed_text: [['speed'], ['internet'], ['plnvcwuq'], ['ikupsjhb'], ['switch'], ['ip'], ['adjustment'], ['router'], ['speedport'], ['wv'], ['hello'], ['mrs.'], ['muejkipler'], ['hope'], ['right'], ['contact'], ['person'], ['case'], ['know'], ['help'], ['mr'], ['plnvcwuq'], ['ikupsjhb'], ['mr'], ['voigt'], ['longer'], ['available'], ['mr'], ['gerberghty'], ['vacation'], ['would'], ['assume'], ['direct'], ['clarification'], ['help'], ['assessment'], ['telekom'], ['necessary'], ['know'], ['up-to-date'], ['status'], ['company'], ['regard'], ['ip'], ['conversion'], ["let's"], ['wait'], ['mr.'], ['gerberghty'], ['vacation'], ['kind'], ['regard']] k: 5251 len: <class 'list'> Data: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] processed_text: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] list_processed_text: [['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor']] k: 5252 len: <class 'list'> Data: ['pl', 'check', 'server', 'hostname', 'working', 'fine', 'nanrfakurtyar', 'pm', 'dba', 'pl', 'check', 'server', 'hostname', 'working', 'fine', 'pl', 'check', 'server', 'hostname', 'working', 'fine', 'also', 'check', 'edmsm'] processed_text: ['pl', 'check', 'server', 'hostname', 'working', 'fine', 'nanrfakurtyar', 'pm', 'dba', 'pl', 'check', 'server', 'hostname', 'working', 'fine', 'pl', 'check', 'server', 'hostname', 'working', 'fine', 'also', 'check', 'edmsm'] list_processed_text: [['pl'], ['check'], ['server'], ['hostname'], ['working'], ['fine'], ['nanrfakurtyar'], ['pm'], ['dba'], ['pl'], ['check'], ['server'], ['hostname'], ['working'], ['fine'], ['pl'], ['check'], ['server'], ['hostname'], ['working'], ['fine'], ['also'], ['check'], ['edmsm']] k: 5253 len: <class 'list'> Data: ['password', 'reset', 'login', 'issue', 'password', 'reset', 'login', 'issue'] processed_text: ['password', 'reset', 'login', 'issue', 'password', 'reset', 'login', 'issue'] list_processed_text: [['password'], ['reset'], ['login'], ['issue'], ['password'], ['reset'], ['login'], ['issue']] k: 5254 len: <class 'list'> Data: ['restore', 'schaem', 'file', 'db', 'mdb', 'hello,', 'would', 'please', 'reset', 'file', 'schaem', 'file', 'db', 'mdb', 'seems', 'longer', 'work', 'thanks', 'cflrqoew', 'qbgjwaye', 'process', 'planning'] processed_text: ['restore', 'schaem', 'file', 'db', 'mdb', 'hello,', 'would', 'please', 'reset', 'file', 'schaem', 'file', 'db', 'mdb', 'seems', 'longer', 'work', 'thanks', 'cflrqoew', 'qbgjwaye', 'process', 'planning'] list_processed_text: [['restore'], ['schaem'], ['file'], ['db'], ['mdb'], ['hello,'], ['would'], ['please'], ['reset'], ['file'], ['schaem'], ['file'], ['db'], ['mdb'], ['seems'], ['longer'], ['work'], ['thanks'], ['cflrqoew'], ['qbgjwaye'], ['process'], ['planning']] k: 5255 len: <class 'list'> Data: ['restore', 'directory', 'schulzgth', 'public', 'hello', 'marfhtyio', 'folder', 'schulzgth', 'drive', 'public', 'hostname', 'lost', 'get', 'back', 'put', 'drive', 'department', 'hostname', 'distribution', 'form', 'thank', 'advance', 'kind'] processed_text: ['restore', 'directory', 'schulzgth', 'public', 'hello', 'marfhtyio', 'folder', 'schulzgth', 'drive', 'public', 'hostname', 'lost', 'get', 'back', 'put', 'drive', 'department', 'hostname', 'distribution', 'form', 'thank', 'advance', 'kind'] list_processed_text: [['restore'], ['directory'], ['schulzgth'], ['public'], ['hello'], ['marfhtyio'], ['folder'], ['schulzgth'], ['drive'], ['public'], ['hostname'], ['lost'], ['get'], ['back'], ['put'], ['drive'], ['department'], ['hostname'], ['distribution'], ['form'], ['thank'], ['advance'], ['kind']] k: 5256 len: <class 'list'> Data: ['eu', 'tool', 'run', 'since', 'information', 'sistem', 'shut', 'eu', 'tool', 'run', 'since', 'information', 'sistem', 'shut'] processed_text: ['eu', 'tool', 'run', 'since', 'information', 'sistem', 'shut', 'eu', 'tool', 'run', 'since', 'information', 'sistem', 'shut'] list_processed_text: [['eu'], ['tool'], ['run'], ['since'], ['information'], ['sistem'], ['shut'], ['eu'], ['tool'], ['run'], ['since'], ['information'], ['sistem'], ['shut']] k: 5257 len: <class 'list'> Data: ['vacation', 'vpn', 'working', 'reset', 'vpn'] processed_text: ['vacation', 'vpn', 'working', 'reset', 'vpn'] list_processed_text: [['vacation'], ['vpn'], ['working'], ['reset'], ['vpn']] k: 5258 len: <class 'list'> Data: ['webpage', 'load', 'hi', 'trouble', 'getting', 'webpage', 'load', 'one', 'insurance', 'site', 'change', 'password', 'try', 'log', 'site', 'say', 'need', 'update', 'password', 'click', 'ok', 'get', 'blank', 'page', 'see', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['webpage', 'load', 'hi', 'trouble', 'getting', 'webpage', 'load', 'one', 'insurance', 'site', 'change', 'password', 'try', 'log', 'site', 'say', 'need', 'update', 'password', 'click', 'ok', 'get', 'blank', 'page', 'see', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['webpage'], ['load'], ['hi'], ['trouble'], ['getting'], ['webpage'], ['load'], ['one'], ['insurance'], ['site'], ['change'], ['password'], ['try'], ['log'], ['site'], ['say'], ['need'], ['update'], ['password'], ['click'], ['ok'], ['get'], ['blank'], ['page'], ['see'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 5259 len: <class 'list'> Data: ['account', 'lock', 'release', 'request', 'kanghytaim', 'account', 'lock', 'release', 'request', 'kanghytaim'] processed_text: ['account', 'lock', 'release', 'request', 'kanghytaim', 'account', 'lock', 'release', 'request', 'kanghytaim'] list_processed_text: [['account'], ['lock'], ['release'], ['request'], ['kanghytaim'], ['account'], ['lock'], ['release'], ['request'], ['kanghytaim']] k: 5260 len: <class 'list'> Data: ['exchanged', 'keyence', 'messger', 'monitor', 'exchanged', 'keyence', 'messger', 'monitor'] processed_text: ['exchanged', 'keyence', 'messger', 'monitor', 'exchanged', 'keyence', 'messger', 'monitor'] list_processed_text: [['exchanged'], ['keyence'], ['messger'], ['monitor'], ['exchanged'], ['keyence'], ['messger'], ['monitor']] k: 5261 len: <class 'list'> Data: ['problem', 'ie', 'dwgliuyt', 'ieqgdpbm', 'problem', 'ie', 'dwgliuyt', 'ieqgdpbm'] processed_text: ['problem', 'ie', 'dwgliuyt', 'ieqgdpbm', 'problem', 'ie', 'dwgliuyt', 'ieqgdpbm'] list_processed_text: [['problem'], ['ie'], ['dwgliuyt'], ['ieqgdpbm'], ['problem'], ['ie'], ['dwgliuyt'], ['ieqgdpbm']] k: 5262 len: <class 'list'> Data: ['probleme', 'mit', 'ewew', 'wrcktgbd', 'wzgyunp', 'probleme', 'mit', 'ewew', 'wrcktgbd', 'wzgyunp'] processed_text: ['probleme', 'mit', 'ewew', 'wrcktgbd', 'wzgyunp', 'probleme', 'mit', 'ewew', 'wrcktgbd', 'wzgyunp'] list_processed_text: [['probleme'], ['mit'], ['ewew'], ['wrcktgbd'], ['wzgyunp'], ['probleme'], ['mit'], ['ewew'], ['wrcktgbd'], ['wzgyunp']] k: 5263 len: <class 'list'> Data: ['opening', 'function', 'work', 'opener', 'function', 'following', 'time', 'attendance', 'card', 'like'] processed_text: ['opening', 'function', 'work', 'opener', 'function', 'following', 'time', 'attendance', 'card', 'like'] list_processed_text: [['opening'], ['function'], ['work'], ['opener'], ['function'], ['following'], ['time'], ['attendance'], ['card'], ['like']] k: 5264 len: <class 'list'> Data: ['business', 'client', 'issue', 'hello', 'net', 'weaver', 'business', 'client', 'work', 'message', 'daily', 'required', 'function', 'please', 'fix', 'soon'] processed_text: ['business', 'client', 'issue', 'hello', 'net', 'weaver', 'business', 'client', 'work', 'message', 'daily', 'required', 'function', 'please', 'fix', 'soon'] list_processed_text: [['business'], ['client'], ['issue'], ['hello'], ['net'], ['weaver'], ['business'], ['client'], ['work'], ['message'], ['daily'], ['required'], ['function'], ['please'], ['fix'], ['soon']] k: 5265 len: <class 'list'> Data: ['balance', 'carry', 'forward', 'ap', 'ar', 'report', 'dear', 'team', 'run', 'report', 'found', 'balance', 'carry', 'forward', 'shown', 'report', 'ap', 'ar', 'report', 'please', 'advise', 'best'] processed_text: ['balance', 'carry', 'forward', 'ap', 'ar', 'report', 'dear', 'team', 'run', 'report', 'found', 'balance', 'carry', 'forward', 'shown', 'report', 'ap', 'ar', 'report', 'please', 'advise', 'best'] list_processed_text: [['balance'], ['carry'], ['forward'], ['ap'], ['ar'], ['report'], ['dear'], ['team'], ['run'], ['report'], ['found'], ['balance'], ['carry'], ['forward'], ['shown'], ['report'], ['ap'], ['ar'], ['report'], ['please'], ['advise'], ['best']] k: 5266 len: <class 'list'> Data: ['finished', 'start', 'sandop', 'process', 'account', 'blocked', 'password', 'issue', 'support', 'could', 'please', 'unlocked', 'account', 'supply', 'chain', 'software', 'best'] processed_text: ['finished', 'start', 'sandop', 'process', 'account', 'blocked', 'password', 'issue', 'support', 'could', 'please', 'unlocked', 'account', 'supply', 'chain', 'software', 'best'] list_processed_text: [['finished'], ['start'], ['sandop'], ['process'], ['account'], ['blocked'], ['password'], ['issue'], ['support'], ['could'], ['please'], ['unlocked'], ['account'], ['supply'], ['chain'], ['software'], ['best']] k: 5267 len: <class 'list'> Data: ['awb', 'printed', 'please', 'look', 'seems', 'output', 'shipping', 'see', 'stopped', 'ec', 'print', 'dhl', 'apac', 'japan', 'country', 'also', 'affected'] processed_text: ['awb', 'printed', 'please', 'look', 'seems', 'output', 'shipping', 'see', 'stopped', 'ec', 'print', 'dhl', 'apac', 'japan', 'country', 'also', 'affected'] list_processed_text: [['awb'], ['printed'], ['please'], ['look'], ['seems'], ['output'], ['shipping'], ['see'], ['stopped'], ['ec'], ['print'], ['dhl'], ['apac'], ['japan'], ['country'], ['also'], ['affected']] k: 5268 len: <class 'list'> Data: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5269 len: <class 'list'> Data: ['tastatur', 'defekt', 'wcupoaty', 'fqnzwphj', 'tastatur', 'defekt', 'wcupoaty', 'fqnzwphj'] processed_text: ['tastatur', 'defekt', 'wcupoaty', 'fqnzwphj', 'tastatur', 'defekt', 'wcupoaty', 'fqnzwphj'] list_processed_text: [['tastatur'], ['defekt'], ['wcupoaty'], ['fqnzwphj'], ['tastatur'], ['defekt'], ['wcupoaty'], ['fqnzwphj']] k: 5270 len: <class 'list'> Data: ['erp', 'locked', 'hello', 'please', 'unlock', 'password', 'erp', 'need', 'change', 'password', 'soon', 'user', 'id', 'songhyody'] processed_text: ['erp', 'locked', 'hello', 'please', 'unlock', 'password', 'erp', 'need', 'change', 'password', 'soon', 'user', 'id', 'songhyody'] list_processed_text: [['erp'], ['locked'], ['hello'], ['please'], ['unlock'], ['password'], ['erp'], ['need'], ['change'], ['password'], ['soon'], ['user'], ['id'], ['songhyody']] k: 5271 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5272 len: <class 'list'> Data: ['abap', 'runtime', 'error', 'transaction', 'zload', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'user', 'plant', 'plant', 'transaction', 'code', 'user', 'need', 'working', 'zload', 'describe', 'issue', 'abap', 'runtime', 'error', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['abap', 'runtime', 'error', 'transaction', 'zload', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'user', 'plant', 'plant', 'transaction', 'code', 'user', 'need', 'working', 'zload', 'describe', 'issue', 'abap', 'runtime', 'error', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['abap'], ['runtime'], ['error'], ['transaction'], ['zload'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['user'], ['plant'], ['plant'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['zload'], ['describe'], ['issue'], ['abap'], ['runtime'], ['error'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 5273 len: <class 'list'> Data: ['reset', 'password', 'qgilmtyc', 'gmscovxa', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qgilmtyc', 'gmscovxa', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qgilmtyc'], ['gmscovxa'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5274 len: <class 'list'> Data: ['archiving', 'tool', 'scanner', 'working', 'archiving', 'tool', 'scanner', 'working', 'please', 'upgrade', 'open', 'text', 'imaging', 'scan', 'opentext', 'imaging', 'enterprise', 'scan'] processed_text: ['archiving', 'tool', 'scanner', 'working', 'archiving', 'tool', 'scanner', 'working', 'please', 'upgrade', 'open', 'text', 'imaging', 'scan', 'opentext', 'imaging', 'enterprise', 'scan'] list_processed_text: [['archiving'], ['tool'], ['scanner'], ['working'], ['archiving'], ['tool'], ['scanner'], ['working'], ['please'], ['upgrade'], ['open'], ['text'], ['imaging'], ['scan'], ['opentext'], ['imaging'], ['enterprise'], ['scan']] k: 5275 len: <class 'list'> Data: ['reset', 'password', 'rlhuwmve', 'krcfhoxj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reseat', 'sid', 'need', 'uacyltoe', 'hxgaycze', 'something'] processed_text: ['reset', 'password', 'rlhuwmve', 'krcfhoxj', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reseat', 'sid', 'need', 'uacyltoe', 'hxgaycze', 'something'] list_processed_text: [['reset'], ['password'], ['rlhuwmve'], ['krcfhoxj'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['please'], ['reseat'], ['sid'], ['need'], ['uacyltoe'], ['hxgaycze'], ['something']] k: 5276 len: <class 'list'> Data: ['computer', 'started', 'computer', 'started'] processed_text: ['computer', 'started', 'computer', 'started'] list_processed_text: [['computer'], ['started'], ['computer'], ['started']] k: 5277 len: <class 'list'> Data: ['defective', 'lwl', 'lead', 'box', 'defective', 'vaigycet', 'jtgmpdcr', 'defective', 'lwl', 'lead', 'box', 'defective', 'vaigycet', 'jtgmpdcr'] processed_text: ['defective', 'lwl', 'lead', 'box', 'defective', 'vaigycet', 'jtgmpdcr', 'defective', 'lwl', 'lead', 'box', 'defective', 'vaigycet', 'jtgmpdcr'] list_processed_text: [['defective'], ['lwl'], ['lead'], ['box'], ['defective'], ['vaigycet'], ['jtgmpdcr'], ['defective'], ['lwl'], ['lead'], ['box'], ['defective'], ['vaigycet'], ['jtgmpdcr']] k: 5278 len: <class 'list'> Data: ['ie', 'ie'] processed_text: ['ie', 'ie'] list_processed_text: [['ie'], ['ie']] k: 5279 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5280 len: <class 'list'> Data: ['guestcompany', 'access', 'wifi', 'good', 'morning', 'coivmhwj', 'opwckbrv', 'would', 'like', 'access', 'guestcompany', 'wifi', 'week', 'need', 'create', 'separate', 'access', 'share', 'login', 'access', 'please', 'advise'] processed_text: ['guestcompany', 'access', 'wifi', 'good', 'morning', 'coivmhwj', 'opwckbrv', 'would', 'like', 'access', 'guestcompany', 'wifi', 'week', 'need', 'create', 'separate', 'access', 'share', 'login', 'access', 'please', 'advise'] list_processed_text: [['guestcompany'], ['access'], ['wifi'], ['good'], ['morning'], ['coivmhwj'], ['opwckbrv'], ['would'], ['like'], ['access'], ['guestcompany'], ['wifi'], ['week'], ['need'], ['create'], ['separate'], ['access'], ['share'], ['login'], ['access'], ['please'], ['advise']] k: 5281 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 5282 len: <class 'list'> Data: ['changing', 'new', 'group', 'several', 'workflow', 'item', 'old', 'group', 'still', 'visible', 'new', 'group', 'workflow', 'phone', 'changed', 'milling', 'team', 'csd', 'holemaking', 'team', 'csd', 'still', 'several', 'workflow', 'item', 'old', 'group', 'visible', 'new', 'group', 'workflow', 'erp', 'substitution', 'ended', 'old', 'team', 'far', 'informed'] processed_text: ['changing', 'new', 'group', 'several', 'workflow', 'item', 'old', 'group', 'still', 'visible', 'new', 'group', 'workflow', 'phone', 'changed', 'milling', 'team', 'csd', 'holemaking', 'team', 'csd', 'still', 'several', 'workflow', 'item', 'old', 'group', 'visible', 'new', 'group', 'workflow', 'erp', 'substitution', 'ended', 'old', 'team', 'far', 'informed'] list_processed_text: [['changing'], ['new'], ['group'], ['several'], ['workflow'], ['item'], ['old'], ['group'], ['still'], ['visible'], ['new'], ['group'], ['workflow'], ['phone'], ['changed'], ['milling'], ['team'], ['csd'], ['holemaking'], ['team'], ['csd'], ['still'], ['several'], ['workflow'], ['item'], ['old'], ['group'], ['visible'], ['new'], ['group'], ['workflow'], ['erp'], ['substitution'], ['ended'], ['old'], ['team'], ['far'], ['informed']] k: 5283 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5284 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5285 len: <class 'list'> Data: ['erp', 'query', 'zload', 'production', 'scheduling', 'generating', 'abap', 'error', 'message', 'got', 'forwarded', 'email', 'regarding', 'erp', 'query', 'zload', 'generating', 'error', 'message', 'see', 'attachment', 'detail', 'sure', 'big', 'impact', 'currently', 'opening', 'sev', 'feel', 'free', 'raise', 'priority', 'case', 'known', 'important', 'query', 'best'] processed_text: ['erp', 'query', 'zload', 'production', 'scheduling', 'generating', 'abap', 'error', 'message', 'got', 'forwarded', 'email', 'regarding', 'erp', 'query', 'zload', 'generating', 'error', 'message', 'see', 'attachment', 'detail', 'sure', 'big', 'impact', 'currently', 'opening', 'sev', 'feel', 'free', 'raise', 'priority', 'case', 'known', 'important', 'query', 'best'] list_processed_text: [['erp'], ['query'], ['zload'], ['production'], ['scheduling'], ['generating'], ['abap'], ['error'], ['message'], ['got'], ['forwarded'], ['email'], ['regarding'], ['erp'], ['query'], ['zload'], ['generating'], ['error'], ['message'], ['see'], ['attachment'], ['detail'], ['sure'], ['big'], ['impact'], ['currently'], ['opening'], ['sev'], ['feel'], ['free'], ['raise'], ['priority'], ['case'], ['known'], ['important'], ['query'], ['best']] k: 5286 len: <class 'list'> Data: ['vip', 'enable', 'save', 'local', 'pc', 'citrix', 'erp', 'gui', 'assign', 'whomever', 'support', 'citrix', 'vendor', 'creating', 'report', 'usa', 'carve', 'unable', 'save', 'report', 'local', 'pc', 'using', 'erp', 'gui', 'solution', 'must', 'provided', 'immediately', 'sooner', 'delay', 'project', 'description', 'form', 'vendor', 'vvgtybyrn', 'running', 'report', 'save', 'need', 'save', 'unconverted', 'text', 'need', 'open', 'excel', 'make', 'formatheywting', 'change', 'save', 'send', 'team', 'lead', 'ran', 'uacyltoe', 'hxgaycze', 'using', 'se', 'programdnty', 'attached', 'transaction', 'cannot', 'save', 'machine', 'try', 'thumb', 'drive', 'also', 'unsuccessful', 'somewhere', 'network', 'save', 'someone', 'send', 'format', 'machine', 'send', 'another', 'idea', 'accomplish', 'would', 'great'] processed_text: ['vip', 'enable', 'save', 'local', 'pc', 'citrix', 'erp', 'gui', 'assign', 'whomever', 'support', 'citrix', 'vendor', 'creating', 'report', 'usa', 'carve', 'unable', 'save', 'report', 'local', 'pc', 'using', 'erp', 'gui', 'solution', 'must', 'provided', 'immediately', 'sooner', 'delay', 'project', 'description', 'form', 'vendor', 'vvgtybyrn', 'running', 'report', 'save', 'need', 'save', 'unconverted', 'text', 'need', 'open', 'excel', 'make', 'formatheywting', 'change', 'save', 'send', 'team', 'lead', 'ran', 'uacyltoe', 'hxgaycze', 'using', 'se', 'programdnty', 'attached', 'transaction', 'cannot', 'save', 'machine', 'try', 'thumb', 'drive', 'also', 'unsuccessful', 'somewhere', 'network', 'save', 'someone', 'send', 'format', 'machine', 'send', 'another', 'idea', 'accomplish', 'would', 'great'] list_processed_text: [['vip'], ['enable'], ['save'], ['local'], ['pc'], ['citrix'], ['erp'], ['gui'], ['assign'], ['whomever'], ['support'], ['citrix'], ['vendor'], ['creating'], ['report'], ['usa'], ['carve'], ['unable'], ['save'], ['report'], ['local'], ['pc'], ['using'], ['erp'], ['gui'], ['solution'], ['must'], ['provided'], ['immediately'], ['sooner'], ['delay'], ['project'], ['description'], ['form'], ['vendor'], ['vvgtybyrn'], ['running'], ['report'], ['save'], ['need'], ['save'], ['unconverted'], ['text'], ['need'], ['open'], ['excel'], ['make'], ['formatheywting'], ['change'], ['save'], ['send'], ['team'], ['lead'], ['ran'], ['uacyltoe'], ['hxgaycze'], ['using'], ['se'], ['programdnty'], ['attached'], ['transaction'], ['cannot'], ['save'], ['machine'], ['try'], ['thumb'], ['drive'], ['also'], ['unsuccessful'], ['somewhere'], ['network'], ['save'], ['someone'], ['send'], ['format'], ['machine'], ['send'], ['another'], ['idea'], ['accomplish'], ['would'], ['great']] k: 5287 len: <class 'list'> Data: ['account', 'locked', 'hello', 'team', 'abdhtyu', 'account', 'locked', 'could', 'please', 'check'] processed_text: ['account', 'locked', 'hello', 'team', 'abdhtyu', 'account', 'locked', 'could', 'please', 'check'] list_processed_text: [['account'], ['locked'], ['hello'], ['team'], ['abdhtyu'], ['account'], ['locked'], ['could'], ['please'], ['check']] k: 5288 len: <class 'list'> Data: ['power', 'outage', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'circuit', 'went', 'et', 'global', 'telecom', 'ticket', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'circuit', 'went', 'et', 'server', 'also', 'went', 'see', 'comcast', 'circuit', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'interface', 'gigabitet', 'hernet', 'connection', 'nexusk', 'state', 'since', 'pm', 'et'] processed_text: ['power', 'outage', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'circuit', 'went', 'et', 'global', 'telecom', 'ticket', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'circuit', 'went', 'et', 'server', 'also', 'went', 'see', 'comcast', 'circuit', 'usa', 'tn', 'tm', 'usa', 'att', 'rtr', 'interface', 'gigabitet', 'hernet', 'connection', 'nexusk', 'state', 'since', 'pm', 'et'] list_processed_text: [['power'], ['outage'], ['usa'], ['tn'], ['tm'], ['usa'], ['att'], ['rtr'], ['circuit'], ['went'], ['et'], ['global'], ['telecom'], ['ticket'], ['usa'], ['tn'], ['tm'], ['usa'], ['att'], ['rtr'], ['circuit'], ['went'], ['et'], ['server'], ['also'], ['went'], ['see'], ['comcast'], ['circuit'], ['usa'], ['tn'], ['tm'], ['usa'], ['att'], ['rtr'], ['interface'], ['gigabitet'], ['hernet'], ['connection'], ['nexusk'], ['state'], ['since'], ['pm'], ['et']] k: 5289 len: <class 'list'> Data: ['access', 'network', 'folder', 'please', 'provide', 'read', 'write', 'access', 'mr', 'frseoupk', 'feluybrn', 'karghytuthik', 'following', 'network', 'folder', 'hostname', 'grinding'] processed_text: ['access', 'network', 'folder', 'please', 'provide', 'read', 'write', 'access', 'mr', 'frseoupk', 'feluybrn', 'karghytuthik', 'following', 'network', 'folder', 'hostname', 'grinding'] list_processed_text: [['access'], ['network'], ['folder'], ['please'], ['provide'], ['read'], ['write'], ['access'], ['mr'], ['frseoupk'], ['feluybrn'], ['karghytuthik'], ['following'], ['network'], ['folder'], ['hostname'], ['grinding']] k: 5290 len: <class 'list'> Data: ['able', 'log', 'remote', 'location', 'weapon', 'urgent', 'please', 'call'] processed_text: ['able', 'log', 'remote', 'location', 'weapon', 'urgent', 'please', 'call'] list_processed_text: [['able'], ['log'], ['remote'], ['location'], ['weapon'], ['urgent'], ['please'], ['call']] k: 5291 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5292 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5293 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5294 len: <class 'list'> Data: ['vpn', 'apvpn', 'vpn', 'unable', 'connection', 'vpn', 'apvpn', 'vpn', 'unable', 'connection'] processed_text: ['vpn', 'apvpn', 'vpn', 'unable', 'connection', 'vpn', 'apvpn', 'vpn', 'unable', 'connection'] list_processed_text: [['vpn'], ['apvpn'], ['vpn'], ['unable'], ['connection'], ['vpn'], ['apvpn'], ['vpn'], ['unable'], ['connection']] k: 5295 len: <class 'list'> Data: ['unable', 'generate', 'po', 'per', 'pr', 'found', 'pop', 'error', 'generating', 'sto', 'per', 'pr', 'attached', 'please', 'help', 'fixing', 'issue', 'aerp'] processed_text: ['unable', 'generate', 'po', 'per', 'pr', 'found', 'pop', 'error', 'generating', 'sto', 'per', 'pr', 'attached', 'please', 'help', 'fixing', 'issue', 'aerp'] list_processed_text: [['unable'], ['generate'], ['po'], ['per'], ['pr'], ['found'], ['pop'], ['error'], ['generating'], ['sto'], ['per'], ['pr'], ['attached'], ['please'], ['help'], ['fixing'], ['issue'], ['aerp']] k: 5296 len: <class 'list'> Data: ['please', 'unlock', 'erp', 'hello', 'please', 'unlock', 'erp', 'user', 'id', 'songhyody'] processed_text: ['please', 'unlock', 'erp', 'hello', 'please', 'unlock', 'erp', 'user', 'id', 'songhyody'] list_processed_text: [['please'], ['unlock'], ['erp'], ['hello'], ['please'], ['unlock'], ['erp'], ['user'], ['id'], ['songhyody']] k: 5297 len: <class 'list'> Data: ['mm', 'kr', 'hello', 'could', 'please', 'organise', 'mwst', 'tax', 'abovementioned', 'rqfhiong', 'zkwfqagb', 'number', 'kind'] processed_text: ['mm', 'kr', 'hello', 'could', 'please', 'organise', 'mwst', 'tax', 'abovementioned', 'rqfhiong', 'zkwfqagb', 'number', 'kind'] list_processed_text: [['mm'], ['kr'], ['hello'], ['could'], ['please'], ['organise'], ['mwst'], ['tax'], ['abovementioned'], ['rqfhiong'], ['zkwfqagb'], ['number'], ['kind']] k: 5298 len: <class 'list'> Data: ['forgot', 'erp', 'password', 'dear', 'forgot', 'erp', 'password', 'could', 'help', 'reset'] processed_text: ['forgot', 'erp', 'password', 'dear', 'forgot', 'erp', 'password', 'could', 'help', 'reset'] list_processed_text: [['forgot'], ['erp'], ['password'], ['dear'], ['forgot'], ['erp'], ['password'], ['could'], ['help'], ['reset']] k: 5299 len: <class 'list'> Data: ['terminate', 'action', 'nyzxjwud', 'jvtsgmin', 'completed', 'original', 'message', 'jobxpkrg', 'klonypzr', 'mail', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'nyzxjwud', 'jvtsgmin', 'completed', 'hello', 'termination', 'nyzxjwud', 'jvtsgmin', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['terminate', 'action', 'nyzxjwud', 'jvtsgmin', 'completed', 'original', 'message', 'jobxpkrg', 'klonypzr', 'mail', 'nwfodmhc', 'exurcwkm', 'terminate', 'action', 'nyzxjwud', 'jvtsgmin', 'completed', 'hello', 'termination', 'nyzxjwud', 'jvtsgmin', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['terminate'], ['action'], ['nyzxjwud'], ['jvtsgmin'], ['completed'], ['original'], ['message'], ['jobxpkrg'], ['klonypzr'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['terminate'], ['action'], ['nyzxjwud'], ['jvtsgmin'], ['completed'], ['hello'], ['termination'], ['nyzxjwud'], ['jvtsgmin'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 5300 len: <class 'list'> Data: ['network', 'outage', 'usa', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5301 len: <class 'list'> Data: ['zcor', 'report', 'issue', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'apac', 'apac', 'user', 'id', 'ad', 'lia', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'zcor', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'fin', 'issue', 'replicated', 'support', 'group', 'zcor', 'report', 'used', 'get', 'shipment', 'data', 'variant', 'tj', 'data', 'incorrect', 'report', 'would', 'please', 'help', 'check', 'issue', 'find', 'problem', 'shipment', 'detail', 'download', 'attached', 'report', 'running', 'daily', 'tracking', 'shipment', 'need', 'information', 'contact', 'user', 'seeing', 'user', 'tj', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] processed_text: ['zcor', 'report', 'issue', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'apac', 'apac', 'user', 'id', 'ad', 'lia', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'erp', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'zcor', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'fin', 'issue', 'replicated', 'support', 'group', 'zcor', 'report', 'used', 'get', 'shipment', 'data', 'variant', 'tj', 'data', 'incorrect', 'report', 'would', 'please', 'help', 'check', 'issue', 'find', 'problem', 'shipment', 'detail', 'download', 'attached', 'report', 'running', 'daily', 'tracking', 'shipment', 'need', 'information', 'contact', 'user', 'seeing', 'user', 'tj', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred'] list_processed_text: [['zcor'], ['report'], ['issue'], ['please'], ['provide'], ['detail'], ['template'], ['multiple'], ['application'], ['impacted'], ['please'], ['use'], ['quick'], ['ticket'], ['template'], ['operation'], ['folder'], ['site'], ['location'], ['apac'], ['apac'], ['user'], ['id'], ['ad'], ['lia'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['erp'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['zcor'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['fin'], ['issue'], ['replicated'], ['support'], ['group'], ['zcor'], ['report'], ['used'], ['get'], ['shipment'], ['data'], ['variant'], ['tj'], ['data'], ['incorrect'], ['report'], ['would'], ['please'], ['help'], ['check'], ['issue'], ['find'], ['problem'], ['shipment'], ['detail'], ['download'], ['attached'], ['report'], ['running'], ['daily'], ['tracking'], ['shipment'], ['need'], ['information'], ['contact'], ['user'], ['seeing'], ['user'], ['tj'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred']] k: 5302 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 5303 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 5304 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5305 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 5306 len: <class 'list'> Data: ['window', 'password', 'hello', 'want', 'change', 'password', 'make', 'mistake', 'please', 'reject', 'old', 'one'] processed_text: ['window', 'password', 'hello', 'want', 'change', 'password', 'make', 'mistake', 'please', 'reject', 'old', 'one'] list_processed_text: [['window'], ['password'], ['hello'], ['want'], ['change'], ['password'], ['make'], ['mistake'], ['please'], ['reject'], ['old'], ['one']] k: 5307 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 5308 len: <class 'list'> Data: ['firmware', 'upgrade', 'phone', 'davgtgyrh', 'called', 'issue', 'supposed', 'firmware', 'upgrade', 'phone', 'davgtgyrh', 'mentioned', 'phone', 'still', 'rebooting', 'loop'] processed_text: ['firmware', 'upgrade', 'phone', 'davgtgyrh', 'called', 'issue', 'supposed', 'firmware', 'upgrade', 'phone', 'davgtgyrh', 'mentioned', 'phone', 'still', 'rebooting', 'loop'] list_processed_text: [['firmware'], ['upgrade'], ['phone'], ['davgtgyrh'], ['called'], ['issue'], ['supposed'], ['firmware'], ['upgrade'], ['phone'], ['davgtgyrh'], ['mentioned'], ['phone'], ['still'], ['rebooting'], ['loop']] k: 5309 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5310 len: <class 'list'> Data: ['emailing', 'htm', 'hello', 'day', 'getting', 'lot', 'region', 'report', 'india', 'dump', 'please', 'solve', 'every', 'month', 'get', 'close', 'engineering', 'tool', 'system'] processed_text: ['emailing', 'htm', 'hello', 'day', 'getting', 'lot', 'region', 'report', 'india', 'dump', 'please', 'solve', 'every', 'month', 'get', 'close', 'engineering', 'tool', 'system'] list_processed_text: [['emailing'], ['htm'], ['hello'], ['day'], ['getting'], ['lot'], ['region'], ['report'], ['india'], ['dump'], ['please'], ['solve'], ['every'], ['month'], ['get'], ['close'], ['engineering'], ['tool'], ['system']] k: 5311 len: <class 'list'> Data: ['network', 'outage', 'bellusco', 'divestiture', 'site', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'bellusco', 'divestiture', 'site', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['bellusco'], ['divestiture'], ['site'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5312 len: <class 'list'> Data: ['laptop', 'booting', 'vigrtgyne', 'logging', 'laptop', 'laptop', 'automatically', 'shutting', 'tried', 'power', 'shutdown', 'also', 'kept', 'pc', 'hour', 'still', 'moment', 'logging', 'pc', 'shutting', 'user', 'id', 'ravhdyui', 'pc', 'name', 'aidl', 'service', 'tag', 'dbdhz', 'model', 'latitude', 'non', 'vpro'] processed_text: ['laptop', 'booting', 'vigrtgyne', 'logging', 'laptop', 'laptop', 'automatically', 'shutting', 'tried', 'power', 'shutdown', 'also', 'kept', 'pc', 'hour', 'still', 'moment', 'logging', 'pc', 'shutting', 'user', 'id', 'ravhdyui', 'pc', 'name', 'aidl', 'service', 'tag', 'dbdhz', 'model', 'latitude', 'non', 'vpro'] list_processed_text: [['laptop'], ['booting'], ['vigrtgyne'], ['logging'], ['laptop'], ['laptop'], ['automatically'], ['shutting'], ['tried'], ['power'], ['shutdown'], ['also'], ['kept'], ['pc'], ['hour'], ['still'], ['moment'], ['logging'], ['pc'], ['shutting'], ['user'], ['id'], ['ravhdyui'], ['pc'], ['name'], ['aidl'], ['service'], ['tag'], ['dbdhz'], ['model'], ['latitude'], ['non'], ['vpro']] k: 5313 len: <class 'list'> Data: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler', 'job', 'co', 'val', 'update', 'crosscomp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler'], ['job'], ['co'], ['val'], ['update'], ['crosscomp'], ['failed'], ['job'], ['scheduler']] k: 5314 len: <class 'list'> Data: ['network', 'outage', 'turkey', 'turkey', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'turkey', 'turkey', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['turkey'], ['turkey'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5315 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5316 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5317 len: <class 'list'> Data: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler']] k: 5318 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5319 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5320 len: <class 'list'> Data: ['bridgex', 'lacw', 'step', 'login', 'failed', 'resource', 'found', 'bridgex', 'lacw', 'step', 'login', 'failed', 'resource', 'found'] processed_text: ['bridgex', 'lacw', 'step', 'login', 'failed', 'resource', 'found', 'bridgex', 'lacw', 'step', 'login', 'failed', 'resource', 'found'] list_processed_text: [['bridgex'], ['lacw'], ['step'], ['login'], ['failed'], ['resource'], ['found'], ['bridgex'], ['lacw'], ['step'], ['login'], ['failed'], ['resource'], ['found']] k: 5321 len: <class 'list'> Data: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hot', 'failed', 'job', 'scheduler', 'job', 'sid', 'hot', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hot'], ['failed'], ['job'], ['scheduler']] k: 5322 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5323 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5324 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5325 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5326 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5327 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5328 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5329 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5330 len: <class 'list'> Data: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'cold', 'failed', 'job', 'scheduler', 'job', 'sid', 'cold', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['cold'], ['failed'], ['job'], ['scheduler']] k: 5331 len: <class 'list'> Data: ['node', 'hostname', 'located', 'germany', 'since', 'pm', 'et', 'node', 'hostname', 'located', 'germany', 'since', 'pm', 'et'] processed_text: ['node', 'hostname', 'located', 'germany', 'since', 'pm', 'et', 'node', 'hostname', 'located', 'germany', 'since', 'pm', 'et'] list_processed_text: [['node'], ['hostname'], ['located'], ['germany'], ['since'], ['pm'], ['et'], ['node'], ['hostname'], ['located'], ['germany'], ['since'], ['pm'], ['et']] k: 5332 len: <class 'list'> Data: ['node', 'hostname', 'located', 'israel', 'since', 'pm', 'et', 'node', 'hostname', 'located', 'emea', 'since', 'pm', 'et'] processed_text: ['node', 'hostname', 'located', 'israel', 'since', 'pm', 'et', 'node', 'hostname', 'located', 'emea', 'since', 'pm', 'et'] list_processed_text: [['node'], ['hostname'], ['located'], ['israel'], ['since'], ['pm'], ['et'], ['node'], ['hostname'], ['located'], ['emea'], ['since'], ['pm'], ['et']] k: 5333 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5334 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5335 len: <class 'list'> Data: ['delete', 'personal', 'address', 'system', 'qpixeudn', 'rjlziysd', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'jayachandran', 'reddy', 'ee', 'personal', 'address', 'system', 'hello', 'bill', 'morning', 'battling', 'hurricane', 'va', 'beach', 'looked', 'back', 'mailsi', 'received', 'mail', 'account', 'see', 'one', 'callie', 'hrssc', 'copy', 'list', 'candice', 'copy', 'list', 'lynda', 'hr', 'shared', 'service', 'copy', 'list', 'hope', 'help', 'bb', 'bigtyl', 'bachsmhdyhti', 'eastern', 'zone', 'manager', 'company', 'pm', 'nwfodmhc', 'exurcwkm', 'wrote', 'hi', 'candice', 'happen', 'send', 'email', 'specific', 'group', 'group', 'bill', 'part', 'single', 'group', 'know', 'group', 'name'] processed_text: ['delete', 'personal', 'address', 'system', 'qpixeudn', 'rjlziysd', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'jayachandran', 'reddy', 'ee', 'personal', 'address', 'system', 'hello', 'bill', 'morning', 'battling', 'hurricane', 'va', 'beach', 'looked', 'back', 'mailsi', 'received', 'mail', 'account', 'see', 'one', 'callie', 'hrssc', 'copy', 'list', 'candice', 'copy', 'list', 'lynda', 'hr', 'shared', 'service', 'copy', 'list', 'hope', 'help', 'bb', 'bigtyl', 'bachsmhdyhti', 'eastern', 'zone', 'manager', 'company', 'pm', 'nwfodmhc', 'exurcwkm', 'wrote', 'hi', 'candice', 'happen', 'send', 'email', 'specific', 'group', 'group', 'bill', 'part', 'single', 'group', 'know', 'group', 'name'] list_processed_text: [['delete'], ['personal'], ['address'], ['system'], ['qpixeudn'], ['rjlziysd'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['ifblxjmc'], ['dyrgfwbm'], ['jayachandran'], ['reddy'], ['ee'], ['personal'], ['address'], ['system'], ['hello'], ['bill'], ['morning'], ['battling'], ['hurricane'], ['va'], ['beach'], ['looked'], ['back'], ['mailsi'], ['received'], ['mail'], ['account'], ['see'], ['one'], ['callie'], ['hrssc'], ['copy'], ['list'], ['candice'], ['copy'], ['list'], ['lynda'], ['hr'], ['shared'], ['service'], ['copy'], ['list'], ['hope'], ['help'], ['bb'], ['bigtyl'], ['bachsmhdyhti'], ['eastern'], ['zone'], ['manager'], ['company'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['wrote'], ['hi'], ['candice'], ['happen'], ['send'], ['email'], ['specific'], ['group'], ['group'], ['bill'], ['part'], ['single'], ['group'], ['know'], ['group'], ['name']] k: 5336 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5337 len: <class 'list'> Data: ['sound', 'sound'] processed_text: ['sound', 'sound'] list_processed_text: [['sound'], ['sound']] k: 5338 len: <class 'list'> Data: ['unable', 'create', 'erp', 'notification', 'kuhgtyjvelu', 'manager', 'reliability', 'engineering'] processed_text: ['unable', 'create', 'erp', 'notification', 'kuhgtyjvelu', 'manager', 'reliability', 'engineering'] list_processed_text: [['unable'], ['create'], ['erp'], ['notification'], ['kuhgtyjvelu'], ['manager'], ['reliability'], ['engineering']] k: 5339 len: <class 'list'> Data: ['inwarehouse', 'tool', 'format', 'issue', 'output', 'mail', 'hello', 'using', 'c', 'zz', 'mail', 'getting', 'inwarehouse', 'tool', 'different', 'format', 'please', 'refer', 'enclosed', 'mail', 'inwarehouse', 'tool', 'okay', 'inwarehouse', 'tool', 'okay', 'please', 'help', 'u', 'getting', 'inwarehouse', 'tool', 'per', 'format', 'appearing', 'inwarehouse', 'tool'] processed_text: ['inwarehouse', 'tool', 'format', 'issue', 'output', 'mail', 'hello', 'using', 'c', 'zz', 'mail', 'getting', 'inwarehouse', 'tool', 'different', 'format', 'please', 'refer', 'enclosed', 'mail', 'inwarehouse', 'tool', 'okay', 'inwarehouse', 'tool', 'okay', 'please', 'help', 'u', 'getting', 'inwarehouse', 'tool', 'per', 'format', 'appearing', 'inwarehouse', 'tool'] list_processed_text: [['inwarehouse'], ['tool'], ['format'], ['issue'], ['output'], ['mail'], ['hello'], ['using'], ['c'], ['zz'], ['mail'], ['getting'], ['inwarehouse'], ['tool'], ['different'], ['format'], ['please'], ['refer'], ['enclosed'], ['mail'], ['inwarehouse'], ['tool'], ['okay'], ['inwarehouse'], ['tool'], ['okay'], ['please'], ['help'], ['u'], ['getting'], ['inwarehouse'], ['tool'], ['per'], ['format'], ['appearing'], ['inwarehouse'], ['tool']] k: 5340 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5341 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5342 len: <class 'list'> Data: ['logon', 'erp', 'home', 'please', 'help', 'solve', 'issue'] processed_text: ['logon', 'erp', 'home', 'please', 'help', 'solve', 'issue'] list_processed_text: [['logon'], ['erp'], ['home'], ['please'], ['help'], ['solve'], ['issue']] k: 5343 len: <class 'list'> Data: ['network', 'outage', 'milton', 'keynes', 'uk', 'divestiture', 'site', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'milton', 'keynes', 'uk', 'divestiture', 'site', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['milton'], ['keynes'], ['uk'], ['divestiture'], ['site'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5344 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 5345 len: <class 'list'> Data: ['new', 'order', 'jmfvwrek', 'pqwehmzgagannathan', 'nwfodmhc', 'exurcwkm', 'notification', 'fw', 'new', 'order', 'hello', 'forwarding', 'trailing', 'mail', 'received', 'kindly', 'needful'] processed_text: ['new', 'order', 'jmfvwrek', 'pqwehmzgagannathan', 'nwfodmhc', 'exurcwkm', 'notification', 'fw', 'new', 'order', 'hello', 'forwarding', 'trailing', 'mail', 'received', 'kindly', 'needful'] list_processed_text: [['new'], ['order'], ['jmfvwrek'], ['pqwehmzgagannathan'], ['nwfodmhc'], ['exurcwkm'], ['notification'], ['fw'], ['new'], ['order'], ['hello'], ['forwarding'], ['trailing'], ['mail'], ['received'], ['kindly'], ['needful']] k: 5346 len: <class 'list'> Data: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] processed_text: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] list_processed_text: [['ad'], ['account'], ['locked'], ['ad'], ['account'], ['locked']] k: 5347 len: <class 'list'> Data: ['unable', 'connect', 'web', 'unable', 'connect', 'web', 'check', 'download', 'file'] processed_text: ['unable', 'connect', 'web', 'unable', 'connect', 'web', 'check', 'download', 'file'] list_processed_text: [['unable'], ['connect'], ['web'], ['unable'], ['connect'], ['web'], ['check'], ['download'], ['file']] k: 5348 len: <class 'list'> Data: ['email', 'available', 'outlook', 'available', 'owa', 'team', 'unable', 'view', 'email', 'outlook', 'see', 'owa', 'difficult', 'analyze', 'old', 'email', 'owa', 'compared', 'outlook', 'could', 'please', 'help', 'refreshing', 'email', 'outlook', 'outlook', 'version', 'best'] processed_text: ['email', 'available', 'outlook', 'available', 'owa', 'team', 'unable', 'view', 'email', 'outlook', 'see', 'owa', 'difficult', 'analyze', 'old', 'email', 'owa', 'compared', 'outlook', 'could', 'please', 'help', 'refreshing', 'email', 'outlook', 'outlook', 'version', 'best'] list_processed_text: [['email'], ['available'], ['outlook'], ['available'], ['owa'], ['team'], ['unable'], ['view'], ['email'], ['outlook'], ['see'], ['owa'], ['difficult'], ['analyze'], ['old'], ['email'], ['owa'], ['compared'], ['outlook'], ['could'], ['please'], ['help'], ['refreshing'], ['email'], ['outlook'], ['outlook'], ['version'], ['best']] k: 5349 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5350 len: <class 'list'> Data: ['desktop', 'icon', 'size', 'issue', 'name', 'jvpkulxw', 'ovuweygj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'desktop', 'icon', 'size', 'issue'] processed_text: ['desktop', 'icon', 'size', 'issue', 'name', 'jvpkulxw', 'ovuweygj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'desktop', 'icon', 'size', 'issue'] list_processed_text: [['desktop'], ['icon'], ['size'], ['issue'], ['name'], ['jvpkulxw'], ['ovuweygj'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['desktop'], ['icon'], ['size'], ['issue']] k: 5351 len: <class 'list'> Data: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hoti', 'failed', 'job', 'scheduler', 'job', 'sid', 'hoti', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hoti'], ['failed'], ['job'], ['scheduler']] k: 5352 len: <class 'list'> Data: ['mouse', 'started', 'jumping', 'screen', 'problem', 'earlier', 'resolved', 'replacement', 'hardware', 'however', 'experiencing', 'problem', 'pl', 'support'] processed_text: ['mouse', 'started', 'jumping', 'screen', 'problem', 'earlier', 'resolved', 'replacement', 'hardware', 'however', 'experiencing', 'problem', 'pl', 'support'] list_processed_text: [['mouse'], ['started'], ['jumping'], ['screen'], ['problem'], ['earlier'], ['resolved'], ['replacement'], ['hardware'], ['however'], ['experiencing'], ['problem'], ['pl'], ['support']] k: 5353 len: <class 'list'> Data: ['vpn', 'vpn', 'access', 'reason', 'logon', 'information', 'work', 'vpn', 'vpn', 'access', 'tonight', 'could', 'please', 'investigate', 'following', 'link', 'follow'] processed_text: ['vpn', 'vpn', 'access', 'reason', 'logon', 'information', 'work', 'vpn', 'vpn', 'access', 'tonight', 'could', 'please', 'investigate', 'following', 'link', 'follow'] list_processed_text: [['vpn'], ['vpn'], ['access'], ['reason'], ['logon'], ['information'], ['work'], ['vpn'], ['vpn'], ['access'], ['tonight'], ['could'], ['please'], ['investigate'], ['following'], ['link'], ['follow']] k: 5354 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5355 len: <class 'list'> Data: ['mm', 'inwarehouse', 'tool', 'consignment', 'mb', 'acct', 'total', 'piezas', 'mm', 'inwarehouse', 'tool', 'consignment', 'mb', 'acct', 'total', 'piezas'] processed_text: ['mm', 'inwarehouse', 'tool', 'consignment', 'mb', 'acct', 'total', 'piezas', 'mm', 'inwarehouse', 'tool', 'consignment', 'mb', 'acct', 'total', 'piezas'] list_processed_text: [['mm'], ['inwarehouse'], ['tool'], ['consignment'], ['mb'], ['acct'], ['total'], ['piezas'], ['mm'], ['inwarehouse'], ['tool'], ['consignment'], ['mb'], ['acct'], ['total'], ['piezas']] k: 5356 len: <class 'list'> Data: ['erp', 'report', 'zcor', 'variant', 'rod', 'stock', 'working', 'employee', 'usa', 'plant', 'report', 'work'] processed_text: ['erp', 'report', 'zcor', 'variant', 'rod', 'stock', 'working', 'employee', 'usa', 'plant', 'report', 'work'] list_processed_text: [['erp'], ['report'], ['zcor'], ['variant'], ['rod'], ['stock'], ['working'], ['employee'], ['usa'], ['plant'], ['report'], ['work']] k: 5357 len: <class 'list'> Data: ['unable', 'edit', 'quantity', 'oppurtunities', 'crm', 'unable', 'edit', 'quantity', 'oppurtunities', 'crm', 'refer', 'attachment', 'phone'] processed_text: ['unable', 'edit', 'quantity', 'oppurtunities', 'crm', 'unable', 'edit', 'quantity', 'oppurtunities', 'crm', 'refer', 'attachment', 'phone'] list_processed_text: [['unable'], ['edit'], ['quantity'], ['oppurtunities'], ['crm'], ['unable'], ['edit'], ['quantity'], ['oppurtunities'], ['crm'], ['refer'], ['attachment'], ['phone']] k: 5358 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 5359 len: <class 'list'> Data: ['need', 'email', 'address', 'login', 'outlook', 'need', 'email', 'address', 'login', 'outlook'] processed_text: ['need', 'email', 'address', 'login', 'outlook', 'need', 'email', 'address', 'login', 'outlook'] list_processed_text: [['need'], ['email'], ['address'], ['login'], ['outlook'], ['need'], ['email'], ['address'], ['login'], ['outlook']] k: 5360 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 5361 len: <class 'list'> Data: ['hana', 'earlier', 'started', 'chat', 'rakthyesh', 'pulling', 'report', 'though', 'hana', 'selecting', 'analysis', 'tab', 'refreshing', 'thing', 'going', 'display', 'needed', 'filter', 'template', 'add', 'plant', 'would', 'select', 'display', 'box', 'empty', 'see', 'attached', 'something', 'asked', 'close', 'reopen', 'reopened', 'analysis', 'tab', 'gone', 'able', 'refresh', 'go', 'display', 'see', 'filter', 'fixed', 'fixed', 'analysis', 'tab', 'still', 'chat', 'tried', 'select', 'display', 'white', 'box', 'seeing', 'longer', 'showing', 'would', 'hit', 'display', 'could', 'see', 'spreadsheet', 'box', 'said', 'would', 'ticket', 'copied', 'ticket', 'buy', 'need', 'run', 'report', 'sending', 'email', 'went', 'back', 'hana', 'see', 'chance', 'report', 'problem', 'fixed', 'analysis', 'tab', 'gone', 'please', 'correct', 'nealxjbc', 'owjduxai', 'customer', 'service', 'supervisor', 'cec', 'infrastructure'] processed_text: ['hana', 'earlier', 'started', 'chat', 'rakthyesh', 'pulling', 'report', 'though', 'hana', 'selecting', 'analysis', 'tab', 'refreshing', 'thing', 'going', 'display', 'needed', 'filter', 'template', 'add', 'plant', 'would', 'select', 'display', 'box', 'empty', 'see', 'attached', 'something', 'asked', 'close', 'reopen', 'reopened', 'analysis', 'tab', 'gone', 'able', 'refresh', 'go', 'display', 'see', 'filter', 'fixed', 'fixed', 'analysis', 'tab', 'still', 'chat', 'tried', 'select', 'display', 'white', 'box', 'seeing', 'longer', 'showing', 'would', 'hit', 'display', 'could', 'see', 'spreadsheet', 'box', 'said', 'would', 'ticket', 'copied', 'ticket', 'buy', 'need', 'run', 'report', 'sending', 'email', 'went', 'back', 'hana', 'see', 'chance', 'report', 'problem', 'fixed', 'analysis', 'tab', 'gone', 'please', 'correct', 'nealxjbc', 'owjduxai', 'customer', 'service', 'supervisor', 'cec', 'infrastructure'] list_processed_text: [['hana'], ['earlier'], ['started'], ['chat'], ['rakthyesh'], ['pulling'], ['report'], ['though'], ['hana'], ['selecting'], ['analysis'], ['tab'], ['refreshing'], ['thing'], ['going'], ['display'], ['needed'], ['filter'], ['template'], ['add'], ['plant'], ['would'], ['select'], ['display'], ['box'], ['empty'], ['see'], ['attached'], ['something'], ['asked'], ['close'], ['reopen'], ['reopened'], ['analysis'], ['tab'], ['gone'], ['able'], ['refresh'], ['go'], ['display'], ['see'], ['filter'], ['fixed'], ['fixed'], ['analysis'], ['tab'], ['still'], ['chat'], ['tried'], ['select'], ['display'], ['white'], ['box'], ['seeing'], ['longer'], ['showing'], ['would'], ['hit'], ['display'], ['could'], ['see'], ['spreadsheet'], ['box'], ['said'], ['would'], ['ticket'], ['copied'], ['ticket'], ['buy'], ['need'], ['run'], ['report'], ['sending'], ['email'], ['went'], ['back'], ['hana'], ['see'], ['chance'], ['report'], ['problem'], ['fixed'], ['analysis'], ['tab'], ['gone'], ['please'], ['correct'], ['nealxjbc'], ['owjduxai'], ['customer'], ['service'], ['supervisor'], ['cec'], ['infrastructure']] k: 5362 len: <class 'list'> Data: ['change', 'account', 'full', 'time', 'employee', 'contractor', 'hello', 'effective', 'please', 'change', 'merthayu', 'behsnjty', 'account', 'employee', 'vendor', 'donot', 'deactivate', 'access', 'based', 'conversation', 'khrtyujuine', 'snhdfihytu', 'suhtnhdyio', 'opening', 'ticket'] processed_text: ['change', 'account', 'full', 'time', 'employee', 'contractor', 'hello', 'effective', 'please', 'change', 'merthayu', 'behsnjty', 'account', 'employee', 'vendor', 'donot', 'deactivate', 'access', 'based', 'conversation', 'khrtyujuine', 'snhdfihytu', 'suhtnhdyio', 'opening', 'ticket'] list_processed_text: [['change'], ['account'], ['full'], ['time'], ['employee'], ['contractor'], ['hello'], ['effective'], ['please'], ['change'], ['merthayu'], ['behsnjty'], ['account'], ['employee'], ['vendor'], ['donot'], ['deactivate'], ['access'], ['based'], ['conversation'], ['khrtyujuine'], ['snhdfihytu'], ['suhtnhdyio'], ['opening'], ['ticket']] k: 5363 len: <class 'list'> Data: ['interface', 'fa', 'company', 'sa', 'bra', 'sao', 'pollaurido', 'switch', 'access', 'sw', 'company', 'com', 'since', 'interface', 'fastethernet', 'router', 'embertell', 'company', 'sa', 'bra', 'sao', 'pollaurido', 'switch', 'access', 'sw', 'company', 'com', 'since'] processed_text: ['interface', 'fa', 'company', 'sa', 'bra', 'sao', 'pollaurido', 'switch', 'access', 'sw', 'company', 'com', 'since', 'interface', 'fastethernet', 'router', 'embertell', 'company', 'sa', 'bra', 'sao', 'pollaurido', 'switch', 'access', 'sw', 'company', 'com', 'since'] list_processed_text: [['interface'], ['fa'], ['company'], ['sa'], ['bra'], ['sao'], ['pollaurido'], ['switch'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['interface'], ['fastethernet'], ['router'], ['embertell'], ['company'], ['sa'], ['bra'], ['sao'], ['pollaurido'], ['switch'], ['access'], ['sw'], ['company'], ['com'], ['since']] k: 5364 len: <class 'list'> Data: ['hostname', 'volume', 'consumed', 'hostname', 'volume', 'drive', 'server', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'volume', 'consumed', 'hostname', 'volume', 'drive', 'server', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['volume'], ['consumed'], ['hostname'], ['volume'], ['drive'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 5365 len: <class 'list'> Data: ['outlook', 'email', 'font', 'size', 'issue', 'outlook', 'email', 'font', 'size', 'issue'] processed_text: ['outlook', 'email', 'font', 'size', 'issue', 'outlook', 'email', 'font', 'size', 'issue'] list_processed_text: [['outlook'], ['email'], ['font'], ['size'], ['issue'], ['outlook'], ['email'], ['font'], ['size'], ['issue']] k: 5366 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5367 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5368 len: <class 'list'> Data: ['network', 'outage', 'malaysia', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'malaysia', 'company', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['malaysia'], ['company'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5369 len: <class 'list'> Data: ['cannot', 'log', 'skype', 'vpn', 'name', 'qjeymnzs', 'wgpelvyn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'skype', 'vpn', 'happens', 'every', 'time', 'change', 'password', 'need', 'someone', 'log', 'computer', 'fix', 'certificate', 'whatever', 'make', 'work'] processed_text: ['cannot', 'log', 'skype', 'vpn', 'name', 'qjeymnzs', 'wgpelvyn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'log', 'skype', 'vpn', 'happens', 'every', 'time', 'change', 'password', 'need', 'someone', 'log', 'computer', 'fix', 'certificate', 'whatever', 'make', 'work'] list_processed_text: [['cannot'], ['log'], ['skype'], ['vpn'], ['name'], ['qjeymnzs'], ['wgpelvyn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['log'], ['skype'], ['vpn'], ['happens'], ['every'], ['time'], ['change'], ['password'], ['need'], ['someone'], ['log'], ['computer'], ['fix'], ['certificate'], ['whatever'], ['make'], ['work']] k: 5370 len: <class 'list'> Data: ['light', 'indicator', 'cwuospin', 'nbhoxqpe', 'pm', 'ouaepwnr', 'pqnteriv', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'light', 'indicator', 'help', 'desk', 'please', 'see', 'request', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'world', 'headquarters'] processed_text: ['light', 'indicator', 'cwuospin', 'nbhoxqpe', 'pm', 'ouaepwnr', 'pqnteriv', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'light', 'indicator', 'help', 'desk', 'please', 'see', 'request', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'world', 'headquarters'] list_processed_text: [['light'], ['indicator'], ['cwuospin'], ['nbhoxqpe'], ['pm'], ['ouaepwnr'], ['pqnteriv'], ['facility'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['light'], ['indicator'], ['help'], ['desk'], ['please'], ['see'], ['request'], ['sincerely'], ['stanfghyley'], ['guhtykes'], ['fmp'], ['facility'], ['manager'], ['world'], ['headquarters']] k: 5371 len: <class 'list'> Data: ['outlook', 'connecting', 'microsoft', 'exchange', 'outlook', 'connecting', 'microsoft', 'exchange'] processed_text: ['outlook', 'connecting', 'microsoft', 'exchange', 'outlook', 'connecting', 'microsoft', 'exchange'] list_processed_text: [['outlook'], ['connecting'], ['microsoft'], ['exchange'], ['outlook'], ['connecting'], ['microsoft'], ['exchange']] k: 5372 len: <class 'list'> Data: ['vrtx', 'south', 'amerirtca', 'light', 'blinking', 'vrtx', 'south', 'amerirtca', 'showing', 'orange', 'light', 'blinking', 'front', 'panel', 'please', 'see', 'attached', 'file'] processed_text: ['vrtx', 'south', 'amerirtca', 'light', 'blinking', 'vrtx', 'south', 'amerirtca', 'showing', 'orange', 'light', 'blinking', 'front', 'panel', 'please', 'see', 'attached', 'file'] list_processed_text: [['vrtx'], ['south'], ['amerirtca'], ['light'], ['blinking'], ['vrtx'], ['south'], ['amerirtca'], ['showing'], ['orange'], ['light'], ['blinking'], ['front'], ['panel'], ['please'], ['see'], ['attached'], ['file']] k: 5373 len: <class 'list'> Data: ['reference', 'inplant', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'phone'] processed_text: ['reference', 'inplant', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'phone'] list_processed_text: [['reference'], ['inplant'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['try'], ['look'], ['configuration'], ['rqfhiong'], ['zkwfqagb'], ['get'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['phone']] k: 5374 len: <class 'list'> Data: ['erp', 'logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error'] processed_text: ['erp', 'logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error'] list_processed_text: [['erp'], ['logon'], ['balancing'], ['error'], ['erp'], ['logon'], ['balancing'], ['error']] k: 5375 len: <class 'list'> Data: ['newly', 'created', 'email', 'getting', 'sent', 'going', 'outbox', 'newly', 'created', 'email', 'getting', 'sent', 'going', 'outbox'] processed_text: ['newly', 'created', 'email', 'getting', 'sent', 'going', 'outbox', 'newly', 'created', 'email', 'getting', 'sent', 'going', 'outbox'] list_processed_text: [['newly'], ['created'], ['email'], ['getting'], ['sent'], ['going'], ['outbox'], ['newly'], ['created'], ['email'], ['getting'], ['sent'], ['going'], ['outbox']] k: 5376 len: <class 'list'> Data: ['erp', 'rounding', 'total', 'order', 'quote', 'give', 'correct', 'unit', 'price', 'total', 'entire', 'quote', 'rounding', 'fixed', 'customer', 'deny', 'payment', 'total', 'match', 'unit', 'price'] processed_text: ['erp', 'rounding', 'total', 'order', 'quote', 'give', 'correct', 'unit', 'price', 'total', 'entire', 'quote', 'rounding', 'fixed', 'customer', 'deny', 'payment', 'total', 'match', 'unit', 'price'] list_processed_text: [['erp'], ['rounding'], ['total'], ['order'], ['quote'], ['give'], ['correct'], ['unit'], ['price'], ['total'], ['entire'], ['quote'], ['rounding'], ['fixed'], ['customer'], ['deny'], ['payment'], ['total'], ['match'], ['unit'], ['price']] k: 5377 len: <class 'list'> Data: ['product', 'selector', 'working', 'appears', 'issue', 'environment'] processed_text: ['product', 'selector', 'working', 'appears', 'issue', 'environment'] list_processed_text: [['product'], ['selector'], ['working'], ['appears'], ['issue'], ['environment']] k: 5378 len: <class 'list'> Data: ['unable', 'make', 'incoming', 'outgoing', 'call', 'company', 'phone', 'unable', 'make', 'incoming', 'outgoing', 'call', 'company', 'phone'] processed_text: ['unable', 'make', 'incoming', 'outgoing', 'call', 'company', 'phone', 'unable', 'make', 'incoming', 'outgoing', 'call', 'company', 'phone'] list_processed_text: [['unable'], ['make'], ['incoming'], ['outgoing'], ['call'], ['company'], ['phone'], ['unable'], ['make'], ['incoming'], ['outgoing'], ['call'], ['company'], ['phone']] k: 5379 len: <class 'list'> Data: ['cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report', 'cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report'] processed_text: ['cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report', 'cyber', 'security', 'phish', 'uacyltoe', 'hxgaycze', 'report'] list_processed_text: [['cyber'], ['security'], ['phish'], ['uacyltoe'], ['hxgaycze'], ['report'], ['cyber'], ['security'], ['phish'], ['uacyltoe'], ['hxgaycze'], ['report']] k: 5380 len: <class 'list'> Data: ['unable', 'connect', 'companysecure', 'unable', 'connect', 'companysecure'] processed_text: ['unable', 'connect', 'companysecure', 'unable', 'connect', 'companysecure'] list_processed_text: [['unable'], ['connect'], ['companysecure'], ['unable'], ['connect'], ['companysecure']] k: 5381 len: <class 'list'> Data: ['unable', 'connect', 'network', 'usa', 'michigan', 'unable', 'connect', 'network', 'usa', 'michigan'] processed_text: ['unable', 'connect', 'network', 'usa', 'michigan', 'unable', 'connect', 'network', 'usa', 'michigan'] list_processed_text: [['unable'], ['connect'], ['network'], ['usa'], ['michigan'], ['unable'], ['connect'], ['network'], ['usa'], ['michigan']] k: 5382 len: <class 'list'> Data: ['mapping', 'printer', 'mapping', 'printer'] processed_text: ['mapping', 'printer', 'mapping', 'printer'] list_processed_text: [['mapping'], ['printer'], ['mapping'], ['printer']] k: 5383 len: <class 'list'> Data: ['india', 'company', 'tcl', 'circuit', 'packet', 'drop', 'since', 'est', 'site', 'active', 'primary', 'packet', 'drop', 'internet', 'link', 'tcloc'] processed_text: ['india', 'company', 'tcl', 'circuit', 'packet', 'drop', 'since', 'est', 'site', 'active', 'primary', 'packet', 'drop', 'internet', 'link', 'tcloc'] list_processed_text: [['india'], ['company'], ['tcl'], ['circuit'], ['packet'], ['drop'], ['since'], ['est'], ['site'], ['active'], ['primary'], ['packet'], ['drop'], ['internet'], ['link'], ['tcloc']] k: 5384 len: <class 'list'> Data: ['ft', 'mill', 'cec', 'outlook', 'connectivity', 'majority', 'csrs', 'usa', 'cec', 'work', 'remote', 'currently', 'vpn', 'company', 'com', 'vpn', 'due', 'upgrade', 'however', 'outlook', 'continually', 'freezing', 'reboot', 'get', 'back'] processed_text: ['ft', 'mill', 'cec', 'outlook', 'connectivity', 'majority', 'csrs', 'usa', 'cec', 'work', 'remote', 'currently', 'vpn', 'company', 'com', 'vpn', 'due', 'upgrade', 'however', 'outlook', 'continually', 'freezing', 'reboot', 'get', 'back'] list_processed_text: [['ft'], ['mill'], ['cec'], ['outlook'], ['connectivity'], ['majority'], ['csrs'], ['usa'], ['cec'], ['work'], ['remote'], ['currently'], ['vpn'], ['company'], ['com'], ['vpn'], ['due'], ['upgrade'], ['however'], ['outlook'], ['continually'], ['freezing'], ['reboot'], ['get'], ['back']] k: 5385 len: <class 'list'> Data: ['reset', 'password', 'hello', 'please', 'reset', 'password', 'vvterra', 'qlhmawgi', 'sgwipoxn', 'terralink', 'russia', 'office', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] processed_text: ['reset', 'password', 'hello', 'please', 'reset', 'password', 'vvterra', 'qlhmawgi', 'sgwipoxn', 'terralink', 'russia', 'office', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] list_processed_text: [['reset'], ['password'], ['hello'], ['please'], ['reset'], ['password'], ['vvterra'], ['qlhmawgi'], ['sgwipoxn'], ['terralink'], ['russia'], ['office'], ['koahsriq'], ['wdugqatr'], ['administrative'], ['assistant']] k: 5386 len: <class 'list'> Data: ['password', 'reset', 'fmeozwng', 'pfneutkg', 'password', 'reset', 'fmeozwng', 'pfneutkg'] processed_text: ['password', 'reset', 'fmeozwng', 'pfneutkg', 'password', 'reset', 'fmeozwng', 'pfneutkg'] list_processed_text: [['password'], ['reset'], ['fmeozwng'], ['pfneutkg'], ['password'], ['reset'], ['fmeozwng'], ['pfneutkg']] k: 5387 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'name', 'dhkovprf', 'pltndoab', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'locked', 'erp', 'sid', 'many', 'password', 'attempt', 'tried', 'use', 'know', 'password', 'let', 'due', 'sid', 'access', 'request', 'ticket'] processed_text: ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'name', 'dhkovprf', 'pltndoab', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'locked', 'erp', 'sid', 'many', 'password', 'attempt', 'tried', 'use', 'know', 'password', 'let', 'due', 'sid', 'access', 'request', 'ticket'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['password'], ['reset'], ['name'], ['dhkovprf'], ['pltndoab'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['locked'], ['erp'], ['sid'], ['many'], ['password'], ['attempt'], ['tried'], ['use'], ['know'], ['password'], ['let'], ['due'], ['sid'], ['access'], ['request'], ['ticket']] k: 5388 len: <class 'list'> Data: ['infopath', 'issue', 'infopath', 'issue'] processed_text: ['infopath', 'issue', 'infopath', 'issue'] list_processed_text: [['infopath'], ['issue'], ['infopath'], ['issue']] k: 5389 len: <class 'list'> Data: ['skype', 'login', 'issue', 'personal', 'certificate', 'error', 'skype', 'login', 'issue', 'personal', 'certificate', 'error'] processed_text: ['skype', 'login', 'issue', 'personal', 'certificate', 'error', 'skype', 'login', 'issue', 'personal', 'certificate', 'error'] list_processed_text: [['skype'], ['login'], ['issue'], ['personal'], ['certificate'], ['error'], ['skype'], ['login'], ['issue'], ['personal'], ['certificate'], ['error']] k: 5390 len: <class 'list'> Data: ['folder', 'access', 'x', 'summary', 'require', 'jftyff', 'bgtyrant', 'user', 'name', 'brahdthyu', 'usaed', 'access', 'hostname'] processed_text: ['folder', 'access', 'x', 'summary', 'require', 'jftyff', 'bgtyrant', 'user', 'name', 'brahdthyu', 'usaed', 'access', 'hostname'] list_processed_text: [['folder'], ['access'], ['x'], ['summary'], ['require'], ['jftyff'], ['bgtyrant'], ['user'], ['name'], ['brahdthyu'], ['usaed'], ['access'], ['hostname']] k: 5391 len: <class 'list'> Data: ['distributor', 'tool', 'hello', 'could', 'help', 'entering', 'distributor', 'tool', 'company', 'already', 'contacted', 'rakthyesh', 'helped', 'enter', 'system', 'password', 'gave', 'still', 'work', 'changed', 'password', 'sent', 'email', 'problem', 'solved', 'great', 'day', 'best'] processed_text: ['distributor', 'tool', 'hello', 'could', 'help', 'entering', 'distributor', 'tool', 'company', 'already', 'contacted', 'rakthyesh', 'helped', 'enter', 'system', 'password', 'gave', 'still', 'work', 'changed', 'password', 'sent', 'email', 'problem', 'solved', 'great', 'day', 'best'] list_processed_text: [['distributor'], ['tool'], ['hello'], ['could'], ['help'], ['entering'], ['distributor'], ['tool'], ['company'], ['already'], ['contacted'], ['rakthyesh'], ['helped'], ['enter'], ['system'], ['password'], ['gave'], ['still'], ['work'], ['changed'], ['password'], ['sent'], ['email'], ['problem'], ['solved'], ['great'], ['day'], ['best']] k: 5392 len: <class 'list'> Data: ['joining', 'skype', 'meeting', 'iphone', 'joining', 'skype', 'meeting', 'iphone'] processed_text: ['joining', 'skype', 'meeting', 'iphone', 'joining', 'skype', 'meeting', 'iphone'] list_processed_text: [['joining'], ['skype'], ['meeting'], ['iphone'], ['joining'], ['skype'], ['meeting'], ['iphone']] k: 5393 len: <class 'list'> Data: ['problem', 'quoting', 'engine', 'refer', 'attachment', 'problem', 'quoting', 'engine', 'refer', 'attachment', 'phone'] processed_text: ['problem', 'quoting', 'engine', 'refer', 'attachment', 'problem', 'quoting', 'engine', 'refer', 'attachment', 'phone'] list_processed_text: [['problem'], ['quoting'], ['engine'], ['refer'], ['attachment'], ['problem'], ['quoting'], ['engine'], ['refer'], ['attachment'], ['phone']] k: 5394 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5395 len: <class 'list'> Data: ['delegation', 'query', 'owa', 'checking', 'email', 'older', 'month', 'delegation', 'query', 'owa', 'checking', 'email', 'older', 'month'] processed_text: ['delegation', 'query', 'owa', 'checking', 'email', 'older', 'month', 'delegation', 'query', 'owa', 'checking', 'email', 'older', 'month'] list_processed_text: [['delegation'], ['query'], ['owa'], ['checking'], ['email'], ['older'], ['month'], ['delegation'], ['query'], ['owa'], ['checking'], ['email'], ['older'], ['month']] k: 5396 len: <class 'list'> Data: ['urgent', 'saturday', 'delivery', 'note', 'sale', 'order', 'error', 'batch', 'hello', 'urgently', 'help', 'truck', 'already', 'pick', 'tool', 'site', 'delivery', 'note', 'urgently', 'need', 'drawn', 'please', 'clarification', 'thank', 'best'] processed_text: ['urgent', 'saturday', 'delivery', 'note', 'sale', 'order', 'error', 'batch', 'hello', 'urgently', 'help', 'truck', 'already', 'pick', 'tool', 'site', 'delivery', 'note', 'urgently', 'need', 'drawn', 'please', 'clarification', 'thank', 'best'] list_processed_text: [['urgent'], ['saturday'], ['delivery'], ['note'], ['sale'], ['order'], ['error'], ['batch'], ['hello'], ['urgently'], ['help'], ['truck'], ['already'], ['pick'], ['tool'], ['site'], ['delivery'], ['note'], ['urgently'], ['need'], ['drawn'], ['please'], ['clarification'], ['thank'], ['best']] k: 5397 len: <class 'list'> Data: ['computer', 'name', 'hello', 'please', 'set', 'pc', 'name', 'new', 'laptop', 'window', 'russia', 'office'] processed_text: ['computer', 'name', 'hello', 'please', 'set', 'pc', 'name', 'new', 'laptop', 'window', 'russia', 'office'] list_processed_text: [['computer'], ['name'], ['hello'], ['please'], ['set'], ['pc'], ['name'], ['new'], ['laptop'], ['window'], ['russia'], ['office']] k: 5398 len: <class 'list'> Data: ['email', 'confirmation', 'login', 'hub', 'email', 'confirmation', 'login', 'hub'] processed_text: ['email', 'confirmation', 'login', 'hub', 'email', 'confirmation', 'login', 'hub'] list_processed_text: [['email'], ['confirmation'], ['login'], ['hub'], ['email'], ['confirmation'], ['login'], ['hub']] k: 5399 len: <class 'list'> Data: ['outlook', 'profil', 'correction', 'phone', 'number', 'cell', 'phone', 'number', 'hello', 'help', 'team', 'update', 'data', 'outlook', 'phone', 'cell', 'phone', 'correct'] processed_text: ['outlook', 'profil', 'correction', 'phone', 'number', 'cell', 'phone', 'number', 'hello', 'help', 'team', 'update', 'data', 'outlook', 'phone', 'cell', 'phone', 'correct'] list_processed_text: [['outlook'], ['profil'], ['correction'], ['phone'], ['number'], ['cell'], ['phone'], ['number'], ['hello'], ['help'], ['team'], ['update'], ['data'], ['outlook'], ['phone'], ['cell'], ['phone'], ['correct']] k: 5400 len: <class 'list'> Data: ['security', 'incident', 'possible', 'adwind', 'malware', 'trojan', 'rqxl', 'source', 'ip', 'system', 'name', 'rqxl', 'user', 'name', 'qxhdcnmj', 'caflvjrn', 'vefghgarr', 'location', 'usa', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'adwind', 'malware', 'ssl', 'certificate', 'detected', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'foreach', 'rcp', 'enceinjury', 'net', 'source', 'port', 'source', 'ip', 'geolocation', 'barcelona', 'esp', 'destination', 'ip', 'destination', 'hostname', 'rqxl', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'adwind', 'malware', 'ssl', 'certificate', 'detected', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'sartlgeo', 'lhqksbdx', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'seq', 'xefd', 'ack', 'aedb', 'win', 'tcplen', 'pcap', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'c', 'de', 'e', 'e', 'c', 'bf', 'dd', 'ef', 'e', 'da', 'edb', 'cc', 'f', 'cf', 'c', 'w', 'xos', 'beb', 'ae', 'li', 'ti', 'db', 'eef', 'c', 'df', 'f', 'w', 'f', 'bf', 'cc', 'bf', 'ba', 'f', 'cc', 'c', 'ff', 'b', 'f', 'bd', 'b', 'h', 'b', 'sartlgeo', 'lhqksbdx', 'fr', 'c', 'assylias', 'e', 'f', 'inc', 'c', 'ssylias', 'f', 'b', 'u', 'fr', 'c', 'e', 'assylias', 'inc', 'c', 'assyli', 'fd', 'f', 'dada', 'c', 'bdf', 'cc', 'c', 'ac', 'ee', 'cb', 'eb', 'dea', 'bf', 'ff', 'eaeb', 'bda', 'fd', 'afe', 'ae', 'fc', 'z', 'b', 'dd', 'aeb', 'ef', 'ea', 'eb', 'c', 'bbb', 'bcb', 'bf', 'def', 'ca', 'dc', 'aa', 'q', 'c', 'bef', 'aae', 'c', 'bf', 'eb', 'tltz', 'c', 'abca', 'ce', 'df', 'ef', 'p', 'ea', 'ed', 'cf', 'def', 'zw', 'b', 'cf', 'fb', 'bb', 'ca', 'def', 'aeb', 'g', 'b', 'fa', 'e', 'daa', 'ac', 'fe', 'gb', 'bd', 'ef', 'ed', 'deab', 'c', 'ac', 'cc', 'df', 'dca', 'acc', 'r', 'bb', 'ec', 'ef', 'b', 'cfe', 'ae', 'h', 'cfef', 'f', 'cec', 'fb', 'da', 'db', 'c', 'bb', 'cy', 'ad', 'ec', 'f', 'wand', 'g', 'cb', 'f', 'bdc', 'cb', 'g', 'dj', 'acf', 'cc', 'da', 'ab', 'eeb', 'oy', 'c', 'cd', 'cfc', 'c', 'ab', 'ba', 'h', 'da', 'sid', 'fcd', 'ad', 'fb', 'e', 'c', 'ff', 'eed', 'eb', 'f', 'b', 'eaf', 'u', 'ec', 'ce', 'de', 'f', 'n', 'f', 'b', 'ae', 'aff', 'ef', 'ff', 'ad', 'p', 'bc', 'bf', 'aee', 'dd', 'qko', 'sid', 'fad', 'ef', 'cfec', 'ca', 'eed', 'cb', 'bbf', 'ef', 'ccf', 'de', 'cc', 'df', 'ba', 'f', 'ea', 'cb', 'cd', 'cae', 'hn', 'u', 'f', 'bba', 'db', 'dd', 'f', 'ef', 'e', 'fd', 'dc', 'ef', 'ec', 'eae', 'cn', 'fad', 'ef', 'ebd', 'w', 'c', 'ed', 'bf', 'h', 'b', 'fd', 'bf', 'fba', 'eb', 'ac', 'ik', 'h', 'fc', 'ca', 'bfb', 'f', 'c', 'fff', 'fdb', 'z', 'g', 'ae', 'e', 'bf', 'dbe', 'ands', 'bb', 'dd', 'de', 'db', 'abb', 'z', 'cac', 'ec', 'da', 'bba', 'v', 'cd', 'da', 'ef', 'cf', 'bfb', 'e', 'ba', 'fn', 'bb', 'b', 'fd', 'ee', 'r', 'e', 'fb', 'ede', 'sid', 'g', 'aa', 'bd', 'cf', 'f', 'b', 'cf', 'bcd', 'e', 'k', 'ande', 'af', 'c', 'bb', 'fb', 'ab', 'ba', 'bc', 'fb', 'ef', 'dca', 'q', 'ac', 'bfda', 'dc', 'ab', 'adc', 'w', 'c', 'b', 'aa', 'eba', 'ac', 'ca', 'lcbq', 'f', 'abc', 'ad', 'ddb', 'cb', 'df', 'af', 'j', 'e', 'eba', 'dc', 'dc', 'cfb', 'eb', 'kd', 'c', 'dba', 'cd', 'df', 'cc', 'adc', 'ce', 'f', 'af', 'ba', 'f', 'edb', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'possible', 'adwind', 'malware', 'trojan', 'rqxl', 'source', 'ip', 'system', 'name', 'rqxl', 'user', 'name', 'qxhdcnmj', 'caflvjrn', 'vefghgarr', 'location', 'usa', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'adwind', 'malware', 'ssl', 'certificate', 'detected', 'inbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'foreach', 'rcp', 'enceinjury', 'net', 'source', 'port', 'source', 'ip', 'geolocation', 'barcelona', 'esp', 'destination', 'ip', 'destination', 'hostname', 'rqxl', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'adwind', 'malware', 'ssl', 'certificate', 'detected', 'inbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'sartlgeo', 'lhqksbdx', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'seq', 'xefd', 'ack', 'aedb', 'win', 'tcplen', 'pcap', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'c', 'de', 'e', 'e', 'c', 'bf', 'dd', 'ef', 'e', 'da', 'edb', 'cc', 'f', 'cf', 'c', 'w', 'xos', 'beb', 'ae', 'li', 'ti', 'db', 'eef', 'c', 'df', 'f', 'w', 'f', 'bf', 'cc', 'bf', 'ba', 'f', 'cc', 'c', 'ff', 'b', 'f', 'bd', 'b', 'h', 'b', 'sartlgeo', 'lhqksbdx', 'fr', 'c', 'assylias', 'e', 'f', 'inc', 'c', 'ssylias', 'f', 'b', 'u', 'fr', 'c', 'e', 'assylias', 'inc', 'c', 'assyli', 'fd', 'f', 'dada', 'c', 'bdf', 'cc', 'c', 'ac', 'ee', 'cb', 'eb', 'dea', 'bf', 'ff', 'eaeb', 'bda', 'fd', 'afe', 'ae', 'fc', 'z', 'b', 'dd', 'aeb', 'ef', 'ea', 'eb', 'c', 'bbb', 'bcb', 'bf', 'def', 'ca', 'dc', 'aa', 'q', 'c', 'bef', 'aae', 'c', 'bf', 'eb', 'tltz', 'c', 'abca', 'ce', 'df', 'ef', 'p', 'ea', 'ed', 'cf', 'def', 'zw', 'b', 'cf', 'fb', 'bb', 'ca', 'def', 'aeb', 'g', 'b', 'fa', 'e', 'daa', 'ac', 'fe', 'gb', 'bd', 'ef', 'ed', 'deab', 'c', 'ac', 'cc', 'df', 'dca', 'acc', 'r', 'bb', 'ec', 'ef', 'b', 'cfe', 'ae', 'h', 'cfef', 'f', 'cec', 'fb', 'da', 'db', 'c', 'bb', 'cy', 'ad', 'ec', 'f', 'wand', 'g', 'cb', 'f', 'bdc', 'cb', 'g', 'dj', 'acf', 'cc', 'da', 'ab', 'eeb', 'oy', 'c', 'cd', 'cfc', 'c', 'ab', 'ba', 'h', 'da', 'sid', 'fcd', 'ad', 'fb', 'e', 'c', 'ff', 'eed', 'eb', 'f', 'b', 'eaf', 'u', 'ec', 'ce', 'de', 'f', 'n', 'f', 'b', 'ae', 'aff', 'ef', 'ff', 'ad', 'p', 'bc', 'bf', 'aee', 'dd', 'qko', 'sid', 'fad', 'ef', 'cfec', 'ca', 'eed', 'cb', 'bbf', 'ef', 'ccf', 'de', 'cc', 'df', 'ba', 'f', 'ea', 'cb', 'cd', 'cae', 'hn', 'u', 'f', 'bba', 'db', 'dd', 'f', 'ef', 'e', 'fd', 'dc', 'ef', 'ec', 'eae', 'cn', 'fad', 'ef', 'ebd', 'w', 'c', 'ed', 'bf', 'h', 'b', 'fd', 'bf', 'fba', 'eb', 'ac', 'ik', 'h', 'fc', 'ca', 'bfb', 'f', 'c', 'fff', 'fdb', 'z', 'g', 'ae', 'e', 'bf', 'dbe', 'ands', 'bb', 'dd', 'de', 'db', 'abb', 'z', 'cac', 'ec', 'da', 'bba', 'v', 'cd', 'da', 'ef', 'cf', 'bfb', 'e', 'ba', 'fn', 'bb', 'b', 'fd', 'ee', 'r', 'e', 'fb', 'ede', 'sid', 'g', 'aa', 'bd', 'cf', 'f', 'b', 'cf', 'bcd', 'e', 'k', 'ande', 'af', 'c', 'bb', 'fb', 'ab', 'ba', 'bc', 'fb', 'ef', 'dca', 'q', 'ac', 'bfda', 'dc', 'ab', 'adc', 'w', 'c', 'b', 'aa', 'eba', 'ac', 'ca', 'lcbq', 'f', 'abc', 'ad', 'ddb', 'cb', 'df', 'af', 'j', 'e', 'eba', 'dc', 'dc', 'cfb', 'eb', 'kd', 'c', 'dba', 'cd', 'df', 'cc', 'adc', 'ce', 'f', 'af', 'ba', 'f', 'edb', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['possible'], ['adwind'], ['malware'], ['trojan'], ['rqxl'], ['source'], ['ip'], ['system'], ['name'], ['rqxl'], ['user'], ['name'], ['qxhdcnmj'], ['caflvjrn'], ['vefghgarr'], ['location'], ['usa'], ['sm'], ['status'], ['update'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['adwind'], ['malware'], ['ssl'], ['certificate'], ['detected'], ['inbound'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['foreach'], ['rcp'], ['enceinjury'], ['net'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['barcelona'], ['esp'], ['destination'], ['ip'], ['destination'], ['hostname'], ['rqxl'], ['destination'], ['port'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['adwind'], ['malware'], ['ssl'], ['certificate'], ['detected'], ['inbound'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['sartlgeo'], ['lhqksbdx'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['seq'], ['xefd'], ['ack'], ['aedb'], ['win'], ['tcplen'], ['pcap'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['c'], ['de'], ['e'], ['e'], ['c'], ['bf'], ['dd'], ['ef'], ['e'], ['da'], ['edb'], ['cc'], ['f'], ['cf'], ['c'], ['w'], ['xos'], ['beb'], ['ae'], ['li'], ['ti'], ['db'], ['eef'], ['c'], ['df'], ['f'], ['w'], ['f'], ['bf'], ['cc'], ['bf'], ['ba'], ['f'], ['cc'], ['c'], ['ff'], ['b'], ['f'], ['bd'], ['b'], ['h'], ['b'], ['sartlgeo'], ['lhqksbdx'], ['fr'], ['c'], ['assylias'], ['e'], ['f'], ['inc'], ['c'], ['ssylias'], ['f'], ['b'], ['u'], ['fr'], ['c'], ['e'], ['assylias'], ['inc'], ['c'], ['assyli'], ['fd'], ['f'], ['dada'], ['c'], ['bdf'], ['cc'], ['c'], ['ac'], ['ee'], ['cb'], ['eb'], ['dea'], ['bf'], ['ff'], ['eaeb'], ['bda'], ['fd'], ['afe'], ['ae'], ['fc'], ['z'], ['b'], ['dd'], ['aeb'], ['ef'], ['ea'], ['eb'], ['c'], ['bbb'], ['bcb'], ['bf'], ['def'], ['ca'], ['dc'], ['aa'], ['q'], ['c'], ['bef'], ['aae'], ['c'], ['bf'], ['eb'], ['tltz'], ['c'], ['abca'], ['ce'], ['df'], ['ef'], ['p'], ['ea'], ['ed'], ['cf'], ['def'], ['zw'], ['b'], ['cf'], ['fb'], ['bb'], ['ca'], ['def'], ['aeb'], ['g'], ['b'], ['fa'], ['e'], ['daa'], ['ac'], ['fe'], ['gb'], ['bd'], ['ef'], ['ed'], ['deab'], ['c'], ['ac'], ['cc'], ['df'], ['dca'], ['acc'], ['r'], ['bb'], ['ec'], ['ef'], ['b'], ['cfe'], ['ae'], ['h'], ['cfef'], ['f'], ['cec'], ['fb'], ['da'], ['db'], ['c'], ['bb'], ['cy'], ['ad'], ['ec'], ['f'], ['wand'], ['g'], ['cb'], ['f'], ['bdc'], ['cb'], ['g'], ['dj'], ['acf'], ['cc'], ['da'], ['ab'], ['eeb'], ['oy'], ['c'], ['cd'], ['cfc'], ['c'], ['ab'], ['ba'], ['h'], ['da'], ['sid'], ['fcd'], ['ad'], ['fb'], ['e'], ['c'], ['ff'], ['eed'], ['eb'], ['f'], ['b'], ['eaf'], ['u'], ['ec'], ['ce'], ['de'], ['f'], ['n'], ['f'], ['b'], ['ae'], ['aff'], ['ef'], ['ff'], ['ad'], ['p'], ['bc'], ['bf'], ['aee'], ['dd'], ['qko'], ['sid'], ['fad'], ['ef'], ['cfec'], ['ca'], ['eed'], ['cb'], ['bbf'], ['ef'], ['ccf'], ['de'], ['cc'], ['df'], ['ba'], ['f'], ['ea'], ['cb'], ['cd'], ['cae'], ['hn'], ['u'], ['f'], ['bba'], ['db'], ['dd'], ['f'], ['ef'], ['e'], ['fd'], ['dc'], ['ef'], ['ec'], ['eae'], ['cn'], ['fad'], ['ef'], ['ebd'], ['w'], ['c'], ['ed'], ['bf'], ['h'], ['b'], ['fd'], ['bf'], ['fba'], ['eb'], ['ac'], ['ik'], ['h'], ['fc'], ['ca'], ['bfb'], ['f'], ['c'], ['fff'], ['fdb'], ['z'], ['g'], ['ae'], ['e'], ['bf'], ['dbe'], ['ands'], ['bb'], ['dd'], ['de'], ['db'], ['abb'], ['z'], ['cac'], ['ec'], ['da'], ['bba'], ['v'], ['cd'], ['da'], ['ef'], ['cf'], ['bfb'], ['e'], ['ba'], ['fn'], ['bb'], ['b'], ['fd'], ['ee'], ['r'], ['e'], ['fb'], ['ede'], ['sid'], ['g'], ['aa'], ['bd'], ['cf'], ['f'], ['b'], ['cf'], ['bcd'], ['e'], ['k'], ['ande'], ['af'], ['c'], ['bb'], ['fb'], ['ab'], ['ba'], ['bc'], ['fb'], ['ef'], ['dca'], ['q'], ['ac'], ['bfda'], ['dc'], ['ab'], ['adc'], ['w'], ['c'], ['b'], ['aa'], ['eba'], ['ac'], ['ca'], ['lcbq'], ['f'], ['abc'], ['ad'], ['ddb'], ['cb'], ['df'], ['af'], ['j'], ['e'], ['eba'], ['dc'], ['dc'], ['cfb'], ['eb'], ['kd'], ['c'], ['dba'], ['cd'], ['df'], ['cc'], ['adc'], ['ce'], ['f'], ['af'], ['ba'], ['f'], ['edb'], ['pcap'], ['hex'], ['e']] k: 5401 len: <class 'list'> Data: ['password', 'change', 'password', 'change'] processed_text: ['password', 'change', 'password', 'change'] list_processed_text: [['password'], ['change'], ['password'], ['change']] k: 5402 len: <class 'list'> Data: ['personal', 'device', 'set', 'procedure', 'team', 'please', 'send', 'link', 'information', 'set', 'personal', 'tablet', 'receive', 'company', 'email', 'exchange', 'server', 'ticket', 'completed', 'understand', 'need', 'set', 'tablet', 'submit', 'best'] processed_text: ['personal', 'device', 'set', 'procedure', 'team', 'please', 'send', 'link', 'information', 'set', 'personal', 'tablet', 'receive', 'company', 'email', 'exchange', 'server', 'ticket', 'completed', 'understand', 'need', 'set', 'tablet', 'submit', 'best'] list_processed_text: [['personal'], ['device'], ['set'], ['procedure'], ['team'], ['please'], ['send'], ['link'], ['information'], ['set'], ['personal'], ['tablet'], ['receive'], ['company'], ['email'], ['exchange'], ['server'], ['ticket'], ['completed'], ['understand'], ['need'], ['set'], ['tablet'], ['submit'], ['best']] k: 5403 len: <class 'list'> Data: ['stock', 'plant', 'finishing', 'production', 'plant', 'delivery', 'created', 'ship', 'item', 'stock', 'plant', 'finishing', 'production', 'plant', 'delivery', 'created', 'ship', 'item', 'fill', 'customer', 'backorder', 'previously', 'issue', 'system', 'automatically', 'processing', 'shipment'] processed_text: ['stock', 'plant', 'finishing', 'production', 'plant', 'delivery', 'created', 'ship', 'item', 'stock', 'plant', 'finishing', 'production', 'plant', 'delivery', 'created', 'ship', 'item', 'fill', 'customer', 'backorder', 'previously', 'issue', 'system', 'automatically', 'processing', 'shipment'] list_processed_text: [['stock'], ['plant'], ['finishing'], ['production'], ['plant'], ['delivery'], ['created'], ['ship'], ['item'], ['stock'], ['plant'], ['finishing'], ['production'], ['plant'], ['delivery'], ['created'], ['ship'], ['item'], ['fill'], ['customer'], ['backorder'], ['previously'], ['issue'], ['system'], ['automatically'], ['processing'], ['shipment']] k: 5404 len: <class 'list'> Data: ['cannot', 'connect', 'eu', 'vpn', 'home', 'need', 'use', 'na', 'vpn', 'clicking', 'company', 'vpn', 'vpn', 'company', 'website', 'new', 'window', 'open', 'show', 'network', 'access', 'attempting', 'connect', 'get', 'error', 'connection', 'remote', 'computer', 'could', 'established', 'port', 'used', 'connection', 'closed'] processed_text: ['cannot', 'connect', 'eu', 'vpn', 'home', 'need', 'use', 'na', 'vpn', 'clicking', 'company', 'vpn', 'vpn', 'company', 'website', 'new', 'window', 'open', 'show', 'network', 'access', 'attempting', 'connect', 'get', 'error', 'connection', 'remote', 'computer', 'could', 'established', 'port', 'used', 'connection', 'closed'] list_processed_text: [['cannot'], ['connect'], ['eu'], ['vpn'], ['home'], ['need'], ['use'], ['na'], ['vpn'], ['clicking'], ['company'], ['vpn'], ['vpn'], ['company'], ['website'], ['new'], ['window'], ['open'], ['show'], ['network'], ['access'], ['attempting'], ['connect'], ['get'], ['error'], ['connection'], ['remote'], ['computer'], ['could'], ['established'], ['port'], ['used'], ['connection'], ['closed']] k: 5405 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 5406 len: <class 'list'> Data: ['erp', 'access', 'given', 'many', 'failed', 'attempt', 'logging', 'erp', 'recently', 'changed', 'password', 'checked', 'unlocked', 'password', 'management', 'tool', 'tried', 'new', 'one', 'twice', 'without', 'working', 'tried', 'old', 'password', 'opening', 'came', 'message', 'many', 'failed', 'attempt', 'need', 'access', 'erp', 'michghytuael', 'hardman', 'maintenance', 'supervisor'] processed_text: ['erp', 'access', 'given', 'many', 'failed', 'attempt', 'logging', 'erp', 'recently', 'changed', 'password', 'checked', 'unlocked', 'password', 'management', 'tool', 'tried', 'new', 'one', 'twice', 'without', 'working', 'tried', 'old', 'password', 'opening', 'came', 'message', 'many', 'failed', 'attempt', 'need', 'access', 'erp', 'michghytuael', 'hardman', 'maintenance', 'supervisor'] list_processed_text: [['erp'], ['access'], ['given'], ['many'], ['failed'], ['attempt'], ['logging'], ['erp'], ['recently'], ['changed'], ['password'], ['checked'], ['unlocked'], ['password'], ['management'], ['tool'], ['tried'], ['new'], ['one'], ['twice'], ['without'], ['working'], ['tried'], ['old'], ['password'], ['opening'], ['came'], ['message'], ['many'], ['failed'], ['attempt'], ['need'], ['access'], ['erp'], ['michghytuael'], ['hardman'], ['maintenance'], ['supervisor']] k: 5407 len: <class 'list'> Data: ['password', 'reset', 'alert', 'user', 'password', 'reset', 'alert', 'user'] processed_text: ['password', 'reset', 'alert', 'user', 'password', 'reset', 'alert', 'user'] list_processed_text: [['password'], ['reset'], ['alert'], ['user'], ['password'], ['reset'], ['alert'], ['user']] k: 5408 len: <class 'list'> Data: ['ooo', 'till', 'crm', 'web', 'access', 'unable', 'load', 'page', 'crm', 'web', 'access', 'unable', 'load', 'page'] processed_text: ['ooo', 'till', 'crm', 'web', 'access', 'unable', 'load', 'page', 'crm', 'web', 'access', 'unable', 'load', 'page'] list_processed_text: [['ooo'], ['till'], ['crm'], ['web'], ['access'], ['unable'], ['load'], ['page'], ['crm'], ['web'], ['access'], ['unable'], ['load'], ['page']] k: 5409 len: <class 'list'> Data: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] processed_text: ['skype', 'audio', 'working', 'skype', 'audio', 'working'] list_processed_text: [['skype'], ['audio'], ['working'], ['skype'], ['audio'], ['working']] k: 5410 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 5411 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'request', 'mobile', 'device', 'activation', 'request'] processed_text: ['mobile', 'device', 'activation', 'request', 'mobile', 'device', 'activation', 'request'] list_processed_text: [['mobile'], ['device'], ['activation'], ['request'], ['mobile'], ['device'], ['activation'], ['request']] k: 5412 len: <class 'list'> Data: ['able', 'login', 'vpn', 'account', 'locked', 'able', 'login', 'vpn', 'account', 'locked'] processed_text: ['able', 'login', 'vpn', 'account', 'locked', 'able', 'login', 'vpn', 'account', 'locked'] list_processed_text: [['able'], ['login'], ['vpn'], ['account'], ['locked'], ['able'], ['login'], ['vpn'], ['account'], ['locked']] k: 5413 len: <class 'list'> Data: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] processed_text: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] list_processed_text: [['ad'], ['account'], ['locked'], ['ad'], ['account'], ['locked']] k: 5414 len: <class 'list'> Data: ['printer', 'working', 'pc', 'qa', 'office', 'germany', 'getting', 'connected', 'internet', 'printer', 'working', 'pc', 'qa', 'office', 'germany', 'getting', 'connected', 'internet', 'pc', 'name', 'olympus', 'sid', 'contact', 'name'] processed_text: ['printer', 'working', 'pc', 'qa', 'office', 'germany', 'getting', 'connected', 'internet', 'printer', 'working', 'pc', 'qa', 'office', 'germany', 'getting', 'connected', 'internet', 'pc', 'name', 'olympus', 'sid', 'contact', 'name'] list_processed_text: [['printer'], ['working'], ['pc'], ['qa'], ['office'], ['germany'], ['getting'], ['connected'], ['internet'], ['printer'], ['working'], ['pc'], ['qa'], ['office'], ['germany'], ['getting'], ['connected'], ['internet'], ['pc'], ['name'], ['olympus'], ['sid'], ['contact'], ['name']] k: 5415 len: <class 'list'> Data: ['enterprise', 'search', 'connector', 'working', 'enterprise', 'search', 'connector', 'working', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['enterprise', 'search', 'connector', 'working', 'enterprise', 'search', 'connector', 'working', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['enterprise'], ['search'], ['connector'], ['working'], ['enterprise'], ['search'], ['connector'], ['working'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 5416 len: <class 'list'> Data: ['company', 'distributor', 'tool', 'hi', 'name', 'pnabslgh', 'vatpgsxn', 'pls', 'help', 'use', 'company', 'distributor', 'tool', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['company', 'distributor', 'tool', 'hi', 'name', 'pnabslgh', 'vatpgsxn', 'pls', 'help', 'use', 'company', 'distributor', 'tool', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['company'], ['distributor'], ['tool'], ['hi'], ['name'], ['pnabslgh'], ['vatpgsxn'], ['pls'], ['help'], ['use'], ['company'], ['distributor'], ['tool'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 5417 len: <class 'list'> Data: ['check', 'wu', 'essa', 'press', 'box', 'flash', 'permanently', 'wrcktgbd', 'wzrgyunp', 'check', 'wu', 'essa', 'press', 'box', 'flash', 'permanently', 'wrcktgbd', 'wzrgyunp'] processed_text: ['check', 'wu', 'essa', 'press', 'box', 'flash', 'permanently', 'wrcktgbd', 'wzrgyunp', 'check', 'wu', 'essa', 'press', 'box', 'flash', 'permanently', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['check'], ['wu'], ['essa'], ['press'], ['box'], ['flash'], ['permanently'], ['wrcktgbd'], ['wzrgyunp'], ['check'], ['wu'], ['essa'], ['press'], ['box'], ['flash'], ['permanently'], ['wrcktgbd'], ['wzrgyunp']] k: 5418 len: <class 'list'> Data: ['setup', 'computer', 'information', 'status', 'repair', 'niptbwdq', 'csenjruz', 'setup', 'computer', 'information', 'status', 'repair', 'niptbwdq', 'csenjruz'] processed_text: ['setup', 'computer', 'information', 'status', 'repair', 'niptbwdq', 'csenjruz', 'setup', 'computer', 'information', 'status', 'repair', 'niptbwdq', 'csenjruz'] list_processed_text: [['setup'], ['computer'], ['information'], ['status'], ['repair'], ['niptbwdq'], ['csenjruz'], ['setup'], ['computer'], ['information'], ['status'], ['repair'], ['niptbwdq'], ['csenjruz']] k: 5419 len: <class 'list'> Data: ['problem', 'screen', 'saver', 'sinic', 'station', 'jionmpsf', 'wnkpzcmv', 'problem', 'screen', 'saver', 'sinic', 'station', 'jionmpsf', 'wnkpzcmv'] processed_text: ['problem', 'screen', 'saver', 'sinic', 'station', 'jionmpsf', 'wnkpzcmv', 'problem', 'screen', 'saver', 'sinic', 'station', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['problem'], ['screen'], ['saver'], ['sinic'], ['station'], ['jionmpsf'], ['wnkpzcmv'], ['problem'], ['screen'], ['saver'], ['sinic'], ['station'], ['jionmpsf'], ['wnkpzcmv']] k: 5420 len: <class 'list'> Data: ['external', 'hard', 'drive', 'sale', 'alte', 'nobook', 'hard', 'drive', 'edspmloy', 'fxnkzaqu', 'external', 'hard', 'drive', 'sale', 'alte', 'nobook', 'hard', 'drive', 'edspmloy', 'fxnkzaqu'] processed_text: ['external', 'hard', 'drive', 'sale', 'alte', 'nobook', 'hard', 'drive', 'edspmloy', 'fxnkzaqu', 'external', 'hard', 'drive', 'sale', 'alte', 'nobook', 'hard', 'drive', 'edspmloy', 'fxnkzaqu'] list_processed_text: [['external'], ['hard'], ['drive'], ['sale'], ['alte'], ['nobook'], ['hard'], ['drive'], ['edspmloy'], ['fxnkzaqu'], ['external'], ['hard'], ['drive'], ['sale'], ['alte'], ['nobook'], ['hard'], ['drive'], ['edspmloy'], ['fxnkzaqu']] k: 5421 len: <class 'list'> Data: ['problem', 'mit', 'portal', 'ghaltiek', 'lsuepvyx', 'problem', 'mit', 'portal', 'ghaltiek', 'lsuepvyx'] processed_text: ['problem', 'mit', 'portal', 'ghaltiek', 'lsuepvyx', 'problem', 'mit', 'portal', 'ghaltiek', 'lsuepvyx'] list_processed_text: [['problem'], ['mit'], ['portal'], ['ghaltiek'], ['lsuepvyx'], ['problem'], ['mit'], ['portal'], ['ghaltiek'], ['lsuepvyx']] k: 5422 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'plant', 'na', 'company', 'na', 'usa', 'usa', 'plant', 'static', 'vpn', 'rtr', 'went', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'primary', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'plant', 'na', 'company', 'na', 'usa', 'usa', 'plant', 'static', 'vpn', 'rtr', 'went', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'primary', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['plant'], ['na'], ['company'], ['na'], ['usa'], ['usa'], ['plant'], ['static'], ['vpn'], ['rtr'], ['went'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['primary'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5423 len: <class 'list'> Data: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] processed_text: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] list_processed_text: [['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['company'], ['com']] k: 5424 len: <class 'list'> Data: ['get', 'warehouse', 'toolmails', 'meant', 'efbwiadp', 'dicafxhv', 'please', 'check', 'warehouse', 'toolmails', 'efbwiadp', 'dicafxhv', 'getting', 'emailed', 'trurthyuft', 'received', 'email', 'please', 'check', 'attachment'] processed_text: ['get', 'warehouse', 'toolmails', 'meant', 'efbwiadp', 'dicafxhv', 'please', 'check', 'warehouse', 'toolmails', 'efbwiadp', 'dicafxhv', 'getting', 'emailed', 'trurthyuft', 'received', 'email', 'please', 'check', 'attachment'] list_processed_text: [['get'], ['warehouse'], ['toolmails'], ['meant'], ['efbwiadp'], ['dicafxhv'], ['please'], ['check'], ['warehouse'], ['toolmails'], ['efbwiadp'], ['dicafxhv'], ['getting'], ['emailed'], ['trurthyuft'], ['received'], ['email'], ['please'], ['check'], ['attachment']] k: 5425 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'login', 'issue', 'summary', 'tried', 'use', 'password', 'management', 'tool', 'manager', 'change', 'password', 'enter', 'new', 'paasword', 'prompt', 'activex', 'click', 'install', 'give', 'error'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'login', 'issue', 'summary', 'tried', 'use', 'password', 'management', 'tool', 'manager', 'change', 'password', 'enter', 'new', 'paasword', 'prompt', 'activex', 'click', 'install', 'give', 'error'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['login'], ['issue'], ['summary'], ['tried'], ['use'], ['password'], ['management'], ['tool'], ['manager'], ['change'], ['password'], ['enter'], ['new'], ['paasword'], ['prompt'], ['activex'], ['click'], ['install'], ['give'], ['error']] k: 5426 len: <class 'list'> Data: ['configure', 'shared', 'mailbox', 'need', 'add', 'two', 'mailbox', 'outlook', 'still', 'working', 'outlook', 'work'] processed_text: ['configure', 'shared', 'mailbox', 'need', 'add', 'two', 'mailbox', 'outlook', 'still', 'working', 'outlook', 'work'] list_processed_text: [['configure'], ['shared'], ['mailbox'], ['need'], ['add'], ['two'], ['mailbox'], ['outlook'], ['still'], ['working'], ['outlook'], ['work']] k: 5427 len: <class 'list'> Data: ['skype', 'add', 'showing', 'outlook', 'skype', 'add', 'showing', 'outlook', 'also', 'manually', 'activated'] processed_text: ['skype', 'add', 'showing', 'outlook', 'skype', 'add', 'showing', 'outlook', 'also', 'manually', 'activated'] list_processed_text: [['skype'], ['add'], ['showing'], ['outlook'], ['skype'], ['add'], ['showing'], ['outlook'], ['also'], ['manually'], ['activated']] k: 5428 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] processed_text: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] list_processed_text: [['mobile'], ['device'], ['activation'], ['company'], ['provided'], ['mobile'], ['device'], ['activation'], ['company'], ['provided']] k: 5429 len: <class 'list'> Data: ['f', 'drive', 'rqxsm', 'space', 'consumed', 'space', 'available', 'gb', 'volume', 'label', 'dat', 'rqxsm', 'dced', 'server', 'rqxsm', 'space', 'consumed', 'space', 'available', 'gb'] processed_text: ['f', 'drive', 'rqxsm', 'space', 'consumed', 'space', 'available', 'gb', 'volume', 'label', 'dat', 'rqxsm', 'dced', 'server', 'rqxsm', 'space', 'consumed', 'space', 'available', 'gb'] list_processed_text: [['f'], ['drive'], ['rqxsm'], ['space'], ['consumed'], ['space'], ['available'], ['gb'], ['volume'], ['label'], ['dat'], ['rqxsm'], ['dced'], ['server'], ['rqxsm'], ['space'], ['consumed'], ['space'], ['available'], ['gb']] k: 5430 len: <class 'list'> Data: ['ethernet', 'ethernet', 'working', 'wi', 'fi'] processed_text: ['ethernet', 'ethernet', 'working', 'wi', 'fi'] list_processed_text: [['ethernet'], ['ethernet'], ['working'], ['wi'], ['fi']] k: 5431 len: <class 'list'> Data: ['outlook', 'responding', 'outlook', 'responding'] processed_text: ['outlook', 'responding', 'outlook', 'responding'] list_processed_text: [['outlook'], ['responding'], ['outlook'], ['responding']] k: 5432 len: <class 'list'> Data: ['adoption', 'score', 'card', 'visible', 'crm', 'dynamic', 'insufficient', 'permission', 'access', 'summary', 'adoption', 'score', 'card', 'visible', 'crm', 'dynamic', 'user', 'trying', 'access', 'crm', 'adoption', 'card', 'first', 'time'] processed_text: ['adoption', 'score', 'card', 'visible', 'crm', 'dynamic', 'insufficient', 'permission', 'access', 'summary', 'adoption', 'score', 'card', 'visible', 'crm', 'dynamic', 'user', 'trying', 'access', 'crm', 'adoption', 'card', 'first', 'time'] list_processed_text: [['adoption'], ['score'], ['card'], ['visible'], ['crm'], ['dynamic'], ['insufficient'], ['permission'], ['access'], ['summary'], ['adoption'], ['score'], ['card'], ['visible'], ['crm'], ['dynamic'], ['user'], ['trying'], ['access'], ['crm'], ['adoption'], ['card'], ['first'], ['time']] k: 5433 len: <class 'list'> Data: ['sid', 'working', 'sid', 'working', 'error', 'connection', 'server'] processed_text: ['sid', 'working', 'sid', 'working', 'error', 'connection', 'server'] list_processed_text: [['sid'], ['working'], ['sid'], ['working'], ['error'], ['connection'], ['server']] k: 5434 len: <class 'list'> Data: ['na', 'remote', 'working', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'hi', 'manjgtiry', 'pm', 'dwfiykeo', 'argtxmvcumar', 'hello', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'na', 'remote', 'working', 'verify', 'eu', 'remote', 'working', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'check', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'ok', 'pm', 'dwfiykeo', 'argtxmvcumar', 'getting', 'error', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'able', 'connect', 'vpn', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'create', 'ticket', 'pm', 'dwfiykeo', 'argtxmvcumar', 'try', 'working', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'eu', 'working', 'eu', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'new', 'asia', 'vpn', 'remote', 'time', 'try', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'sure', 'pm', 'dwfiykeo', 'argtxmvcumar'] processed_text: ['na', 'remote', 'working', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'hi', 'manjgtiry', 'pm', 'dwfiykeo', 'argtxmvcumar', 'hello', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'na', 'remote', 'working', 'verify', 'eu', 'remote', 'working', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'check', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'ok', 'pm', 'dwfiykeo', 'argtxmvcumar', 'getting', 'error', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'able', 'connect', 'vpn', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'let', 'create', 'ticket', 'pm', 'dwfiykeo', 'argtxmvcumar', 'try', 'working', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'eu', 'working', 'eu', 'pm', 'dwfiykeo', 'argtxmvcumar', 'ok', 'new', 'asia', 'vpn', 'remote', 'time', 'try', 'pm', 'mhfjudahdyue', 'rfgrhtdy', 'sure', 'pm', 'dwfiykeo', 'argtxmvcumar'] list_processed_text: [['na'], ['remote'], ['working'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['hi'], ['manjgtiry'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['na'], ['remote'], ['working'], ['verify'], ['eu'], ['remote'], ['working'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['let'], ['check'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['ok'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['getting'], ['error'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['able'], ['connect'], ['vpn'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['let'], ['create'], ['ticket'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['try'], ['working'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['eu'], ['working'], ['eu'], ['pm'], ['dwfiykeo'], ['argtxmvcumar'], ['ok'], ['new'], ['asia'], ['vpn'], ['remote'], ['time'], ['try'], ['pm'], ['mhfjudahdyue'], ['rfgrhtdy'], ['sure'], ['pm'], ['dwfiykeo'], ['argtxmvcumar']] k: 5435 len: <class 'list'> Data: ['sto', 'pc', 'material', 'delivery', 'created', 'pc', 'debbie', 'smhdyhti', 'get', 'error', 'message'] processed_text: ['sto', 'pc', 'material', 'delivery', 'created', 'pc', 'debbie', 'smhdyhti', 'get', 'error', 'message'] list_processed_text: [['sto'], ['pc'], ['material'], ['delivery'], ['created'], ['pc'], ['debbie'], ['smhdyhti'], ['get'], ['error'], ['message']] k: 5436 len: <class 'list'> Data: ['display', 'fixed', 'telephone', 'number', 'cvd', 'system', 'area', 'defective,', 'please', 'replace', 'telephone', 'display', 'fixed', 'telephone', 'number', 'cvd', 'system', 'area', 'defective,', 'please', 'replace', 'telephone'] processed_text: ['display', 'fixed', 'telephone', 'number', 'cvd', 'system', 'area', 'defective,', 'please', 'replace', 'telephone', 'display', 'fixed', 'telephone', 'number', 'cvd', 'system', 'area', 'defective,', 'please', 'replace', 'telephone'] list_processed_text: [['display'], ['fixed'], ['telephone'], ['number'], ['cvd'], ['system'], ['area'], ['defective,'], ['please'], ['replace'], ['telephone'], ['display'], ['fixed'], ['telephone'], ['number'], ['cvd'], ['system'], ['area'], ['defective,'], ['please'], ['replace'], ['telephone']] k: 5437 len: <class 'list'> Data: ['could', 'find', 'old', 'email', 'year', 'microsoft', 'outlook', 'hello', 'till', 'mit', 'freundlichen', 'grugermany', 'best'] processed_text: ['could', 'find', 'old', 'email', 'year', 'microsoft', 'outlook', 'hello', 'till', 'mit', 'freundlichen', 'grugermany', 'best'] list_processed_text: [['could'], ['find'], ['old'], ['email'], ['year'], ['microsoft'], ['outlook'], ['hello'], ['till'], ['mit'], ['freundlichen'], ['grugermany'], ['best']] k: 5438 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'successfully', 'done', 'mobile', 'device', 'activation', 'successfully', 'done'] processed_text: ['mobile', 'device', 'activation', 'successfully', 'done', 'mobile', 'device', 'activation', 'successfully', 'done'] list_processed_text: [['mobile'], ['device'], ['activation'], ['successfully'], ['done'], ['mobile'], ['device'], ['activation'], ['successfully'], ['done']] k: 5439 len: <class 'list'> Data: ['request', 'stop', 'delete', 'dtp', 'job', 'sid', 'hi', 'team', 'basis', 'please', 'stop', 'delete', 'job', 'bidengineering', 'tool', 'sid', 'system', 'job', 'triggered', 'uacyltoe', 'hxgaycze', 'value', 'one', 'complaint', 'cube', 'transaction', 'bw', 'system', 'result', 'found', 'hence', 'please', 'stop', 'respective', 'job', 'email', 'sent', 'team', 'best'] processed_text: ['request', 'stop', 'delete', 'dtp', 'job', 'sid', 'hi', 'team', 'basis', 'please', 'stop', 'delete', 'job', 'bidengineering', 'tool', 'sid', 'system', 'job', 'triggered', 'uacyltoe', 'hxgaycze', 'value', 'one', 'complaint', 'cube', 'transaction', 'bw', 'system', 'result', 'found', 'hence', 'please', 'stop', 'respective', 'job', 'email', 'sent', 'team', 'best'] list_processed_text: [['request'], ['stop'], ['delete'], ['dtp'], ['job'], ['sid'], ['hi'], ['team'], ['basis'], ['please'], ['stop'], ['delete'], ['job'], ['bidengineering'], ['tool'], ['sid'], ['system'], ['job'], ['triggered'], ['uacyltoe'], ['hxgaycze'], ['value'], ['one'], ['complaint'], ['cube'], ['transaction'], ['bw'], ['system'], ['result'], ['found'], ['hence'], ['please'], ['stop'], ['respective'], ['job'], ['email'], ['sent'], ['team'], ['best']] k: 5440 len: <class 'list'> Data: ['able', 'connect', 'outlook', 'getting', 'security', 'alert', 'security', 'certificate', 'able', 'connect', 'look', 'please', 'see', 'screen', 'shot', 'needful'] processed_text: ['able', 'connect', 'outlook', 'getting', 'security', 'alert', 'security', 'certificate', 'able', 'connect', 'look', 'please', 'see', 'screen', 'shot', 'needful'] list_processed_text: [['able'], ['connect'], ['outlook'], ['getting'], ['security'], ['alert'], ['security'], ['certificate'], ['able'], ['connect'], ['look'], ['please'], ['see'], ['screen'], ['shot'], ['needful']] k: 5441 len: <class 'list'> Data: ['sd', 'sale', 'order', 'job', 'abended', 'job', 'scheduler', 'due', 'logon', 'user', 'coferte', 'client', 'failed', 'starting', 'step', 'sd', 'sale', 'order', 'job', 'abended', 'job', 'scheduler', 'due', 'logon', 'user', 'coferte', 'client', 'failed', 'starting', 'step'] processed_text: ['sd', 'sale', 'order', 'job', 'abended', 'job', 'scheduler', 'due', 'logon', 'user', 'coferte', 'client', 'failed', 'starting', 'step', 'sd', 'sale', 'order', 'job', 'abended', 'job', 'scheduler', 'due', 'logon', 'user', 'coferte', 'client', 'failed', 'starting', 'step'] list_processed_text: [['sd'], ['sale'], ['order'], ['job'], ['abended'], ['job'], ['scheduler'], ['due'], ['logon'], ['user'], ['coferte'], ['client'], ['failed'], ['starting'], ['step'], ['sd'], ['sale'], ['order'], ['job'], ['abended'], ['job'], ['scheduler'], ['due'], ['logon'], ['user'], ['coferte'], ['client'], ['failed'], ['starting'], ['step']] k: 5442 len: <class 'list'> Data: ['access', 'run', 'book', 'dot', 'net', 'plm', 'solutioning', 'hi', 'kindly', 'usa', 'pagthyuathy', 'afghtyjith', 'userid', 'vvdfgtyuji', 'access', 'run', 'book', 'dot', 'net', 'plm', 'solutioning'] processed_text: ['access', 'run', 'book', 'dot', 'net', 'plm', 'solutioning', 'hi', 'kindly', 'usa', 'pagthyuathy', 'afghtyjith', 'userid', 'vvdfgtyuji', 'access', 'run', 'book', 'dot', 'net', 'plm', 'solutioning'] list_processed_text: [['access'], ['run'], ['book'], ['dot'], ['net'], ['plm'], ['solutioning'], ['hi'], ['kindly'], ['usa'], ['pagthyuathy'], ['afghtyjith'], ['userid'], ['vvdfgtyuji'], ['access'], ['run'], ['book'], ['dot'], ['net'], ['plm'], ['solutioning']] k: 5443 len: <class 'list'> Data: ['stock', 'issue', 'mm', 'hello', 'christgrytoph', 'kind', 'situation', 'came', 'wondering', 'good', 'way', 'run', 'dn', 'please', 'see', 'screen'] processed_text: ['stock', 'issue', 'mm', 'hello', 'christgrytoph', 'kind', 'situation', 'came', 'wondering', 'good', 'way', 'run', 'dn', 'please', 'see', 'screen'] list_processed_text: [['stock'], ['issue'], ['mm'], ['hello'], ['christgrytoph'], ['kind'], ['situation'], ['came'], ['wondering'], ['good'], ['way'], ['run'], ['dn'], ['please'], ['see'], ['screen']] k: 5444 len: <class 'list'> Data: ['material', 'issue', 'quantity', 'changed', 'pc', 'seems', 'solved', 'yet', 'rofgtyger', 'liugh', 'judthti', 'zhu', 'pm', 'nwfodmhc', 'exurcwkm', 'rofgtyger', 'liugh', 'material', 'issue', 'dear', 'team', 'shipped', 'subcontract', 'order', 'po', 'rough', 'material', 'pc', 'movement', 'type', 'corresponding', 'end', 'product', 'mm', 'still', 'exists', 'erp', 'pls', 'help', 'check', 'root', 'cause', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['material', 'issue', 'quantity', 'changed', 'pc', 'seems', 'solved', 'yet', 'rofgtyger', 'liugh', 'judthti', 'zhu', 'pm', 'nwfodmhc', 'exurcwkm', 'rofgtyger', 'liugh', 'material', 'issue', 'dear', 'team', 'shipped', 'subcontract', 'order', 'po', 'rough', 'material', 'pc', 'movement', 'type', 'corresponding', 'end', 'product', 'mm', 'still', 'exists', 'erp', 'pls', 'help', 'check', 'root', 'cause', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['material'], ['issue'], ['quantity'], ['changed'], ['pc'], ['seems'], ['solved'], ['yet'], ['rofgtyger'], ['liugh'], ['judthti'], ['zhu'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rofgtyger'], ['liugh'], ['material'], ['issue'], ['dear'], ['team'], ['shipped'], ['subcontract'], ['order'], ['po'], ['rough'], ['material'], ['pc'], ['movement'], ['type'], ['corresponding'], ['end'], ['product'], ['mm'], ['still'], ['exists'], ['erp'], ['pls'], ['help'], ['check'], ['root'], ['cause'], ['thx'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 5445 len: <class 'list'> Data: ['request', 'behalf', 'jvxtfhkg', 'heptuizn', 'hello', 'collegues', 'jvxtfhkg', 'heptuizns', 'iphone', 'calendar', 'synchronizing', 'one', 'direction', 'calendar', 'entry', 'outlook', 'computer', 'synchs', 'tot', 'iphone', 'calendar', 'enters', 'one', 'iphone', 'synchronized', 'outlook', 'would', 'please', 'kind', 'help', 'u', 'regarding', 'issue', 'many'] processed_text: ['request', 'behalf', 'jvxtfhkg', 'heptuizn', 'hello', 'collegues', 'jvxtfhkg', 'heptuizns', 'iphone', 'calendar', 'synchronizing', 'one', 'direction', 'calendar', 'entry', 'outlook', 'computer', 'synchs', 'tot', 'iphone', 'calendar', 'enters', 'one', 'iphone', 'synchronized', 'outlook', 'would', 'please', 'kind', 'help', 'u', 'regarding', 'issue', 'many'] list_processed_text: [['request'], ['behalf'], ['jvxtfhkg'], ['heptuizn'], ['hello'], ['collegues'], ['jvxtfhkg'], ['heptuizns'], ['iphone'], ['calendar'], ['synchronizing'], ['one'], ['direction'], ['calendar'], ['entry'], ['outlook'], ['computer'], ['synchs'], ['tot'], ['iphone'], ['calendar'], ['enters'], ['one'], ['iphone'], ['synchronized'], ['outlook'], ['would'], ['please'], ['kind'], ['help'], ['u'], ['regarding'], ['issue'], ['many']] k: 5446 len: <class 'list'> Data: ['pagthyuathy', 'afghtyjith', 'access', 'dot', 'kt', 'folder', 'hostname', 'hi', 'kindly', 'usa', 'access', 'pagthyuathy', 'afghtyjith', 'new', 'intern', 'dot', 'net', 'team', 'userid', 'vvdfgtyuji'] processed_text: ['pagthyuathy', 'afghtyjith', 'access', 'dot', 'kt', 'folder', 'hostname', 'hi', 'kindly', 'usa', 'access', 'pagthyuathy', 'afghtyjith', 'new', 'intern', 'dot', 'net', 'team', 'userid', 'vvdfgtyuji'] list_processed_text: [['pagthyuathy'], ['afghtyjith'], ['access'], ['dot'], ['kt'], ['folder'], ['hostname'], ['hi'], ['kindly'], ['usa'], ['access'], ['pagthyuathy'], ['afghtyjith'], ['new'], ['intern'], ['dot'], ['net'], ['team'], ['userid'], ['vvdfgtyuji']] k: 5447 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 5448 len: <class 'list'> Data: ['reset', 'password', 'qycgdfhz', 'iqshzdru', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'qycgdfhz', 'iqshzdru', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['qycgdfhz'], ['iqshzdru'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5449 len: <class 'list'> Data: ['access', 'tablearu', 'top', 'customer', 'hello', 'prepare', 'monthly', 'inf', 'mbr', 'report', 'need', 'access', 'run', 'top', 'customer', 'andend', 'markhtyets', 'reporting', 'tool', 'put', 'month', 'inf', 'mbr', 'report', 'quite', 'urgent', 'site', 'certified', 'content', 'view', 'mbrreporting', 'engineering', 'tool', 'topcustomersendmarkhtyets', 'iid'] processed_text: ['access', 'tablearu', 'top', 'customer', 'hello', 'prepare', 'monthly', 'inf', 'mbr', 'report', 'need', 'access', 'run', 'top', 'customer', 'andend', 'markhtyets', 'reporting', 'tool', 'put', 'month', 'inf', 'mbr', 'report', 'quite', 'urgent', 'site', 'certified', 'content', 'view', 'mbrreporting', 'engineering', 'tool', 'topcustomersendmarkhtyets', 'iid'] list_processed_text: [['access'], ['tablearu'], ['top'], ['customer'], ['hello'], ['prepare'], ['monthly'], ['inf'], ['mbr'], ['report'], ['need'], ['access'], ['run'], ['top'], ['customer'], ['andend'], ['markhtyets'], ['reporting'], ['tool'], ['put'], ['month'], ['inf'], ['mbr'], ['report'], ['quite'], ['urgent'], ['site'], ['certified'], ['content'], ['view'], ['mbrreporting'], ['engineering'], ['tool'], ['topcustomersendmarkhtyets'], ['iid']] k: 5450 len: <class 'list'> Data: ['configure', 'unit', 'standard', 'login', 'product', 'video', 'display', 'hi', 'information', 'reference', 'requested', 'help', 'set', 'standard', 'login', 'spare', 'laptop', 'company', 'product', 'video', 'display', 'tv', 'office', 'main', 'entrance', 'configuration', 'completed', 'sridhar'] processed_text: ['configure', 'unit', 'standard', 'login', 'product', 'video', 'display', 'hi', 'information', 'reference', 'requested', 'help', 'set', 'standard', 'login', 'spare', 'laptop', 'company', 'product', 'video', 'display', 'tv', 'office', 'main', 'entrance', 'configuration', 'completed', 'sridhar'] list_processed_text: [['configure'], ['unit'], ['standard'], ['login'], ['product'], ['video'], ['display'], ['hi'], ['information'], ['reference'], ['requested'], ['help'], ['set'], ['standard'], ['login'], ['spare'], ['laptop'], ['company'], ['product'], ['video'], ['display'], ['tv'], ['office'], ['main'], ['entrance'], ['configuration'], ['completed'], ['sridhar']] k: 5451 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'prtoru', 'hostname', 'prtor', 'hostname', 'prtor', 'hostname', 'detailed', 'description', 'problem', 'print', 'drviers', 'need', 'updated', 'updated', 'driver', 'state', 'error', 'processing', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'outlook', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'prtoru', 'hostname', 'prtor', 'hostname', 'prtor', 'hostname', 'detailed', 'description', 'problem', 'print', 'drviers', 'need', 'updated', 'updated', 'driver', 'state', 'error', 'processing', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'outlook', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['prtoru'], ['hostname'], ['prtor'], ['hostname'], ['prtor'], ['hostname'], ['detailed'], ['description'], ['problem'], ['print'], ['drviers'], ['need'], ['updated'], ['updated'], ['driver'], ['state'], ['error'], ['processing'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['outlook'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 5452 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 5453 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 5454 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 5455 len: <class 'list'> Data: ['ie', 'ie'] processed_text: ['ie', 'ie'] list_processed_text: [['ie'], ['ie']] k: 5456 len: <class 'list'> Data: ['recall', 'ticket', 'need', 'request', 'access', 'co', 'change', 'production', 'order', 'cgo', 'plant', 'riqmdnzs', 'mtlghwex', 'would', 'like', 'recall', 'message', 'ticket', 'need', 'request', 'access', 'co', 'change', 'production', 'order', 'cgo', 'plant'] processed_text: ['recall', 'ticket', 'need', 'request', 'access', 'co', 'change', 'production', 'order', 'cgo', 'plant', 'riqmdnzs', 'mtlghwex', 'would', 'like', 'recall', 'message', 'ticket', 'need', 'request', 'access', 'co', 'change', 'production', 'order', 'cgo', 'plant'] list_processed_text: [['recall'], ['ticket'], ['need'], ['request'], ['access'], ['co'], ['change'], ['production'], ['order'], ['cgo'], ['plant'], ['riqmdnzs'], ['mtlghwex'], ['would'], ['like'], ['recall'], ['message'], ['ticket'], ['need'], ['request'], ['access'], ['co'], ['change'], ['production'], ['order'], ['cgo'], ['plant']] k: 5457 len: <class 'list'> Data: ['spam', 'original', 'message', 'nwfodmhc', 'exurcwkm', 'umzcxfah', 'aoshpjiu', 'new', 'warehouse', 'toolmail', 'hi', 'marry', 'look', 'like', 'spam', 'mail', 'go', 'ahead', 'delete'] processed_text: ['spam', 'original', 'message', 'nwfodmhc', 'exurcwkm', 'umzcxfah', 'aoshpjiu', 'new', 'warehouse', 'toolmail', 'hi', 'marry', 'look', 'like', 'spam', 'mail', 'go', 'ahead', 'delete'] list_processed_text: [['spam'], ['original'], ['message'], ['nwfodmhc'], ['exurcwkm'], ['umzcxfah'], ['aoshpjiu'], ['new'], ['warehouse'], ['toolmail'], ['hi'], ['marry'], ['look'], ['like'], ['spam'], ['mail'], ['go'], ['ahead'], ['delete']] k: 5458 len: <class 'list'> Data: ['access', 'impact', 'award', 'hub', 'user', 'accees', 'impact', 'award', 'hub', 'parfgtkym', 'leegtysm'] processed_text: ['access', 'impact', 'award', 'hub', 'user', 'accees', 'impact', 'award', 'hub', 'parfgtkym', 'leegtysm'] list_processed_text: [['access'], ['impact'], ['award'], ['hub'], ['user'], ['accees'], ['impact'], ['award'], ['hub'], ['parfgtkym'], ['leegtysm']] k: 5459 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5460 len: <class 'list'> Data: ['llvw', 'shop', 'floor', 'print', 'station', 'noise', 'coming', 'cpu', 'sound', 'like', 'cooling', 'fan', 'hard', 'drive', 'going', 'bad', 'machine', 'located', 'ultra', 'wendt', 'contact'] processed_text: ['llvw', 'shop', 'floor', 'print', 'station', 'noise', 'coming', 'cpu', 'sound', 'like', 'cooling', 'fan', 'hard', 'drive', 'going', 'bad', 'machine', 'located', 'ultra', 'wendt', 'contact'] list_processed_text: [['llvw'], ['shop'], ['floor'], ['print'], ['station'], ['noise'], ['coming'], ['cpu'], ['sound'], ['like'], ['cooling'], ['fan'], ['hard'], ['drive'], ['going'], ['bad'], ['machine'], ['located'], ['ultra'], ['wendt'], ['contact']] k: 5461 len: <class 'list'> Data: ['rebate', 'agreement', 'create', 'partial', 'settlement', 'rebate', 'agreement', 'create', 'partial', 'settlement', 'transaction', 'vb', 'confirmed', 'agreement', 'specifically', 'sale', 'month', 'agreement', 'working', 'create', 'credit', 'without', 'fail', 'please', 'advise', 'could', 'cause', 'step', 'correct', 'please', 'also', 'note', 'process', 'worked', 'generate', 'document'] processed_text: ['rebate', 'agreement', 'create', 'partial', 'settlement', 'rebate', 'agreement', 'create', 'partial', 'settlement', 'transaction', 'vb', 'confirmed', 'agreement', 'specifically', 'sale', 'month', 'agreement', 'working', 'create', 'credit', 'without', 'fail', 'please', 'advise', 'could', 'cause', 'step', 'correct', 'please', 'also', 'note', 'process', 'worked', 'generate', 'document'] list_processed_text: [['rebate'], ['agreement'], ['create'], ['partial'], ['settlement'], ['rebate'], ['agreement'], ['create'], ['partial'], ['settlement'], ['transaction'], ['vb'], ['confirmed'], ['agreement'], ['specifically'], ['sale'], ['month'], ['agreement'], ['working'], ['create'], ['credit'], ['without'], ['fail'], ['please'], ['advise'], ['could'], ['cause'], ['step'], ['correct'], ['please'], ['also'], ['note'], ['process'], ['worked'], ['generate'], ['document']] k: 5462 len: <class 'list'> Data: ['engineering', 'tool', 'advance', 'search', 'material', 'group', 'select', 'come', 'result', 'picked', 'titanium', 'tial', 'material', 'come', 'result', 'along', 'titanium', 'material', 'also', 'kcu', 'grade', 'grade', 'field', 'search', 'drilling'] processed_text: ['engineering', 'tool', 'advance', 'search', 'material', 'group', 'select', 'come', 'result', 'picked', 'titanium', 'tial', 'material', 'come', 'result', 'along', 'titanium', 'material', 'also', 'kcu', 'grade', 'grade', 'field', 'search', 'drilling'] list_processed_text: [['engineering'], ['tool'], ['advance'], ['search'], ['material'], ['group'], ['select'], ['come'], ['result'], ['picked'], ['titanium'], ['tial'], ['material'], ['come'], ['result'], ['along'], ['titanium'], ['material'], ['also'], ['kcu'], ['grade'], ['grade'], ['field'], ['search'], ['drilling']] k: 5463 len: <class 'list'> Data: ['file', 'collaboration', 'platform', 'dierppeared', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'craigfgh', 'arjpdohf', 'mrqwdtil', 'hi', 'rakthyesh', 'ramdntythanjesh'] processed_text: ['file', 'collaboration', 'platform', 'dierppeared', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'craigfgh', 'arjpdohf', 'mrqwdtil', 'hi', 'rakthyesh', 'ramdntythanjesh'] list_processed_text: [['file'], ['collaboration'], ['platform'], ['dierppeared'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['craigfgh'], ['arjpdohf'], ['mrqwdtil'], ['hi'], ['rakthyesh'], ['ramdntythanjesh']] k: 5464 len: <class 'list'> Data: ['sql', 'quote', 'company', 'internal', 'project', 'agathon', 'machine', 'hi', 'get', 'update'] processed_text: ['sql', 'quote', 'company', 'internal', 'project', 'agathon', 'machine', 'hi', 'get', 'update'] list_processed_text: [['sql'], ['quote'], ['company'], ['internal'], ['project'], ['agathon'], ['machine'], ['hi'], ['get'], ['update']] k: 5465 len: <class 'list'> Data: ['trying', 'refresh', 'report', 'getting', 'pop', 'say', 'hana', 'odbc', 'driver', 'found', 'trying', 'refresh', 'report', 'getting', 'pop', 'say', 'hana', 'odbc', 'driver', 'found'] processed_text: ['trying', 'refresh', 'report', 'getting', 'pop', 'say', 'hana', 'odbc', 'driver', 'found', 'trying', 'refresh', 'report', 'getting', 'pop', 'say', 'hana', 'odbc', 'driver', 'found'] list_processed_text: [['trying'], ['refresh'], ['report'], ['getting'], ['pop'], ['say'], ['hana'], ['odbc'], ['driver'], ['found'], ['trying'], ['refresh'], ['report'], ['getting'], ['pop'], ['say'], ['hana'], ['odbc'], ['driver'], ['found']] k: 5466 len: <class 'list'> Data: ['circuit', 'outage', 'secondary', 'node', 'company', 'na', 'usa', 'usa', 'dmvpn', 'rtr', 'company', 'com', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'secondary', 'node', 'company', 'na', 'usa', 'usa', 'dmvpn', 'rtr', 'company', 'com', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['secondary'], ['node'], ['company'], ['na'], ['usa'], ['usa'], ['dmvpn'], ['rtr'], ['company'], ['com'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5467 len: <class 'list'> Data: ['mapping', 'printer', 'mapping', 'printer'] processed_text: ['mapping', 'printer', 'mapping', 'printer'] list_processed_text: [['mapping'], ['printer'], ['mapping'], ['printer']] k: 5468 len: <class 'list'> Data: ['dsw', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'tor', 'ssl', 'server', 'certificate', 'detected', 'inbound', 'alert', 'occurred', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'indicating', 'generating', 'tor', 'traffic', 'please', 'note', 'depending', 'placement', 'isensor', 'company', 'com', 'possibility', 'eszl', 'nated', 'host', 'case', 'please', 'examine', 'nat', 'log', 'determine', 'true', 'destination', 'activity', 'wish', 'alerted', 'event', 'please', 'let', 'u', 'know', 'automatically', 'resolve', 'alert', 'destined', 'nated', 'host', 'tor', 'activity', 'immediately', 'indicate', 'malicious', 'activity', 'however', 'presence', 'anonymizing', 'software', 'investigated', 'determine', 'authorized', 'expected', 'activity', 'tor', 'activity', 'indicates', 'possible', 'policy', 'violation', 'turn', 'could', 'lead', 'potential', 'compromise', 'tor', 'increasingly', 'used', 'malware', 'therefore', 'tor', 'activity', 'also', 'indicate', 'malware', 'infection', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'handling', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'anonymous', 'communication', 'traffic', 'tor', 'etc', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'anonymous', 'communication', 'traffic', 'tor', 'etc', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'soc'] processed_text: ['dsw', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'tor', 'ssl', 'server', 'certificate', 'detected', 'inbound', 'alert', 'occurred', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'indicating', 'generating', 'tor', 'traffic', 'please', 'note', 'depending', 'placement', 'isensor', 'company', 'com', 'possibility', 'eszl', 'nated', 'host', 'case', 'please', 'examine', 'nat', 'log', 'determine', 'true', 'destination', 'activity', 'wish', 'alerted', 'event', 'please', 'let', 'u', 'know', 'automatically', 'resolve', 'alert', 'destined', 'nated', 'host', 'tor', 'activity', 'immediately', 'indicate', 'malicious', 'activity', 'however', 'presence', 'anonymizing', 'software', 'investigated', 'determine', 'authorized', 'expected', 'activity', 'tor', 'activity', 'indicates', 'possible', 'policy', 'violation', 'turn', 'could', 'lead', 'potential', 'compromise', 'tor', 'increasingly', 'used', 'malware', 'therefore', 'tor', 'activity', 'also', 'indicate', 'malware', 'infection', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'handling', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'anonymous', 'communication', 'traffic', 'tor', 'etc', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'anonymous', 'communication', 'traffic', 'tor', 'etc', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'soc'] list_processed_text: [['dsw'], ['seeing'], ['isensor'], ['company'], ['com'], ['device'], ['generating'], ['vid'], ['tor'], ['ssl'], ['server'], ['certificate'], ['detected'], ['inbound'], ['alert'], ['occurred'], ['traffic'], ['blocked'], ['port'], ['tcp'], ['port'], ['tcp'], ['indicating'], ['generating'], ['tor'], ['traffic'], ['please'], ['note'], ['depending'], ['placement'], ['isensor'], ['company'], ['com'], ['possibility'], ['eszl'], ['nated'], ['host'], ['case'], ['please'], ['examine'], ['nat'], ['log'], ['determine'], ['true'], ['destination'], ['activity'], ['wish'], ['alerted'], ['event'], ['please'], ['let'], ['u'], ['know'], ['automatically'], ['resolve'], ['alert'], ['destined'], ['nated'], ['host'], ['tor'], ['activity'], ['immediately'], ['indicate'], ['malicious'], ['activity'], ['however'], ['presence'], ['anonymizing'], ['software'], ['investigated'], ['determine'], ['authorized'], ['expected'], ['activity'], ['tor'], ['activity'], ['indicates'], ['possible'], ['policy'], ['violation'], ['turn'], ['could'], ['lead'], ['potential'], ['compromise'], ['tor'], ['increasingly'], ['used'], ['malware'], ['therefore'], ['tor'], ['activity'], ['also'], ['indicate'], ['malware'], ['infection'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['handling'], ['policy'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['anonymous'], ['communication'], ['traffic'], ['tor'], ['etc'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['anonymous'], ['communication'], ['traffic'], ['tor'], ['etc'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['dell'], ['soc']] k: 5469 len: <class 'list'> Data: ['incident', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'dane', 'williuthyr', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'alert', 'traffic', 'dane', 'williuthyr', 'external', 'ip', 'address', 'beshryulisted', 'counter', 'threat', 'unit', 'ctu', 'team', 'due', 'association', 'malware', 'phishing', 'form', 'submit', 'outbound', 'affected', 'asset', 'investigated', 'traffic', 'beshryulisted', 'ip', 'address', 'indicate', 'host', 'infected', 'malware', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'mail', 'notification', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'full', 'escalation', 'related', 'event', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'event', 'id', 'event', 'summary', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'source', 'mac', 'address', 'eb', 'db', 'destination', 'ip', 'destination', 'hostname', 'ip', 'ip', 'secureserver', 'net', 'destination', 'ip', 'geolocation', 'schtrtgoyhtsdale', 'usa', 'connection', 'directionality', 'outgoing', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'built', 'outbound', 'tcp', 'connection', 'outside', 'inside', 'correlation', 'data', 'dhcpd', 'dhcpack', 'eb', 'db', 'dane', 'williuthyr', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'take', 'action', 'ticket', 'action'] processed_text: ['incident', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'dane', 'williuthyr', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'alert', 'traffic', 'dane', 'williuthyr', 'external', 'ip', 'address', 'beshryulisted', 'counter', 'threat', 'unit', 'ctu', 'team', 'due', 'association', 'malware', 'phishing', 'form', 'submit', 'outbound', 'affected', 'asset', 'investigated', 'traffic', 'beshryulisted', 'ip', 'address', 'indicate', 'host', 'infected', 'malware', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'mail', 'notification', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'full', 'escalation', 'related', 'event', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'ctoc', 'event', 'data', 'event', 'id', 'event', 'summary', 'ipbl', 'phishing', 'form', 'submit', 'outbound', 'beshryulisted', 'ip', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'dane', 'williuthyr', 'source', 'mac', 'address', 'eb', 'db', 'destination', 'ip', 'destination', 'hostname', 'ip', 'ip', 'secureserver', 'net', 'destination', 'ip', 'geolocation', 'schtrtgoyhtsdale', 'usa', 'connection', 'directionality', 'outgoing', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'built', 'outbound', 'tcp', 'connection', 'outside', 'inside', 'correlation', 'data', 'dhcpd', 'dhcpack', 'eb', 'db', 'dane', 'williuthyr', 'via', 'eth', 'relay', 'lease', 'duration', 'renew', 'take', 'action', 'ticket', 'action'] list_processed_text: [['incident'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['dane'], ['williuthyr'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['ipbl'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['alert'], ['traffic'], ['dane'], ['williuthyr'], ['external'], ['ip'], ['address'], ['beshryulisted'], ['counter'], ['threat'], ['unit'], ['ctu'], ['team'], ['due'], ['association'], ['malware'], ['phishing'], ['form'], ['submit'], ['outbound'], ['affected'], ['asset'], ['investigated'], ['traffic'], ['beshryulisted'], ['ip'], ['address'], ['indicate'], ['host'], ['infected'], ['malware'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['full'], ['escalation'], ['related'], ['event'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['ctoc'], ['event'], ['data'], ['event'], ['id'], ['event'], ['summary'], ['ipbl'], ['phishing'], ['form'], ['submit'], ['outbound'], ['beshryulisted'], ['ip'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['dane'], ['williuthyr'], ['source'], ['mac'], ['address'], ['eb'], ['db'], ['destination'], ['ip'], ['destination'], ['hostname'], ['ip'], ['ip'], ['secureserver'], ['net'], ['destination'], ['ip'], ['geolocation'], ['schtrtgoyhtsdale'], ['usa'], ['connection'], ['directionality'], ['outgoing'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['built'], ['outbound'], ['tcp'], ['connection'], ['outside'], ['inside'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['eb'], ['db'], ['dane'], ['williuthyr'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['renew'], ['take'], ['action'], ['ticket'], ['action']] k: 5470 len: <class 'list'> Data: ['skype', 'curhetyu', 'rack', 'pc', 'working', 'allowing', 'connect', 'seems', 'work', 'others', 'skype', 'curhetyu', 'rack', 'pc', 'working', 'allowing', 'connect', 'seems', 'work', 'others'] processed_text: ['skype', 'curhetyu', 'rack', 'pc', 'working', 'allowing', 'connect', 'seems', 'work', 'others', 'skype', 'curhetyu', 'rack', 'pc', 'working', 'allowing', 'connect', 'seems', 'work', 'others'] list_processed_text: [['skype'], ['curhetyu'], ['rack'], ['pc'], ['working'], ['allowing'], ['connect'], ['seems'], ['work'], ['others'], ['skype'], ['curhetyu'], ['rack'], ['pc'], ['working'], ['allowing'], ['connect'], ['seems'], ['work'], ['others']] k: 5471 len: <class 'list'> Data: ['dsw', 'dsw', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'openvas', 'vulnerability', 'scanner', 'user', 'agent', 'detected', 'inbound', 'alert', 'allowed', 'traffic', 'port', 'tcp', 'port', 'tcp', 'traffic', 'indicates', 'using', 'openvas', 'scanner', 'indicated', 'event', 'detail', 'blocking', 'source', 'ip', 'address', 'necessarily', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'targeted', 'host', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address'] processed_text: ['dsw', 'dsw', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'openvas', 'vulnerability', 'scanner', 'user', 'agent', 'detected', 'inbound', 'alert', 'allowed', 'traffic', 'port', 'tcp', 'port', 'tcp', 'traffic', 'indicates', 'using', 'openvas', 'scanner', 'indicated', 'event', 'detail', 'blocking', 'source', 'ip', 'address', 'necessarily', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'targeted', 'host', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'alert', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'alert', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address'] list_processed_text: [['dsw'], ['dsw'], ['seeing'], ['isensor'], ['company'], ['com'], ['device'], ['generating'], ['vid'], ['openvas'], ['vulnerability'], ['scanner'], ['user'], ['agent'], ['detected'], ['inbound'], ['alert'], ['allowed'], ['traffic'], ['port'], ['tcp'], ['port'], ['tcp'], ['traffic'], ['indicates'], ['using'], ['openvas'], ['scanner'], ['indicated'], ['event'], ['detail'], ['blocking'], ['source'], ['ip'], ['address'], ['necessarily'], ['productive'], ['due'], ['attacker'], ['ability'], ['switch'], ['ip'], ['address'], ['use'], ['proxy'], ['anonymizing'], ['software'], ['tor'], ['vpns'], ['please'], ['investigate'], ['targeted'], ['host'], ['determine'], ['whether'], ['running'], ['vulnerable'], ['version'], ['application'], ['targeted'], ['ticket'], ['effectively'], ['serve'], ['master'], ['ticket'], ['related'], ['alert'], ['receive'], ['feedback'], ['handle'], ['event'], ['going'], ['forward'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['number'], ['option'], ['available'], ['handling'], ['future'], ['alert'], ['one'], ['autoresolve'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['ticket'], ['escalation'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['alert'], ['full'], ['escalation'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address']] k: 5472 len: <class 'list'> Data: ['possible', 'vulnerability', 'scan', 'host', 'tss', 'com', 'isensplant', 'dmz', 'dsw', 'seeing', 'isensplant', 'company', 'com', 'device', 'generating', 'possible', 'scan', 'alert', 'traffic', 'blocked', 'host', 'indicating', 'performing', 'vulnerability', 'scan', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'prior', 'request', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'vulnerability', 'scan', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'vulnerability', 'scan', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'possible', 'scan', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'host', 'tss', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'tarzana', 'usa', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'http', 'method', 'get', 'host', 'full', 'url', 'path', 'global', 'asa', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'observation', 'rule', 'id', 'ile', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'event', 'indicates', 'single', 'source', 'generating', 'event', 'summary', 'total', 'occurrence', 'minute', 'window', 'occ', 'time', 'source', 'destination', 'summary', 'vid', 'fx', 'scanner', 'global', 'asa', 'sourcecode', 'access', 'attempt', 'inbound', 'vid', 'fx', 'scanner', 'global', 'asa', 'sourcecode', 'access', 'attempt', 'inbound', 'visid', 'http', 'post', 'phpinfo', 'inbound', 'visid', 'http', 'post', 'phpinfo', 'inbound', 'vid', 'generirtc', 'http', 'header', 'x', 'inbound', 'vid', 'generirtc', 'http', 'header', 'x', 'inbound'] processed_text: ['possible', 'vulnerability', 'scan', 'host', 'tss', 'com', 'isensplant', 'dmz', 'dsw', 'seeing', 'isensplant', 'company', 'com', 'device', 'generating', 'possible', 'scan', 'alert', 'traffic', 'blocked', 'host', 'indicating', 'performing', 'vulnerability', 'scan', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'prior', 'request', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'vulnerability', 'scan', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'vulnerability', 'scan', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'possible', 'scan', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'host', 'tss', 'com', 'source', 'port', 'source', 'ip', 'geolocation', 'tarzana', 'usa', 'destination', 'port', 'destination', 'ip', 'geolocation', 'usa', 'usa', 'connection', 'directionality', 'incoming', 'http', 'method', 'get', 'host', 'full', 'url', 'path', 'global', 'asa', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'observation', 'rule', 'id', 'ile', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'event', 'indicates', 'single', 'source', 'generating', 'event', 'summary', 'total', 'occurrence', 'minute', 'window', 'occ', 'time', 'source', 'destination', 'summary', 'vid', 'fx', 'scanner', 'global', 'asa', 'sourcecode', 'access', 'attempt', 'inbound', 'vid', 'fx', 'scanner', 'global', 'asa', 'sourcecode', 'access', 'attempt', 'inbound', 'visid', 'http', 'post', 'phpinfo', 'inbound', 'visid', 'http', 'post', 'phpinfo', 'inbound', 'vid', 'generirtc', 'http', 'header', 'x', 'inbound', 'vid', 'generirtc', 'http', 'header', 'x', 'inbound'] list_processed_text: [['possible'], ['vulnerability'], ['scan'], ['host'], ['tss'], ['com'], ['isensplant'], ['dmz'], ['dsw'], ['seeing'], ['isensplant'], ['company'], ['com'], ['device'], ['generating'], ['possible'], ['scan'], ['alert'], ['traffic'], ['blocked'], ['host'], ['indicating'], ['performing'], ['vulnerability'], ['scan'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['prior'], ['request'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['vulnerability'], ['scan'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['vulnerability'], ['scan'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['possible'], ['scan'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['host'], ['tss'], ['com'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['tarzana'], ['usa'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['usa'], ['usa'], ['connection'], ['directionality'], ['incoming'], ['http'], ['method'], ['get'], ['host'], ['full'], ['url'], ['path'], ['global'], ['asa'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensplant'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['vendor'], ['reference'], ['vid'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['observation'], ['rule'], ['id'], ['ile'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['event'], ['indicates'], ['single'], ['source'], ['generating'], ['event'], ['summary'], ['total'], ['occurrence'], ['minute'], ['window'], ['occ'], ['time'], ['source'], ['destination'], ['summary'], ['vid'], ['fx'], ['scanner'], ['global'], ['asa'], ['sourcecode'], ['access'], ['attempt'], ['inbound'], ['vid'], ['fx'], ['scanner'], ['global'], ['asa'], ['sourcecode'], ['access'], ['attempt'], ['inbound'], ['visid'], ['http'], ['post'], ['phpinfo'], ['inbound'], ['visid'], ['http'], ['post'], ['phpinfo'], ['inbound'], ['vid'], ['generirtc'], ['http'], ['header'], ['x'], ['inbound'], ['vid'], ['generirtc'], ['http'], ['header'], ['x'], ['inbound']] k: 5473 len: <class 'list'> Data: ['nmpworvu', 'upgtrvnj', 'monitor', 'display', 'issue', 'nmpworvu', 'upgtrvnj', 'monitor', 'display', 'issue'] processed_text: ['nmpworvu', 'upgtrvnj', 'monitor', 'display', 'issue', 'nmpworvu', 'upgtrvnj', 'monitor', 'display', 'issue'] list_processed_text: [['nmpworvu'], ['upgtrvnj'], ['monitor'], ['display'], ['issue'], ['nmpworvu'], ['upgtrvnj'], ['monitor'], ['display'], ['issue']] k: 5474 len: <class 'list'> Data: ['password', 'chaning', 'window', 'company', 'password', 'chaning', 'window', 'company'] processed_text: ['password', 'chaning', 'window', 'company', 'password', 'chaning', 'window', 'company'] list_processed_text: [['password'], ['chaning'], ['window'], ['company'], ['password'], ['chaning'], ['window'], ['company']] k: 5475 len: <class 'list'> Data: ['connect', 'network', 'pc', 'inspection', 'room', 'look', 'getting', 'pc', 'network', 'inspection', 'room', 'dept', 'would', 'nice', 'able', 'share', 'image', 'pc'] processed_text: ['connect', 'network', 'pc', 'inspection', 'room', 'look', 'getting', 'pc', 'network', 'inspection', 'room', 'dept', 'would', 'nice', 'able', 'share', 'image', 'pc'] list_processed_text: [['connect'], ['network'], ['pc'], ['inspection'], ['room'], ['look'], ['getting'], ['pc'], ['network'], ['inspection'], ['room'], ['dept'], ['would'], ['nice'], ['able'], ['share'], ['image'], ['pc']] k: 5476 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 5477 len: <class 'list'> Data: ['inquiry', 'hr', 'tool', 'site', 'single', 'sign', 'inquiry', 'hr', 'tool', 'site', 'single', 'sign'] processed_text: ['inquiry', 'hr', 'tool', 'site', 'single', 'sign', 'inquiry', 'hr', 'tool', 'site', 'single', 'sign'] list_processed_text: [['inquiry'], ['hr'], ['tool'], ['site'], ['single'], ['sign'], ['inquiry'], ['hr'], ['tool'], ['site'], ['single'], ['sign']] k: 5478 len: <class 'list'> Data: ['high', 'priority', 'laptop', 'monitor', 'gone', 'bad', 'unable', 'see', 'screen', 'completely', 'beshryu', 'please', 'give', 'high', 'priority', 'since', 'user', 'traveling', 'service', 'tag', 'qp', 'ph'] processed_text: ['high', 'priority', 'laptop', 'monitor', 'gone', 'bad', 'unable', 'see', 'screen', 'completely', 'beshryu', 'please', 'give', 'high', 'priority', 'since', 'user', 'traveling', 'service', 'tag', 'qp', 'ph'] list_processed_text: [['high'], ['priority'], ['laptop'], ['monitor'], ['gone'], ['bad'], ['unable'], ['see'], ['screen'], ['completely'], ['beshryu'], ['please'], ['give'], ['high'], ['priority'], ['since'], ['user'], ['traveling'], ['service'], ['tag'], ['qp'], ['ph']] k: 5479 len: <class 'list'> Data: ['need', 'keybankrd', 'system', 'tray', 'need', 'picture', 'keybankrd', 'need', 'keybankrd', 'system', 'tray', 'need', 'picture', 'keybankrd', 'helped', 'user', 'enabling', 'keybankrd', 'system', 'tray', 'preferred', 'language', 'set', 'picture', 'hence', 'per', 'user', 'request', 'assigning', 'local', 'contact'] processed_text: ['need', 'keybankrd', 'system', 'tray', 'need', 'picture', 'keybankrd', 'need', 'keybankrd', 'system', 'tray', 'need', 'picture', 'keybankrd', 'helped', 'user', 'enabling', 'keybankrd', 'system', 'tray', 'preferred', 'language', 'set', 'picture', 'hence', 'per', 'user', 'request', 'assigning', 'local', 'contact'] list_processed_text: [['need'], ['keybankrd'], ['system'], ['tray'], ['need'], ['picture'], ['keybankrd'], ['need'], ['keybankrd'], ['system'], ['tray'], ['need'], ['picture'], ['keybankrd'], ['helped'], ['user'], ['enabling'], ['keybankrd'], ['system'], ['tray'], ['preferred'], ['language'], ['set'], ['picture'], ['hence'], ['per'], ['user'], ['request'], ['assigning'], ['local'], ['contact']] k: 5480 len: <class 'list'> Data: ['company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'power', 'supply', 'issue', 'internal', 'power', 'supply', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'showing', 'faulty', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'sh', 'env', 'fan', 'ok', 'temperature', 'ok', 'power', 'faulty', 'rps', 'present'] processed_text: ['company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'power', 'supply', 'issue', 'internal', 'power', 'supply', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'office', 'access', 'sw', 'showing', 'faulty', 'company', 'eu', 'deu', 'germany', 'b', 'new', 'sh', 'env', 'fan', 'ok', 'temperature', 'ok', 'power', 'faulty', 'rps', 'present'] list_processed_text: [['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['office'], ['access'], ['sw'], ['power'], ['supply'], ['issue'], ['internal'], ['power'], ['supply'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['office'], ['access'], ['sw'], ['showing'], ['faulty'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['new'], ['sh'], ['env'], ['fan'], ['ok'], ['temperature'], ['ok'], ['power'], ['faulty'], ['rps'], ['present']] k: 5481 len: <class 'list'> Data: ['unable', 'log', 'hub', 'es', 'portal', 'unable', 'log', 'hub', 'es', 'portal'] processed_text: ['unable', 'log', 'hub', 'es', 'portal', 'unable', 'log', 'hub', 'es', 'portal'] list_processed_text: [['unable'], ['log'], ['hub'], ['es'], ['portal'], ['unable'], ['log'], ['hub'], ['es'], ['portal']] k: 5482 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue'] processed_text: ['engineering', 'tool', 'issue', 'engineering', 'tool', 'issue'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['engineering'], ['tool'], ['issue']] k: 5483 len: <class 'list'> Data: ['erp', 'account', 'haunm', 'keep', 'locking', 'unlock', 'please', 'sid', 'erp', 'account', 'haunm', 'keep', 'locking', 'unlock', 'please', 'sid'] processed_text: ['erp', 'account', 'haunm', 'keep', 'locking', 'unlock', 'please', 'sid', 'erp', 'account', 'haunm', 'keep', 'locking', 'unlock', 'please', 'sid'] list_processed_text: [['erp'], ['account'], ['haunm'], ['keep'], ['locking'], ['unlock'], ['please'], ['sid'], ['erp'], ['account'], ['haunm'], ['keep'], ['locking'], ['unlock'], ['please'], ['sid']] k: 5484 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'engineering', 'tool', 'issue', 'zdsxmcwu', 'thdjzolwronization'] processed_text: ['engineering', 'tool', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'engineering', 'tool', 'issue', 'zdsxmcwu', 'thdjzolwronization'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['zdsxmcwu'], ['thdjzolwronization'], ['engineering'], ['tool'], ['issue'], ['zdsxmcwu'], ['thdjzolwronization']] k: 5485 len: <class 'list'> Data: ['request', 'company', 'com', 'email', 'address', 'jertyur', 'hanna', 'pm', 'efbwiadp', 'dicafxhv', 'company', 'email', 'address', 'request', 'sqmabtwn', 'fchijage', 'approved'] processed_text: ['request', 'company', 'com', 'email', 'address', 'jertyur', 'hanna', 'pm', 'efbwiadp', 'dicafxhv', 'company', 'email', 'address', 'request', 'sqmabtwn', 'fchijage', 'approved'] list_processed_text: [['request'], ['company'], ['com'], ['email'], ['address'], ['jertyur'], ['hanna'], ['pm'], ['efbwiadp'], ['dicafxhv'], ['company'], ['email'], ['address'], ['request'], ['sqmabtwn'], ['fchijage'], ['approved']] k: 5486 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 5487 len: <class 'list'> Data: ['reset', 'password', 'browse', 'daypay', 'reset', 'password', 'daypay'] processed_text: ['reset', 'password', 'browse', 'daypay', 'reset', 'password', 'daypay'] list_processed_text: [['reset'], ['password'], ['browse'], ['daypay'], ['reset'], ['password'], ['daypay']] k: 5488 len: <class 'list'> Data: ['hanna', 'report', 'access', 'hello', 'seem', 'lost', 'access', 'hanna', 'report', 'go', 'analysis', 'excel', 'take', 'general', 'excel', 'menu', 'choose', 'new', 'sheet', 'analysis', 'tab', 'missing', 'need', 'something', 'get', 'access', 'back'] processed_text: ['hanna', 'report', 'access', 'hello', 'seem', 'lost', 'access', 'hanna', 'report', 'go', 'analysis', 'excel', 'take', 'general', 'excel', 'menu', 'choose', 'new', 'sheet', 'analysis', 'tab', 'missing', 'need', 'something', 'get', 'access', 'back'] list_processed_text: [['hanna'], ['report'], ['access'], ['hello'], ['seem'], ['lost'], ['access'], ['hanna'], ['report'], ['go'], ['analysis'], ['excel'], ['take'], ['general'], ['excel'], ['menu'], ['choose'], ['new'], ['sheet'], ['analysis'], ['tab'], ['missing'], ['need'], ['something'], ['get'], ['access'], ['back']] k: 5489 len: <class 'list'> Data: ['ie', 'went', 'legitmate', 'website', 'summary', 'internet', 'pop', 'reported', 'microsoft', 'registry', 'failure', 'operating', 'system'] processed_text: ['ie', 'went', 'legitmate', 'website', 'summary', 'internet', 'pop', 'reported', 'microsoft', 'registry', 'failure', 'operating', 'system'] list_processed_text: [['ie'], ['went'], ['legitmate'], ['website'], ['summary'], ['internet'], ['pop'], ['reported'], ['microsoft'], ['registry'], ['failure'], ['operating'], ['system']] k: 5490 len: <class 'list'> Data: ['synchronization', 'exchange', 'activesync', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator'] processed_text: ['synchronization', 'exchange', 'activesync', 'synchronization', 'exchange', 'activesync', 'temporarily', 'blocked', 'ger', 'access', 'granted', 'administrator'] list_processed_text: [['synchronization'], ['exchange'], ['activesync'], ['synchronization'], ['exchange'], ['activesync'], ['temporarily'], ['blocked'], ['ger'], ['access'], ['granted'], ['administrator']] k: 5491 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5492 len: <class 'list'> Data: ['skype', 'audio', 'work', 'skype', 'audio', 'work'] processed_text: ['skype', 'audio', 'work', 'skype', 'audio', 'work'] list_processed_text: [['skype'], ['audio'], ['work'], ['skype'], ['audio'], ['work']] k: 5493 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 5494 len: <class 'list'> Data: ['network', 'outage', 'usa', 'mi', 'site', 'hard', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'mi', 'site', 'hard', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['mi'], ['site'], ['hard'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5495 len: <class 'list'> Data: ['sending', 'email', 'corp', 'ebusiness', 'service', 'sent', 'email', 'show', 'personal', 'sent', 'folder', 'contact', 'summary', 'sending', 'email', 'corp', 'ebusiness', 'service', 'sent', 'email', 'show', 'personal', 'sent', 'folder', 'ebusiness', 'sent', 'folder', 'user', 'company', 'ebusiness', 'email', 'box'] processed_text: ['sending', 'email', 'corp', 'ebusiness', 'service', 'sent', 'email', 'show', 'personal', 'sent', 'folder', 'contact', 'summary', 'sending', 'email', 'corp', 'ebusiness', 'service', 'sent', 'email', 'show', 'personal', 'sent', 'folder', 'ebusiness', 'sent', 'folder', 'user', 'company', 'ebusiness', 'email', 'box'] list_processed_text: [['sending'], ['email'], ['corp'], ['ebusiness'], ['service'], ['sent'], ['email'], ['show'], ['personal'], ['sent'], ['folder'], ['contact'], ['summary'], ['sending'], ['email'], ['corp'], ['ebusiness'], ['service'], ['sent'], ['email'], ['show'], ['personal'], ['sent'], ['folder'], ['ebusiness'], ['sent'], ['folder'], ['user'], ['company'], ['ebusiness'], ['email'], ['box']] k: 5496 len: <class 'list'> Data: ['av', 'system', 'usa', 'please', 'provide', 'support', 'uacyltoe', 'hxgayczeing', 'new', 'av', 'system', 'main', 'training', 'room', 'usa', 'need', 'uacyltoe', 'hxgaycze', 'system', 'complete', 'finial', 'sign', 'vendor'] processed_text: ['av', 'system', 'usa', 'please', 'provide', 'support', 'uacyltoe', 'hxgayczeing', 'new', 'av', 'system', 'main', 'training', 'room', 'usa', 'need', 'uacyltoe', 'hxgaycze', 'system', 'complete', 'finial', 'sign', 'vendor'] list_processed_text: [['av'], ['system'], ['usa'], ['please'], ['provide'], ['support'], ['uacyltoe'], ['hxgayczeing'], ['new'], ['av'], ['system'], ['main'], ['training'], ['room'], ['usa'], ['need'], ['uacyltoe'], ['hxgaycze'], ['system'], ['complete'], ['finial'], ['sign'], ['vendor']] k: 5497 len: <class 'list'> Data: ['ie', 'working', 'ie', 'working'] processed_text: ['ie', 'working', 'ie', 'working'] list_processed_text: [['ie'], ['working'], ['ie'], ['working']] k: 5498 len: <class 'list'> Data: ['hard', 'disk', 'failure', 'esxi', 'host', 'atjsv', 'hard', 'disk', 'failure', 'esxi', 'host', 'atjsv'] processed_text: ['hard', 'disk', 'failure', 'esxi', 'host', 'atjsv', 'hard', 'disk', 'failure', 'esxi', 'host', 'atjsv'] list_processed_text: [['hard'], ['disk'], ['failure'], ['esxi'], ['host'], ['atjsv'], ['hard'], ['disk'], ['failure'], ['esxi'], ['host'], ['atjsv']] k: 5499 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 5500 len: <class 'list'> Data: ['hostname', 'kirty', 'plm', 'conversion', 'production', 'disk', 'free', 'hostname', 'kirty', 'plm', 'conversion', 'production', 'disk', 'free'] processed_text: ['hostname', 'kirty', 'plm', 'conversion', 'production', 'disk', 'free', 'hostname', 'kirty', 'plm', 'conversion', 'production', 'disk', 'free'] list_processed_text: [['hostname'], ['kirty'], ['plm'], ['conversion'], ['production'], ['disk'], ['free'], ['hostname'], ['kirty'], ['plm'], ['conversion'], ['production'], ['disk'], ['free']] k: 5501 len: <class 'list'> Data: ['log', 'balancing', 'error', 'even', 'connecting', 'vpn', 'log', 'balancing', 'error', 'even', 'connecting', 'vpn'] processed_text: ['log', 'balancing', 'error', 'even', 'connecting', 'vpn', 'log', 'balancing', 'error', 'even', 'connecting', 'vpn'] list_processed_text: [['log'], ['balancing'], ['error'], ['even'], ['connecting'], ['vpn'], ['log'], ['balancing'], ['error'], ['even'], ['connecting'], ['vpn']] k: 5502 len: <class 'list'> Data: ['email', 'open', 'desktop', 'email', 'open', 'wxnetroc', 'yecbmliq', 'sent', 'ipad'] processed_text: ['email', 'open', 'desktop', 'email', 'open', 'wxnetroc', 'yecbmliq', 'sent', 'ipad'] list_processed_text: [['email'], ['open'], ['desktop'], ['email'], ['open'], ['wxnetroc'], ['yecbmliq'], ['sent'], ['ipad']] k: 5503 len: <class 'list'> Data: ['m', 'office', 'upgrade', 'm', 'office', 'upgrade'] processed_text: ['m', 'office', 'upgrade', 'm', 'office', 'upgrade'] list_processed_text: [['m'], ['office'], ['upgrade'], ['m'], ['office'], ['upgrade']] k: 5504 len: <class 'list'> Data: ['outlook', 'issue', 'slow', 'outlook', 'running', 'slow'] processed_text: ['outlook', 'issue', 'slow', 'outlook', 'running', 'slow'] list_processed_text: [['outlook'], ['issue'], ['slow'], ['outlook'], ['running'], ['slow']] k: 5505 len: <class 'list'> Data: ['network', 'outage', 'india', 'site', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'site', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['site'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5506 len: <class 'list'> Data: ['printer', 'driver', 'installation', 'name', 'rohntyub', 'dfhtyuison', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'issue', 'printing', 'regular', 'printer', 'get', 'error', 'saying', 'page', 'selected', 'sometimes', 'prompted', 'download', 'new', 'driver'] processed_text: ['printer', 'driver', 'installation', 'name', 'rohntyub', 'dfhtyuison', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'issue', 'printing', 'regular', 'printer', 'get', 'error', 'saying', 'page', 'selected', 'sometimes', 'prompted', 'download', 'new', 'driver'] list_processed_text: [['printer'], ['driver'], ['installation'], ['name'], ['rohntyub'], ['dfhtyuison'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['issue'], ['printing'], ['regular'], ['printer'], ['get'], ['error'], ['saying'], ['page'], ['selected'], ['sometimes'], ['prompted'], ['download'], ['new'], ['driver']] k: 5507 len: <class 'list'> Data: ['po', 'hello', 'item', 'linked', 'finished', 'material', 'one', 'time', 'showed', 'po', 'please', 'help', 'check'] processed_text: ['po', 'hello', 'item', 'linked', 'finished', 'material', 'one', 'time', 'showed', 'po', 'please', 'help', 'check'] list_processed_text: [['po'], ['hello'], ['item'], ['linked'], ['finished'], ['material'], ['one'], ['time'], ['showed'], ['po'], ['please'], ['help'], ['check']] k: 5508 len: <class 'list'> Data: ['zcor', 'report', 'work', 'critical', 'financial', 'close', 'transaction', 'report', 'zcor', 'ran', 'producing', 'data', 'sa', 'report', 'critical', 'financial', 'close'] processed_text: ['zcor', 'report', 'work', 'critical', 'financial', 'close', 'transaction', 'report', 'zcor', 'ran', 'producing', 'data', 'sa', 'report', 'critical', 'financial', 'close'] list_processed_text: [['zcor'], ['report'], ['work'], ['critical'], ['financial'], ['close'], ['transaction'], ['report'], ['zcor'], ['ran'], ['producing'], ['data'], ['sa'], ['report'], ['critical'], ['financial'], ['close']] k: 5509 len: <class 'list'> Data: ['password', 'reset', 'work', 'iehs', 'ticket', 'aorthyme', 'rnsuipbk', 'pm', 'ndkrcxjb', 'hpormqtx', 'ugyothfz', 'ugrmkdhx', 'password', 'reset', 'work', 'iehs', 'ticket', 'hello', 'mr', 'roesshnktler', 'trouble', 'reset', 'password', 'whenever', 'trying', 'reset', 'password', 'say', 'password', 'sent', 'provided', 'email', 'address', 'receive', 'password', 'mail', 'checked', 'rightly', 'put', 'email', 'address', 'please', 'help'] processed_text: ['password', 'reset', 'work', 'iehs', 'ticket', 'aorthyme', 'rnsuipbk', 'pm', 'ndkrcxjb', 'hpormqtx', 'ugyothfz', 'ugrmkdhx', 'password', 'reset', 'work', 'iehs', 'ticket', 'hello', 'mr', 'roesshnktler', 'trouble', 'reset', 'password', 'whenever', 'trying', 'reset', 'password', 'say', 'password', 'sent', 'provided', 'email', 'address', 'receive', 'password', 'mail', 'checked', 'rightly', 'put', 'email', 'address', 'please', 'help'] list_processed_text: [['password'], ['reset'], ['work'], ['iehs'], ['ticket'], ['aorthyme'], ['rnsuipbk'], ['pm'], ['ndkrcxjb'], ['hpormqtx'], ['ugyothfz'], ['ugrmkdhx'], ['password'], ['reset'], ['work'], ['iehs'], ['ticket'], ['hello'], ['mr'], ['roesshnktler'], ['trouble'], ['reset'], ['password'], ['whenever'], ['trying'], ['reset'], ['password'], ['say'], ['password'], ['sent'], ['provided'], ['email'], ['address'], ['receive'], ['password'], ['mail'], ['checked'], ['rightly'], ['put'], ['email'], ['address'], ['please'], ['help']] k: 5510 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5511 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 5512 len: <class 'list'> Data: ['plm', 'hello', 'r', 'new', 'trainee', 'hspgxeit', 'prwiqjto', 'diehfhyumj', 'hdmwolxq', 'xqbevoic', 'bhdikthyu,', 'plm', 'authorization', 'still', 'required'] processed_text: ['plm', 'hello', 'r', 'new', 'trainee', 'hspgxeit', 'prwiqjto', 'diehfhyumj', 'hdmwolxq', 'xqbevoic', 'bhdikthyu,', 'plm', 'authorization', 'still', 'required'] list_processed_text: [['plm'], ['hello'], ['r'], ['new'], ['trainee'], ['hspgxeit'], ['prwiqjto'], ['diehfhyumj'], ['hdmwolxq'], ['xqbevoic'], ['bhdikthyu,'], ['plm'], ['authorization'], ['still'], ['required']] k: 5513 len: <class 'list'> Data: ['please', 'reactivate', 'account', 'user', 'vvsimpj', 'till', 'st', 'please', 'reactivate', 'account', 'user', 'vvsimpj', 'till', 'st'] processed_text: ['please', 'reactivate', 'account', 'user', 'vvsimpj', 'till', 'st', 'please', 'reactivate', 'account', 'user', 'vvsimpj', 'till', 'st'] list_processed_text: [['please'], ['reactivate'], ['account'], ['user'], ['vvsimpj'], ['till'], ['st'], ['please'], ['reactivate'], ['account'], ['user'], ['vvsimpj'], ['till'], ['st']] k: 5514 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5515 len: <class 'list'> Data: ['z', 'file', 'opened', 'z', 'file', 'opened'] processed_text: ['z', 'file', 'opened', 'z', 'file', 'opened'] list_processed_text: [['z'], ['file'], ['opened'], ['z'], ['file'], ['opened']] k: 5516 len: <class 'list'> Data: ['erirtc', 'want', 'see', 'archived', 'mail', 'particular', 'date', 'erirtc', 'want', 'see', 'archived', 'mail', 'particular', 'date'] processed_text: ['erirtc', 'want', 'see', 'archived', 'mail', 'particular', 'date', 'erirtc', 'want', 'see', 'archived', 'mail', 'particular', 'date'] list_processed_text: [['erirtc'], ['want'], ['see'], ['archived'], ['mail'], ['particular'], ['date'], ['erirtc'], ['want'], ['see'], ['archived'], ['mail'], ['particular'], ['date']] k: 5517 len: <class 'list'> Data: ['business', 'client', 'working', 'cannot', 'start', 'business', 'client', 'anymore', 'see', 'screenshot', 'attached'] processed_text: ['business', 'client', 'working', 'cannot', 'start', 'business', 'client', 'anymore', 'see', 'screenshot', 'attached'] list_processed_text: [['business'], ['client'], ['working'], ['cannot'], ['start'], ['business'], ['client'], ['anymore'], ['see'], ['screenshot'], ['attached']] k: 5518 len: <class 'list'> Data: ['one', 'team', 'update', 'one', 'team', 'update'] processed_text: ['one', 'team', 'update', 'one', 'team', 'update'] list_processed_text: [['one'], ['team'], ['update'], ['one'], ['team'], ['update']] k: 5519 len: <class 'list'> Data: ['hr', 'tool', 'user', 'able', 'import', 'employee', 'data', 'ooo', 'till', 'user', 'issue', 'user', 'able', 'import', 'data', 'portal', 'please', 'find', 'attached', 'mail'] processed_text: ['hr', 'tool', 'user', 'able', 'import', 'employee', 'data', 'ooo', 'till', 'user', 'issue', 'user', 'able', 'import', 'data', 'portal', 'please', 'find', 'attached', 'mail'] list_processed_text: [['hr'], ['tool'], ['user'], ['able'], ['import'], ['employee'], ['data'], ['ooo'], ['till'], ['user'], ['issue'], ['user'], ['able'], ['import'], ['data'], ['portal'], ['please'], ['find'], ['attached'], ['mail']] k: 5520 len: <class 'list'> Data: ['erp', 'sid', 'sid', 'unlock', 'password', 'reset', 'erp', 'sid', 'sid', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'sid', 'unlock', 'password', 'reset', 'erp', 'sid', 'sid', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['sid'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['sid'], ['unlock'], ['password'], ['reset']] k: 5521 len: <class 'list'> Data: ['licwu', 'unlock', 'licwu', 'unlock'] processed_text: ['licwu', 'unlock', 'licwu', 'unlock'] list_processed_text: [['licwu'], ['unlock'], ['licwu'], ['unlock']] k: 5522 len: <class 'list'> Data: ['dnc', 'unlock', 'dnc', 'unlock'] processed_text: ['dnc', 'unlock', 'dnc', 'unlock'] list_processed_text: [['dnc'], ['unlock'], ['dnc'], ['unlock']] k: 5523 len: <class 'list'> Data: ['user', 'called', 'reset', 'password', 'account', 'disabled', 'ad', 'user', 'called', 'reset', 'password', 'account', 'disabled', 'ad'] processed_text: ['user', 'called', 'reset', 'password', 'account', 'disabled', 'ad', 'user', 'called', 'reset', 'password', 'account', 'disabled', 'ad'] list_processed_text: [['user'], ['called'], ['reset'], ['password'], ['account'], ['disabled'], ['ad'], ['user'], ['called'], ['reset'], ['password'], ['account'], ['disabled'], ['ad']] k: 5524 len: <class 'list'> Data: ['erp', 'password', 'reset', 'erp', 'sid', 'erp', 'password', 'reset', 'erp', 'sid'] processed_text: ['erp', 'password', 'reset', 'erp', 'sid', 'erp', 'password', 'reset', 'erp', 'sid'] list_processed_text: [['erp'], ['password'], ['reset'], ['erp'], ['sid'], ['erp'], ['password'], ['reset'], ['erp'], ['sid']] k: 5525 len: <class 'list'> Data: ['monitor', 'resolution', 'issue', 'hi', 'changed', 'large', 'monitor', 'screen', 'resolution', 'right', 'want', 'change', 'got', 'error', 'message', 'like', 'current', 'input', 'timing', 'supported', 'monitor', 'display', 'please', 'change', 'input', 'timing', 'monitor', 'listed', 'timing', 'per', 'monitor', 'specification', 'help', 'please'] processed_text: ['monitor', 'resolution', 'issue', 'hi', 'changed', 'large', 'monitor', 'screen', 'resolution', 'right', 'want', 'change', 'got', 'error', 'message', 'like', 'current', 'input', 'timing', 'supported', 'monitor', 'display', 'please', 'change', 'input', 'timing', 'monitor', 'listed', 'timing', 'per', 'monitor', 'specification', 'help', 'please'] list_processed_text: [['monitor'], ['resolution'], ['issue'], ['hi'], ['changed'], ['large'], ['monitor'], ['screen'], ['resolution'], ['right'], ['want'], ['change'], ['got'], ['error'], ['message'], ['like'], ['current'], ['input'], ['timing'], ['supported'], ['monitor'], ['display'], ['please'], ['change'], ['input'], ['timing'], ['monitor'], ['listed'], ['timing'], ['per'], ['monitor'], ['specification'], ['help'], ['please']] k: 5526 len: <class 'list'> Data: ['email', 'working', 'hi', 'tried', 'use', 'email', 'still', 'show', 'loading', 'min', 'use', 'web', 'based', 'office', 'check', 'email', 'help', 'fix'] processed_text: ['email', 'working', 'hi', 'tried', 'use', 'email', 'still', 'show', 'loading', 'min', 'use', 'web', 'based', 'office', 'check', 'email', 'help', 'fix'] list_processed_text: [['email'], ['working'], ['hi'], ['tried'], ['use'], ['email'], ['still'], ['show'], ['loading'], ['min'], ['use'], ['web'], ['based'], ['office'], ['check'], ['email'], ['help'], ['fix']] k: 5527 len: <class 'list'> Data: ['vip', 'sign', 'sign', 'alexgnhtjunder', 'best'] processed_text: ['vip', 'sign', 'sign', 'alexgnhtjunder', 'best'] list_processed_text: [['vip'], ['sign'], ['sign'], ['alexgnhtjunder'], ['best']] k: 5528 len: <class 'list'> Data: ['please', 'assist', 'erp', 'log', 'need', 'reset', 'sure', 'cant', 'log', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] processed_text: ['please', 'assist', 'erp', 'log', 'need', 'reset', 'sure', 'cant', 'log', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] list_processed_text: [['please'], ['assist'], ['erp'], ['log'], ['need'], ['reset'], ['sure'], ['cant'], ['log'], ['gvderpbx'], ['udrzjxkm'], ['junior'], ['application'], ['sale'], ['engineer']] k: 5529 len: <class 'list'> Data: ['please', 'assist', 'symantec', 'question', 'answer', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] processed_text: ['please', 'assist', 'symantec', 'question', 'answer', 'gvderpbx', 'udrzjxkm', 'junior', 'application', 'sale', 'engineer'] list_processed_text: [['please'], ['assist'], ['symantec'], ['question'], ['answer'], ['gvderpbx'], ['udrzjxkm'], ['junior'], ['application'], ['sale'], ['engineer']] k: 5530 len: <class 'list'> Data: ['ad', 'locked', 'ad', 'locked', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['ad', 'locked', 'ad', 'locked', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['ad'], ['locked'], ['ad'], ['locked'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 5531 len: <class 'list'> Data: ['quality', 'certificate', 'abode', 'form', 'lapping', 'quality', 'certificate', 'abode', 'form', 'lapping', 'one', 'page', 'rectify', 'page', 'page', 'attached', 'one', 'example', 'form', 'reference'] processed_text: ['quality', 'certificate', 'abode', 'form', 'lapping', 'quality', 'certificate', 'abode', 'form', 'lapping', 'one', 'page', 'rectify', 'page', 'page', 'attached', 'one', 'example', 'form', 'reference'] list_processed_text: [['quality'], ['certificate'], ['abode'], ['form'], ['lapping'], ['quality'], ['certificate'], ['abode'], ['form'], ['lapping'], ['one'], ['page'], ['rectify'], ['page'], ['page'], ['attached'], ['one'], ['example'], ['form'], ['reference']] k: 5532 len: <class 'list'> Data: ['circuit', 'outage', 'apac', 'apac', 'dmvpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'apac', 'apac', 'dmvpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['apac'], ['apac'], ['dmvpn'], ['circuit'], ['et'], ['site'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5533 len: <class 'list'> Data: ['erp', 'help', 'hi', 'dear', 'sir', 'madam', 'ask', 'help', 'erp', 'pr', 'process', 'went', 'erp', 'inbox', 'workflow', 'system', 'keep', 'pop', 'screen', 'even', 'accessed', 'sec', 'please', 'kindly', 'check', 'fix'] processed_text: ['erp', 'help', 'hi', 'dear', 'sir', 'madam', 'ask', 'help', 'erp', 'pr', 'process', 'went', 'erp', 'inbox', 'workflow', 'system', 'keep', 'pop', 'screen', 'even', 'accessed', 'sec', 'please', 'kindly', 'check', 'fix'] list_processed_text: [['erp'], ['help'], ['hi'], ['dear'], ['sir'], ['madam'], ['ask'], ['help'], ['erp'], ['pr'], ['process'], ['went'], ['erp'], ['inbox'], ['workflow'], ['system'], ['keep'], ['pop'], ['screen'], ['even'], ['accessed'], ['sec'], ['please'], ['kindly'], ['check'], ['fix']] k: 5534 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'hi', 'changed', 'password', 'password', 'management', 'tool', 'unable', 'lonin', 'engineering', 'tool', 'pls', 'help', 'jayhrt', 'bhatyr', 'extn'] processed_text: ['unable', 'login', 'engineering', 'tool', 'hi', 'changed', 'password', 'password', 'management', 'tool', 'unable', 'lonin', 'engineering', 'tool', 'pls', 'help', 'jayhrt', 'bhatyr', 'extn'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['hi'], ['changed'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['lonin'], ['engineering'], ['tool'], ['pls'], ['help'], ['jayhrt'], ['bhatyr'], ['extn']] k: 5535 len: <class 'list'> Data: ['probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml', 'probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml'] processed_text: ['probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml', 'probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['probleme'], ['mit'], ['erpgui'], ['ewewx'], ['vzqomdgt'], ['jwoqbuml'], ['probleme'], ['mit'], ['erpgui'], ['ewewx'], ['vzqomdgt'], ['jwoqbuml']] k: 5536 len: <class 'list'> Data: ['probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml', 'probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml'] processed_text: ['probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml', 'probleme', 'mit', 'erpgui', 'ewewx', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['probleme'], ['mit'], ['erpgui'], ['ewewx'], ['vzqomdgt'], ['jwoqbuml'], ['probleme'], ['mit'], ['erpgui'], ['ewewx'], ['vzqomdgt'], ['jwoqbuml']] k: 5537 len: <class 'list'> Data: ['laptop', 'chatryung', 'doc', 'station', 'connected', 'laptop', 'doc', 'station', 'charging', 'battery'] processed_text: ['laptop', 'chatryung', 'doc', 'station', 'connected', 'laptop', 'doc', 'station', 'charging', 'battery'] list_processed_text: [['laptop'], ['chatryung'], ['doc'], ['station'], ['connected'], ['laptop'], ['doc'], ['station'], ['charging'], ['battery']] k: 5538 len: <class 'list'> Data: ['outlook', 'continuously', 'asking', 'password', 'outlook', 'continuously', 'asking', 'password'] processed_text: ['outlook', 'continuously', 'asking', 'password', 'outlook', 'continuously', 'asking', 'password'] list_processed_text: [['outlook'], ['continuously'], ['asking'], ['password'], ['outlook'], ['continuously'], ['asking'], ['password']] k: 5539 len: <class 'list'> Data: ['printer', 'configuration', 'printer', 'configuration', 'summary', 'need', 'configure', 'printer', 'region', 'kindly', 'help', 'ricoh', 'aficio', 'mp', 'pcl', 'ii'] processed_text: ['printer', 'configuration', 'printer', 'configuration', 'summary', 'need', 'configure', 'printer', 'region', 'kindly', 'help', 'ricoh', 'aficio', 'mp', 'pcl', 'ii'] list_processed_text: [['printer'], ['configuration'], ['printer'], ['configuration'], ['summary'], ['need'], ['configure'], ['printer'], ['region'], ['kindly'], ['help'], ['ricoh'], ['aficio'], ['mp'], ['pcl'], ['ii']] k: 5540 len: <class 'list'> Data: ['konto', 'neu', 'erstellen', 'ewew', 'und', 'ewew', 'ewew', 'optiplex', 'bearing', 'hr', 'darda', 'ewew', 'optiplex', 'bearing', 'hr', 'darda'] processed_text: ['konto', 'neu', 'erstellen', 'ewew', 'und', 'ewew', 'ewew', 'optiplex', 'bearing', 'hr', 'darda', 'ewew', 'optiplex', 'bearing', 'hr', 'darda'] list_processed_text: [['konto'], ['neu'], ['erstellen'], ['ewew'], ['und'], ['ewew'], ['ewew'], ['optiplex'], ['bearing'], ['hr'], ['darda'], ['ewew'], ['optiplex'], ['bearing'], ['hr'], ['darda']] k: 5541 len: <class 'list'> Data: ['reprogramdntymieren', 'telephone', 'system', 'extension', 'wild', 'marfhtyio', 'reprogramdntymieren', 'telephone', 'system', 'extension', 'wild', 'marfhtyio'] processed_text: ['reprogramdntymieren', 'telephone', 'system', 'extension', 'wild', 'marfhtyio', 'reprogramdntymieren', 'telephone', 'system', 'extension', 'wild', 'marfhtyio'] list_processed_text: [['reprogramdntymieren'], ['telephone'], ['system'], ['extension'], ['wild'], ['marfhtyio'], ['reprogramdntymieren'], ['telephone'], ['system'], ['extension'], ['wild'], ['marfhtyio']] k: 5542 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 5543 len: <class 'list'> Data: ['erp', 'gui', 'installed', 'erp', 'gui', 'installed'] processed_text: ['erp', 'gui', 'installed', 'erp', 'gui', 'installed'] list_processed_text: [['erp'], ['gui'], ['installed'], ['erp'], ['gui'], ['installed']] k: 5544 len: <class 'list'> Data: ['software', 'working', 'laptop', 'engineering', 'tool', 'outlook', 'internet', 'explorer', 'security', 'warning', 'stopped', 'perform', 'firewall', 'warning', 'software', 'stopped', 'working'] processed_text: ['software', 'working', 'laptop', 'engineering', 'tool', 'outlook', 'internet', 'explorer', 'security', 'warning', 'stopped', 'perform', 'firewall', 'warning', 'software', 'stopped', 'working'] list_processed_text: [['software'], ['working'], ['laptop'], ['engineering'], ['tool'], ['outlook'], ['internet'], ['explorer'], ['security'], ['warning'], ['stopped'], ['perform'], ['firewall'], ['warning'], ['software'], ['stopped'], ['working']] k: 5545 len: <class 'list'> Data: ['outlook', 'outlook'] processed_text: ['outlook', 'outlook'] list_processed_text: [['outlook'], ['outlook']] k: 5546 len: <class 'list'> Data: ['engineering', 'tool', 'engineering', 'tool', 'working', 'hello', 'system', 'facing', 'issue', 'connecting', 'engineering', 'tool', 'engineering', 'tool', 'software', 'erro', 'message', 'engineering', 'tool', 'engineering', 'tool', 'please', 'support', 'cugjzqlf', 'djwbyact', 'executive', 'sale', 'company', 'india', 'ltd', 'mob', 'mail'] processed_text: ['engineering', 'tool', 'engineering', 'tool', 'working', 'hello', 'system', 'facing', 'issue', 'connecting', 'engineering', 'tool', 'engineering', 'tool', 'software', 'erro', 'message', 'engineering', 'tool', 'engineering', 'tool', 'please', 'support', 'cugjzqlf', 'djwbyact', 'executive', 'sale', 'company', 'india', 'ltd', 'mob', 'mail'] list_processed_text: [['engineering'], ['tool'], ['engineering'], ['tool'], ['working'], ['hello'], ['system'], ['facing'], ['issue'], ['connecting'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['software'], ['erro'], ['message'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['please'], ['support'], ['cugjzqlf'], ['djwbyact'], ['executive'], ['sale'], ['company'], ['india'], ['ltd'], ['mob'], ['mail']] k: 5547 len: <class 'list'> Data: ['problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['problem'], ['label'], ['printing'], ['laser'], ['wu'], ['pfjwinbg'], ['ljtzbdqg'], ['problem'], ['label'], ['printing'], ['laser'], ['wu'], ['pfjwinbg'], ['ljtzbdqg']] k: 5548 len: <class 'list'> Data: ['problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg'] processed_text: ['problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg', 'problem', 'label', 'printing', 'laser', 'wu', 'pfjwinbg', 'ljtzbdqg'] list_processed_text: [['problem'], ['label'], ['printing'], ['laser'], ['wu'], ['pfjwinbg'], ['ljtzbdqg'], ['problem'], ['label'], ['printing'], ['laser'], ['wu'], ['pfjwinbg'], ['ljtzbdqg']] k: 5549 len: <class 'list'> Data: ['setup', 'new', 'w', 'computer', 'repair', 'qnigujek', 'kopqcjdh', 'setup', 'new', 'w', 'computer', 'repair', 'qnigujek', 'kopqcjdh'] processed_text: ['setup', 'new', 'w', 'computer', 'repair', 'qnigujek', 'kopqcjdh', 'setup', 'new', 'w', 'computer', 'repair', 'qnigujek', 'kopqcjdh'] list_processed_text: [['setup'], ['new'], ['w'], ['computer'], ['repair'], ['qnigujek'], ['kopqcjdh'], ['setup'], ['new'], ['w'], ['computer'], ['repair'], ['qnigujek'], ['kopqcjdh']] k: 5550 len: <class 'list'> Data: ['webshop', 'access', 'hello', 'see', 'customer', 'webshop', 'distributor', 'tool', 'also', 'cann', 'chose', 'salesorg', 'unlocked', 'account', 'change', 'password', 'problem', 'remains'] processed_text: ['webshop', 'access', 'hello', 'see', 'customer', 'webshop', 'distributor', 'tool', 'also', 'cann', 'chose', 'salesorg', 'unlocked', 'account', 'change', 'password', 'problem', 'remains'] list_processed_text: [['webshop'], ['access'], ['hello'], ['see'], ['customer'], ['webshop'], ['distributor'], ['tool'], ['also'], ['cann'], ['chose'], ['salesorg'], ['unlocked'], ['account'], ['change'], ['password'], ['problem'], ['remains']] k: 5551 len: <class 'list'> Data: ['erp', 'error', 'hi', 'team', 'experiencing', 'error', 'erp', 'sid', 'application', 'firstly', 'certain', 'whether', 'accessing', 'sid', 'system', 'logged', 'netweaver', 'system', 'correct', 'application', 'using', 'please', 'find', 'attachment', 'give', 'glimpse', 'error', 'feel', 'free', 'chat', 'email', 'phone', 'call', 'understand'] processed_text: ['erp', 'error', 'hi', 'team', 'experiencing', 'error', 'erp', 'sid', 'application', 'firstly', 'certain', 'whether', 'accessing', 'sid', 'system', 'logged', 'netweaver', 'system', 'correct', 'application', 'using', 'please', 'find', 'attachment', 'give', 'glimpse', 'error', 'feel', 'free', 'chat', 'email', 'phone', 'call', 'understand'] list_processed_text: [['erp'], ['error'], ['hi'], ['team'], ['experiencing'], ['error'], ['erp'], ['sid'], ['application'], ['firstly'], ['certain'], ['whether'], ['accessing'], ['sid'], ['system'], ['logged'], ['netweaver'], ['system'], ['correct'], ['application'], ['using'], ['please'], ['find'], ['attachment'], ['give'], ['glimpse'], ['error'], ['feel'], ['free'], ['chat'], ['email'], ['phone'], ['call'], ['understand']] k: 5552 len: <class 'list'> Data: ['job', 'hr', 'toolmforrun', 'failed', 'job', 'scheduler', 'job', 'hr', 'toolmforrun', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'toolmforrun', 'failed', 'job', 'scheduler', 'job', 'hr', 'toolmforrun', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['toolmforrun'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['toolmforrun'], ['failed'], ['job'], ['scheduler']] k: 5553 len: <class 'list'> Data: ['reset', 'password', 'arsbtkvd', 'qieagkos', 'erp', 'production', 'erp', 'please', 'reset', 'user', 'password', 'daypay'] processed_text: ['reset', 'password', 'arsbtkvd', 'qieagkos', 'erp', 'production', 'erp', 'please', 'reset', 'user', 'password', 'daypay'] list_processed_text: [['reset'], ['password'], ['arsbtkvd'], ['qieagkos'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['user'], ['password'], ['daypay']] k: 5554 len: <class 'list'> Data: ['install', 'new', 'optiplex', 'eagw', 'fy', 'company', 'image', 'install', 'new', 'optiplex', 'eagw', 'fy', 'company', 'image'] processed_text: ['install', 'new', 'optiplex', 'eagw', 'fy', 'company', 'image', 'install', 'new', 'optiplex', 'eagw', 'fy', 'company', 'image'] list_processed_text: [['install'], ['new'], ['optiplex'], ['eagw'], ['fy'], ['company'], ['image'], ['install'], ['new'], ['optiplex'], ['eagw'], ['fy'], ['company'], ['image']] k: 5555 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5556 len: <class 'list'> Data: ['erp', 'logon', 'hi', 'please', 'help', 'logon', 'erp', 'want', 'accept', 'password', 'think', 'need', 'put', 'new', 'password', 'kind'] processed_text: ['erp', 'logon', 'hi', 'please', 'help', 'logon', 'erp', 'want', 'accept', 'password', 'think', 'need', 'put', 'new', 'password', 'kind'] list_processed_text: [['erp'], ['logon'], ['hi'], ['please'], ['help'], ['logon'], ['erp'], ['want'], ['accept'], ['password'], ['think'], ['need'], ['put'], ['new'], ['password'], ['kind']] k: 5557 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5558 len: <class 'list'> Data: ['list', 'team', 'function', 'name', 'hello', 'gso', 'team', 'forward', 'u', 'list', 'team', 'member', 'grouped', 'function', 'example', 'team', 'member', 'function', 'solution', 'competrhyrncy', 'support', 'erp', 'supply', 'chain', 'srinfhyath', 'vijeghtyundra', 'shwhdbthyuiethadri', 'sanhjtyhru', 'kurtyar', 'window', 'server', 'active', 'directory', 'security', 'erp', 'security', 'non', 'erp'] processed_text: ['list', 'team', 'function', 'name', 'hello', 'gso', 'team', 'forward', 'u', 'list', 'team', 'member', 'grouped', 'function', 'example', 'team', 'member', 'function', 'solution', 'competrhyrncy', 'support', 'erp', 'supply', 'chain', 'srinfhyath', 'vijeghtyundra', 'shwhdbthyuiethadri', 'sanhjtyhru', 'kurtyar', 'window', 'server', 'active', 'directory', 'security', 'erp', 'security', 'non', 'erp'] list_processed_text: [['list'], ['team'], ['function'], ['name'], ['hello'], ['gso'], ['team'], ['forward'], ['u'], ['list'], ['team'], ['member'], ['grouped'], ['function'], ['example'], ['team'], ['member'], ['function'], ['solution'], ['competrhyrncy'], ['support'], ['erp'], ['supply'], ['chain'], ['srinfhyath'], ['vijeghtyundra'], ['shwhdbthyuiethadri'], ['sanhjtyhru'], ['kurtyar'], ['window'], ['server'], ['active'], ['directory'], ['security'], ['erp'], ['security'], ['non'], ['erp']] k: 5559 len: <class 'list'> Data: ['engineering', 'drawing', 'tool', 'issue', 'hi', 'engineering', 'drawing', 'tool', 'working', 'system', 'please', 'give', 'solution', 'issue'] processed_text: ['engineering', 'drawing', 'tool', 'issue', 'hi', 'engineering', 'drawing', 'tool', 'working', 'system', 'please', 'give', 'solution', 'issue'] list_processed_text: [['engineering'], ['drawing'], ['tool'], ['issue'], ['hi'], ['engineering'], ['drawing'], ['tool'], ['working'], ['system'], ['please'], ['give'], ['solution'], ['issue']] k: 5560 len: <class 'list'> Data: ['edi', 'process', 'miro', 'entry', 'urgent', 'dear', 'please', 'help', 'check', 'post', 'outstanding', 'miro', 'entry', 'company', 'created', 'customer', 'inwarehouse', 'tool', 'yesterday', 'miro', 'entry', 'interco', 'ap', 'posted', 'yet', 'please', 'help', 'post', 'entry', 'immediately', 'today', 'best'] processed_text: ['edi', 'process', 'miro', 'entry', 'urgent', 'dear', 'please', 'help', 'check', 'post', 'outstanding', 'miro', 'entry', 'company', 'created', 'customer', 'inwarehouse', 'tool', 'yesterday', 'miro', 'entry', 'interco', 'ap', 'posted', 'yet', 'please', 'help', 'post', 'entry', 'immediately', 'today', 'best'] list_processed_text: [['edi'], ['process'], ['miro'], ['entry'], ['urgent'], ['dear'], ['please'], ['help'], ['check'], ['post'], ['outstanding'], ['miro'], ['entry'], ['company'], ['created'], ['customer'], ['inwarehouse'], ['tool'], ['yesterday'], ['miro'], ['entry'], ['interco'], ['ap'], ['posted'], ['yet'], ['please'], ['help'], ['post'], ['entry'], ['immediately'], ['today'], ['best']] k: 5561 len: <class 'list'> Data: ['unable', 'take', 'print', 'engineering', 'drawing', 'tool', 'unable', 'take', 'print', 'engineering', 'drawing', 'tool'] processed_text: ['unable', 'take', 'print', 'engineering', 'drawing', 'tool', 'unable', 'take', 'print', 'engineering', 'drawing', 'tool'] list_processed_text: [['unable'], ['take'], ['print'], ['engineering'], ['drawing'], ['tool'], ['unable'], ['take'], ['print'], ['engineering'], ['drawing'], ['tool']] k: 5562 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5563 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5564 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5565 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 5566 len: <class 'list'> Data: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'step', 'refresh', 'page', 'failed', 'element', 'span', 'found', 'since', 'pm', 'et', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'step', 'refresh', 'page', 'failed', 'element', 'span', 'found', 'since', 'pm', 'et'] processed_text: ['mii', 'uacyltoe', 'hxgaycze', 'lacw', 'step', 'refresh', 'page', 'failed', 'element', 'span', 'found', 'since', 'pm', 'et', 'mii', 'uacyltoe', 'hxgaycze', 'lacw', 'step', 'refresh', 'page', 'failed', 'element', 'span', 'found', 'since', 'pm', 'et'] list_processed_text: [['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['step'], ['refresh'], ['page'], ['failed'], ['element'], ['span'], ['found'], ['since'], ['pm'], ['et'], ['mii'], ['uacyltoe'], ['hxgaycze'], ['lacw'], ['step'], ['refresh'], ['page'], ['failed'], ['element'], ['span'], ['found'], ['since'], ['pm'], ['et']] k: 5567 len: <class 'list'> Data: ['mii', 'working', 'error', 'user', 'authentication', 'failed', 'mii', 'working', 'error', 'user', 'authentication', 'failed', 'erp', 'working', 'internet', 'working', 'whole', 'plant', 'able', 'access', 'system'] processed_text: ['mii', 'working', 'error', 'user', 'authentication', 'failed', 'mii', 'working', 'error', 'user', 'authentication', 'failed', 'erp', 'working', 'internet', 'working', 'whole', 'plant', 'able', 'access', 'system'] list_processed_text: [['mii'], ['working'], ['error'], ['user'], ['authentication'], ['failed'], ['mii'], ['working'], ['error'], ['user'], ['authentication'], ['failed'], ['erp'], ['working'], ['internet'], ['working'], ['whole'], ['plant'], ['able'], ['access'], ['system']] k: 5568 len: <class 'list'> Data: ['cannot', 'view', 'drawing', 'mii', 'cannot', 'view', 'drawing', 'attached', 'material', 'sid', 'checked', 'version', 'n', 'drawing', 'material', 'also', 'exists', 'sid', 'value'] processed_text: ['cannot', 'view', 'drawing', 'mii', 'cannot', 'view', 'drawing', 'attached', 'material', 'sid', 'checked', 'version', 'n', 'drawing', 'material', 'also', 'exists', 'sid', 'value'] list_processed_text: [['cannot'], ['view'], ['drawing'], ['mii'], ['cannot'], ['view'], ['drawing'], ['attached'], ['material'], ['sid'], ['checked'], ['version'], ['n'], ['drawing'], ['material'], ['also'], ['exists'], ['sid'], ['value']] k: 5569 len: <class 'list'> Data: ['shop', 'floor', 'server', 'issue', 'request', 'assistance', 'shop', 'floor', 'system', 'user', 'unable', 'log', 'scan', 'order', 'floor', 'previous', 'call', 'placed', 'open', 'trouble', 'ticket'] processed_text: ['shop', 'floor', 'server', 'issue', 'request', 'assistance', 'shop', 'floor', 'system', 'user', 'unable', 'log', 'scan', 'order', 'floor', 'previous', 'call', 'placed', 'open', 'trouble', 'ticket'] list_processed_text: [['shop'], ['floor'], ['server'], ['issue'], ['request'], ['assistance'], ['shop'], ['floor'], ['system'], ['user'], ['unable'], ['log'], ['scan'], ['order'], ['floor'], ['previous'], ['call'], ['placed'], ['open'], ['trouble'], ['ticket']] k: 5570 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5571 len: <class 'list'> Data: ['employee', 'try', 'log', 'mii', 'get', 'following', 'error', 'user', 'authentication', 'failed', 'able', 'scan', 'order', 'usa', 'plant'] processed_text: ['employee', 'try', 'log', 'mii', 'get', 'following', 'error', 'user', 'authentication', 'failed', 'able', 'scan', 'order', 'usa', 'plant'] list_processed_text: [['employee'], ['try'], ['log'], ['mii'], ['get'], ['following'], ['error'], ['user'], ['authentication'], ['failed'], ['able'], ['scan'], ['order'], ['usa'], ['plant']] k: 5572 len: <class 'list'> Data: ['password', 'locked', 'hello', 'please', 'unlock', 'password', 'erp', 'net', 'weaver', 'user', 'id', 'kimufghtyry'] processed_text: ['password', 'locked', 'hello', 'please', 'unlock', 'password', 'erp', 'net', 'weaver', 'user', 'id', 'kimufghtyry'] list_processed_text: [['password'], ['locked'], ['hello'], ['please'], ['unlock'], ['password'], ['erp'], ['net'], ['weaver'], ['user'], ['id'], ['kimufghtyry']] k: 5573 len: <class 'list'> Data: ['configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'model', 'mill', 'model', 'used', 'issue', 'exists', 'erp', 'erp', 'system', 'sid', 'well', 'distributor', 'tool', 'company', 'center', 'production', 'environment', 'error', 'message', 'text', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'logon', 'language', 'en', 'ok', 'csscdrill', 'model', 'used', 'language', 'seem', 'working', 'fine', 'user', 'change', 'language', 'g', 'de', 'us', 'model', 'mill', 'model', 'configig', 'air', 'system', 'response', 'error', 'message', 'starting', 'process', 'configair', 'configurator'] processed_text: ['configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'configair', 'server', 'responds', 'internal', 'server', 'error', 'case', 'logon', 'language', 'en', 'model', 'mill', 'model', 'used', 'issue', 'exists', 'erp', 'erp', 'system', 'sid', 'well', 'distributor', 'tool', 'company', 'center', 'production', 'environment', 'error', 'message', 'text', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'logon', 'language', 'en', 'ok', 'csscdrill', 'model', 'used', 'language', 'seem', 'working', 'fine', 'user', 'change', 'language', 'g', 'de', 'us', 'model', 'mill', 'model', 'configig', 'air', 'system', 'response', 'error', 'message', 'starting', 'process', 'configair', 'configurator'] list_processed_text: [['configair'], ['server'], ['responds'], ['internal'], ['server'], ['error'], ['case'], ['logon'], ['language'], ['en'], ['configair'], ['server'], ['responds'], ['internal'], ['server'], ['error'], ['case'], ['logon'], ['language'], ['en'], ['model'], ['mill'], ['model'], ['used'], ['issue'], ['exists'], ['erp'], ['erp'], ['system'], ['sid'], ['well'], ['distributor'], ['tool'], ['company'], ['center'], ['production'], ['environment'], ['error'], ['message'], ['text'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['logon'], ['language'], ['en'], ['ok'], ['csscdrill'], ['model'], ['used'], ['language'], ['seem'], ['working'], ['fine'], ['user'], ['change'], ['language'], ['g'], ['de'], ['us'], ['model'], ['mill'], ['model'], ['configig'], ['air'], ['system'], ['response'], ['error'], ['message'], ['starting'], ['process'], ['configair'], ['configurator']] k: 5574 len: <class 'list'> Data: ['hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'free', 'space', 'le', 'gb', 'free', 'hostname', 'reporting', 'engineering', 'tooling', 'production', 'window', 'disk', 'space', 'utilization', 'alert', 'free', 'space', 'le', 'gb', 'free'] processed_text: ['hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'free', 'space', 'le', 'gb', 'free', 'hostname', 'reporting', 'engineering', 'tooling', 'production', 'window', 'disk', 'space', 'utilization', 'alert', 'free', 'space', 'le', 'gb', 'free'] list_processed_text: [['hostname'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['free'], ['space'], ['le'], ['gb'], ['free'], ['hostname'], ['reporting'], ['engineering'], ['tooling'], ['production'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['free'], ['space'], ['le'], ['gb'], ['free']] k: 5575 len: <class 'list'> Data: ['analysis', 'microsoft', 'excel', 'access', 'erp', 'business', 'intelligence', 'please', 'install', 'analysis', 'microsoft', 'excel', 'xrqnyzhb', 'oblghuyf', 'kvwrbfet', 'jrhoqdix', 'computer', 'ashley', 'employee', 'number', 'vic', 'lonn', 'employee', 'number', 'best'] processed_text: ['analysis', 'microsoft', 'excel', 'access', 'erp', 'business', 'intelligence', 'please', 'install', 'analysis', 'microsoft', 'excel', 'xrqnyzhb', 'oblghuyf', 'kvwrbfet', 'jrhoqdix', 'computer', 'ashley', 'employee', 'number', 'vic', 'lonn', 'employee', 'number', 'best'] list_processed_text: [['analysis'], ['microsoft'], ['excel'], ['access'], ['erp'], ['business'], ['intelligence'], ['please'], ['install'], ['analysis'], ['microsoft'], ['excel'], ['xrqnyzhb'], ['oblghuyf'], ['kvwrbfet'], ['jrhoqdix'], ['computer'], ['ashley'], ['employee'], ['number'], ['vic'], ['lonn'], ['employee'], ['number'], ['best']] k: 5576 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5577 len: <class 'list'> Data: ['es', 'site', 'sale', 'markhtyeting', 'tab', 'missing', 'es', 'site', 'sale', 'markhtyeting', 'tab', 'missing'] processed_text: ['es', 'site', 'sale', 'markhtyeting', 'tab', 'missing', 'es', 'site', 'sale', 'markhtyeting', 'tab', 'missing'] list_processed_text: [['es'], ['site'], ['sale'], ['markhtyeting'], ['tab'], ['missing'], ['es'], ['site'], ['sale'], ['markhtyeting'], ['tab'], ['missing']] k: 5578 len: <class 'list'> Data: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] processed_text: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] list_processed_text: [['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['company'], ['com']] k: 5579 len: <class 'list'> Data: ['wifi', 'working', 'stuck', 'yet', 'network', 'shown', 'wont', 'turn', 'ony', 'mobile', 'broadband', 'work', 'name', 'todghtyud', 'usa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'wifi', 'working', 'stuck', 'yet', 'network', 'shown', 'wont', 'turn', 'ony', 'mobile', 'broadband', 'work'] processed_text: ['wifi', 'working', 'stuck', 'yet', 'network', 'shown', 'wont', 'turn', 'ony', 'mobile', 'broadband', 'work', 'name', 'todghtyud', 'usa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'wifi', 'working', 'stuck', 'yet', 'network', 'shown', 'wont', 'turn', 'ony', 'mobile', 'broadband', 'work'] list_processed_text: [['wifi'], ['working'], ['stuck'], ['yet'], ['network'], ['shown'], ['wont'], ['turn'], ['ony'], ['mobile'], ['broadband'], ['work'], ['name'], ['todghtyud'], ['usa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['wifi'], ['working'], ['stuck'], ['yet'], ['network'], ['shown'], ['wont'], ['turn'], ['ony'], ['mobile'], ['broadband'], ['work']] k: 5580 len: <class 'list'> Data: ['reg', 'warehouse', 'tool', 'communication', 'ticket', 'hello', 'gso', 'team', 'please', 'assign', 'critical', 'warehouse', 'tool', 'ticket', 'network', 'team', 'office', 'hour', 'inform', 'network', 'ops', 'team', 'able', 'resolve', 'issue', 'need', 'support', 'intern', 'contact', 'best'] processed_text: ['reg', 'warehouse', 'tool', 'communication', 'ticket', 'hello', 'gso', 'team', 'please', 'assign', 'critical', 'warehouse', 'tool', 'ticket', 'network', 'team', 'office', 'hour', 'inform', 'network', 'ops', 'team', 'able', 'resolve', 'issue', 'need', 'support', 'intern', 'contact', 'best'] list_processed_text: [['reg'], ['warehouse'], ['tool'], ['communication'], ['ticket'], ['hello'], ['gso'], ['team'], ['please'], ['assign'], ['critical'], ['warehouse'], ['tool'], ['ticket'], ['network'], ['team'], ['office'], ['hour'], ['inform'], ['network'], ['ops'], ['team'], ['able'], ['resolve'], ['issue'], ['need'], ['support'], ['intern'], ['contact'], ['best']] k: 5581 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 5582 len: <class 'list'> Data: ['work', 'center', 'list', 'production', 'order', 'crtd', 'showing', 'work', 'center', 'list', 'production', 'order', 'crtd', 'showing', 'please', 'look', 'work', 'center', 'plant', 'stefdgthyo', 'kahrthyeui', 'vinhytry', 'discussed', 'hana', 'model', 'filtering', 'information', 'need', 'add', 'filter', 'mii'] processed_text: ['work', 'center', 'list', 'production', 'order', 'crtd', 'showing', 'work', 'center', 'list', 'production', 'order', 'crtd', 'showing', 'please', 'look', 'work', 'center', 'plant', 'stefdgthyo', 'kahrthyeui', 'vinhytry', 'discussed', 'hana', 'model', 'filtering', 'information', 'need', 'add', 'filter', 'mii'] list_processed_text: [['work'], ['center'], ['list'], ['production'], ['order'], ['crtd'], ['showing'], ['work'], ['center'], ['list'], ['production'], ['order'], ['crtd'], ['showing'], ['please'], ['look'], ['work'], ['center'], ['plant'], ['stefdgthyo'], ['kahrthyeui'], ['vinhytry'], ['discussed'], ['hana'], ['model'], ['filtering'], ['information'], ['need'], ['add'], ['filter'], ['mii']] k: 5583 len: <class 'list'> Data: ['need', 'added', 'printer', 'address', 'book', 'hostname', 'tc', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'danghtnuell', 'fbhyeksq', 'caexmols', 'hello', 'rakthyesh', 'rakthyesh', 'ramdntythanjesh'] processed_text: ['need', 'added', 'printer', 'address', 'book', 'hostname', 'tc', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'danghtnuell', 'fbhyeksq', 'caexmols', 'hello', 'rakthyesh', 'rakthyesh', 'ramdntythanjesh'] list_processed_text: [['need'], ['added'], ['printer'], ['address'], ['book'], ['hostname'], ['tc'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['danghtnuell'], ['fbhyeksq'], ['caexmols'], ['hello'], ['rakthyesh'], ['rakthyesh'], ['ramdntythanjesh']] k: 5584 len: <class 'list'> Data: ['phone', 'number', 'usa', 'canada', 'customer', 'service', 'team', 'working', 'impacting', 'customer', 'australia', 'canada', 'global', 'telecom', 'number', 'work', 'call', 'number', 'get', 'recording', 'stating', 'like', 'make', 'call', 'please', 'hang', 'try'] processed_text: ['phone', 'number', 'usa', 'canada', 'customer', 'service', 'team', 'working', 'impacting', 'customer', 'australia', 'canada', 'global', 'telecom', 'number', 'work', 'call', 'number', 'get', 'recording', 'stating', 'like', 'make', 'call', 'please', 'hang', 'try'] list_processed_text: [['phone'], ['number'], ['usa'], ['canada'], ['customer'], ['service'], ['team'], ['working'], ['impacting'], ['customer'], ['australia'], ['canada'], ['global'], ['telecom'], ['number'], ['work'], ['call'], ['number'], ['get'], ['recording'], ['stating'], ['like'], ['make'], ['call'], ['please'], ['hang'], ['try']] k: 5585 len: <class 'list'> Data: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] processed_text: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] list_processed_text: [['need'], ['configure'], ['printer'], ['need'], ['configure'], ['printer']] k: 5586 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5587 len: <class 'list'> Data: ['time', 'format', 'need', 'changed', 'hour', 'time', 'format', 'need', 'changed', 'hour', 'computer', 'name', 'awyw', 'awyw', 'plant', 'awyw', 'bnsh', 'awyw', 'awysinic', 'connected', 'user', 'system', 'using', 'teamviewer', 'contact', 'connected', 'pc', 'using', 'rdp', 'added', 'user', 'admin', 'group', 'restarted', 'pc', 'help', 'user', 'change', 'time', 'zone', 'pc', 'issue', 'resolved'] processed_text: ['time', 'format', 'need', 'changed', 'hour', 'time', 'format', 'need', 'changed', 'hour', 'computer', 'name', 'awyw', 'awyw', 'plant', 'awyw', 'bnsh', 'awyw', 'awysinic', 'connected', 'user', 'system', 'using', 'teamviewer', 'contact', 'connected', 'pc', 'using', 'rdp', 'added', 'user', 'admin', 'group', 'restarted', 'pc', 'help', 'user', 'change', 'time', 'zone', 'pc', 'issue', 'resolved'] list_processed_text: [['time'], ['format'], ['need'], ['changed'], ['hour'], ['time'], ['format'], ['need'], ['changed'], ['hour'], ['computer'], ['name'], ['awyw'], ['awyw'], ['plant'], ['awyw'], ['bnsh'], ['awyw'], ['awysinic'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['contact'], ['connected'], ['pc'], ['using'], ['rdp'], ['added'], ['user'], ['admin'], ['group'], ['restarted'], ['pc'], ['help'], ['user'], ['change'], ['time'], ['zone'], ['pc'], ['issue'], ['resolved']] k: 5588 len: <class 'list'> Data: ['activity', 'efficiency', 'high', 'reported', 'usa', 'note', 'omufjcxr', 'ahypftjx', 'know', 'data', 'activity', 'column', 'work', 'center', 'efficiency', 'report', 'accurate', 'showing', 'high', 'efficiency', 'check', 'order', 'cost', 'far', 'activity', 'also', 'look', 'strange', 'report', 'tipset', 'work', 'center', 'pulling', 'correct', 'planned', 'piece', 'everything', 'erp', 'look', 'good', 'pull', 'order', 'report', 'seems', 'bad', 'data'] processed_text: ['activity', 'efficiency', 'high', 'reported', 'usa', 'note', 'omufjcxr', 'ahypftjx', 'know', 'data', 'activity', 'column', 'work', 'center', 'efficiency', 'report', 'accurate', 'showing', 'high', 'efficiency', 'check', 'order', 'cost', 'far', 'activity', 'also', 'look', 'strange', 'report', 'tipset', 'work', 'center', 'pulling', 'correct', 'planned', 'piece', 'everything', 'erp', 'look', 'good', 'pull', 'order', 'report', 'seems', 'bad', 'data'] list_processed_text: [['activity'], ['efficiency'], ['high'], ['reported'], ['usa'], ['note'], ['omufjcxr'], ['ahypftjx'], ['know'], ['data'], ['activity'], ['column'], ['work'], ['center'], ['efficiency'], ['report'], ['accurate'], ['showing'], ['high'], ['efficiency'], ['check'], ['order'], ['cost'], ['far'], ['activity'], ['also'], ['look'], ['strange'], ['report'], ['tipset'], ['work'], ['center'], ['pulling'], ['correct'], ['planned'], ['piece'], ['everything'], ['erp'], ['look'], ['good'], ['pull'], ['order'], ['report'], ['seems'], ['bad'], ['data']] k: 5589 len: <class 'list'> Data: ['window', 'password', 'reset', 'jogt', 'harrhntyl', 'window', 'password', 'reset', 'jogt', 'harrhntyl'] processed_text: ['window', 'password', 'reset', 'jogt', 'harrhntyl', 'window', 'password', 'reset', 'jogt', 'harrhntyl'] list_processed_text: [['window'], ['password'], ['reset'], ['jogt'], ['harrhntyl'], ['window'], ['password'], ['reset'], ['jogt'], ['harrhntyl']] k: 5590 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5591 len: <class 'list'> Data: ['vip', 'fax', 'machine', 'phone', 'number', 'working', 'dial', 'tone', 'fax', 'machine', 'phone', 'number', 'working', 'dial', 'tone'] processed_text: ['vip', 'fax', 'machine', 'phone', 'number', 'working', 'dial', 'tone', 'fax', 'machine', 'phone', 'number', 'working', 'dial', 'tone'] list_processed_text: [['vip'], ['fax'], ['machine'], ['phone'], ['number'], ['working'], ['dial'], ['tone'], ['fax'], ['machine'], ['phone'], ['number'], ['working'], ['dial'], ['tone']] k: 5592 len: <class 'list'> Data: ['need', 'access', 'deleted', 'folder', 'collaboration', 'platform', 'find', 'mti', 'certificate', 'tracking', 'form', 'collaboration', 'platform', 'need', 'make', 'sure', 'deleted'] processed_text: ['need', 'access', 'deleted', 'folder', 'collaboration', 'platform', 'find', 'mti', 'certificate', 'tracking', 'form', 'collaboration', 'platform', 'need', 'make', 'sure', 'deleted'] list_processed_text: [['need'], ['access'], ['deleted'], ['folder'], ['collaboration'], ['platform'], ['find'], ['mti'], ['certificate'], ['tracking'], ['form'], ['collaboration'], ['platform'], ['need'], ['make'], ['sure'], ['deleted']] k: 5593 len: <class 'list'> Data: ['reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software', 'please', 'reset', 'password', 'telephony', 'software'] processed_text: ['reset', 'password', 'cyvdluja', 'oxrkfpbz', 'telephony', 'software', 'please', 'reset', 'password', 'telephony', 'software'] list_processed_text: [['reset'], ['password'], ['cyvdluja'], ['oxrkfpbz'], ['telephony'], ['software'], ['please'], ['reset'], ['password'], ['telephony'], ['software']] k: 5594 len: <class 'list'> Data: ['collaboration', 'platform', 'site', 'launching', 'dear', 'help', 'desk', 'unable', 'navigate', 'via', 'internet', 'explorer', 'place', 'like', 'collaboration', 'platform', 'purchasing', 'also', 'skype', 'open', 'see', 'people', 'availability', 'outlook', 'skype', 'please', 'help', 'yes', 'tried', 'logging', 'removing', 'battery', 'recently', 'changed', 'homepage', 'yes', 'recently', 'change', 'password', 'using', 'password', 'management', 'tool', 'let', 'know', 'question'] processed_text: ['collaboration', 'platform', 'site', 'launching', 'dear', 'help', 'desk', 'unable', 'navigate', 'via', 'internet', 'explorer', 'place', 'like', 'collaboration', 'platform', 'purchasing', 'also', 'skype', 'open', 'see', 'people', 'availability', 'outlook', 'skype', 'please', 'help', 'yes', 'tried', 'logging', 'removing', 'battery', 'recently', 'changed', 'homepage', 'yes', 'recently', 'change', 'password', 'using', 'password', 'management', 'tool', 'let', 'know', 'question'] list_processed_text: [['collaboration'], ['platform'], ['site'], ['launching'], ['dear'], ['help'], ['desk'], ['unable'], ['navigate'], ['via'], ['internet'], ['explorer'], ['place'], ['like'], ['collaboration'], ['platform'], ['purchasing'], ['also'], ['skype'], ['open'], ['see'], ['people'], ['availability'], ['outlook'], ['skype'], ['please'], ['help'], ['yes'], ['tried'], ['logging'], ['removing'], ['battery'], ['recently'], ['changed'], ['homepage'], ['yes'], ['recently'], ['change'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['let'], ['know'], ['question']] k: 5595 len: <class 'list'> Data: ['unable', 'connect', 'knowledge', 'center', 'commstorage', 'product', 'tab', 'unable', 'connect', 'knowledge', 'center', 'commstorage', 'product', 'tab'] processed_text: ['unable', 'connect', 'knowledge', 'center', 'commstorage', 'product', 'tab', 'unable', 'connect', 'knowledge', 'center', 'commstorage', 'product', 'tab'] list_processed_text: [['unable'], ['connect'], ['knowledge'], ['center'], ['commstorage'], ['product'], ['tab'], ['unable'], ['connect'], ['knowledge'], ['center'], ['commstorage'], ['product'], ['tab']] k: 5596 len: <class 'list'> Data: ['iscl', 'collaboration', 'platform', 'site', 'seem', 'tried', 'accessing', 'several', 'bookmarkhtys', 'within', 'iscl', 'realm', 'collaboration', 'platform', 'look', 'like', 'cannot', 'access', 'anything', 'people', 'team', 'issue'] processed_text: ['iscl', 'collaboration', 'platform', 'site', 'seem', 'tried', 'accessing', 'several', 'bookmarkhtys', 'within', 'iscl', 'realm', 'collaboration', 'platform', 'look', 'like', 'cannot', 'access', 'anything', 'people', 'team', 'issue'] list_processed_text: [['iscl'], ['collaboration'], ['platform'], ['site'], ['seem'], ['tried'], ['accessing'], ['several'], ['bookmarkhtys'], ['within'], ['iscl'], ['realm'], ['collaboration'], ['platform'], ['look'], ['like'], ['cannot'], ['access'], ['anything'], ['people'], ['team'], ['issue']] k: 5597 len: <class 'list'> Data: ['unable', 'upload', 'file', 'collaboration', 'platform', 'unable', 'upload', 'file', 'collaboration', 'platform'] processed_text: ['unable', 'upload', 'file', 'collaboration', 'platform', 'unable', 'upload', 'file', 'collaboration', 'platform'] list_processed_text: [['unable'], ['upload'], ['file'], ['collaboration'], ['platform'], ['unable'], ['upload'], ['file'], ['collaboration'], ['platform']] k: 5598 len: <class 'list'> Data: ['domain', 'account', 'locked', 'domain', 'account', 'locked'] processed_text: ['domain', 'account', 'locked', 'domain', 'account', 'locked'] list_processed_text: [['domain'], ['account'], ['locked'], ['domain'], ['account'], ['locked']] k: 5599 len: <class 'list'> Data: ['issue', 'log', 'ethic', 'course', 'hi', 'receive', 'following', 'error', 'message', 'trying', 'log', 'current', 'ethic', 'module', 'might', 'chaof', 'primarily', 'used', 'mail', 'please', 'check', 'correct'] processed_text: ['issue', 'log', 'ethic', 'course', 'hi', 'receive', 'following', 'error', 'message', 'trying', 'log', 'current', 'ethic', 'module', 'might', 'chaof', 'primarily', 'used', 'mail', 'please', 'check', 'correct'] list_processed_text: [['issue'], ['log'], ['ethic'], ['course'], ['hi'], ['receive'], ['following'], ['error'], ['message'], ['trying'], ['log'], ['current'], ['ethic'], ['module'], ['might'], ['chaof'], ['primarily'], ['used'], ['mail'], ['please'], ['check'], ['correct']] k: 5600 len: <class 'list'> Data: ['operator', 'forgot', 'login', 'password', 'qgwypesz', 'fzsdnmrk', 'user', 'id', 'zemboks', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'robhyertyj'] processed_text: ['operator', 'forgot', 'login', 'password', 'qgwypesz', 'fzsdnmrk', 'user', 'id', 'zemboks', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'robhyertyj'] list_processed_text: [['operator'], ['forgot'], ['login'], ['password'], ['qgwypesz'], ['fzsdnmrk'], ['user'], ['id'], ['zemboks'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['robhyertyj']] k: 5601 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 5602 len: <class 'list'> Data: ['call', 'vitalyst', 'm', 'crm', 'dynamic', 'issue', 'call', 'vitalyst', 'm', 'crm', 'dynamic', 'issue', 'contact'] processed_text: ['call', 'vitalyst', 'm', 'crm', 'dynamic', 'issue', 'call', 'vitalyst', 'm', 'crm', 'dynamic', 'issue', 'contact'] list_processed_text: [['call'], ['vitalyst'], ['m'], ['crm'], ['dynamic'], ['issue'], ['call'], ['vitalyst'], ['m'], ['crm'], ['dynamic'], ['issue'], ['contact']] k: 5603 len: <class 'list'> Data: ['trying', 'sign', 'purchasing', 'system', 'website', 'even', 'load', 'trying', 'sign', 'purchasing', 'system', 'website', 'even', 'load'] processed_text: ['trying', 'sign', 'purchasing', 'system', 'website', 'even', 'load', 'trying', 'sign', 'purchasing', 'system', 'website', 'even', 'load'] list_processed_text: [['trying'], ['sign'], ['purchasing'], ['system'], ['website'], ['even'], ['load'], ['trying'], ['sign'], ['purchasing'], ['system'], ['website'], ['even'], ['load']] k: 5604 len: <class 'list'> Data: ['soflex', 'dnc', 'working', 'soflex', 'dnc', 'working', 'unable', 'connect', 'datenbank', 'server', 'hostname', 'restarted', 'phone'] processed_text: ['soflex', 'dnc', 'working', 'soflex', 'dnc', 'working', 'unable', 'connect', 'datenbank', 'server', 'hostname', 'restarted', 'phone'] list_processed_text: [['soflex'], ['dnc'], ['working'], ['soflex'], ['dnc'], ['working'], ['unable'], ['connect'], ['datenbank'], ['server'], ['hostname'], ['restarted'], ['phone']] k: 5605 len: <class 'list'> Data: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw', 'near', 'rob', 'ripple'] processed_text: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw', 'near', 'rob', 'ripple'] list_processed_text: [['bad'], ['monitor'], ['lbdw'], ['bad'], ['monitor'], ['lbdw'], ['near'], ['rob'], ['ripple']] k: 5606 len: <class 'list'> Data: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw', 'near', 'braze', 'line'] processed_text: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw', 'near', 'braze', 'line'] list_processed_text: [['bad'], ['monitor'], ['lbdw'], ['bad'], ['monitor'], ['lbdw'], ['near'], ['braze'], ['line']] k: 5607 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5608 len: <class 'list'> Data: ['supply', 'chain', 'software', 'signin', 'password', 'working', 'please', 'reset', 'password', 'username', 'matghyuthdw'] processed_text: ['supply', 'chain', 'software', 'signin', 'password', 'working', 'please', 'reset', 'password', 'username', 'matghyuthdw'] list_processed_text: [['supply'], ['chain'], ['software'], ['signin'], ['password'], ['working'], ['please'], ['reset'], ['password'], ['username'], ['matghyuthdw']] k: 5609 len: <class 'list'> Data: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw'] processed_text: ['bad', 'monitor', 'lbdw', 'bad', 'monitor', 'lbdw'] list_processed_text: [['bad'], ['monitor'], ['lbdw'], ['bad'], ['monitor'], ['lbdw']] k: 5610 len: <class 'list'> Data: ['unable', 'connect', 'printer', 'unable', 'connect', 'printer', 'print', 'thing', 'try', 'print', 'say', 'driver', 'need', 'updated', 'go', 'install', 'driver', 'get', 'error', 'anyways'] processed_text: ['unable', 'connect', 'printer', 'unable', 'connect', 'printer', 'print', 'thing', 'try', 'print', 'say', 'driver', 'need', 'updated', 'go', 'install', 'driver', 'get', 'error', 'anyways'] list_processed_text: [['unable'], ['connect'], ['printer'], ['unable'], ['connect'], ['printer'], ['print'], ['thing'], ['try'], ['print'], ['say'], ['driver'], ['need'], ['updated'], ['go'], ['install'], ['driver'], ['get'], ['error'], ['anyways']] k: 5611 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5612 len: <class 'list'> Data: ['access', 'bw', 'production', 'sid', 'erp', 'log', 'bex', 'via', 'web', 'asking', 'id', 'password', 'would', 'need', 'access', 'usa', 'plant', 'usa', 'plant', 'usa', 'plant'] processed_text: ['access', 'bw', 'production', 'sid', 'erp', 'log', 'bex', 'via', 'web', 'asking', 'id', 'password', 'would', 'need', 'access', 'usa', 'plant', 'usa', 'plant', 'usa', 'plant'] list_processed_text: [['access'], ['bw'], ['production'], ['sid'], ['erp'], ['log'], ['bex'], ['via'], ['web'], ['asking'], ['id'], ['password'], ['would'], ['need'], ['access'], ['usa'], ['plant'], ['usa'], ['plant'], ['usa'], ['plant']] k: 5613 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 5614 len: <class 'list'> Data: ['hostname', 'volume', 'consumed', 'hostname', 'volume', 'consumed'] processed_text: ['hostname', 'volume', 'consumed', 'hostname', 'volume', 'consumed'] list_processed_text: [['hostname'], ['volume'], ['consumed'], ['hostname'], ['volume'], ['consumed']] k: 5615 len: <class 'list'> Data: ['consultant', 'need', 'collaboration', 'platform', 'access', 'consultant', 'ycimqn', 'wtubpdsz', 'requires', 'collaboration', 'platform', 'access', 'nkqafhod', 'xbvghozp', 'user', 'schneider', 'down', 'please', 'refer', 'inc', 'submitted', 'ticket', 'ticket', 'needed', 'soon', 'possible', 'ycimqn', 'wtubpdsz', 'started', 'engagement', 'already', 'access', 'please', 'provide', 'credential', 'use', 'license', 'please', 'contact', 'question'] processed_text: ['consultant', 'need', 'collaboration', 'platform', 'access', 'consultant', 'ycimqn', 'wtubpdsz', 'requires', 'collaboration', 'platform', 'access', 'nkqafhod', 'xbvghozp', 'user', 'schneider', 'down', 'please', 'refer', 'inc', 'submitted', 'ticket', 'ticket', 'needed', 'soon', 'possible', 'ycimqn', 'wtubpdsz', 'started', 'engagement', 'already', 'access', 'please', 'provide', 'credential', 'use', 'license', 'please', 'contact', 'question'] list_processed_text: [['consultant'], ['need'], ['collaboration'], ['platform'], ['access'], ['consultant'], ['ycimqn'], ['wtubpdsz'], ['requires'], ['collaboration'], ['platform'], ['access'], ['nkqafhod'], ['xbvghozp'], ['user'], ['schneider'], ['down'], ['please'], ['refer'], ['inc'], ['submitted'], ['ticket'], ['ticket'], ['needed'], ['soon'], ['possible'], ['ycimqn'], ['wtubpdsz'], ['started'], ['engagement'], ['already'], ['access'], ['please'], ['provide'], ['credential'], ['use'], ['license'], ['please'], ['contact'], ['question']] k: 5616 len: <class 'list'> Data: ['hr', 'tool', 'portal', 'finance', 'return', 'error', 'trying', 'run', 'report', 'hr', 'tool', 'portal', 'finance', 'return', 'error', 'trying', 'run', 'report'] processed_text: ['hr', 'tool', 'portal', 'finance', 'return', 'error', 'trying', 'run', 'report', 'hr', 'tool', 'portal', 'finance', 'return', 'error', 'trying', 'run', 'report'] list_processed_text: [['hr'], ['tool'], ['portal'], ['finance'], ['return'], ['error'], ['trying'], ['run'], ['report'], ['hr'], ['tool'], ['portal'], ['finance'], ['return'], ['error'], ['trying'], ['run'], ['report']] k: 5617 len: <class 'list'> Data: ['byclpwmv', 'esafrtbh', 'unable', 'login', 'ticketing', 'tool', 'byclpwmv', 'esafrtbh', 'unable', 'login', 'ticketing', 'tool'] processed_text: ['byclpwmv', 'esafrtbh', 'unable', 'login', 'ticketing', 'tool', 'byclpwmv', 'esafrtbh', 'unable', 'login', 'ticketing', 'tool'] list_processed_text: [['byclpwmv'], ['esafrtbh'], ['unable'], ['login'], ['ticketing'], ['tool'], ['byclpwmv'], ['esafrtbh'], ['unable'], ['login'], ['ticketing'], ['tool']] k: 5618 len: <class 'list'> Data: ['problem', 'badge', 'printer', 'problem', 'badge', 'printer'] processed_text: ['problem', 'badge', 'printer', 'problem', 'badge', 'printer'] list_processed_text: [['problem'], ['badge'], ['printer'], ['problem'], ['badge'], ['printer']] k: 5619 len: <class 'list'> Data: ['logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'user', 'member', 'mii', 'operator', 'mii', 'supervisor', 'group', 'ad', 'phone'] processed_text: ['logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'logging', 'mii', 'supervisor', 'dashbankrd', 'result', 'error', 'pop', 'internal', 'server', 'error', 'user', 'member', 'mii', 'operator', 'mii', 'supervisor', 'group', 'ad', 'phone'] list_processed_text: [['logging'], ['mii'], ['supervisor'], ['dashbankrd'], ['result'], ['error'], ['pop'], ['internal'], ['server'], ['error'], ['logging'], ['mii'], ['supervisor'], ['dashbankrd'], ['result'], ['error'], ['pop'], ['internal'], ['server'], ['error'], ['user'], ['member'], ['mii'], ['operator'], ['mii'], ['supervisor'], ['group'], ['ad'], ['phone']] k: 5620 len: <class 'list'> Data: ['computer', 'generate', 'new', 'ewew', 'ewew', 'computer', 'generate', 'new', 'ewew', 'ewew'] processed_text: ['computer', 'generate', 'new', 'ewew', 'ewew', 'computer', 'generate', 'new', 'ewew', 'ewew'] list_processed_text: [['computer'], ['generate'], ['new'], ['ewew'], ['ewew'], ['computer'], ['generate'], ['new'], ['ewew'], ['ewew']] k: 5621 len: <class 'list'> Data: ['vip', 'printer', 'working', 'vip', 'printer', 'working', 'driver', 'update', 'prompt'] processed_text: ['vip', 'printer', 'working', 'vip', 'printer', 'working', 'driver', 'update', 'prompt'] list_processed_text: [['vip'], ['printer'], ['working'], ['vip'], ['printer'], ['working'], ['driver'], ['update'], ['prompt']] k: 5622 len: <class 'list'> Data: ['issue', 'mic', 'screen', 'shatryung', 'skype', 'issue', 'mic', 'screen', 'shatryung', 'skype'] processed_text: ['issue', 'mic', 'screen', 'shatryung', 'skype', 'issue', 'mic', 'screen', 'shatryung', 'skype'] list_processed_text: [['issue'], ['mic'], ['screen'], ['shatryung'], ['skype'], ['issue'], ['mic'], ['screen'], ['shatryung'], ['skype']] k: 5623 len: <class 'list'> Data: ['connected', 'telekom', 'mobile', 'broadband', 'vpn', 'work', 'connected', 'telekom', 'mobile', 'broadband', 'vpn', 'work', 'error', 'page', 'displayed', 'vpn', 'work', 'fine', 'wlan'] processed_text: ['connected', 'telekom', 'mobile', 'broadband', 'vpn', 'work', 'connected', 'telekom', 'mobile', 'broadband', 'vpn', 'work', 'error', 'page', 'displayed', 'vpn', 'work', 'fine', 'wlan'] list_processed_text: [['connected'], ['telekom'], ['mobile'], ['broadband'], ['vpn'], ['work'], ['connected'], ['telekom'], ['mobile'], ['broadband'], ['vpn'], ['work'], ['error'], ['page'], ['displayed'], ['vpn'], ['work'], ['fine'], ['wlan']] k: 5624 len: <class 'list'> Data: ['please', 'forward', 'email', 'new', 'address', 'user', 'mexkspfc', 'nocpyxaz', 'old', 'email', 'address', 'longer', 'valid', 'stay', 'valid', 'autoforward', 'new', 'one', 'old', 'one'] processed_text: ['please', 'forward', 'email', 'new', 'address', 'user', 'mexkspfc', 'nocpyxaz', 'old', 'email', 'address', 'longer', 'valid', 'stay', 'valid', 'autoforward', 'new', 'one', 'old', 'one'] list_processed_text: [['please'], ['forward'], ['email'], ['new'], ['address'], ['user'], ['mexkspfc'], ['nocpyxaz'], ['old'], ['email'], ['address'], ['longer'], ['valid'], ['stay'], ['valid'], ['autoforward'], ['new'], ['one'], ['old'], ['one']] k: 5625 len: <class 'list'> Data: ['ebhsm', 'volume', 'consumed', 'ebhsm', 'volume', 'consumed'] processed_text: ['ebhsm', 'volume', 'consumed', 'ebhsm', 'volume', 'consumed'] list_processed_text: [['ebhsm'], ['volume'], ['consumed'], ['ebhsm'], ['volume'], ['consumed']] k: 5626 len: <class 'list'> Data: ['analysis', 'office', 'working', 'analysis', 'office', 'working'] processed_text: ['analysis', 'office', 'working', 'analysis', 'office', 'working'] list_processed_text: [['analysis'], ['office'], ['working'], ['analysis'], ['office'], ['working']] k: 5627 len: <class 'list'> Data: ['skype', 'issue', 'hi', 'cannot', 'sign', 'skype', 'important', 'meeting', 'need', 'get', 'morning'] processed_text: ['skype', 'issue', 'hi', 'cannot', 'sign', 'skype', 'important', 'meeting', 'need', 'get', 'morning'] list_processed_text: [['skype'], ['issue'], ['hi'], ['cannot'], ['sign'], ['skype'], ['important'], ['meeting'], ['need'], ['get'], ['morning']] k: 5628 len: <class 'list'> Data: ['able', 'call', 'telephony', 'software', 'number', 'germany', 'former', 'germany', 'location', 'try', 'call', 'telephony', 'software', 'number', 'germany', 'former', 'germany', 'location', 'ex', 'could', 'hear', 'others', 'hear', 'cannot', 'communicate', 'others', 'uacyltoe', 'hxgaycze', 'location', 'ex', 'france', 'uk', 'work', 'normally'] processed_text: ['able', 'call', 'telephony', 'software', 'number', 'germany', 'former', 'germany', 'location', 'try', 'call', 'telephony', 'software', 'number', 'germany', 'former', 'germany', 'location', 'ex', 'could', 'hear', 'others', 'hear', 'cannot', 'communicate', 'others', 'uacyltoe', 'hxgaycze', 'location', 'ex', 'france', 'uk', 'work', 'normally'] list_processed_text: [['able'], ['call'], ['telephony'], ['software'], ['number'], ['germany'], ['former'], ['germany'], ['location'], ['try'], ['call'], ['telephony'], ['software'], ['number'], ['germany'], ['former'], ['germany'], ['location'], ['ex'], ['could'], ['hear'], ['others'], ['hear'], ['cannot'], ['communicate'], ['others'], ['uacyltoe'], ['hxgaycze'], ['location'], ['ex'], ['france'], ['uk'], ['work'], ['normally']] k: 5629 len: <class 'list'> Data: ['ughzilfm', 'cfibdamq', 'called', 'check', 'account', 'active', 'ughzilfm', 'cfibdamq', 'called', 'check', 'account', 'active'] processed_text: ['ughzilfm', 'cfibdamq', 'called', 'check', 'account', 'active', 'ughzilfm', 'cfibdamq', 'called', 'check', 'account', 'active'] list_processed_text: [['ughzilfm'], ['cfibdamq'], ['called'], ['check'], ['account'], ['active'], ['ughzilfm'], ['cfibdamq'], ['called'], ['check'], ['account'], ['active']] k: 5630 len: <class 'list'> Data: ['outlook', 'working', 'freezing', 'outlook', 'working', 'freezing'] processed_text: ['outlook', 'working', 'freezing', 'outlook', 'working', 'freezing'] list_processed_text: [['outlook'], ['working'], ['freezing'], ['outlook'], ['working'], ['freezing']] k: 5631 len: <class 'list'> Data: ['erp', 'running', 'slow', 'hi', 'erp', 'running', 'estorage', 'productly', 'slow', 'usa', 'il', 'reconditioning', 'plant', 'today', 'last', 'day', 'month', 'imperative', 'enter', 'many', 'order', 'possible', 'please', 'look'] processed_text: ['erp', 'running', 'slow', 'hi', 'erp', 'running', 'estorage', 'productly', 'slow', 'usa', 'il', 'reconditioning', 'plant', 'today', 'last', 'day', 'month', 'imperative', 'enter', 'many', 'order', 'possible', 'please', 'look'] list_processed_text: [['erp'], ['running'], ['slow'], ['hi'], ['erp'], ['running'], ['estorage'], ['productly'], ['slow'], ['usa'], ['il'], ['reconditioning'], ['plant'], ['today'], ['last'], ['day'], ['month'], ['imperative'], ['enter'], ['many'], ['order'], ['possible'], ['please'], ['look']] k: 5632 len: <class 'list'> Data: ['unable', 'print', 'label', 'connection', 'workstation', 'server', 'uxhq', 'normal', 'printing', 'work', 'unable', 'print', 'label', 'work', 'fine', 'win', 'system', 'issue', 'xp', 'system', 'printer', 'wezeb', 'barcode', 'printer'] processed_text: ['unable', 'print', 'label', 'connection', 'workstation', 'server', 'uxhq', 'normal', 'printing', 'work', 'unable', 'print', 'label', 'work', 'fine', 'win', 'system', 'issue', 'xp', 'system', 'printer', 'wezeb', 'barcode', 'printer'] list_processed_text: [['unable'], ['print'], ['label'], ['connection'], ['workstation'], ['server'], ['uxhq'], ['normal'], ['printing'], ['work'], ['unable'], ['print'], ['label'], ['work'], ['fine'], ['win'], ['system'], ['issue'], ['xp'], ['system'], ['printer'], ['wezeb'], ['barcode'], ['printer']] k: 5633 len: <class 'list'> Data: ['time', 'system', 'working', 'plant', 'controller', 'receiving', 'error', 'message', 'whenever', 'try', 'run', 'rpt', 'please', 'review', 'attached', 'document', 'order', 'view', 'error', 'message', 'reached', 'cell', 'office'] processed_text: ['time', 'system', 'working', 'plant', 'controller', 'receiving', 'error', 'message', 'whenever', 'try', 'run', 'rpt', 'please', 'review', 'attached', 'document', 'order', 'view', 'error', 'message', 'reached', 'cell', 'office'] list_processed_text: [['time'], ['system'], ['working'], ['plant'], ['controller'], ['receiving'], ['error'], ['message'], ['whenever'], ['try'], ['run'], ['rpt'], ['please'], ['review'], ['attached'], ['document'], ['order'], ['view'], ['error'], ['message'], ['reached'], ['cell'], ['office']] k: 5634 len: <class 'list'> Data: ['share', 'collaboration', 'platform', 'site', 'pm', 'hi', 'matheywt', 'rovfghesntine', 'unable', 'share', 'global', 'recruiting', 'team', 'site', 'anyone', 'please', 'advise'] processed_text: ['share', 'collaboration', 'platform', 'site', 'pm', 'hi', 'matheywt', 'rovfghesntine', 'unable', 'share', 'global', 'recruiting', 'team', 'site', 'anyone', 'please', 'advise'] list_processed_text: [['share'], ['collaboration'], ['platform'], ['site'], ['pm'], ['hi'], ['matheywt'], ['rovfghesntine'], ['unable'], ['share'], ['global'], ['recruiting'], ['team'], ['site'], ['anyone'], ['please'], ['advise']] k: 5635 len: <class 'list'> Data: ['mm', 'transfer', 'pricing', 'mm', 'average', 'customer', 'net', 'price', 'vk', 'ztfn', 'per', 'pc', 'price', 'per', 'pak', 'price', 'switch', 'per', 'pak', 'per', 'pc', 'would', 'think', 'price', 'material', 'per', 'pak', 'per', 'pc', 'since', 'pack', 'imperative', 'fix', 'issue', 'immediately', 'short', 'time', 'framdntye', 'fix', 'transfer', 'price', 'avoid', 'overpaying', 'custom', 'duty', 'please', 'advise'] processed_text: ['mm', 'transfer', 'pricing', 'mm', 'average', 'customer', 'net', 'price', 'vk', 'ztfn', 'per', 'pc', 'price', 'per', 'pak', 'price', 'switch', 'per', 'pak', 'per', 'pc', 'would', 'think', 'price', 'material', 'per', 'pak', 'per', 'pc', 'since', 'pack', 'imperative', 'fix', 'issue', 'immediately', 'short', 'time', 'framdntye', 'fix', 'transfer', 'price', 'avoid', 'overpaying', 'custom', 'duty', 'please', 'advise'] list_processed_text: [['mm'], ['transfer'], ['pricing'], ['mm'], ['average'], ['customer'], ['net'], ['price'], ['vk'], ['ztfn'], ['per'], ['pc'], ['price'], ['per'], ['pak'], ['price'], ['switch'], ['per'], ['pak'], ['per'], ['pc'], ['would'], ['think'], ['price'], ['material'], ['per'], ['pak'], ['per'], ['pc'], ['since'], ['pack'], ['imperative'], ['fix'], ['issue'], ['immediately'], ['short'], ['time'], ['framdntye'], ['fix'], ['transfer'], ['price'], ['avoid'], ['overpaying'], ['custom'], ['duty'], ['please'], ['advise']] k: 5636 len: <class 'list'> Data: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'dbe'] processed_text: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'dbe'] list_processed_text: [['cisco'], ['access'], ['point'], ['working'], ['cisco'], ['access'], ['point'], ['working'], ['mac'], ['address'], ['dbe']] k: 5637 len: <class 'list'> Data: ['change', 'license', 'fron', 'k', 'could', 'please', 'change', 'license', 'following', 'employee', 'luifdsts', 'olhryhira', 'cost', 'center', 'pam', 'cordrtegd', 'hlcrbuqa', 'qznjshwm', 'costarra', 'vtdygauw', 'wqxcrzhj', 'santodde', 'tlvwusmh', 'dbwuyxoq', 'santossdm', 'ojtmnpxc', 'klacwufr', 'coutidfrc', 'cesarrogerio', 'coutinho', 'santosdfd', 'delsonpereira', 'santrtos', 'santoes', 'kgyboafv', 'tlzsrvgw', 'serravdsa', 'vagnerlrtopes', 'eeserra'] processed_text: ['change', 'license', 'fron', 'k', 'could', 'please', 'change', 'license', 'following', 'employee', 'luifdsts', 'olhryhira', 'cost', 'center', 'pam', 'cordrtegd', 'hlcrbuqa', 'qznjshwm', 'costarra', 'vtdygauw', 'wqxcrzhj', 'santodde', 'tlvwusmh', 'dbwuyxoq', 'santossdm', 'ojtmnpxc', 'klacwufr', 'coutidfrc', 'cesarrogerio', 'coutinho', 'santosdfd', 'delsonpereira', 'santrtos', 'santoes', 'kgyboafv', 'tlzsrvgw', 'serravdsa', 'vagnerlrtopes', 'eeserra'] list_processed_text: [['change'], ['license'], ['fron'], ['k'], ['could'], ['please'], ['change'], ['license'], ['following'], ['employee'], ['luifdsts'], ['olhryhira'], ['cost'], ['center'], ['pam'], ['cordrtegd'], ['hlcrbuqa'], ['qznjshwm'], ['costarra'], ['vtdygauw'], ['wqxcrzhj'], ['santodde'], ['tlvwusmh'], ['dbwuyxoq'], ['santossdm'], ['ojtmnpxc'], ['klacwufr'], ['coutidfrc'], ['cesarrogerio'], ['coutinho'], ['santosdfd'], ['delsonpereira'], ['santrtos'], ['santoes'], ['kgyboafv'], ['tlzsrvgw'], ['serravdsa'], ['vagnerlrtopes'], ['eeserra']] k: 5638 len: <class 'list'> Data: ['error', 'message', 'hana', 'able', 'open', 'file', 'run', 'quote', 'file', 'need', 'phone', 'open', 'erp', 'analysis', 'microsoft', 'excel', 'get', 'error', 'error', 'show', 'following', 'message', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly'] processed_text: ['error', 'message', 'hana', 'able', 'open', 'file', 'run', 'quote', 'file', 'need', 'phone', 'open', 'erp', 'analysis', 'microsoft', 'excel', 'get', 'error', 'error', 'show', 'following', 'message', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly'] list_processed_text: [['error'], ['message'], ['hana'], ['able'], ['open'], ['file'], ['run'], ['quote'], ['file'], ['need'], ['phone'], ['open'], ['erp'], ['analysis'], ['microsoft'], ['excel'], ['get'], ['error'], ['error'], ['show'], ['following'], ['message'], ['launcher'], ['exited'], ['error'], ['see'], ['log'], ['file'], ['detail'], ['analysis'], ['add'], ['registered'], ['correctly']] k: 5639 len: <class 'list'> Data: ['issue', 'company', 'ebusiness', 'mailbox', 'issue', 'company', 'ebusiness', 'mailbox'] processed_text: ['issue', 'company', 'ebusiness', 'mailbox', 'issue', 'company', 'ebusiness', 'mailbox'] list_processed_text: [['issue'], ['company'], ['ebusiness'], ['mailbox'], ['issue'], ['company'], ['ebusiness'], ['mailbox']] k: 5640 len: <class 'list'> Data: ['hr', 'tool', 'access', 'good', 'morning', 'unable', 'run', 'report', 'hr', 'tool', 'today', 'worked', 'fine', 'yesterday', 'please', 'advise'] processed_text: ['hr', 'tool', 'access', 'good', 'morning', 'unable', 'run', 'report', 'hr', 'tool', 'today', 'worked', 'fine', 'yesterday', 'please', 'advise'] list_processed_text: [['hr'], ['tool'], ['access'], ['good'], ['morning'], ['unable'], ['run'], ['report'], ['hr'], ['tool'], ['today'], ['worked'], ['fine'], ['yesterday'], ['please'], ['advise']] k: 5641 len: <class 'list'> Data: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] processed_text: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] list_processed_text: [['skype'], ['personal'], ['certificate'], ['issue'], ['skype'], ['personal'], ['certificate'], ['issue']] k: 5642 len: <class 'list'> Data: ['change', 'date', 'setting', 'citrix', 'multiple', 'user', 'hello', 'team', 'writing', 'request', 'change', 'date', 'couple', 'citrix', 'user', 'eastern', 'time', 'usandcanada', 'eet', 'eastern', 'european', 'time', 'user', 'date', 'changed', 'eastern', 'time', 'usandcanada', 'eet', 'eastern', 'european', 'time', 'vrtvpopc', 'vvrnrtacri', 'vvrtgffada', 'vvrurtgsur', 'vvrtyjakaa', 'vvrtymitrd', 'vvdeftmea', 'vvbgrtyeleb', 'vvcodgtjud', 'vvggrthhibg', 'could', 'please', 'kind', 'perform', 'change', 'let', 'u', 'know', 'additional', 'information', 'required', 'side'] processed_text: ['change', 'date', 'setting', 'citrix', 'multiple', 'user', 'hello', 'team', 'writing', 'request', 'change', 'date', 'couple', 'citrix', 'user', 'eastern', 'time', 'usandcanada', 'eet', 'eastern', 'european', 'time', 'user', 'date', 'changed', 'eastern', 'time', 'usandcanada', 'eet', 'eastern', 'european', 'time', 'vrtvpopc', 'vvrnrtacri', 'vvrtgffada', 'vvrurtgsur', 'vvrtyjakaa', 'vvrtymitrd', 'vvdeftmea', 'vvbgrtyeleb', 'vvcodgtjud', 'vvggrthhibg', 'could', 'please', 'kind', 'perform', 'change', 'let', 'u', 'know', 'additional', 'information', 'required', 'side'] list_processed_text: [['change'], ['date'], ['setting'], ['citrix'], ['multiple'], ['user'], ['hello'], ['team'], ['writing'], ['request'], ['change'], ['date'], ['couple'], ['citrix'], ['user'], ['eastern'], ['time'], ['usandcanada'], ['eet'], ['eastern'], ['european'], ['time'], ['user'], ['date'], ['changed'], ['eastern'], ['time'], ['usandcanada'], ['eet'], ['eastern'], ['european'], ['time'], ['vrtvpopc'], ['vvrnrtacri'], ['vvrtgffada'], ['vvrurtgsur'], ['vvrtyjakaa'], ['vvrtymitrd'], ['vvdeftmea'], ['vvbgrtyeleb'], ['vvcodgtjud'], ['vvggrthhibg'], ['could'], ['please'], ['kind'], ['perform'], ['change'], ['let'], ['u'], ['know'], ['additional'], ['information'], ['required'], ['side']] k: 5643 len: <class 'list'> Data: ['audio', 'meeting', 'audio', 'meeting', 'also', 'mic', 'work'] processed_text: ['audio', 'meeting', 'audio', 'meeting', 'also', 'mic', 'work'] list_processed_text: [['audio'], ['meeting'], ['audio'], ['meeting'], ['also'], ['mic'], ['work']] k: 5644 len: <class 'list'> Data: ['missing', 'folder', 'outlook', 'missing', 'folder', 'outlook'] processed_text: ['missing', 'folder', 'outlook', 'missing', 'folder', 'outlook'] list_processed_text: [['missing'], ['folder'], ['outlook'], ['missing'], ['folder'], ['outlook']] k: 5645 len: <class 'list'> Data: ['unable', 'get', 'skype', 'add', 'unable', 'get', 'skype', 'add'] processed_text: ['unable', 'get', 'skype', 'add', 'unable', 'get', 'skype', 'add'] list_processed_text: [['unable'], ['get'], ['skype'], ['add'], ['unable'], ['get'], ['skype'], ['add']] k: 5646 len: <class 'list'> Data: ['company', 'logo', 'still', 'printed', 'erp', 'qualtiy', 'certificate', 'hello', 'please', 'see', 'attached', 'document', 'mail', 'mynfoicj', 'riuvas', 'print', 'certificate', 'via', 'vln', 'still', 'company', 'logo', 'document', 'got', 'repeat', 'trouble', 'custom', 'delivery', 'stopped', 'etc'] processed_text: ['company', 'logo', 'still', 'printed', 'erp', 'qualtiy', 'certificate', 'hello', 'please', 'see', 'attached', 'document', 'mail', 'mynfoicj', 'riuvas', 'print', 'certificate', 'via', 'vln', 'still', 'company', 'logo', 'document', 'got', 'repeat', 'trouble', 'custom', 'delivery', 'stopped', 'etc'] list_processed_text: [['company'], ['logo'], ['still'], ['printed'], ['erp'], ['qualtiy'], ['certificate'], ['hello'], ['please'], ['see'], ['attached'], ['document'], ['mail'], ['mynfoicj'], ['riuvas'], ['print'], ['certificate'], ['via'], ['vln'], ['still'], ['company'], ['logo'], ['document'], ['got'], ['repeat'], ['trouble'], ['custom'], ['delivery'], ['stopped'], ['etc']] k: 5647 len: <class 'list'> Data: ['ticket', 'update', 'inc', 'dslamtcb', 'ezbmonjr', 'ticket', 'update', 'inc', 'dslamtcb', 'ezbmonjr'] processed_text: ['ticket', 'update', 'inc', 'dslamtcb', 'ezbmonjr', 'ticket', 'update', 'inc', 'dslamtcb', 'ezbmonjr'] list_processed_text: [['ticket'], ['update'], ['inc'], ['dslamtcb'], ['ezbmonjr'], ['ticket'], ['update'], ['inc'], ['dslamtcb'], ['ezbmonjr']] k: 5648 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'company', 'mbps', 'link', 'global', 'telecom', 'mpls', 'circuit', 'since', 'et', 'site', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'company', 'mbps', 'link', 'global', 'telecom', 'mpls', 'circuit', 'since', 'et', 'site', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['company'], ['mbps'], ['link'], ['global'], ['telecom'], ['mpls'], ['circuit'], ['since'], ['et'], ['site'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5649 len: <class 'list'> Data: ['printer', 'co', 'printing', 'printer', 'co', 'printing', 'server', 'hostname', 'error', 'update', 'driver', 'contact'] processed_text: ['printer', 'co', 'printing', 'printer', 'co', 'printing', 'server', 'hostname', 'error', 'update', 'driver', 'contact'] list_processed_text: [['printer'], ['co'], ['printing'], ['printer'], ['co'], ['printing'], ['server'], ['hostname'], ['error'], ['update'], ['driver'], ['contact']] k: 5650 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 5651 len: <class 'list'> Data: ['query', 'qdapolnv', 'jlcavxgi', 'query', 'qdapolnv', 'jlcavxgi'] processed_text: ['query', 'qdapolnv', 'jlcavxgi', 'query', 'qdapolnv', 'jlcavxgi'] list_processed_text: [['query'], ['qdapolnv'], ['jlcavxgi'], ['query'], ['qdapolnv'], ['jlcavxgi']] k: 5652 len: <class 'list'> Data: ['corner', 'slowness', 'please', 'check', 'slowness', 'corner', 'normal', 'even', 'though', 'late'] processed_text: ['corner', 'slowness', 'please', 'check', 'slowness', 'corner', 'normal', 'even', 'though', 'late'] list_processed_text: [['corner'], ['slowness'], ['please'], ['check'], ['slowness'], ['corner'], ['normal'], ['even'], ['though'], ['late']] k: 5653 len: <class 'list'> Data: ['basis', 'call', 'shift', 'detail', 'team', 'please', 'find', 'basis', 'weekend', 'weekday', 'night', 'call', 'schedule', 'shift', 'schedule', 'per', 'attachment', 'excel', 'location', 'collaboration', 'platform', 'save', 'link', 'use', 'link', 'find', 'call', 'shift', 'person', 'keep', 'updating', 'excel', 'detail', 'required'] processed_text: ['basis', 'call', 'shift', 'detail', 'team', 'please', 'find', 'basis', 'weekend', 'weekday', 'night', 'call', 'schedule', 'shift', 'schedule', 'per', 'attachment', 'excel', 'location', 'collaboration', 'platform', 'save', 'link', 'use', 'link', 'find', 'call', 'shift', 'person', 'keep', 'updating', 'excel', 'detail', 'required'] list_processed_text: [['basis'], ['call'], ['shift'], ['detail'], ['team'], ['please'], ['find'], ['basis'], ['weekend'], ['weekday'], ['night'], ['call'], ['schedule'], ['shift'], ['schedule'], ['per'], ['attachment'], ['excel'], ['location'], ['collaboration'], ['platform'], ['save'], ['link'], ['use'], ['link'], ['find'], ['call'], ['shift'], ['person'], ['keep'], ['updating'], ['excel'], ['detail'], ['required']] k: 5654 len: <class 'list'> Data: ['please', 'provide', 'full', 'access', 'hostname', 'rtr', 'kcompany', 'please', 'provide', 'full', 'access', 'hostname', 'rtr', 'kcompany'] processed_text: ['please', 'provide', 'full', 'access', 'hostname', 'rtr', 'kcompany', 'please', 'provide', 'full', 'access', 'hostname', 'rtr', 'kcompany'] list_processed_text: [['please'], ['provide'], ['full'], ['access'], ['hostname'], ['rtr'], ['kcompany'], ['please'], ['provide'], ['full'], ['access'], ['hostname'], ['rtr'], ['kcompany']] k: 5655 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5656 len: <class 'list'> Data: ['password', 'locked', 'hello', 'venkbghksh', 'login', 'id', 'sv', 'locked', 'pl', 'arrange', 'unlock', 'immediately', 'pghjkanijkraj'] processed_text: ['password', 'locked', 'hello', 'venkbghksh', 'login', 'id', 'sv', 'locked', 'pl', 'arrange', 'unlock', 'immediately', 'pghjkanijkraj'] list_processed_text: [['password'], ['locked'], ['hello'], ['venkbghksh'], ['login'], ['id'], ['sv'], ['locked'], ['pl'], ['arrange'], ['unlock'], ['immediately'], ['pghjkanijkraj']] k: 5657 len: <class 'list'> Data: ['browser', 'issue', 'cannot', 'access', 'company', 'collaboration', 'platform', 'sign', 'hr', 'tool'] processed_text: ['browser', 'issue', 'cannot', 'access', 'company', 'collaboration', 'platform', 'sign', 'hr', 'tool'] list_processed_text: [['browser'], ['issue'], ['cannot'], ['access'], ['company'], ['collaboration'], ['platform'], ['sign'], ['hr'], ['tool']] k: 5658 len: <class 'list'> Data: ['start', 'netweaver', 'hello', 'start', 'netweaver', 'system', 'require', 'net', 'framdntywork', 'could', 'please', 'add', 'pc', 'mit', 'freundlichen', 'grugermany', 'best'] processed_text: ['start', 'netweaver', 'hello', 'start', 'netweaver', 'system', 'require', 'net', 'framdntywork', 'could', 'please', 'add', 'pc', 'mit', 'freundlichen', 'grugermany', 'best'] list_processed_text: [['start'], ['netweaver'], ['hello'], ['start'], ['netweaver'], ['system'], ['require'], ['net'], ['framdntywork'], ['could'], ['please'], ['add'], ['pc'], ['mit'], ['freundlichen'], ['grugermany'], ['best']] k: 5659 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 5660 len: <class 'list'> Data: ['istallation', 'programdntymes', 'new', 'cpu', 'raised', 'afe', 'new', 'spindle', 'uacyltoe', 'hxgayczerig', 'wherein', 'cpu', 'monitor', 'installed', 'sending', 'necessary', 'installation', 'programdntymes', 'like', 'window', 'operating', 'system', 'request', 'tomorrow', 'best'] processed_text: ['istallation', 'programdntymes', 'new', 'cpu', 'raised', 'afe', 'new', 'spindle', 'uacyltoe', 'hxgayczerig', 'wherein', 'cpu', 'monitor', 'installed', 'sending', 'necessary', 'installation', 'programdntymes', 'like', 'window', 'operating', 'system', 'request', 'tomorrow', 'best'] list_processed_text: [['istallation'], ['programdntymes'], ['new'], ['cpu'], ['raised'], ['afe'], ['new'], ['spindle'], ['uacyltoe'], ['hxgayczerig'], ['wherein'], ['cpu'], ['monitor'], ['installed'], ['sending'], ['necessary'], ['installation'], ['programdntymes'], ['like'], ['window'], ['operating'], ['system'], ['request'], ['tomorrow'], ['best']] k: 5661 len: <class 'list'> Data: ['xjmpacye', 'qgxrptnf', 'cannot', 'send', 'delivery', 'note', 'via', 'zz', 'mail', 'dear', 'team', 'colleague', 'cannot', 'send', 'pdf', 'erp', 'via', 'zz', 'mail', 'problem', 'already', 'exists', 'since', 'day', 'already', 'looged', 'erp', 'window', 'stil', 'work', 'please', 'look'] processed_text: ['xjmpacye', 'qgxrptnf', 'cannot', 'send', 'delivery', 'note', 'via', 'zz', 'mail', 'dear', 'team', 'colleague', 'cannot', 'send', 'pdf', 'erp', 'via', 'zz', 'mail', 'problem', 'already', 'exists', 'since', 'day', 'already', 'looged', 'erp', 'window', 'stil', 'work', 'please', 'look'] list_processed_text: [['xjmpacye'], ['qgxrptnf'], ['cannot'], ['send'], ['delivery'], ['note'], ['via'], ['zz'], ['mail'], ['dear'], ['team'], ['colleague'], ['cannot'], ['send'], ['pdf'], ['erp'], ['via'], ['zz'], ['mail'], ['problem'], ['already'], ['exists'], ['since'], ['day'], ['already'], ['looged'], ['erp'], ['window'], ['stil'], ['work'], ['please'], ['look']] k: 5662 len: <class 'list'> Data: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hr', 'plus', 'hr', 'detailed', 'description', 'problem', 'receiving', 'error', 'message', 'window', 'box', 'state', 'install', 'driver', 'click', 'install', 'appears', 'working', 'however', 'get', 'another', 'message', 'state', 'document', 'could', 'printed', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'hr', 'plus', 'hr', 'detailed', 'description', 'problem', 'receiving', 'error', 'message', 'window', 'box', 'state', 'install', 'driver', 'click', 'install', 'appears', 'working', 'however', 'get', 'another', 'message', 'state', 'document', 'could', 'printed', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'system', 'application', 'used', 'time', 'problem', 'ex', 'window', 'erp', 'kls', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['printer'], ['problem'], ['issue'], ['information'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['ex'], ['hq'], ['wy'], ['hp'], ['hr'], ['plus'], ['hr'], ['detailed'], ['description'], ['problem'], ['receiving'], ['error'], ['message'], ['window'], ['box'], ['state'], ['install'], ['driver'], ['click'], ['install'], ['appears'], ['working'], ['however'], ['get'], ['another'], ['message'], ['state'], ['document'], ['could'], ['printed'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['ex'], ['window'], ['erp'], ['kls'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 5663 len: <class 'list'> Data: ['multiple', 'shop', 'floor', 'employee', 'getting', 'locked', 'mii', 'usa', 'ohio', 'please', 'help', 'unlock', 'account', 'following', 'employee', 'currently', 'unable', 'log', 'mii', 'record', 'production', 'value', 'add', 'keghn', 'zanegtyla', 'clock', 'pfxwuvce', 'hcbmiqdp', 'clock'] processed_text: ['multiple', 'shop', 'floor', 'employee', 'getting', 'locked', 'mii', 'usa', 'ohio', 'please', 'help', 'unlock', 'account', 'following', 'employee', 'currently', 'unable', 'log', 'mii', 'record', 'production', 'value', 'add', 'keghn', 'zanegtyla', 'clock', 'pfxwuvce', 'hcbmiqdp', 'clock'] list_processed_text: [['multiple'], ['shop'], ['floor'], ['employee'], ['getting'], ['locked'], ['mii'], ['usa'], ['ohio'], ['please'], ['help'], ['unlock'], ['account'], ['following'], ['employee'], ['currently'], ['unable'], ['log'], ['mii'], ['record'], ['production'], ['value'], ['add'], ['keghn'], ['zanegtyla'], ['clock'], ['pfxwuvce'], ['hcbmiqdp'], ['clock']] k: 5664 len: <class 'list'> Data: ['need', 'access', 'drive', 'please', 'check', 'account', 'hello', 'team', 'connect', 'network', 'drive', 'apptc', 'access', 'gone', 'since', 'yesterday', 'thanks', 'gru', 'ybhazlqp', 'zfghsxiw'] processed_text: ['need', 'access', 'drive', 'please', 'check', 'account', 'hello', 'team', 'connect', 'network', 'drive', 'apptc', 'access', 'gone', 'since', 'yesterday', 'thanks', 'gru', 'ybhazlqp', 'zfghsxiw'] list_processed_text: [['need'], ['access'], ['drive'], ['please'], ['check'], ['account'], ['hello'], ['team'], ['connect'], ['network'], ['drive'], ['apptc'], ['access'], ['gone'], ['since'], ['yesterday'], ['thanks'], ['gru'], ['ybhazlqp'], ['zfghsxiw']] k: 5665 len: <class 'list'> Data: ['additional', 'correction', 'sale', 'org', 'company', 'address', 'phone', 'number', 'required', 'germany', 'move', 'sale', 'organisation', 'address', 'phone', 'number', 'fax', 'number', 'need', 'reversed', 'original', 'phone', 'fax', 'number', 'rth', 'plant', 'address', 'plant', 'phone', 'fax', 'number', 'need', 'adjusted', 'show', 'germany', 'central', 'phone', 'number', 'fax', 'company', 'code', 'address', 'need', 'reverted', 'back', 'address', 'rth', 'germany', 'detail', 'attached', 'ticket'] processed_text: ['additional', 'correction', 'sale', 'org', 'company', 'address', 'phone', 'number', 'required', 'germany', 'move', 'sale', 'organisation', 'address', 'phone', 'number', 'fax', 'number', 'need', 'reversed', 'original', 'phone', 'fax', 'number', 'rth', 'plant', 'address', 'plant', 'phone', 'fax', 'number', 'need', 'adjusted', 'show', 'germany', 'central', 'phone', 'number', 'fax', 'company', 'code', 'address', 'need', 'reverted', 'back', 'address', 'rth', 'germany', 'detail', 'attached', 'ticket'] list_processed_text: [['additional'], ['correction'], ['sale'], ['org'], ['company'], ['address'], ['phone'], ['number'], ['required'], ['germany'], ['move'], ['sale'], ['organisation'], ['address'], ['phone'], ['number'], ['fax'], ['number'], ['need'], ['reversed'], ['original'], ['phone'], ['fax'], ['number'], ['rth'], ['plant'], ['address'], ['plant'], ['phone'], ['fax'], ['number'], ['need'], ['adjusted'], ['show'], ['germany'], ['central'], ['phone'], ['number'], ['fax'], ['company'], ['code'], ['address'], ['need'], ['reverted'], ['back'], ['address'], ['rth'], ['germany'], ['detail'], ['attached'], ['ticket']] k: 5666 len: <class 'list'> Data: ['setup', 'outlook', 'wareneingang', 'vzqomdgt', 'jwoqbuml', 'setup', 'outlook', 'wareneingang', 'vzqomdgt', 'jwoqbuml'] processed_text: ['setup', 'outlook', 'wareneingang', 'vzqomdgt', 'jwoqbuml', 'setup', 'outlook', 'wareneingang', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['setup'], ['outlook'], ['wareneingang'], ['vzqomdgt'], ['jwoqbuml'], ['setup'], ['outlook'], ['wareneingang'], ['vzqomdgt'], ['jwoqbuml']] k: 5667 len: <class 'list'> Data: ['outlook', 'accepting', 'password', 'outlook', 'outlook', 'accepting', 'password', 'outlook'] processed_text: ['outlook', 'accepting', 'password', 'outlook', 'outlook', 'accepting', 'password', 'outlook'] list_processed_text: [['outlook'], ['accepting'], ['password'], ['outlook'], ['outlook'], ['accepting'], ['password'], ['outlook']] k: 5668 len: <class 'list'> Data: ['rar', 'file', 'query', 'rar', 'file', 'query'] processed_text: ['rar', 'file', 'query', 'rar', 'file', 'query'] list_processed_text: [['rar'], ['file'], ['query'], ['rar'], ['file'], ['query']] k: 5669 len: <class 'list'> Data: ['ad', 'password', 'reset', 'ad', 'password', 'reset'] processed_text: ['ad', 'password', 'reset', 'ad', 'password', 'reset'] list_processed_text: [['ad'], ['password'], ['reset'], ['ad'], ['password'], ['reset']] k: 5670 len: <class 'list'> Data: ['erp', 'problem', 'sid', 'unable', 'delete', 'customer', 'personal', 'value', 'list', 'user', 'ripfghscp', 'accidently', 'added', 'one', 'customer', 'personal', 'value', 'list', 'customer', 'show', 'every', 'sale', 'document', 'default', 'allowing', 'search', 'different', 'customer', 'please', 'check', 'provide', 'short', 'tutorial', 'solve', 'problem', 'daily', 'work', 'heavily', 'influenced'] processed_text: ['erp', 'problem', 'sid', 'unable', 'delete', 'customer', 'personal', 'value', 'list', 'user', 'ripfghscp', 'accidently', 'added', 'one', 'customer', 'personal', 'value', 'list', 'customer', 'show', 'every', 'sale', 'document', 'default', 'allowing', 'search', 'different', 'customer', 'please', 'check', 'provide', 'short', 'tutorial', 'solve', 'problem', 'daily', 'work', 'heavily', 'influenced'] list_processed_text: [['erp'], ['problem'], ['sid'], ['unable'], ['delete'], ['customer'], ['personal'], ['value'], ['list'], ['user'], ['ripfghscp'], ['accidently'], ['added'], ['one'], ['customer'], ['personal'], ['value'], ['list'], ['customer'], ['show'], ['every'], ['sale'], ['document'], ['default'], ['allowing'], ['search'], ['different'], ['customer'], ['please'], ['check'], ['provide'], ['short'], ['tutorial'], ['solve'], ['problem'], ['daily'], ['work'], ['heavily'], ['influenced']] k: 5671 len: <class 'list'> Data: ['network', 'outage', 'barcelona', 'tesscenter', 'site', 'hard', 'since', 'et', 'backup', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'barcelona', 'tesscenter', 'site', 'hard', 'since', 'et', 'backup', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['barcelona'], ['tesscenter'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['site'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5672 len: <class 'list'> Data: ['edit', 'user', 'working', 'edit', 'user', 'hang', 'forever', 'user', 'admin', 'management', 'screen', 'unable', 'submit', 'user', 'assignment'] processed_text: ['edit', 'user', 'working', 'edit', 'user', 'hang', 'forever', 'user', 'admin', 'management', 'screen', 'unable', 'submit', 'user', 'assignment'] list_processed_text: [['edit'], ['user'], ['working'], ['edit'], ['user'], ['hang'], ['forever'], ['user'], ['admin'], ['management'], ['screen'], ['unable'], ['submit'], ['user'], ['assignment']] k: 5673 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5674 len: <class 'list'> Data: ['access', 'required', 'pl', 'provided', 'access', 'folder', 'right', 'hostname', 'mtdesign', 'company', 'machine', 'manual', 'file', 'hostname', 'mtdesign', 'company', 'machine', 'manual', 'best'] processed_text: ['access', 'required', 'pl', 'provided', 'access', 'folder', 'right', 'hostname', 'mtdesign', 'company', 'machine', 'manual', 'file', 'hostname', 'mtdesign', 'company', 'machine', 'manual', 'best'] list_processed_text: [['access'], ['required'], ['pl'], ['provided'], ['access'], ['folder'], ['right'], ['hostname'], ['mtdesign'], ['company'], ['machine'], ['manual'], ['file'], ['hostname'], ['mtdesign'], ['company'], ['machine'], ['manual'], ['best']] k: 5675 len: <class 'list'> Data: ['sysetem', 'remote', 'access', 'dear', 'sir', 'system', 'cant', 'able', 'remote', 'access', 'look', 'awyw'] processed_text: ['sysetem', 'remote', 'access', 'dear', 'sir', 'system', 'cant', 'able', 'remote', 'access', 'look', 'awyw'] list_processed_text: [['sysetem'], ['remote'], ['access'], ['dear'], ['sir'], ['system'], ['cant'], ['able'], ['remote'], ['access'], ['look'], ['awyw']] k: 5676 len: <class 'list'> Data: ['request', 'solid', 'work', 'viewer', 'wrench', 'engineering', 'tool', 'kindly', 'provide', 'solid', 'work', 'viewer', 'wrench', 'engineering', 'tool', 'computer', 'comp', 'name', 'awyw'] processed_text: ['request', 'solid', 'work', 'viewer', 'wrench', 'engineering', 'tool', 'kindly', 'provide', 'solid', 'work', 'viewer', 'wrench', 'engineering', 'tool', 'computer', 'comp', 'name', 'awyw'] list_processed_text: [['request'], ['solid'], ['work'], ['viewer'], ['wrench'], ['engineering'], ['tool'], ['kindly'], ['provide'], ['solid'], ['work'], ['viewer'], ['wrench'], ['engineering'], ['tool'], ['computer'], ['comp'], ['name'], ['awyw']] k: 5677 len: <class 'list'> Data: ['call', 'third', 'party', 'talk', 'head', 'present', 'call', 'third', 'party', 'talk', 'head', 'present'] processed_text: ['call', 'third', 'party', 'talk', 'head', 'present', 'call', 'third', 'party', 'talk', 'head', 'present'] list_processed_text: [['call'], ['third'], ['party'], ['talk'], ['head'], ['present'], ['call'], ['third'], ['party'], ['talk'], ['head'], ['present']] k: 5678 len: <class 'list'> Data: ['window', 'user', 'id', 'help', 'desk', 'please', 'provide', 'window', 'user', 'id', 'user', 'user', 'id', 'gbytu', 'name', 'bfghabu'] processed_text: ['window', 'user', 'id', 'help', 'desk', 'please', 'provide', 'window', 'user', 'id', 'user', 'user', 'id', 'gbytu', 'name', 'bfghabu'] list_processed_text: [['window'], ['user'], ['id'], ['help'], ['desk'], ['please'], ['provide'], ['window'], ['user'], ['id'], ['user'], ['user'], ['id'], ['gbytu'], ['name'], ['bfghabu']] k: 5679 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 5680 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5681 len: <class 'list'> Data: ['access', 'skpye', 'business', 'contact', 'phone', 'access', 'skpye', 'business', 'user', 'name', 'password', 'wrong'] processed_text: ['access', 'skpye', 'business', 'contact', 'phone', 'access', 'skpye', 'business', 'user', 'name', 'password', 'wrong'] list_processed_text: [['access'], ['skpye'], ['business'], ['contact'], ['phone'], ['access'], ['skpye'], ['business'], ['user'], ['name'], ['password'], ['wrong']] k: 5682 len: <class 'list'> Data: ['reaktivieren', 'alte', 'laptop', 'hr', 'mghllenbecfnfk', 'bctypmjw', 'cbhnxafz', 'reaktivieren', 'alte', 'laptop', 'hr', 'mghllenbecfnfk', 'bctypmjw', 'cbhnxafz'] processed_text: ['reaktivieren', 'alte', 'laptop', 'hr', 'mghllenbecfnfk', 'bctypmjw', 'cbhnxafz', 'reaktivieren', 'alte', 'laptop', 'hr', 'mghllenbecfnfk', 'bctypmjw', 'cbhnxafz'] list_processed_text: [['reaktivieren'], ['alte'], ['laptop'], ['hr'], ['mghllenbecfnfk'], ['bctypmjw'], ['cbhnxafz'], ['reaktivieren'], ['alte'], ['laptop'], ['hr'], ['mghllenbecfnfk'], ['bctypmjw'], ['cbhnxafz']] k: 5683 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5684 len: <class 'list'> Data: ['issue', 'hr', 'tool', 'hello', 'please', 'look', 'screenshot', 'help', 'resolve', 'issue'] processed_text: ['issue', 'hr', 'tool', 'hello', 'please', 'look', 'screenshot', 'help', 'resolve', 'issue'] list_processed_text: [['issue'], ['hr'], ['tool'], ['hello'], ['please'], ['look'], ['screenshot'], ['help'], ['resolve'], ['issue']] k: 5685 len: <class 'list'> Data: ['reinstall', 'office', 'bctypmjw', 'cbhnxafz', 'reinstall', 'office', 'bctypmjw', 'cbhnxafz'] processed_text: ['reinstall', 'office', 'bctypmjw', 'cbhnxafz', 'reinstall', 'office', 'bctypmjw', 'cbhnxafz'] list_processed_text: [['reinstall'], ['office'], ['bctypmjw'], ['cbhnxafz'], ['reinstall'], ['office'], ['bctypmjw'], ['cbhnxafz']] k: 5686 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'wu', 'xaqzisrk', 'ahbgjrqz', 'problem', 'eu', 'tool', 'wu', 'xaqzisrk', 'ahbgjrqz'] processed_text: ['problem', 'eu', 'tool', 'wu', 'xaqzisrk', 'ahbgjrqz', 'problem', 'eu', 'tool', 'wu', 'xaqzisrk', 'ahbgjrqz'] list_processed_text: [['problem'], ['eu'], ['tool'], ['wu'], ['xaqzisrk'], ['ahbgjrqz'], ['problem'], ['eu'], ['tool'], ['wu'], ['xaqzisrk'], ['ahbgjrqz']] k: 5687 len: <class 'list'> Data: ['please', 'switch', 'tr', 'telephony', 'software', 'today', 'cet', 'last', 'call', 'meeting', 'set', 'fhtyulvio', 'participate', 'able', 'maybe', 'even', 'easier', 'please', 'remove', 'abandon', 'take', 'place', 'min'] processed_text: ['please', 'switch', 'tr', 'telephony', 'software', 'today', 'cet', 'last', 'call', 'meeting', 'set', 'fhtyulvio', 'participate', 'able', 'maybe', 'even', 'easier', 'please', 'remove', 'abandon', 'take', 'place', 'min'] list_processed_text: [['please'], ['switch'], ['tr'], ['telephony'], ['software'], ['today'], ['cet'], ['last'], ['call'], ['meeting'], ['set'], ['fhtyulvio'], ['participate'], ['able'], ['maybe'], ['even'], ['easier'], ['please'], ['remove'], ['abandon'], ['take'], ['place'], ['min']] k: 5688 len: <class 'list'> Data: ['last', 'login', 'company', 'laptop', 'good', 'day', 'please', 'assist', 'please', 'check', 'last', 'login', 'company', 'laptop', 'ekpl'] processed_text: ['last', 'login', 'company', 'laptop', 'good', 'day', 'please', 'assist', 'please', 'check', 'last', 'login', 'company', 'laptop', 'ekpl'] list_processed_text: [['last'], ['login'], ['company'], ['laptop'], ['good'], ['day'], ['please'], ['assist'], ['please'], ['check'], ['last'], ['login'], ['company'], ['laptop'], ['ekpl']] k: 5689 len: <class 'list'> Data: ['engineering', 'tool', 'opening', 'dear', 'sir', 'mam', 'kindly', 'refer', 'screenshot', 'engineering', 'tool', 'opening', 'showing', 'error', 'request', 'resolve', 'issue', 'immediately', 'best'] processed_text: ['engineering', 'tool', 'opening', 'dear', 'sir', 'mam', 'kindly', 'refer', 'screenshot', 'engineering', 'tool', 'opening', 'showing', 'error', 'request', 'resolve', 'issue', 'immediately', 'best'] list_processed_text: [['engineering'], ['tool'], ['opening'], ['dear'], ['sir'], ['mam'], ['kindly'], ['refer'], ['screenshot'], ['engineering'], ['tool'], ['opening'], ['showing'], ['error'], ['request'], ['resolve'], ['issue'], ['immediately'], ['best']] k: 5690 len: <class 'list'> Data: ['missrouting', 'printout', 'check', 'setting', 'printing', 'invoiuce', 'printer', 'ag', 'rth', 'change', 'printer', 'jc', 'hello', 'setting', 'erp', 'sid', 'system', 'printing', 'inwarehouse', 'tool', 'g', 'wrong', 'plant', 'plant', 'shipment', 'please', 'change', 'setting', 'printer', 'jc', 'due', 'requirement', 'continue', 'printing', 'paper', 'rth', 'protect', 'planet', 'many'] processed_text: ['missrouting', 'printout', 'check', 'setting', 'printing', 'invoiuce', 'printer', 'ag', 'rth', 'change', 'printer', 'jc', 'hello', 'setting', 'erp', 'sid', 'system', 'printing', 'inwarehouse', 'tool', 'g', 'wrong', 'plant', 'plant', 'shipment', 'please', 'change', 'setting', 'printer', 'jc', 'due', 'requirement', 'continue', 'printing', 'paper', 'rth', 'protect', 'planet', 'many'] list_processed_text: [['missrouting'], ['printout'], ['check'], ['setting'], ['printing'], ['invoiuce'], ['printer'], ['ag'], ['rth'], ['change'], ['printer'], ['jc'], ['hello'], ['setting'], ['erp'], ['sid'], ['system'], ['printing'], ['inwarehouse'], ['tool'], ['g'], ['wrong'], ['plant'], ['plant'], ['shipment'], ['please'], ['change'], ['setting'], ['printer'], ['jc'], ['due'], ['requirement'], ['continue'], ['printing'], ['paper'], ['rth'], ['protect'], ['planet'], ['many']] k: 5691 len: <class 'list'> Data: ['please', 'change', 'password', 'pin', 'eu', 'tool', 'please', 'change', 'password', 'pin', 'eu', 'tool'] processed_text: ['please', 'change', 'password', 'pin', 'eu', 'tool', 'please', 'change', 'password', 'pin', 'eu', 'tool'] list_processed_text: [['please'], ['change'], ['password'], ['pin'], ['eu'], ['tool'], ['please'], ['change'], ['password'], ['pin'], ['eu'], ['tool']] k: 5692 len: <class 'list'> Data: ['stock', 'issue', 'mm', 'hello', 'please', 'help', 'check', 'issue', 'pc', 'stock', 'plant', 'code', 'zmeo', 'stock', 'run', 'dn'] processed_text: ['stock', 'issue', 'mm', 'hello', 'please', 'help', 'check', 'issue', 'pc', 'stock', 'plant', 'code', 'zmeo', 'stock', 'run', 'dn'] list_processed_text: [['stock'], ['issue'], ['mm'], ['hello'], ['please'], ['help'], ['check'], ['issue'], ['pc'], ['stock'], ['plant'], ['code'], ['zmeo'], ['stock'], ['run'], ['dn']] k: 5693 len: <class 'list'> Data: ['vpn', 'link', 'hello', 'able', 'log', 'network', 'window', 'login', 'credential', 'please', 'check', 'resolve', 'work', 'getting', 'hampered'] processed_text: ['vpn', 'link', 'hello', 'able', 'log', 'network', 'window', 'login', 'credential', 'please', 'check', 'resolve', 'work', 'getting', 'hampered'] list_processed_text: [['vpn'], ['link'], ['hello'], ['able'], ['log'], ['network'], ['window'], ['login'], ['credential'], ['please'], ['check'], ['resolve'], ['work'], ['getting'], ['hampered']] k: 5694 len: <class 'list'> Data: ['ooo', 'issue', 'mailbox', 'company', 'hello', 'owner', 'common', 'mailbox', 'company', 'created', 'new', 'folder', 'xxxxx', 'folder', 'inbox', 'uacyltoe', 'hxgayczeing', 'member', 'shared', 'mailbox', 'see', 'folder', 'xxxxx', 'delete', 'anymore', 'click', 'delete', 'folder', 'get', 'error', 'message', 'folder', 'still', 'also', 'member', 'created', 'folder', 'folder', 'inbox', 'g', 'soedjitv', 'wvprteja', 'scherfgpd', 'created', 'folder', 'uacyltoe', 'hxgaycze', 'folder', 'uacyltoe', 'hxgaycze', 'visible', 'also', 'owner', 'folder', 'visible', 'something', 'wrong', 'mailbox', 'could', 'please', 'check'] processed_text: ['ooo', 'issue', 'mailbox', 'company', 'hello', 'owner', 'common', 'mailbox', 'company', 'created', 'new', 'folder', 'xxxxx', 'folder', 'inbox', 'uacyltoe', 'hxgayczeing', 'member', 'shared', 'mailbox', 'see', 'folder', 'xxxxx', 'delete', 'anymore', 'click', 'delete', 'folder', 'get', 'error', 'message', 'folder', 'still', 'also', 'member', 'created', 'folder', 'folder', 'inbox', 'g', 'soedjitv', 'wvprteja', 'scherfgpd', 'created', 'folder', 'uacyltoe', 'hxgaycze', 'folder', 'uacyltoe', 'hxgaycze', 'visible', 'also', 'owner', 'folder', 'visible', 'something', 'wrong', 'mailbox', 'could', 'please', 'check'] list_processed_text: [['ooo'], ['issue'], ['mailbox'], ['company'], ['hello'], ['owner'], ['common'], ['mailbox'], ['company'], ['created'], ['new'], ['folder'], ['xxxxx'], ['folder'], ['inbox'], ['uacyltoe'], ['hxgayczeing'], ['member'], ['shared'], ['mailbox'], ['see'], ['folder'], ['xxxxx'], ['delete'], ['anymore'], ['click'], ['delete'], ['folder'], ['get'], ['error'], ['message'], ['folder'], ['still'], ['also'], ['member'], ['created'], ['folder'], ['folder'], ['inbox'], ['g'], ['soedjitv'], ['wvprteja'], ['scherfgpd'], ['created'], ['folder'], ['uacyltoe'], ['hxgaycze'], ['folder'], ['uacyltoe'], ['hxgaycze'], ['visible'], ['also'], ['owner'], ['folder'], ['visible'], ['something'], ['wrong'], ['mailbox'], ['could'], ['please'], ['check']] k: 5695 len: <class 'list'> Data: ['vfx', 'foreign', 'trade', 'data', 'missing', 'dear', 'team', 'checked', 'morning', 'vfx', 'unfortunately', 'still', 'entry', 'know', 'please', 'check', 'inwarehouse', 'tool', 'pricing', 'error', 'inwarehouse', 'tool', 'completed', 'foreign', 'trade', 'data', 'error', 'still', 'coming', 'month', 'end', 'need', 'fix', 'today'] processed_text: ['vfx', 'foreign', 'trade', 'data', 'missing', 'dear', 'team', 'checked', 'morning', 'vfx', 'unfortunately', 'still', 'entry', 'know', 'please', 'check', 'inwarehouse', 'tool', 'pricing', 'error', 'inwarehouse', 'tool', 'completed', 'foreign', 'trade', 'data', 'error', 'still', 'coming', 'month', 'end', 'need', 'fix', 'today'] list_processed_text: [['vfx'], ['foreign'], ['trade'], ['data'], ['missing'], ['dear'], ['team'], ['checked'], ['morning'], ['vfx'], ['unfortunately'], ['still'], ['entry'], ['know'], ['please'], ['check'], ['inwarehouse'], ['tool'], ['pricing'], ['error'], ['inwarehouse'], ['tool'], ['completed'], ['foreign'], ['trade'], ['data'], ['error'], ['still'], ['coming'], ['month'], ['end'], ['need'], ['fix'], ['today']] k: 5696 len: <class 'list'> Data: ['erp', 'office', 'hello', 'team', 'erp', 'office', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] processed_text: ['erp', 'office', 'hello', 'team', 'erp', 'office', 'tuqrvowp', 'fxmzkvqo', 'human', 'resource'] list_processed_text: [['erp'], ['office'], ['hello'], ['team'], ['erp'], ['office'], ['tuqrvowp'], ['fxmzkvqo'], ['human'], ['resource']] k: 5697 len: <class 'list'> Data: ['wifi', 'disconnecting', 'hello', 'puxiomgy', 'ndjorwab', 'india', 'branch', 'facing', 'issue', 'wi', 'fi', 'network', 'disconnecting', 'every', 'min', 'seated', 'floor', 'admin', 'building', 'request', 'arrange', 'resolve', 'earliest'] processed_text: ['wifi', 'disconnecting', 'hello', 'puxiomgy', 'ndjorwab', 'india', 'branch', 'facing', 'issue', 'wi', 'fi', 'network', 'disconnecting', 'every', 'min', 'seated', 'floor', 'admin', 'building', 'request', 'arrange', 'resolve', 'earliest'] list_processed_text: [['wifi'], ['disconnecting'], ['hello'], ['puxiomgy'], ['ndjorwab'], ['india'], ['branch'], ['facing'], ['issue'], ['wi'], ['fi'], ['network'], ['disconnecting'], ['every'], ['min'], ['seated'], ['floor'], ['admin'], ['building'], ['request'], ['arrange'], ['resolve'], ['earliest']] k: 5698 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'nc', 'vpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'nc', 'vpn', 'circuit', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['nc'], ['vpn'], ['circuit'], ['et'], ['site'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5699 len: <class 'list'> Data: ['mii', 'password', 'reset', 'unlock', 'account', 'mii', 'password', 'reset', 'unlock', 'account'] processed_text: ['mii', 'password', 'reset', 'unlock', 'account', 'mii', 'password', 'reset', 'unlock', 'account'] list_processed_text: [['mii'], ['password'], ['reset'], ['unlock'], ['account'], ['mii'], ['password'], ['reset'], ['unlock'], ['account']] k: 5700 len: <class 'list'> Data: ['unable', 'login', 'erp', 'unable', 'login', 'erp'] processed_text: ['unable', 'login', 'erp', 'unable', 'login', 'erp'] list_processed_text: [['unable'], ['login'], ['erp'], ['unable'], ['login'], ['erp']] k: 5701 len: <class 'list'> Data: ['please', 'process', 'billing', 'accounting', 'erp', 'please', 'process', 'billing', 'accounting', 'erp'] processed_text: ['please', 'process', 'billing', 'accounting', 'erp', 'please', 'process', 'billing', 'accounting', 'erp'] list_processed_text: [['please'], ['process'], ['billing'], ['accounting'], ['erp'], ['please'], ['process'], ['billing'], ['accounting'], ['erp']] k: 5702 len: <class 'list'> Data: ['data', 'card', 'dear', 'sir', 'received', 'new', 'system', 'data', 'card', 'along', 'kindly', 'arrange', 'send', 'data', 'card', 'best'] processed_text: ['data', 'card', 'dear', 'sir', 'received', 'new', 'system', 'data', 'card', 'along', 'kindly', 'arrange', 'send', 'data', 'card', 'best'] list_processed_text: [['data'], ['card'], ['dear'], ['sir'], ['received'], ['new'], ['system'], ['data'], ['card'], ['along'], ['kindly'], ['arrange'], ['send'], ['data'], ['card'], ['best']] k: 5703 len: <class 'list'> Data: ['engineering', 'tool', 'issue', 'dear', 'sir', 'received', 'new', 'system', 'last', 'week', 'engineering', 'tool', 'downloaded', 'engineering', 'tool', 'unable', 'see', 'old', 'uploaded', 'report', 'kindly', 'resolve', 'best'] processed_text: ['engineering', 'tool', 'issue', 'dear', 'sir', 'received', 'new', 'system', 'last', 'week', 'engineering', 'tool', 'downloaded', 'engineering', 'tool', 'unable', 'see', 'old', 'uploaded', 'report', 'kindly', 'resolve', 'best'] list_processed_text: [['engineering'], ['tool'], ['issue'], ['dear'], ['sir'], ['received'], ['new'], ['system'], ['last'], ['week'], ['engineering'], ['tool'], ['downloaded'], ['engineering'], ['tool'], ['unable'], ['see'], ['old'], ['uploaded'], ['report'], ['kindly'], ['resolve'], ['best']] k: 5704 len: <class 'list'> Data: ['assignment', 'field', 'edi', 'posting', 'dear', 'team', 'found', 'dn', 'number', 'shown', 'assignment', 'field', 'edi', 'posting', 'transaction', 'change', 'error', 'please', 'confirm', 'need', 'use', 'dn', 'number', 'intercompany', 'reconciliation', 'month', 'end', 'process', 'best'] processed_text: ['assignment', 'field', 'edi', 'posting', 'dear', 'team', 'found', 'dn', 'number', 'shown', 'assignment', 'field', 'edi', 'posting', 'transaction', 'change', 'error', 'please', 'confirm', 'need', 'use', 'dn', 'number', 'intercompany', 'reconciliation', 'month', 'end', 'process', 'best'] list_processed_text: [['assignment'], ['field'], ['edi'], ['posting'], ['dear'], ['team'], ['found'], ['dn'], ['number'], ['shown'], ['assignment'], ['field'], ['edi'], ['posting'], ['transaction'], ['change'], ['error'], ['please'], ['confirm'], ['need'], ['use'], ['dn'], ['number'], ['intercompany'], ['reconciliation'], ['month'], ['end'], ['process'], ['best']] k: 5705 len: <class 'list'> Data: ['kindly', 'replace', 'mouse', 'working', 'kindly', 'replace', 'mouse', 'working'] processed_text: ['kindly', 'replace', 'mouse', 'working', 'kindly', 'replace', 'mouse', 'working'] list_processed_text: [['kindly'], ['replace'], ['mouse'], ['working'], ['kindly'], ['replace'], ['mouse'], ['working']] k: 5706 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5707 len: <class 'list'> Data: ['engineering', 'tool', 'vpn'] processed_text: ['engineering', 'tool', 'vpn'] list_processed_text: [['engineering'], ['tool'], ['vpn']] k: 5708 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5709 len: <class 'list'> Data: ['sid', 'erp', 'uacyltoe', 'hxgaycze', 'login', 'issue', 'password', 'reset', 'help', 'desk', 'following', 'issue', 'faced', 'trying', 'login', 'sid', 'erp', 'uacyltoe', 'hxgaycze', 'please', 'go', 'screen', 'shot', 'needful', 'since', 'used', 'system', 'long', 'back', 'would', 'like', 'request', 'password', 'reset', 'please', 'needful', 'earliest'] processed_text: ['sid', 'erp', 'uacyltoe', 'hxgaycze', 'login', 'issue', 'password', 'reset', 'help', 'desk', 'following', 'issue', 'faced', 'trying', 'login', 'sid', 'erp', 'uacyltoe', 'hxgaycze', 'please', 'go', 'screen', 'shot', 'needful', 'since', 'used', 'system', 'long', 'back', 'would', 'like', 'request', 'password', 'reset', 'please', 'needful', 'earliest'] list_processed_text: [['sid'], ['erp'], ['uacyltoe'], ['hxgaycze'], ['login'], ['issue'], ['password'], ['reset'], ['help'], ['desk'], ['following'], ['issue'], ['faced'], ['trying'], ['login'], ['sid'], ['erp'], ['uacyltoe'], ['hxgaycze'], ['please'], ['go'], ['screen'], ['shot'], ['needful'], ['since'], ['used'], ['system'], ['long'], ['back'], ['would'], ['like'], ['request'], ['password'], ['reset'], ['please'], ['needful'], ['earliest']] k: 5710 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 5711 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5712 len: <class 'list'> Data: ['abend', 'batch', 'job', 'job', 'failed', 'job', 'scheduler', 'job', 'name', 'job', 'failed', 'job', 'scheduler'] processed_text: ['abend', 'batch', 'job', 'job', 'failed', 'job', 'scheduler', 'job', 'name', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['abend'], ['batch'], ['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['name'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5713 len: <class 'list'> Data: ['mii', 'password', 'reset', 'unlock', 'account', 'mii', 'password', 'reset', 'unlock', 'account'] processed_text: ['mii', 'password', 'reset', 'unlock', 'account', 'mii', 'password', 'reset', 'unlock', 'account'] list_processed_text: [['mii'], ['password'], ['reset'], ['unlock'], ['account'], ['mii'], ['password'], ['reset'], ['unlock'], ['account']] k: 5714 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5715 len: <class 'list'> Data: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'filesys', 'failed', 'job', 'scheduler', 'job', 'sid', 'filesys', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['filesys'], ['failed'], ['job'], ['scheduler']] k: 5716 len: <class 'list'> Data: ['create', 'recurring', 'appointment', 'md', 'get', 'error', 'record', 'unavailable', 'create', 'recurring', 'appointment', 'md', 'get', 'error', 'record', 'unavailable', 'occurred', 'uacyltoe', 'hxgaycze', 'see', 'attachment'] processed_text: ['create', 'recurring', 'appointment', 'md', 'get', 'error', 'record', 'unavailable', 'create', 'recurring', 'appointment', 'md', 'get', 'error', 'record', 'unavailable', 'occurred', 'uacyltoe', 'hxgaycze', 'see', 'attachment'] list_processed_text: [['create'], ['recurring'], ['appointment'], ['md'], ['get'], ['error'], ['record'], ['unavailable'], ['create'], ['recurring'], ['appointment'], ['md'], ['get'], ['error'], ['record'], ['unavailable'], ['occurred'], ['uacyltoe'], ['hxgaycze'], ['see'], ['attachment']] k: 5717 len: <class 'list'> Data: ['paid', 'vendor', 'clear', 'vendor', 'code', 'f', 'paid', 'vendor', 'clear', 'vendor', 'code', 'erp', 'show', 'open', 'item', 'found', 'item', 'code', 'fbln'] processed_text: ['paid', 'vendor', 'clear', 'vendor', 'code', 'f', 'paid', 'vendor', 'clear', 'vendor', 'code', 'erp', 'show', 'open', 'item', 'found', 'item', 'code', 'fbln'] list_processed_text: [['paid'], ['vendor'], ['clear'], ['vendor'], ['code'], ['f'], ['paid'], ['vendor'], ['clear'], ['vendor'], ['code'], ['erp'], ['show'], ['open'], ['item'], ['found'], ['item'], ['code'], ['fbln']] k: 5718 len: <class 'list'> Data: ['outlook', 'skype', 'work', 'home', 'work', 'office', 'name', 'callie', 'pollaurid', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'skype', 'work', 'home', 'work', 'office'] processed_text: ['outlook', 'skype', 'work', 'home', 'work', 'office', 'name', 'callie', 'pollaurid', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'skype', 'work', 'home', 'work', 'office'] list_processed_text: [['outlook'], ['skype'], ['work'], ['home'], ['work'], ['office'], ['name'], ['callie'], ['pollaurid'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['skype'], ['work'], ['home'], ['work'], ['office']] k: 5719 len: <class 'list'> Data: ['skype', 'skype'] processed_text: ['skype', 'skype'] list_processed_text: [['skype'], ['skype']] k: 5720 len: <class 'list'> Data: ['system', 'responding', 'system', 'responding'] processed_text: ['system', 'responding', 'system', 'responding'] list_processed_text: [['system'], ['responding'], ['system'], ['responding']] k: 5721 len: <class 'list'> Data: ['assistance', 'hello', 'putting', 'ticket', 'behalf', 'nzuofeam', 'exszgtwd', 'whose', 'notebook', 'cannot', 'boot', 'due', 'hardware', 'failure', 'please', 'assist', 'immediately'] processed_text: ['assistance', 'hello', 'putting', 'ticket', 'behalf', 'nzuofeam', 'exszgtwd', 'whose', 'notebook', 'cannot', 'boot', 'due', 'hardware', 'failure', 'please', 'assist', 'immediately'] list_processed_text: [['assistance'], ['hello'], ['putting'], ['ticket'], ['behalf'], ['nzuofeam'], ['exszgtwd'], ['whose'], ['notebook'], ['cannot'], ['boot'], ['due'], ['hardware'], ['failure'], ['please'], ['assist'], ['immediately']] k: 5722 len: <class 'list'> Data: ['multiple', 'display', 'working', 'multiple', 'display', 'working'] processed_text: ['multiple', 'display', 'working', 'multiple', 'display', 'working'] list_processed_text: [['multiple'], ['display'], ['working'], ['multiple'], ['display'], ['working']] k: 5723 len: <class 'list'> Data: ['erp', 'account', 'unlock', 'erp', 'account', 'unlock'] processed_text: ['erp', 'account', 'unlock', 'erp', 'account', 'unlock'] list_processed_text: [['erp'], ['account'], ['unlock'], ['erp'], ['account'], ['unlock']] k: 5724 len: <class 'list'> Data: ['tablet', 'booting', 'tablet', 'booting'] processed_text: ['tablet', 'booting', 'tablet', 'booting'] list_processed_text: [['tablet'], ['booting'], ['tablet'], ['booting']] k: 5725 len: <class 'list'> Data: ['log', 'permission', 'working', 'need', 'change', 'password', 'also', 'please', 'call', 'name', 'etlfrucw', 'ziewxqof', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'log', 'permission', 'working', 'need', 'change', 'password', 'also', 'please', 'call', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'dartvis'] processed_text: ['log', 'permission', 'working', 'need', 'change', 'password', 'also', 'please', 'call', 'name', 'etlfrucw', 'ziewxqof', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'log', 'permission', 'working', 'need', 'change', 'password', 'also', 'please', 'call', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'dartvis'] list_processed_text: [['log'], ['permission'], ['working'], ['need'], ['change'], ['password'], ['also'], ['please'], ['call'], ['name'], ['etlfrucw'], ['ziewxqof'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['log'], ['permission'], ['working'], ['need'], ['change'], ['password'], ['also'], ['please'], ['call'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['dartvis']] k: 5726 len: <class 'list'> Data: ['office', 'outlook', 'ppt'] processed_text: ['office', 'outlook', 'ppt'] list_processed_text: [['office'], ['outlook'], ['ppt']] k: 5727 len: <class 'list'> Data: ['network', 'outage', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['warehouse'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5728 len: <class 'list'> Data: ['circuit', 'outage', 'milan', 'divestiture', 'since', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'milan', 'divestiture', 'since', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['milan'], ['divestiture'], ['since'], ['et'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5729 len: <class 'list'> Data: ['login', 'mii', 'issue', 'login', 'mii', 'issue'] processed_text: ['login', 'mii', 'issue', 'login', 'mii', 'issue'] list_processed_text: [['login'], ['mii'], ['issue'], ['login'], ['mii'], ['issue']] k: 5730 len: <class 'list'> Data: ['email', 'calendar', 'phone', 'received', 'replacement', 'company', 'supplied', 'phone', 'set', 'need', 'given', 'access', 'email', 'contact', 'calendar', 'right', 'place', 'make', 'request', 'please', 'let', 'know'] processed_text: ['email', 'calendar', 'phone', 'received', 'replacement', 'company', 'supplied', 'phone', 'set', 'need', 'given', 'access', 'email', 'contact', 'calendar', 'right', 'place', 'make', 'request', 'please', 'let', 'know'] list_processed_text: [['email'], ['calendar'], ['phone'], ['received'], ['replacement'], ['company'], ['supplied'], ['phone'], ['set'], ['need'], ['given'], ['access'], ['email'], ['contact'], ['calendar'], ['right'], ['place'], ['make'], ['request'], ['please'], ['let'], ['know']] k: 5731 len: <class 'list'> Data: ['expense', 'report', 'expense', 'report', 'submit', 'manager', 'save', 'please', 'submit', 'happened', 'expense', 'report', 'michjnfyele', 'jenhntyns', 'plant', 'manager'] processed_text: ['expense', 'report', 'expense', 'report', 'submit', 'manager', 'save', 'please', 'submit', 'happened', 'expense', 'report', 'michjnfyele', 'jenhntyns', 'plant', 'manager'] list_processed_text: [['expense'], ['report'], ['expense'], ['report'], ['submit'], ['manager'], ['save'], ['please'], ['submit'], ['happened'], ['expense'], ['report'], ['michjnfyele'], ['jenhntyns'], ['plant'], ['manager']] k: 5732 len: <class 'list'> Data: ['folder', 'access', 'jywvemun', 'qngschtz', 'nwfodmhc', 'exurcwkm', 'naruedlk', 'mpvhakdq', 'jywvemun', 'qngschtz', 'weszfyok', 'fbadnjhu', 'wg', 'br', 'reporting', 'juni', 'und', 'juli', 'zahlen', 'r', 'zeitkonten', 'und', 'urlaubsst', 'nde', 'fehlen', 'hi', 'simfghon', 'kindly', 'note', 'multiple', 'folder', 'eagcldaten', 'team', 'br', 'reporting', 'please', 'mention', 'specific', 'folder', 'access', 'given'] processed_text: ['folder', 'access', 'jywvemun', 'qngschtz', 'nwfodmhc', 'exurcwkm', 'naruedlk', 'mpvhakdq', 'jywvemun', 'qngschtz', 'weszfyok', 'fbadnjhu', 'wg', 'br', 'reporting', 'juni', 'und', 'juli', 'zahlen', 'r', 'zeitkonten', 'und', 'urlaubsst', 'nde', 'fehlen', 'hi', 'simfghon', 'kindly', 'note', 'multiple', 'folder', 'eagcldaten', 'team', 'br', 'reporting', 'please', 'mention', 'specific', 'folder', 'access', 'given'] list_processed_text: [['folder'], ['access'], ['jywvemun'], ['qngschtz'], ['nwfodmhc'], ['exurcwkm'], ['naruedlk'], ['mpvhakdq'], ['jywvemun'], ['qngschtz'], ['weszfyok'], ['fbadnjhu'], ['wg'], ['br'], ['reporting'], ['juni'], ['und'], ['juli'], ['zahlen'], ['r'], ['zeitkonten'], ['und'], ['urlaubsst'], ['nde'], ['fehlen'], ['hi'], ['simfghon'], ['kindly'], ['note'], ['multiple'], ['folder'], ['eagcldaten'], ['team'], ['br'], ['reporting'], ['please'], ['mention'], ['specific'], ['folder'], ['access'], ['given']] k: 5733 len: <class 'list'> Data: ['password', 'reset', 'xhaomnjl', 'ctusaqpr', 'password', 'reset', 'xhaomnjl', 'ctusaqpr'] processed_text: ['password', 'reset', 'xhaomnjl', 'ctusaqpr', 'password', 'reset', 'xhaomnjl', 'ctusaqpr'] list_processed_text: [['password'], ['reset'], ['xhaomnjl'], ['ctusaqpr'], ['password'], ['reset'], ['xhaomnjl'], ['ctusaqpr']] k: 5734 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 5735 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5736 len: <class 'list'> Data: ['add', 'note', 'account', 'mobile', 'add', 'note', 'account', 'mobile', 'wanted', 'able', 'demonstrate', 'meeting', 'tomorrow', 'error', 'blocking', 'ability', 'add', 'note'] processed_text: ['add', 'note', 'account', 'mobile', 'add', 'note', 'account', 'mobile', 'wanted', 'able', 'demonstrate', 'meeting', 'tomorrow', 'error', 'blocking', 'ability', 'add', 'note'] list_processed_text: [['add'], ['note'], ['account'], ['mobile'], ['add'], ['note'], ['account'], ['mobile'], ['wanted'], ['able'], ['demonstrate'], ['meeting'], ['tomorrow'], ['error'], ['blocking'], ['ability'], ['add'], ['note']] k: 5737 len: <class 'list'> Data: ['stock', 'transfer', 'pricing', 'error', 'intercompnay', 'inwarehouse', 'tool', 'reverse', 'reversed', 'intercompany', 'shipment', 'intercompany', 'inwarehouse', 'tool', 'reverse', 'ran', 'billing', 'document', 'table', 'see', 'reversal', 'either', 'see', 'attached', 'email'] processed_text: ['stock', 'transfer', 'pricing', 'error', 'intercompnay', 'inwarehouse', 'tool', 'reverse', 'reversed', 'intercompany', 'shipment', 'intercompany', 'inwarehouse', 'tool', 'reverse', 'ran', 'billing', 'document', 'table', 'see', 'reversal', 'either', 'see', 'attached', 'email'] list_processed_text: [['stock'], ['transfer'], ['pricing'], ['error'], ['intercompnay'], ['inwarehouse'], ['tool'], ['reverse'], ['reversed'], ['intercompany'], ['shipment'], ['intercompany'], ['inwarehouse'], ['tool'], ['reverse'], ['ran'], ['billing'], ['document'], ['table'], ['see'], ['reversal'], ['either'], ['see'], ['attached'], ['email']] k: 5738 len: <class 'list'> Data: ['unable', 'print', 'dv', 'unable', 'print', 'dv'] processed_text: ['unable', 'print', 'dv', 'unable', 'print', 'dv'] list_processed_text: [['unable'], ['print'], ['dv'], ['unable'], ['print'], ['dv']] k: 5739 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5740 len: <class 'list'> Data: ['tell', 'phone', 'number', 'office', 'usx', 'tower', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] processed_text: ['tell', 'phone', 'number', 'office', 'usx', 'tower', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] list_processed_text: [['tell'], ['phone'], ['number'], ['office'], ['usx'], ['tower'], ['mikhghytr'], ['wafglhdrhjop'], ['sr'], ['manager'], ['global'], ['ethic'], ['compliance'], ['programdntys']] k: 5741 len: <class 'list'> Data: ['login', 'script', 'pop', 'query', 'login', 'script', 'pop', 'query'] processed_text: ['login', 'script', 'pop', 'query', 'login', 'script', 'pop', 'query'] list_processed_text: [['login'], ['script'], ['pop'], ['query'], ['login'], ['script'], ['pop'], ['query']] k: 5742 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5743 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5744 len: <class 'list'> Data: ['install', 'project', 'petrhyr', 'install', 'project', 'petrhyr'] processed_text: ['install', 'project', 'petrhyr', 'install', 'project', 'petrhyr'] list_processed_text: [['install'], ['project'], ['petrhyr'], ['install'], ['project'], ['petrhyr']] k: 5745 len: <class 'list'> Data: ['vip', 'printer', 'setup', 'vip', 'printer', 'setup'] processed_text: ['vip', 'printer', 'setup', 'vip', 'printer', 'setup'] list_processed_text: [['vip'], ['printer'], ['setup'], ['vip'], ['printer'], ['setup']] k: 5746 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5747 len: <class 'list'> Data: ['outlook', 'connected', 'server', 'query', 'connecting', 'external', 'monitor', 'outlook', 'connected', 'server', 'query', 'connecting', 'external', 'monitor'] processed_text: ['outlook', 'connected', 'server', 'query', 'connecting', 'external', 'monitor', 'outlook', 'connected', 'server', 'query', 'connecting', 'external', 'monitor'] list_processed_text: [['outlook'], ['connected'], ['server'], ['query'], ['connecting'], ['external'], ['monitor'], ['outlook'], ['connected'], ['server'], ['query'], ['connecting'], ['external'], ['monitor']] k: 5748 len: <class 'list'> Data: ['printer', 'new', 'driver', 'update', 'needed', 'name', 'kaguhxwo', 'uoyipxqg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'printer', 'new', 'driver', 'update', 'needed'] processed_text: ['printer', 'new', 'driver', 'update', 'needed', 'name', 'kaguhxwo', 'uoyipxqg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'printer', 'new', 'driver', 'update', 'needed'] list_processed_text: [['printer'], ['new'], ['driver'], ['update'], ['needed'], ['name'], ['kaguhxwo'], ['uoyipxqg'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['printer'], ['new'], ['driver'], ['update'], ['needed']] k: 5749 len: <class 'list'> Data: ['engineering', 'tool', 'locked', 'hello', 'changed', 'password', 'tried', 'log', 'onto', 'engineering', 'tool', 'say', 'many', 'failed', 'attempted', 'see', 'attached', 'screenshot', 'stefyty', 'hunt', 'prototype', 'tech', 'product', 'engineering'] processed_text: ['engineering', 'tool', 'locked', 'hello', 'changed', 'password', 'tried', 'log', 'onto', 'engineering', 'tool', 'say', 'many', 'failed', 'attempted', 'see', 'attached', 'screenshot', 'stefyty', 'hunt', 'prototype', 'tech', 'product', 'engineering'] list_processed_text: [['engineering'], ['tool'], ['locked'], ['hello'], ['changed'], ['password'], ['tried'], ['log'], ['onto'], ['engineering'], ['tool'], ['say'], ['many'], ['failed'], ['attempted'], ['see'], ['attached'], ['screenshot'], ['stefyty'], ['hunt'], ['prototype'], ['tech'], ['product'], ['engineering']] k: 5750 len: <class 'list'> Data: ['password', 'reset', 'annette', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'robhyertyj'] processed_text: ['password', 'reset', 'annette', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'robhyertyj'] list_processed_text: [['password'], ['reset'], ['annette'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['robhyertyj']] k: 5751 len: <class 'list'> Data: ['window', 'asks', 'install', 'driver', 'allow', 'print', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'printer', 'even', 'local', 'detailed', 'description', 'problem', 'window', 'need', 'download', 'install', 'software', 'driver', 'hostname', 'computer', 'print', 'cl', 'message', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'document', 'print', 'source', 'system', 'application', 'used', 'time', 'problem', 'outlook', 'excel', 'erp', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'shutdown', 'computer', 'printer', 'error', 'message', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] processed_text: ['window', 'asks', 'install', 'driver', 'allow', 'print', 'please', 'complete', 'required', 'question', 'returned', 'back', 'gsc', 'requester', 'provide', 'required', 'information', 'gsc', 'review', 'ticket', 'able', 'resolve', 'please', 'assign', 'appropriate', 'group', 'per', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'printer', 'even', 'local', 'detailed', 'description', 'problem', 'window', 'need', 'download', 'install', 'software', 'driver', 'hostname', 'computer', 'print', 'cl', 'message', 'printer', 'type', 'document', 'printing', 'email', 'excel', 'word', 'etc', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'document', 'print', 'source', 'system', 'application', 'used', 'time', 'problem', 'outlook', 'excel', 'erp', 'printing', 'respond', 'ping', 'command', 'network', 'power', 'cycle', 'printer', 'completed', 'shutdown', 'computer', 'printer', 'error', 'message', 'erp', 'system', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'erp', 'printer', 'problem', 'erp', 'output', 'rerouted', 'another', 'erp', 'printer', 'temporarily', 'printer', 'rerouted', 'document', 'printing', 'correctly', 'please', 'scan', 'copy', 'document', 'attach', 'ticketing', 'tool', 'ticket'] list_processed_text: [['window'], ['asks'], ['install'], ['driver'], ['allow'], ['print'], ['please'], ['complete'], ['required'], ['question'], ['returned'], ['back'], ['gsc'], ['requester'], ['provide'], ['required'], ['information'], ['gsc'], ['review'], ['ticket'], ['able'], ['resolve'], ['please'], ['assign'], ['appropriate'], ['group'], ['per'], ['printer'], ['problem'], ['assignment'], ['flowchart'], ['printer'], ['name'], ['make'], ['model'], ['printer'], ['even'], ['local'], ['detailed'], ['description'], ['problem'], ['window'], ['need'], ['download'], ['install'], ['software'], ['driver'], ['hostname'], ['computer'], ['print'], ['cl'], ['message'], ['printer'], ['type'], ['document'], ['printing'], ['email'], ['excel'], ['word'], ['etc'], ['inwarehouse'], ['tool'], ['delivery'], ['note'], ['production'], ['order'], ['etc'], ['document'], ['print'], ['source'], ['system'], ['application'], ['used'], ['time'], ['problem'], ['outlook'], ['excel'], ['erp'], ['printing'], ['respond'], ['ping'], ['command'], ['network'], ['power'], ['cycle'], ['printer'], ['completed'], ['shutdown'], ['computer'], ['printer'], ['error'], ['message'], ['erp'], ['system'], ['system'], ['ex'], ['sid'], ['sid'], ['hrp'], ['plm'], ['erp'], ['printer'], ['problem'], ['erp'], ['output'], ['rerouted'], ['another'], ['erp'], ['printer'], ['temporarily'], ['printer'], ['rerouted'], ['document'], ['printing'], ['correctly'], ['please'], ['scan'], ['copy'], ['document'], ['attach'], ['ticketing'], ['tool'], ['ticket']] k: 5752 len: <class 'list'> Data: ['office', 'activation', 'corporate', 'phone', 'office', 'activation', 'corporate', 'phone'] processed_text: ['office', 'activation', 'corporate', 'phone', 'office', 'activation', 'corporate', 'phone'] list_processed_text: [['office'], ['activation'], ['corporate'], ['phone'], ['office'], ['activation'], ['corporate'], ['phone']] k: 5753 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 5754 len: <class 'list'> Data: ['delete', 'print', 'job', 'prtqc', 'delete', 'print', 'job', 'prtqc'] processed_text: ['delete', 'print', 'job', 'prtqc', 'delete', 'print', 'job', 'prtqc'] list_processed_text: [['delete'], ['print'], ['job'], ['prtqc'], ['delete'], ['print'], ['job'], ['prtqc']] k: 5755 len: <class 'list'> Data: ['changed', 'password', 'cant', 'sign', 'skype', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changed', 'password', 'cant', 'sign', 'skype'] processed_text: ['changed', 'password', 'cant', 'sign', 'skype', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changed', 'password', 'cant', 'sign', 'skype'] list_processed_text: [['changed'], ['password'], ['cant'], ['sign'], ['skype'], ['name'], ['mikhghytr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['changed'], ['password'], ['cant'], ['sign'], ['skype']] k: 5756 len: <class 'list'> Data: ['eror', 'message', 'refreshing', 'bex', 'analysis', 'error', 'atached', 'eror', 'message', 'refreshing', 'bex', 'analysis', 'error', 'atached', 'phone'] processed_text: ['eror', 'message', 'refreshing', 'bex', 'analysis', 'error', 'atached', 'eror', 'message', 'refreshing', 'bex', 'analysis', 'error', 'atached', 'phone'] list_processed_text: [['eror'], ['message'], ['refreshing'], ['bex'], ['analysis'], ['error'], ['atached'], ['eror'], ['message'], ['refreshing'], ['bex'], ['analysis'], ['error'], ['atached'], ['phone']] k: 5757 len: <class 'list'> Data: ['hr', 'tool', 'query', 'former', 'employee', 'hanghdyle', 'hr', 'tool', 'query', 'former', 'employee', 'hanghdyle'] processed_text: ['hr', 'tool', 'query', 'former', 'employee', 'hanghdyle', 'hr', 'tool', 'query', 'former', 'employee', 'hanghdyle'] list_processed_text: [['hr'], ['tool'], ['query'], ['former'], ['employee'], ['hanghdyle'], ['hr'], ['tool'], ['query'], ['former'], ['employee'], ['hanghdyle']] k: 5758 len: <class 'list'> Data: ['ticket', 'company', 'center', 'authorization', 'hi', 'approved'] processed_text: ['ticket', 'company', 'center', 'authorization', 'hi', 'approved'] list_processed_text: [['ticket'], ['company'], ['center'], ['authorization'], ['hi'], ['approved']] k: 5759 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5760 len: <class 'list'> Data: ['request', 'temporary', 'access', 'mass', 'reversal', 'hello', 'need', 'request', 'week', 'temporary', 'access', 'erp', 'sid', 'correct', 'duplicate', 'payment', 'erp'] processed_text: ['request', 'temporary', 'access', 'mass', 'reversal', 'hello', 'need', 'request', 'week', 'temporary', 'access', 'erp', 'sid', 'correct', 'duplicate', 'payment', 'erp'] list_processed_text: [['request'], ['temporary'], ['access'], ['mass'], ['reversal'], ['hello'], ['need'], ['request'], ['week'], ['temporary'], ['access'], ['erp'], ['sid'], ['correct'], ['duplicate'], ['payment'], ['erp']] k: 5761 len: <class 'list'> Data: ['problem', 'erp', 'updating', 'order', 'getting', 'picked', 'warehouse', 'tool', 'problem', 'erp', 'updating', 'order', 'getting', 'picked', 'warehouse', 'tool'] processed_text: ['problem', 'erp', 'updating', 'order', 'getting', 'picked', 'warehouse', 'tool', 'problem', 'erp', 'updating', 'order', 'getting', 'picked', 'warehouse', 'tool'] list_processed_text: [['problem'], ['erp'], ['updating'], ['order'], ['getting'], ['picked'], ['warehouse'], ['tool'], ['problem'], ['erp'], ['updating'], ['order'], ['getting'], ['picked'], ['warehouse'], ['tool']] k: 5762 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5763 len: <class 'list'> Data: ['outlook', 'launching', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'reconfigured', 'mscrm', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] processed_text: ['outlook', 'launching', 'outlook', 'launching', 'connected', 'user', 'system', 'using', 'teamviewer', 'reconfigured', 'mscrm', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] list_processed_text: [['outlook'], ['launching'], ['outlook'], ['launching'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['reconfigured'], ['mscrm'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved']] k: 5764 len: <class 'list'> Data: ['ticket', 'update', 'regarding', 'ticket', 'tqvpohwj', 'tbkywpqz', 'ticket', 'update', 'regarding', 'ticket', 'tqvpohwj', 'tbkywpqz'] processed_text: ['ticket', 'update', 'regarding', 'ticket', 'tqvpohwj', 'tbkywpqz', 'ticket', 'update', 'regarding', 'ticket', 'tqvpohwj', 'tbkywpqz'] list_processed_text: [['ticket'], ['update'], ['regarding'], ['ticket'], ['tqvpohwj'], ['tbkywpqz'], ['ticket'], ['update'], ['regarding'], ['ticket'], ['tqvpohwj'], ['tbkywpqz']] k: 5765 len: <class 'list'> Data: ['need', 'map', 'add', 'network', 'printer', 'need', 'map', 'add', 'network', 'printer'] processed_text: ['need', 'map', 'add', 'network', 'printer', 'need', 'map', 'add', 'network', 'printer'] list_processed_text: [['need'], ['map'], ['add'], ['network'], ['printer'], ['need'], ['map'], ['add'], ['network'], ['printer']] k: 5766 len: <class 'list'> Data: ['jerghjemiah', 'brock', 'window', 'password', 'expiring', 'soon', 'need', 'assistance', 'resetting', 'password', 'jerghjemiah', 'brock', 'window', 'password', 'expiring', 'soon', 'need', 'assistance', 'resetting', 'password'] processed_text: ['jerghjemiah', 'brock', 'window', 'password', 'expiring', 'soon', 'need', 'assistance', 'resetting', 'password', 'jerghjemiah', 'brock', 'window', 'password', 'expiring', 'soon', 'need', 'assistance', 'resetting', 'password'] list_processed_text: [['jerghjemiah'], ['brock'], ['window'], ['password'], ['expiring'], ['soon'], ['need'], ['assistance'], ['resetting'], ['password'], ['jerghjemiah'], ['brock'], ['window'], ['password'], ['expiring'], ['soon'], ['need'], ['assistance'], ['resetting'], ['password']] k: 5767 len: <class 'list'> Data: ['unable', 'send', 'email', 'hrscc', 'team', 'external', 'email', 'address', 'unable', 'send', 'email', 'hrscc', 'team', 'external', 'email', 'address'] processed_text: ['unable', 'send', 'email', 'hrscc', 'team', 'external', 'email', 'address', 'unable', 'send', 'email', 'hrscc', 'team', 'external', 'email', 'address'] list_processed_text: [['unable'], ['send'], ['email'], ['hrscc'], ['team'], ['external'], ['email'], ['address'], ['unable'], ['send'], ['email'], ['hrscc'], ['team'], ['external'], ['email'], ['address']] k: 5768 len: <class 'list'> Data: ['permission', 'discount', 'removed', 'znq', 'zno', 'znr', 'zn', 'need', 'restored', 'whole', 'mti', 'team', 'permission', 'discount', 'removed', 'znq', 'zno', 'znr', 'zn', 'need', 'restored', 'whole', 'mti', 'team'] processed_text: ['permission', 'discount', 'removed', 'znq', 'zno', 'znr', 'zn', 'need', 'restored', 'whole', 'mti', 'team', 'permission', 'discount', 'removed', 'znq', 'zno', 'znr', 'zn', 'need', 'restored', 'whole', 'mti', 'team'] list_processed_text: [['permission'], ['discount'], ['removed'], ['znq'], ['zno'], ['znr'], ['zn'], ['need'], ['restored'], ['whole'], ['mti'], ['team'], ['permission'], ['discount'], ['removed'], ['znq'], ['zno'], ['znr'], ['zn'], ['need'], ['restored'], ['whole'], ['mti'], ['team']] k: 5769 len: <class 'list'> Data: ['unable', 'launch', 'erp', 'logon', 'balancing', 'error', 'unable', 'launch', 'erp', 'logon', 'balancing', 'error'] processed_text: ['unable', 'launch', 'erp', 'logon', 'balancing', 'error', 'unable', 'launch', 'erp', 'logon', 'balancing', 'error'] list_processed_text: [['unable'], ['launch'], ['erp'], ['logon'], ['balancing'], ['error'], ['unable'], ['launch'], ['erp'], ['logon'], ['balancing'], ['error']] k: 5770 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 5771 len: <class 'list'> Data: ['please', 'identify', 'source', 'user', 'involved', 'processing', 'deletion', 'terminated', 'user', 'ugyothfz', 'ugrmkdhx', 'pm', 'zkevitua', 'nesbfirjeerabhadrappa', 'hnynhsth', 'jsuyhwssad', 'rjtnlocs', 'fclswxkz', 'tanrgty', 'hello', 'aghynil', 'request', 'assistance', 'identifying', 'source', 'user', 'processed', 'deletion', 'terminated', 'user', 'subject', 'let', 'know', 'need', 'sn', 'ticket', 'created'] processed_text: ['please', 'identify', 'source', 'user', 'involved', 'processing', 'deletion', 'terminated', 'user', 'ugyothfz', 'ugrmkdhx', 'pm', 'zkevitua', 'nesbfirjeerabhadrappa', 'hnynhsth', 'jsuyhwssad', 'rjtnlocs', 'fclswxkz', 'tanrgty', 'hello', 'aghynil', 'request', 'assistance', 'identifying', 'source', 'user', 'processed', 'deletion', 'terminated', 'user', 'subject', 'let', 'know', 'need', 'sn', 'ticket', 'created'] list_processed_text: [['please'], ['identify'], ['source'], ['user'], ['involved'], ['processing'], ['deletion'], ['terminated'], ['user'], ['ugyothfz'], ['ugrmkdhx'], ['pm'], ['zkevitua'], ['nesbfirjeerabhadrappa'], ['hnynhsth'], ['jsuyhwssad'], ['rjtnlocs'], ['fclswxkz'], ['tanrgty'], ['hello'], ['aghynil'], ['request'], ['assistance'], ['identifying'], ['source'], ['user'], ['processed'], ['deletion'], ['terminated'], ['user'], ['subject'], ['let'], ['know'], ['need'], ['sn'], ['ticket'], ['created']] k: 5772 len: <class 'list'> Data: ['hostname', 'volume', 'consumed', 'disk', 'hostname', 'volume', 'consumed', 'disk'] processed_text: ['hostname', 'volume', 'consumed', 'disk', 'hostname', 'volume', 'consumed', 'disk'] list_processed_text: [['hostname'], ['volume'], ['consumed'], ['disk'], ['hostname'], ['volume'], ['consumed'], ['disk']] k: 5773 len: <class 'list'> Data: ['email', 'delegation', 'email', 'delegation'] processed_text: ['email', 'delegation', 'email', 'delegation'] list_processed_text: [['email'], ['delegation'], ['email'], ['delegation']] k: 5774 len: <class 'list'> Data: ['rqxmaindept', 'ad', 'account', 'keep', 'getting', 'locked', 'please', 'unlock', 'rqxmaindept', 'ad', 'account', 'keep', 'getting', 'locked', 'please', 'unlock'] processed_text: ['rqxmaindept', 'ad', 'account', 'keep', 'getting', 'locked', 'please', 'unlock', 'rqxmaindept', 'ad', 'account', 'keep', 'getting', 'locked', 'please', 'unlock'] list_processed_text: [['rqxmaindept'], ['ad'], ['account'], ['keep'], ['getting'], ['locked'], ['please'], ['unlock'], ['rqxmaindept'], ['ad'], ['account'], ['keep'], ['getting'], ['locked'], ['please'], ['unlock']] k: 5775 len: <class 'list'> Data: ['skype', 'login', 'issue', 'summary', 'unable', 'log', 'skype', 'password', 'change', 'yesterday'] processed_text: ['skype', 'login', 'issue', 'summary', 'unable', 'log', 'skype', 'password', 'change', 'yesterday'] list_processed_text: [['skype'], ['login'], ['issue'], ['summary'], ['unable'], ['log'], ['skype'], ['password'], ['change'], ['yesterday']] k: 5776 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5777 len: <class 'list'> Data: ['outlook', 'issue', 'outlook', 'issue'] processed_text: ['outlook', 'issue', 'outlook', 'issue'] list_processed_text: [['outlook'], ['issue'], ['outlook'], ['issue']] k: 5778 len: <class 'list'> Data: ['konto', 'scghhnell', 'reaktivieren', 'laptop', 'ewel', 'konto', 'scghhnell', 'reaktivieren', 'laptop', 'ewel'] processed_text: ['konto', 'scghhnell', 'reaktivieren', 'laptop', 'ewel', 'konto', 'scghhnell', 'reaktivieren', 'laptop', 'ewel'] list_processed_text: [['konto'], ['scghhnell'], ['reaktivieren'], ['laptop'], ['ewel'], ['konto'], ['scghhnell'], ['reaktivieren'], ['laptop'], ['ewel']] k: 5779 len: <class 'list'> Data: ['collaboration', 'platform', 'email', 'mhtyike', 'szumyhtulas', 'receiving', 'attached', 'email', 'employee', 'report', 'please', 'advise', 'receiving'] processed_text: ['collaboration', 'platform', 'email', 'mhtyike', 'szumyhtulas', 'receiving', 'attached', 'email', 'employee', 'report', 'please', 'advise', 'receiving'] list_processed_text: [['collaboration'], ['platform'], ['email'], ['mhtyike'], ['szumyhtulas'], ['receiving'], ['attached'], ['email'], ['employee'], ['report'], ['please'], ['advise'], ['receiving']] k: 5780 len: <class 'list'> Data: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] processed_text: ['need', 'configure', 'printer', 'need', 'configure', 'printer'] list_processed_text: [['need'], ['configure'], ['printer'], ['need'], ['configure'], ['printer']] k: 5781 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5782 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5783 len: <class 'list'> Data: ['wifi', 'guest', 'account', 'wifi', 'guest', 'account'] processed_text: ['wifi', 'guest', 'account', 'wifi', 'guest', 'account'] list_processed_text: [['wifi'], ['guest'], ['account'], ['wifi'], ['guest'], ['account']] k: 5784 len: <class 'list'> Data: ['unable', 'boot', 'laptop', 'unable', 'boot', 'laptop'] processed_text: ['unable', 'boot', 'laptop', 'unable', 'boot', 'laptop'] list_processed_text: [['unable'], ['boot'], ['laptop'], ['unable'], ['boot'], ['laptop']] k: 5785 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] processed_text: ['erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['done'], ['confirmed'], ['user'], ['erp'], ['sid'], ['password'], ['reset'], ['done'], ['confirmed'], ['user']] k: 5786 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5787 len: <class 'list'> Data: ['need', 'setup', 'exchange', 'corporate', 'iphone', 'need', 'setup', 'exchange', 'corporate', 'iphone'] processed_text: ['need', 'setup', 'exchange', 'corporate', 'iphone', 'need', 'setup', 'exchange', 'corporate', 'iphone'] list_processed_text: [['need'], ['setup'], ['exchange'], ['corporate'], ['iphone'], ['need'], ['setup'], ['exchange'], ['corporate'], ['iphone']] k: 5788 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] processed_text: ['erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['done'], ['confirmed'], ['user'], ['erp'], ['sid'], ['password'], ['reset'], ['done'], ['confirmed'], ['user']] k: 5789 len: <class 'list'> Data: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] processed_text: ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'] list_processed_text: [['inc'], ['ticket'], ['update'], ['inc'], ['ticket'], ['update']] k: 5790 len: <class 'list'> Data: ['unable', 'launch', 'engineering', 'tool', 'unable', 'launch', 'engineering', 'tool'] processed_text: ['unable', 'launch', 'engineering', 'tool', 'unable', 'launch', 'engineering', 'tool'] list_processed_text: [['unable'], ['launch'], ['engineering'], ['tool'], ['unable'], ['launch'], ['engineering'], ['tool']] k: 5791 len: <class 'list'> Data: ['ticket', 'company', 'center', 'authorization', 'hello', 'rubiargty', 'need', 'access', 'karghyuen', 'best'] processed_text: ['ticket', 'company', 'center', 'authorization', 'hello', 'rubiargty', 'need', 'access', 'karghyuen', 'best'] list_processed_text: [['ticket'], ['company'], ['center'], ['authorization'], ['hello'], ['rubiargty'], ['need'], ['access'], ['karghyuen'], ['best']] k: 5792 len: <class 'list'> Data: ['quick', 'quote', 'setup', 'problem', 'image', 'altermdnty', 'requested', 'thus', 'making', 'difficult', 'quota', 'special', 'tool'] processed_text: ['quick', 'quote', 'setup', 'problem', 'image', 'altermdnty', 'requested', 'thus', 'making', 'difficult', 'quota', 'special', 'tool'] list_processed_text: [['quick'], ['quote'], ['setup'], ['problem'], ['image'], ['altermdnty'], ['requested'], ['thus'], ['making'], ['difficult'], ['quota'], ['special'], ['tool']] k: 5793 len: <class 'list'> Data: ['network', 'mapping', 'network', 'mapping'] processed_text: ['network', 'mapping', 'network', 'mapping'] list_processed_text: [['network'], ['mapping'], ['network'], ['mapping']] k: 5794 len: <class 'list'> Data: ['palghjmal', 'able', 'run', 'softland', 'client', 'citrix', 'qohfjpna', 'exphkims', 'palghjmal', 'able', 'run', 'softland', 'client', 'citrix', 'show', 'error', 'loading', 'application', 'please', 'see', 'attached', 'error', 'uacyltoe', 'hxgayczeed', 'pc', 'got', 'problem'] processed_text: ['palghjmal', 'able', 'run', 'softland', 'client', 'citrix', 'qohfjpna', 'exphkims', 'palghjmal', 'able', 'run', 'softland', 'client', 'citrix', 'show', 'error', 'loading', 'application', 'please', 'see', 'attached', 'error', 'uacyltoe', 'hxgayczeed', 'pc', 'got', 'problem'] list_processed_text: [['palghjmal'], ['able'], ['run'], ['softland'], ['client'], ['citrix'], ['qohfjpna'], ['exphkims'], ['palghjmal'], ['able'], ['run'], ['softland'], ['client'], ['citrix'], ['show'], ['error'], ['loading'], ['application'], ['please'], ['see'], ['attached'], ['error'], ['uacyltoe'], ['hxgayczeed'], ['pc'], ['got'], ['problem']] k: 5795 len: <class 'list'> Data: ['install', 'shop', 'floor', 'app', 'machine', 'install', 'shop', 'floor', 'app', 'machine'] processed_text: ['install', 'shop', 'floor', 'app', 'machine', 'install', 'shop', 'floor', 'app', 'machine'] list_processed_text: [['install'], ['shop'], ['floor'], ['app'], ['machine'], ['install'], ['shop'], ['floor'], ['app'], ['machine']] k: 5796 len: <class 'list'> Data: ['outlook', 'cache', 'email', 'query', 'outlook', 'cache', 'email', 'query'] processed_text: ['outlook', 'cache', 'email', 'query', 'outlook', 'cache', 'email', 'query'] list_processed_text: [['outlook'], ['cache'], ['email'], ['query'], ['outlook'], ['cache'], ['email'], ['query']] k: 5797 len: <class 'list'> Data: ['new', 'cpp', 'id', 'request', 'initiative', 'see', 'image', 'attached', 'cphlme'] processed_text: ['new', 'cpp', 'id', 'request', 'initiative', 'see', 'image', 'attached', 'cphlme'] list_processed_text: [['new'], ['cpp'], ['id'], ['request'], ['initiative'], ['see'], ['image'], ['attached'], ['cphlme']] k: 5798 len: <class 'list'> Data: ['ticket', 'company', 'center', 'authorization', 'hello', 'cathytyma', 'update', 'position', 'title', 'per', 'request', 'regarding', 'access', 'please', 'provide', 'copy', 'access', 'person', 'name'] processed_text: ['ticket', 'company', 'center', 'authorization', 'hello', 'cathytyma', 'update', 'position', 'title', 'per', 'request', 'regarding', 'access', 'please', 'provide', 'copy', 'access', 'person', 'name'] list_processed_text: [['ticket'], ['company'], ['center'], ['authorization'], ['hello'], ['cathytyma'], ['update'], ['position'], ['title'], ['per'], ['request'], ['regarding'], ['access'], ['please'], ['provide'], ['copy'], ['access'], ['person'], ['name']] k: 5799 len: <class 'list'> Data: ['ticket', 'company', 'center', 'authorization', 'hello', 'still', 'waiting', 'problem', 'resolve', 'please', 'advise', 'approval', 'still', 'need', 'access'] processed_text: ['ticket', 'company', 'center', 'authorization', 'hello', 'still', 'waiting', 'problem', 'resolve', 'please', 'advise', 'approval', 'still', 'need', 'access'] list_processed_text: [['ticket'], ['company'], ['center'], ['authorization'], ['hello'], ['still'], ['waiting'], ['problem'], ['resolve'], ['please'], ['advise'], ['approval'], ['still'], ['need'], ['access']] k: 5800 len: <class 'list'> Data: ['whenever', 'open', 'email', 'jpg', 'attachement', 'always', 'get', 'security', 'warning', 'whenever', 'open', 'email', 'jpg', 'attachement', 'always', 'get', 'security', 'warning'] processed_text: ['whenever', 'open', 'email', 'jpg', 'attachement', 'always', 'get', 'security', 'warning', 'whenever', 'open', 'email', 'jpg', 'attachement', 'always', 'get', 'security', 'warning'] list_processed_text: [['whenever'], ['open'], ['email'], ['jpg'], ['attachement'], ['always'], ['get'], ['security'], ['warning'], ['whenever'], ['open'], ['email'], ['jpg'], ['attachement'], ['always'], ['get'], ['security'], ['warning']] k: 5801 len: <class 'list'> Data: ['presentation', 'posted', 'drive', 'week', 'appearing', 'approval', 'page', 'presentation', 'posted', 'drive', 'week', 'appearing', 'approval', 'page', 'tomashtgd', 'mchectg', 'like', 'use', 'approval', 'page', 'navigate', 'around', 'presentation', 'sure', 'notice', 'working', 'correctly', 'see', 'attached', 'file', 'detail', 'url'] processed_text: ['presentation', 'posted', 'drive', 'week', 'appearing', 'approval', 'page', 'presentation', 'posted', 'drive', 'week', 'appearing', 'approval', 'page', 'tomashtgd', 'mchectg', 'like', 'use', 'approval', 'page', 'navigate', 'around', 'presentation', 'sure', 'notice', 'working', 'correctly', 'see', 'attached', 'file', 'detail', 'url'] list_processed_text: [['presentation'], ['posted'], ['drive'], ['week'], ['appearing'], ['approval'], ['page'], ['presentation'], ['posted'], ['drive'], ['week'], ['appearing'], ['approval'], ['page'], ['tomashtgd'], ['mchectg'], ['like'], ['use'], ['approval'], ['page'], ['navigate'], ['around'], ['presentation'], ['sure'], ['notice'], ['working'], ['correctly'], ['see'], ['attached'], ['file'], ['detail'], ['url']] k: 5802 len: <class 'list'> Data: ['print', 'asking', 'install', 'print', 'driver', 'print', 'asking', 'install', 'print', 'driver', 'print', 'asking', 'install', 'print', 'driver', 'nothing', 'happened'] processed_text: ['print', 'asking', 'install', 'print', 'driver', 'print', 'asking', 'install', 'print', 'driver', 'print', 'asking', 'install', 'print', 'driver', 'nothing', 'happened'] list_processed_text: [['print'], ['asking'], ['install'], ['print'], ['driver'], ['print'], ['asking'], ['install'], ['print'], ['driver'], ['print'], ['asking'], ['install'], ['print'], ['driver'], ['nothing'], ['happened']] k: 5803 len: <class 'list'> Data: ['reset', 'password', 'cpmaidhj', 'elbaqmtp', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'cpmaidhj', 'elbaqmtp', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['cpmaidhj'], ['elbaqmtp'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5804 len: <class 'list'> Data: ['erp', 'salary', 'statement', 'lauacyltoe', 'hxgaycze', 'salary', 'statement', 'continuing', 'get', 'paycheck', 'unable', 'see', 'salary', 'statement', 'erp', 'going', 'hub'] processed_text: ['erp', 'salary', 'statement', 'lauacyltoe', 'hxgaycze', 'salary', 'statement', 'continuing', 'get', 'paycheck', 'unable', 'see', 'salary', 'statement', 'erp', 'going', 'hub'] list_processed_text: [['erp'], ['salary'], ['statement'], ['lauacyltoe'], ['hxgaycze'], ['salary'], ['statement'], ['continuing'], ['get'], ['paycheck'], ['unable'], ['see'], ['salary'], ['statement'], ['erp'], ['going'], ['hub']] k: 5805 len: <class 'list'> Data: ['sandop', 'could', 'please', 'reset', 'password', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] processed_text: ['sandop', 'could', 'please', 'reset', 'password', 'uyrpdvoq', 'mbzevtcx', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'north', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq', 'www', 'company', 'com'] list_processed_text: [['sandop'], ['could'], ['please'], ['reset'], ['password'], ['uyrpdvoq'], ['mbzevtcx'], ['sale'], ['manager'], ['earthwork'], ['european'], ['served'], ['area'], ['north'], ['company'], ['infrastructure'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['und'], ['naruedlk'], ['mpvhakdq'], ['www'], ['company'], ['com']] k: 5806 len: <class 'list'> Data: ['es', 'access', 'user', 'ghaltiek', 'lsuepvyx', 'yesilc', 'es', 'access', 'user', 'ghaltiek', 'lsuepvyx', 'please', 'find', 'error', 'message', 'attached', 'phone'] processed_text: ['es', 'access', 'user', 'ghaltiek', 'lsuepvyx', 'yesilc', 'es', 'access', 'user', 'ghaltiek', 'lsuepvyx', 'please', 'find', 'error', 'message', 'attached', 'phone'] list_processed_text: [['es'], ['access'], ['user'], ['ghaltiek'], ['lsuepvyx'], ['yesilc'], ['es'], ['access'], ['user'], ['ghaltiek'], ['lsuepvyx'], ['please'], ['find'], ['error'], ['message'], ['attached'], ['phone']] k: 5807 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'user', 'id', 'dalgtylam', 'place', 'quarantine', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'edml', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'user', 'id', 'dalgtylam', 'place', 'quarantine', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'edml', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['user'], ['id'], ['dalgtylam'], ['place'], ['quarantine'], ['seeing'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['edml'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 5808 len: <class 'list'> Data: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] processed_text: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] list_processed_text: [['printer'], ['driver'], ['update'], ['printer'], ['driver'], ['update']] k: 5809 len: <class 'list'> Data: ['erp', 'training', 'query', 'erp', 'training', 'query'] processed_text: ['erp', 'training', 'query', 'erp', 'training', 'query'] list_processed_text: [['erp'], ['training'], ['query'], ['erp'], ['training'], ['query']] k: 5810 len: <class 'list'> Data: ['problem', 'office', 'com', 'dear', 'help', 'desk', 'office', 'always', 'give', 'blank', 'page', 'see', 'screen', 'shot', 'please', 'help', 'jdamieul', 'fandyhgg', 'phd', 'u', 'senior', 'staff', 'engineer'] processed_text: ['problem', 'office', 'com', 'dear', 'help', 'desk', 'office', 'always', 'give', 'blank', 'page', 'see', 'screen', 'shot', 'please', 'help', 'jdamieul', 'fandyhgg', 'phd', 'u', 'senior', 'staff', 'engineer'] list_processed_text: [['problem'], ['office'], ['com'], ['dear'], ['help'], ['desk'], ['office'], ['always'], ['give'], ['blank'], ['page'], ['see'], ['screen'], ['shot'], ['please'], ['help'], ['jdamieul'], ['fandyhgg'], ['phd'], ['u'], ['senior'], ['staff'], ['engineer']] k: 5811 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'user', 'zhengdr', 'placed', 'palo', 'virus', 'quarantine', 'incident', 'overview', 'seeing', 'att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'aenl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'user', 'zhengdr', 'placed', 'palo', 'virus', 'quarantine', 'incident', 'overview', 'seeing', 'att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'aenl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['user'], ['zhengdr'], ['placed'], ['palo'], ['virus'], ['quarantine'], ['incident'], ['overview'], ['seeing'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['aenl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 5812 len: <class 'list'> Data: ['printer', 'configuration', 'printer', 'configuration'] processed_text: ['printer', 'configuration', 'printer', 'configuration'] list_processed_text: [['printer'], ['configuration'], ['printer'], ['configuration']] k: 5813 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset', 'done', 'confirmed', 'user'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset'], ['done'], ['confirmed'], ['user']] k: 5814 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5815 len: <class 'list'> Data: ['logon', 'error', 'erp', 'sid', 'logon', 'error', 'erp', 'sid'] processed_text: ['logon', 'error', 'erp', 'sid', 'logon', 'error', 'erp', 'sid'] list_processed_text: [['logon'], ['error'], ['erp'], ['sid'], ['logon'], ['error'], ['erp'], ['sid']] k: 5816 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'nv', 'divestiture', 'site', 'secondary', 'vpn', 'circuit', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'nv', 'divestiture', 'site', 'secondary', 'vpn', 'circuit', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['nv'], ['divestiture'], ['site'], ['secondary'], ['vpn'], ['circuit'], ['since'], ['et'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5817 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5818 len: <class 'list'> Data: ['sn', 'access', 'please', 'add', 'user', 'vvkatts', 'ticketing', 'tool', 'erp', 'finance', 'group', 'let', 'know', 'question'] processed_text: ['sn', 'access', 'please', 'add', 'user', 'vvkatts', 'ticketing', 'tool', 'erp', 'finance', 'group', 'let', 'know', 'question'] list_processed_text: [['sn'], ['access'], ['please'], ['add'], ['user'], ['vvkatts'], ['ticketing'], ['tool'], ['erp'], ['finance'], ['group'], ['let'], ['know'], ['question']] k: 5819 len: <class 'list'> Data: ['outlook', 'loading', 'outlook', 'loading'] processed_text: ['outlook', 'loading', 'outlook', 'loading'] list_processed_text: [['outlook'], ['loading'], ['outlook'], ['loading']] k: 5820 len: <class 'list'> Data: ['access', 'expense', 'reporting', 'employee', 'self', 'service', 'trying', 'enter', 'expense', 'reporting', 'tab', 'create', 'new', 'expense', 'report', 'window', 'pop', 'say', 'critical', 'runtime', 'error', 'access', 'expense', 'reporting', 'page', 'aspect', 'expense', 'reporting', 'page', 'employee', 'self', 'service', 'work', 'well'] processed_text: ['access', 'expense', 'reporting', 'employee', 'self', 'service', 'trying', 'enter', 'expense', 'reporting', 'tab', 'create', 'new', 'expense', 'report', 'window', 'pop', 'say', 'critical', 'runtime', 'error', 'access', 'expense', 'reporting', 'page', 'aspect', 'expense', 'reporting', 'page', 'employee', 'self', 'service', 'work', 'well'] list_processed_text: [['access'], ['expense'], ['reporting'], ['employee'], ['self'], ['service'], ['trying'], ['enter'], ['expense'], ['reporting'], ['tab'], ['create'], ['new'], ['expense'], ['report'], ['window'], ['pop'], ['say'], ['critical'], ['runtime'], ['error'], ['access'], ['expense'], ['reporting'], ['page'], ['aspect'], ['expense'], ['reporting'], ['page'], ['employee'], ['self'], ['service'], ['work'], ['well']] k: 5821 len: <class 'list'> Data: ['window', 'printing', 'issue', 'need', 'driver', 'installed', 'every', 'printer', 'complete', 'successfully', 'window', 'printing', 'issue', 'need', 'driver', 'installed', 'every', 'printer', 'complete', 'successfully', 'print', 'server', 'hostname'] processed_text: ['window', 'printing', 'issue', 'need', 'driver', 'installed', 'every', 'printer', 'complete', 'successfully', 'window', 'printing', 'issue', 'need', 'driver', 'installed', 'every', 'printer', 'complete', 'successfully', 'print', 'server', 'hostname'] list_processed_text: [['window'], ['printing'], ['issue'], ['need'], ['driver'], ['installed'], ['every'], ['printer'], ['complete'], ['successfully'], ['window'], ['printing'], ['issue'], ['need'], ['driver'], ['installed'], ['every'], ['printer'], ['complete'], ['successfully'], ['print'], ['server'], ['hostname']] k: 5822 len: <class 'list'> Data: ['hostname', 'volume', 'comsumed', 'dev', 'hd', 'hostname', 'volume', 'comsumed', 'dev', 'hd'] processed_text: ['hostname', 'volume', 'comsumed', 'dev', 'hd', 'hostname', 'volume', 'comsumed', 'dev', 'hd'] list_processed_text: [['hostname'], ['volume'], ['comsumed'], ['dev'], ['hd'], ['hostname'], ['volume'], ['comsumed'], ['dev'], ['hd']] k: 5823 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5824 len: <class 'list'> Data: ['email', 'working', 'email', 'working'] processed_text: ['email', 'working', 'email', 'working'] list_processed_text: [['email'], ['working'], ['email'], ['working']] k: 5825 len: <class 'list'> Data: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] processed_text: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] list_processed_text: [['impact'], ['award'], ['password'], ['reset'], ['impact'], ['award'], ['password'], ['reset']] k: 5826 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 5827 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 5828 len: <class 'list'> Data: ['ad', 'account', 'lock', 'ad', 'account', 'lock'] processed_text: ['ad', 'account', 'lock', 'ad', 'account', 'lock'] list_processed_text: [['ad'], ['account'], ['lock'], ['ad'], ['account'], ['lock']] k: 5829 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 5830 len: <class 'list'> Data: ['telephony', 'software', 'please', 'reset', 'release', 'password', 'hello', 'telephony', 'software', 'please', 'reset', 'release', 'password', 'sinc', 're', 'salutation', 'best'] processed_text: ['telephony', 'software', 'please', 'reset', 'release', 'password', 'hello', 'telephony', 'software', 'please', 'reset', 'release', 'password', 'sinc', 're', 'salutation', 'best'] list_processed_text: [['telephony'], ['software'], ['please'], ['reset'], ['release'], ['password'], ['hello'], ['telephony'], ['software'], ['please'], ['reset'], ['release'], ['password'], ['sinc'], ['re'], ['salutation'], ['best']] k: 5831 len: <class 'list'> Data: ['microsoft', 'outlook', 'work', 'user', 'bhqvklgc', 'vscdzjhg', 'change', 'password', 'using', 'password', 'management', 'tool', 'outlook', 'work', 'deleted', 'profile', 'reconfigured', 'outlook', 'asking', 'password', 'continuously', 'user', 'bhqvklgc', 'vscdzjhg', 'mail', 'user', 'id', 'marrthyu', 'computer', 'name', 'ekbl'] processed_text: ['microsoft', 'outlook', 'work', 'user', 'bhqvklgc', 'vscdzjhg', 'change', 'password', 'using', 'password', 'management', 'tool', 'outlook', 'work', 'deleted', 'profile', 'reconfigured', 'outlook', 'asking', 'password', 'continuously', 'user', 'bhqvklgc', 'vscdzjhg', 'mail', 'user', 'id', 'marrthyu', 'computer', 'name', 'ekbl'] list_processed_text: [['microsoft'], ['outlook'], ['work'], ['user'], ['bhqvklgc'], ['vscdzjhg'], ['change'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['outlook'], ['work'], ['deleted'], ['profile'], ['reconfigured'], ['outlook'], ['asking'], ['password'], ['continuously'], ['user'], ['bhqvklgc'], ['vscdzjhg'], ['mail'], ['user'], ['id'], ['marrthyu'], ['computer'], ['name'], ['ekbl']] k: 5832 len: <class 'list'> Data: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] processed_text: ['ad', 'account', 'locked', 'ad', 'account', 'locked'] list_processed_text: [['ad'], ['account'], ['locked'], ['ad'], ['account'], ['locked']] k: 5833 len: <class 'list'> Data: ['outlook', 'fails', 'open', 'outlook', 'fails', 'open'] processed_text: ['outlook', 'fails', 'open', 'outlook', 'fails', 'open'] list_processed_text: [['outlook'], ['fails'], ['open'], ['outlook'], ['fails'], ['open']] k: 5834 len: <class 'list'> Data: ['circuit', 'outage', 'company', 'eu', 'gbr', 'united', 'kingdom', 'dmvpn', 'rtr', 'lookup', 'located', 'united', 'kingdom', 'circuit', 'outage', 'company', 'eu', 'gbr', 'united', 'kingdom', 'dmvpn', 'rtr', 'lookup', 'located', 'united', 'kingdom', 'went', 'et'] processed_text: ['circuit', 'outage', 'company', 'eu', 'gbr', 'united', 'kingdom', 'dmvpn', 'rtr', 'lookup', 'located', 'united', 'kingdom', 'circuit', 'outage', 'company', 'eu', 'gbr', 'united', 'kingdom', 'dmvpn', 'rtr', 'lookup', 'located', 'united', 'kingdom', 'went', 'et'] list_processed_text: [['circuit'], ['outage'], ['company'], ['eu'], ['gbr'], ['united'], ['kingdom'], ['dmvpn'], ['rtr'], ['lookup'], ['located'], ['united'], ['kingdom'], ['circuit'], ['outage'], ['company'], ['eu'], ['gbr'], ['united'], ['kingdom'], ['dmvpn'], ['rtr'], ['lookup'], ['located'], ['united'], ['kingdom'], ['went'], ['et']] k: 5835 len: <class 'list'> Data: ['hostname', 'erpstartsrv', 'exe', 'service', 'hostname', 'erpstartsrv', 'exe', 'service'] processed_text: ['hostname', 'erpstartsrv', 'exe', 'service', 'hostname', 'erpstartsrv', 'exe', 'service'] list_processed_text: [['hostname'], ['erpstartsrv'], ['exe'], ['service'], ['hostname'], ['erpstartsrv'], ['exe'], ['service']] k: 5836 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'unlock', 'account', 'request', 'erp', 'sid', 'password', 'reset', 'unlock', 'account', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'unlock', 'account', 'request', 'erp', 'sid', 'password', 'reset', 'unlock', 'account', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['unlock'], ['account'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['unlock'], ['account'], ['request']] k: 5837 len: <class 'list'> Data: ['new', 'password', 'erp', 'sid', 'bex', 'needed', 'hello', 'could', 'please', 'provide', 'new', 'password', 'bex'] processed_text: ['new', 'password', 'erp', 'sid', 'bex', 'needed', 'hello', 'could', 'please', 'provide', 'new', 'password', 'bex'] list_processed_text: [['new'], ['password'], ['erp'], ['sid'], ['bex'], ['needed'], ['hello'], ['could'], ['please'], ['provide'], ['new'], ['password'], ['bex']] k: 5838 len: <class 'list'> Data: ['password', 'expires', 'hello', 'holiday', 'password', 'expires', 'change'] processed_text: ['password', 'expires', 'hello', 'holiday', 'password', 'expires', 'change'] list_processed_text: [['password'], ['expires'], ['hello'], ['holiday'], ['password'], ['expires'], ['change']] k: 5839 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'vig', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'vig', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'vig', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'vig', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['vig'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['vig'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5840 len: <class 'list'> Data: ['erp', 'printer', 'ng', 'ng', 'printing', 'side', 'erp', 'document', 'need', 'changed', 'single', 'side', 'printing', 'erp', 'printer', 'ng', 'ng', 'printing', 'side', 'erp', 'document', 'need', 'changed', 'single', 'side', 'printing', 'user', 'mxwibrtg', 'qbsmonwv', 'cwfzldts', 'dlmukhyn', 'uxpytsdk', 'kyamilds'] processed_text: ['erp', 'printer', 'ng', 'ng', 'printing', 'side', 'erp', 'document', 'need', 'changed', 'single', 'side', 'printing', 'erp', 'printer', 'ng', 'ng', 'printing', 'side', 'erp', 'document', 'need', 'changed', 'single', 'side', 'printing', 'user', 'mxwibrtg', 'qbsmonwv', 'cwfzldts', 'dlmukhyn', 'uxpytsdk', 'kyamilds'] list_processed_text: [['erp'], ['printer'], ['ng'], ['ng'], ['printing'], ['side'], ['erp'], ['document'], ['need'], ['changed'], ['single'], ['side'], ['printing'], ['erp'], ['printer'], ['ng'], ['ng'], ['printing'], ['side'], ['erp'], ['document'], ['need'], ['changed'], ['single'], ['side'], ['printing'], ['user'], ['mxwibrtg'], ['qbsmonwv'], ['cwfzldts'], ['dlmukhyn'], ['uxpytsdk'], ['kyamilds']] k: 5841 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 5842 len: <class 'list'> Data: ['setup', 'new', 'w', 'beam', 'space', 'xaqzisrk', 'ahbgjrqz', 'setup', 'new', 'w', 'beam', 'space', 'xaqzisrk', 'ahbgjrqz'] processed_text: ['setup', 'new', 'w', 'beam', 'space', 'xaqzisrk', 'ahbgjrqz', 'setup', 'new', 'w', 'beam', 'space', 'xaqzisrk', 'ahbgjrqz'] list_processed_text: [['setup'], ['new'], ['w'], ['beam'], ['space'], ['xaqzisrk'], ['ahbgjrqz'], ['setup'], ['new'], ['w'], ['beam'], ['space'], ['xaqzisrk'], ['ahbgjrqz']] k: 5843 len: <class 'list'> Data: ['setup', 'new', 'w', 'beam', 'space', 'ujtmipzv', 'cwdzunxs', 'setup', 'new', 'w', 'beam', 'space', 'ujtmipzv', 'cwdzunxs'] processed_text: ['setup', 'new', 'w', 'beam', 'space', 'ujtmipzv', 'cwdzunxs', 'setup', 'new', 'w', 'beam', 'space', 'ujtmipzv', 'cwdzunxs'] list_processed_text: [['setup'], ['new'], ['w'], ['beam'], ['space'], ['ujtmipzv'], ['cwdzunxs'], ['setup'], ['new'], ['w'], ['beam'], ['space'], ['ujtmipzv'], ['cwdzunxs']] k: 5844 len: <class 'list'> Data: ['setup', 'new', 'w', 'beam', 'space', 'fyedqgzt', 'jdqvuhlr', 'setup', 'new', 'w', 'beam', 'space', 'fyedqgzt', 'jdqvuhlr'] processed_text: ['setup', 'new', 'w', 'beam', 'space', 'fyedqgzt', 'jdqvuhlr', 'setup', 'new', 'w', 'beam', 'space', 'fyedqgzt', 'jdqvuhlr'] list_processed_text: [['setup'], ['new'], ['w'], ['beam'], ['space'], ['fyedqgzt'], ['jdqvuhlr'], ['setup'], ['new'], ['w'], ['beam'], ['space'], ['fyedqgzt'], ['jdqvuhlr']] k: 5845 len: <class 'list'> Data: ['vfx', 'interco', 'inwarehouse', 'tool', 'cannot', 'processed', 'error', 'number', 'range', 'number', 'recorded', 'billing', 'document', 'xxx', 'inwarehouse', 'tool', 'sale', 'org'] processed_text: ['vfx', 'interco', 'inwarehouse', 'tool', 'cannot', 'processed', 'error', 'number', 'range', 'number', 'recorded', 'billing', 'document', 'xxx', 'inwarehouse', 'tool', 'sale', 'org'] list_processed_text: [['vfx'], ['interco'], ['inwarehouse'], ['tool'], ['cannot'], ['processed'], ['error'], ['number'], ['range'], ['number'], ['recorded'], ['billing'], ['document'], ['xxx'], ['inwarehouse'], ['tool'], ['sale'], ['org']] k: 5846 len: <class 'list'> Data: ['printer', 'print', 'hp', 'rfvmeyho', 'qgtxjsdc', 'printer', 'print', 'hp', 'rfvmeyho', 'qgtxjsdc'] processed_text: ['printer', 'print', 'hp', 'rfvmeyho', 'qgtxjsdc', 'printer', 'print', 'hp', 'rfvmeyho', 'qgtxjsdc'] list_processed_text: [['printer'], ['print'], ['hp'], ['rfvmeyho'], ['qgtxjsdc'], ['printer'], ['print'], ['hp'], ['rfvmeyho'], ['qgtxjsdc']] k: 5847 len: <class 'list'> Data: ['setup', 'new', 'w', 'computer', 'old', 'forge', 'nfayqjhg', 'kyswcpei', 'setup', 'new', 'w', 'computer', 'old', 'forge', 'nfayqjhg', 'kyswcpei'] processed_text: ['setup', 'new', 'w', 'computer', 'old', 'forge', 'nfayqjhg', 'kyswcpei', 'setup', 'new', 'w', 'computer', 'old', 'forge', 'nfayqjhg', 'kyswcpei'] list_processed_text: [['setup'], ['new'], ['w'], ['computer'], ['old'], ['forge'], ['nfayqjhg'], ['kyswcpei'], ['setup'], ['new'], ['w'], ['computer'], ['old'], ['forge'], ['nfayqjhg'], ['kyswcpei']] k: 5848 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 5849 len: <class 'list'> Data: ['unable', 'print', 'company', 'label', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'print', 'company', 'label', 'error', 'message', 'prompted', 'nothing', 'print', 'zebra', 'label', 'printer'] processed_text: ['unable', 'print', 'company', 'label', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'print', 'company', 'label', 'error', 'message', 'prompted', 'nothing', 'print', 'zebra', 'label', 'printer'] list_processed_text: [['unable'], ['print'], ['company'], ['label'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['print'], ['company'], ['label'], ['error'], ['message'], ['prompted'], ['nothing'], ['print'], ['zebra'], ['label'], ['printer']] k: 5850 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 5851 len: <class 'list'> Data: ['tablet', 'dell', 'please', 'provide', 'detail', 'issue', 'skype'] processed_text: ['tablet', 'dell', 'please', 'provide', 'detail', 'issue', 'skype'] list_processed_text: [['tablet'], ['dell'], ['please'], ['provide'], ['detail'], ['issue'], ['skype']] k: 5852 len: <class 'list'> Data: ['please', 'reset', 'password', 'erp', 'sid', 'production', 'name', 'shathyra', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'password', 'erp', 'sid', 'production', 'user', 'grargtzzt'] processed_text: ['please', 'reset', 'password', 'erp', 'sid', 'production', 'name', 'shathyra', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'reset', 'password', 'erp', 'sid', 'production', 'user', 'grargtzzt'] list_processed_text: [['please'], ['reset'], ['password'], ['erp'], ['sid'], ['production'], ['name'], ['shathyra'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['reset'], ['password'], ['erp'], ['sid'], ['production'], ['user'], ['grargtzzt']] k: 5853 len: <class 'list'> Data: ['label', 'printer', 'network', 'lost', 'label', 'printer', 'network', 'lost'] processed_text: ['label', 'printer', 'network', 'lost', 'label', 'printer', 'network', 'lost'] list_processed_text: [['label'], ['printer'], ['network'], ['lost'], ['label'], ['printer'], ['network'], ['lost']] k: 5854 len: <class 'list'> Data: ['iphone', 'skype', 'iphone', 'skype'] processed_text: ['iphone', 'skype', 'iphone', 'skype'] list_processed_text: [['iphone'], ['skype'], ['iphone'], ['skype']] k: 5855 len: <class 'list'> Data: ['vpn', 'vpn'] processed_text: ['vpn', 'vpn'] list_processed_text: [['vpn'], ['vpn']] k: 5856 len: <class 'list'> Data: ['able', 'enter', 'select', 'account', 'asignment', 'category', 'see', 'attached', 'screenshot'] processed_text: ['able', 'enter', 'select', 'account', 'asignment', 'category', 'see', 'attached', 'screenshot'] list_processed_text: [['able'], ['enter'], ['select'], ['account'], ['asignment'], ['category'], ['see'], ['attached'], ['screenshot']] k: 5857 len: <class 'list'> Data: ['printer', 'assignment', 'dispatcher', 'hello', 'erp', 'printer', 'rn', 'defective,', 'temporarily', 'using', 'rn', ',', 'please', 'plan', 'dispatcher', 'plant', 'currently', 'assigned', 'rn', 'change', 'best'] processed_text: ['printer', 'assignment', 'dispatcher', 'hello', 'erp', 'printer', 'rn', 'defective,', 'temporarily', 'using', 'rn', ',', 'please', 'plan', 'dispatcher', 'plant', 'currently', 'assigned', 'rn', 'change', 'best'] list_processed_text: [['printer'], ['assignment'], ['dispatcher'], ['hello'], ['erp'], ['printer'], ['rn'], ['defective,'], ['temporarily'], ['using'], ['rn'], [','], ['please'], ['plan'], ['dispatcher'], ['plant'], ['currently'], ['assigned'], ['rn'], ['change'], ['best']] k: 5858 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 5859 len: <class 'list'> Data: ['receiving', 'mail', 'unknown', 'hello', 'receiving', 'mail', 'spam', 'mail', 'receiving', 'mail', 'please', 'provide', 'detail', 'best'] processed_text: ['receiving', 'mail', 'unknown', 'hello', 'receiving', 'mail', 'spam', 'mail', 'receiving', 'mail', 'please', 'provide', 'detail', 'best'] list_processed_text: [['receiving'], ['mail'], ['unknown'], ['hello'], ['receiving'], ['mail'], ['spam'], ['mail'], ['receiving'], ['mail'], ['please'], ['provide'], ['detail'], ['best']] k: 5860 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 5861 len: <class 'list'> Data: ['changed', 'password', 'yesterday', 'outlook', 'connect', 'enter', 'login', 'data', 'window', 'keep', 'coming', 'back', 'login', 'work', 'changed', 'password', 'today', 'problem', 'cannot', 'use', 'outlook', 'cannot', 'process', 'mail'] processed_text: ['changed', 'password', 'yesterday', 'outlook', 'connect', 'enter', 'login', 'data', 'window', 'keep', 'coming', 'back', 'login', 'work', 'changed', 'password', 'today', 'problem', 'cannot', 'use', 'outlook', 'cannot', 'process', 'mail'] list_processed_text: [['changed'], ['password'], ['yesterday'], ['outlook'], ['connect'], ['enter'], ['login'], ['data'], ['window'], ['keep'], ['coming'], ['back'], ['login'], ['work'], ['changed'], ['password'], ['today'], ['problem'], ['cannot'], ['use'], ['outlook'], ['cannot'], ['process'], ['mail']] k: 5862 len: <class 'list'> Data: ['unable', 'login', 'shop', 'floor', 'system', 'unable', 'login', 'shop', 'floor', 'system', 'error', 'authentication', 'failed'] processed_text: ['unable', 'login', 'shop', 'floor', 'system', 'unable', 'login', 'shop', 'floor', 'system', 'error', 'authentication', 'failed'] list_processed_text: [['unable'], ['login'], ['shop'], ['floor'], ['system'], ['unable'], ['login'], ['shop'], ['floor'], ['system'], ['error'], ['authentication'], ['failed']] k: 5863 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 5864 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 5865 len: <class 'list'> Data: ['able', 'login', 'skype', 'communicator', 'able', 'login', 'skype', 'communicator'] processed_text: ['able', 'login', 'skype', 'communicator', 'able', 'login', 'skype', 'communicator'] list_processed_text: [['able'], ['login'], ['skype'], ['communicator'], ['able'], ['login'], ['skype'], ['communicator']] k: 5866 len: <class 'list'> Data: ['please', 'help', 'set', 'skype', 'conference', 'calling', 'feature', 'company', 'smart', 'phone', 'phone', 'name', 'nthryitin', 'language', 'browser', 'netscape', 'customer', 'number', 'telephone', 'summary', 'please', 'help', 'set', 'skype', 'conference', 'calling', 'feature', 'company', 'smart', 'phone', 'phone'] processed_text: ['please', 'help', 'set', 'skype', 'conference', 'calling', 'feature', 'company', 'smart', 'phone', 'phone', 'name', 'nthryitin', 'language', 'browser', 'netscape', 'customer', 'number', 'telephone', 'summary', 'please', 'help', 'set', 'skype', 'conference', 'calling', 'feature', 'company', 'smart', 'phone', 'phone'] list_processed_text: [['please'], ['help'], ['set'], ['skype'], ['conference'], ['calling'], ['feature'], ['company'], ['smart'], ['phone'], ['phone'], ['name'], ['nthryitin'], ['language'], ['browser'], ['netscape'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['help'], ['set'], ['skype'], ['conference'], ['calling'], ['feature'], ['company'], ['smart'], ['phone'], ['phone']] k: 5867 len: <class 'list'> Data: ['engineering', 'tool', 'quick', 'search', 'problem', 'engineering', 'tool', 'quick', 'search', 'working', 'taking', 'much', 'time', 'load', 'data', 'please', 'sort', 'issue', 'aerp'] processed_text: ['engineering', 'tool', 'quick', 'search', 'problem', 'engineering', 'tool', 'quick', 'search', 'working', 'taking', 'much', 'time', 'load', 'data', 'please', 'sort', 'issue', 'aerp'] list_processed_text: [['engineering'], ['tool'], ['quick'], ['search'], ['problem'], ['engineering'], ['tool'], ['quick'], ['search'], ['working'], ['taking'], ['much'], ['time'], ['load'], ['data'], ['please'], ['sort'], ['issue'], ['aerp']] k: 5868 len: <class 'list'> Data: ['hostname', 'network', 'connection', 'lost', 'apac', 'time', 'connection', 'lost', 'going', 'minute', 'hostname', 'connection', 'lost', 'connection', 'going', 'minute', 'could', 'check', 'reason'] processed_text: ['hostname', 'network', 'connection', 'lost', 'apac', 'time', 'connection', 'lost', 'going', 'minute', 'hostname', 'connection', 'lost', 'connection', 'going', 'minute', 'could', 'check', 'reason'] list_processed_text: [['hostname'], ['network'], ['connection'], ['lost'], ['apac'], ['time'], ['connection'], ['lost'], ['going'], ['minute'], ['hostname'], ['connection'], ['lost'], ['connection'], ['going'], ['minute'], ['could'], ['check'], ['reason']] k: 5869 len: <class 'list'> Data: ['user', 'unable', 'open', 'engg', 'work', 'bench', 'unable', 'open', 'engineering', 'tool', 'user', 'india', 'plant', 'people', 'error', 'message', 'contact'] processed_text: ['user', 'unable', 'open', 'engg', 'work', 'bench', 'unable', 'open', 'engineering', 'tool', 'user', 'india', 'plant', 'people', 'error', 'message', 'contact'] list_processed_text: [['user'], ['unable'], ['open'], ['engg'], ['work'], ['bench'], ['unable'], ['open'], ['engineering'], ['tool'], ['user'], ['india'], ['plant'], ['people'], ['error'], ['message'], ['contact']] k: 5870 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 5871 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5872 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5873 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'keheu', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['failed'], ['job'], ['scheduler']] k: 5874 len: <class 'list'> Data: ['laptop', 'laptop'] processed_text: ['laptop', 'laptop'] list_processed_text: [['laptop'], ['laptop']] k: 5875 len: <class 'list'> Data: ['ana', 'pethrywrs', 'call', 'conference', 'hr', 'support', 'ana', 'pethrywrs', 'call', 'conference', 'hr', 'support'] processed_text: ['ana', 'pethrywrs', 'call', 'conference', 'hr', 'support', 'ana', 'pethrywrs', 'call', 'conference', 'hr', 'support'] list_processed_text: [['ana'], ['pethrywrs'], ['call'], ['conference'], ['hr'], ['support'], ['ana'], ['pethrywrs'], ['call'], ['conference'], ['hr'], ['support']] k: 5876 len: <class 'list'> Data: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] processed_text: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] list_processed_text: [['wireless'], ['outage'], ['taiwan'], ['hello'], ['wireless'], ['companysecure'], ['outage'], ['taiwan'], ['please'], ['help']] k: 5877 len: <class 'list'> Data: ['erp', 'account', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'vhihrty', 'sndaofyw', 'jetcxpda', 'hello', 'rakthyesh', 'ramdntythanjesh'] processed_text: ['erp', 'account', 'password', 'reset', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'vhihrty', 'sndaofyw', 'jetcxpda', 'hello', 'rakthyesh', 'ramdntythanjesh'] list_processed_text: [['erp'], ['account'], ['password'], ['reset'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['vhihrty'], ['sndaofyw'], ['jetcxpda'], ['hello'], ['rakthyesh'], ['ramdntythanjesh']] k: 5878 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 5879 len: <class 'list'> Data: ['skype', 'working', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'agent', 'answer', 'reassigning', 'interaction', 'another', 'agent', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'shaungtyr', 'gwptzvxm', 'rhozsfty', 'hi', 'rakthyesh', 'ramdntythanjesh'] processed_text: ['skype', 'working', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'agent', 'answer', 'reassigning', 'interaction', 'another', 'agent', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'shaungtyr', 'gwptzvxm', 'rhozsfty', 'hi', 'rakthyesh', 'ramdntythanjesh'] list_processed_text: [['skype'], ['working'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['agent'], ['answer'], ['reassigning'], ['interaction'], ['another'], ['agent'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['shaungtyr'], ['gwptzvxm'], ['rhozsfty'], ['hi'], ['rakthyesh'], ['ramdntythanjesh']] k: 5880 len: <class 'list'> Data: ['unable', 'send', 'mail', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'upcgxthj', 'lnsvemxy', 'hi', 'cant', 'send', 'email', 'rakthyesh', 'ramdntythanjesh', 'hi', 'johthryu'] processed_text: ['unable', 'send', 'mail', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'upcgxthj', 'lnsvemxy', 'hi', 'cant', 'send', 'email', 'rakthyesh', 'ramdntythanjesh', 'hi', 'johthryu'] list_processed_text: [['unable'], ['send'], ['mail'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['upcgxthj'], ['lnsvemxy'], ['hi'], ['cant'], ['send'], ['email'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['johthryu']] k: 5881 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'wky', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wky', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'wky', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wky', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wky'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wky'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 5882 len: <class 'list'> Data: ['license', 'license'] processed_text: ['license', 'license'] list_processed_text: [['license'], ['license']] k: 5883 len: <class 'list'> Data: ['guest', 'wifi', 'access', 'lefrte', 'eafrtkin', 'guest', 'wifi', 'access', 'lefrte', 'eafrtkin'] processed_text: ['guest', 'wifi', 'access', 'lefrte', 'eafrtkin', 'guest', 'wifi', 'access', 'lefrte', 'eafrtkin'] list_processed_text: [['guest'], ['wifi'], ['access'], ['lefrte'], ['eafrtkin'], ['guest'], ['wifi'], ['access'], ['lefrte'], ['eafrtkin']] k: 5884 len: <class 'list'> Data: ['unable', 'hear', 'audio', 'bluetooth', 'headset', 'skype', 'call', 'unable', 'hear', 'audio', 'bluetooth', 'headset', 'skype', 'call'] processed_text: ['unable', 'hear', 'audio', 'bluetooth', 'headset', 'skype', 'call', 'unable', 'hear', 'audio', 'bluetooth', 'headset', 'skype', 'call'] list_processed_text: [['unable'], ['hear'], ['audio'], ['bluetooth'], ['headset'], ['skype'], ['call'], ['unable'], ['hear'], ['audio'], ['bluetooth'], ['headset'], ['skype'], ['call']] k: 5885 len: <class 'list'> Data: ['pc', 'restarting', 'randomly', 'appears', 'possble', 'o', 'issue', 'virus', 'pc', 'restarting', 'randomly', 'appears', 'possble', 'o', 'issue', 'virus'] processed_text: ['pc', 'restarting', 'randomly', 'appears', 'possble', 'o', 'issue', 'virus', 'pc', 'restarting', 'randomly', 'appears', 'possble', 'o', 'issue', 'virus'] list_processed_text: [['pc'], ['restarting'], ['randomly'], ['appears'], ['possble'], ['o'], ['issue'], ['virus'], ['pc'], ['restarting'], ['randomly'], ['appears'], ['possble'], ['o'], ['issue'], ['virus']] k: 5886 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5887 len: <class 'list'> Data: ['vsp', 'computer', 'asset', 'return', 'good', 'afternoon', 'field', 'sale', 'terminated', 'employee', 'doug', 'bise', 'lance', 'kappel', 'returned', 'company', 'computer', 'phone', 'usx', 'office', 'sitting', 'box', 'next', 'desk', 'please', 'arrange', 'pick', 'let', 'know', 'return', 'owhuxbnf', 'sxbgyrou', 'phr', 'hr', 'manager', 'infrastructure'] processed_text: ['vsp', 'computer', 'asset', 'return', 'good', 'afternoon', 'field', 'sale', 'terminated', 'employee', 'doug', 'bise', 'lance', 'kappel', 'returned', 'company', 'computer', 'phone', 'usx', 'office', 'sitting', 'box', 'next', 'desk', 'please', 'arrange', 'pick', 'let', 'know', 'return', 'owhuxbnf', 'sxbgyrou', 'phr', 'hr', 'manager', 'infrastructure'] list_processed_text: [['vsp'], ['computer'], ['asset'], ['return'], ['good'], ['afternoon'], ['field'], ['sale'], ['terminated'], ['employee'], ['doug'], ['bise'], ['lance'], ['kappel'], ['returned'], ['company'], ['computer'], ['phone'], ['usx'], ['office'], ['sitting'], ['box'], ['next'], ['desk'], ['please'], ['arrange'], ['pick'], ['let'], ['know'], ['return'], ['owhuxbnf'], ['sxbgyrou'], ['phr'], ['hr'], ['manager'], ['infrastructure']] k: 5888 len: <class 'list'> Data: ['would', 'like', 'added', 'distribution', 'list', 'job', 'hr', 'usa', 'receiving', 'job', 'hra', 'every', 'morning', 'including', 'see', 'attached', 'receive', 'report', 'today', 'today', 'co', 'worker', 'advised', 'report', 'hr', 'issued', 'hr', 'needed', 'maintain', 'usage', 'purchasing', 'contract', 'management', 'system', 'sure', 'added', 'new', 'job', 'replaced', 'hra', 'suggested', 'open', 'ticket', 'get', 'distribution', 'list', 'job', 'hr'] processed_text: ['would', 'like', 'added', 'distribution', 'list', 'job', 'hr', 'usa', 'receiving', 'job', 'hra', 'every', 'morning', 'including', 'see', 'attached', 'receive', 'report', 'today', 'today', 'co', 'worker', 'advised', 'report', 'hr', 'issued', 'hr', 'needed', 'maintain', 'usage', 'purchasing', 'contract', 'management', 'system', 'sure', 'added', 'new', 'job', 'replaced', 'hra', 'suggested', 'open', 'ticket', 'get', 'distribution', 'list', 'job', 'hr'] list_processed_text: [['would'], ['like'], ['added'], ['distribution'], ['list'], ['job'], ['hr'], ['usa'], ['receiving'], ['job'], ['hra'], ['every'], ['morning'], ['including'], ['see'], ['attached'], ['receive'], ['report'], ['today'], ['today'], ['co'], ['worker'], ['advised'], ['report'], ['hr'], ['issued'], ['hr'], ['needed'], ['maintain'], ['usage'], ['purchasing'], ['contract'], ['management'], ['system'], ['sure'], ['added'], ['new'], ['job'], ['replaced'], ['hra'], ['suggested'], ['open'], ['ticket'], ['get'], ['distribution'], ['list'], ['job'], ['hr']] k: 5889 len: <class 'list'> Data: ['user', 'want', 'update', 'password', 'using', 'password', 'manager', 'link', 'user', 'want', 'update', 'password', 'using', 'password', 'manager', 'link'] processed_text: ['user', 'want', 'update', 'password', 'using', 'password', 'manager', 'link', 'user', 'want', 'update', 'password', 'using', 'password', 'manager', 'link'] list_processed_text: [['user'], ['want'], ['update'], ['password'], ['using'], ['password'], ['manager'], ['link'], ['user'], ['want'], ['update'], ['password'], ['using'], ['password'], ['manager'], ['link']] k: 5890 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5891 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5892 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5893 len: <class 'list'> Data: ['map', 'network', 'drive', 'map', 'network', 'drive'] processed_text: ['map', 'network', 'drive', 'map', 'network', 'drive'] list_processed_text: [['map'], ['network'], ['drive'], ['map'], ['network'], ['drive']] k: 5894 len: <class 'list'> Data: ['outlook', 'freeze', 'trying', 'open', 'new', 'email', 'templet', 'outlook', 'freeze', 'trying', 'open', 'new', 'email', 'templet'] processed_text: ['outlook', 'freeze', 'trying', 'open', 'new', 'email', 'templet', 'outlook', 'freeze', 'trying', 'open', 'new', 'email', 'templet'] list_processed_text: [['outlook'], ['freeze'], ['trying'], ['open'], ['new'], ['email'], ['templet'], ['outlook'], ['freeze'], ['trying'], ['open'], ['new'], ['email'], ['templet']] k: 5895 len: <class 'list'> Data: ['printer', 'driver', 'installation', 'printer', 'driver', 'installation'] processed_text: ['printer', 'driver', 'installation', 'printer', 'driver', 'installation'] list_processed_text: [['printer'], ['driver'], ['installation'], ['printer'], ['driver'], ['installation']] k: 5896 len: <class 'list'> Data: ['msc', 'communicating', 'erp', 'name', 'tmyeqika', 'hfudpeot', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'msc', 'communicating', 'erp'] processed_text: ['msc', 'communicating', 'erp', 'name', 'tmyeqika', 'hfudpeot', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'msc', 'communicating', 'erp'] list_processed_text: [['msc'], ['communicating'], ['erp'], ['name'], ['tmyeqika'], ['hfudpeot'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['msc'], ['communicating'], ['erp']] k: 5897 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'site', 'home', 'unable', 'login', 'collaboration', 'platform', 'site', 'home'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'site', 'home', 'unable', 'login', 'collaboration', 'platform', 'site', 'home'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['site'], ['home'], ['unable'], ['login'], ['collaboration'], ['platform'], ['site'], ['home']] k: 5898 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'usa', 'since', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'usa', 'since', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['usa'], ['since'], ['et'], ['site'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 5899 len: <class 'list'> Data: ['msc', 'communicating', 'erp', 'order', 'picking', 'confirmed', 'msc', 'confirming', 'picked', 'erp', 'order', 'showing', 'erp', 'confirmed', 'yet'] processed_text: ['msc', 'communicating', 'erp', 'order', 'picking', 'confirmed', 'msc', 'confirming', 'picked', 'erp', 'order', 'showing', 'erp', 'confirmed', 'yet'] list_processed_text: [['msc'], ['communicating'], ['erp'], ['order'], ['picking'], ['confirmed'], ['msc'], ['confirming'], ['picked'], ['erp'], ['order'], ['showing'], ['erp'], ['confirmed'], ['yet']] k: 5900 len: <class 'list'> Data: ['u', 'vdklzxqg', 'jpaftdul', 'please', 'activate', 'maintenance', 'employee', 'vdklzxqg', 'jpaftdul', 'email', 'address', 'part', 'maintenance', 'group', 'need', 'email', 'communication', 'assistance', 'please', 'feel', 'free', 'contact', 'time', 'wvngzrca', 'sfmrzdth', 'phr', 'human', 'resource', 'manager'] processed_text: ['u', 'vdklzxqg', 'jpaftdul', 'please', 'activate', 'maintenance', 'employee', 'vdklzxqg', 'jpaftdul', 'email', 'address', 'part', 'maintenance', 'group', 'need', 'email', 'communication', 'assistance', 'please', 'feel', 'free', 'contact', 'time', 'wvngzrca', 'sfmrzdth', 'phr', 'human', 'resource', 'manager'] list_processed_text: [['u'], ['vdklzxqg'], ['jpaftdul'], ['please'], ['activate'], ['maintenance'], ['employee'], ['vdklzxqg'], ['jpaftdul'], ['email'], ['address'], ['part'], ['maintenance'], ['group'], ['need'], ['email'], ['communication'], ['assistance'], ['please'], ['feel'], ['free'], ['contact'], ['time'], ['wvngzrca'], ['sfmrzdth'], ['phr'], ['human'], ['resource'], ['manager']] k: 5901 len: <class 'list'> Data: ['ad', 'password', 'reset', 'ad', 'password', 'reset'] processed_text: ['ad', 'password', 'reset', 'ad', 'password', 'reset'] list_processed_text: [['ad'], ['password'], ['reset'], ['ad'], ['password'], ['reset']] k: 5902 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5903 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'changing', 'password', 'unable', 'open', 'outlook', 'changing', 'password'] processed_text: ['unable', 'open', 'outlook', 'changing', 'password', 'unable', 'open', 'outlook', 'changing', 'password'] list_processed_text: [['unable'], ['open'], ['outlook'], ['changing'], ['password'], ['unable'], ['open'], ['outlook'], ['changing'], ['password']] k: 5904 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 5905 len: <class 'list'> Data: ['unable', 'open', 'es', 'page', 'home', 'pc', 'win', 'unable', 'open', 'es', 'page', 'home', 'pc', 'win'] processed_text: ['unable', 'open', 'es', 'page', 'home', 'pc', 'win', 'unable', 'open', 'es', 'page', 'home', 'pc', 'win'] list_processed_text: [['unable'], ['open'], ['es'], ['page'], ['home'], ['pc'], ['win'], ['unable'], ['open'], ['es'], ['page'], ['home'], ['pc'], ['win']] k: 5906 len: <class 'list'> Data: ['hr', 'tool', 'site', 'recognize', 'email', 'address', 'window', 'upgrade', 'tried', 'entering', 'hr', 'tool', 'site', 'cannot', 'enter', 'email', 'address', 'change', 'window', 'version', 'upgrade'] processed_text: ['hr', 'tool', 'site', 'recognize', 'email', 'address', 'window', 'upgrade', 'tried', 'entering', 'hr', 'tool', 'site', 'cannot', 'enter', 'email', 'address', 'change', 'window', 'version', 'upgrade'] list_processed_text: [['hr'], ['tool'], ['site'], ['recognize'], ['email'], ['address'], ['window'], ['upgrade'], ['tried'], ['entering'], ['hr'], ['tool'], ['site'], ['cannot'], ['enter'], ['email'], ['address'], ['change'], ['window'], ['version'], ['upgrade']] k: 5907 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'screen', 'open', 'request', 'vacation', 'time', 'xszoedmc', 'gmhkdsnw', 'hr', 'tool', 'etime', 'blank', 'screen', 'come', 'trying', 'access', 'screen', 'shot', 'attached'] processed_text: ['hr', 'tool', 'etime', 'screen', 'open', 'request', 'vacation', 'time', 'xszoedmc', 'gmhkdsnw', 'hr', 'tool', 'etime', 'blank', 'screen', 'come', 'trying', 'access', 'screen', 'shot', 'attached'] list_processed_text: [['hr'], ['tool'], ['etime'], ['screen'], ['open'], ['request'], ['vacation'], ['time'], ['xszoedmc'], ['gmhkdsnw'], ['hr'], ['tool'], ['etime'], ['blank'], ['screen'], ['come'], ['trying'], ['access'], ['screen'], ['shot'], ['attached']] k: 5908 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 5909 len: <class 'list'> Data: ['unable', 'open', 'engineering', 'engineering', 'tool', 'online', 'unable', 'open', 'engineering', 'engineering', 'tool', 'online', 'file', 'zipped'] processed_text: ['unable', 'open', 'engineering', 'engineering', 'tool', 'online', 'unable', 'open', 'engineering', 'engineering', 'tool', 'online', 'file', 'zipped'] list_processed_text: [['unable'], ['open'], ['engineering'], ['engineering'], ['tool'], ['online'], ['unable'], ['open'], ['engineering'], ['engineering'], ['tool'], ['online'], ['file'], ['zipped']] k: 5910 len: <class 'list'> Data: ['expense', 'report', 'working', 'trying', 'create', 'expense', 'report', 'es', 'get', 'following', 'error', 'infortype', 'exist', 'pers', 'unlocked', 'personnel', 'number', 'nothing', 'change'] processed_text: ['expense', 'report', 'working', 'trying', 'create', 'expense', 'report', 'es', 'get', 'following', 'error', 'infortype', 'exist', 'pers', 'unlocked', 'personnel', 'number', 'nothing', 'change'] list_processed_text: [['expense'], ['report'], ['working'], ['trying'], ['create'], ['expense'], ['report'], ['es'], ['get'], ['following'], ['error'], ['infortype'], ['exist'], ['pers'], ['unlocked'], ['personnel'], ['number'], ['nothing'], ['change']] k: 5911 len: <class 'list'> Data: ['caller', 'wanted', 'speak', 'email', 'server', 'admin', 'one', 'email', 'company', 'email', 'blocked', 'company', 'caller', 'wanted', 'speak', 'email', 'server', 'admin', 'one', 'email', 'company', 'email', 'blocked', 'company', 'helped', 'user', 'email', 'address', 'company', 'com', 'asked', 'send', 'email', 'screenshot'] processed_text: ['caller', 'wanted', 'speak', 'email', 'server', 'admin', 'one', 'email', 'company', 'email', 'blocked', 'company', 'caller', 'wanted', 'speak', 'email', 'server', 'admin', 'one', 'email', 'company', 'email', 'blocked', 'company', 'helped', 'user', 'email', 'address', 'company', 'com', 'asked', 'send', 'email', 'screenshot'] list_processed_text: [['caller'], ['wanted'], ['speak'], ['email'], ['server'], ['admin'], ['one'], ['email'], ['company'], ['email'], ['blocked'], ['company'], ['caller'], ['wanted'], ['speak'], ['email'], ['server'], ['admin'], ['one'], ['email'], ['company'], ['email'], ['blocked'], ['company'], ['helped'], ['user'], ['email'], ['address'], ['company'], ['com'], ['asked'], ['send'], ['email'], ['screenshot']] k: 5912 len: <class 'list'> Data: ['e', 'mail', 'question', 'hello', 'would', 'like', 'put', 'ribbon', 'bottom', 'mail', 'attached', 'information', 'go', 'help', 'would', 'like', 'make', 'extra', 'signature', 'name', 'add', 'information', 'mail', 'address', 'company', 'address', 'best'] processed_text: ['e', 'mail', 'question', 'hello', 'would', 'like', 'put', 'ribbon', 'bottom', 'mail', 'attached', 'information', 'go', 'help', 'would', 'like', 'make', 'extra', 'signature', 'name', 'add', 'information', 'mail', 'address', 'company', 'address', 'best'] list_processed_text: [['e'], ['mail'], ['question'], ['hello'], ['would'], ['like'], ['put'], ['ribbon'], ['bottom'], ['mail'], ['attached'], ['information'], ['go'], ['help'], ['would'], ['like'], ['make'], ['extra'], ['signature'], ['name'], ['add'], ['information'], ['mail'], ['address'], ['company'], ['address'], ['best']] k: 5913 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call', 'receive', 'response', 'side'] processed_text: ['blank', 'call', 'blank', 'call', 'receive', 'response', 'side'] list_processed_text: [['blank'], ['call'], ['blank'], ['call'], ['receive'], ['response'], ['side']] k: 5914 len: <class 'list'> Data: ['office', 'licensed', 'office', 'licensed'] processed_text: ['office', 'licensed', 'office', 'licensed'] list_processed_text: [['office'], ['licensed'], ['office'], ['licensed']] k: 5915 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5916 len: <class 'list'> Data: ['need', 'map', 'printer', 'need', 'map', 'printer'] processed_text: ['need', 'map', 'printer', 'need', 'map', 'printer'] list_processed_text: [['need'], ['map'], ['printer'], ['need'], ['map'], ['printer']] k: 5917 len: <class 'list'> Data: ['please', 'call', 'tomorrow', 'central', 'european', 'time', 'reason', 'new', 'hiring', 'outlock,', 'lot', 'thing', 'longer', 'possible.', 'sincerely,', 'uwe', 'schr', 'ck', 'technical', 'advice', 'sale', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'registered', 'office', 'company', 'germany', 'hgermany', 'registergerirtcht', 'bad', 'homburg', 'hgermany', 'use', 'information', 'used', 'hrb', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'accidentally', 'received', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['please', 'call', 'tomorrow', 'central', 'european', 'time', 'reason', 'new', 'hiring', 'outlock,', 'lot', 'thing', 'longer', 'possible.', 'sincerely,', 'uwe', 'schr', 'ck', 'technical', 'advice', 'sale', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'registered', 'office', 'company', 'germany', 'hgermany', 'registergerirtcht', 'bad', 'homburg', 'hgermany', 'use', 'information', 'used', 'hrb', 'determined', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'communication', 'due', 'accidentally', 'received', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['please'], ['call'], ['tomorrow'], ['central'], ['european'], ['time'], ['reason'], ['new'], ['hiring'], ['outlock,'], ['lot'], ['thing'], ['longer'], ['possible.'], ['sincerely,'], ['uwe'], ['schr'], ['ck'], ['technical'], ['advice'], ['sale'], ['company'], ['deutschland'], ['gmbh'], ['managing'], ['director'], ['rfwlsoej'], ['yvtjzkaw'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['registered'], ['office'], ['company'], ['germany'], ['hgermany'], ['registergerirtcht'], ['bad'], ['homburg'], ['hgermany'], ['use'], ['information'], ['used'], ['hrb'], ['determined'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['communication'], ['due'], ['accidentally'], ['received'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 5918 len: <class 'list'> Data: ['erp', 'access', 'issue', 'sid', 'access', 'user', 'id', 'got', 'locked', 'kundegty', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'kundegty', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'id', 'got', 'locked', 'please', 'release', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'sid', 'access', 'user', 'id', 'got', 'locked', 'kundegty', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'kundegty', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'id', 'got', 'locked', 'please', 'release', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['sid'], ['access'], ['user'], ['id'], ['got'], ['locked'], ['kundegty'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['kundegty'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['id'], ['got'], ['locked'], ['please'], ['release'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 5919 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5920 len: <class 'list'> Data: ['tool', 'performance', 'database', 'please', 'deactivate', 'userid', 'kroetzer', 'engineering', 'tool', 'database'] processed_text: ['tool', 'performance', 'database', 'please', 'deactivate', 'userid', 'kroetzer', 'engineering', 'tool', 'database'] list_processed_text: [['tool'], ['performance'], ['database'], ['please'], ['deactivate'], ['userid'], ['kroetzer'], ['engineering'], ['tool'], ['database']] k: 5921 len: <class 'list'> Data: ['unable', 'see', 'expense', 'report', 'proygkjt', 'mwetuhqf', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'callie', 'pollaurid', 'expense', 'report', 'submitted', 'jeffrghryeytyf', 'strigtyet', 'submitted', 'expense', 'show', 'task', 'approve', 'es', 'portal', 'approved', 'three', 'employee', 'two', 'jeffrghryey', 'submitted', 'one', 'please', 'identify', 'jeffrghryey', 'expense', 'submittal', 'show', 'system', 'approve', 'received', 'workflow', 'email', 'submit', 'original', 'message', 'workflow', 'system', 'mail', 'pm', 'proygkjt', 'mwetuhqf', 'expense', 'report', 'submitted', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'jeffrghryeyrghryey', 'strgrtyiet', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service'] processed_text: ['unable', 'see', 'expense', 'report', 'proygkjt', 'mwetuhqf', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'callie', 'pollaurid', 'expense', 'report', 'submitted', 'jeffrghryeytyf', 'strigtyet', 'submitted', 'expense', 'show', 'task', 'approve', 'es', 'portal', 'approved', 'three', 'employee', 'two', 'jeffrghryey', 'submitted', 'one', 'please', 'identify', 'jeffrghryey', 'expense', 'submittal', 'show', 'system', 'approve', 'received', 'workflow', 'email', 'submit', 'original', 'message', 'workflow', 'system', 'mail', 'pm', 'proygkjt', 'mwetuhqf', 'expense', 'report', 'submitted', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'jeffrghryeyrghryey', 'strgrtyiet', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service'] list_processed_text: [['unable'], ['see'], ['expense'], ['report'], ['proygkjt'], ['mwetuhqf'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['ifblxjmc'], ['dyrgfwbm'], ['callie'], ['pollaurid'], ['expense'], ['report'], ['submitted'], ['jeffrghryeytyf'], ['strigtyet'], ['submitted'], ['expense'], ['show'], ['task'], ['approve'], ['es'], ['portal'], ['approved'], ['three'], ['employee'], ['two'], ['jeffrghryey'], ['submitted'], ['one'], ['please'], ['identify'], ['jeffrghryey'], ['expense'], ['submittal'], ['show'], ['system'], ['approve'], ['received'], ['workflow'], ['email'], ['submit'], ['original'], ['message'], ['workflow'], ['system'], ['mail'], ['pm'], ['proygkjt'], ['mwetuhqf'], ['expense'], ['report'], ['submitted'], ['following'], ['expense'], ['report'], ['submitted'], ['approval'], ['personnel'], ['jeffrghryeyrghryey'], ['strgrtyiet'], ['expense'], ['report'], ['start'], ['date'], ['end'], ['date'], ['total'], ['cost'], ['usd'], ['reimbursement'], ['amount'], ['usd'], ['review'], ['expense'], ['report'], ['full'], ['please'], ['log'], ['universal'], ['worklist'], ['manager'], ['self'], ['service']] k: 5922 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5923 len: <class 'list'> Data: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] processed_text: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] list_processed_text: [['zdsxmcwu'], ['thdjzolwronization'], ['issue'], ['zdsxmcwu'], ['thdjzolwronization'], ['issue']] k: 5924 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5925 len: <class 'list'> Data: ['outlook', 'crashing', 'msd', 'crm', 'outlook', 'issue', 'outlook', 'crashing', 'msd', 'crm', 'outlook', 'issue'] processed_text: ['outlook', 'crashing', 'msd', 'crm', 'outlook', 'issue', 'outlook', 'crashing', 'msd', 'crm', 'outlook', 'issue'] list_processed_text: [['outlook'], ['crashing'], ['msd'], ['crm'], ['outlook'], ['issue'], ['outlook'], ['crashing'], ['msd'], ['crm'], ['outlook'], ['issue']] k: 5926 len: <class 'list'> Data: ['outlook', 'freezing', 'frequently', 'user', 'called', 'issue', 'outlook', 'freezing', 'frequently'] processed_text: ['outlook', 'freezing', 'frequently', 'user', 'called', 'issue', 'outlook', 'freezing', 'frequently'] list_processed_text: [['outlook'], ['freezing'], ['frequently'], ['user'], ['called'], ['issue'], ['outlook'], ['freezing'], ['frequently']] k: 5927 len: <class 'list'> Data: ['add', 'im', 'mfg', 'planner', 'reference', 'miiadmin', 'erp', 'sid', 'sid', 'id', 'add', 'im', 'mfg', 'planner', 'reference', 'miiadmin', 'erp', 'sid', 'sid', 'id', 'needed', 'system', 'automatically', 'backflush', 'close', 'production', 'order'] processed_text: ['add', 'im', 'mfg', 'planner', 'reference', 'miiadmin', 'erp', 'sid', 'sid', 'id', 'add', 'im', 'mfg', 'planner', 'reference', 'miiadmin', 'erp', 'sid', 'sid', 'id', 'needed', 'system', 'automatically', 'backflush', 'close', 'production', 'order'] list_processed_text: [['add'], ['im'], ['mfg'], ['planner'], ['reference'], ['miiadmin'], ['erp'], ['sid'], ['sid'], ['id'], ['add'], ['im'], ['mfg'], ['planner'], ['reference'], ['miiadmin'], ['erp'], ['sid'], ['sid'], ['id'], ['needed'], ['system'], ['automatically'], ['backflush'], ['close'], ['production'], ['order']] k: 5928 len: <class 'list'> Data: ['acces', 'sid', 'hi', 'need', 'access', 'sid', 'could', 'please', 'help', 'saludos', 'jorghge', 'ramdntyfon', 'abrurto', 'tsantamaria', 'supervisor', 'credit', 'ar', 'finance'] processed_text: ['acces', 'sid', 'hi', 'need', 'access', 'sid', 'could', 'please', 'help', 'saludos', 'jorghge', 'ramdntyfon', 'abrurto', 'tsantamaria', 'supervisor', 'credit', 'ar', 'finance'] list_processed_text: [['acces'], ['sid'], ['hi'], ['need'], ['access'], ['sid'], ['could'], ['please'], ['help'], ['saludos'], ['jorghge'], ['ramdntyfon'], ['abrurto'], ['tsantamaria'], ['supervisor'], ['credit'], ['ar'], ['finance']] k: 5929 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'skype', 'name', 'phil', 'schoenfeld', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'open', 'outlook', 'sign', 'skype', 'business'] processed_text: ['unable', 'open', 'outlook', 'skype', 'name', 'phil', 'schoenfeld', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'open', 'outlook', 'sign', 'skype', 'business'] list_processed_text: [['unable'], ['open'], ['outlook'], ['skype'], ['name'], ['phil'], ['schoenfeld'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['open'], ['outlook'], ['sign'], ['skype'], ['business']] k: 5930 len: <class 'list'> Data: ['unable', 'log', 'mii', 'unable', 'log', 'mii'] processed_text: ['unable', 'log', 'mii', 'unable', 'log', 'mii'] list_processed_text: [['unable'], ['log'], ['mii'], ['unable'], ['log'], ['mii']] k: 5931 len: <class 'list'> Data: ['keybankrd', 'could', 'please', 'new', 'keybankrd', 'letter', 'worn', 'one'] processed_text: ['keybankrd', 'could', 'please', 'new', 'keybankrd', 'letter', 'worn', 'one'] list_processed_text: [['keybankrd'], ['could'], ['please'], ['new'], ['keybankrd'], ['letter'], ['worn'], ['one']] k: 5932 len: <class 'list'> Data: ['vip', 'please', 'add', 'luis', 'revilla', 'group', 'ltaballallcompanycm', 'access', 'reporting', 'engineering', 'tool', 'nicrhty', 'pfgyhtu', 'vice', 'president', 'indirect', 'sale', 'industrial', 'business', 'segment'] processed_text: ['vip', 'please', 'add', 'luis', 'revilla', 'group', 'ltaballallcompanycm', 'access', 'reporting', 'engineering', 'tool', 'nicrhty', 'pfgyhtu', 'vice', 'president', 'indirect', 'sale', 'industrial', 'business', 'segment'] list_processed_text: [['vip'], ['please'], ['add'], ['luis'], ['revilla'], ['group'], ['ltaballallcompanycm'], ['access'], ['reporting'], ['engineering'], ['tool'], ['nicrhty'], ['pfgyhtu'], ['vice'], ['president'], ['indirect'], ['sale'], ['industrial'], ['business'], ['segment']] k: 5933 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5934 len: <class 'list'> Data: ['companyguest', 'access', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'dabhruji', 'customer', 'number', 'telephone', 'summary', 'hi', 'erirtc', 'wifi', 'access', 'following', 'working', 'dtbycsgf', 'vfdglqnp', 'saztolpx', 'xqgovpik'] processed_text: ['companyguest', 'access', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'email', 'dabhruji', 'customer', 'number', 'telephone', 'summary', 'hi', 'erirtc', 'wifi', 'access', 'following', 'working', 'dtbycsgf', 'vfdglqnp', 'saztolpx', 'xqgovpik'] list_processed_text: [['companyguest'], ['access'], ['name'], ['erirtc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['email'], ['dabhruji'], ['customer'], ['number'], ['telephone'], ['summary'], ['hi'], ['erirtc'], ['wifi'], ['access'], ['following'], ['working'], ['dtbycsgf'], ['vfdglqnp'], ['saztolpx'], ['xqgovpik']] k: 5935 len: <class 'list'> Data: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'sid', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 5936 len: <class 'list'> Data: ['outlook', 'freeze', 'outlook', 'freeze'] processed_text: ['outlook', 'freeze', 'outlook', 'freeze'] list_processed_text: [['outlook'], ['freeze'], ['outlook'], ['freeze']] k: 5937 len: <class 'list'> Data: ['company', 'iphone', 'aorthyme', 'rnsuipbk', 'pm', 'badgknqs', 'xwelumfz', 'company', 'iphone', 'hi', 'pollaurid', 'regarding', 'mobile', 'phone', 'need', 'changed', 'please', 'call', 'vendor', 'number', 'best', 'choice', 'get', 'issue', 'fixed'] processed_text: ['company', 'iphone', 'aorthyme', 'rnsuipbk', 'pm', 'badgknqs', 'xwelumfz', 'company', 'iphone', 'hi', 'pollaurid', 'regarding', 'mobile', 'phone', 'need', 'changed', 'please', 'call', 'vendor', 'number', 'best', 'choice', 'get', 'issue', 'fixed'] list_processed_text: [['company'], ['iphone'], ['aorthyme'], ['rnsuipbk'], ['pm'], ['badgknqs'], ['xwelumfz'], ['company'], ['iphone'], ['hi'], ['pollaurid'], ['regarding'], ['mobile'], ['phone'], ['need'], ['changed'], ['please'], ['call'], ['vendor'], ['number'], ['best'], ['choice'], ['get'], ['issue'], ['fixed']] k: 5938 len: <class 'list'> Data: ['account', 'information', 'updated', 'uperform', 'spam', 'query', 'account', 'information', 'updated', 'uperform', 'spam', 'query'] processed_text: ['account', 'information', 'updated', 'uperform', 'spam', 'query', 'account', 'information', 'updated', 'uperform', 'spam', 'query'] list_processed_text: [['account'], ['information'], ['updated'], ['uperform'], ['spam'], ['query'], ['account'], ['information'], ['updated'], ['uperform'], ['spam'], ['query']] k: 5939 len: <class 'list'> Data: ['unable', 'load', 'crm', 'add', 'outlook', 'unable', 'load', 'crm', 'add', 'outlook'] processed_text: ['unable', 'load', 'crm', 'add', 'outlook', 'unable', 'load', 'crm', 'add', 'outlook'] list_processed_text: [['unable'], ['load'], ['crm'], ['add'], ['outlook'], ['unable'], ['load'], ['crm'], ['add'], ['outlook']] k: 5940 len: <class 'list'> Data: ['account', 'information', 'updated', 'uperform', 'spam', 'querries', 'account', 'information', 'updated', 'uperform', 'spam', 'query'] processed_text: ['account', 'information', 'updated', 'uperform', 'spam', 'querries', 'account', 'information', 'updated', 'uperform', 'spam', 'query'] list_processed_text: [['account'], ['information'], ['updated'], ['uperform'], ['spam'], ['querries'], ['account'], ['information'], ['updated'], ['uperform'], ['spam'], ['query']] k: 5941 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation', 'company', 'device'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation', 'company', 'device'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation'], ['company'], ['device']] k: 5942 len: <class 'list'> Data: ['send', 'function', 'working', 'outlook', 'send', 'function', 'working', 'outlook'] processed_text: ['send', 'function', 'working', 'outlook', 'send', 'function', 'working', 'outlook'] list_processed_text: [['send'], ['function'], ['working'], ['outlook'], ['send'], ['function'], ['working'], ['outlook']] k: 5943 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 5944 len: <class 'list'> Data: ['password', 'reset', 'request', 'ughzilfm', 'cfibdamq', 'password', 'reset', 'request', 'ughzilfm', 'cfibdamq'] processed_text: ['password', 'reset', 'request', 'ughzilfm', 'cfibdamq', 'password', 'reset', 'request', 'ughzilfm', 'cfibdamq'] list_processed_text: [['password'], ['reset'], ['request'], ['ughzilfm'], ['cfibdamq'], ['password'], ['reset'], ['request'], ['ughzilfm'], ['cfibdamq']] k: 5945 len: <class 'list'> Data: ['create', 'account', 'please', 'sent', 'gogtyekhan', 'merdivan', 'ughzilfm', 'cfibdamq', 'monday', 'create', 'account', 'please', 'hello', 'please', 'create', 'account', 'r', 'employee', 'ujtmipzv', 'cwdzunxs', 'xaqzisrk', 'ahbgjrqz', 'fyedqgzt', 'jdqvuhlr', 'employee', 'registration', 'account', 'yet', 'registered', 'office', 'germany', 'registered', 'office', 'listed', 'court', 'register', 'personally', 'liable', 'partner', 'general', 'partner', 'company', 'company', 'beteiligungs', 'gmbh', 'registered', 'office', 'rth', 'bay', 'registered', 'registered', 'office', 'registered', 'court', 'regster', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'confidential', 'exempt', 'disclosure', 'applicable', 'law', 'g', 'prohibited', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['create', 'account', 'please', 'sent', 'gogtyekhan', 'merdivan', 'ughzilfm', 'cfibdamq', 'monday', 'create', 'account', 'please', 'hello', 'please', 'create', 'account', 'r', 'employee', 'ujtmipzv', 'cwdzunxs', 'xaqzisrk', 'ahbgjrqz', 'fyedqgzt', 'jdqvuhlr', 'employee', 'registration', 'account', 'yet', 'registered', 'office', 'germany', 'registered', 'office', 'listed', 'court', 'register', 'personally', 'liable', 'partner', 'general', 'partner', 'company', 'company', 'beteiligungs', 'gmbh', 'registered', 'office', 'rth', 'bay', 'registered', 'registered', 'office', 'registered', 'court', 'regster', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'confidential', 'exempt', 'disclosure', 'applicable', 'law', 'g', 'prohibited', 'received', 'message', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['create'], ['account'], ['please'], ['sent'], ['gogtyekhan'], ['merdivan'], ['ughzilfm'], ['cfibdamq'], ['monday'], ['create'], ['account'], ['please'], ['hello'], ['please'], ['create'], ['account'], ['r'], ['employee'], ['ujtmipzv'], ['cwdzunxs'], ['xaqzisrk'], ['ahbgjrqz'], ['fyedqgzt'], ['jdqvuhlr'], ['employee'], ['registration'], ['account'], ['yet'], ['registered'], ['office'], ['germany'], ['registered'], ['office'], ['listed'], ['court'], ['register'], ['personally'], ['liable'], ['partner'], ['general'], ['partner'], ['company'], ['company'], ['beteiligungs'], ['gmbh'], ['registered'], ['office'], ['rth'], ['bay'], ['registered'], ['registered'], ['office'], ['registered'], ['court'], ['regster'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law'], ['g'], ['prohibited'], ['received'], ['message'], ['due'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 5946 len: <class 'list'> Data: ['need', 'bex', 'analysis', 'add', 'need', 'bex', 'analysis', 'add'] processed_text: ['need', 'bex', 'analysis', 'add', 'need', 'bex', 'analysis', 'add'] list_processed_text: [['need'], ['bex'], ['analysis'], ['add'], ['need'], ['bex'], ['analysis'], ['add']] k: 5947 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 5948 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5949 len: <class 'list'> Data: ['failed', 'skype', 'mtg', 'dear', 'tried', 'join', 'sandop', 'forecasting', 'training', 'session', 'today', 'could', 'see', 'presenter', 'screen', 'link', 'training', 'rescheduled', 'coming', 'anything', 'check', 'insure', 'problem'] processed_text: ['failed', 'skype', 'mtg', 'dear', 'tried', 'join', 'sandop', 'forecasting', 'training', 'session', 'today', 'could', 'see', 'presenter', 'screen', 'link', 'training', 'rescheduled', 'coming', 'anything', 'check', 'insure', 'problem'] list_processed_text: [['failed'], ['skype'], ['mtg'], ['dear'], ['tried'], ['join'], ['sandop'], ['forecasting'], ['training'], ['session'], ['today'], ['could'], ['see'], ['presenter'], ['screen'], ['link'], ['training'], ['rescheduled'], ['coming'], ['anything'], ['check'], ['insure'], ['problem']] k: 5950 len: <class 'list'> Data: ['adding', 'member', 'shared', 'mailbox', 'group', 'adding', 'member', 'shared', 'mailbox', 'group'] processed_text: ['adding', 'member', 'shared', 'mailbox', 'group', 'adding', 'member', 'shared', 'mailbox', 'group'] list_processed_text: [['adding'], ['member'], ['shared'], ['mailbox'], ['group'], ['adding'], ['member'], ['shared'], ['mailbox'], ['group']] k: 5951 len: <class 'list'> Data: ['prtgghjk', 'sid', 'password', 'reset', 'unable', 'login', 'prtgghjk', 'sid', 'system'] processed_text: ['prtgghjk', 'sid', 'password', 'reset', 'unable', 'login', 'prtgghjk', 'sid', 'system'] list_processed_text: [['prtgghjk'], ['sid'], ['password'], ['reset'], ['unable'], ['login'], ['prtgghjk'], ['sid'], ['system']] k: 5952 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 5953 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 5954 len: <class 'list'> Data: ['need', 'initial', 'password', 'reset', 'erp', 'prtgghjk', 'hr', 'tool', 'module', 'need', 'initial', 'password', 'reset', 'erp', 'prtgghjk', 'hr', 'tool', 'module'] processed_text: ['need', 'initial', 'password', 'reset', 'erp', 'prtgghjk', 'hr', 'tool', 'module', 'need', 'initial', 'password', 'reset', 'erp', 'prtgghjk', 'hr', 'tool', 'module'] list_processed_text: [['need'], ['initial'], ['password'], ['reset'], ['erp'], ['prtgghjk'], ['hr'], ['tool'], ['module'], ['need'], ['initial'], ['password'], ['reset'], ['erp'], ['prtgghjk'], ['hr'], ['tool'], ['module']] k: 5955 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 5956 len: <class 'list'> Data: ['laptop', 'turn', 'either', 'docked', 'un', 'docked', 'connected', 'ac', 'battery', 'laptop', 'turn', 'either', 'docked', 'un', 'docked', 'connected', 'ac', 'battery'] processed_text: ['laptop', 'turn', 'either', 'docked', 'un', 'docked', 'connected', 'ac', 'battery', 'laptop', 'turn', 'either', 'docked', 'un', 'docked', 'connected', 'ac', 'battery'] list_processed_text: [['laptop'], ['turn'], ['either'], ['docked'], ['un'], ['docked'], ['connected'], ['ac'], ['battery'], ['laptop'], ['turn'], ['either'], ['docked'], ['un'], ['docked'], ['connected'], ['ac'], ['battery']] k: 5957 len: <class 'list'> Data: ['external', 'monitor', 'working', 'flickering', 'external', 'monitor', 'working', 'flickering'] processed_text: ['external', 'monitor', 'working', 'flickering', 'external', 'monitor', 'working', 'flickering'] list_processed_text: [['external'], ['monitor'], ['working'], ['flickering'], ['external'], ['monitor'], ['working'], ['flickering']] k: 5958 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5959 len: <class 'list'> Data: ['runtime', 'error', 'hrp', 'hcm', 'production', 'following', 'error', 'occurred', 'creating', 'time', 'sheet', 'see', 'appendix', 'holiday', 'worker', 'randstad', 'employee', 'system', 'including', 'thursday'] processed_text: ['runtime', 'error', 'hrp', 'hcm', 'production', 'following', 'error', 'occurred', 'creating', 'time', 'sheet', 'see', 'appendix', 'holiday', 'worker', 'randstad', 'employee', 'system', 'including', 'thursday'] list_processed_text: [['runtime'], ['error'], ['hrp'], ['hcm'], ['production'], ['following'], ['error'], ['occurred'], ['creating'], ['time'], ['sheet'], ['see'], ['appendix'], ['holiday'], ['worker'], ['randstad'], ['employee'], ['system'], ['including'], ['thursday']] k: 5960 len: <class 'list'> Data: ['outlook', 'hang', 'outlook', 'hang'] processed_text: ['outlook', 'hang', 'outlook', 'hang'] list_processed_text: [['outlook'], ['hang'], ['outlook'], ['hang']] k: 5961 len: <class 'list'> Data: ['user', 'usa', 'plant', 'code', 'plant', 'northgate', 'unable', 'see', 'companyguest', 'network', 'user', 'usa', 'plant', 'code', 'plant', 'northgate', 'unable', 'see', 'companyguest', 'network', 'phone', 'well', 'laptop', 'phone'] processed_text: ['user', 'usa', 'plant', 'code', 'plant', 'northgate', 'unable', 'see', 'companyguest', 'network', 'user', 'usa', 'plant', 'code', 'plant', 'northgate', 'unable', 'see', 'companyguest', 'network', 'phone', 'well', 'laptop', 'phone'] list_processed_text: [['user'], ['usa'], ['plant'], ['code'], ['plant'], ['northgate'], ['unable'], ['see'], ['companyguest'], ['network'], ['user'], ['usa'], ['plant'], ['code'], ['plant'], ['northgate'], ['unable'], ['see'], ['companyguest'], ['network'], ['phone'], ['well'], ['laptop'], ['phone']] k: 5962 len: <class 'list'> Data: ['dmitazhw', 'kxbifzoh', 'lock', 'dmitazhw', 'kxbifzoh', 'lock', 'mii', 'system'] processed_text: ['dmitazhw', 'kxbifzoh', 'lock', 'dmitazhw', 'kxbifzoh', 'lock', 'mii', 'system'] list_processed_text: [['dmitazhw'], ['kxbifzoh'], ['lock'], ['dmitazhw'], ['kxbifzoh'], ['lock'], ['mii'], ['system']] k: 5963 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 5964 len: <class 'list'> Data: ['able', 'insert', 'money', 'value', 'crm', 'authorization', 'return', 'able', 'insert', 'money', 'value', 'crm', 'authorization', 'return'] processed_text: ['able', 'insert', 'money', 'value', 'crm', 'authorization', 'return', 'able', 'insert', 'money', 'value', 'crm', 'authorization', 'return'] list_processed_text: [['able'], ['insert'], ['money'], ['value'], ['crm'], ['authorization'], ['return'], ['able'], ['insert'], ['money'], ['value'], ['crm'], ['authorization'], ['return']] k: 5965 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] processed_text: ['unable', 'connect', 'vpn', 'unable', 'connect', 'vpn'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['unable'], ['connect'], ['vpn']] k: 5966 len: <class 'list'> Data: ['erp', 'sid', 'issue', 'summary', 'need', 'help', 'gaining', 'access', 'query', 'sid', 'get', 'sid', 'get', 'analyzer', 'find', 'query', 'name', 'looking', 'csr', 'quote', 'count', 'try', 'open', 'get', 'error', 'message', 'read', 'critical', 'programdnty', 'error', 'occurred', 'programdnty', 'terminate', 'need', 'access', 'week', 'training', 'scheduled'] processed_text: ['erp', 'sid', 'issue', 'summary', 'need', 'help', 'gaining', 'access', 'query', 'sid', 'get', 'sid', 'get', 'analyzer', 'find', 'query', 'name', 'looking', 'csr', 'quote', 'count', 'try', 'open', 'get', 'error', 'message', 'read', 'critical', 'programdnty', 'error', 'occurred', 'programdnty', 'terminate', 'need', 'access', 'week', 'training', 'scheduled'] list_processed_text: [['erp'], ['sid'], ['issue'], ['summary'], ['need'], ['help'], ['gaining'], ['access'], ['query'], ['sid'], ['get'], ['sid'], ['get'], ['analyzer'], ['find'], ['query'], ['name'], ['looking'], ['csr'], ['quote'], ['count'], ['try'], ['open'], ['get'], ['error'], ['message'], ['read'], ['critical'], ['programdnty'], ['error'], ['occurred'], ['programdnty'], ['terminate'], ['need'], ['access'], ['week'], ['training'], ['scheduled']] k: 5967 len: <class 'list'> Data: ['login', 'help', 'hub', 'login', 'help', 'hub'] processed_text: ['login', 'help', 'hub', 'login', 'help', 'hub'] list_processed_text: [['login'], ['help'], ['hub'], ['login'], ['help'], ['hub']] k: 5968 len: <class 'list'> Data: ['please', 'remove', 'security', 'role', 'comp', 'sale', 'rep', 'user', 'matghyuthdw', 'dthyan', 'matheywtyuews', 'please', 'remove', 'security', 'role', 'comp', 'sale', 'rep', 'user', 'matghyuthdw', 'dthyan', 'matheywtyuews', 'action', 'need', 'taken', 'immediately', 'causing', 'security', 'breach', 'please', 'assign', 'ticket', 'sudghhahjkkar', 'reddy'] processed_text: ['please', 'remove', 'security', 'role', 'comp', 'sale', 'rep', 'user', 'matghyuthdw', 'dthyan', 'matheywtyuews', 'please', 'remove', 'security', 'role', 'comp', 'sale', 'rep', 'user', 'matghyuthdw', 'dthyan', 'matheywtyuews', 'action', 'need', 'taken', 'immediately', 'causing', 'security', 'breach', 'please', 'assign', 'ticket', 'sudghhahjkkar', 'reddy'] list_processed_text: [['please'], ['remove'], ['security'], ['role'], ['comp'], ['sale'], ['rep'], ['user'], ['matghyuthdw'], ['dthyan'], ['matheywtyuews'], ['please'], ['remove'], ['security'], ['role'], ['comp'], ['sale'], ['rep'], ['user'], ['matghyuthdw'], ['dthyan'], ['matheywtyuews'], ['action'], ['need'], ['taken'], ['immediately'], ['causing'], ['security'], ['breach'], ['please'], ['assign'], ['ticket'], ['sudghhahjkkar'], ['reddy']] k: 5969 len: <class 'list'> Data: ['reset', 'password', 'btelgpcx', 'nrlfhbmu', 'erp', 'production', 'erp', 'reset', 'password', 'btelgpcx', 'nrlfhbmu', 'erp', 'production', 'erp'] processed_text: ['reset', 'password', 'btelgpcx', 'nrlfhbmu', 'erp', 'production', 'erp', 'reset', 'password', 'btelgpcx', 'nrlfhbmu', 'erp', 'production', 'erp'] list_processed_text: [['reset'], ['password'], ['btelgpcx'], ['nrlfhbmu'], ['erp'], ['production'], ['erp'], ['reset'], ['password'], ['btelgpcx'], ['nrlfhbmu'], ['erp'], ['production'], ['erp']] k: 5970 len: <class 'list'> Data: ['hostname', 'bia', 'search', 'server', 'multiple', 'process', 'went', 'since', 'et', 'search', 'serverrfcserver', 'search', 'serverindexserver', 'search', 'servernameserver', 'trx', 'erpsid', 'trx'] processed_text: ['hostname', 'bia', 'search', 'server', 'multiple', 'process', 'went', 'since', 'et', 'search', 'serverrfcserver', 'search', 'serverindexserver', 'search', 'servernameserver', 'trx', 'erpsid', 'trx'] list_processed_text: [['hostname'], ['bia'], ['search'], ['server'], ['multiple'], ['process'], ['went'], ['since'], ['et'], ['search'], ['serverrfcserver'], ['search'], ['serverindexserver'], ['search'], ['servernameserver'], ['trx'], ['erpsid'], ['trx']] k: 5971 len: <class 'list'> Data: ['new', 'password', 'updating', 'window', 'new', 'password', 'updating', 'window'] processed_text: ['new', 'password', 'updating', 'window', 'new', 'password', 'updating', 'window'] list_processed_text: [['new'], ['password'], ['updating'], ['window'], ['new'], ['password'], ['updating'], ['window']] k: 5972 len: <class 'list'> Data: ['system', 'frozen', 'startup', 'system', 'frozen', 'startup'] processed_text: ['system', 'frozen', 'startup', 'system', 'frozen', 'startup'] list_processed_text: [['system'], ['frozen'], ['startup'], ['system'], ['frozen'], ['startup']] k: 5973 len: <class 'list'> Data: ['unable', 'view', 'hr', 'tool', 'global', 'view', 'crm', 'collaboration', 'platform', 'unable', 'view', 'hr', 'tool', 'global', 'view', 'crm', 'collaboration', 'platform'] processed_text: ['unable', 'view', 'hr', 'tool', 'global', 'view', 'crm', 'collaboration', 'platform', 'unable', 'view', 'hr', 'tool', 'global', 'view', 'crm', 'collaboration', 'platform'] list_processed_text: [['unable'], ['view'], ['hr'], ['tool'], ['global'], ['view'], ['crm'], ['collaboration'], ['platform'], ['unable'], ['view'], ['hr'], ['tool'], ['global'], ['view'], ['crm'], ['collaboration'], ['platform']] k: 5974 len: <class 'list'> Data: ['skype', 'working', 'hello', 'team', 'inform', 'skype', 'working', 'pc', 'yzugpdco', 'nsyapewg', 'director', 'sale', 'company', 'europe'] processed_text: ['skype', 'working', 'hello', 'team', 'inform', 'skype', 'working', 'pc', 'yzugpdco', 'nsyapewg', 'director', 'sale', 'company', 'europe'] list_processed_text: [['skype'], ['working'], ['hello'], ['team'], ['inform'], ['skype'], ['working'], ['pc'], ['yzugpdco'], ['nsyapewg'], ['director'], ['sale'], ['company'], ['europe']] k: 5975 len: <class 'list'> Data: ['hdmi', 'cable', 'meeting', 'room', 'hello', 'team', 'please', 'arrange', 'hdmi', 'cable', 'meeting', 'room', 'connect', 'projector', 'since', 'new', 'laptop', 'hdmi', 'dependent', 'unable', 'connect', 'via', 'current', 'cable', 'always', 'depend', 'sometime', 'might', 'onsite', 'case', 'difficult', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics'] processed_text: ['hdmi', 'cable', 'meeting', 'room', 'hello', 'team', 'please', 'arrange', 'hdmi', 'cable', 'meeting', 'room', 'connect', 'projector', 'since', 'new', 'laptop', 'hdmi', 'dependent', 'unable', 'connect', 'via', 'current', 'cable', 'always', 'depend', 'sometime', 'might', 'onsite', 'case', 'difficult', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'ssl', 'sourcing', 'logistics'] list_processed_text: [['hdmi'], ['cable'], ['meeting'], ['room'], ['hello'], ['team'], ['please'], ['arrange'], ['hdmi'], ['cable'], ['meeting'], ['room'], ['connect'], ['projector'], ['since'], ['new'], ['laptop'], ['hdmi'], ['dependent'], ['unable'], ['connect'], ['via'], ['current'], ['cable'], ['always'], ['depend'], ['sometime'], ['might'], ['onsite'], ['case'], ['difficult'], ['inxsupmy'], ['zhwmifvx'], ['team'], ['lead'], ['ssl'], ['sourcing'], ['logistics']] k: 5976 len: <class 'list'> Data: ['vpn', 'access', 'hello', 'please', 'usa', 'access', 'eu', 'vpn', 'user', 'xfuqovkd', 'efsdciut', 'seefgrtybum', 'atydjkwl', 'sotmfcga', 'vvrtgwildj'] processed_text: ['vpn', 'access', 'hello', 'please', 'usa', 'access', 'eu', 'vpn', 'user', 'xfuqovkd', 'efsdciut', 'seefgrtybum', 'atydjkwl', 'sotmfcga', 'vvrtgwildj'] list_processed_text: [['vpn'], ['access'], ['hello'], ['please'], ['usa'], ['access'], ['eu'], ['vpn'], ['user'], ['xfuqovkd'], ['efsdciut'], ['seefgrtybum'], ['atydjkwl'], ['sotmfcga'], ['vvrtgwildj']] k: 5977 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 5978 len: <class 'list'> Data: ['unable', 'open', 'opportunity', 'crm', 'online', 'unable', 'open', 'opportunity', 'crm', 'online', 'user', 'able', 'week', 'back', 'showing', 'access', 'denied'] processed_text: ['unable', 'open', 'opportunity', 'crm', 'online', 'unable', 'open', 'opportunity', 'crm', 'online', 'user', 'able', 'week', 'back', 'showing', 'access', 'denied'] list_processed_text: [['unable'], ['open'], ['opportunity'], ['crm'], ['online'], ['unable'], ['open'], ['opportunity'], ['crm'], ['online'], ['user'], ['able'], ['week'], ['back'], ['showing'], ['access'], ['denied']] k: 5979 len: <class 'list'> Data: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 5980 len: <class 'list'> Data: ['open', 'order', 'schedule', 'line', 'p', 'hallo', 'ruchitgrr', 'hallo', 'frau', 'haug', 'leider', 'enth', 'lt', 'dieser', 'report', 'nur', 'meine', 'tsk', 'positionen', 'entsprechend', 'der', 'beschreibung', 'sollte', 'mein', 'gesamtes', 'verkaufsgebiet', 'alle', 'ad', 'abgebildet', 'sein', 'gru', 'anivdcor', 'rbmfhiox', 'sale', 'manager', 'sale', 'germany', 'company', 'deutschland', 'gmbh', 'urspr', 'ngliche', 'nachricht', 'von', 'mail', 'gesendet', 'montag', 'anivdcor', 'rbmfhiox', 'betreff', 'open', 'order', 'schedule', 'line', 'hello', 'report', 'weekly', 'open', 'order', 'schedule', 'line', 'report', 'list', 'scheduled', 'delivery', 'date', 'open', 'order', 'customer', 'expected', 'use', 'report', 'effectively', 'manage', 'sale', 'territory', 'question', 'regard', 'report', 'please', 'contact', 'regional', 'sale', 'operational', 'excellence', 'lead', 'read', 'report', 'scheduled', 'order', 'item', 'listed', 'report', 'column', 'purple', 'field', 'name', 'show', 'total', 'value', 'line', 'order', 'added', 'together', 'total', 'value', 'appear', 'every', 'scheduled', 'line', 'example', 'line', 'item', 'total', 'quantity', 'ordered', 'piece', 'three', 'scheduled', 'delivery', 'piece', 'report', 'repeat', 'total', 'quantity', 'ordered', 'every', 'schedule', 'line', 'order', 'nbr', 'item', 'nbr', 'create', 'date', 'qty', 'sched', 'value', 'sched', 'date', 'sched', 'unit', 'price', 'qty', 'order', 'blue', 'blue', 'blue', 'blue', 'blue', 'blue', 'blue', 'purple', 'please', 'reply', 'directly', 'sender', 'mail'] processed_text: ['open', 'order', 'schedule', 'line', 'p', 'hallo', 'ruchitgrr', 'hallo', 'frau', 'haug', 'leider', 'enth', 'lt', 'dieser', 'report', 'nur', 'meine', 'tsk', 'positionen', 'entsprechend', 'der', 'beschreibung', 'sollte', 'mein', 'gesamtes', 'verkaufsgebiet', 'alle', 'ad', 'abgebildet', 'sein', 'gru', 'anivdcor', 'rbmfhiox', 'sale', 'manager', 'sale', 'germany', 'company', 'deutschland', 'gmbh', 'urspr', 'ngliche', 'nachricht', 'von', 'mail', 'gesendet', 'montag', 'anivdcor', 'rbmfhiox', 'betreff', 'open', 'order', 'schedule', 'line', 'hello', 'report', 'weekly', 'open', 'order', 'schedule', 'line', 'report', 'list', 'scheduled', 'delivery', 'date', 'open', 'order', 'customer', 'expected', 'use', 'report', 'effectively', 'manage', 'sale', 'territory', 'question', 'regard', 'report', 'please', 'contact', 'regional', 'sale', 'operational', 'excellence', 'lead', 'read', 'report', 'scheduled', 'order', 'item', 'listed', 'report', 'column', 'purple', 'field', 'name', 'show', 'total', 'value', 'line', 'order', 'added', 'together', 'total', 'value', 'appear', 'every', 'scheduled', 'line', 'example', 'line', 'item', 'total', 'quantity', 'ordered', 'piece', 'three', 'scheduled', 'delivery', 'piece', 'report', 'repeat', 'total', 'quantity', 'ordered', 'every', 'schedule', 'line', 'order', 'nbr', 'item', 'nbr', 'create', 'date', 'qty', 'sched', 'value', 'sched', 'date', 'sched', 'unit', 'price', 'qty', 'order', 'blue', 'blue', 'blue', 'blue', 'blue', 'blue', 'blue', 'purple', 'please', 'reply', 'directly', 'sender', 'mail'] list_processed_text: [['open'], ['order'], ['schedule'], ['line'], ['p'], ['hallo'], ['ruchitgrr'], ['hallo'], ['frau'], ['haug'], ['leider'], ['enth'], ['lt'], ['dieser'], ['report'], ['nur'], ['meine'], ['tsk'], ['positionen'], ['entsprechend'], ['der'], ['beschreibung'], ['sollte'], ['mein'], ['gesamtes'], ['verkaufsgebiet'], ['alle'], ['ad'], ['abgebildet'], ['sein'], ['gru'], ['anivdcor'], ['rbmfhiox'], ['sale'], ['manager'], ['sale'], ['germany'], ['company'], ['deutschland'], ['gmbh'], ['urspr'], ['ngliche'], ['nachricht'], ['von'], ['mail'], ['gesendet'], ['montag'], ['anivdcor'], ['rbmfhiox'], ['betreff'], ['open'], ['order'], ['schedule'], ['line'], ['hello'], ['report'], ['weekly'], ['open'], ['order'], ['schedule'], ['line'], ['report'], ['list'], ['scheduled'], ['delivery'], ['date'], ['open'], ['order'], ['customer'], ['expected'], ['use'], ['report'], ['effectively'], ['manage'], ['sale'], ['territory'], ['question'], ['regard'], ['report'], ['please'], ['contact'], ['regional'], ['sale'], ['operational'], ['excellence'], ['lead'], ['read'], ['report'], ['scheduled'], ['order'], ['item'], ['listed'], ['report'], ['column'], ['purple'], ['field'], ['name'], ['show'], ['total'], ['value'], ['line'], ['order'], ['added'], ['together'], ['total'], ['value'], ['appear'], ['every'], ['scheduled'], ['line'], ['example'], ['line'], ['item'], ['total'], ['quantity'], ['ordered'], ['piece'], ['three'], ['scheduled'], ['delivery'], ['piece'], ['report'], ['repeat'], ['total'], ['quantity'], ['ordered'], ['every'], ['schedule'], ['line'], ['order'], ['nbr'], ['item'], ['nbr'], ['create'], ['date'], ['qty'], ['sched'], ['value'], ['sched'], ['date'], ['sched'], ['unit'], ['price'], ['qty'], ['order'], ['blue'], ['blue'], ['blue'], ['blue'], ['blue'], ['blue'], ['blue'], ['purple'], ['please'], ['reply'], ['directly'], ['sender'], ['mail']] k: 5981 len: <class 'list'> Data: ['outlook', 'inbox', 'updating', 'hello', 'since', 'morning', 'outlook', 'updating', 'inbox', 'see', 'image', 'message', 'bad', 'thing', 'sucking', 'bandwidth', 'slow', 'connection', 'also', 'went', 'pasue', 'lunch', 'gb', 'left', 'returned', 'started', 'gb', 'xfdkwusj', 'gyklresa', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'south', 'please', 'note', 'new', 'telephone', 'number', 'company', 'address', 'effective', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq'] processed_text: ['outlook', 'inbox', 'updating', 'hello', 'since', 'morning', 'outlook', 'updating', 'inbox', 'see', 'image', 'message', 'bad', 'thing', 'sucking', 'bandwidth', 'slow', 'connection', 'also', 'went', 'pasue', 'lunch', 'gb', 'left', 'returned', 'started', 'gb', 'xfdkwusj', 'gyklresa', 'sale', 'manager', 'earthwork', 'european', 'served', 'area', 'south', 'please', 'note', 'new', 'telephone', 'number', 'company', 'address', 'effective', 'company', 'infrastructure', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'und', 'naruedlk', 'mpvhakdq'] list_processed_text: [['outlook'], ['inbox'], ['updating'], ['hello'], ['since'], ['morning'], ['outlook'], ['updating'], ['inbox'], ['see'], ['image'], ['message'], ['bad'], ['thing'], ['sucking'], ['bandwidth'], ['slow'], ['connection'], ['also'], ['went'], ['pasue'], ['lunch'], ['gb'], ['left'], ['returned'], ['started'], ['gb'], ['xfdkwusj'], ['gyklresa'], ['sale'], ['manager'], ['earthwork'], ['european'], ['served'], ['area'], ['south'], ['please'], ['note'], ['new'], ['telephone'], ['number'], ['company'], ['address'], ['effective'], ['company'], ['infrastructure'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['und'], ['naruedlk'], ['mpvhakdq']] k: 5982 len: <class 'list'> Data: ['ad', 'locked', 'ad', 'locked'] processed_text: ['ad', 'locked', 'ad', 'locked'] list_processed_text: [['ad'], ['locked'], ['ad'], ['locked']] k: 5983 len: <class 'list'> Data: ['user', 'want', 'log', 'infonet', 'user', 'want', 'log', 'infonet'] processed_text: ['user', 'want', 'log', 'infonet', 'user', 'want', 'log', 'infonet'] list_processed_text: [['user'], ['want'], ['log'], ['infonet'], ['user'], ['want'], ['log'], ['infonet']] k: 5984 len: <class 'list'> Data: ['access', 'netweaver', 'try', 'connect', 'netweaver', 'message', 'appears', 'access', 'way', 'found', 'treat', 'property', 'register', 'library'] processed_text: ['access', 'netweaver', 'try', 'connect', 'netweaver', 'message', 'appears', 'access', 'way', 'found', 'treat', 'property', 'register', 'library'] list_processed_text: [['access'], ['netweaver'], ['try'], ['connect'], ['netweaver'], ['message'], ['appears'], ['access'], ['way'], ['found'], ['treat'], ['property'], ['register'], ['library']] k: 5985 len: <class 'list'> Data: ['error', 'code', 'accessing', 'user', 'dashbankrd', 'mobile', 'app', 'accessing', 'dashbankrd', 'created', 'ap', 'management', 'team', 'mobile', 'app', 'error', 'code', 'encountered', 'see', 'attached', 'screenshots'] processed_text: ['error', 'code', 'accessing', 'user', 'dashbankrd', 'mobile', 'app', 'accessing', 'dashbankrd', 'created', 'ap', 'management', 'team', 'mobile', 'app', 'error', 'code', 'encountered', 'see', 'attached', 'screenshots'] list_processed_text: [['error'], ['code'], ['accessing'], ['user'], ['dashbankrd'], ['mobile'], ['app'], ['accessing'], ['dashbankrd'], ['created'], ['ap'], ['management'], ['team'], ['mobile'], ['app'], ['error'], ['code'], ['encountered'], ['see'], ['attached'], ['screenshots']] k: 5986 len: <class 'list'> Data: ['check', 'router', 'wifi', 'router', 'sao', 'pollaurido', 'mercedes', 'ap', 'site', 'south', 'amerirtca', 'sp', 'bernardo', 'campo', 'mercedes', 'benz', 'hi', 'team', 'please', 'check', 'router', 'wifi', 'sao', 'pollaurido', 'mercedes', 'ap', 'site', 'company', 'south', 'amerirtca', 'pollaurido', 'bernardo', 'campo', 'possible', 'connect', 'network', 'wifi', 'companysecure', 'network', 'visible', 'user', 'local', 'need', 'connect', 'remotely', 'doubt', 'please', 'return'] processed_text: ['check', 'router', 'wifi', 'router', 'sao', 'pollaurido', 'mercedes', 'ap', 'site', 'south', 'amerirtca', 'sp', 'bernardo', 'campo', 'mercedes', 'benz', 'hi', 'team', 'please', 'check', 'router', 'wifi', 'sao', 'pollaurido', 'mercedes', 'ap', 'site', 'company', 'south', 'amerirtca', 'pollaurido', 'bernardo', 'campo', 'possible', 'connect', 'network', 'wifi', 'companysecure', 'network', 'visible', 'user', 'local', 'need', 'connect', 'remotely', 'doubt', 'please', 'return'] list_processed_text: [['check'], ['router'], ['wifi'], ['router'], ['sao'], ['pollaurido'], ['mercedes'], ['ap'], ['site'], ['south'], ['amerirtca'], ['sp'], ['bernardo'], ['campo'], ['mercedes'], ['benz'], ['hi'], ['team'], ['please'], ['check'], ['router'], ['wifi'], ['sao'], ['pollaurido'], ['mercedes'], ['ap'], ['site'], ['company'], ['south'], ['amerirtca'], ['pollaurido'], ['bernardo'], ['campo'], ['possible'], ['connect'], ['network'], ['wifi'], ['companysecure'], ['network'], ['visible'], ['user'], ['local'], ['need'], ['connect'], ['remotely'], ['doubt'], ['please'], ['return']] k: 5987 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 5988 len: <class 'list'> Data: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkwin'], ['hostname'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 5989 len: <class 'list'> Data: ['password', 'unlock', 'venkthrysh', 'hi', 'please', 'unlock', 'password', 'userid', 'venkthrysh', 'laptop', 'locked', 'due', 'entering', 'wrong', 'password'] processed_text: ['password', 'unlock', 'venkthrysh', 'hi', 'please', 'unlock', 'password', 'userid', 'venkthrysh', 'laptop', 'locked', 'due', 'entering', 'wrong', 'password'] list_processed_text: [['password'], ['unlock'], ['venkthrysh'], ['hi'], ['please'], ['unlock'], ['password'], ['userid'], ['venkthrysh'], ['laptop'], ['locked'], ['due'], ['entering'], ['wrong'], ['password']] k: 5990 len: <class 'list'> Data: ['wendt', 'wac', 'quattro', 'connect', 'pc', 'server', 'please', 'connect', 'last', 'peripheral', 'grinding', 'machine', 'plant', 'ce', 'iso', 'computer', 'server', 'save', 'usb', 'stick', 'pull', 'programdntyme', 'directly', 'onto', 'machine'] processed_text: ['wendt', 'wac', 'quattro', 'connect', 'pc', 'server', 'please', 'connect', 'last', 'peripheral', 'grinding', 'machine', 'plant', 'ce', 'iso', 'computer', 'server', 'save', 'usb', 'stick', 'pull', 'programdntyme', 'directly', 'onto', 'machine'] list_processed_text: [['wendt'], ['wac'], ['quattro'], ['connect'], ['pc'], ['server'], ['please'], ['connect'], ['last'], ['peripheral'], ['grinding'], ['machine'], ['plant'], ['ce'], ['iso'], ['computer'], ['server'], ['save'], ['usb'], ['stick'], ['pull'], ['programdntyme'], ['directly'], ['onto'], ['machine']] k: 5991 len: <class 'list'> Data: ['printer', 'configuration', 'summary', 'want', 'configure', 'printer', 'laptop', 'available'] processed_text: ['printer', 'configuration', 'summary', 'want', 'configure', 'printer', 'laptop', 'available'] list_processed_text: [['printer'], ['configuration'], ['summary'], ['want'], ['configure'], ['printer'], ['laptop'], ['available']] k: 5992 len: <class 'list'> Data: ['te', 'application', 'citrix', 'work', 'anymore', 'login', 'ka', 'company', 'com', 'try', 'start', 'te', 'app', 'receive', 'error', 'message', 'contacted', 'designes', 'scandinavia', 'company', 'fortive', 'receive', 'error', 'message', 'please', 'needful'] processed_text: ['te', 'application', 'citrix', 'work', 'anymore', 'login', 'ka', 'company', 'com', 'try', 'start', 'te', 'app', 'receive', 'error', 'message', 'contacted', 'designes', 'scandinavia', 'company', 'fortive', 'receive', 'error', 'message', 'please', 'needful'] list_processed_text: [['te'], ['application'], ['citrix'], ['work'], ['anymore'], ['login'], ['ka'], ['company'], ['com'], ['try'], ['start'], ['te'], ['app'], ['receive'], ['error'], ['message'], ['contacted'], ['designes'], ['scandinavia'], ['company'], ['fortive'], ['receive'], ['error'], ['message'], ['please'], ['needful']] k: 5993 len: <class 'list'> Data: ['help', 'hello', 'help', 'team', 'pls', 'open', 'ticket', 'assigned', 'rth', 'need', 'help', 'excel', 'hardcopy'] processed_text: ['help', 'hello', 'help', 'team', 'pls', 'open', 'ticket', 'assigned', 'rth', 'need', 'help', 'excel', 'hardcopy'] list_processed_text: [['help'], ['hello'], ['help'], ['team'], ['pls'], ['open'], ['ticket'], ['assigned'], ['rth'], ['need'], ['help'], ['excel'], ['hardcopy']] k: 5994 len: <class 'list'> Data: ['asking', 'cost', 'material', 'plant', 'dear', 'team', 'sent', 'ticket', 'erp', 'fico', 'since', 'last', 'received', 'ticket', 'number', 'yet', 'till', 'please', 'advise', 'best'] processed_text: ['asking', 'cost', 'material', 'plant', 'dear', 'team', 'sent', 'ticket', 'erp', 'fico', 'since', 'last', 'received', 'ticket', 'number', 'yet', 'till', 'please', 'advise', 'best'] list_processed_text: [['asking'], ['cost'], ['material'], ['plant'], ['dear'], ['team'], ['sent'], ['ticket'], ['erp'], ['fico'], ['since'], ['last'], ['received'], ['ticket'], ['number'], ['yet'], ['till'], ['please'], ['advise'], ['best']] k: 5995 len: <class 'list'> Data: ['unable', 'change', 'telephony', 'software', 'password', 'yet', 'expired', 'expires', 'day', 'please', 'change', 'telephony', 'software', 'interaction', 'desktop', 'password', 'get', 'message', 'request', 'change', 'password', 'failed', 'pls', 'see', 'attached', 'screenshot'] processed_text: ['unable', 'change', 'telephony', 'software', 'password', 'yet', 'expired', 'expires', 'day', 'please', 'change', 'telephony', 'software', 'interaction', 'desktop', 'password', 'get', 'message', 'request', 'change', 'password', 'failed', 'pls', 'see', 'attached', 'screenshot'] list_processed_text: [['unable'], ['change'], ['telephony'], ['software'], ['password'], ['yet'], ['expired'], ['expires'], ['day'], ['please'], ['change'], ['telephony'], ['software'], ['interaction'], ['desktop'], ['password'], ['get'], ['message'], ['request'], ['change'], ['password'], ['failed'], ['pls'], ['see'], ['attached'], ['screenshot']] k: 5996 len: <class 'list'> Data: ['following', 'hello', 'please', 'block', 'email', 'address', 'company', 'email', 'server', 'best'] processed_text: ['following', 'hello', 'please', 'block', 'email', 'address', 'company', 'email', 'server', 'best'] list_processed_text: [['following'], ['hello'], ['please'], ['block'], ['email'], ['address'], ['company'], ['email'], ['server'], ['best']] k: 5997 len: <class 'list'> Data: ['connectivity', 'issue', 'company', 'carrier', 'location', 'best', 'fya'] processed_text: ['connectivity', 'issue', 'company', 'carrier', 'location', 'best', 'fya'] list_processed_text: [['connectivity'], ['issue'], ['company'], ['carrier'], ['location'], ['best'], ['fya']] k: 5998 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 5999 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6000 len: <class 'list'> Data: ['reset', 'password', 'cesgrtar', 'abgrtyreu', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'cesgrtar', 'abgrtyreu', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['cesgrtar'], ['abgrtyreu'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6001 len: <class 'list'> Data: ['phone', 'display', 'helpteam', 'display', 'phone', 'partially', 'invisible', 'therefore', 'difficult', 'read', 'many', 'thanks', 'many', 'gr', 'best'] processed_text: ['phone', 'display', 'helpteam', 'display', 'phone', 'partially', 'invisible', 'therefore', 'difficult', 'read', 'many', 'thanks', 'many', 'gr', 'best'] list_processed_text: [['phone'], ['display'], ['helpteam'], ['display'], ['phone'], ['partially'], ['invisible'], ['therefore'], ['difficult'], ['read'], ['many'], ['thanks'], ['many'], ['gr'], ['best']] k: 6002 len: <class 'list'> Data: ['business', 'client', 'issue', 'summary', 'need', 'netweaver', 'check', 'drawing', 'document', 'opening', 'follwing', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed', 'please', 'contact', 'administrator'] processed_text: ['business', 'client', 'issue', 'summary', 'need', 'netweaver', 'check', 'drawing', 'document', 'opening', 'follwing', 'error', 'message', 'microsoft', 'net', 'framdntyework', 'installed', 'please', 'contact', 'administrator'] list_processed_text: [['business'], ['client'], ['issue'], ['summary'], ['need'], ['netweaver'], ['check'], ['drawing'], ['document'], ['opening'], ['follwing'], ['error'], ['message'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['please'], ['contact'], ['administrator']] k: 6003 len: <class 'list'> Data: ['phone', 'connoected', 'wit', 'caas', 'server', 'hello', 'pick', 'pone', 'error', 'message', 'could', 'help', 'please', 'id', 'best'] processed_text: ['phone', 'connoected', 'wit', 'caas', 'server', 'hello', 'pick', 'pone', 'error', 'message', 'could', 'help', 'please', 'id', 'best'] list_processed_text: [['phone'], ['connoected'], ['wit'], ['caas'], ['server'], ['hello'], ['pick'], ['pone'], ['error'], ['message'], ['could'], ['help'], ['please'], ['id'], ['best']] k: 6004 len: <class 'list'> Data: ['delievery', 'item', 'category', 'determination', 'delievery', 'item', 'category', 'determination', 'rl', 'assigned'] processed_text: ['delievery', 'item', 'category', 'determination', 'delievery', 'item', 'category', 'determination', 'rl', 'assigned'] list_processed_text: [['delievery'], ['item'], ['category'], ['determination'], ['delievery'], ['item'], ['category'], ['determination'], ['rl'], ['assigned']] k: 6005 len: <class 'list'> Data: ['access', 'common', 'mail', 'box', 'hello', 'owner', 'following', 'common', 'mail', 'box', 'concern', 'today', 'able', 'view', 'unable', 'view', 'pl', 'see', 'screenshot', 'request', 'pl', 'resolve', 'best'] processed_text: ['access', 'common', 'mail', 'box', 'hello', 'owner', 'following', 'common', 'mail', 'box', 'concern', 'today', 'able', 'view', 'unable', 'view', 'pl', 'see', 'screenshot', 'request', 'pl', 'resolve', 'best'] list_processed_text: [['access'], ['common'], ['mail'], ['box'], ['hello'], ['owner'], ['following'], ['common'], ['mail'], ['box'], ['concern'], ['today'], ['able'], ['view'], ['unable'], ['view'], ['pl'], ['see'], ['screenshot'], ['request'], ['pl'], ['resolve'], ['best']] k: 6006 len: <class 'list'> Data: ['kurtyar', 'khty', 'hi', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'sbfhydeep', 'kurtyar', 'emp', 'name', 'useid', 'manager', 'saoltrmy', 'xyuscbkn', 'kurtyar', 'khty', 'nrbgctwm', 'kfwdhrmt'] processed_text: ['kurtyar', 'khty', 'hi', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'sbfhydeep', 'kurtyar', 'emp', 'name', 'useid', 'manager', 'saoltrmy', 'xyuscbkn', 'kurtyar', 'khty', 'nrbgctwm', 'kfwdhrmt'] list_processed_text: [['kurtyar'], ['khty'], ['hi'], ['please'], ['reset'], ['password'], ['send'], ['new'], ['password'], ['manager'], ['mr'], ['sbfhydeep'], ['kurtyar'], ['emp'], ['name'], ['useid'], ['manager'], ['saoltrmy'], ['xyuscbkn'], ['kurtyar'], ['khty'], ['nrbgctwm'], ['kfwdhrmt']] k: 6007 len: <class 'list'> Data: ['vvrttraja', 'hi', 'mr', 'aetwpiox', 'eijzadco', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'shynhjundar', 'emp', 'name', 'useid', 'manager', 'aetwpiox', 'eijzadco', 'vvttraja', 'shynhjundar'] processed_text: ['vvrttraja', 'hi', 'mr', 'aetwpiox', 'eijzadco', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'send', 'new', 'password', 'manager', 'mr', 'shynhjundar', 'emp', 'name', 'useid', 'manager', 'aetwpiox', 'eijzadco', 'vvttraja', 'shynhjundar'] list_processed_text: [['vvrttraja'], ['hi'], ['mr'], ['aetwpiox'], ['eijzadco'], ['unable'], ['login'], ['es'], ['portal'], ['please'], ['reset'], ['password'], ['send'], ['new'], ['password'], ['manager'], ['mr'], ['shynhjundar'], ['emp'], ['name'], ['useid'], ['manager'], ['aetwpiox'], ['eijzadco'], ['vvttraja'], ['shynhjundar']] k: 6008 len: <class 'list'> Data: ['vpn', 'router', 'company', 'eu', 'deu', 'germany', 'dmvpn', 'rtr', 'vpn', 'router', 'company', 'eu', 'deu', 'germany', 'dmvpn', 'rtr', 'erp', 'working', 'ok', 'everything', 'else', 'slow'] processed_text: ['vpn', 'router', 'company', 'eu', 'deu', 'germany', 'dmvpn', 'rtr', 'vpn', 'router', 'company', 'eu', 'deu', 'germany', 'dmvpn', 'rtr', 'erp', 'working', 'ok', 'everything', 'else', 'slow'] list_processed_text: [['vpn'], ['router'], ['company'], ['eu'], ['deu'], ['germany'], ['dmvpn'], ['rtr'], ['vpn'], ['router'], ['company'], ['eu'], ['deu'], ['germany'], ['dmvpn'], ['rtr'], ['erp'], ['working'], ['ok'], ['everything'], ['else'], ['slow']] k: 6009 len: <class 'list'> Data: ['urgent', 'shipping', 'issue', 'hello', 'wohtyugang', 'ethryju', 'critical', 'situation', 'shipping', 'distributor', 'tool', 'customer', 'complained', 'researched', 'determine', 'problem', 'another', 'customer', 'bill', 'north', 'atnh', 'call', 'time', 'yesterday', 'saying', 'choose', 'nda', 'shipping', 'order', 'changing', 'ups', 'ground', 'thought', 'originally', 'might', 'setting', 'carrier', 'selecting', 'ship', 'see', 'screenshot', 'case', 'continue', 'uacyltoe', 'hxgaycze', 'try', 'determine', 'problem', 'wanted', 'get', 'reported', 'quickly', 'possible'] processed_text: ['urgent', 'shipping', 'issue', 'hello', 'wohtyugang', 'ethryju', 'critical', 'situation', 'shipping', 'distributor', 'tool', 'customer', 'complained', 'researched', 'determine', 'problem', 'another', 'customer', 'bill', 'north', 'atnh', 'call', 'time', 'yesterday', 'saying', 'choose', 'nda', 'shipping', 'order', 'changing', 'ups', 'ground', 'thought', 'originally', 'might', 'setting', 'carrier', 'selecting', 'ship', 'see', 'screenshot', 'case', 'continue', 'uacyltoe', 'hxgaycze', 'try', 'determine', 'problem', 'wanted', 'get', 'reported', 'quickly', 'possible'] list_processed_text: [['urgent'], ['shipping'], ['issue'], ['hello'], ['wohtyugang'], ['ethryju'], ['critical'], ['situation'], ['shipping'], ['distributor'], ['tool'], ['customer'], ['complained'], ['researched'], ['determine'], ['problem'], ['another'], ['customer'], ['bill'], ['north'], ['atnh'], ['call'], ['time'], ['yesterday'], ['saying'], ['choose'], ['nda'], ['shipping'], ['order'], ['changing'], ['ups'], ['ground'], ['thought'], ['originally'], ['might'], ['setting'], ['carrier'], ['selecting'], ['ship'], ['see'], ['screenshot'], ['case'], ['continue'], ['uacyltoe'], ['hxgaycze'], ['try'], ['determine'], ['problem'], ['wanted'], ['get'], ['reported'], ['quickly'], ['possible']] k: 6010 len: <class 'list'> Data: ['complaint', 'workfflow', 'create', 'complaint', 'complaint', 'ist', 'workflow', 'approval', 'please', 'help'] processed_text: ['complaint', 'workfflow', 'create', 'complaint', 'complaint', 'ist', 'workflow', 'approval', 'please', 'help'] list_processed_text: [['complaint'], ['workfflow'], ['create'], ['complaint'], ['complaint'], ['ist'], ['workflow'], ['approval'], ['please'], ['help']] k: 6011 len: <class 'list'> Data: ['set', 'registration', 'account', 'mp', 'ek', 'pc', 'empwa', 'questions,', 'extension', 'lqjoagzt', 'gqueiatx', 'login', 'name', 'mp', 'ek', 'must', 'released', 'above-mentioned', 'pc', 'discussed', 'crishtyutian', 'pryes'] processed_text: ['set', 'registration', 'account', 'mp', 'ek', 'pc', 'empwa', 'questions,', 'extension', 'lqjoagzt', 'gqueiatx', 'login', 'name', 'mp', 'ek', 'must', 'released', 'above-mentioned', 'pc', 'discussed', 'crishtyutian', 'pryes'] list_processed_text: [['set'], ['registration'], ['account'], ['mp'], ['ek'], ['pc'], ['empwa'], ['questions,'], ['extension'], ['lqjoagzt'], ['gqueiatx'], ['login'], ['name'], ['mp'], ['ek'], ['must'], ['released'], ['above-mentioned'], ['pc'], ['discussed'], ['crishtyutian'], ['pryes']] k: 6012 len: <class 'list'> Data: ['replace', 'monitor', 'htvepyua', 'izgulrcf', 'replace', 'monitor', 'htvepyua', 'izgulrcf'] processed_text: ['replace', 'monitor', 'htvepyua', 'izgulrcf', 'replace', 'monitor', 'htvepyua', 'izgulrcf'] list_processed_text: [['replace'], ['monitor'], ['htvepyua'], ['izgulrcf'], ['replace'], ['monitor'], ['htvepyua'], ['izgulrcf']] k: 6013 len: <class 'list'> Data: ['customer', 'name', 'hronovsky', 'listed', 'engineering', 'tool', 'erp', 'id', 'name', 'rekmqxfn', 'jctgwmyi', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'customer', 'name', 'hronovsky', 'listed', 'engineering', 'tool', 'erp', 'id', 'please', 'check', 'add', 'customer'] processed_text: ['customer', 'name', 'hronovsky', 'listed', 'engineering', 'tool', 'erp', 'id', 'name', 'rekmqxfn', 'jctgwmyi', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'customer', 'name', 'hronovsky', 'listed', 'engineering', 'tool', 'erp', 'id', 'please', 'check', 'add', 'customer'] list_processed_text: [['customer'], ['name'], ['hronovsky'], ['listed'], ['engineering'], ['tool'], ['erp'], ['id'], ['name'], ['rekmqxfn'], ['jctgwmyi'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['customer'], ['name'], ['hronovsky'], ['listed'], ['engineering'], ['tool'], ['erp'], ['id'], ['please'], ['check'], ['add'], ['customer']] k: 6014 len: <class 'list'> Data: ['network', 'r', 'scan', 'available', 'please', 'check', 'vzqomdgt', 'jwoqbuml', 'network', 'r', 'scan', 'available', 'please', 'check', 'vzqomdgt', 'jwoqbuml'] processed_text: ['network', 'r', 'scan', 'available', 'please', 'check', 'vzqomdgt', 'jwoqbuml', 'network', 'r', 'scan', 'available', 'please', 'check', 'vzqomdgt', 'jwoqbuml'] list_processed_text: [['network'], ['r'], ['scan'], ['available'], ['please'], ['check'], ['vzqomdgt'], ['jwoqbuml'], ['network'], ['r'], ['scan'], ['available'], ['please'], ['check'], ['vzqomdgt'], ['jwoqbuml']] k: 6015 len: <class 'list'> Data: ['zeitwirtschaft', 'germany', 'seit', 'uhr', 'morgen', 'sind', 'r', 'werk', 'germany', 'keine', 'zeitbuchungen', 'vorhanden', 'bitte', 'den', 'fehler', 'beheben', 'dringend', 'hello', 'reason', 'ticket', 'germany', 'plant', 'also', 'germany', 'plant', 'get', 'time', 'account', 'data', 'eu', 'tool', 'transferred', 'erp', 'hrp', 'problem', 'exists', 'since', 'nothing', 'today', 'network', 'problem', 'germany', 'serious', 'month', 'end', 'closing', 'thursday'] processed_text: ['zeitwirtschaft', 'germany', 'seit', 'uhr', 'morgen', 'sind', 'r', 'werk', 'germany', 'keine', 'zeitbuchungen', 'vorhanden', 'bitte', 'den', 'fehler', 'beheben', 'dringend', 'hello', 'reason', 'ticket', 'germany', 'plant', 'also', 'germany', 'plant', 'get', 'time', 'account', 'data', 'eu', 'tool', 'transferred', 'erp', 'hrp', 'problem', 'exists', 'since', 'nothing', 'today', 'network', 'problem', 'germany', 'serious', 'month', 'end', 'closing', 'thursday'] list_processed_text: [['zeitwirtschaft'], ['germany'], ['seit'], ['uhr'], ['morgen'], ['sind'], ['r'], ['werk'], ['germany'], ['keine'], ['zeitbuchungen'], ['vorhanden'], ['bitte'], ['den'], ['fehler'], ['beheben'], ['dringend'], ['hello'], ['reason'], ['ticket'], ['germany'], ['plant'], ['also'], ['germany'], ['plant'], ['get'], ['time'], ['account'], ['data'], ['eu'], ['tool'], ['transferred'], ['erp'], ['hrp'], ['problem'], ['exists'], ['since'], ['nothing'], ['today'], ['network'], ['problem'], ['germany'], ['serious'], ['month'], ['end'], ['closing'], ['thursday']] k: 6016 len: <class 'list'> Data: ['probleme', 'mit', 'wu', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'wu', 'xwirzvda', 'okhyipgr'] processed_text: ['probleme', 'mit', 'wu', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'wu', 'xwirzvda', 'okhyipgr'] list_processed_text: [['probleme'], ['mit'], ['wu'], ['xwirzvda'], ['okhyipgr'], ['probleme'], ['mit'], ['wu'], ['xwirzvda'], ['okhyipgr']] k: 6017 len: <class 'list'> Data: ['problem', 'kiosk', 'ompeztak', 'ilkpqtjh', 'bur', 'orde', 'problem', 'kiosk', 'ompeztak', 'ilkpqtjh', 'bur', 'orde'] processed_text: ['problem', 'kiosk', 'ompeztak', 'ilkpqtjh', 'bur', 'orde', 'problem', 'kiosk', 'ompeztak', 'ilkpqtjh', 'bur', 'orde'] list_processed_text: [['problem'], ['kiosk'], ['ompeztak'], ['ilkpqtjh'], ['bur'], ['orde'], ['problem'], ['kiosk'], ['ompeztak'], ['ilkpqtjh'], ['bur'], ['orde']] k: 6018 len: <class 'list'> Data: ['sql', 'installation', 'sql', 'software', 'installation'] processed_text: ['sql', 'installation', 'sql', 'software', 'installation'] list_processed_text: [['sql'], ['installation'], ['sql'], ['software'], ['installation']] k: 6019 len: <class 'list'> Data: ['longer', 'scan', 'hello', 'printer', 'longer', 'scan', 'correctly', 'always', 'come', 'message', 'order', 'completed', 'go', 'detail', 'say', 'registration', 'error', 'please', 'check', 'friday', 'still', 'saturday', 'error', 'appeared'] processed_text: ['longer', 'scan', 'hello', 'printer', 'longer', 'scan', 'correctly', 'always', 'come', 'message', 'order', 'completed', 'go', 'detail', 'say', 'registration', 'error', 'please', 'check', 'friday', 'still', 'saturday', 'error', 'appeared'] list_processed_text: [['longer'], ['scan'], ['hello'], ['printer'], ['longer'], ['scan'], ['correctly'], ['always'], ['come'], ['message'], ['order'], ['completed'], ['go'], ['detail'], ['say'], ['registration'], ['error'], ['please'], ['check'], ['friday'], ['still'], ['saturday'], ['error'], ['appeared']] k: 6020 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'rethtyuzkd', 'transaction', 'code', 'user', 'need', 'working', 'fb', 'describe', 'issue', 'please', 'remove', 'fi', 'gl', 'accountant', 'ch', 'fi', 'gl', 'accountant', 'per', 'voprdmae', 'ivrgdmao', 'ltnivuhw', 'zbudwnfr', 'user', 'able', 'post', 'accounting', 'document', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'rethtyuzkd', 'transaction', 'code', 'user', 'need', 'working', 'fb', 'describe', 'issue', 'please', 'remove', 'fi', 'gl', 'accountant', 'ch', 'fi', 'gl', 'accountant', 'per', 'voprdmae', 'ivrgdmao', 'ltnivuhw', 'zbudwnfr', 'user', 'able', 'post', 'accounting', 'document', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['rethtyuzkd'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['fb'], ['describe'], ['issue'], ['please'], ['remove'], ['fi'], ['gl'], ['accountant'], ['ch'], ['fi'], ['gl'], ['accountant'], ['per'], ['voprdmae'], ['ivrgdmao'], ['ltnivuhw'], ['zbudwnfr'], ['user'], ['able'], ['post'], ['accounting'], ['document'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 6021 len: <class 'list'> Data: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'bxeagsmt', 'zrwdgsco', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['bxeagsmt'], ['zrwdgsco'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6022 len: <class 'list'> Data: ['password', 'reset', 'hai', 'reset', 'password', 'logins', 'kind'] processed_text: ['password', 'reset', 'hai', 'reset', 'password', 'logins', 'kind'] list_processed_text: [['password'], ['reset'], ['hai'], ['reset'], ['password'], ['logins'], ['kind']] k: 6023 len: <class 'list'> Data: ['hostname', 'since', 'et', 'hostname', 'since', 'et', 'server', 'rebooted', 'daily', 'today', 'reboot', 'server', 'still', 'srirgrtyam', 'informed'] processed_text: ['hostname', 'since', 'et', 'hostname', 'since', 'et', 'server', 'rebooted', 'daily', 'today', 'reboot', 'server', 'still', 'srirgrtyam', 'informed'] list_processed_text: [['hostname'], ['since'], ['et'], ['hostname'], ['since'], ['et'], ['server'], ['rebooted'], ['daily'], ['today'], ['reboot'], ['server'], ['still'], ['srirgrtyam'], ['informed']] k: 6024 len: <class 'list'> Data: ['help', 'create', 'delivery', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'urgent', 'plant', 'something', 'error', 'unable', 'create'] processed_text: ['help', 'create', 'delivery', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'urgent', 'plant', 'something', 'error', 'unable', 'create'] list_processed_text: [['help'], ['create'], ['delivery'], ['sto'], ['dear'], ['would'], ['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['urgent'], ['plant'], ['something'], ['error'], ['unable'], ['create']] k: 6025 len: <class 'list'> Data: ['cannot', 'login', 'good', 'morning', 'cannot', 'login', 'sid', 'due', 'following', 'error', 'logon', 'balancing', 'error', 'could', 'connect', 'message', 'server', 'rc', 'want', 'see', 'detailed', 'error', 'information', 'please', 'check', 'let', 'know', 'error', 'exists', 'least', 'fleisrgtyk', 'leibdrty'] processed_text: ['cannot', 'login', 'good', 'morning', 'cannot', 'login', 'sid', 'due', 'following', 'error', 'logon', 'balancing', 'error', 'could', 'connect', 'message', 'server', 'rc', 'want', 'see', 'detailed', 'error', 'information', 'please', 'check', 'let', 'know', 'error', 'exists', 'least', 'fleisrgtyk', 'leibdrty'] list_processed_text: [['cannot'], ['login'], ['good'], ['morning'], ['cannot'], ['login'], ['sid'], ['due'], ['following'], ['error'], ['logon'], ['balancing'], ['error'], ['could'], ['connect'], ['message'], ['server'], ['rc'], ['want'], ['see'], ['detailed'], ['error'], ['information'], ['please'], ['check'], ['let'], ['know'], ['error'], ['exists'], ['least'], ['fleisrgtyk'], ['leibdrty']] k: 6026 len: <class 'list'> Data: ['user', 'account', 'locked', 'zhrgtangs', 'hi', 'user', 'id', 'zhrgtangs', 'account', 'locked', 'computer', 'went', 'screensaver'] processed_text: ['user', 'account', 'locked', 'zhrgtangs', 'hi', 'user', 'id', 'zhrgtangs', 'account', 'locked', 'computer', 'went', 'screensaver'] list_processed_text: [['user'], ['account'], ['locked'], ['zhrgtangs'], ['hi'], ['user'], ['id'], ['zhrgtangs'], ['account'], ['locked'], ['computer'], ['went'], ['screensaver']] k: 6027 len: <class 'list'> Data: ['engineering', 'tool', 'installation', 'issue', 'distribuators', 'detailed', 'description', 'problem', 'including', 'shopfloor', 'machine', 'name', 'sogo', 'engineering', 'tool', 'app', 'using', 'vlan', 'location', 'source', 'ip', 'traffic', 'generated', 'destination', 'ip', 'type', 'application', 'eg', 'rdp', 'ping', 'teamviewer', 'specific', 'port', 'traffic', 'alone', 'blocked', 'work', 'last', 'issue', 'specific', 'location', 'mention', 'sogo', 'engineering', 'tool', 'location', 'additionally', 'attach', 'screenshot', 'ping', 'tracert', 'traffic'] processed_text: ['engineering', 'tool', 'installation', 'issue', 'distribuators', 'detailed', 'description', 'problem', 'including', 'shopfloor', 'machine', 'name', 'sogo', 'engineering', 'tool', 'app', 'using', 'vlan', 'location', 'source', 'ip', 'traffic', 'generated', 'destination', 'ip', 'type', 'application', 'eg', 'rdp', 'ping', 'teamviewer', 'specific', 'port', 'traffic', 'alone', 'blocked', 'work', 'last', 'issue', 'specific', 'location', 'mention', 'sogo', 'engineering', 'tool', 'location', 'additionally', 'attach', 'screenshot', 'ping', 'tracert', 'traffic'] list_processed_text: [['engineering'], ['tool'], ['installation'], ['issue'], ['distribuators'], ['detailed'], ['description'], ['problem'], ['including'], ['shopfloor'], ['machine'], ['name'], ['sogo'], ['engineering'], ['tool'], ['app'], ['using'], ['vlan'], ['location'], ['source'], ['ip'], ['traffic'], ['generated'], ['destination'], ['ip'], ['type'], ['application'], ['eg'], ['rdp'], ['ping'], ['teamviewer'], ['specific'], ['port'], ['traffic'], ['alone'], ['blocked'], ['work'], ['last'], ['issue'], ['specific'], ['location'], ['mention'], ['sogo'], ['engineering'], ['tool'], ['location'], ['additionally'], ['attach'], ['screenshot'], ['ping'], ['tracert'], ['traffic']] k: 6028 len: <class 'list'> Data: ['problem', 'scanning', 'document', 'dear', 'lady', 'gentlemen,', 'canning', 'document', 'currently', 'work', 'access', 'printer', 'mp', 'pc'] processed_text: ['problem', 'scanning', 'document', 'dear', 'lady', 'gentlemen,', 'canning', 'document', 'currently', 'work', 'access', 'printer', 'mp', 'pc'] list_processed_text: [['problem'], ['scanning'], ['document'], ['dear'], ['lady'], ['gentlemen,'], ['canning'], ['document'], ['currently'], ['work'], ['access'], ['printer'], ['mp'], ['pc']] k: 6029 len: <class 'list'> Data: ['m', 'office', 'installation', 'completed', 'see', 'appendix', 'tel', 'office', 'installation', 'completed'] processed_text: ['m', 'office', 'installation', 'completed', 'see', 'appendix', 'tel', 'office', 'installation', 'completed'] list_processed_text: [['m'], ['office'], ['installation'], ['completed'], ['see'], ['appendix'], ['tel'], ['office'], ['installation'], ['completed']] k: 6030 len: <class 'list'> Data: ['tr', 'rappel', 'vous', 'avez', 'un', 'nouveau', 'message', 'spam', 'hello', 'spam', 'account', 'ingdirect', 'would', 'one', 'related', 'company', 'email', 'sinc', 're', 'salutation', 'best'] processed_text: ['tr', 'rappel', 'vous', 'avez', 'un', 'nouveau', 'message', 'spam', 'hello', 'spam', 'account', 'ingdirect', 'would', 'one', 'related', 'company', 'email', 'sinc', 're', 'salutation', 'best'] list_processed_text: [['tr'], ['rappel'], ['vous'], ['avez'], ['un'], ['nouveau'], ['message'], ['spam'], ['hello'], ['spam'], ['account'], ['ingdirect'], ['would'], ['one'], ['related'], ['company'], ['email'], ['sinc'], ['re'], ['salutation'], ['best']] k: 6031 len: <class 'list'> Data: ['scanning', 'work', 'scanning', 'public', 'printer', 'mp', 'work'] processed_text: ['scanning', 'work', 'scanning', 'public', 'printer', 'mp', 'work'] list_processed_text: [['scanning'], ['work'], ['scanning'], ['public'], ['printer'], ['mp'], ['work']] k: 6032 len: <class 'list'> Data: ['zlgmctws', 'khfjzyto', 'access', 'computer', 'forgotten', 'password', 'could', 'please', 'help', 'u', 'sincerely'] processed_text: ['zlgmctws', 'khfjzyto', 'access', 'computer', 'forgotten', 'password', 'could', 'please', 'help', 'u', 'sincerely'] list_processed_text: [['zlgmctws'], ['khfjzyto'], ['access'], ['computer'], ['forgotten'], ['password'], ['could'], ['please'], ['help'], ['u'], ['sincerely']] k: 6033 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] processed_text: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['account'], ['locked'], ['password'], ['reset']] k: 6034 len: <class 'list'> Data: ['erp', 'password', 'locked', 'hi', 'please', 'unblock', 'erp', 'password', 'userid', 'hegdthy', 'gnasmtvx', 'cwxtsvkm'] processed_text: ['erp', 'password', 'locked', 'hi', 'please', 'unblock', 'erp', 'password', 'userid', 'hegdthy', 'gnasmtvx', 'cwxtsvkm'] list_processed_text: [['erp'], ['password'], ['locked'], ['hi'], ['please'], ['unblock'], ['erp'], ['password'], ['userid'], ['hegdthy'], ['gnasmtvx'], ['cwxtsvkm']] k: 6035 len: <class 'list'> Data: ['scanner', 'im', 'werk', 'germany', 'steel', 'funktionieren', 'nicht', 'information', 'ngprt', 'printer', 'name'] processed_text: ['scanner', 'im', 'werk', 'germany', 'steel', 'funktionieren', 'nicht', 'information', 'ngprt', 'printer', 'name'] list_processed_text: [['scanner'], ['im'], ['werk'], ['germany'], ['steel'], ['funktionieren'], ['nicht'], ['information'], ['ngprt'], ['printer'], ['name']] k: 6036 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6037 len: <class 'list'> Data: ['laptop', 'key', 'bankrd', 'working', 'please', 'needful', 'company', 'athjyul', 'dixhtyuit', 'athjyul', 'dixhtyuit', 'pm', 'laptop', 'key', 'bankrd', 'working', 'laptop', 'key', 'bankrd', 'working', 'please', 'depute', 'dell', 'person', 'attend', 'problem', 'laptop', 'model', 'latitude', 'asset', 'code', 'service', 'tag', 'dcgw', 'company', 'athjyul', 'dixhtyuit', 'senior', 'manager', 'sale', 'north', 'msg', 'companytm'] processed_text: ['laptop', 'key', 'bankrd', 'working', 'please', 'needful', 'company', 'athjyul', 'dixhtyuit', 'athjyul', 'dixhtyuit', 'pm', 'laptop', 'key', 'bankrd', 'working', 'laptop', 'key', 'bankrd', 'working', 'please', 'depute', 'dell', 'person', 'attend', 'problem', 'laptop', 'model', 'latitude', 'asset', 'code', 'service', 'tag', 'dcgw', 'company', 'athjyul', 'dixhtyuit', 'senior', 'manager', 'sale', 'north', 'msg', 'companytm'] list_processed_text: [['laptop'], ['key'], ['bankrd'], ['working'], ['please'], ['needful'], ['company'], ['athjyul'], ['dixhtyuit'], ['athjyul'], ['dixhtyuit'], ['pm'], ['laptop'], ['key'], ['bankrd'], ['working'], ['laptop'], ['key'], ['bankrd'], ['working'], ['please'], ['depute'], ['dell'], ['person'], ['attend'], ['problem'], ['laptop'], ['model'], ['latitude'], ['asset'], ['code'], ['service'], ['tag'], ['dcgw'], ['company'], ['athjyul'], ['dixhtyuit'], ['senior'], ['manager'], ['sale'], ['north'], ['msg'], ['companytm']] k: 6038 len: <class 'list'> Data: ['able', 'print', 'id', 'able', 'print', 'id'] processed_text: ['able', 'print', 'id', 'able', 'print', 'id'] list_processed_text: [['able'], ['print'], ['id'], ['able'], ['print'], ['id']] k: 6039 len: <class 'list'> Data: ['scanning', 'scanner', 'vh', 'work', 'note', 'drive', 'known', 'scanning', 'scanner', 'vh', 'work', 'note', 'drive', 'known'] processed_text: ['scanning', 'scanner', 'vh', 'work', 'note', 'drive', 'known', 'scanning', 'scanner', 'vh', 'work', 'note', 'drive', 'known'] list_processed_text: [['scanning'], ['scanner'], ['vh'], ['work'], ['note'], ['drive'], ['known'], ['scanning'], ['scanner'], ['vh'], ['work'], ['note'], ['drive'], ['known']] k: 6040 len: <class 'list'> Data: ['printer', 'rn', 'plant', 'work', 'hello', 'printer', 'rn', 'plant', 'production', 'paper', 'work', 'need', 'support', 'p'] processed_text: ['printer', 'rn', 'plant', 'work', 'hello', 'printer', 'rn', 'plant', 'production', 'paper', 'work', 'need', 'support', 'p'] list_processed_text: [['printer'], ['rn'], ['plant'], ['work'], ['hello'], ['printer'], ['rn'], ['plant'], ['production'], ['paper'], ['work'], ['need'], ['support'], ['p']] k: 6041 len: <class 'list'> Data: ['scanning', 'jobs,', 'message', 'appears', 'path', 'exist', 'scanning', 'jobs,', 'message', 'appears', 'path', 'exist'] processed_text: ['scanning', 'jobs,', 'message', 'appears', 'path', 'exist', 'scanning', 'jobs,', 'message', 'appears', 'path', 'exist'] list_processed_text: [['scanning'], ['jobs,'], ['message'], ['appears'], ['path'], ['exist'], ['scanning'], ['jobs,'], ['message'], ['appears'], ['path'], ['exist']] k: 6042 len: <class 'list'> Data: ['nx', 'opening', 'extr', 'nx', 'power', 'drafting', 'opening', 'name', 'megfgthyhana', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'nx', 'opening', 'extr', 'nx', 'power', 'drafting', 'opening'] processed_text: ['nx', 'opening', 'extr', 'nx', 'power', 'drafting', 'opening', 'name', 'megfgthyhana', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'nx', 'opening', 'extr', 'nx', 'power', 'drafting', 'opening'] list_processed_text: [['nx'], ['opening'], ['extr'], ['nx'], ['power'], ['drafting'], ['opening'], ['name'], ['megfgthyhana'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['nx'], ['opening'], ['extr'], ['nx'], ['power'], ['drafting'], ['opening']] k: 6043 len: <class 'list'> Data: ['erp', 'login', 'error', 'hi', 'later', 'login', 'erp', 'please', 'needful'] processed_text: ['erp', 'login', 'error', 'hi', 'later', 'login', 'erp', 'please', 'needful'] list_processed_text: [['erp'], ['login'], ['error'], ['hi'], ['later'], ['login'], ['erp'], ['please'], ['needful']] k: 6044 len: <class 'list'> Data: ['account', 'information', 'updated', 'hi', 'could', 'please', 'confirm', 'whether', 'genuine', 'mail'] processed_text: ['account', 'information', 'updated', 'hi', 'could', 'please', 'confirm', 'whether', 'genuine', 'mail'] list_processed_text: [['account'], ['information'], ['updated'], ['hi'], ['could'], ['please'], ['confirm'], ['whether'], ['genuine'], ['mail']] k: 6045 len: <class 'list'> Data: ['wi', 'fi', 'connectivity', 'issue', 'dear', 'team', 'good', 'morning', 'observe', 'lot', 'wi', 'fi', 'connectivity', 'issue', 'kirgtyan', 'training', 'room', 'pu', 'ground', 'floor', 'taranga', 'pu', 'floor', 'pu', 'floor', 'office', 'area', 'emerald', 'conference', 'room', 'admin', 'floor', 'kind', 'request', 'look'] processed_text: ['wi', 'fi', 'connectivity', 'issue', 'dear', 'team', 'good', 'morning', 'observe', 'lot', 'wi', 'fi', 'connectivity', 'issue', 'kirgtyan', 'training', 'room', 'pu', 'ground', 'floor', 'taranga', 'pu', 'floor', 'pu', 'floor', 'office', 'area', 'emerald', 'conference', 'room', 'admin', 'floor', 'kind', 'request', 'look'] list_processed_text: [['wi'], ['fi'], ['connectivity'], ['issue'], ['dear'], ['team'], ['good'], ['morning'], ['observe'], ['lot'], ['wi'], ['fi'], ['connectivity'], ['issue'], ['kirgtyan'], ['training'], ['room'], ['pu'], ['ground'], ['floor'], ['taranga'], ['pu'], ['floor'], ['pu'], ['floor'], ['office'], ['area'], ['emerald'], ['conference'], ['room'], ['admin'], ['floor'], ['kind'], ['request'], ['look']] k: 6046 len: <class 'list'> Data: ['telecom', 'vendor', 'card', 'working', 'telecom', 'vendor', 'card', 'working'] processed_text: ['telecom', 'vendor', 'card', 'working', 'telecom', 'vendor', 'card', 'working'] list_processed_text: [['telecom'], ['vendor'], ['card'], ['working'], ['telecom'], ['vendor'], ['card'], ['working']] k: 6047 len: <class 'list'> Data: ['power', 'working', 'computer', 'wont', 'turn', 'power', 'working'] processed_text: ['power', 'working', 'computer', 'wont', 'turn', 'power', 'working'] list_processed_text: [['power'], ['working'], ['computer'], ['wont'], ['turn'], ['power'], ['working']] k: 6048 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] processed_text: ['account', 'locked', 'password', 'reset', 'account', 'locked', 'password', 'reset'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['account'], ['locked'], ['password'], ['reset']] k: 6049 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'nehtjuavathi', 'last', 'name', 'patirjy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'nehtjuavathi', 'last', 'name', 'patirjy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['rad'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['nehtjuavathi'], ['last'], ['name'], ['patirjy'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 6050 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'hzudxyqb', 'qsmrwvle', 'nwfodmhc', 'exurcwkm', 'rad', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'please', 'restore', 'mobile', 'setting', 'enable', 'access', 'email', 'mobile', 'thanking', 'best'] processed_text: ['mobile', 'device', 'activation', 'hzudxyqb', 'qsmrwvle', 'nwfodmhc', 'exurcwkm', 'rad', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'please', 'restore', 'mobile', 'setting', 'enable', 'access', 'email', 'mobile', 'thanking', 'best'] list_processed_text: [['mobile'], ['device'], ['activation'], ['hzudxyqb'], ['qsmrwvle'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['fw'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['access'], ['importance'], ['high'], ['please'], ['restore'], ['mobile'], ['setting'], ['enable'], ['access'], ['email'], ['mobile'], ['thanking'], ['best']] k: 6051 len: <class 'list'> Data: ['outlook', 'working', 'name', 'vivian', 'kurtyar', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'working'] processed_text: ['outlook', 'working', 'name', 'vivian', 'kurtyar', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['name'], ['vivian'], ['kurtyar'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['working']] k: 6052 len: <class 'list'> Data: ['erp', 'working', 'dear', 'sir', 'following', 'message', 'coming', 'clicking', 'erp', 'icon', 'emp', 'code', 'user', 'id', 'schyhty', 'best'] processed_text: ['erp', 'working', 'dear', 'sir', 'following', 'message', 'coming', 'clicking', 'erp', 'icon', 'emp', 'code', 'user', 'id', 'schyhty', 'best'] list_processed_text: [['erp'], ['working'], ['dear'], ['sir'], ['following'], ['message'], ['coming'], ['clicking'], ['erp'], ['icon'], ['emp'], ['code'], ['user'], ['id'], ['schyhty'], ['best']] k: 6053 len: <class 'list'> Data: ['error', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'error', 'msg', 'attached', 'error', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'please', 'see', 'attached', 'snapshot', 'needful'] processed_text: ['error', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'error', 'msg', 'attached', 'error', 'changing', 'password', 'password', 'management', 'tool', 'password', 'manager', 'please', 'see', 'attached', 'snapshot', 'needful'] list_processed_text: [['error'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['error'], ['msg'], ['attached'], ['error'], ['changing'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['please'], ['see'], ['attached'], ['snapshot'], ['needful']] k: 6054 len: <class 'list'> Data: ['please', 'help', 'unlock', 'pw', 'user', 'zhrgtangs', 'hi', 'tried', 'unlock', 'password', 'management', 'tool', 'site', 'failed', 'please', 'help', 'unlock', 'user', 'zhrgtangs'] processed_text: ['please', 'help', 'unlock', 'pw', 'user', 'zhrgtangs', 'hi', 'tried', 'unlock', 'password', 'management', 'tool', 'site', 'failed', 'please', 'help', 'unlock', 'user', 'zhrgtangs'] list_processed_text: [['please'], ['help'], ['unlock'], ['pw'], ['user'], ['zhrgtangs'], ['hi'], ['tried'], ['unlock'], ['password'], ['management'], ['tool'], ['site'], ['failed'], ['please'], ['help'], ['unlock'], ['user'], ['zhrgtangs']] k: 6055 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 6056 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 6057 len: <class 'list'> Data: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler', 'job', 'hr', 'payroll', 'na', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['payroll'], ['na'], ['failed'], ['job'], ['scheduler']] k: 6058 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 6059 len: <class 'list'> Data: ['able', 'login', 'attendance', 'tool', 'able', 'login', 'attendance', 'tool', 'application', 'user', 'id'] processed_text: ['able', 'login', 'attendance', 'tool', 'able', 'login', 'attendance', 'tool', 'application', 'user', 'id'] list_processed_text: [['able'], ['login'], ['attendance'], ['tool'], ['able'], ['login'], ['attendance'], ['tool'], ['application'], ['user'], ['id']] k: 6060 len: <class 'list'> Data: ['apac', 'china', 'pbx', 'telephony', 'software', 'system', 'issue', 'apac', 'chinaand', 'dc', 'ip', 'phone', 'issue', 'one', 'line', 'phone', 'number', 'range', 'xxxx', 'dial', 'exterior', 'line', 'dial', 'exterior', 'line', 'always', 'received', 'busy', 'tone', 'dial', 'called', 'pbx', 'vendor', 'siemens', 'engineer', 'isp', 'check', 'device', 'feedback', 'device', 'working', 'fine', 'let', 'u', 'check', 'audiocodes', 'device', 'cause', 'line', 'connect', 'audiocodes', 'please', 'contact', 'related', 'person', 'contact', 'help', 'solve', 'problem'] processed_text: ['apac', 'china', 'pbx', 'telephony', 'software', 'system', 'issue', 'apac', 'chinaand', 'dc', 'ip', 'phone', 'issue', 'one', 'line', 'phone', 'number', 'range', 'xxxx', 'dial', 'exterior', 'line', 'dial', 'exterior', 'line', 'always', 'received', 'busy', 'tone', 'dial', 'called', 'pbx', 'vendor', 'siemens', 'engineer', 'isp', 'check', 'device', 'feedback', 'device', 'working', 'fine', 'let', 'u', 'check', 'audiocodes', 'device', 'cause', 'line', 'connect', 'audiocodes', 'please', 'contact', 'related', 'person', 'contact', 'help', 'solve', 'problem'] list_processed_text: [['apac'], ['china'], ['pbx'], ['telephony'], ['software'], ['system'], ['issue'], ['apac'], ['chinaand'], ['dc'], ['ip'], ['phone'], ['issue'], ['one'], ['line'], ['phone'], ['number'], ['range'], ['xxxx'], ['dial'], ['exterior'], ['line'], ['dial'], ['exterior'], ['line'], ['always'], ['received'], ['busy'], ['tone'], ['dial'], ['called'], ['pbx'], ['vendor'], ['siemens'], ['engineer'], ['isp'], ['check'], ['device'], ['feedback'], ['device'], ['working'], ['fine'], ['let'], ['u'], ['check'], ['audiocodes'], ['device'], ['cause'], ['line'], ['connect'], ['audiocodes'], ['please'], ['contact'], ['related'], ['person'], ['contact'], ['help'], ['solve'], ['problem']] k: 6061 len: <class 'list'> Data: ['shipping', 'notice', 'north', 'service', 'nwfodmhc', 'exurcwkm', 'hrlwizav', 'elyamqro', 'rad', 'shipping', 'notice', 'hello', 'guy', 'pls', 'kindly', 'set', 'shipping', 'notice', 'plant', 'customer'] processed_text: ['shipping', 'notice', 'north', 'service', 'nwfodmhc', 'exurcwkm', 'hrlwizav', 'elyamqro', 'rad', 'shipping', 'notice', 'hello', 'guy', 'pls', 'kindly', 'set', 'shipping', 'notice', 'plant', 'customer'] list_processed_text: [['shipping'], ['notice'], ['north'], ['service'], ['nwfodmhc'], ['exurcwkm'], ['hrlwizav'], ['elyamqro'], ['rad'], ['shipping'], ['notice'], ['hello'], ['guy'], ['pls'], ['kindly'], ['set'], ['shipping'], ['notice'], ['plant'], ['customer']] k: 6062 len: <class 'list'> Data: ['skype', 'could', 'work', 'skype', 'could', 'work', 'hear', 'anything'] processed_text: ['skype', 'could', 'work', 'skype', 'could', 'work', 'hear', 'anything'] list_processed_text: [['skype'], ['could'], ['work'], ['skype'], ['could'], ['work'], ['hear'], ['anything']] k: 6063 len: <class 'list'> Data: ['laptop', 'slowness', 'issue', 'laptop', 'slowness', 'using', 'multiple', 'apps', 'time'] processed_text: ['laptop', 'slowness', 'issue', 'laptop', 'slowness', 'using', 'multiple', 'apps', 'time'] list_processed_text: [['laptop'], ['slowness'], ['issue'], ['laptop'], ['slowness'], ['using'], ['multiple'], ['apps'], ['time']] k: 6064 len: <class 'list'> Data: ['wgq', 'dc', 'wgq', 'dc'] processed_text: ['wgq', 'dc', 'wgq', 'dc'] list_processed_text: [['wgq'], ['dc'], ['wgq'], ['dc']] k: 6065 len: <class 'list'> Data: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] processed_text: ['wireless', 'outage', 'taiwan', 'hello', 'wireless', 'companysecure', 'outage', 'taiwan', 'please', 'help'] list_processed_text: [['wireless'], ['outage'], ['taiwan'], ['hello'], ['wireless'], ['companysecure'], ['outage'], ['taiwan'], ['please'], ['help']] k: 6066 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 6067 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 6068 len: <class 'list'> Data: ['engineering', 'tool', 'access', 'requested', 'engineering', 'tool', 'access', 'requested'] processed_text: ['engineering', 'tool', 'access', 'requested', 'engineering', 'tool', 'access', 'requested'] list_processed_text: [['engineering'], ['tool'], ['access'], ['requested'], ['engineering'], ['tool'], ['access'], ['requested']] k: 6069 len: <class 'list'> Data: ['broken', 'client', 'anti', 'virus', 'broken', 'client', 'anti', 'virus'] processed_text: ['broken', 'client', 'anti', 'virus', 'broken', 'client', 'anti', 'virus'] list_processed_text: [['broken'], ['client'], ['anti'], ['virus'], ['broken'], ['client'], ['anti'], ['virus']] k: 6070 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6071 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6072 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6073 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 6074 len: <class 'list'> Data: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler'], ['job'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['failed'], ['job'], ['scheduler']] k: 6075 len: <class 'list'> Data: ['hostname', 'volume', 'consumed', 'dev', 'mksysbalv', 'hostname', 'volume', 'consumed', 'dev', 'mksysbalv'] processed_text: ['hostname', 'volume', 'consumed', 'dev', 'mksysbalv', 'hostname', 'volume', 'consumed', 'dev', 'mksysbalv'] list_processed_text: [['hostname'], ['volume'], ['consumed'], ['dev'], ['mksysbalv'], ['hostname'], ['volume'], ['consumed'], ['dev'], ['mksysbalv']] k: 6076 len: <class 'list'> Data: ['unable', 'approve', 'expense', 'report', 'proygkjt', 'mwetuhqf', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'callie', 'pollaurid', 'expense', 'report', 'submitted', 'jeffrghryeytyf', 'strigtyet', 'submitted', 'expense', 'show', 'task', 'approve', 'es', 'portal', 'approved', 'three', 'employee', 'two', 'jeffrghryey', 'submitted', 'one', 'please', 'identify', 'jeffrghryey', 'expense', 'submittal', 'show', 'system', 'approve', 'received', 'workflow', 'email', 'submit', 'original', 'message', 'workflow', 'system', 'mail', 'pm', 'proygkjt', 'mwetuhqf', 'expense', 'report', 'submitted', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'jeffrghryeyrghryey', 'strgrtyiet', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service'] processed_text: ['unable', 'approve', 'expense', 'report', 'proygkjt', 'mwetuhqf', 'pm', 'nwfodmhc', 'exurcwkm', 'ifblxjmc', 'dyrgfwbm', 'callie', 'pollaurid', 'expense', 'report', 'submitted', 'jeffrghryeytyf', 'strigtyet', 'submitted', 'expense', 'show', 'task', 'approve', 'es', 'portal', 'approved', 'three', 'employee', 'two', 'jeffrghryey', 'submitted', 'one', 'please', 'identify', 'jeffrghryey', 'expense', 'submittal', 'show', 'system', 'approve', 'received', 'workflow', 'email', 'submit', 'original', 'message', 'workflow', 'system', 'mail', 'pm', 'proygkjt', 'mwetuhqf', 'expense', 'report', 'submitted', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'jeffrghryeyrghryey', 'strgrtyiet', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service'] list_processed_text: [['unable'], ['approve'], ['expense'], ['report'], ['proygkjt'], ['mwetuhqf'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['ifblxjmc'], ['dyrgfwbm'], ['callie'], ['pollaurid'], ['expense'], ['report'], ['submitted'], ['jeffrghryeytyf'], ['strigtyet'], ['submitted'], ['expense'], ['show'], ['task'], ['approve'], ['es'], ['portal'], ['approved'], ['three'], ['employee'], ['two'], ['jeffrghryey'], ['submitted'], ['one'], ['please'], ['identify'], ['jeffrghryey'], ['expense'], ['submittal'], ['show'], ['system'], ['approve'], ['received'], ['workflow'], ['email'], ['submit'], ['original'], ['message'], ['workflow'], ['system'], ['mail'], ['pm'], ['proygkjt'], ['mwetuhqf'], ['expense'], ['report'], ['submitted'], ['following'], ['expense'], ['report'], ['submitted'], ['approval'], ['personnel'], ['jeffrghryeyrghryey'], ['strgrtyiet'], ['expense'], ['report'], ['start'], ['date'], ['end'], ['date'], ['total'], ['cost'], ['usd'], ['reimbursement'], ['amount'], ['usd'], ['review'], ['expense'], ['report'], ['full'], ['please'], ['log'], ['universal'], ['worklist'], ['manager'], ['self'], ['service']] k: 6077 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6078 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6079 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6080 len: <class 'list'> Data: ['power', 'outage', 'usa', 'company', 'divestiture', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'usa', 'company', 'divestiture', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['usa'], ['company'], ['divestiture'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6081 len: <class 'list'> Data: ['occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'inincident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'inincident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['occurrence'], ['firewall'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['dsw'], ['inincident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 6082 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 6083 len: <class 'list'> Data: ['hostname', 'hostname', 'hostname', 'service', 'alwaysupservice', 'exe', 'running', 'hostname', 'hostname', 'hostname', 'service', 'alwaysupservice', 'exe', 'running'] processed_text: ['hostname', 'hostname', 'hostname', 'service', 'alwaysupservice', 'exe', 'running', 'hostname', 'hostname', 'hostname', 'service', 'alwaysupservice', 'exe', 'running'] list_processed_text: [['hostname'], ['hostname'], ['hostname'], ['service'], ['alwaysupservice'], ['exe'], ['running'], ['hostname'], ['hostname'], ['hostname'], ['service'], ['alwaysupservice'], ['exe'], ['running']] k: 6084 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6085 len: <class 'list'> Data: ['please', 'reset', 'telephony', 'software', 'password', 'username', 'ticket', 'please', 'reset', 'telephony', 'software', 'password', 'name', 'full', 'name', 'cajdwtgq', 'breqgycv', 'username', 'pogredrty', 'extension', 'site', 'israel'] processed_text: ['please', 'reset', 'telephony', 'software', 'password', 'username', 'ticket', 'please', 'reset', 'telephony', 'software', 'password', 'name', 'full', 'name', 'cajdwtgq', 'breqgycv', 'username', 'pogredrty', 'extension', 'site', 'israel'] list_processed_text: [['please'], ['reset'], ['telephony'], ['software'], ['password'], ['username'], ['ticket'], ['please'], ['reset'], ['telephony'], ['software'], ['password'], ['name'], ['full'], ['name'], ['cajdwtgq'], ['breqgycv'], ['username'], ['pogredrty'], ['extension'], ['site'], ['israel']] k: 6086 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 6087 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6088 len: <class 'list'> Data: ['skype', 'business', 'shutting', 'starting', 'computer', 'error', 'message', 'skype', 'business', 'stopped', 'working', 'icon', 'click', 'say', 'close', 'programdnty'] processed_text: ['skype', 'business', 'shutting', 'starting', 'computer', 'error', 'message', 'skype', 'business', 'stopped', 'working', 'icon', 'click', 'say', 'close', 'programdnty'] list_processed_text: [['skype'], ['business'], ['shutting'], ['starting'], ['computer'], ['error'], ['message'], ['skype'], ['business'], ['stopped'], ['working'], ['icon'], ['click'], ['say'], ['close'], ['programdnty']] k: 6089 len: <class 'list'> Data: ['india', 'switch', 'company', 'ap', 'ind', 'pu', 'stack', 'sw', 'since', 'pm', 'et', 'india', 'switch', 'company', 'ap', 'ind', 'pu', 'stack', 'sw', 'since', 'pm', 'et'] processed_text: ['india', 'switch', 'company', 'ap', 'ind', 'pu', 'stack', 'sw', 'since', 'pm', 'et', 'india', 'switch', 'company', 'ap', 'ind', 'pu', 'stack', 'sw', 'since', 'pm', 'et'] list_processed_text: [['india'], ['switch'], ['company'], ['ap'], ['ind'], ['pu'], ['stack'], ['sw'], ['since'], ['pm'], ['et'], ['india'], ['switch'], ['company'], ['ap'], ['ind'], ['pu'], ['stack'], ['sw'], ['since'], ['pm'], ['et']] k: 6090 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6091 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6092 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6093 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6094 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6095 len: <class 'list'> Data: ['job', 'sid', 'apps', 'failed', 'job', 'scheduler', 'job', 'sid', 'apps', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'apps', 'failed', 'job', 'scheduler', 'job', 'sid', 'apps', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['apps'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['apps'], ['failed'], ['job'], ['scheduler']] k: 6096 len: <class 'list'> Data: ['problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'pmr', 'number', 'reporting', 'system', 'hq', 'dev', 'mme', 'snabf', 'machine', 'type', 'model', 'serial', 'mme', 'abf', 'problem', 'number', 'error', 'description', 'platform', 'firmware', 'reported', 'error', 'last', 'occurred', 'current', 'status', 'opened', 'pmr', 'number', 'detail', 'remote', 'support', 'call', 'generated', 'pwrhmc', 'completed', 'successfully', 'server', 'pwrhmc'] processed_text: ['problem', 'report', 'pwrhmc', 'hq', 'company', 'com', 'pmr', 'number', 'reporting', 'system', 'hq', 'dev', 'mme', 'snabf', 'machine', 'type', 'model', 'serial', 'mme', 'abf', 'problem', 'number', 'error', 'description', 'platform', 'firmware', 'reported', 'error', 'last', 'occurred', 'current', 'status', 'opened', 'pmr', 'number', 'detail', 'remote', 'support', 'call', 'generated', 'pwrhmc', 'completed', 'successfully', 'server', 'pwrhmc'] list_processed_text: [['problem'], ['report'], ['pwrhmc'], ['hq'], ['company'], ['com'], ['pmr'], ['number'], ['reporting'], ['system'], ['hq'], ['dev'], ['mme'], ['snabf'], ['machine'], ['type'], ['model'], ['serial'], ['mme'], ['abf'], ['problem'], ['number'], ['error'], ['description'], ['platform'], ['firmware'], ['reported'], ['error'], ['last'], ['occurred'], ['current'], ['status'], ['opened'], ['pmr'], ['number'], ['detail'], ['remote'], ['support'], ['call'], ['generated'], ['pwrhmc'], ['completed'], ['successfully'], ['server'], ['pwrhmc']] k: 6097 len: <class 'list'> Data: ['company', 'na', 'usa', 'usa', 'eh', 'medium', 'access', 'sw', 'switch', 'usa', 'company', 'location', 'since', 'et', 'company', 'na', 'usa', 'usa', 'eh', 'medium', 'access', 'sw', 'switch', 'usa', 'company', 'location', 'since', 'et'] processed_text: ['company', 'na', 'usa', 'usa', 'eh', 'medium', 'access', 'sw', 'switch', 'usa', 'company', 'location', 'since', 'et', 'company', 'na', 'usa', 'usa', 'eh', 'medium', 'access', 'sw', 'switch', 'usa', 'company', 'location', 'since', 'et'] list_processed_text: [['company'], ['na'], ['usa'], ['usa'], ['eh'], ['medium'], ['access'], ['sw'], ['switch'], ['usa'], ['company'], ['location'], ['since'], ['et'], ['company'], ['na'], ['usa'], ['usa'], ['eh'], ['medium'], ['access'], ['sw'], ['switch'], ['usa'], ['company'], ['location'], ['since'], ['et']] k: 6098 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6099 len: <class 'list'> Data: ['cannot', 'connect', 'internet', 'although', 'wifi', 'connected', 'hello', 'cannot', 'connect', 'internet', 'site', 'via', 'explorer', 'although', 'wifi', 'connected', 'pls', 'help', 'urgently', 'supposed', 'run', 'uacyltoe', 'hxgayczeing', 'already', 'hour', 'behind'] processed_text: ['cannot', 'connect', 'internet', 'although', 'wifi', 'connected', 'hello', 'cannot', 'connect', 'internet', 'site', 'via', 'explorer', 'although', 'wifi', 'connected', 'pls', 'help', 'urgently', 'supposed', 'run', 'uacyltoe', 'hxgayczeing', 'already', 'hour', 'behind'] list_processed_text: [['cannot'], ['connect'], ['internet'], ['although'], ['wifi'], ['connected'], ['hello'], ['cannot'], ['connect'], ['internet'], ['site'], ['via'], ['explorer'], ['although'], ['wifi'], ['connected'], ['pls'], ['help'], ['urgently'], ['supposed'], ['run'], ['uacyltoe'], ['hxgayczeing'], ['already'], ['hour'], ['behind']] k: 6100 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6101 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6102 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6103 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6104 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6105 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6106 len: <class 'list'> Data: ['hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'gb'] processed_text: ['hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'dat', 'hostname', 'deb', 'server', 'space', 'consumed', 'space', 'available', 'gb'] list_processed_text: [['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['dat'], ['hostname'], ['deb'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['gb']] k: 6107 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'awyl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'awyl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['dsw'], ['seeing'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['awyl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['soc']] k: 6108 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'lhql', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'lhql', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['lhql'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['soc']] k: 6109 len: <class 'list'> Data: ['vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'dsw', 'received', 'alert', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'device', 'ip', 'address', 'source', 'traffic', 'ip', 'axcl', 'destination', 'ip', 'detail', 'example', 'event', 'shown', 'please', 'investigate', 'activity', 'remediate', 'necessary', 'always', 'question', 'concern', 'please', 'call', 'counter', 'threat', 'operation', 'center', 'opt', 'discus', 'submit', 'response', 'open', 'ticket', 'action', 'respond', 'soc'] processed_text: ['vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'dsw', 'received', 'alert', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'device', 'ip', 'address', 'source', 'traffic', 'ip', 'axcl', 'destination', 'ip', 'detail', 'example', 'event', 'shown', 'please', 'investigate', 'activity', 'remediate', 'necessary', 'always', 'question', 'concern', 'please', 'call', 'counter', 'threat', 'operation', 'center', 'opt', 'discus', 'submit', 'response', 'open', 'ticket', 'action', 'respond', 'soc'] list_processed_text: [['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['dsw'], ['received'], ['alert'], ['summary'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['trojan'], ['device'], ['ip'], ['address'], ['source'], ['traffic'], ['ip'], ['axcl'], ['destination'], ['ip'], ['detail'], ['example'], ['event'], ['shown'], ['please'], ['investigate'], ['activity'], ['remediate'], ['necessary'], ['always'], ['question'], ['concern'], ['please'], ['call'], ['counter'], ['threat'], ['operation'], ['center'], ['opt'], ['discus'], ['submit'], ['response'], ['open'], ['ticket'], ['action'], ['respond'], ['soc']] k: 6110 len: <class 'list'> Data: ['att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'tcp', 'dsw', 'seeing', 'att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'tcp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'aidl', 'port', 'tcp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'internal', 'reconnaissance', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'internal', 'reconnaissance', 'alert', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] processed_text: ['att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'tcp', 'dsw', 'seeing', 'att', 'apac', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'tcp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'aidl', 'port', 'tcp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'internal', 'reconnaissance', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'internal', 'reconnaissance', 'alert', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'soc'] list_processed_text: [['att'], ['apac'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['least'], ['internal'], ['outbreak'], ['tcp'], ['dsw'], ['seeing'], ['att'], ['apac'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['least'], ['internal'], ['outbreak'], ['tcp'], ['alert'], ['within'], ['minute'], ['traffic'], ['blocked'], ['aidl'], ['port'], ['tcp'], ['several'], ['internal'], ['host'], ['indicate'], ['unauthorized'], ['reconnaissance'], ['scanning'], ['misconfiguration'], ['authorized'], ['internal'], ['discovery'], ['blocked'], ['firewall'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['internal'], ['reconnaissance'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['internal'], ['reconnaissance'], ['alert'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['soc']] k: 6111 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6112 len: <class 'list'> Data: ['network', 'outage', 'usa', 'company', 'inc', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'company', 'inc', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['company'], ['inc'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6113 len: <class 'list'> Data: ['email', 'updating', 'email', 'updating'] processed_text: ['email', 'updating', 'email', 'updating'] list_processed_text: [['email'], ['updating'], ['email'], ['updating']] k: 6114 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6115 len: <class 'list'> Data: ['hostname', 'sid', 'volume', 'consumed', 'dev', 'erplv', 'hostname', 'sid', 'volume', 'consumed', 'dev', 'erplv'] processed_text: ['hostname', 'sid', 'volume', 'consumed', 'dev', 'erplv', 'hostname', 'sid', 'volume', 'consumed', 'dev', 'erplv'] list_processed_text: [['hostname'], ['sid'], ['volume'], ['consumed'], ['dev'], ['erplv'], ['hostname'], ['sid'], ['volume'], ['consumed'], ['dev'], ['erplv']] k: 6116 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 6117 len: <class 'list'> Data: ['m', 'outlook', 'accepting', 'password', 'm', 'outlook', 'accepting', 'password'] processed_text: ['m', 'outlook', 'accepting', 'password', 'm', 'outlook', 'accepting', 'password'] list_processed_text: [['m'], ['outlook'], ['accepting'], ['password'], ['m'], ['outlook'], ['accepting'], ['password']] k: 6118 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6119 len: <class 'list'> Data: ['erp', 'password', 'locked', 'hi', 'please', 'unblock', 'erp', 'password', 'userid', 'hegdthy', 'gnasmtvx', 'cwxtsvkm'] processed_text: ['erp', 'password', 'locked', 'hi', 'please', 'unblock', 'erp', 'password', 'userid', 'hegdthy', 'gnasmtvx', 'cwxtsvkm'] list_processed_text: [['erp'], ['password'], ['locked'], ['hi'], ['please'], ['unblock'], ['erp'], ['password'], ['userid'], ['hegdthy'], ['gnasmtvx'], ['cwxtsvkm']] k: 6120 len: <class 'list'> Data: ['access', 'drwgs', 'net', 'weaver', 'name', 'jvpkulxw', 'ovuweygj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'access', 'drwgs', 'net', 'weaver'] processed_text: ['access', 'drwgs', 'net', 'weaver', 'name', 'jvpkulxw', 'ovuweygj', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'access', 'drwgs', 'net', 'weaver'] list_processed_text: [['access'], ['drwgs'], ['net'], ['weaver'], ['name'], ['jvpkulxw'], ['ovuweygj'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['access'], ['drwgs'], ['net'], ['weaver']] k: 6121 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'uacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['uacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 6122 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6123 len: <class 'list'> Data: ['circuit', 'outage', 'germany', 'company', 'werkzeuge', 'hartstoffe', 'secondary', 'vpn', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'germany', 'company', 'werkzeuge', 'hartstoffe', 'secondary', 'vpn', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['germany'], ['company'], ['werkzeuge'], ['hartstoffe'], ['secondary'], ['vpn'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['na'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6124 len: <class 'list'> Data: ['unable', 'sync', 'one', 'note', 'file', 'unable', 'sync', 'one', 'note', 'file'] processed_text: ['unable', 'sync', 'one', 'note', 'file', 'unable', 'sync', 'one', 'note', 'file'] list_processed_text: [['unable'], ['sync'], ['one'], ['note'], ['file'], ['unable'], ['sync'], ['one'], ['note'], ['file']] k: 6125 len: <class 'list'> Data: ['problem', 'weekly', 'report', 'hello', 'transfer', 'weekly', 'report', 'system', 'know', 'problem', 'see', 'atache', 'well', 'need', 'support'] processed_text: ['problem', 'weekly', 'report', 'hello', 'transfer', 'weekly', 'report', 'system', 'know', 'problem', 'see', 'atache', 'well', 'need', 'support'] list_processed_text: [['problem'], ['weekly'], ['report'], ['hello'], ['transfer'], ['weekly'], ['report'], ['system'], ['know'], ['problem'], ['see'], ['atache'], ['well'], ['need'], ['support']] k: 6126 len: <class 'list'> Data: ['collaboration', 'platform', 'assistance', 'hello', 'need', 'assistance', 'updating', 'part', 'collaboration', 'platform', 'page', 'department', 'specifically', 'link', 'page', 'directs', 'document', 'need', 'ensure', 'date', 'version', 'document', 'linked'] processed_text: ['collaboration', 'platform', 'assistance', 'hello', 'need', 'assistance', 'updating', 'part', 'collaboration', 'platform', 'page', 'department', 'specifically', 'link', 'page', 'directs', 'document', 'need', 'ensure', 'date', 'version', 'document', 'linked'] list_processed_text: [['collaboration'], ['platform'], ['assistance'], ['hello'], ['need'], ['assistance'], ['updating'], ['part'], ['collaboration'], ['platform'], ['page'], ['department'], ['specifically'], ['link'], ['page'], ['directs'], ['document'], ['need'], ['ensure'], ['date'], ['version'], ['document'], ['linked']] k: 6127 len: <class 'list'> Data: ['cannot', 'use', 'skype', 'business', 'full', 'audio', 'video', 'respond', 'must', 'closed', 'skype', 'meeting', 'used', 'must', 'entered', 'call', 'join', 'audio', 'use', 'skype', 'business', 'full', 'audio', 'video', 'experience', 'freeze', 'skype', 'take', 'really', 'long', 'time', 'open'] processed_text: ['cannot', 'use', 'skype', 'business', 'full', 'audio', 'video', 'respond', 'must', 'closed', 'skype', 'meeting', 'used', 'must', 'entered', 'call', 'join', 'audio', 'use', 'skype', 'business', 'full', 'audio', 'video', 'experience', 'freeze', 'skype', 'take', 'really', 'long', 'time', 'open'] list_processed_text: [['cannot'], ['use'], ['skype'], ['business'], ['full'], ['audio'], ['video'], ['respond'], ['must'], ['closed'], ['skype'], ['meeting'], ['used'], ['must'], ['entered'], ['call'], ['join'], ['audio'], ['use'], ['skype'], ['business'], ['full'], ['audio'], ['video'], ['experience'], ['freeze'], ['skype'], ['take'], ['really'], ['long'], ['time'], ['open']] k: 6128 len: <class 'list'> Data: ['job', 'hostname', 'failagain', 'emb', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'emb', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'failagain', 'emb', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'emb', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['failagain'], ['emb'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['failagain'], ['emb'], ['failed'], ['job'], ['scheduler']] k: 6129 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'emb', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'emb', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'emb', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'emb', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['emb'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['emb'], ['failed'], ['job'], ['scheduler']] k: 6130 len: <class 'list'> Data: ['connecting', 'vpn', 'connecting', 'vpn'] processed_text: ['connecting', 'vpn', 'connecting', 'vpn'] list_processed_text: [['connecting'], ['vpn'], ['connecting'], ['vpn']] k: 6131 len: <class 'list'> Data: ['unable', 'scan', 'hp', 'one', 'printer', 'unable', 'scan', 'hp', 'one', 'printer'] processed_text: ['unable', 'scan', 'hp', 'one', 'printer', 'unable', 'scan', 'hp', 'one', 'printer'] list_processed_text: [['unable'], ['scan'], ['hp'], ['one'], ['printer'], ['unable'], ['scan'], ['hp'], ['one'], ['printer']] k: 6132 len: <class 'list'> Data: ['unable', 'submit', 'expense', 'report', 'unable', 'submit', 'expense', 'report'] processed_text: ['unable', 'submit', 'expense', 'report', 'unable', 'submit', 'expense', 'report'] list_processed_text: [['unable'], ['submit'], ['expense'], ['report'], ['unable'], ['submit'], ['expense'], ['report']] k: 6133 len: <class 'list'> Data: ['reset', 'password', 'ljpgedia', 'bzqcwsgf', 'erp', 'production', 'erp', 'reset', 'password', 'ljpgedia', 'bzqcwsgf', 'erp', 'production', 'erp'] processed_text: ['reset', 'password', 'ljpgedia', 'bzqcwsgf', 'erp', 'production', 'erp', 'reset', 'password', 'ljpgedia', 'bzqcwsgf', 'erp', 'production', 'erp'] list_processed_text: [['reset'], ['password'], ['ljpgedia'], ['bzqcwsgf'], ['erp'], ['production'], ['erp'], ['reset'], ['password'], ['ljpgedia'], ['bzqcwsgf'], ['erp'], ['production'], ['erp']] k: 6134 len: <class 'list'> Data: ['updating', 'password', 'password', 'management', 'tool', 'updating', 'password', 'password', 'management', 'tool'] processed_text: ['updating', 'password', 'password', 'management', 'tool', 'updating', 'password', 'password', 'management', 'tool'] list_processed_text: [['updating'], ['password'], ['password'], ['management'], ['tool'], ['updating'], ['password'], ['password'], ['management'], ['tool']] k: 6135 len: <class 'list'> Data: ['vpn', 'able', 'log', 'vpn', 'need', 'assistance', 'please'] processed_text: ['vpn', 'able', 'log', 'vpn', 'need', 'assistance', 'please'] list_processed_text: [['vpn'], ['able'], ['log'], ['vpn'], ['need'], ['assistance'], ['please']] k: 6136 len: <class 'list'> Data: ['bex', 'loading', 'environment', 'bex', 'addin', 'showing', 'environment', 'sid', 'sid', 'etc', 'unable', 'add', 'sid', 'installed', 'bex', 'patch', 'bex', 'addin', 'issue', 'happened', 'erp', 'logon', 'also', 'later', 'manually', 'added', 'different', 'environment', 'please', 'check', 'got', 'dierppeared', 'without', 'making', 'change', 'please', 'refer', 'screenshot', 'computer', 'name', 'lhql'] processed_text: ['bex', 'loading', 'environment', 'bex', 'addin', 'showing', 'environment', 'sid', 'sid', 'etc', 'unable', 'add', 'sid', 'installed', 'bex', 'patch', 'bex', 'addin', 'issue', 'happened', 'erp', 'logon', 'also', 'later', 'manually', 'added', 'different', 'environment', 'please', 'check', 'got', 'dierppeared', 'without', 'making', 'change', 'please', 'refer', 'screenshot', 'computer', 'name', 'lhql'] list_processed_text: [['bex'], ['loading'], ['environment'], ['bex'], ['addin'], ['showing'], ['environment'], ['sid'], ['sid'], ['etc'], ['unable'], ['add'], ['sid'], ['installed'], ['bex'], ['patch'], ['bex'], ['addin'], ['issue'], ['happened'], ['erp'], ['logon'], ['also'], ['later'], ['manually'], ['added'], ['different'], ['environment'], ['please'], ['check'], ['got'], ['dierppeared'], ['without'], ['making'], ['change'], ['please'], ['refer'], ['screenshot'], ['computer'], ['name'], ['lhql']] k: 6137 len: <class 'list'> Data: ['ie', 'setting', 'ie', 'setting'] processed_text: ['ie', 'setting', 'ie', 'setting'] list_processed_text: [['ie'], ['setting'], ['ie'], ['setting']] k: 6138 len: <class 'list'> Data: ['unable', 'install', 'draftsight', 'pc', 'unable', 'install', 'draftsight', 'pc'] processed_text: ['unable', 'install', 'draftsight', 'pc', 'unable', 'install', 'draftsight', 'pc'] list_processed_text: [['unable'], ['install'], ['draftsight'], ['pc'], ['unable'], ['install'], ['draftsight'], ['pc']] k: 6139 len: <class 'list'> Data: ['unable', 'connect', 'skype', 'unable', 'connect', 'skype'] processed_text: ['unable', 'connect', 'skype', 'unable', 'connect', 'skype'] list_processed_text: [['unable'], ['connect'], ['skype'], ['unable'], ['connect'], ['skype']] k: 6140 len: <class 'list'> Data: ['remove', 'ukxtqfda', 'qvtaykbg', 'telephony', 'software', 'workgroups', 'company', 'directory', 'employee', 'took', 'vsp', 'therefore', 'remove', 'ukxtqfda', 'qvtaykbg', 'telephony', 'software', 'workgroups', 'company', 'directory'] processed_text: ['remove', 'ukxtqfda', 'qvtaykbg', 'telephony', 'software', 'workgroups', 'company', 'directory', 'employee', 'took', 'vsp', 'therefore', 'remove', 'ukxtqfda', 'qvtaykbg', 'telephony', 'software', 'workgroups', 'company', 'directory'] list_processed_text: [['remove'], ['ukxtqfda'], ['qvtaykbg'], ['telephony'], ['software'], ['workgroups'], ['company'], ['directory'], ['employee'], ['took'], ['vsp'], ['therefore'], ['remove'], ['ukxtqfda'], ['qvtaykbg'], ['telephony'], ['software'], ['workgroups'], ['company'], ['directory']] k: 6141 len: <class 'list'> Data: ['weekly', 'report', 'error', 'message', 'hello', 'please', 'solve', 'following', 'problem', 'active', 'vpn', 'connection', 'weekly', 'report', 'cannot', 'uploaded', 'sincerely'] processed_text: ['weekly', 'report', 'error', 'message', 'hello', 'please', 'solve', 'following', 'problem', 'active', 'vpn', 'connection', 'weekly', 'report', 'cannot', 'uploaded', 'sincerely'] list_processed_text: [['weekly'], ['report'], ['error'], ['message'], ['hello'], ['please'], ['solve'], ['following'], ['problem'], ['active'], ['vpn'], ['connection'], ['weekly'], ['report'], ['cannot'], ['uploaded'], ['sincerely']] k: 6142 len: <class 'list'> Data: ['outlook', 'opening', 'outlook', 'opening'] processed_text: ['outlook', 'opening', 'outlook', 'opening'] list_processed_text: [['outlook'], ['opening'], ['outlook'], ['opening']] k: 6143 len: <class 'list'> Data: ['erp', 'password', 'reset', 'urgent', 'account', 'got', 'locked', 'erp', 'password', 'reset', 'account', 'got', 'locked'] processed_text: ['erp', 'password', 'reset', 'urgent', 'account', 'got', 'locked', 'erp', 'password', 'reset', 'account', 'got', 'locked'] list_processed_text: [['erp'], ['password'], ['reset'], ['urgent'], ['account'], ['got'], ['locked'], ['erp'], ['password'], ['reset'], ['account'], ['got'], ['locked']] k: 6144 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 6145 len: <class 'list'> Data: ['two', 'analog', 'line', 'working', 'new', 'phone', 'system', 'support', 'adt', 'tyco', 'notification', 'system', 'need', 'two', 'analog', 'line', 'turned', 'back', 'immediately', 'emergency', 'notification', 'system', 'right'] processed_text: ['two', 'analog', 'line', 'working', 'new', 'phone', 'system', 'support', 'adt', 'tyco', 'notification', 'system', 'need', 'two', 'analog', 'line', 'turned', 'back', 'immediately', 'emergency', 'notification', 'system', 'right'] list_processed_text: [['two'], ['analog'], ['line'], ['working'], ['new'], ['phone'], ['system'], ['support'], ['adt'], ['tyco'], ['notification'], ['system'], ['need'], ['two'], ['analog'], ['line'], ['turned'], ['back'], ['immediately'], ['emergency'], ['notification'], ['system'], ['right']] k: 6146 len: <class 'list'> Data: ['password', 'expired', 'password', 'expired'] processed_text: ['password', 'expired', 'password', 'expired'] list_processed_text: [['password'], ['expired'], ['password'], ['expired']] k: 6147 len: <class 'list'> Data: ['agent', 'receiving', 'revenue', 'agent', 'receiving', 'correct', 'amount', 'revenue', 'please', 'look', 'procedure', 'assigning', 'revenue', 'based', 'direct', 'po', 'rule'] processed_text: ['agent', 'receiving', 'revenue', 'agent', 'receiving', 'correct', 'amount', 'revenue', 'please', 'look', 'procedure', 'assigning', 'revenue', 'based', 'direct', 'po', 'rule'] list_processed_text: [['agent'], ['receiving'], ['revenue'], ['agent'], ['receiving'], ['correct'], ['amount'], ['revenue'], ['please'], ['look'], ['procedure'], ['assigning'], ['revenue'], ['based'], ['direct'], ['po'], ['rule']] k: 6148 len: <class 'list'> Data: ['usa', 'order', 'showing', 'u', 'plant', 'list', 'location', 'work', 'center', 'defined', 'erp', 'causing', 'order', 'location', 'appear', 'list', 'change', 'query', 'check', 'plant', 'work', 'center'] processed_text: ['usa', 'order', 'showing', 'u', 'plant', 'list', 'location', 'work', 'center', 'defined', 'erp', 'causing', 'order', 'location', 'appear', 'list', 'change', 'query', 'check', 'plant', 'work', 'center'] list_processed_text: [['usa'], ['order'], ['showing'], ['u'], ['plant'], ['list'], ['location'], ['work'], ['center'], ['defined'], ['erp'], ['causing'], ['order'], ['location'], ['appear'], ['list'], ['change'], ['query'], ['check'], ['plant'], ['work'], ['center']] k: 6149 len: <class 'list'> Data: ['erp', 'issue', 'cannot', 'create', 'delivery', 'also', 'erp', 'really', 'slow', 'hard', 'even', 'get', 'order', 'huge', 'priority', 'shipment', 'suffer'] processed_text: ['erp', 'issue', 'cannot', 'create', 'delivery', 'also', 'erp', 'really', 'slow', 'hard', 'even', 'get', 'order', 'huge', 'priority', 'shipment', 'suffer'] list_processed_text: [['erp'], ['issue'], ['cannot'], ['create'], ['delivery'], ['also'], ['erp'], ['really'], ['slow'], ['hard'], ['even'], ['get'], ['order'], ['huge'], ['priority'], ['shipment'], ['suffer']] k: 6150 len: <class 'list'> Data: ['engineering', 'tool', 'error', 'engineering', 'tool', 'error'] processed_text: ['engineering', 'tool', 'error', 'engineering', 'tool', 'error'] list_processed_text: [['engineering'], ['tool'], ['error'], ['engineering'], ['tool'], ['error']] k: 6151 len: <class 'list'> Data: ['reset', 'es', 'password', 'reset', 'es', 'password'] processed_text: ['reset', 'es', 'password', 'reset', 'es', 'password'] list_processed_text: [['reset'], ['es'], ['password'], ['reset'], ['es'], ['password']] k: 6152 len: <class 'list'> Data: ['able', 'pgi', 'delivery', 'error', 'co', 'account', 'assignment', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'item', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk'] processed_text: ['able', 'pgi', 'delivery', 'error', 'co', 'account', 'assignment', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'itens', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk', 'delivery', 'customer', 'item', 'co', 'account', 'assignment', 'different', 'profit', 'center', 'message', 'bk'] list_processed_text: [['able'], ['pgi'], ['delivery'], ['error'], ['co'], ['account'], ['assignment'], ['delivery'], ['customer'], ['itens'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['message'], ['bk'], ['delivery'], ['customer'], ['itens'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['message'], ['bk'], ['delivery'], ['customer'], ['itens'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['message'], ['bk'], ['delivery'], ['customer'], ['item'], ['co'], ['account'], ['assignment'], ['different'], ['profit'], ['center'], ['message'], ['bk']] k: 6153 len: <class 'list'> Data: ['unable', 'check', 'email', 'sync', 'account', 'setting', 'outdated', 'unable', 'remove', 'add', 'repair', 'email', 'account', 'window', 'phone', 'trying', 'repair', 'account', 'showing', 'repair', 'possible', 'even', 'letting', 'user', 'remove', 'add', 'account', 'unable', 'check', 'email', 'sync', 'account', 'setting', 'outdated'] processed_text: ['unable', 'check', 'email', 'sync', 'account', 'setting', 'outdated', 'unable', 'remove', 'add', 'repair', 'email', 'account', 'window', 'phone', 'trying', 'repair', 'account', 'showing', 'repair', 'possible', 'even', 'letting', 'user', 'remove', 'add', 'account', 'unable', 'check', 'email', 'sync', 'account', 'setting', 'outdated'] list_processed_text: [['unable'], ['check'], ['email'], ['sync'], ['account'], ['setting'], ['outdated'], ['unable'], ['remove'], ['add'], ['repair'], ['email'], ['account'], ['window'], ['phone'], ['trying'], ['repair'], ['account'], ['showing'], ['repair'], ['possible'], ['even'], ['letting'], ['user'], ['remove'], ['add'], ['account'], ['unable'], ['check'], ['email'], ['sync'], ['account'], ['setting'], ['outdated']] k: 6154 len: <class 'list'> Data: ['query', 'attendance', 'tool', 'account', 'query', 'attendance', 'tool', 'account'] processed_text: ['query', 'attendance', 'tool', 'account', 'query', 'attendance', 'tool', 'account'] list_processed_text: [['query'], ['attendance'], ['tool'], ['account'], ['query'], ['attendance'], ['tool'], ['account']] k: 6155 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6156 len: <class 'list'> Data: ['erp', 'delivery', 'issue', 'hello', 'issue', 'forcing', 'delivery', 'erp'] processed_text: ['erp', 'delivery', 'issue', 'hello', 'issue', 'forcing', 'delivery', 'erp'] list_processed_text: [['erp'], ['delivery'], ['issue'], ['hello'], ['issue'], ['forcing'], ['delivery'], ['erp']] k: 6157 len: <class 'list'> Data: ['nicrhty', 'wanted', 'set', 'ooo', 'ofwxjriq', 'rwcxkflq', 'mailbox', 'nicrhty', 'wanted', 'set', 'ooo', 'ofwxjriq', 'rwcxkflq', 'mailbox'] processed_text: ['nicrhty', 'wanted', 'set', 'ooo', 'ofwxjriq', 'rwcxkflq', 'mailbox', 'nicrhty', 'wanted', 'set', 'ooo', 'ofwxjriq', 'rwcxkflq', 'mailbox'] list_processed_text: [['nicrhty'], ['wanted'], ['set'], ['ooo'], ['ofwxjriq'], ['rwcxkflq'], ['mailbox'], ['nicrhty'], ['wanted'], ['set'], ['ooo'], ['ofwxjriq'], ['rwcxkflq'], ['mailbox']] k: 6158 len: <class 'list'> Data: ['require', 'crm', 'access', 'android', 'phone', 'hi', 'would', 'like', 'use', 'crm', 'android', 'mobile', 'phone', 'kindly', 'let', 'know', 'procedure', 'best'] processed_text: ['require', 'crm', 'access', 'android', 'phone', 'hi', 'would', 'like', 'use', 'crm', 'android', 'mobile', 'phone', 'kindly', 'let', 'know', 'procedure', 'best'] list_processed_text: [['require'], ['crm'], ['access'], ['android'], ['phone'], ['hi'], ['would'], ['like'], ['use'], ['crm'], ['android'], ['mobile'], ['phone'], ['kindly'], ['let'], ['know'], ['procedure'], ['best']] k: 6159 len: <class 'list'> Data: ['azubi', 'locked', 'azubi', 'locked'] processed_text: ['azubi', 'locked', 'azubi', 'locked'] list_processed_text: [['azubi'], ['locked'], ['azubi'], ['locked']] k: 6160 len: <class 'list'> Data: ['ng', 'azubi', 'locked', 'ng', 'azubi', 'locked'] processed_text: ['ng', 'azubi', 'locked', 'ng', 'azubi', 'locked'] list_processed_text: [['ng'], ['azubi'], ['locked'], ['ng'], ['azubi'], ['locked']] k: 6161 len: <class 'list'> Data: ['final', 'quota', 'warning', 'hello', 'please', 'help', 'trailing', 'email', 'mailbox', 'full', 'warning'] processed_text: ['final', 'quota', 'warning', 'hello', 'please', 'help', 'trailing', 'email', 'mailbox', 'full', 'warning'] list_processed_text: [['final'], ['quota'], ['warning'], ['hello'], ['please'], ['help'], ['trailing'], ['email'], ['mailbox'], ['full'], ['warning']] k: 6162 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 6163 len: <class 'list'> Data: ['mobile', 'device', 'support', 'hello', 'issue', 'incoming', 'outgoing', 'call', 'company', 'mobile', 'device', 'unable', 'access', 'global', 'support', 'center', 'hub', 'likely', 'need', 'new', 'device', 'issue', 'impact', 'related', 'contact', 'vendor', 'mobile', 'directly'] processed_text: ['mobile', 'device', 'support', 'hello', 'issue', 'incoming', 'outgoing', 'call', 'company', 'mobile', 'device', 'unable', 'access', 'global', 'support', 'center', 'hub', 'likely', 'need', 'new', 'device', 'issue', 'impact', 'related', 'contact', 'vendor', 'mobile', 'directly'] list_processed_text: [['mobile'], ['device'], ['support'], ['hello'], ['issue'], ['incoming'], ['outgoing'], ['call'], ['company'], ['mobile'], ['device'], ['unable'], ['access'], ['global'], ['support'], ['center'], ['hub'], ['likely'], ['need'], ['new'], ['device'], ['issue'], ['impact'], ['related'], ['contact'], ['vendor'], ['mobile'], ['directly']] k: 6164 len: <class 'list'> Data: ['support', 'r', 'umbau', 'ewew', 'xwirzvda', 'okhyipgr', 'support', 'r', 'umbau', 'ewew', 'xwirzvda', 'okhyipgr'] processed_text: ['support', 'r', 'umbau', 'ewew', 'xwirzvda', 'okhyipgr', 'support', 'r', 'umbau', 'ewew', 'xwirzvda', 'okhyipgr'] list_processed_text: [['support'], ['r'], ['umbau'], ['ewew'], ['xwirzvda'], ['okhyipgr'], ['support'], ['r'], ['umbau'], ['ewew'], ['xwirzvda'], ['okhyipgr']] k: 6165 len: <class 'list'> Data: ['password', 'expired', 'password', 'expired'] processed_text: ['password', 'expired', 'password', 'expired'] list_processed_text: [['password'], ['expired'], ['password'], ['expired']] k: 6166 len: <class 'list'> Data: ['close', 'line', 'item', 'order', 'hi', 'please', 'close', 'line', 'item', 'order', 'number', 'already', 'delivered', 'remains', 'open', 'md'] processed_text: ['close', 'line', 'item', 'order', 'hi', 'please', 'close', 'line', 'item', 'order', 'number', 'already', 'delivered', 'remains', 'open', 'md'] list_processed_text: [['close'], ['line'], ['item'], ['order'], ['hi'], ['please'], ['close'], ['line'], ['item'], ['order'], ['number'], ['already'], ['delivered'], ['remains'], ['open'], ['md']] k: 6167 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6168 len: <class 'list'> Data: ['unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'change', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 6169 len: <class 'list'> Data: ['help', 'engineering', 'tool', 'engineering', 'tool', 'dear', 'sir', 'please', 'help', 'download', 'software', 'engineering', 'tool', 'engineering', 'tool', 'laptop', 'detail', 'dealer', 'company', 'india', 'ltd', 'dist', 'name', 'ramdntya', 'enterprise', 'aurangabad', 'maharashtra', 'dist', 'code'] processed_text: ['help', 'engineering', 'tool', 'engineering', 'tool', 'dear', 'sir', 'please', 'help', 'download', 'software', 'engineering', 'tool', 'engineering', 'tool', 'laptop', 'detail', 'dealer', 'company', 'india', 'ltd', 'dist', 'name', 'ramdntya', 'enterprise', 'aurangabad', 'maharashtra', 'dist', 'code'] list_processed_text: [['help'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['dear'], ['sir'], ['please'], ['help'], ['download'], ['software'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['laptop'], ['detail'], ['dealer'], ['company'], ['india'], ['ltd'], ['dist'], ['name'], ['ramdntya'], ['enterprise'], ['aurangabad'], ['maharashtra'], ['dist'], ['code']] k: 6170 len: <class 'list'> Data: ['account', 'getting', 'locked', 'frequently', 'account', 'getting', 'locked', 'frequently', 'user', 'changed', 'password', 'today'] processed_text: ['account', 'getting', 'locked', 'frequently', 'account', 'getting', 'locked', 'frequently', 'user', 'changed', 'password', 'today'] list_processed_text: [['account'], ['getting'], ['locked'], ['frequently'], ['account'], ['getting'], ['locked'], ['frequently'], ['user'], ['changed'], ['password'], ['today']] k: 6171 len: <class 'list'> Data: ['wrong', 'commited', 'date', 'order', 'quote', 'team', 'since', 'yesterday', 'noticed', 'commited', 'date', 'order', 'confirmation', 'wrong', 'day', 'tool', 'available', 'germany', 'transit', 'plus', 'day', 'customer', 'pick', 'matheywter', 'fact', 'date', 'long', 'future', 'g', 'order', 'opened', 'today', 'available', 'plant', 'give', 'committed', 'date', 'mm', 'confirmed', 'november'] processed_text: ['wrong', 'commited', 'date', 'order', 'quote', 'team', 'since', 'yesterday', 'noticed', 'commited', 'date', 'order', 'confirmation', 'wrong', 'day', 'tool', 'available', 'germany', 'transit', 'plus', 'day', 'customer', 'pick', 'matheywter', 'fact', 'date', 'long', 'future', 'g', 'order', 'opened', 'today', 'available', 'plant', 'give', 'committed', 'date', 'mm', 'confirmed', 'november'] list_processed_text: [['wrong'], ['commited'], ['date'], ['order'], ['quote'], ['team'], ['since'], ['yesterday'], ['noticed'], ['commited'], ['date'], ['order'], ['confirmation'], ['wrong'], ['day'], ['tool'], ['available'], ['germany'], ['transit'], ['plus'], ['day'], ['customer'], ['pick'], ['matheywter'], ['fact'], ['date'], ['long'], ['future'], ['g'], ['order'], ['opened'], ['today'], ['available'], ['plant'], ['give'], ['committed'], ['date'], ['mm'], ['confirmed'], ['november']] k: 6172 len: <class 'list'> Data: ['erp', 'trying', 'access', 'point', 'sale', 'data', 'bex', 'tell', 'authorized', 'please', 'authorize', 'give', 'access', 'cube', 'attached', 'file', 'opening', 'connect', 'bex', 'give', 'following', 'message'] processed_text: ['erp', 'trying', 'access', 'point', 'sale', 'data', 'bex', 'tell', 'authorized', 'please', 'authorize', 'give', 'access', 'cube', 'attached', 'file', 'opening', 'connect', 'bex', 'give', 'following', 'message'] list_processed_text: [['erp'], ['trying'], ['access'], ['point'], ['sale'], ['data'], ['bex'], ['tell'], ['authorized'], ['please'], ['authorize'], ['give'], ['access'], ['cube'], ['attached'], ['file'], ['opening'], ['connect'], ['bex'], ['give'], ['following'], ['message']] k: 6173 len: <class 'list'> Data: ['laptop', 'charge', 'network', 'cable', 'working', 'dock', 'laptop', 'charge', 'network', 'cable', 'working', 'dock'] processed_text: ['laptop', 'charge', 'network', 'cable', 'working', 'dock', 'laptop', 'charge', 'network', 'cable', 'working', 'dock'] list_processed_text: [['laptop'], ['charge'], ['network'], ['cable'], ['working'], ['dock'], ['laptop'], ['charge'], ['network'], ['cable'], ['working'], ['dock']] k: 6174 len: <class 'list'> Data: ['wrong', 'n', 'plm', 'hello', 'drawing', 'saved', 'wrong', 'plm', 'number', 'please', 'delete', 'n', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['wrong', 'n', 'plm', 'hello', 'drawing', 'saved', 'wrong', 'plm', 'number', 'please', 'delete', 'n', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['wrong'], ['n'], ['plm'], ['hello'], ['drawing'], ['saved'], ['wrong'], ['plm'], ['number'], ['please'], ['delete'], ['n'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 6175 len: <class 'list'> Data: ['requesting', 'dock', 'station', 'add', 'monitor', 'hi', 'team', 'requesting', 'dock', 'station', 'add', 'monitor', 'preferably', 'bigger', 'size', 'please', 'consider', 'request', 'assist', 'beneficial', 'auditing', 'inwarehouse', 'tool', 'average', 'sized', 'font', 'could', 'view', 'bigger', 'screen', 'clearly', 'help', 'various', 'work', 'related', 'activity', 'like', 'inwarehouse', 'tool', 'comparison', 'much', 'effective', 'way', 'add', 'monitor', 'also', 'help', 'email', 'activity', 'last', 'least', 'carry', 'laptop', 'charger', 'office', 'everyday', 'make', 'laptop', 'big', 'bit', 'lighter'] processed_text: ['requesting', 'dock', 'station', 'add', 'monitor', 'hi', 'team', 'requesting', 'dock', 'station', 'add', 'monitor', 'preferably', 'bigger', 'size', 'please', 'consider', 'request', 'assist', 'beneficial', 'auditing', 'inwarehouse', 'tool', 'average', 'sized', 'font', 'could', 'view', 'bigger', 'screen', 'clearly', 'help', 'various', 'work', 'related', 'activity', 'like', 'inwarehouse', 'tool', 'comparison', 'much', 'effective', 'way', 'add', 'monitor', 'also', 'help', 'email', 'activity', 'last', 'least', 'carry', 'laptop', 'charger', 'office', 'everyday', 'make', 'laptop', 'big', 'bit', 'lighter'] list_processed_text: [['requesting'], ['dock'], ['station'], ['add'], ['monitor'], ['hi'], ['team'], ['requesting'], ['dock'], ['station'], ['add'], ['monitor'], ['preferably'], ['bigger'], ['size'], ['please'], ['consider'], ['request'], ['assist'], ['beneficial'], ['auditing'], ['inwarehouse'], ['tool'], ['average'], ['sized'], ['font'], ['could'], ['view'], ['bigger'], ['screen'], ['clearly'], ['help'], ['various'], ['work'], ['related'], ['activity'], ['like'], ['inwarehouse'], ['tool'], ['comparison'], ['much'], ['effective'], ['way'], ['add'], ['monitor'], ['also'], ['help'], ['email'], ['activity'], ['last'], ['least'], ['carry'], ['laptop'], ['charger'], ['office'], ['everyday'], ['make'], ['laptop'], ['big'], ['bit'], ['lighter']] k: 6176 len: <class 'list'> Data: ['support', 'r', 'umbau', 'ewew', 'lpfzasmv', 'cleoprzq', 'support', 'r', 'umbau', 'ewew', 'lpfzasmv', 'cleoprzq'] processed_text: ['support', 'r', 'umbau', 'ewew', 'lpfzasmv', 'cleoprzq', 'support', 'r', 'umbau', 'ewew', 'lpfzasmv', 'cleoprzq'] list_processed_text: [['support'], ['r'], ['umbau'], ['ewew'], ['lpfzasmv'], ['cleoprzq'], ['support'], ['r'], ['umbau'], ['ewew'], ['lpfzasmv'], ['cleoprzq']] k: 6177 len: <class 'list'> Data: ['problem', 'computer', 'ewewx', 'howfanzi', 'siavgtby', 'problem', 'computer', 'ewewx', 'howfanzi', 'siavgtby'] processed_text: ['problem', 'computer', 'ewewx', 'howfanzi', 'siavgtby', 'problem', 'computer', 'ewewx', 'howfanzi', 'siavgtby'] list_processed_text: [['problem'], ['computer'], ['ewewx'], ['howfanzi'], ['siavgtby'], ['problem'], ['computer'], ['ewewx'], ['howfanzi'], ['siavgtby']] k: 6178 len: <class 'list'> Data: ['probleme', 'mit', 'infostand', 'ewew', 'probleme', 'mit', 'infostand', 'ewew'] processed_text: ['probleme', 'mit', 'infostand', 'ewew', 'probleme', 'mit', 'infostand', 'ewew'] list_processed_text: [['probleme'], ['mit'], ['infostand'], ['ewew'], ['probleme'], ['mit'], ['infostand'], ['ewew']] k: 6179 len: <class 'list'> Data: ['support', 'r', 'st', 'hrmann', 'xosdfhbu', 'gtbfkisl', 'support', 'r', 'st', 'hrmann', 'xosdfhbu', 'gtbfkisl'] processed_text: ['support', 'r', 'st', 'hrmann', 'xosdfhbu', 'gtbfkisl', 'support', 'r', 'st', 'hrmann', 'xosdfhbu', 'gtbfkisl'] list_processed_text: [['support'], ['r'], ['st'], ['hrmann'], ['xosdfhbu'], ['gtbfkisl'], ['support'], ['r'], ['st'], ['hrmann'], ['xosdfhbu'], ['gtbfkisl']] k: 6180 len: <class 'list'> Data: ['authorisation', 'folder', 'drive', 'qa', 'folder', 'hello', 'pl', 'assign', 'read', 'write', 'authorisation', 'guru', 'prasath', 'user', 'id', 'prarttsagj', 'folder', 'qa', 'iso', 'iso', 'sid', 'warm'] processed_text: ['authorisation', 'folder', 'drive', 'qa', 'folder', 'hello', 'pl', 'assign', 'read', 'write', 'authorisation', 'guru', 'prasath', 'user', 'id', 'prarttsagj', 'folder', 'qa', 'iso', 'iso', 'sid', 'warm'] list_processed_text: [['authorisation'], ['folder'], ['drive'], ['qa'], ['folder'], ['hello'], ['pl'], ['assign'], ['read'], ['write'], ['authorisation'], ['guru'], ['prasath'], ['user'], ['id'], ['prarttsagj'], ['folder'], ['qa'], ['iso'], ['iso'], ['sid'], ['warm']] k: 6181 len: <class 'list'> Data: ['problem', 'erp', 'logon', 'sincerely,', 'best'] processed_text: ['problem', 'erp', 'logon', 'sincerely,', 'best'] list_processed_text: [['problem'], ['erp'], ['logon'], ['sincerely,'], ['best']] k: 6182 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6183 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6184 len: <class 'list'> Data: ['pls', 'install', 'm', 'outlook', 'pc', 'trainee', 'yqwuhzkv', 'icvgkxnt', 'pls', 'install', 'm', 'outlook', 'pc', 'trainee', 'yqwuhzkv', 'icvgkxnt', 'pls', 'assign', 'qbnsrzlv', 'gyqxkbae'] processed_text: ['pls', 'install', 'm', 'outlook', 'pc', 'trainee', 'yqwuhzkv', 'icvgkxnt', 'pls', 'install', 'm', 'outlook', 'pc', 'trainee', 'yqwuhzkv', 'icvgkxnt', 'pls', 'assign', 'qbnsrzlv', 'gyqxkbae'] list_processed_text: [['pls'], ['install'], ['m'], ['outlook'], ['pc'], ['trainee'], ['yqwuhzkv'], ['icvgkxnt'], ['pls'], ['install'], ['m'], ['outlook'], ['pc'], ['trainee'], ['yqwuhzkv'], ['icvgkxnt'], ['pls'], ['assign'], ['qbnsrzlv'], ['gyqxkbae']] k: 6185 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6186 len: <class 'list'> Data: ['window', 'activation', 'message', 'hello', 'team', 'supposed', 'issue'] processed_text: ['window', 'activation', 'message', 'hello', 'team', 'supposed', 'issue'] list_processed_text: [['window'], ['activation'], ['message'], ['hello'], ['team'], ['supposed'], ['issue']] k: 6187 len: <class 'list'> Data: ['password', 'unlock', 'erp', 'sid', 'despite', 'using', 'password', 'management', 'tool', 'password', 'manager', 'unlocking', 'work', 'could', 'log', 'erp', 'sid', 'password', 'management', 'tool', 'unlocking', 'used', 'call', 'ckseting', 'pw', 'daypay', 'access', 'sid', 'equal', 'use', 'password', 'management', 'tool', 'adjust', 'pw', 'new', 'pw', 'phone', 'call', 'log', 'erp', 'tried', 'work', "i'm", 'sorry', 'people', "can't", 'spend', 'whole', 'day', 'thinking', 'new', 'password', 'finally', 'brings', 'password', 'management', 'tool', 'erp', 'pw', 'run', 'company', 'becomes', 'efficient', 'r', 'current', 'case', 'ask', 'reset', 'password', 'daypay', 'continue', 'working', 'kind', 'grugermany', 'best'] processed_text: ['password', 'unlock', 'erp', 'sid', 'despite', 'using', 'password', 'management', 'tool', 'password', 'manager', 'unlocking', 'work', 'could', 'log', 'erp', 'sid', 'password', 'management', 'tool', 'unlocking', 'used', 'call', 'ckseting', 'pw', 'daypay', 'access', 'sid', 'equal', 'use', 'password', 'management', 'tool', 'adjust', 'pw', 'new', 'pw', 'phone', 'call', 'log', 'erp', 'tried', 'work', "i'm", 'sorry', 'people', "can't", 'spend', 'whole', 'day', 'thinking', 'new', 'password', 'finally', 'brings', 'password', 'management', 'tool', 'erp', 'pw', 'run', 'company', 'becomes', 'efficient', 'r', 'current', 'case', 'ask', 'reset', 'password', 'daypay', 'continue', 'working', 'kind', 'grugermany', 'best'] list_processed_text: [['password'], ['unlock'], ['erp'], ['sid'], ['despite'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unlocking'], ['work'], ['could'], ['log'], ['erp'], ['sid'], ['password'], ['management'], ['tool'], ['unlocking'], ['used'], ['call'], ['ckseting'], ['pw'], ['daypay'], ['access'], ['sid'], ['equal'], ['use'], ['password'], ['management'], ['tool'], ['adjust'], ['pw'], ['new'], ['pw'], ['phone'], ['call'], ['log'], ['erp'], ['tried'], ['work'], ["i'm"], ['sorry'], ['people'], ["can't"], ['spend'], ['whole'], ['day'], ['thinking'], ['new'], ['password'], ['finally'], ['brings'], ['password'], ['management'], ['tool'], ['erp'], ['pw'], ['run'], ['company'], ['becomes'], ['efficient'], ['r'], ['current'], ['case'], ['ask'], ['reset'], ['password'], ['daypay'], ['continue'], ['working'], ['kind'], ['grugermany'], ['best']] k: 6188 len: <class 'list'> Data: ['vvdortddp', 'hi', 'please', 'reset', 'password', 'mr', 'pradtheyp', 'share', 'new', 'password', 'manager', 'mr', 'navbrtheen', 'gogtr', 'emp', 'name', 'useid', 'manager', 'yaxmwdth', 'xsfgitmq', 'vvdortddp', 'navbrtheen', 'gogtr'] processed_text: ['vvdortddp', 'hi', 'please', 'reset', 'password', 'mr', 'pradtheyp', 'share', 'new', 'password', 'manager', 'mr', 'navbrtheen', 'gogtr', 'emp', 'name', 'useid', 'manager', 'yaxmwdth', 'xsfgitmq', 'vvdortddp', 'navbrtheen', 'gogtr'] list_processed_text: [['vvdortddp'], ['hi'], ['please'], ['reset'], ['password'], ['mr'], ['pradtheyp'], ['share'], ['new'], ['password'], ['manager'], ['mr'], ['navbrtheen'], ['gogtr'], ['emp'], ['name'], ['useid'], ['manager'], ['yaxmwdth'], ['xsfgitmq'], ['vvdortddp'], ['navbrtheen'], ['gogtr']] k: 6189 len: <class 'list'> Data: ['acces', 'network', 'pc', 'ewewx', 'departement', 'qa', 'acces', 'network', 'pc', 'departement', 'qa', 'tha', 'access', 'urgent', 'necessary', 'hardness', 'measuring', 'software', 'yevirgnl', 'ylhogjct', 'ughzilfm', 'cfibdamq', 'responsible', 'person'] processed_text: ['acces', 'network', 'pc', 'ewewx', 'departement', 'qa', 'acces', 'network', 'pc', 'departement', 'qa', 'tha', 'access', 'urgent', 'necessary', 'hardness', 'measuring', 'software', 'yevirgnl', 'ylhogjct', 'ughzilfm', 'cfibdamq', 'responsible', 'person'] list_processed_text: [['acces'], ['network'], ['pc'], ['ewewx'], ['departement'], ['qa'], ['acces'], ['network'], ['pc'], ['departement'], ['qa'], ['tha'], ['access'], ['urgent'], ['necessary'], ['hardness'], ['measuring'], ['software'], ['yevirgnl'], ['ylhogjct'], ['ughzilfm'], ['cfibdamq'], ['responsible'], ['person']] k: 6190 len: <class 'list'> Data: ['hostname', 'kt', 'transition', 'application', 'portal', 'pi', 'java', 'web', 'pi', 'training', 'full', 'access', 'guprgttas', 'hostname', 'kt', 'transition', 'application', 'portal', 'pi', 'java', 'web', 'pi', 'training', 'full', 'access', 'guprgttas'] processed_text: ['hostname', 'kt', 'transition', 'application', 'portal', 'pi', 'java', 'web', 'pi', 'training', 'full', 'access', 'guprgttas', 'hostname', 'kt', 'transition', 'application', 'portal', 'pi', 'java', 'web', 'pi', 'training', 'full', 'access', 'guprgttas'] list_processed_text: [['hostname'], ['kt'], ['transition'], ['application'], ['portal'], ['pi'], ['java'], ['web'], ['pi'], ['training'], ['full'], ['access'], ['guprgttas'], ['hostname'], ['kt'], ['transition'], ['application'], ['portal'], ['pi'], ['java'], ['web'], ['pi'], ['training'], ['full'], ['access'], ['guprgttas']] k: 6191 len: <class 'list'> Data: ['manually', 'constructed', 'new', 'number', 'mm', 'mm', 'want', 'extend', 'material', 'maste', 'manually', 'constructed', 'new', 'number', 'mm', 'mm', 'want', 'extend', 'rqfhiong', 'zkwfqagb', 'system', 'find', 'iso', 'ansi', 'code', 'use', 'code', 'manually', 'night', 'rage', 'come', 'message', 'ansi', 'catalog', 'grade', 'already', 'used', 'material', 'please', 'check', 'attachment'] processed_text: ['manually', 'constructed', 'new', 'number', 'mm', 'mm', 'want', 'extend', 'material', 'maste', 'manually', 'constructed', 'new', 'number', 'mm', 'mm', 'want', 'extend', 'rqfhiong', 'zkwfqagb', 'system', 'find', 'iso', 'ansi', 'code', 'use', 'code', 'manually', 'night', 'rage', 'come', 'message', 'ansi', 'catalog', 'grade', 'already', 'used', 'material', 'please', 'check', 'attachment'] list_processed_text: [['manually'], ['constructed'], ['new'], ['number'], ['mm'], ['mm'], ['want'], ['extend'], ['material'], ['maste'], ['manually'], ['constructed'], ['new'], ['number'], ['mm'], ['mm'], ['want'], ['extend'], ['rqfhiong'], ['zkwfqagb'], ['system'], ['find'], ['iso'], ['ansi'], ['code'], ['use'], ['code'], ['manually'], ['night'], ['rage'], ['come'], ['message'], ['ansi'], ['catalog'], ['grade'], ['already'], ['used'], ['material'], ['please'], ['check'], ['attachment']] k: 6192 len: <class 'list'> Data: ['listing', 'folder', 'access', 'dear', 'sir', 'madam,', 'share', 'owner', 'drive', 'department', 'work', 'council', 'germany', 'need', 'overview', 'access', 'folder,', 'please', 'send', 'list', 'immediately', 'kg', 'altweiherstra', 'company', 'produktions', 'gmbh', 'co', 'kg', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'approval', 'message', 'people', 'intended', 'recipient', 'strictly', 'forbidden.', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'followin', 'g', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['listing', 'folder', 'access', 'dear', 'sir', 'madam,', 'share', 'owner', 'drive', 'department', 'work', 'council', 'germany', 'need', 'overview', 'access', 'folder,', 'please', 'send', 'list', 'immediately', 'kg', 'altweiherstra', 'company', 'produktions', 'gmbh', 'co', 'kg', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'approval', 'message', 'people', 'intended', 'recipient', 'strictly', 'forbidden.', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'followin', 'g', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['listing'], ['folder'], ['access'], ['dear'], ['sir'], ['madam,'], ['share'], ['owner'], ['drive'], ['department'], ['work'], ['council'], ['germany'], ['need'], ['overview'], ['access'], ['folder,'], ['please'], ['send'], ['list'], ['immediately'], ['kg'], ['altweiherstra'], ['company'], ['produktions'], ['gmbh'], ['co'], ['kg'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['excluded'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['approval'], ['message'], ['people'], ['intended'], ['recipient'], ['strictly'], ['forbidden.'], ['received'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['followin'], ['g'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 6193 len: <class 'list'> Data: ['stamping', 'timing', 'eu', 'tool', 'working', 'pulvermetalogy', 'ee', 'staeberoth', 'fertigung', 'ee', 'sk', 'hartbearbeitung', 'ee', 'user', 'cannot', 'stamp', 'time', 'eu', 'tool', 'data', 'transferred', 'erp', 'yesterday', 'know', 'employee', 'present', 'yesterday', 'absent'] processed_text: ['stamping', 'timing', 'eu', 'tool', 'working', 'pulvermetalogy', 'ee', 'staeberoth', 'fertigung', 'ee', 'sk', 'hartbearbeitung', 'ee', 'user', 'cannot', 'stamp', 'time', 'eu', 'tool', 'data', 'transferred', 'erp', 'yesterday', 'know', 'employee', 'present', 'yesterday', 'absent'] list_processed_text: [['stamping'], ['timing'], ['eu'], ['tool'], ['working'], ['pulvermetalogy'], ['ee'], ['staeberoth'], ['fertigung'], ['ee'], ['sk'], ['hartbearbeitung'], ['ee'], ['user'], ['cannot'], ['stamp'], ['time'], ['eu'], ['tool'], ['data'], ['transferred'], ['erp'], ['yesterday'], ['know'], ['employee'], ['present'], ['yesterday'], ['absent']] k: 6194 len: <class 'list'> Data: ['issue', 'erp', 'sid', 'issue', 'erp', 'sid', 'page', 'loading'] processed_text: ['issue', 'erp', 'sid', 'issue', 'erp', 'sid', 'page', 'loading'] list_processed_text: [['issue'], ['erp'], ['sid'], ['issue'], ['erp'], ['sid'], ['page'], ['loading']] k: 6195 len: <class 'list'> Data: ['outlook', 'email', 'access', 'felix', 'zhang', 'mobile', 'device', 'activation', 'personal', 'device', 'hi', 'please', 'usa', 'outlook', 'access', 'email', 'calendar', 'staff', 'iphone', 'dept', 'randd'] processed_text: ['outlook', 'email', 'access', 'felix', 'zhang', 'mobile', 'device', 'activation', 'personal', 'device', 'hi', 'please', 'usa', 'outlook', 'access', 'email', 'calendar', 'staff', 'iphone', 'dept', 'randd'] list_processed_text: [['outlook'], ['email'], ['access'], ['felix'], ['zhang'], ['mobile'], ['device'], ['activation'], ['personal'], ['device'], ['hi'], ['please'], ['usa'], ['outlook'], ['access'], ['email'], ['calendar'], ['staff'], ['iphone'], ['dept'], ['randd']] k: 6196 len: <class 'list'> Data: ['error', 'ddeihrsh', 'sigrtyhdeo', 'laptop', 'hi', 'dibesh', 'laptop', 'cannot', 'boot', 'need', 'resolve', 'issue'] processed_text: ['error', 'ddeihrsh', 'sigrtyhdeo', 'laptop', 'hi', 'dibesh', 'laptop', 'cannot', 'boot', 'need', 'resolve', 'issue'] list_processed_text: [['error'], ['ddeihrsh'], ['sigrtyhdeo'], ['laptop'], ['hi'], ['dibesh'], ['laptop'], ['cannot'], ['boot'], ['need'], ['resolve'], ['issue']] k: 6197 len: <class 'list'> Data: ['material', 'issue', 'dear', 'team', 'shipped', 'subcontract', 'order', 'po', 'rough', 'material', 'pc', 'movement', 'type', 'corresponding', 'end', 'product', 'mm', 'still', 'exists', 'erp', 'pls', 'help', 'check', 'root', 'cause', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['material', 'issue', 'dear', 'team', 'shipped', 'subcontract', 'order', 'po', 'rough', 'material', 'pc', 'movement', 'type', 'corresponding', 'end', 'product', 'mm', 'still', 'exists', 'erp', 'pls', 'help', 'check', 'root', 'cause', 'thx', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['material'], ['issue'], ['dear'], ['team'], ['shipped'], ['subcontract'], ['order'], ['po'], ['rough'], ['material'], ['pc'], ['movement'], ['type'], ['corresponding'], ['end'], ['product'], ['mm'], ['still'], ['exists'], ['erp'], ['pls'], ['help'], ['check'], ['root'], ['cause'], ['thx'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 6198 len: <class 'list'> Data: ['tablet', 'dell', 'please', 'provide', 'detail', 'issue'] processed_text: ['tablet', 'dell', 'please', 'provide', 'detail', 'issue'] list_processed_text: [['tablet'], ['dell'], ['please'], ['provide'], ['detail'], ['issue']] k: 6199 len: <class 'list'> Data: ['post', 'dn', 'due', 'batch', 'issue', 'dear', 'team', 'pls', 'help', 'check', 'return', 'delivery', 'required', 'enter', 'batch', 'key', 'anything', 'blank', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['post', 'dn', 'due', 'batch', 'issue', 'dear', 'team', 'pls', 'help', 'check', 'return', 'delivery', 'required', 'enter', 'batch', 'key', 'anything', 'blank', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['post'], ['dn'], ['due'], ['batch'], ['issue'], ['dear'], ['team'], ['pls'], ['help'], ['check'], ['return'], ['delivery'], ['required'], ['enter'], ['batch'], ['key'], ['anything'], ['blank'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 6200 len: <class 'list'> Data: ['laptop', 'access', 'network', 'laptop', 'access', 'network'] processed_text: ['laptop', 'access', 'network', 'laptop', 'access', 'network'] list_processed_text: [['laptop'], ['access'], ['network'], ['laptop'], ['access'], ['network']] k: 6201 len: <class 'list'> Data: ['vpn', 'login', 'issue', 'account', 'lock', 'vpn', 'login', 'issue', 'account', 'lock'] processed_text: ['vpn', 'login', 'issue', 'account', 'lock', 'vpn', 'login', 'issue', 'account', 'lock'] list_processed_text: [['vpn'], ['login'], ['issue'], ['account'], ['lock'], ['vpn'], ['login'], ['issue'], ['account'], ['lock']] k: 6202 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] processed_text: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] list_processed_text: [['mobile'], ['device'], ['activation'], ['company'], ['provided'], ['mobile'], ['device'], ['activation'], ['company'], ['provided']] k: 6203 len: <class 'list'> Data: ['sql', 'error', 'sid', 'erp', 'system', 'dump', 'sql', 'error'] processed_text: ['sql', 'error', 'sid', 'erp', 'system', 'dump', 'sql', 'error'] list_processed_text: [['sql'], ['error'], ['sid'], ['erp'], ['system'], ['dump'], ['sql'], ['error']] k: 6204 len: <class 'list'> Data: ['cartridge', 'id', 'printer', 'cartridge', 'replacement', 'printer'] processed_text: ['cartridge', 'id', 'printer', 'cartridge', 'replacement', 'printer'] list_processed_text: [['cartridge'], ['id'], ['printer'], ['cartridge'], ['replacement'], ['printer']] k: 6205 len: <class 'list'> Data: ['ie', 'launching', 'ie', 'launching', 'tried', 'opening', 'safe', 'mode', 'go', 'reset', 'go', 'tried', 'disabling', 'ie', 'window', 'feature', 'failed', 'disable', 'reboot', 'system', 'worked', 'fine'] processed_text: ['ie', 'launching', 'ie', 'launching', 'tried', 'opening', 'safe', 'mode', 'go', 'reset', 'go', 'tried', 'disabling', 'ie', 'window', 'feature', 'failed', 'disable', 'reboot', 'system', 'worked', 'fine'] list_processed_text: [['ie'], ['launching'], ['ie'], ['launching'], ['tried'], ['opening'], ['safe'], ['mode'], ['go'], ['reset'], ['go'], ['tried'], ['disabling'], ['ie'], ['window'], ['feature'], ['failed'], ['disable'], ['reboot'], ['system'], ['worked'], ['fine']] k: 6206 len: <class 'list'> Data: ['ad', 'account', 'lock', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'ad', 'account', 'lock', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['ad', 'account', 'lock', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager', 'ad', 'account', 'lock', 'password', 'reset', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['ad'], ['account'], ['lock'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['ad'], ['account'], ['lock'], ['password'], ['reset'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 6207 len: <class 'list'> Data: ['delete', 'history', 'cache', 'seocompanyxv', 'syxewkji', 'es', 'uacyltoe', 'hxgayczeing', 'delete', 'history', 'cache', 'seocompanyxv', 'syxewkji', 'es', 'uacyltoe', 'hxgayczeing'] processed_text: ['delete', 'history', 'cache', 'seocompanyxv', 'syxewkji', 'es', 'uacyltoe', 'hxgayczeing', 'delete', 'history', 'cache', 'seocompanyxv', 'syxewkji', 'es', 'uacyltoe', 'hxgayczeing'] list_processed_text: [['delete'], ['history'], ['cache'], ['seocompanyxv'], ['syxewkji'], ['es'], ['uacyltoe'], ['hxgayczeing'], ['delete'], ['history'], ['cache'], ['seocompanyxv'], ['syxewkji'], ['es'], ['uacyltoe'], ['hxgayczeing']] k: 6208 len: <class 'list'> Data: ['defective', 'copier', 'k', 'copier', 'training', 'workshop', 'defective', 'error', 'message', 'collection', 'defective', 'service', 'required'] processed_text: ['defective', 'copier', 'k', 'copier', 'training', 'workshop', 'defective', 'error', 'message', 'collection', 'defective', 'service', 'required'] list_processed_text: [['defective'], ['copier'], ['k'], ['copier'], ['training'], ['workshop'], ['defective'], ['error'], ['message'], ['collection'], ['defective'], ['service'], ['required']] k: 6209 len: <class 'list'> Data: ['ad', 'account', 'locked', 'ad', 'account', 'locked', 'summary', 'locked', 'computer'] processed_text: ['ad', 'account', 'locked', 'ad', 'account', 'locked', 'summary', 'locked', 'computer'] list_processed_text: [['ad'], ['account'], ['locked'], ['ad'], ['account'], ['locked'], ['summary'], ['locked'], ['computer']] k: 6210 len: <class 'list'> Data: ['skype', 'issue', 'unable', 'make', 'receive', 'call', 'skype', 'unable', 'make', 'receive', 'call', 'skype', 'time', 'warehouse', 'tool', 'thru', 'hehr', 'toolhones', 'audible', 'heard', 'thru', 'speake'] processed_text: ['skype', 'issue', 'unable', 'make', 'receive', 'call', 'skype', 'unable', 'make', 'receive', 'call', 'skype', 'time', 'warehouse', 'tool', 'thru', 'hehr', 'toolhones', 'audible', 'heard', 'thru', 'speake'] list_processed_text: [['skype'], ['issue'], ['unable'], ['make'], ['receive'], ['call'], ['skype'], ['unable'], ['make'], ['receive'], ['call'], ['skype'], ['time'], ['warehouse'], ['tool'], ['thru'], ['hehr'], ['toolhones'], ['audible'], ['heard'], ['thru'], ['speake']] k: 6211 len: <class 'list'> Data: ['r', 'printer', 'defective', 'r', 'printer', 'defective'] processed_text: ['r', 'printer', 'defective', 'r', 'printer', 'defective'] list_processed_text: [['r'], ['printer'], ['defective'], ['r'], ['printer'], ['defective']] k: 6212 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6213 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6214 len: <class 'list'> Data: ['job', 'failed', 'datasource', 'attribute', 'please', 'check', 'attachment', 'job', 'failed', 'datasource', 'attribute', 'please', 'check', 'attachment'] processed_text: ['job', 'failed', 'datasource', 'attribute', 'please', 'check', 'attachment', 'job', 'failed', 'datasource', 'attribute', 'please', 'check', 'attachment'] list_processed_text: [['job'], ['failed'], ['datasource'], ['attribute'], ['please'], ['check'], ['attachment'], ['job'], ['failed'], ['datasource'], ['attribute'], ['please'], ['check'], ['attachment']] k: 6215 len: <class 'list'> Data: ['account', 'lock', 'issue', 'account', 'lock', 'issue'] processed_text: ['account', 'lock', 'issue', 'account', 'lock', 'issue'] list_processed_text: [['account'], ['lock'], ['issue'], ['account'], ['lock'], ['issue']] k: 6216 len: <class 'list'> Data: ['general', 'query', 'rdp', 'user', 'wanted', 'report', 'one', 'working', 'system', 'without', 'awareness', 'checked', 'change', 'happened', 'computer', 'erp', 'went', 'back', 'default', 'setting', 'checked', 'programdntys', 'feature', 'erp', 'patch', 'installed', 'time', 'appreciated', 'user', 'asked', 'inform', 'see', 'activity'] processed_text: ['general', 'query', 'rdp', 'user', 'wanted', 'report', 'one', 'working', 'system', 'without', 'awareness', 'checked', 'change', 'happened', 'computer', 'erp', 'went', 'back', 'default', 'setting', 'checked', 'programdntys', 'feature', 'erp', 'patch', 'installed', 'time', 'appreciated', 'user', 'asked', 'inform', 'see', 'activity'] list_processed_text: [['general'], ['query'], ['rdp'], ['user'], ['wanted'], ['report'], ['one'], ['working'], ['system'], ['without'], ['awareness'], ['checked'], ['change'], ['happened'], ['computer'], ['erp'], ['went'], ['back'], ['default'], ['setting'], ['checked'], ['programdntys'], ['feature'], ['erp'], ['patch'], ['installed'], ['time'], ['appreciated'], ['user'], ['asked'], ['inform'], ['see'], ['activity']] k: 6217 len: <class 'list'> Data: ['could', 'setup', 'notification', 'list', 'dvw', 'system', 'warning', 'os', 'user', 'name', 'yinnrty', 'user', 'id', 'system', 'dvw', 'contact', 'phone', 'error', 'message', 'os', 'integrity', 'constraint', 'gdwowner', 'fk', 'sbscrptn', 'tblusers', 'violated', 'parent', 'key', 'found', 'production', 'specification', 'application', 'server', 'lhqsid', 'database', 'server', 'name', 'oracle', 'gdwp'] processed_text: ['could', 'setup', 'notification', 'list', 'dvw', 'system', 'warning', 'os', 'user', 'name', 'yinnrty', 'user', 'id', 'system', 'dvw', 'contact', 'phone', 'error', 'message', 'os', 'integrity', 'constraint', 'gdwowner', 'fk', 'sbscrptn', 'tblusers', 'violated', 'parent', 'key', 'found', 'production', 'specification', 'application', 'server', 'lhqsid', 'database', 'server', 'name', 'oracle', 'gdwp'] list_processed_text: [['could'], ['setup'], ['notification'], ['list'], ['dvw'], ['system'], ['warning'], ['os'], ['user'], ['name'], ['yinnrty'], ['user'], ['id'], ['system'], ['dvw'], ['contact'], ['phone'], ['error'], ['message'], ['os'], ['integrity'], ['constraint'], ['gdwowner'], ['fk'], ['sbscrptn'], ['tblusers'], ['violated'], ['parent'], ['key'], ['found'], ['production'], ['specification'], ['application'], ['server'], ['lhqsid'], ['database'], ['server'], ['name'], ['oracle'], ['gdwp']] k: 6218 len: <class 'list'> Data: ['account', 'lock', 'issue', 'account', 'lock', 'issue', 'remote', 'user', 'computer', 'removed', 'old', 'password', 'cleared', 'temp', 'prefetch', 'file', 'signed', 'outlook', 'checked', 'skype', 'ran', 'lock', 'status', 'informed', 'user', 'update', 'password', 'mobile', 'device'] processed_text: ['account', 'lock', 'issue', 'account', 'lock', 'issue', 'remote', 'user', 'computer', 'removed', 'old', 'password', 'cleared', 'temp', 'prefetch', 'file', 'signed', 'outlook', 'checked', 'skype', 'ran', 'lock', 'status', 'informed', 'user', 'update', 'password', 'mobile', 'device'] list_processed_text: [['account'], ['lock'], ['issue'], ['account'], ['lock'], ['issue'], ['remote'], ['user'], ['computer'], ['removed'], ['old'], ['password'], ['cleared'], ['temp'], ['prefetch'], ['file'], ['signed'], ['outlook'], ['checked'], ['skype'], ['ran'], ['lock'], ['status'], ['informed'], ['user'], ['update'], ['password'], ['mobile'], ['device']] k: 6219 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6220 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6221 len: <class 'list'> Data: ['ksem', 'ewkw', 'computer', 'start', 'set', 'bios', 'computer', 'start', 'automatically', 'network', 'reset,', 'please', 'dealt', 'himghtmelreich'] processed_text: ['ksem', 'ewkw', 'computer', 'start', 'set', 'bios', 'computer', 'start', 'automatically', 'network', 'reset,', 'please', 'dealt', 'himghtmelreich'] list_processed_text: [['ksem'], ['ewkw'], ['computer'], ['start'], ['set'], ['bios'], ['computer'], ['start'], ['automatically'], ['network'], ['reset,'], ['please'], ['dealt'], ['himghtmelreich']] k: 6222 len: <class 'list'> Data: ['unable', 'print', 'erp', 'unable', 'print', 'erp'] processed_text: ['unable', 'print', 'erp', 'unable', 'print', 'erp'] list_processed_text: [['unable'], ['print'], ['erp'], ['unable'], ['print'], ['erp']] k: 6223 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'telecom', 'vendor', 'mbps', 'circuit', 'pm', 'et', 'site', 'telecom', 'vendor', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'telecom', 'vendor', 'mbps', 'circuit', 'pm', 'et', 'site', 'telecom', 'vendor', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['telecom'], ['vendor'], ['mbps'], ['circuit'], ['pm'], ['et'], ['site'], ['telecom'], ['vendor'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6224 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 6225 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 6226 len: <class 'list'> Data: ['network', 'outage', 'usa', 'warehouse', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'warehouse', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['warehouse'], ['vpn'], ['circuit'], ['pm'], ['et'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6227 len: <class 'list'> Data: ['unable', 'connect', 'printer', 'dv', 'dv', 'also', 'need', 'help', 'connect', 'scanner', 'unable', 'connect', 'printer', 'dv', 'dv', 'also', 'need', 'help', 'scanner', 'tried', 'download', 'driver', 'fujitsu', 'website', 'tried', 'run', 'need', 'administrator', 'access'] processed_text: ['unable', 'connect', 'printer', 'dv', 'dv', 'also', 'need', 'help', 'connect', 'scanner', 'unable', 'connect', 'printer', 'dv', 'dv', 'also', 'need', 'help', 'scanner', 'tried', 'download', 'driver', 'fujitsu', 'website', 'tried', 'run', 'need', 'administrator', 'access'] list_processed_text: [['unable'], ['connect'], ['printer'], ['dv'], ['dv'], ['also'], ['need'], ['help'], ['connect'], ['scanner'], ['unable'], ['connect'], ['printer'], ['dv'], ['dv'], ['also'], ['need'], ['help'], ['scanner'], ['tried'], ['download'], ['driver'], ['fujitsu'], ['website'], ['tried'], ['run'], ['need'], ['administrator'], ['access']] k: 6228 len: <class 'list'> Data: ['latpop', 'startup', 'without', 'ac', 'power', 'cord', 'connected', 'suspect', 'bad', 'battery', 'latpop', 'startup', 'without', 'ac', 'power', 'cord', 'connected', 'suspect', 'bad', 'battery'] processed_text: ['latpop', 'startup', 'without', 'ac', 'power', 'cord', 'connected', 'suspect', 'bad', 'battery', 'latpop', 'startup', 'without', 'ac', 'power', 'cord', 'connected', 'suspect', 'bad', 'battery'] list_processed_text: [['latpop'], ['startup'], ['without'], ['ac'], ['power'], ['cord'], ['connected'], ['suspect'], ['bad'], ['battery'], ['latpop'], ['startup'], ['without'], ['ac'], ['power'], ['cord'], ['connected'], ['suspect'], ['bad'], ['battery']] k: 6229 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'vpn', 'circuit', 'pm', 'et', 'circuit', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'vpn', 'circuit', 'pm', 'et', 'circuit', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['vpn'], ['circuit'], ['pm'], ['et'], ['circuit'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6230 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 6231 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 6232 len: <class 'list'> Data: ['intermittent', 'internet', 'connection', 'intermittent', 'internet', 'connection'] processed_text: ['intermittent', 'internet', 'connection', 'intermittent', 'internet', 'connection'] list_processed_text: [['intermittent'], ['internet'], ['connection'], ['intermittent'], ['internet'], ['connection']] k: 6233 len: <class 'list'> Data: ['delivery', 'note', 'user', 'coming', 'printer', 'delivery', 'note', 'user', 'coming', 'printer'] processed_text: ['delivery', 'note', 'user', 'coming', 'printer', 'delivery', 'note', 'user', 'coming', 'printer'] list_processed_text: [['delivery'], ['note'], ['user'], ['coming'], ['printer'], ['delivery'], ['note'], ['user'], ['coming'], ['printer']] k: 6234 len: <class 'list'> Data: ['system', 'slow', 'start', 'system', 'slow', 'start'] processed_text: ['system', 'slow', 'start', 'system', 'slow', 'start'] list_processed_text: [['system'], ['slow'], ['start'], ['system'], ['slow'], ['start']] k: 6235 len: <class 'list'> Data: ['check', 'router', 'wifi', 'site', 'south', 'amerirtca', 'sp', 'bernardo', 'campo', 'mercedes', 'benz', 'hi', 'team', 'please', 'check', 'router', 'wifi', 'site', 'company', 'south', 'amerirtca', 'pollaurido', 'bernardo', 'campo', 'possible', 'connect', 'network', 'wifi', 'companysecure', 'network', 'visible', 'user', 'local', 'need', 'connect', 'remotely', 'doubt', 'please', 'return'] processed_text: ['check', 'router', 'wifi', 'site', 'south', 'amerirtca', 'sp', 'bernardo', 'campo', 'mercedes', 'benz', 'hi', 'team', 'please', 'check', 'router', 'wifi', 'site', 'company', 'south', 'amerirtca', 'pollaurido', 'bernardo', 'campo', 'possible', 'connect', 'network', 'wifi', 'companysecure', 'network', 'visible', 'user', 'local', 'need', 'connect', 'remotely', 'doubt', 'please', 'return'] list_processed_text: [['check'], ['router'], ['wifi'], ['site'], ['south'], ['amerirtca'], ['sp'], ['bernardo'], ['campo'], ['mercedes'], ['benz'], ['hi'], ['team'], ['please'], ['check'], ['router'], ['wifi'], ['site'], ['company'], ['south'], ['amerirtca'], ['pollaurido'], ['bernardo'], ['campo'], ['possible'], ['connect'], ['network'], ['wifi'], ['companysecure'], ['network'], ['visible'], ['user'], ['local'], ['need'], ['connect'], ['remotely'], ['doubt'], ['please'], ['return']] k: 6236 len: <class 'list'> Data: ['use', 'print', 'use', 'print', 'issue'] processed_text: ['use', 'print', 'use', 'print', 'issue'] list_processed_text: [['use'], ['print'], ['use'], ['print'], ['issue']] k: 6237 len: <class 'list'> Data: ['sign', 'working', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'single', 'sign', 'working'] processed_text: ['sign', 'working', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'single', 'sign', 'working'] list_processed_text: [['sign'], ['working'], ['name'], ['mikhghytr'], ['karaffa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['single'], ['sign'], ['working']] k: 6238 len: <class 'list'> Data: ['pc', 'problem', 'urgent', 'hello', 'following', 'function', 'program', 'longer', 'running', 'weekly', 'report', 'cannot', 'transferred', 'report', 'wrong', 'server', 'path', 'collaboration', 'platform', 'longer', 'find', 'library', 'longer', 'synchronized', 'collaboration', 'platform', 'lte', 'connection', 'equal', 'kind', 'regard', 'eluvxqhw', 'gpbfkqeu', 'application', 'engineering', 'application', 'engineer', 'transportation', 'central', 'europe', 'mail', 'company', 'deutschland', 'gmbh', 'www', 'company', 'com', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'or,', 'accordance', 'applicable', 'law,', 'excluded', 'disclosure', 'distribution', 'person', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'due', 'error,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['pc', 'problem', 'urgent', 'hello', 'following', 'function', 'program', 'longer', 'running', 'weekly', 'report', 'cannot', 'transferred', 'report', 'wrong', 'server', 'path', 'collaboration', 'platform', 'longer', 'find', 'library', 'longer', 'synchronized', 'collaboration', 'platform', 'lte', 'connection', 'equal', 'kind', 'regard', 'eluvxqhw', 'gpbfkqeu', 'application', 'engineering', 'application', 'engineer', 'transportation', 'central', 'europe', 'mail', 'company', 'deutschland', 'gmbh', 'www', 'company', 'com', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'or,', 'accordance', 'applicable', 'law,', 'excluded', 'disclosure', 'distribution', 'person', 'intended', 'recipient', 'strictly', 'forbidden', 'received', 'message', 'due', 'error,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['pc'], ['problem'], ['urgent'], ['hello'], ['following'], ['function'], ['program'], ['longer'], ['running'], ['weekly'], ['report'], ['cannot'], ['transferred'], ['report'], ['wrong'], ['server'], ['path'], ['collaboration'], ['platform'], ['longer'], ['find'], ['library'], ['longer'], ['synchronized'], ['collaboration'], ['platform'], ['lte'], ['connection'], ['equal'], ['kind'], ['regard'], ['eluvxqhw'], ['gpbfkqeu'], ['application'], ['engineering'], ['application'], ['engineer'], ['transportation'], ['central'], ['europe'], ['mail'], ['company'], ['deutschland'], ['gmbh'], ['www'], ['company'], ['com'], ['managing'], ['director'], ['rfwlsoej'], ['yvtjzkaw'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['or,'], ['accordance'], ['applicable'], ['law,'], ['excluded'], ['disclosure'], ['distribution'], ['person'], ['intended'], ['recipient'], ['strictly'], ['forbidden'], ['received'], ['message'], ['due'], ['error,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 6239 len: <class 'list'> Data: ['unable', 'load', 'engineering', 'tool', 'unable', 'load', 'engineering', 'tool'] processed_text: ['unable', 'load', 'engineering', 'tool', 'unable', 'load', 'engineering', 'tool'] list_processed_text: [['unable'], ['load'], ['engineering'], ['tool'], ['unable'], ['load'], ['engineering'], ['tool']] k: 6240 len: <class 'list'> Data: ['infopath', 'installation', 'infopath', 'installation'] processed_text: ['infopath', 'installation', 'infopath', 'installation'] list_processed_text: [['infopath'], ['installation'], ['infopath'], ['installation']] k: 6241 len: <class 'list'> Data: ['half', 'icon', 'desktop', 'gone', 'reboot', 'update', 'applied', 'half', 'icon', 'desktop', 'gone', 'reboot', 'update', 'applied'] processed_text: ['half', 'icon', 'desktop', 'gone', 'reboot', 'update', 'applied', 'half', 'icon', 'desktop', 'gone', 'reboot', 'update', 'applied'] list_processed_text: [['half'], ['icon'], ['desktop'], ['gone'], ['reboot'], ['update'], ['applied'], ['half'], ['icon'], ['desktop'], ['gone'], ['reboot'], ['update'], ['applied']] k: 6242 len: <class 'list'> Data: ['unable', 'get', 'skype', 'audio', 'meeting', 'outside', 'vendor', 'unable', 'get', 'skype', 'audio', 'meeting', 'outside', 'vendor'] processed_text: ['unable', 'get', 'skype', 'audio', 'meeting', 'outside', 'vendor', 'unable', 'get', 'skype', 'audio', 'meeting', 'outside', 'vendor'] list_processed_text: [['unable'], ['get'], ['skype'], ['audio'], ['meeting'], ['outside'], ['vendor'], ['unable'], ['get'], ['skype'], ['audio'], ['meeting'], ['outside'], ['vendor']] k: 6243 len: <class 'list'> Data: ['usa', 'oh', 'operator', 'locked', 'mii', 'able', 'scan', 'production', 'capture', 'value', 'add', 'usa', 'oh', 'operator', 'locked', 'mii', 'able', 'scan', 'production', 'tortm', 'hortl', 'howthrelte', 'happened', 'twice', 'one', 'week', 'dmitazhw', 'kxbifzoh'] processed_text: ['usa', 'oh', 'operator', 'locked', 'mii', 'able', 'scan', 'production', 'capture', 'value', 'add', 'usa', 'oh', 'operator', 'locked', 'mii', 'able', 'scan', 'production', 'tortm', 'hortl', 'howthrelte', 'happened', 'twice', 'one', 'week', 'dmitazhw', 'kxbifzoh'] list_processed_text: [['usa'], ['oh'], ['operator'], ['locked'], ['mii'], ['able'], ['scan'], ['production'], ['capture'], ['value'], ['add'], ['usa'], ['oh'], ['operator'], ['locked'], ['mii'], ['able'], ['scan'], ['production'], ['tortm'], ['hortl'], ['howthrelte'], ['happened'], ['twice'], ['one'], ['week'], ['dmitazhw'], ['kxbifzoh']] k: 6244 len: <class 'list'> Data: ['fjtrnslb', 'ejzkrchq', 'account', 'expired', 'fjtrnslb', 'ejzkrchq', 'account', 'expired'] processed_text: ['fjtrnslb', 'ejzkrchq', 'account', 'expired', 'fjtrnslb', 'ejzkrchq', 'account', 'expired'] list_processed_text: [['fjtrnslb'], ['ejzkrchq'], ['account'], ['expired'], ['fjtrnslb'], ['ejzkrchq'], ['account'], ['expired']] k: 6245 len: <class 'list'> Data: ['user', 'chicago', 'want', 'update', 'bank', 'detail', 'user', 'chicago', 'want', 'update', 'bank', 'detail'] processed_text: ['user', 'chicago', 'want', 'update', 'bank', 'detail', 'user', 'chicago', 'want', 'update', 'bank', 'detail'] list_processed_text: [['user'], ['chicago'], ['want'], ['update'], ['bank'], ['detail'], ['user'], ['chicago'], ['want'], ['update'], ['bank'], ['detail']] k: 6246 len: <class 'list'> Data: ['bios', 'update', 'bios', 'update'] processed_text: ['bios', 'update', 'bios', 'update'] list_processed_text: [['bios'], ['update'], ['bios'], ['update']] k: 6247 len: <class 'list'> Data: ['stuck', 'line', 'line', 'inwarehouse', 'toold', 'line', 'cannot', 'pgi', 'stuck', 'line', 'line', 'inwarehouse', 'toold', 'line', 'cannot', 'pgi', 'inwarehouse', 'toold', 'idea', 'get', 'line', 'inwarehouse', 'toold'] processed_text: ['stuck', 'line', 'line', 'inwarehouse', 'toold', 'line', 'cannot', 'pgi', 'stuck', 'line', 'line', 'inwarehouse', 'toold', 'line', 'cannot', 'pgi', 'inwarehouse', 'toold', 'idea', 'get', 'line', 'inwarehouse', 'toold'] list_processed_text: [['stuck'], ['line'], ['line'], ['inwarehouse'], ['toold'], ['line'], ['cannot'], ['pgi'], ['stuck'], ['line'], ['line'], ['inwarehouse'], ['toold'], ['line'], ['cannot'], ['pgi'], ['inwarehouse'], ['toold'], ['idea'], ['get'], ['line'], ['inwarehouse'], ['toold']] k: 6248 len: <class 'list'> Data: ['device', 'type', 'change', 'usa', 'device', 'type', 'change', 'usa'] processed_text: ['device', 'type', 'change', 'usa', 'device', 'type', 'change', 'usa'] list_processed_text: [['device'], ['type'], ['change'], ['usa'], ['device'], ['type'], ['change'], ['usa']] k: 6249 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6250 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6251 len: <class 'list'> Data: ['device', 'running', 'dell', 'ml', 'tape', 'library', 'device', 'running', 'dell', 'ml', 'tape', 'library', 'backup', 'device', 'running', 'error', 'say', 'open', 'door'] processed_text: ['device', 'running', 'dell', 'ml', 'tape', 'library', 'device', 'running', 'dell', 'ml', 'tape', 'library', 'backup', 'device', 'running', 'error', 'say', 'open', 'door'] list_processed_text: [['device'], ['running'], ['dell'], ['ml'], ['tape'], ['library'], ['device'], ['running'], ['dell'], ['ml'], ['tape'], ['library'], ['backup'], ['device'], ['running'], ['error'], ['say'], ['open'], ['door']] k: 6252 len: <class 'list'> Data: ['license', 'inquiry', 'license', 'license', 'inquiry', 'license'] processed_text: ['license', 'inquiry', 'license', 'license', 'inquiry', 'license'] list_processed_text: [['license'], ['inquiry'], ['license'], ['license'], ['inquiry'], ['license']] k: 6253 len: <class 'list'> Data: ['adobe', 'reader', 'pc', 'suddenly', 'work', 'immediate', 'crash', 'adobe', 'stopped', 'working', 'adobe', 'reader', 'pc', 'suddenly', 'work', 'immediate', 'crash', 'adobe', 'stopped', 'working'] processed_text: ['adobe', 'reader', 'pc', 'suddenly', 'work', 'immediate', 'crash', 'adobe', 'stopped', 'working', 'adobe', 'reader', 'pc', 'suddenly', 'work', 'immediate', 'crash', 'adobe', 'stopped', 'working'] list_processed_text: [['adobe'], ['reader'], ['pc'], ['suddenly'], ['work'], ['immediate'], ['crash'], ['adobe'], ['stopped'], ['working'], ['adobe'], ['reader'], ['pc'], ['suddenly'], ['work'], ['immediate'], ['crash'], ['adobe'], ['stopped'], ['working']] k: 6254 len: <class 'list'> Data: ['need', 'access', 'znqcljxt', 'azvoespk', 'email', 'need', 'access', 'znqcljxt', 'azvoespk', 'email'] processed_text: ['need', 'access', 'znqcljxt', 'azvoespk', 'email', 'need', 'access', 'znqcljxt', 'azvoespk', 'email'] list_processed_text: [['need'], ['access'], ['znqcljxt'], ['azvoespk'], ['email'], ['need'], ['access'], ['znqcljxt'], ['azvoespk'], ['email']] k: 6255 len: <class 'list'> Data: ['outlook', 'responding', 'error', 'need', 'password', 'outlook', 'responding', 'error', 'need', 'password'] processed_text: ['outlook', 'responding', 'error', 'need', 'password', 'outlook', 'responding', 'error', 'need', 'password'] list_processed_text: [['outlook'], ['responding'], ['error'], ['need'], ['password'], ['outlook'], ['responding'], ['error'], ['need'], ['password']] k: 6256 len: <class 'list'> Data: ['connection', 'problem', 'microsoft', 'collaboration', 'platform', 'company', 'account', 'connection', 'problem', 'microsoft', 'collaboration', 'platform', 'company', 'account'] processed_text: ['connection', 'problem', 'microsoft', 'collaboration', 'platform', 'company', 'account', 'connection', 'problem', 'microsoft', 'collaboration', 'platform', 'company', 'account'] list_processed_text: [['connection'], ['problem'], ['microsoft'], ['collaboration'], ['platform'], ['company'], ['account'], ['connection'], ['problem'], ['microsoft'], ['collaboration'], ['platform'], ['company'], ['account']] k: 6257 len: <class 'list'> Data: ['ticket', 'update', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'following', 'ctc', 'code', 'application', 'incident', 'ticket', 'please', 'get', 'folk', 'access', 'aerp'] processed_text: ['ticket', 'update', 'name', 'erirtc', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'following', 'ctc', 'code', 'application', 'incident', 'ticket', 'please', 'get', 'folk', 'access', 'aerp'] list_processed_text: [['ticket'], ['update'], ['name'], ['erirtc'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['following'], ['ctc'], ['code'], ['application'], ['incident'], ['ticket'], ['please'], ['get'], ['folk'], ['access'], ['aerp']] k: 6258 len: <class 'list'> Data: ['wireless', 'guest', 'access', 'cti', 'network', 'wireless', 'guest', 'guest', 'first', 'name', 'jeffrghryey', 'guest', 'last', 'name', 'adrhtykins', 'guest', 'email', 'id', 'contact', 'location', 'company', 'sponsor', 'email', 'id', 'duration', 'duration', 'guest', 'access', 'today', 'pm', 'est'] processed_text: ['wireless', 'guest', 'access', 'cti', 'network', 'wireless', 'guest', 'guest', 'first', 'name', 'jeffrghryey', 'guest', 'last', 'name', 'adrhtykins', 'guest', 'email', 'id', 'contact', 'location', 'company', 'sponsor', 'email', 'id', 'duration', 'duration', 'guest', 'access', 'today', 'pm', 'est'] list_processed_text: [['wireless'], ['guest'], ['access'], ['cti'], ['network'], ['wireless'], ['guest'], ['guest'], ['first'], ['name'], ['jeffrghryey'], ['guest'], ['last'], ['name'], ['adrhtykins'], ['guest'], ['email'], ['id'], ['contact'], ['location'], ['company'], ['sponsor'], ['email'], ['id'], ['duration'], ['duration'], ['guest'], ['access'], ['today'], ['pm'], ['est']] k: 6259 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 6260 len: <class 'list'> Data: ['intermittent', 'shutdown', 'computer', 'intermittent', 'shutdown', 'computer'] processed_text: ['intermittent', 'shutdown', 'computer', 'intermittent', 'shutdown', 'computer'] list_processed_text: [['intermittent'], ['shutdown'], ['computer'], ['intermittent'], ['shutdown'], ['computer']] k: 6261 len: <class 'list'> Data: ['inwarehouse', 'tool', 'issued', 'ic', 'ic', 'inwarehouse', 'tool', 'issued', 'ic', 'ic'] processed_text: ['inwarehouse', 'tool', 'issued', 'ic', 'ic', 'inwarehouse', 'tool', 'issued', 'ic', 'ic'] list_processed_text: [['inwarehouse'], ['tool'], ['issued'], ['ic'], ['ic'], ['inwarehouse'], ['tool'], ['issued'], ['ic'], ['ic']] k: 6262 len: <class 'list'> Data: ['cannot', 'make', 'recieve', 'call', 'iphone', 'cannot', 'make', 'recieve', 'call', 'iphone'] processed_text: ['cannot', 'make', 'recieve', 'call', 'iphone', 'cannot', 'make', 'recieve', 'call', 'iphone'] list_processed_text: [['cannot'], ['make'], ['recieve'], ['call'], ['iphone'], ['cannot'], ['make'], ['recieve'], ['call'], ['iphone']] k: 6263 len: <class 'list'> Data: ['user', 'need', 'account', 'mentioned', 'screenshot', 'active', 'account', 'add', 'new', 'opportstorage', 'product', 'got', 'call', 'transferred', 'vitalyst', 'user', 'need', 'account', 'mentioned', 'screenshot', 'active', 'account', 'add', 'new', 'opportstorage', 'product'] processed_text: ['user', 'need', 'account', 'mentioned', 'screenshot', 'active', 'account', 'add', 'new', 'opportstorage', 'product', 'got', 'call', 'transferred', 'vitalyst', 'user', 'need', 'account', 'mentioned', 'screenshot', 'active', 'account', 'add', 'new', 'opportstorage', 'product'] list_processed_text: [['user'], ['need'], ['account'], ['mentioned'], ['screenshot'], ['active'], ['account'], ['add'], ['new'], ['opportstorage'], ['product'], ['got'], ['call'], ['transferred'], ['vitalyst'], ['user'], ['need'], ['account'], ['mentioned'], ['screenshot'], ['active'], ['account'], ['add'], ['new'], ['opportstorage'], ['product']] k: 6264 len: <class 'list'> Data: ['new', 'laptop', 'set', 'set', 'new', 'laptop', 'remove', 'old', 'one'] processed_text: ['new', 'laptop', 'set', 'set', 'new', 'laptop', 'remove', 'old', 'one'] list_processed_text: [['new'], ['laptop'], ['set'], ['set'], ['new'], ['laptop'], ['remove'], ['old'], ['one']] k: 6265 len: <class 'list'> Data: ['project', 'collaboration', 'platform', 'site', 'longer', 'creating', 'project', 'id', 'new', 'project', 'added', 'project', 'collaboration', 'platform', 'site', 'longer', 'creating', 'project', 'id', 'new', 'project', 'added', 'example'] processed_text: ['project', 'collaboration', 'platform', 'site', 'longer', 'creating', 'project', 'id', 'new', 'project', 'added', 'project', 'collaboration', 'platform', 'site', 'longer', 'creating', 'project', 'id', 'new', 'project', 'added', 'example'] list_processed_text: [['project'], ['collaboration'], ['platform'], ['site'], ['longer'], ['creating'], ['project'], ['id'], ['new'], ['project'], ['added'], ['project'], ['collaboration'], ['platform'], ['site'], ['longer'], ['creating'], ['project'], ['id'], ['new'], ['project'], ['added'], ['example']] k: 6266 len: <class 'list'> Data: ['blank', 'call', 'noise', 'blank', 'call', 'noise'] processed_text: ['blank', 'call', 'noise', 'blank', 'call', 'noise'] list_processed_text: [['blank'], ['call'], ['noise'], ['blank'], ['call'], ['noise']] k: 6267 len: <class 'list'> Data: ['created', 'new', 'material', 'number', 'try', 'build', 'bom', 'put', 'bom', 'say', 'material', 'exist', 'mm'] processed_text: ['created', 'new', 'material', 'number', 'try', 'build', 'bom', 'put', 'bom', 'say', 'material', 'exist', 'mm'] list_processed_text: [['created'], ['new'], ['material'], ['number'], ['try'], ['build'], ['bom'], ['put'], ['bom'], ['say'], ['material'], ['exist'], ['mm']] k: 6268 len: <class 'list'> Data: ['cannot', 'access', 'email', 'incident', 'past', 'two', 'day', 'cannot', 'access', 'email', 'km', 'collaboration', 'platform', 'fixed', 'issue', 'occurring'] processed_text: ['cannot', 'access', 'email', 'incident', 'past', 'two', 'day', 'cannot', 'access', 'email', 'km', 'collaboration', 'platform', 'fixed', 'issue', 'occurring'] list_processed_text: [['cannot'], ['access'], ['email'], ['incident'], ['past'], ['two'], ['day'], ['cannot'], ['access'], ['email'], ['km'], ['collaboration'], ['platform'], ['fixed'], ['issue'], ['occurring']] k: 6269 len: <class 'list'> Data: ['please', 'display', 'monthly', 'information', 'sale', 'approve', 'screen', 'compensation', 'programdnty', 'please', 'display', 'monthly', 'information', 'sale', 'approve', 'screen', 'compensation', 'programdnty', 'since', 'performance', 'calculation', 'changed', 'monthly', 'calculation', 'screen', 'become', 'little', 'confusing'] processed_text: ['please', 'display', 'monthly', 'information', 'sale', 'approve', 'screen', 'compensation', 'programdnty', 'please', 'display', 'monthly', 'information', 'sale', 'approve', 'screen', 'compensation', 'programdnty', 'since', 'performance', 'calculation', 'changed', 'monthly', 'calculation', 'screen', 'become', 'little', 'confusing'] list_processed_text: [['please'], ['display'], ['monthly'], ['information'], ['sale'], ['approve'], ['screen'], ['compensation'], ['programdnty'], ['please'], ['display'], ['monthly'], ['information'], ['sale'], ['approve'], ['screen'], ['compensation'], ['programdnty'], ['since'], ['performance'], ['calculation'], ['changed'], ['monthly'], ['calculation'], ['screen'], ['become'], ['little'], ['confusing']] k: 6270 len: <class 'list'> Data: ['engineering', 'tool', 'aghynil', 'dirttwan', 'mail', 'nwfodmhc', 'exurcwkm', 'sabrthy', 'engineering', 'tool', 'respected', 'sir', 'madam', 'please', 'guidge', 'install', 'engineering', 'tool', 'tried', 'web', 'done', 'download', 'please', 'reply', 'mr', 'aghynil', 'dirttwan', 'perfect', 'sale', 'service', 'mohgrtyan', 'arcade'] processed_text: ['engineering', 'tool', 'aghynil', 'dirttwan', 'mail', 'nwfodmhc', 'exurcwkm', 'sabrthy', 'engineering', 'tool', 'respected', 'sir', 'madam', 'please', 'guidge', 'install', 'engineering', 'tool', 'tried', 'web', 'done', 'download', 'please', 'reply', 'mr', 'aghynil', 'dirttwan', 'perfect', 'sale', 'service', 'mohgrtyan', 'arcade'] list_processed_text: [['engineering'], ['tool'], ['aghynil'], ['dirttwan'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['sabrthy'], ['engineering'], ['tool'], ['respected'], ['sir'], ['madam'], ['please'], ['guidge'], ['install'], ['engineering'], ['tool'], ['tried'], ['web'], ['done'], ['download'], ['please'], ['reply'], ['mr'], ['aghynil'], ['dirttwan'], ['perfect'], ['sale'], ['service'], ['mohgrtyan'], ['arcade']] k: 6271 len: <class 'list'> Data: ['created', 'rqfhiong', 'zkwfqagb', 'yesterday', 'afternoon', 'exist', 'erp', 'ansi', 'iso', 'say', 'already', 'exists', 'try', 'create', 'ansi', 'iso', 'tbbuyhexstandoffmm', 'erp', 'say', 'already', 'exists'] processed_text: ['created', 'rqfhiong', 'zkwfqagb', 'yesterday', 'afternoon', 'exist', 'erp', 'ansi', 'iso', 'say', 'already', 'exists', 'try', 'create', 'ansi', 'iso', 'tbbuyhexstandoffmm', 'erp', 'say', 'already', 'exists'] list_processed_text: [['created'], ['rqfhiong'], ['zkwfqagb'], ['yesterday'], ['afternoon'], ['exist'], ['erp'], ['ansi'], ['iso'], ['say'], ['already'], ['exists'], ['try'], ['create'], ['ansi'], ['iso'], ['tbbuyhexstandoffmm'], ['erp'], ['say'], ['already'], ['exists']] k: 6272 len: <class 'list'> Data: ['query', 'owner', 'shared', 'mailbox', 'mws', 'distributor', 'discount', 'query', 'owner', 'shared', 'mailbox', 'mws', 'distributor', 'discount'] processed_text: ['query', 'owner', 'shared', 'mailbox', 'mws', 'distributor', 'discount', 'query', 'owner', 'shared', 'mailbox', 'mws', 'distributor', 'discount'] list_processed_text: [['query'], ['owner'], ['shared'], ['mailbox'], ['mws'], ['distributor'], ['discount'], ['query'], ['owner'], ['shared'], ['mailbox'], ['mws'], ['distributor'], ['discount']] k: 6273 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 6274 len: <class 'list'> Data: ['please', 'reactivate', 'ewew', 'account', 'please', 'reactivate', 'ewew', 'account'] processed_text: ['please', 'reactivate', 'ewew', 'account', 'please', 'reactivate', 'ewew', 'account'] list_processed_text: [['please'], ['reactivate'], ['ewew'], ['account'], ['please'], ['reactivate'], ['ewew'], ['account']] k: 6275 len: <class 'list'> Data: ['engineering', 'tool', 'password', 'reset', 'engineering', 'tool', 'password', 'reset'] processed_text: ['engineering', 'tool', 'password', 'reset', 'engineering', 'tool', 'password', 'reset'] list_processed_text: [['engineering'], ['tool'], ['password'], ['reset'], ['engineering'], ['tool'], ['password'], ['reset']] k: 6276 len: <class 'list'> Data: ['unable', 'change', 'password', 'password', 'management', 'tool', 'unable', 'change', 'password', 'password', 'management', 'tool'] processed_text: ['unable', 'change', 'password', 'password', 'management', 'tool', 'unable', 'change', 'password', 'password', 'management', 'tool'] list_processed_text: [['unable'], ['change'], ['password'], ['password'], ['management'], ['tool'], ['unable'], ['change'], ['password'], ['password'], ['management'], ['tool']] k: 6277 len: <class 'list'> Data: ['unable', 'log', 'email', 'erp', 'collaboration', 'platform', 'unable', 'log', 'email', 'erp', 'collaboration', 'platform'] processed_text: ['unable', 'log', 'email', 'erp', 'collaboration', 'platform', 'unable', 'log', 'email', 'erp', 'collaboration', 'platform'] list_processed_text: [['unable'], ['log'], ['email'], ['erp'], ['collaboration'], ['platform'], ['unable'], ['log'], ['email'], ['erp'], ['collaboration'], ['platform']] k: 6278 len: <class 'list'> Data: ['telephone', 'asxpnlgk', 'mnktdsjq', 'extension', 'defective', 'display', 'barely', 'legible', 'connection', 'call', 'interrupted', 'middle'] processed_text: ['telephone', 'asxpnlgk', 'mnktdsjq', 'extension', 'defective', 'display', 'barely', 'legible', 'connection', 'call', 'interrupted', 'middle'] list_processed_text: [['telephone'], ['asxpnlgk'], ['mnktdsjq'], ['extension'], ['defective'], ['display'], ['barely'], ['legible'], ['connection'], ['call'], ['interrupted'], ['middle']] k: 6279 len: <class 'list'> Data: ['outlook', 'access', 'outlook', 'connect', 'working', 'home', 'office'] processed_text: ['outlook', 'access', 'outlook', 'connect', 'working', 'home', 'office'] list_processed_text: [['outlook'], ['access'], ['outlook'], ['connect'], ['working'], ['home'], ['office']] k: 6280 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6281 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6282 len: <class 'list'> Data: ['unable', 'submit', 'discount', 'form', 'collaboration', 'platform', 'unable', 'submit', 'discount', 'form', 'collaboration', 'platform'] processed_text: ['unable', 'submit', 'discount', 'form', 'collaboration', 'platform', 'unable', 'submit', 'discount', 'form', 'collaboration', 'platform'] list_processed_text: [['unable'], ['submit'], ['discount'], ['form'], ['collaboration'], ['platform'], ['unable'], ['submit'], ['discount'], ['form'], ['collaboration'], ['platform']] k: 6283 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6284 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6285 len: <class 'list'> Data: ['wrong', 'calculation', 'erp', 'rebate', 'calculated', 'correctly', 'inwarehouse', 'tool', 'little', 'rebate'] processed_text: ['wrong', 'calculation', 'erp', 'rebate', 'calculated', 'correctly', 'inwarehouse', 'tool', 'little', 'rebate'] list_processed_text: [['wrong'], ['calculation'], ['erp'], ['rebate'], ['calculated'], ['correctly'], ['inwarehouse'], ['tool'], ['little'], ['rebate']] k: 6286 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6287 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6288 len: <class 'list'> Data: ['please', 'reset', 'password', 'hr', 'tool', 'globalview', 'sid', 'please', 'reset', 'password', 'hr', 'tool', 'globalview', 'sid'] processed_text: ['please', 'reset', 'password', 'hr', 'tool', 'globalview', 'sid', 'please', 'reset', 'password', 'hr', 'tool', 'globalview', 'sid'] list_processed_text: [['please'], ['reset'], ['password'], ['hr'], ['tool'], ['globalview'], ['sid'], ['please'], ['reset'], ['password'], ['hr'], ['tool'], ['globalview'], ['sid']] k: 6289 len: <class 'list'> Data: ['need', 'help', 'reset', 'password', 'need', 'help', 'reset', 'password'] processed_text: ['need', 'help', 'reset', 'password', 'need', 'help', 'reset', 'password'] list_processed_text: [['need'], ['help'], ['reset'], ['password'], ['need'], ['help'], ['reset'], ['password']] k: 6290 len: <class 'list'> Data: ['help', 'reset', 'password', 'microsoft', 'lync', 'please', 'help', 'reset', 'password', 'microsoft', 'lync', 'please'] processed_text: ['help', 'reset', 'password', 'microsoft', 'lync', 'please', 'help', 'reset', 'password', 'microsoft', 'lync', 'please'] list_processed_text: [['help'], ['reset'], ['password'], ['microsoft'], ['lync'], ['please'], ['help'], ['reset'], ['password'], ['microsoft'], ['lync'], ['please']] k: 6291 len: <class 'list'> Data: ['detail', 'earnings', 'batch', 'job', 'sending', 'current', 'payroll', 'info', 'keep', 'getting', 'zearn', 'report', 'mail', 'title', 'fw', 'job', 'hr', 'step', 'get', 'correct', 'report'] processed_text: ['detail', 'earnings', 'batch', 'job', 'sending', 'current', 'payroll', 'info', 'keep', 'getting', 'zearn', 'report', 'mail', 'title', 'fw', 'job', 'hr', 'step', 'get', 'correct', 'report'] list_processed_text: [['detail'], ['earnings'], ['batch'], ['job'], ['sending'], ['current'], ['payroll'], ['info'], ['keep'], ['getting'], ['zearn'], ['report'], ['mail'], ['title'], ['fw'], ['job'], ['hr'], ['step'], ['get'], ['correct'], ['report']] k: 6292 len: <class 'list'> Data: ['printer', 'change', 'fd', 'fd', 'hello', 'help', 'instructed', 'ecwtrjnq', 'jpecxuty', 'please', 'change', 'permanently', 'default', 'printing', 'job', 'output', 'erp', 'printer', 'fd', 'printer', 'fd', 'also', 'please', 'repeat', 'job', 'sent', 'printer', 'fd', 'new', 'printer', 'fd', 'best'] processed_text: ['printer', 'change', 'fd', 'fd', 'hello', 'help', 'instructed', 'ecwtrjnq', 'jpecxuty', 'please', 'change', 'permanently', 'default', 'printing', 'job', 'output', 'erp', 'printer', 'fd', 'printer', 'fd', 'also', 'please', 'repeat', 'job', 'sent', 'printer', 'fd', 'new', 'printer', 'fd', 'best'] list_processed_text: [['printer'], ['change'], ['fd'], ['fd'], ['hello'], ['help'], ['instructed'], ['ecwtrjnq'], ['jpecxuty'], ['please'], ['change'], ['permanently'], ['default'], ['printing'], ['job'], ['output'], ['erp'], ['printer'], ['fd'], ['printer'], ['fd'], ['also'], ['please'], ['repeat'], ['job'], ['sent'], ['printer'], ['fd'], ['new'], ['printer'], ['fd'], ['best']] k: 6293 len: <class 'list'> Data: ['urgent', 'registration', 'infopath', 'dear', 'please', 'urgently', 'advise', 'proceed', 'asked', 'review', 'price', 'discount', 'obviously', 'managed', 'm', 'tool', 'best'] processed_text: ['urgent', 'registration', 'infopath', 'dear', 'please', 'urgently', 'advise', 'proceed', 'asked', 'review', 'price', 'discount', 'obviously', 'managed', 'm', 'tool', 'best'] list_processed_text: [['urgent'], ['registration'], ['infopath'], ['dear'], ['please'], ['urgently'], ['advise'], ['proceed'], ['asked'], ['review'], ['price'], ['discount'], ['obviously'], ['managed'], ['m'], ['tool'], ['best']] k: 6294 len: <class 'list'> Data: ['unable', 'connect', 'hub', 'unable', 'connect', 'hub'] processed_text: ['unable', 'connect', 'hub', 'unable', 'connect', 'hub'] list_processed_text: [['unable'], ['connect'], ['hub'], ['unable'], ['connect'], ['hub']] k: 6295 len: <class 'list'> Data: ['folder', 'access', 'globalace', 'holemaking', 'ha', 'please', 'se', 'comment', 'red', 'viele', 'gr', 'best'] processed_text: ['folder', 'access', 'globalace', 'holemaking', 'ha', 'please', 'se', 'comment', 'red', 'viele', 'gr', 'best'] list_processed_text: [['folder'], ['access'], ['globalace'], ['holemaking'], ['ha'], ['please'], ['se'], ['comment'], ['red'], ['viele'], ['gr'], ['best']] k: 6296 len: <class 'list'> Data: ['blocked', 'web', 'page', 'dear', 'please', 'unblock', 'web', 'page', 'urgently', 'need', 'access', 'technical', 'research', 'g', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['blocked', 'web', 'page', 'dear', 'please', 'unblock', 'web', 'page', 'urgently', 'need', 'access', 'technical', 'research', 'g', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['blocked'], ['web'], ['page'], ['dear'], ['please'], ['unblock'], ['web'], ['page'], ['urgently'], ['need'], ['access'], ['technical'], ['research'], ['g'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 6297 len: <class 'list'> Data: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'dbe'] processed_text: ['cisco', 'access', 'point', 'working', 'cisco', 'access', 'point', 'working', 'mac', 'address', 'dbe'] list_processed_text: [['cisco'], ['access'], ['point'], ['working'], ['cisco'], ['access'], ['point'], ['working'], ['mac'], ['address'], ['dbe']] k: 6298 len: <class 'list'> Data: ['profile', 'setup', 'new', 'joiner', 'laptop', 'profile', 'setup', 'new', 'joiner', 'nikitha', 'upadhyaya', 'lqnoifve', 'wvhelqxu'] processed_text: ['profile', 'setup', 'new', 'joiner', 'laptop', 'profile', 'setup', 'new', 'joiner', 'nikitha', 'upadhyaya', 'lqnoifve', 'wvhelqxu'] list_processed_text: [['profile'], ['setup'], ['new'], ['joiner'], ['laptop'], ['profile'], ['setup'], ['new'], ['joiner'], ['nikitha'], ['upadhyaya'], ['lqnoifve'], ['wvhelqxu']] k: 6299 len: <class 'list'> Data: ['need', 'erp', 'access', 'dscsag', 'conv', 'rule', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'gthydanp', 'transaction', 'code', 'user', 'need', 'working', 'dscsag', 'conv', 'rule', 'describe', 'issue', 'need', 'access', 'code', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'attached', 'provide', 'access', 'user', 'phillpd'] processed_text: ['need', 'erp', 'access', 'dscsag', 'conv', 'rule', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'gthydanp', 'transaction', 'code', 'user', 'need', 'working', 'dscsag', 'conv', 'rule', 'describe', 'issue', 'need', 'access', 'code', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'attached', 'provide', 'access', 'user', 'phillpd'] list_processed_text: [['need'], ['erp'], ['access'], ['dscsag'], ['conv'], ['rule'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['gthydanp'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['dscsag'], ['conv'], ['rule'], ['describe'], ['issue'], ['need'], ['access'], ['code'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['attached'], ['provide'], ['access'], ['user'], ['phillpd']] k: 6300 len: <class 'list'> Data: ['problem', 'erpgui', 'vsdtxwry', 'ngkcdjye', 'problem', 'erpgui', 'vsdtxwry', 'ngkcdjye'] processed_text: ['problem', 'erpgui', 'vsdtxwry', 'ngkcdjye', 'problem', 'erpgui', 'vsdtxwry', 'ngkcdjye'] list_processed_text: [['problem'], ['erpgui'], ['vsdtxwry'], ['ngkcdjye'], ['problem'], ['erpgui'], ['vsdtxwry'], ['ngkcdjye']] k: 6301 len: <class 'list'> Data: ['search', 'function', 'skype', 'directory', 'still', 'work', 'search', 'function', 'skype', 'directory', 'still', 'work'] processed_text: ['search', 'function', 'skype', 'directory', 'still', 'work', 'search', 'function', 'skype', 'directory', 'still', 'work'] list_processed_text: [['search'], ['function'], ['skype'], ['directory'], ['still'], ['work'], ['search'], ['function'], ['skype'], ['directory'], ['still'], ['work']] k: 6302 len: <class 'list'> Data: ['akku', 'def', 'openstage', 'sl', 'bitte', 'neuen', 'besorgen', 'phone', 'replacement', 'siemens', 'akku', 'def', 'openstage', 'sl', 'bitte', 'neuen', 'besorgen'] processed_text: ['akku', 'def', 'openstage', 'sl', 'bitte', 'neuen', 'besorgen', 'phone', 'replacement', 'siemens', 'akku', 'def', 'openstage', 'sl', 'bitte', 'neuen', 'besorgen'] list_processed_text: [['akku'], ['def'], ['openstage'], ['sl'], ['bitte'], ['neuen'], ['besorgen'], ['phone'], ['replacement'], ['siemens'], ['akku'], ['def'], ['openstage'], ['sl'], ['bitte'], ['neuen'], ['besorgen']] k: 6303 len: <class 'list'> Data: ['pls', 'check', 'user', 'yubtgy', 'account', 'dear', 'team', 'pls', 'help', 'check', 'user', 'account', 'account', 'locked', 'several', 'time', 'thx', 'lot', 'user', 'yubtgy', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] processed_text: ['pls', 'check', 'user', 'yubtgy', 'account', 'dear', 'team', 'pls', 'help', 'check', 'user', 'account', 'account', 'locked', 'several', 'time', 'thx', 'lot', 'user', 'yubtgy', 'rgds', 'judthtihty', 'zhuyhts', 'company', 'hardpoint', 'apac', 'wgq', 'dc'] list_processed_text: [['pls'], ['check'], ['user'], ['yubtgy'], ['account'], ['dear'], ['team'], ['pls'], ['help'], ['check'], ['user'], ['account'], ['account'], ['locked'], ['several'], ['time'], ['thx'], ['lot'], ['user'], ['yubtgy'], ['rgds'], ['judthtihty'], ['zhuyhts'], ['company'], ['hardpoint'], ['apac'], ['wgq'], ['dc']] k: 6304 len: <class 'list'> Data: ['problem', 'weekly', 'report', 'engineering', 'tool', 'preparation', 'offer', 'hello', 'everyone', 'please', 'help', 'weekly', 'report', 'engineering', 'tool', 'offer', 'preparation', 'available', 'phone', 'today', 'noon', 'many', 'thanks', 'gru', 'rkyjnbqh', 'kfshormi', 'eng', 'application', 'engineering', 'application', 'engineer', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['problem', 'weekly', 'report', 'engineering', 'tool', 'preparation', 'offer', 'hello', 'everyone', 'please', 'help', 'weekly', 'report', 'engineering', 'tool', 'offer', 'preparation', 'available', 'phone', 'today', 'noon', 'many', 'thanks', 'gru', 'rkyjnbqh', 'kfshormi', 'eng', 'application', 'engineering', 'application', 'engineer', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['problem'], ['weekly'], ['report'], ['engineering'], ['tool'], ['preparation'], ['offer'], ['hello'], ['everyone'], ['please'], ['help'], ['weekly'], ['report'], ['engineering'], ['tool'], ['offer'], ['preparation'], ['available'], ['phone'], ['today'], ['noon'], ['many'], ['thanks'], ['gru'], ['rkyjnbqh'], ['kfshormi'], ['eng'], ['application'], ['engineering'], ['application'], ['engineer'], ['company'], ['deutschland'], ['gmbh'], ['managing'], ['director'], ['rfwlsoej'], ['yvtjzkaw'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 6305 len: <class 'list'> Data: ['eando', 'access', 'request', 'partner', 'team', 'hi', 'pradtheyp', 'partner', 'team', 'support', 'jintana', 'run', 'eando', 'report', 'going', 'forward', 'provide', 'access', 'usaed', 'debaghjsish', 'based', 'email', 'eando', 'access', 'path', 'required', 'access', 'usaed', 'site', 'certified', 'content', 'view', 'eoreport', 'finance', 'timegraphfilters', 'iid', 'let', 'know', 'done', 'appreciate', 'provide', 'access', 'preferably', 'next', 'friday'] processed_text: ['eando', 'access', 'request', 'partner', 'team', 'hi', 'pradtheyp', 'partner', 'team', 'support', 'jintana', 'run', 'eando', 'report', 'going', 'forward', 'provide', 'access', 'usaed', 'debaghjsish', 'based', 'email', 'eando', 'access', 'path', 'required', 'access', 'usaed', 'site', 'certified', 'content', 'view', 'eoreport', 'finance', 'timegraphfilters', 'iid', 'let', 'know', 'done', 'appreciate', 'provide', 'access', 'preferably', 'next', 'friday'] list_processed_text: [['eando'], ['access'], ['request'], ['partner'], ['team'], ['hi'], ['pradtheyp'], ['partner'], ['team'], ['support'], ['jintana'], ['run'], ['eando'], ['report'], ['going'], ['forward'], ['provide'], ['access'], ['usaed'], ['debaghjsish'], ['based'], ['email'], ['eando'], ['access'], ['path'], ['required'], ['access'], ['usaed'], ['site'], ['certified'], ['content'], ['view'], ['eoreport'], ['finance'], ['timegraphfilters'], ['iid'], ['let'], ['know'], ['done'], ['appreciate'], ['provide'], ['access'], ['preferably'], ['next'], ['friday']] k: 6306 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'mp', 'fb', 'locked', 'qlhmawgi', 'sgwipoxn', 'mp', 'fb', 'locked'] processed_text: ['qlhmawgi', 'sgwipoxn', 'mp', 'fb', 'locked', 'qlhmawgi', 'sgwipoxn', 'mp', 'fb', 'locked'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['mp'], ['fb'], ['locked'], ['qlhmawgi'], ['sgwipoxn'], ['mp'], ['fb'], ['locked']] k: 6307 len: <class 'list'> Data: ['skype', 'registration', 'yesterday', 'changed', 'password', 'via', 'password', 'manager', 'since', 'skype', 'registration', 'longer', 'work', 'neither', 'new', 'old', 'password', 'error', 'message', 'username', 'password', 'domain', 'seems', 'wrong'] processed_text: ['skype', 'registration', 'yesterday', 'changed', 'password', 'via', 'password', 'manager', 'since', 'skype', 'registration', 'longer', 'work', 'neither', 'new', 'old', 'password', 'error', 'message', 'username', 'password', 'domain', 'seems', 'wrong'] list_processed_text: [['skype'], ['registration'], ['yesterday'], ['changed'], ['password'], ['via'], ['password'], ['manager'], ['since'], ['skype'], ['registration'], ['longer'], ['work'], ['neither'], ['new'], ['old'], ['password'], ['error'], ['message'], ['username'], ['password'], ['domain'], ['seems'], ['wrong']] k: 6308 len: <class 'list'> Data: ['access', 'igurwxhv', 'ughynofq', 'mailbox', 'hi', 'helpdesk', 'please', 'give', 'access', 'igurwxhv', 'ughynofq', 'partner', 'outsouring', 'company'] processed_text: ['access', 'igurwxhv', 'ughynofq', 'mailbox', 'hi', 'helpdesk', 'please', 'give', 'access', 'igurwxhv', 'ughynofq', 'partner', 'outsouring', 'company'] list_processed_text: [['access'], ['igurwxhv'], ['ughynofq'], ['mailbox'], ['hi'], ['helpdesk'], ['please'], ['give'], ['access'], ['igurwxhv'], ['ughynofq'], ['partner'], ['outsouring'], ['company']] k: 6309 len: <class 'list'> Data: ['plm', 'cache', 'server', 'logging', 'issue', 'per', 'attached', 'email', 'see', 'issue', 'cache', 'server', 'logging', 'also', 'caching', 'server', 'working', 'well', 'please', 'also', 'look', 'erp', 'reply', 'raised', 'question', 'cache', 'server', 'accessibility'] processed_text: ['plm', 'cache', 'server', 'logging', 'issue', 'per', 'attached', 'email', 'see', 'issue', 'cache', 'server', 'logging', 'also', 'caching', 'server', 'working', 'well', 'please', 'also', 'look', 'erp', 'reply', 'raised', 'question', 'cache', 'server', 'accessibility'] list_processed_text: [['plm'], ['cache'], ['server'], ['logging'], ['issue'], ['per'], ['attached'], ['email'], ['see'], ['issue'], ['cache'], ['server'], ['logging'], ['also'], ['caching'], ['server'], ['working'], ['well'], ['please'], ['also'], ['look'], ['erp'], ['reply'], ['raised'], ['question'], ['cache'], ['server'], ['accessibility']] k: 6310 len: <class 'list'> Data: ['conduct', 'good', 'movement', 'erp', 'transaction', 'mb', 'plant', 'plant', 'iwazgesl', 'ydgqtpbo', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'nkiopevt', 'gufwhdky', 'eh', 'tru', 'good', 'movement', 'mb', 'plant', 'plant', 'hello', 'could', 'please', 'advise', 'u', 'conduct', 'good', 'movement', 'erp', 'transaction', 'mb', 'plant', 'plant', 'able'] processed_text: ['conduct', 'good', 'movement', 'erp', 'transaction', 'mb', 'plant', 'plant', 'iwazgesl', 'ydgqtpbo', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'nkiopevt', 'gufwhdky', 'eh', 'tru', 'good', 'movement', 'mb', 'plant', 'plant', 'hello', 'could', 'please', 'advise', 'u', 'conduct', 'good', 'movement', 'erp', 'transaction', 'mb', 'plant', 'plant', 'able'] list_processed_text: [['conduct'], ['good'], ['movement'], ['erp'], ['transaction'], ['mb'], ['plant'], ['plant'], ['iwazgesl'], ['ydgqtpbo'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['nkiopevt'], ['gufwhdky'], ['eh'], ['tru'], ['good'], ['movement'], ['mb'], ['plant'], ['plant'], ['hello'], ['could'], ['please'], ['advise'], ['u'], ['conduct'], ['good'], ['movement'], ['erp'], ['transaction'], ['mb'], ['plant'], ['plant'], ['able']] k: 6311 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 6312 len: <class 'list'> Data: ['user', 'cwfzldts', 'dlmukhyn', 'cannot', 'create', 'purchasing', 'requistions', 'punch', 'catalogue', 'get', 'right', 'document', 'type', 'several', 'problem', 'wrong', 'material', 'group', 'shown', 'mendmre', 'istead', 'default', 'select', 'accounting', 'costcenter', 'default', 'order', 'gl', 'account', 'come', 'automatically', 'got', 'information', 'requisitioners', 'plant', 'problem', 'get', 'mail', 'colleague', 'person', 'solved', 'issue', 'add', 'soon', 'mail'] processed_text: ['user', 'cwfzldts', 'dlmukhyn', 'cannot', 'create', 'purchasing', 'requistions', 'punch', 'catalogue', 'get', 'right', 'document', 'type', 'several', 'problem', 'wrong', 'material', 'group', 'shown', 'mendmre', 'istead', 'default', 'select', 'accounting', 'costcenter', 'default', 'order', 'gl', 'account', 'come', 'automatically', 'got', 'information', 'requisitioners', 'plant', 'problem', 'get', 'mail', 'colleague', 'person', 'solved', 'issue', 'add', 'soon', 'mail'] list_processed_text: [['user'], ['cwfzldts'], ['dlmukhyn'], ['cannot'], ['create'], ['purchasing'], ['requistions'], ['punch'], ['catalogue'], ['get'], ['right'], ['document'], ['type'], ['several'], ['problem'], ['wrong'], ['material'], ['group'], ['shown'], ['mendmre'], ['istead'], ['default'], ['select'], ['accounting'], ['costcenter'], ['default'], ['order'], ['gl'], ['account'], ['come'], ['automatically'], ['got'], ['information'], ['requisitioners'], ['plant'], ['problem'], ['get'], ['mail'], ['colleague'], ['person'], ['solved'], ['issue'], ['add'], ['soon'], ['mail']] k: 6313 len: <class 'list'> Data: ['latitude', 'properly', 'boot', 'get', 'blue', 'empty', 'screen', 'log', 'mask', 'latitude', 'properly', 'boot', 'get', 'blue', 'empty', 'screen', 'log', 'mask'] processed_text: ['latitude', 'properly', 'boot', 'get', 'blue', 'empty', 'screen', 'log', 'mask', 'latitude', 'properly', 'boot', 'get', 'blue', 'empty', 'screen', 'log', 'mask'] list_processed_text: [['latitude'], ['properly'], ['boot'], ['get'], ['blue'], ['empty'], ['screen'], ['log'], ['mask'], ['latitude'], ['properly'], ['boot'], ['get'], ['blue'], ['empty'], ['screen'], ['log'], ['mask']] k: 6314 len: <class 'list'> Data: ['latitude', 'boot', 'properly', 'got', 'blue', 'empty', 'screen', 'eagl', 'latitude', 'boot', 'properly', 'got', 'blue', 'empty', 'screen', 'eagl'] processed_text: ['latitude', 'boot', 'properly', 'got', 'blue', 'empty', 'screen', 'eagl', 'latitude', 'boot', 'properly', 'got', 'blue', 'empty', 'screen', 'eagl'] list_processed_text: [['latitude'], ['boot'], ['properly'], ['got'], ['blue'], ['empty'], ['screen'], ['eagl'], ['latitude'], ['boot'], ['properly'], ['got'], ['blue'], ['empty'], ['screen'], ['eagl']] k: 6315 len: <class 'list'> Data: ['support', 'r', 'umbau', 'port', 'niptbwdq', 'csenjruz', 'support', 'r', 'umbau', 'port', 'niptbwdq', 'csenjruz'] processed_text: ['support', 'r', 'umbau', 'port', 'niptbwdq', 'csenjruz', 'support', 'r', 'umbau', 'port', 'niptbwdq', 'csenjruz'] list_processed_text: [['support'], ['r'], ['umbau'], ['port'], ['niptbwdq'], ['csenjruz'], ['support'], ['r'], ['umbau'], ['port'], ['niptbwdq'], ['csenjruz']] k: 6316 len: <class 'list'> Data: ['conversion', 'computer', 'ewew', 'port', 'niptbwdq', 'csenjruz', 'conversion', 'computer', 'ewew', 'port', 'niptbwdq', 'csenjruz'] processed_text: ['conversion', 'computer', 'ewew', 'port', 'niptbwdq', 'csenjruz', 'conversion', 'computer', 'ewew', 'port', 'niptbwdq', 'csenjruz'] list_processed_text: [['conversion'], ['computer'], ['ewew'], ['port'], ['niptbwdq'], ['csenjruz'], ['conversion'], ['computer'], ['ewew'], ['port'], ['niptbwdq'], ['csenjruz']] k: 6317 len: <class 'list'> Data: ['setup', 'new', 'w', 'repair', 'nfayqjhg', 'kyswcpei', 'setup', 'new', 'w', 'repair', 'nfayqjhg', 'kyswcpei'] processed_text: ['setup', 'new', 'w', 'repair', 'nfayqjhg', 'kyswcpei', 'setup', 'new', 'w', 'repair', 'nfayqjhg', 'kyswcpei'] list_processed_text: [['setup'], ['new'], ['w'], ['repair'], ['nfayqjhg'], ['kyswcpei'], ['setup'], ['new'], ['w'], ['repair'], ['nfayqjhg'], ['kyswcpei']] k: 6318 len: <class 'list'> Data: ['m', 'office', 'outlook', 'issue', 'm', 'office', 'outlook', 'issue'] processed_text: ['m', 'office', 'outlook', 'issue', 'm', 'office', 'outlook', 'issue'] list_processed_text: [['m'], ['office'], ['outlook'], ['issue'], ['m'], ['office'], ['outlook'], ['issue']] k: 6319 len: <class 'list'> Data: ['cannot', 'use', 'copy', 'option', 'engineering', 'tool', 'getting', 'error', 'message', 'cannot', 'use', 'copy', 'option', 'engineering', 'tool', 'getting', 'error', 'message', 'never', 'worked', 'user', 'anticipating', 'access', 'issue'] processed_text: ['cannot', 'use', 'copy', 'option', 'engineering', 'tool', 'getting', 'error', 'message', 'cannot', 'use', 'copy', 'option', 'engineering', 'tool', 'getting', 'error', 'message', 'never', 'worked', 'user', 'anticipating', 'access', 'issue'] list_processed_text: [['cannot'], ['use'], ['copy'], ['option'], ['engineering'], ['tool'], ['getting'], ['error'], ['message'], ['cannot'], ['use'], ['copy'], ['option'], ['engineering'], ['tool'], ['getting'], ['error'], ['message'], ['never'], ['worked'], ['user'], ['anticipating'], ['access'], ['issue']] k: 6320 len: <class 'list'> Data: ['support', 'r', 'umzug', 'qwynjdbk', 'eamnvwyh', 'support', 'r', 'umzug', 'qwynjdbk', 'eamnvwyh'] processed_text: ['support', 'r', 'umzug', 'qwynjdbk', 'eamnvwyh', 'support', 'r', 'umzug', 'qwynjdbk', 'eamnvwyh'] list_processed_text: [['support'], ['r'], ['umzug'], ['qwynjdbk'], ['eamnvwyh'], ['support'], ['r'], ['umzug'], ['qwynjdbk'], ['eamnvwyh']] k: 6321 len: <class 'list'> Data: ['circuit', 'outage', 'traversecity', 'static', 'vpn', 'rtr', 'since', 'est', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'traversecity', 'static', 'vpn', 'rtr', 'since', 'est', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['traversecity'], ['static'], ['vpn'], ['rtr'], ['since'], ['est'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['est'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['na'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6322 len: <class 'list'> Data: ['change', 'computer', 'user', 'parrfgyksm', 'telephony', 'software', 'set', 'change', 'please', 'set', 'new', 'computer', 'changed', 'user', 'parrfgyksm'] processed_text: ['change', 'computer', 'user', 'parrfgyksm', 'telephony', 'software', 'set', 'change', 'please', 'set', 'new', 'computer', 'changed', 'user', 'parrfgyksm'] list_processed_text: [['change'], ['computer'], ['user'], ['parrfgyksm'], ['telephony'], ['software'], ['set'], ['change'], ['please'], ['set'], ['new'], ['computer'], ['changed'], ['user'], ['parrfgyksm']] k: 6323 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 6324 len: <class 'list'> Data: ['mp', 'fb', 'account', 'blocked', 'registration', 'alike'] processed_text: ['mp', 'fb', 'account', 'blocked', 'registration', 'alike'] list_processed_text: [['mp'], ['fb'], ['account'], ['blocked'], ['registration'], ['alike']] k: 6325 len: <class 'list'> Data: ['network', 'connection', 'eemw', 'network', 'connection', 'established'] processed_text: ['network', 'connection', 'eemw', 'network', 'connection', 'established'] list_processed_text: [['network'], ['connection'], ['eemw'], ['network'], ['connection'], ['established']] k: 6326 len: <class 'list'> Data: ['email', 'query', 'email', 'query'] processed_text: ['email', 'query', 'email', 'query'] list_processed_text: [['email'], ['query'], ['email'], ['query']] k: 6327 len: <class 'list'> Data: ['erp', 'sid', 'lock', 'issue', 'password', 'reset', 'erp', 'sid', 'lock', 'issue', 'password', 'reset', 'user', 'id', 'bhergtyemm'] processed_text: ['erp', 'sid', 'lock', 'issue', 'password', 'reset', 'erp', 'sid', 'lock', 'issue', 'password', 'reset', 'user', 'id', 'bhergtyemm'] list_processed_text: [['erp'], ['sid'], ['lock'], ['issue'], ['password'], ['reset'], ['erp'], ['sid'], ['lock'], ['issue'], ['password'], ['reset'], ['user'], ['id'], ['bhergtyemm']] k: 6328 len: <class 'list'> Data: ['aw', 'please', 'take', 'survey', 'related', 'ticket', 'dear', 'hr', 'souzarft', 'still', 'access', 'friendly', 'gr', 'best'] processed_text: ['aw', 'please', 'take', 'survey', 'related', 'ticket', 'dear', 'hr', 'souzarft', 'still', 'access', 'friendly', 'gr', 'best'] list_processed_text: [['aw'], ['please'], ['take'], ['survey'], ['related'], ['ticket'], ['dear'], ['hr'], ['souzarft'], ['still'], ['access'], ['friendly'], ['gr'], ['best']] k: 6329 len: <class 'list'> Data: ['copy', 'save', 'pdf', 'drawing', 'business', 'client', 'application', 'used', 'work', 'till', 'user', 'able', 'copy', 'save', 'pdf', 'business', 'client', 'since', 'user', 'able', 'anymore'] processed_text: ['copy', 'save', 'pdf', 'drawing', 'business', 'client', 'application', 'used', 'work', 'till', 'user', 'able', 'copy', 'save', 'pdf', 'business', 'client', 'since', 'user', 'able', 'anymore'] list_processed_text: [['copy'], ['save'], ['pdf'], ['drawing'], ['business'], ['client'], ['application'], ['used'], ['work'], ['till'], ['user'], ['able'], ['copy'], ['save'], ['pdf'], ['business'], ['client'], ['since'], ['user'], ['able'], ['anymore']] k: 6330 len: <class 'list'> Data: ['access', 'server', 'alike', 'error', 'message', 'reconnecting', 'hostname'] processed_text: ['access', 'server', 'alike', 'error', 'message', 'reconnecting', 'hostname'] list_processed_text: [['access'], ['server'], ['alike'], ['error'], ['message'], ['reconnecting'], ['hostname']] k: 6331 len: <class 'list'> Data: ['authorization', 'add', 'delete', 'member'] processed_text: ['authorization', 'add', 'delete', 'member'] list_processed_text: [['authorization'], ['add'], ['delete'], ['member']] k: 6332 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'client', 'unable', 'open', 'outlook', 'client'] processed_text: ['unable', 'open', 'outlook', 'client', 'unable', 'open', 'outlook', 'client'] list_processed_text: [['unable'], ['open'], ['outlook'], ['client'], ['unable'], ['open'], ['outlook'], ['client']] k: 6333 len: <class 'list'> Data: ['aw', 'please', 'take', 'survey', 'related', 'ticket', 'nein', 'funktioniert', 'noch', 'nicht', 'efjzbtcm', 'mdpviqbf', 'company', 'production', 'gmbh', 'co', 'kg', 'versand', 'logistik', 'ff', 'wear', 'email', 'company', 'produktions', 'gmbh', 'co', 'kg', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'von', 'global', 'ticketing', 'tool', 'mail', 'gesendet', 'mittwoch', 'efjzbtcm', 'mdpviqbf', 'betreff', 'please', 'take', 'survey', 'related', 'ticket', 'please', 'reply', 'forward', 'email', 'use', 'ticketing', 'tool', 'open', 'new', 'ticket', 'value', 'input', 'please', 'help', 'u', 'taking', 'time', 'fill', 'short', 'survey', 'click', 'take', 'survey', 'number', 'ticket', 'resolved', 'olckhmvx', 'pcqobjnd', 'short', 'description', 'beim', 'ffnen', 'oder', 'speichern', 'kommt', 'immer', 'wieder', 'eine', 'meldung', 'click', 'view', 'link', 'comment', 'edt', 'olckhmvx', 'pcqobjndadditional', 'comment', 'hallo', 'frau', 'maier', 'bitte', 'probieren', 'sie', 'jetzt', 'und', 'geben', 'sie', 'bescheid', 'ob', 'sie', 'zugriff', 'haben', 'oder', 'nicht', 'mfg', 'dan', 'gso'] processed_text: ['aw', 'please', 'take', 'survey', 'related', 'ticket', 'nein', 'funktioniert', 'noch', 'nicht', 'efjzbtcm', 'mdpviqbf', 'company', 'production', 'gmbh', 'co', 'kg', 'versand', 'logistik', 'ff', 'wear', 'email', 'company', 'produktions', 'gmbh', 'co', 'kg', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'von', 'global', 'ticketing', 'tool', 'mail', 'gesendet', 'mittwoch', 'efjzbtcm', 'mdpviqbf', 'betreff', 'please', 'take', 'survey', 'related', 'ticket', 'please', 'reply', 'forward', 'email', 'use', 'ticketing', 'tool', 'open', 'new', 'ticket', 'value', 'input', 'please', 'help', 'u', 'taking', 'time', 'fill', 'short', 'survey', 'click', 'take', 'survey', 'number', 'ticket', 'resolved', 'olckhmvx', 'pcqobjnd', 'short', 'description', 'beim', 'ffnen', 'oder', 'speichern', 'kommt', 'immer', 'wieder', 'eine', 'meldung', 'click', 'view', 'link', 'comment', 'edt', 'olckhmvx', 'pcqobjndadditional', 'comment', 'hallo', 'frau', 'maier', 'bitte', 'probieren', 'sie', 'jetzt', 'und', 'geben', 'sie', 'bescheid', 'ob', 'sie', 'zugriff', 'haben', 'oder', 'nicht', 'mfg', 'dan', 'gso'] list_processed_text: [['aw'], ['please'], ['take'], ['survey'], ['related'], ['ticket'], ['nein'], ['funktioniert'], ['noch'], ['nicht'], ['efjzbtcm'], ['mdpviqbf'], ['company'], ['production'], ['gmbh'], ['co'], ['kg'], ['versand'], ['logistik'], ['ff'], ['wear'], ['email'], ['company'], ['produktions'], ['gmbh'], ['co'], ['kg'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['von'], ['global'], ['ticketing'], ['tool'], ['mail'], ['gesendet'], ['mittwoch'], ['efjzbtcm'], ['mdpviqbf'], ['betreff'], ['please'], ['take'], ['survey'], ['related'], ['ticket'], ['please'], ['reply'], ['forward'], ['email'], ['use'], ['ticketing'], ['tool'], ['open'], ['new'], ['ticket'], ['value'], ['input'], ['please'], ['help'], ['u'], ['taking'], ['time'], ['fill'], ['short'], ['survey'], ['click'], ['take'], ['survey'], ['number'], ['ticket'], ['resolved'], ['olckhmvx'], ['pcqobjnd'], ['short'], ['description'], ['beim'], ['ffnen'], ['oder'], ['speichern'], ['kommt'], ['immer'], ['wieder'], ['eine'], ['meldung'], ['click'], ['view'], ['link'], ['comment'], ['edt'], ['olckhmvx'], ['pcqobjndadditional'], ['comment'], ['hallo'], ['frau'], ['maier'], ['bitte'], ['probieren'], ['sie'], ['jetzt'], ['und'], ['geben'], ['sie'], ['bescheid'], ['ob'], ['sie'], ['zugriff'], ['haben'], ['oder'], ['nicht'], ['mfg'], ['dan'], ['gso']] k: 6334 len: <class 'list'> Data: ['collaboration', 'platform', 'business', 'sync', 'collaboration', 'platform', 'business', 'dose', 'take', 'credential', 'sync', 'best'] processed_text: ['collaboration', 'platform', 'business', 'sync', 'collaboration', 'platform', 'business', 'dose', 'take', 'credential', 'sync', 'best'] list_processed_text: [['collaboration'], ['platform'], ['business'], ['sync'], ['collaboration'], ['platform'], ['business'], ['dose'], ['take'], ['credential'], ['sync'], ['best']] k: 6335 len: <class 'list'> Data: ['one', 'user', 'cannot', 'receive', 'mail', 'bank', 'amrice', 'cashpro', 'online', 'hi', 'cannot', 'receive', 'mail', 'bank', 'amrice', 'cashpro', 'online', 'mr', 'wanrtyg', 'partner', 'member', 'partner', 'staff', 'receive', 'mail', 'bank', 'please', 'resolve'] processed_text: ['one', 'user', 'cannot', 'receive', 'mail', 'bank', 'amrice', 'cashpro', 'online', 'hi', 'cannot', 'receive', 'mail', 'bank', 'amrice', 'cashpro', 'online', 'mr', 'wanrtyg', 'partner', 'member', 'partner', 'staff', 'receive', 'mail', 'bank', 'please', 'resolve'] list_processed_text: [['one'], ['user'], ['cannot'], ['receive'], ['mail'], ['bank'], ['amrice'], ['cashpro'], ['online'], ['hi'], ['cannot'], ['receive'], ['mail'], ['bank'], ['amrice'], ['cashpro'], ['online'], ['mr'], ['wanrtyg'], ['partner'], ['member'], ['partner'], ['staff'], ['receive'], ['mail'], ['bank'], ['please'], ['resolve']] k: 6336 len: <class 'list'> Data: ['profile', 'email', 'client', 'setup', 'ghkkytu', 'configure', 'user', 'login', 'mail', 'detail'] processed_text: ['profile', 'email', 'client', 'setup', 'ghkkytu', 'configure', 'user', 'login', 'mail', 'detail'] list_processed_text: [['profile'], ['email'], ['client'], ['setup'], ['ghkkytu'], ['configure'], ['user'], ['login'], ['mail'], ['detail']] k: 6337 len: <class 'list'> Data: ['reinstall', 'reinstall'] processed_text: ['reinstall', 'reinstall'] list_processed_text: [['reinstall'], ['reinstall']] k: 6338 len: <class 'list'> Data: ['o', 'installation', 'reimage', 'laptop'] processed_text: ['o', 'installation', 'reimage', 'laptop'] list_processed_text: [['o'], ['installation'], ['reimage'], ['laptop']] k: 6339 len: <class 'list'> Data: ['o', 'installation', 'o', 'reinstallation', 'laptop'] processed_text: ['o', 'installation', 'o', 'reinstallation', 'laptop'] list_processed_text: [['o'], ['installation'], ['o'], ['reinstallation'], ['laptop']] k: 6340 len: <class 'list'> Data: ['abend', 'batch', 'job', 'job', 'e', 'job', 'name', 'job', 'abended'] processed_text: ['abend', 'batch', 'job', 'job', 'e', 'job', 'name', 'job', 'abended'] list_processed_text: [['abend'], ['batch'], ['job'], ['job'], ['e'], ['job'], ['name'], ['job'], ['abended']] k: 6341 len: <class 'list'> Data: ['inwarehouse', 'tool', 'creating', 'hi', 'team', 'delivery', 'creating', 'inwarehouse', 'tool', 'cannot', 'see', 'reason', 'creating', 'please', 'resolve', 'issue'] processed_text: ['inwarehouse', 'tool', 'creating', 'hi', 'team', 'delivery', 'creating', 'inwarehouse', 'tool', 'cannot', 'see', 'reason', 'creating', 'please', 'resolve', 'issue'] list_processed_text: [['inwarehouse'], ['tool'], ['creating'], ['hi'], ['team'], ['delivery'], ['creating'], ['inwarehouse'], ['tool'], ['cannot'], ['see'], ['reason'], ['creating'], ['please'], ['resolve'], ['issue']] k: 6342 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6343 len: <class 'list'> Data: ['vip', 'login', 'issue', 'login', 'issue', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['vip', 'login', 'issue', 'login', 'issue', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['vip'], ['login'], ['issue'], ['login'], ['issue'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6344 len: <class 'list'> Data: ['global', 'telecom', 'two', 'one', 'connected', 'signal', 'limited', 'name', 'lertfty', 'zuothryrt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'global', 'telecom', 'two', 'one', 'connected', 'signal', 'limited'] processed_text: ['global', 'telecom', 'two', 'one', 'connected', 'signal', 'limited', 'name', 'lertfty', 'zuothryrt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'global', 'telecom', 'two', 'one', 'connected', 'signal', 'limited'] list_processed_text: [['global'], ['telecom'], ['two'], ['one'], ['connected'], ['signal'], ['limited'], ['name'], ['lertfty'], ['zuothryrt'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['global'], ['telecom'], ['two'], ['one'], ['connected'], ['signal'], ['limited']] k: 6345 len: <class 'list'> Data: ['folder', 'access', 'hostname', 'team', 'kvp', 'projekte', 'permission', 'write', 'read', 'location', 'germany'] processed_text: ['folder', 'access', 'hostname', 'team', 'kvp', 'projekte', 'permission', 'write', 'read', 'location', 'germany'] list_processed_text: [['folder'], ['access'], ['hostname'], ['team'], ['kvp'], ['projekte'], ['permission'], ['write'], ['read'], ['location'], ['germany']] k: 6346 len: <class 'list'> Data: ['mii', 'password', 'reset', 'wiggrtgyis', 'mii', 'password', 'reset', 'wiggrtgyis'] processed_text: ['mii', 'password', 'reset', 'wiggrtgyis', 'mii', 'password', 'reset', 'wiggrtgyis'] list_processed_text: [['mii'], ['password'], ['reset'], ['wiggrtgyis'], ['mii'], ['password'], ['reset'], ['wiggrtgyis']] k: 6347 len: <class 'list'> Data: ['hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service'] processed_text: ['hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service', 'hostname', 'erp', 'search', 'server', 'server', 'erpstartsrv', 'exe', 'service'] list_processed_text: [['hostname'], ['erp'], ['search'], ['server'], ['server'], ['erpstartsrv'], ['exe'], ['service'], ['hostname'], ['erp'], ['search'], ['server'], ['server'], ['erpstartsrv'], ['exe'], ['service']] k: 6348 len: <class 'list'> Data: ['vtykrubi', 'whsipqno', 'title', 'good', 'afternoon', 'noticed', 'rtgyon', 'title', 'incorrect', 'skype', 'correct', 'chairman', 'company', 'president', 'ceo'] processed_text: ['vtykrubi', 'whsipqno', 'title', 'good', 'afternoon', 'noticed', 'rtgyon', 'title', 'incorrect', 'skype', 'correct', 'chairman', 'company', 'president', 'ceo'] list_processed_text: [['vtykrubi'], ['whsipqno'], ['title'], ['good'], ['afternoon'], ['noticed'], ['rtgyon'], ['title'], ['incorrect'], ['skype'], ['correct'], ['chairman'], ['company'], ['president'], ['ceo']] k: 6349 len: <class 'list'> Data: ['trailing', 'mail', 'trailing', 'mail'] processed_text: ['trailing', 'mail', 'trailing', 'mail'] list_processed_text: [['trailing'], ['mail'], ['trailing'], ['mail']] k: 6350 len: <class 'list'> Data: ['using', 'collaboration', 'platform', 'crm', 'collaboration', 'platform', 'notebook', 'shared', 'people', 'know', 'dind', 'share', 'noteb', 'collaboration', 'platform', 'notebook', 'shared', 'people', 'know', 'share', 'notebook', 'cannot', 'remove', 'shared', 'status', 'possible'] processed_text: ['using', 'collaboration', 'platform', 'crm', 'collaboration', 'platform', 'notebook', 'shared', 'people', 'know', 'dind', 'share', 'noteb', 'collaboration', 'platform', 'notebook', 'shared', 'people', 'know', 'share', 'notebook', 'cannot', 'remove', 'shared', 'status', 'possible'] list_processed_text: [['using'], ['collaboration'], ['platform'], ['crm'], ['collaboration'], ['platform'], ['notebook'], ['shared'], ['people'], ['know'], ['dind'], ['share'], ['noteb'], ['collaboration'], ['platform'], ['notebook'], ['shared'], ['people'], ['know'], ['share'], ['notebook'], ['cannot'], ['remove'], ['shared'], ['status'], ['possible']] k: 6351 len: <class 'list'> Data: ['error', 'erp', 'error', 'erp'] processed_text: ['error', 'erp', 'error', 'erp'] list_processed_text: [['error'], ['erp'], ['error'], ['erp']] k: 6352 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 6353 len: <class 'list'> Data: ['need', 'see', 'unread', 'email', 'need', 'see', 'unread', 'email'] processed_text: ['need', 'see', 'unread', 'email', 'need', 'see', 'unread', 'email'] list_processed_text: [['need'], ['see'], ['unread'], ['email'], ['need'], ['see'], ['unread'], ['email']] k: 6354 len: <class 'list'> Data: ['access', 'bobj', 'access', 'bobj'] processed_text: ['access', 'bobj', 'access', 'bobj'] list_processed_text: [['access'], ['bobj'], ['access'], ['bobj']] k: 6355 len: <class 'list'> Data: ['multiple', 'page', 'print', 'printing', 'single', 'email', 'multiple', 'page', 'print', 'printing', 'single', 'email', 'checked', 'driver', 'setting', 'updated', 'printer', 'driver', 'abl', 'eto', 'print', 'single', 'word', 'excel', 'pdf', 'document', 'user', 'try', 'print', 'email', 'outlook', 'show', 'multiple', 'page', 'see', 'attachment'] processed_text: ['multiple', 'page', 'print', 'printing', 'single', 'email', 'multiple', 'page', 'print', 'printing', 'single', 'email', 'checked', 'driver', 'setting', 'updated', 'printer', 'driver', 'abl', 'eto', 'print', 'single', 'word', 'excel', 'pdf', 'document', 'user', 'try', 'print', 'email', 'outlook', 'show', 'multiple', 'page', 'see', 'attachment'] list_processed_text: [['multiple'], ['page'], ['print'], ['printing'], ['single'], ['email'], ['multiple'], ['page'], ['print'], ['printing'], ['single'], ['email'], ['checked'], ['driver'], ['setting'], ['updated'], ['printer'], ['driver'], ['abl'], ['eto'], ['print'], ['single'], ['word'], ['excel'], ['pdf'], ['document'], ['user'], ['try'], ['print'], ['email'], ['outlook'], ['show'], ['multiple'], ['page'], ['see'], ['attachment']] k: 6356 len: <class 'list'> Data: ['delay', 'email', 'sending', 'dear', 'please', 'explain', 'delay', 'email', 'sending', 'possible', 'earlier', 'outlook', 'version', 'current', 'version', 'outlook', 'delayed', 'sending', 'work', 'computer', 'outlook', 'shut', 'email', 'sent', 'restart', 'outlook', 'chance', 'fix'] processed_text: ['delay', 'email', 'sending', 'dear', 'please', 'explain', 'delay', 'email', 'sending', 'possible', 'earlier', 'outlook', 'version', 'current', 'version', 'outlook', 'delayed', 'sending', 'work', 'computer', 'outlook', 'shut', 'email', 'sent', 'restart', 'outlook', 'chance', 'fix'] list_processed_text: [['delay'], ['email'], ['sending'], ['dear'], ['please'], ['explain'], ['delay'], ['email'], ['sending'], ['possible'], ['earlier'], ['outlook'], ['version'], ['current'], ['version'], ['outlook'], ['delayed'], ['sending'], ['work'], ['computer'], ['outlook'], ['shut'], ['email'], ['sent'], ['restart'], ['outlook'], ['chance'], ['fix']] k: 6357 len: <class 'list'> Data: ['add', 'role', 'access', 'recruit', 'hi', 'please', 'also', 'add', 'er', 'rcf', 'recruiter', 'role', 'imzctxhr', 'odmawbij', 'jusfrttin', 'gtehdnyuerrf', 'also'] processed_text: ['add', 'role', 'access', 'recruit', 'hi', 'please', 'also', 'add', 'er', 'rcf', 'recruiter', 'role', 'imzctxhr', 'odmawbij', 'jusfrttin', 'gtehdnyuerrf', 'also'] list_processed_text: [['add'], ['role'], ['access'], ['recruit'], ['hi'], ['please'], ['also'], ['add'], ['er'], ['rcf'], ['recruiter'], ['role'], ['imzctxhr'], ['odmawbij'], ['jusfrttin'], ['gtehdnyuerrf'], ['also']] k: 6358 len: <class 'list'> Data: ['skype', 'login', 'issue', 'hello', 'unable', 'sign', 'skype', 'several', 'day', 'best', 'debgrtybie', 'savgrtyuille', 'sr', 'corporate', 'paralegal'] processed_text: ['skype', 'login', 'issue', 'hello', 'unable', 'sign', 'skype', 'several', 'day', 'best', 'debgrtybie', 'savgrtyuille', 'sr', 'corporate', 'paralegal'] list_processed_text: [['skype'], ['login'], ['issue'], ['hello'], ['unable'], ['sign'], ['skype'], ['several'], ['day'], ['best'], ['debgrtybie'], ['savgrtyuille'], ['sr'], ['corporate'], ['paralegal']] k: 6359 len: <class 'list'> Data: ['hostname', 'volume', 'dev', 'software', 'server', 'hostname', 'space', 'consumed', 'remaining', 'hostname', 'volume', 'dev', 'software', 'server', 'hostname', 'space', 'consumed', 'remaining'] processed_text: ['hostname', 'volume', 'dev', 'software', 'server', 'hostname', 'space', 'consumed', 'remaining', 'hostname', 'volume', 'dev', 'software', 'server', 'hostname', 'space', 'consumed', 'remaining'] list_processed_text: [['hostname'], ['volume'], ['dev'], ['software'], ['server'], ['hostname'], ['space'], ['consumed'], ['remaining'], ['hostname'], ['volume'], ['dev'], ['software'], ['server'], ['hostname'], ['space'], ['consumed'], ['remaining']] k: 6360 len: <class 'list'> Data: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'java', 'server', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'java', 'server', 'epmsystem', 'service', 'monitor'] processed_text: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'java', 'server', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'java', 'server', 'epmsystem', 'service', 'monitor'] list_processed_text: [['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['java'], ['server'], ['epmsystem'], ['service'], ['monitor'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['java'], ['server'], ['epmsystem'], ['service'], ['monitor']] k: 6361 len: <class 'list'> Data: ['link', 'mail', 'say', 'forbidden', 'mail', 'training', 'email', 'hint', 'tip', 'create', 'signature', 'link', 'company', 'formatheywting', 'standard', 'forbidden', 'see'] processed_text: ['link', 'mail', 'say', 'forbidden', 'mail', 'training', 'email', 'hint', 'tip', 'create', 'signature', 'link', 'company', 'formatheywting', 'standard', 'forbidden', 'see'] list_processed_text: [['link'], ['mail'], ['say'], ['forbidden'], ['mail'], ['training'], ['email'], ['hint'], ['tip'], ['create'], ['signature'], ['link'], ['company'], ['formatheywting'], ['standard'], ['forbidden'], ['see']] k: 6362 len: <class 'list'> Data: ['undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'hello', 'undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'please', 'advise'] processed_text: ['undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'hello', 'undeliverable', 'mail', 'returned', 'ethic', 'mail', 'request', 'please', 'advise'] list_processed_text: [['undeliverable'], ['mail'], ['returned'], ['ethic'], ['mail'], ['request'], ['undeliverable'], ['mail'], ['returned'], ['ethic'], ['mail'], ['request'], ['hello'], ['undeliverable'], ['mail'], ['returned'], ['ethic'], ['mail'], ['request'], ['please'], ['advise']] k: 6363 len: <class 'list'> Data: ['erp', 'round', 'total', 'entered', 'total', 'order', 'erp', 'rounding', 'creating', 'cent', 'difference', 'order', 'one', 'causing', 'quite', 'bit', 'invoicing', 'payment', 'rejection'] processed_text: ['erp', 'round', 'total', 'entered', 'total', 'order', 'erp', 'rounding', 'creating', 'cent', 'difference', 'order', 'one', 'causing', 'quite', 'bit', 'invoicing', 'payment', 'rejection'] list_processed_text: [['erp'], ['round'], ['total'], ['entered'], ['total'], ['order'], ['erp'], ['rounding'], ['creating'], ['cent'], ['difference'], ['order'], ['one'], ['causing'], ['quite'], ['bit'], ['invoicing'], ['payment'], ['rejection']] k: 6364 len: <class 'list'> Data: ['scrap', 'reason', 'code', 'two', 'issue', 'two', 'issue', 'mii', 'asks', 'reason', 'code', 'scrap', 'quantity', 'entered', 'zero', 'operator', 'put', 'zero', 'sure', 'entering', 'scrap', 'intended', 'behavior', 'scrap', 'field', 'blank', 'zero', 'system', 'ask', 'scrap', 'reason', 'code', 'enter', 'invalid', 'reason', 'code', 'save', 'button', 'disabled', 'warning', 'message', 'operator', 'fix', 'invalid', 'data', 'close', 'confirmation', 'window', 'type', 'information', 'enter', 'fix'] processed_text: ['scrap', 'reason', 'code', 'two', 'issue', 'two', 'issue', 'mii', 'asks', 'reason', 'code', 'scrap', 'quantity', 'entered', 'zero', 'operator', 'put', 'zero', 'sure', 'entering', 'scrap', 'intended', 'behavior', 'scrap', 'field', 'blank', 'zero', 'system', 'ask', 'scrap', 'reason', 'code', 'enter', 'invalid', 'reason', 'code', 'save', 'button', 'disabled', 'warning', 'message', 'operator', 'fix', 'invalid', 'data', 'close', 'confirmation', 'window', 'type', 'information', 'enter', 'fix'] list_processed_text: [['scrap'], ['reason'], ['code'], ['two'], ['issue'], ['two'], ['issue'], ['mii'], ['asks'], ['reason'], ['code'], ['scrap'], ['quantity'], ['entered'], ['zero'], ['operator'], ['put'], ['zero'], ['sure'], ['entering'], ['scrap'], ['intended'], ['behavior'], ['scrap'], ['field'], ['blank'], ['zero'], ['system'], ['ask'], ['scrap'], ['reason'], ['code'], ['enter'], ['invalid'], ['reason'], ['code'], ['save'], ['button'], ['disabled'], ['warning'], ['message'], ['operator'], ['fix'], ['invalid'], ['data'], ['close'], ['confirmation'], ['window'], ['type'], ['information'], ['enter'], ['fix']] k: 6365 len: <class 'list'> Data: ['install', 'guardi', 'bank', 'hsbc', 'kindly', 'install', 'guardi', 'bank', 'hsbc', 'use', 'transa', 'e', 'pela', 'internet'] processed_text: ['install', 'guardi', 'bank', 'hsbc', 'kindly', 'install', 'guardi', 'bank', 'hsbc', 'use', 'transa', 'e', 'pela', 'internet'] list_processed_text: [['install'], ['guardi'], ['bank'], ['hsbc'], ['kindly'], ['install'], ['guardi'], ['bank'], ['hsbc'], ['use'], ['transa'], ['e'], ['pela'], ['internet']] k: 6366 len: <class 'list'> Data: ['user', 'called', 'know', 'outage', 'usa', 'user', 'called', 'know', 'outage', 'usa'] processed_text: ['user', 'called', 'know', 'outage', 'usa', 'user', 'called', 'know', 'outage', 'usa'] list_processed_text: [['user'], ['called'], ['know'], ['outage'], ['usa'], ['user'], ['called'], ['know'], ['outage'], ['usa']] k: 6367 len: <class 'list'> Data: ['job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['jobuacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['jobuacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 6368 len: <class 'list'> Data: ['job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] processed_text: ['job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler', 'job', 'jobuacyltoe', 'hxgaycze', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['jobuacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler'], ['job'], ['jobuacyltoe'], ['hxgaycze'], ['failed'], ['job'], ['scheduler']] k: 6369 len: <class 'list'> Data: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler']] k: 6370 len: <class 'list'> Data: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] processed_text: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] list_processed_text: [['svc'], ['ticket'], ['found'], ['nothing'], ['svc'], ['ticket'], ['found'], ['nothing']] k: 6371 len: <class 'list'> Data: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] processed_text: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] list_processed_text: [['svc'], ['ticket'], ['found'], ['nothing'], ['svc'], ['ticket'], ['found'], ['nothing']] k: 6372 len: <class 'list'> Data: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] processed_text: ['svc', 'ticket', 'found', 'nothing', 'svc', 'ticket', 'found', 'nothing'] list_processed_text: [['svc'], ['ticket'], ['found'], ['nothing'], ['svc'], ['ticket'], ['found'], ['nothing']] k: 6373 len: <class 'list'> Data: ['unlocked', 'account', 'password', 'manager', 'unlocked', 'account', 'password', 'manager'] processed_text: ['unlocked', 'account', 'password', 'manager', 'unlocked', 'account', 'password', 'manager'] list_processed_text: [['unlocked'], ['account'], ['password'], ['manager'], ['unlocked'], ['account'], ['password'], ['manager']] k: 6374 len: <class 'list'> Data: ['unable', 'open', 'original', 'engineering', 'tool', 'opening', 'original', 'engineering', 'tool', 'error', 'occurs', 'process', 'fetch', 'original', 'erp', 'system', 'jco', 'error'] processed_text: ['unable', 'open', 'original', 'engineering', 'tool', 'opening', 'original', 'engineering', 'tool', 'error', 'occurs', 'process', 'fetch', 'original', 'erp', 'system', 'jco', 'error'] list_processed_text: [['unable'], ['open'], ['original'], ['engineering'], ['tool'], ['opening'], ['original'], ['engineering'], ['tool'], ['error'], ['occurs'], ['process'], ['fetch'], ['original'], ['erp'], ['system'], ['jco'], ['error']] k: 6375 len: <class 'list'> Data: ['cannot', 'get', 'access', 'email', 'issue', 'yesterday', 'called', 'fixed', 'issue', 'back', 'work', 'today', 'still', 'cannot', 'get', 'email'] processed_text: ['cannot', 'get', 'access', 'email', 'issue', 'yesterday', 'called', 'fixed', 'issue', 'back', 'work', 'today', 'still', 'cannot', 'get', 'email'] list_processed_text: [['cannot'], ['get'], ['access'], ['email'], ['issue'], ['yesterday'], ['called'], ['fixed'], ['issue'], ['back'], ['work'], ['today'], ['still'], ['cannot'], ['get'], ['email']] k: 6376 len: <class 'list'> Data: ['unable', 'log', 'netweaver', 'unable', 'log', 'netweaver'] processed_text: ['unable', 'log', 'netweaver', 'unable', 'log', 'netweaver'] list_processed_text: [['unable'], ['log'], ['netweaver'], ['unable'], ['log'], ['netweaver']] k: 6377 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 6378 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6379 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6380 len: <class 'list'> Data: ['reset', 'password', 'igkqpndy', 'swqndxhl', 'telephony', 'software', 'hello', 'please', 'reset', 'password', 'user', 'duffym', 'forgotten', 'therefore', 'cannot', 'log', 'interaction', 'desktop', 'please', 'provide', 'magdalena', 'new', 'password'] processed_text: ['reset', 'password', 'igkqpndy', 'swqndxhl', 'telephony', 'software', 'hello', 'please', 'reset', 'password', 'user', 'duffym', 'forgotten', 'therefore', 'cannot', 'log', 'interaction', 'desktop', 'please', 'provide', 'magdalena', 'new', 'password'] list_processed_text: [['reset'], ['password'], ['igkqpndy'], ['swqndxhl'], ['telephony'], ['software'], ['hello'], ['please'], ['reset'], ['password'], ['user'], ['duffym'], ['forgotten'], ['therefore'], ['cannot'], ['log'], ['interaction'], ['desktop'], ['please'], ['provide'], ['magdalena'], ['new'], ['password']] k: 6381 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 6382 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 6383 len: <class 'list'> Data: ['currently', 'unable', 'post', 'inwarehouse', 'tool', 'doc', 'po', 'please', 'advice', 'proceed', 'currently', 'unable', 'post', 'inwarehouse', 'tool', 'doc', 'po', 'please', 'advice', 'proceed'] processed_text: ['currently', 'unable', 'post', 'inwarehouse', 'tool', 'doc', 'po', 'please', 'advice', 'proceed', 'currently', 'unable', 'post', 'inwarehouse', 'tool', 'doc', 'po', 'please', 'advice', 'proceed'] list_processed_text: [['currently'], ['unable'], ['post'], ['inwarehouse'], ['tool'], ['doc'], ['po'], ['please'], ['advice'], ['proceed'], ['currently'], ['unable'], ['post'], ['inwarehouse'], ['tool'], ['doc'], ['po'], ['please'], ['advice'], ['proceed']] k: 6384 len: <class 'list'> Data: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'failagain', 'failed', 'job', 'scheduler', 'job', 'hostname', 'failagain', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['failagain'], ['failed'], ['job'], ['scheduler']] k: 6385 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6386 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6387 len: <class 'list'> Data: ['mailbox', 'configuration', 'good', 'afternoon', 'writing', 'ask', 'thing', 'regarding', 'new', 'mailbox', 'name', 'email', 'address', 'sylvthryia', 'incorrect', 'amended', 'sylvthryia', 'possible', 'change', 'password', 'tried', 'online', 'application', 'state', 'impossible', 'would', 'like', 'able', 'access', 'mailbox', 'using', 'software', 'm', 'office', 'possible', 'would', 'configuration', 'data', 'used', 'would', 'like', 'update', 'signature', 'could', 'please', 'advise', 'done'] processed_text: ['mailbox', 'configuration', 'good', 'afternoon', 'writing', 'ask', 'thing', 'regarding', 'new', 'mailbox', 'name', 'email', 'address', 'sylvthryia', 'incorrect', 'amended', 'sylvthryia', 'possible', 'change', 'password', 'tried', 'online', 'application', 'state', 'impossible', 'would', 'like', 'able', 'access', 'mailbox', 'using', 'software', 'm', 'office', 'possible', 'would', 'configuration', 'data', 'used', 'would', 'like', 'update', 'signature', 'could', 'please', 'advise', 'done'] list_processed_text: [['mailbox'], ['configuration'], ['good'], ['afternoon'], ['writing'], ['ask'], ['thing'], ['regarding'], ['new'], ['mailbox'], ['name'], ['email'], ['address'], ['sylvthryia'], ['incorrect'], ['amended'], ['sylvthryia'], ['possible'], ['change'], ['password'], ['tried'], ['online'], ['application'], ['state'], ['impossible'], ['would'], ['like'], ['able'], ['access'], ['mailbox'], ['using'], ['software'], ['m'], ['office'], ['possible'], ['would'], ['configuration'], ['data'], ['used'], ['would'], ['like'], ['update'], ['signature'], ['could'], ['please'], ['advise'], ['done']] k: 6388 len: <class 'list'> Data: ['user', 'unable', 'log', 'onto', 'ticketing', 'tool', 'userid', 'hntubjela', 'name', 'nivqoxyt', 'ivrhjmnx', 'user', 'unable', 'create', 'ticketing', 'tool', 'ticket'] processed_text: ['user', 'unable', 'log', 'onto', 'ticketing', 'tool', 'userid', 'hntubjela', 'name', 'nivqoxyt', 'ivrhjmnx', 'user', 'unable', 'create', 'ticketing', 'tool', 'ticket'] list_processed_text: [['user'], ['unable'], ['log'], ['onto'], ['ticketing'], ['tool'], ['userid'], ['hntubjela'], ['name'], ['nivqoxyt'], ['ivrhjmnx'], ['user'], ['unable'], ['create'], ['ticketing'], ['tool'], ['ticket']] k: 6389 len: <class 'list'> Data: ['tool', 'repoter', 'nwfodmhc', 'exurcwkm', 'pm', 'srujan', 'enterprise', 'nwfodmhc', 'exurcwkm', 'avsbdhyu', 'sahryu', 'sihtvocw', 'yspnqxgw', 'engineering', 'tool', 'hi', 'please', 'go', 'attachment', 'configure', 'accordingly', 'please', 'contact', 'u', 'back', 'still', 'face', 'issue'] processed_text: ['tool', 'repoter', 'nwfodmhc', 'exurcwkm', 'pm', 'srujan', 'enterprise', 'nwfodmhc', 'exurcwkm', 'avsbdhyu', 'sahryu', 'sihtvocw', 'yspnqxgw', 'engineering', 'tool', 'hi', 'please', 'go', 'attachment', 'configure', 'accordingly', 'please', 'contact', 'u', 'back', 'still', 'face', 'issue'] list_processed_text: [['tool'], ['repoter'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['srujan'], ['enterprise'], ['nwfodmhc'], ['exurcwkm'], ['avsbdhyu'], ['sahryu'], ['sihtvocw'], ['yspnqxgw'], ['engineering'], ['tool'], ['hi'], ['please'], ['go'], ['attachment'], ['configure'], ['accordingly'], ['please'], ['contact'], ['u'], ['back'], ['still'], ['face'], ['issue']] k: 6390 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6391 len: <class 'list'> Data: ['computer', 'lrrw', 'u', 'plant', 'location', 'user', 'bghrbie', 'crhyley', 'issue', 'excel', 'working', 'properly', 'keep', 'going', 'responding', 'restarted', 'several', 'time', 'correct', 'work', 'spreadsheet', 'save', 'minimize', 'open', 'back', 'restart', 'computer', 'open', 'excel', 'get', 'worksheet', 'happened', 'twice', 'idea', 'could', 'try'] processed_text: ['computer', 'lrrw', 'u', 'plant', 'location', 'user', 'bghrbie', 'crhyley', 'issue', 'excel', 'working', 'properly', 'keep', 'going', 'responding', 'restarted', 'several', 'time', 'correct', 'work', 'spreadsheet', 'save', 'minimize', 'open', 'back', 'restart', 'computer', 'open', 'excel', 'get', 'worksheet', 'happened', 'twice', 'idea', 'could', 'try'] list_processed_text: [['computer'], ['lrrw'], ['u'], ['plant'], ['location'], ['user'], ['bghrbie'], ['crhyley'], ['issue'], ['excel'], ['working'], ['properly'], ['keep'], ['going'], ['responding'], ['restarted'], ['several'], ['time'], ['correct'], ['work'], ['spreadsheet'], ['save'], ['minimize'], ['open'], ['back'], ['restart'], ['computer'], ['open'], ['excel'], ['get'], ['worksheet'], ['happened'], ['twice'], ['idea'], ['could'], ['try']] k: 6392 len: <class 'list'> Data: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'please', 'change', 'password'] processed_text: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'please', 'change', 'password'] list_processed_text: [['password'], ['reset'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['tiyhum'], ['kuyiomar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['hi'], ['please'], ['change'], ['password']] k: 6393 len: <class 'list'> Data: ['use', 'print', 'check', 'use', 'print', 'check'] processed_text: ['use', 'print', 'check', 'use', 'print', 'check'] list_processed_text: [['use'], ['print'], ['check'], ['use'], ['print'], ['check']] k: 6394 len: <class 'list'> Data: ['urgent', 'highlighted', 'attachment', 'showing', 'active', 'account', 'crm', 'highlighted', 'attachment', 'showing', 'active', 'account', 'crm', 'phone'] processed_text: ['urgent', 'highlighted', 'attachment', 'showing', 'active', 'account', 'crm', 'highlighted', 'attachment', 'showing', 'active', 'account', 'crm', 'phone'] list_processed_text: [['urgent'], ['highlighted'], ['attachment'], ['showing'], ['active'], ['account'], ['crm'], ['highlighted'], ['attachment'], ['showing'], ['active'], ['account'], ['crm'], ['phone']] k: 6395 len: <class 'list'> Data: ['hostname', 'erp', 'sid', 'volume', 'dev', 'hd', 'server', 'space', 'consumed', 'space', 'available', 'mb', 'hostname', 'erp', 'sid', 'volume', 'dev', 'hd', 'server', 'space', 'consumed', 'space', 'available', 'mb'] processed_text: ['hostname', 'erp', 'sid', 'volume', 'dev', 'hd', 'server', 'space', 'consumed', 'space', 'available', 'mb', 'hostname', 'erp', 'sid', 'volume', 'dev', 'hd', 'server', 'space', 'consumed', 'space', 'available', 'mb'] list_processed_text: [['hostname'], ['erp'], ['sid'], ['volume'], ['dev'], ['hd'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['mb'], ['hostname'], ['erp'], ['sid'], ['volume'], ['dev'], ['hd'], ['server'], ['space'], ['consumed'], ['space'], ['available'], ['mb']] k: 6396 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6397 len: <class 'list'> Data: ['outlook', 'continuously', 'asking', 'password', 'outlook', 'continuously', 'asking', 'password'] processed_text: ['outlook', 'continuously', 'asking', 'password', 'outlook', 'continuously', 'asking', 'password'] list_processed_text: [['outlook'], ['continuously'], ['asking'], ['password'], ['outlook'], ['continuously'], ['asking'], ['password']] k: 6398 len: <class 'list'> Data: ['unable', 'attach', 'document', 'erp', 'unable', 'attach', 'document', 'erp'] processed_text: ['unable', 'attach', 'document', 'erp', 'unable', 'attach', 'document', 'erp'] list_processed_text: [['unable'], ['attach'], ['document'], ['erp'], ['unable'], ['attach'], ['document'], ['erp']] k: 6399 len: <class 'list'> Data: ['netweaver', 'locked', 'netweaver', 'locked'] processed_text: ['netweaver', 'locked', 'netweaver', 'locked'] list_processed_text: [['netweaver'], ['locked'], ['netweaver'], ['locked']] k: 6400 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 6401 len: <class 'list'> Data: ['telephony', 'software', 'software', 'configured', 'telephony', 'software', 'software', 'configured'] processed_text: ['telephony', 'software', 'software', 'configured', 'telephony', 'software', 'software', 'configured'] list_processed_text: [['telephony'], ['software'], ['software'], ['configured'], ['telephony'], ['software'], ['software'], ['configured']] k: 6402 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6403 len: <class 'list'> Data: ['unable', 'log', 'skype', 'cleared', 'skype', 'cache', 'file'] processed_text: ['unable', 'log', 'skype', 'cleared', 'skype', 'cache', 'file'] list_processed_text: [['unable'], ['log'], ['skype'], ['cleared'], ['skype'], ['cache'], ['file']] k: 6404 len: <class 'list'> Data: ['unknown', 'request', 'guest', 'wireless', 'access', 'hello', 'never', 'used', 'guest', 'wireless', 'access', 'system', 'today', 'entered', 'saw', 'entry', 'pending', 'account', 'familiar', 'please', 'check', 'attached', 'screenshot', 'security', 'threat', 'please', 'investigate'] processed_text: ['unknown', 'request', 'guest', 'wireless', 'access', 'hello', 'never', 'used', 'guest', 'wireless', 'access', 'system', 'today', 'entered', 'saw', 'entry', 'pending', 'account', 'familiar', 'please', 'check', 'attached', 'screenshot', 'security', 'threat', 'please', 'investigate'] list_processed_text: [['unknown'], ['request'], ['guest'], ['wireless'], ['access'], ['hello'], ['never'], ['used'], ['guest'], ['wireless'], ['access'], ['system'], ['today'], ['entered'], ['saw'], ['entry'], ['pending'], ['account'], ['familiar'], ['please'], ['check'], ['attached'], ['screenshot'], ['security'], ['threat'], ['please'], ['investigate']] k: 6405 len: <class 'list'> Data: ['fi', 'co', 'issue', 'sto', 'please', 'review', 'sto', 'user', 'receiving', 'error', 'message', 'please', 'enter', 'net', 'price', 'average', 'customer', 'net', 'price', 'material', 'vk', 'ztfn', 'erp', 'simulating', 'transfer', 'price', 'material', 'appear', 'sender', 'reciever', 'material', 'created', 'quantity', 'requsted', 'quantity', 'sto', 'number', 'error', 'code', 'plant', 'plant', 'please', 'enter', 'net', 'price'] processed_text: ['fi', 'co', 'issue', 'sto', 'please', 'review', 'sto', 'user', 'receiving', 'error', 'message', 'please', 'enter', 'net', 'price', 'average', 'customer', 'net', 'price', 'material', 'vk', 'ztfn', 'erp', 'simulating', 'transfer', 'price', 'material', 'appear', 'sender', 'reciever', 'material', 'created', 'quantity', 'requsted', 'quantity', 'sto', 'number', 'error', 'code', 'plant', 'plant', 'please', 'enter', 'net', 'price'] list_processed_text: [['fi'], ['co'], ['issue'], ['sto'], ['please'], ['review'], ['sto'], ['user'], ['receiving'], ['error'], ['message'], ['please'], ['enter'], ['net'], ['price'], ['average'], ['customer'], ['net'], ['price'], ['material'], ['vk'], ['ztfn'], ['erp'], ['simulating'], ['transfer'], ['price'], ['material'], ['appear'], ['sender'], ['reciever'], ['material'], ['created'], ['quantity'], ['requsted'], ['quantity'], ['sto'], ['number'], ['error'], ['code'], ['plant'], ['plant'], ['please'], ['enter'], ['net'], ['price']] k: 6406 len: <class 'list'> Data: ['install', 'engineering', 'tool', 'install', 'engineering', 'tool'] processed_text: ['install', 'engineering', 'tool', 'install', 'engineering', 'tool'] list_processed_text: [['install'], ['engineering'], ['tool'], ['install'], ['engineering'], ['tool']] k: 6407 len: <class 'list'> Data: ['netweaver', 'business', 'client', 'cannot', 'started', 'netweaver', 'business', 'client', 'cannot', 'started'] processed_text: ['netweaver', 'business', 'client', 'cannot', 'started', 'netweaver', 'business', 'client', 'cannot', 'started'] list_processed_text: [['netweaver'], ['business'], ['client'], ['cannot'], ['started'], ['netweaver'], ['business'], ['client'], ['cannot'], ['started']] k: 6408 len: <class 'list'> Data: ['eu', 'tool', 'sinterleitstand', 'sl', 'beilageproben', 'auswerten', 'form', 'beilage', 'und', 'tm', 'proben', 'input', 'ald', 'ald', 'data', 'currently', 'impossible', 'enter', 'data', 'cycle', 'following', 'furnace', 'ald', 'ald', 'ticket'] processed_text: ['eu', 'tool', 'sinterleitstand', 'sl', 'beilageproben', 'auswerten', 'form', 'beilage', 'und', 'tm', 'proben', 'input', 'ald', 'ald', 'data', 'currently', 'impossible', 'enter', 'data', 'cycle', 'following', 'furnace', 'ald', 'ald', 'ticket'] list_processed_text: [['eu'], ['tool'], ['sinterleitstand'], ['sl'], ['beilageproben'], ['auswerten'], ['form'], ['beilage'], ['und'], ['tm'], ['proben'], ['input'], ['ald'], ['ald'], ['data'], ['currently'], ['impossible'], ['enter'], ['data'], ['cycle'], ['following'], ['furnace'], ['ald'], ['ald'], ['ticket']] k: 6409 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 6410 len: <class 'list'> Data: ['account', 'getting', 'locked', 'window', 'account', 'getting', 'locked', 'window'] processed_text: ['account', 'getting', 'locked', 'window', 'account', 'getting', 'locked', 'window'] list_processed_text: [['account'], ['getting'], ['locked'], ['window'], ['account'], ['getting'], ['locked'], ['window']] k: 6411 len: <class 'list'> Data: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset'] processed_text: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset'] list_processed_text: [['supply'], ['chain'], ['software'], ['password'], ['reset'], ['supply'], ['chain'], ['software'], ['password'], ['reset']] k: 6412 len: <class 'list'> Data: ['lunch', 'rm', 'computer', 'employee', 'computer', 'mfg', 'lunch', 'rm'] processed_text: ['lunch', 'rm', 'computer', 'employee', 'computer', 'mfg', 'lunch', 'rm'] list_processed_text: [['lunch'], ['rm'], ['computer'], ['employee'], ['computer'], ['mfg'], ['lunch'], ['rm']] k: 6413 len: <class 'list'> Data: ['delivery', 'note', 'unable', 'inwarehouse', 'tool', 'four', 'delivery', 'error', 'indicates', 'block', 'block', 'order', 'delivery', 'mentioned', 'invoicing', 'try', 'manual', 'vf', 'error', 'billing', 'type', 'could', 'determined', 'block', 'billing', 'item', 'relevant', 'billing', 'need', 'resolved', 'month', 'end', 'question', 'please', 'contact', 'ibtvlfah', 'dtlwscma'] processed_text: ['delivery', 'note', 'unable', 'inwarehouse', 'tool', 'four', 'delivery', 'error', 'indicates', 'block', 'block', 'order', 'delivery', 'mentioned', 'invoicing', 'try', 'manual', 'vf', 'error', 'billing', 'type', 'could', 'determined', 'block', 'billing', 'item', 'relevant', 'billing', 'need', 'resolved', 'month', 'end', 'question', 'please', 'contact', 'ibtvlfah', 'dtlwscma'] list_processed_text: [['delivery'], ['note'], ['unable'], ['inwarehouse'], ['tool'], ['four'], ['delivery'], ['error'], ['indicates'], ['block'], ['block'], ['order'], ['delivery'], ['mentioned'], ['invoicing'], ['try'], ['manual'], ['vf'], ['error'], ['billing'], ['type'], ['could'], ['determined'], ['block'], ['billing'], ['item'], ['relevant'], ['billing'], ['need'], ['resolved'], ['month'], ['end'], ['question'], ['please'], ['contact'], ['ibtvlfah'], ['dtlwscma']] k: 6414 len: <class 'list'> Data: ['hostname', 'plm', 'conversion', 'server', 'kirty', 'alwaysupservice', 'exe', 'process', 'count', 'service', 'hostname', 'plm', 'conversion', 'server', 'kirty', 'alwaysupservice', 'exe', 'process', 'count', 'service'] processed_text: ['hostname', 'plm', 'conversion', 'server', 'kirty', 'alwaysupservice', 'exe', 'process', 'count', 'service', 'hostname', 'plm', 'conversion', 'server', 'kirty', 'alwaysupservice', 'exe', 'process', 'count', 'service'] list_processed_text: [['hostname'], ['plm'], ['conversion'], ['server'], ['kirty'], ['alwaysupservice'], ['exe'], ['process'], ['count'], ['service'], ['hostname'], ['plm'], ['conversion'], ['server'], ['kirty'], ['alwaysupservice'], ['exe'], ['process'], ['count'], ['service']] k: 6415 len: <class 'list'> Data: ['unable', 'access', 'drive', 'unable', 'access', 'drive'] processed_text: ['unable', 'access', 'drive', 'unable', 'access', 'drive'] list_processed_text: [['unable'], ['access'], ['drive'], ['unable'], ['access'], ['drive']] k: 6416 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6417 len: <class 'list'> Data: ['background', 'job', 'erp', 'inbox', 'export', 'excell', 'gui', 'upgrade', 'sa', 'report', 'scheduled', 'run', 'background', 'job', 'show', 'erp', 'inbox', 'allow', 'open', 'show', 'data', 'transmitted', 'however', 'excell', 'hang', 'data', 'show', 'occur', 'upgrade', 'occurred', 'already', 'logged', 'totally', 'erp', 'logged', 'see', 'correct', 'situation', 'success'] processed_text: ['background', 'job', 'erp', 'inbox', 'export', 'excell', 'gui', 'upgrade', 'sa', 'report', 'scheduled', 'run', 'background', 'job', 'show', 'erp', 'inbox', 'allow', 'open', 'show', 'data', 'transmitted', 'however', 'excell', 'hang', 'data', 'show', 'occur', 'upgrade', 'occurred', 'already', 'logged', 'totally', 'erp', 'logged', 'see', 'correct', 'situation', 'success'] list_processed_text: [['background'], ['job'], ['erp'], ['inbox'], ['export'], ['excell'], ['gui'], ['upgrade'], ['sa'], ['report'], ['scheduled'], ['run'], ['background'], ['job'], ['show'], ['erp'], ['inbox'], ['allow'], ['open'], ['show'], ['data'], ['transmitted'], ['however'], ['excell'], ['hang'], ['data'], ['show'], ['occur'], ['upgrade'], ['occurred'], ['already'], ['logged'], ['totally'], ['erp'], ['logged'], ['see'], ['correct'], ['situation'], ['success']] k: 6418 len: <class 'list'> Data: ['attendance', 'tool', 'intouch', 'clock', 'show', 'application', 'attendance', 'tool', 'intouch', 'clock', 'show', 'application'] processed_text: ['attendance', 'tool', 'intouch', 'clock', 'show', 'application', 'attendance', 'tool', 'intouch', 'clock', 'show', 'application'] list_processed_text: [['attendance'], ['tool'], ['intouch'], ['clock'], ['show'], ['application'], ['attendance'], ['tool'], ['intouch'], ['clock'], ['show'], ['application']] k: 6419 len: <class 'list'> Data: ['connection', 'server', 'connection', 'server', 'access', 'drive', 'germany'] processed_text: ['connection', 'server', 'connection', 'server', 'access', 'drive', 'germany'] list_processed_text: [['connection'], ['server'], ['connection'], ['server'], ['access'], ['drive'], ['germany']] k: 6420 len: <class 'list'> Data: ['laptop', 'crash', 'laptop', 'crash'] processed_text: ['laptop', 'crash', 'laptop', 'crash'] list_processed_text: [['laptop'], ['crash'], ['laptop'], ['crash']] k: 6421 len: <class 'list'> Data: ['israel', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et', 'emea', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et'] processed_text: ['israel', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et', 'emea', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et'] list_processed_text: [['israel'], ['israel'], ['company'], ['company'], ['eu'], ['isr'], ['mainswitch'], ['access'], ['sw'], ['since'], ['et'], ['emea'], ['israel'], ['company'], ['company'], ['eu'], ['isr'], ['mainswitch'], ['access'], ['sw'], ['since'], ['et']] k: 6422 len: <class 'list'> Data: ['server', 'public', 'folder', 'germany', 'available', 'hostname', 'public', 'available', 'new', 'server', 'name', 'germany', 'network', 'issue', 'could', 'solved'] processed_text: ['server', 'public', 'folder', 'germany', 'available', 'hostname', 'public', 'available', 'new', 'server', 'name', 'germany', 'network', 'issue', 'could', 'solved'] list_processed_text: [['server'], ['public'], ['folder'], ['germany'], ['available'], ['hostname'], ['public'], ['available'], ['new'], ['server'], ['name'], ['germany'], ['network'], ['issue'], ['could'], ['solved']] k: 6423 len: <class 'list'> Data: ['tengigabitethernet', 'connection', 'tech', 'top', 'msfc', 'tengigabitethernet', 'connection', 'tech', 'top', 'msfc'] processed_text: ['tengigabitethernet', 'connection', 'tech', 'top', 'msfc', 'tengigabitethernet', 'connection', 'tech', 'top', 'msfc'] list_processed_text: [['tengigabitethernet'], ['connection'], ['tech'], ['top'], ['msfc'], ['tengigabitethernet'], ['connection'], ['tech'], ['top'], ['msfc']] k: 6424 len: <class 'list'> Data: ['completed', 'order', 'form', 'vw', 'visible', 'md', 'mm', 'hello', 'completed', 'order', 'form', 'vw', 'visible', 'md', 'mm', 'please', 'see', 'attachment'] processed_text: ['completed', 'order', 'form', 'vw', 'visible', 'md', 'mm', 'hello', 'completed', 'order', 'form', 'vw', 'visible', 'md', 'mm', 'please', 'see', 'attachment'] list_processed_text: [['completed'], ['order'], ['form'], ['vw'], ['visible'], ['md'], ['mm'], ['hello'], ['completed'], ['order'], ['form'], ['vw'], ['visible'], ['md'], ['mm'], ['please'], ['see'], ['attachment']] k: 6425 len: <class 'list'> Data: ['audio', 'working', 'laptop', 'error', 'device', 'installed', 'error', 'computer', 'name', 'agvl', 'service', 'tag', 'jgqbt', 'phone'] processed_text: ['audio', 'working', 'laptop', 'error', 'device', 'installed', 'error', 'computer', 'name', 'agvl', 'service', 'tag', 'jgqbt', 'phone'] list_processed_text: [['audio'], ['working'], ['laptop'], ['error'], ['device'], ['installed'], ['error'], ['computer'], ['name'], ['agvl'], ['service'], ['tag'], ['jgqbt'], ['phone']] k: 6426 len: <class 'list'> Data: ['collaboration', 'platform', 'openning', 'collaboration', 'platform', 'openning'] processed_text: ['collaboration', 'platform', 'openning', 'collaboration', 'platform', 'openning'] list_processed_text: [['collaboration'], ['platform'], ['openning'], ['collaboration'], ['platform'], ['openning']] k: 6427 len: <class 'list'> Data: ['folder', 'access', 'hi', 'please', 'get', 'tghrloks', 'jbgcvlmf', 'user', 'id', 'nuerthytzg', 'access', 'folder', 'location', 'hostname', 'team', 'globalengservices', 'tcb', 'nc', 'file', 'hostname', 'team', 'globalengservices', 'tcb', 'nc', 'warm'] processed_text: ['folder', 'access', 'hi', 'please', 'get', 'tghrloks', 'jbgcvlmf', 'user', 'id', 'nuerthytzg', 'access', 'folder', 'location', 'hostname', 'team', 'globalengservices', 'tcb', 'nc', 'file', 'hostname', 'team', 'globalengservices', 'tcb', 'nc', 'warm'] list_processed_text: [['folder'], ['access'], ['hi'], ['please'], ['get'], ['tghrloks'], ['jbgcvlmf'], ['user'], ['id'], ['nuerthytzg'], ['access'], ['folder'], ['location'], ['hostname'], ['team'], ['globalengservices'], ['tcb'], ['nc'], ['file'], ['hostname'], ['team'], ['globalengservices'], ['tcb'], ['nc'], ['warm']] k: 6428 len: <class 'list'> Data: ['repair', 'pdf', 'creator', 'please', 'repair', 'pdf', 'creator', 'print', 'gia', 'sp', 'receipt', 'pdf', 'leaving', 'character'] processed_text: ['repair', 'pdf', 'creator', 'please', 'repair', 'pdf', 'creator', 'print', 'gia', 'sp', 'receipt', 'pdf', 'leaving', 'character'] list_processed_text: [['repair'], ['pdf'], ['creator'], ['please'], ['repair'], ['pdf'], ['creator'], ['print'], ['gia'], ['sp'], ['receipt'], ['pdf'], ['leaving'], ['character']] k: 6429 len: <class 'list'> Data: ['top', 'urgent', 'request', 'le', 'team', 'change', 'back', 'ki', 'inwarehouse', 'tool', 'sender', 'address', 'sale', 'orgr', 'germany', 'rth', 'wrong', 'address', 'ki', 'inwarehouse', 'tool', 'salsed', 'org', 'importance', 'high', 'ki', 'commercial', 'inwarehouse', 'tool', 'sale', 'org', 'print', 'wrong', 'sender', 'address', 'cause', 'legal', 'compliance', 'error', 'german', 'custom', 'revers', 'sale', 'org', 'address', 'company', 'infrastruture', 'gmbh', 'wehlauerstr', 'germany', 'today', 'please', 'confrim', 'estimated', 'time', 'change', 'sid', 'system', 'aspap'] processed_text: ['top', 'urgent', 'request', 'le', 'team', 'change', 'back', 'ki', 'inwarehouse', 'tool', 'sender', 'address', 'sale', 'orgr', 'germany', 'rth', 'wrong', 'address', 'ki', 'inwarehouse', 'tool', 'salsed', 'org', 'importance', 'high', 'ki', 'commercial', 'inwarehouse', 'tool', 'sale', 'org', 'print', 'wrong', 'sender', 'address', 'cause', 'legal', 'compliance', 'error', 'german', 'custom', 'revers', 'sale', 'org', 'address', 'company', 'infrastruture', 'gmbh', 'wehlauerstr', 'germany', 'today', 'please', 'confrim', 'estimated', 'time', 'change', 'sid', 'system', 'aspap'] list_processed_text: [['top'], ['urgent'], ['request'], ['le'], ['team'], ['change'], ['back'], ['ki'], ['inwarehouse'], ['tool'], ['sender'], ['address'], ['sale'], ['orgr'], ['germany'], ['rth'], ['wrong'], ['address'], ['ki'], ['inwarehouse'], ['tool'], ['salsed'], ['org'], ['importance'], ['high'], ['ki'], ['commercial'], ['inwarehouse'], ['tool'], ['sale'], ['org'], ['print'], ['wrong'], ['sender'], ['address'], ['cause'], ['legal'], ['compliance'], ['error'], ['german'], ['custom'], ['revers'], ['sale'], ['org'], ['address'], ['company'], ['infrastruture'], ['gmbh'], ['wehlauerstr'], ['germany'], ['today'], ['please'], ['confrim'], ['estimated'], ['time'], ['change'], ['sid'], ['system'], ['aspap']] k: 6430 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6431 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6432 len: <class 'list'> Data: ['able', 'save', 'file', 'hostname', 'able', 'save', 'file', 'hostname', 'reporting', 'report', 'saved'] processed_text: ['able', 'save', 'file', 'hostname', 'able', 'save', 'file', 'hostname', 'reporting', 'report', 'saved'] list_processed_text: [['able'], ['save'], ['file'], ['hostname'], ['able'], ['save'], ['file'], ['hostname'], ['reporting'], ['report'], ['saved']] k: 6433 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6434 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6435 len: <class 'list'> Data: ['vpn', 'accepting', 'password', 'hello', 'unable', 'login', 'vpn', 'showing', 'user', 'name', 'password', 'matching', 'accepting', 'current', 'password', 'checked', 'password', 'okay', 'please', 'help', 'resolve', 'issue'] processed_text: ['vpn', 'accepting', 'password', 'hello', 'unable', 'login', 'vpn', 'showing', 'user', 'name', 'password', 'matching', 'accepting', 'current', 'password', 'checked', 'password', 'okay', 'please', 'help', 'resolve', 'issue'] list_processed_text: [['vpn'], ['accepting'], ['password'], ['hello'], ['unable'], ['login'], ['vpn'], ['showing'], ['user'], ['name'], ['password'], ['matching'], ['accepting'], ['current'], ['password'], ['checked'], ['password'], ['okay'], ['please'], ['help'], ['resolve'], ['issue']] k: 6436 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6437 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6438 len: <class 'list'> Data: ['hostname', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'hostname', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['hostname', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'hostname', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['hostname'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe'], ['hostname'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 6439 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6440 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6441 len: <class 'list'> Data: ['cert', 'notification', 'network', 'outage', 'germany', 'formerly', 'germany', 'issue', 'unplanned', 'network', 'outage', 'germany', 'site', 'formerly', 'germany', 'network', 'resource', 'including', 'telephony', 'software', 'service', 'phone', 'number', 'gso', 'emea', 'unavailable', 'moment', 'fiber', 'cut', 'vicinity', 'site', 'caused', 'issue', 'german', 'telekom', 'contacted', 'fault', 'identified', 'service', 'expected', 'restored', 'edt', 'start', 'edt', 'estimated', 'time', 'recovery', 'unknown', 'time', 'affected', 'intranet', 'internet', 'resource', 'including', 'telephone', 'service', 'site', 'affected', 'known', 'workarounds', 'workarounds', 'available', 'moment', 'cause', 'suspected', 'fiber', 'cut', 'question', 'global', 'service', 'organization', 'leadership', 'bridge', 'line', 'established', 'order', 'provide', 'timely', 'update', 'line', 'open', 'business', 'unit', 'representative', 'well', 'management', 'leadership', 'bridge', 'line', 'open', 'edt', 'leadership', 'bridge', 'line'] processed_text: ['cert', 'notification', 'network', 'outage', 'germany', 'formerly', 'germany', 'issue', 'unplanned', 'network', 'outage', 'germany', 'site', 'formerly', 'germany', 'network', 'resource', 'including', 'telephony', 'software', 'service', 'phone', 'number', 'gso', 'emea', 'unavailable', 'moment', 'fiber', 'cut', 'vicinity', 'site', 'caused', 'issue', 'german', 'telekom', 'contacted', 'fault', 'identified', 'service', 'expected', 'restored', 'edt', 'start', 'edt', 'estimated', 'time', 'recovery', 'unknown', 'time', 'affected', 'intranet', 'internet', 'resource', 'including', 'telephone', 'service', 'site', 'affected', 'known', 'workarounds', 'workarounds', 'available', 'moment', 'cause', 'suspected', 'fiber', 'cut', 'question', 'global', 'service', 'organization', 'leadership', 'bridge', 'line', 'established', 'order', 'provide', 'timely', 'update', 'line', 'open', 'business', 'unit', 'representative', 'well', 'management', 'leadership', 'bridge', 'line', 'open', 'edt', 'leadership', 'bridge', 'line'] list_processed_text: [['cert'], ['notification'], ['network'], ['outage'], ['germany'], ['formerly'], ['germany'], ['issue'], ['unplanned'], ['network'], ['outage'], ['germany'], ['site'], ['formerly'], ['germany'], ['network'], ['resource'], ['including'], ['telephony'], ['software'], ['service'], ['phone'], ['number'], ['gso'], ['emea'], ['unavailable'], ['moment'], ['fiber'], ['cut'], ['vicinity'], ['site'], ['caused'], ['issue'], ['german'], ['telekom'], ['contacted'], ['fault'], ['identified'], ['service'], ['expected'], ['restored'], ['edt'], ['start'], ['edt'], ['estimated'], ['time'], ['recovery'], ['unknown'], ['time'], ['affected'], ['intranet'], ['internet'], ['resource'], ['including'], ['telephone'], ['service'], ['site'], ['affected'], ['known'], ['workarounds'], ['workarounds'], ['available'], ['moment'], ['cause'], ['suspected'], ['fiber'], ['cut'], ['question'], ['global'], ['service'], ['organization'], ['leadership'], ['bridge'], ['line'], ['established'], ['order'], ['provide'], ['timely'], ['update'], ['line'], ['open'], ['business'], ['unit'], ['representative'], ['well'], ['management'], ['leadership'], ['bridge'], ['line'], ['open'], ['edt'], ['leadership'], ['bridge'], ['line']] k: 6442 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6443 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6444 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6445 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6446 len: <class 'list'> Data: ['access', 'bob', 'hello', 'access', 'bobj', 'need', 'help'] processed_text: ['access', 'bob', 'hello', 'access', 'bobj', 'need', 'help'] list_processed_text: [['access'], ['bob'], ['hello'], ['access'], ['bobj'], ['need'], ['help']] k: 6447 len: <class 'list'> Data: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw'] processed_text: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw'] list_processed_text: [['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw']] k: 6448 len: <class 'list'> Data: ['access', 'network', 'drive', 'hello', 'since', 'changed', 'password', 'access', 'network', 'drive', 'vpn', 'work', 'properly', 'thank', 'support', 'best', 'regard'] processed_text: ['access', 'network', 'drive', 'hello', 'since', 'changed', 'password', 'access', 'network', 'drive', 'vpn', 'work', 'properly', 'thank', 'support', 'best', 'regard'] list_processed_text: [['access'], ['network'], ['drive'], ['hello'], ['since'], ['changed'], ['password'], ['access'], ['network'], ['drive'], ['vpn'], ['work'], ['properly'], ['thank'], ['support'], ['best'], ['regard']] k: 6449 len: <class 'list'> Data: ['login', 'error', 'hello', 'logging', 'password', 'management', 'tool', 'password', 'manager', 'account', 'blocked', 'please', 'activate', 'old', 'password', 'log', 'sure', 'password', 'use', 'best', 'regard'] processed_text: ['login', 'error', 'hello', 'logging', 'password', 'management', 'tool', 'password', 'manager', 'account', 'blocked', 'please', 'activate', 'old', 'password', 'log', 'sure', 'password', 'use', 'best', 'regard'] list_processed_text: [['login'], ['error'], ['hello'], ['logging'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['account'], ['blocked'], ['please'], ['activate'], ['old'], ['password'], ['log'], ['sure'], ['password'], ['use'], ['best'], ['regard']] k: 6450 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'zheqafyo', 'bqirpxag', 'hi', 'ayrhcfxi', 'zartupsw', 'hello', 'paneer'] processed_text: ['ticket', 'update', 'inplant', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'zheqafyo', 'bqirpxag', 'hi', 'ayrhcfxi', 'zartupsw', 'hello', 'paneer'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['zheqafyo'], ['bqirpxag'], ['hi'], ['ayrhcfxi'], ['zartupsw'], ['hello'], ['paneer']] k: 6451 len: <class 'list'> Data: ['need', 'change', 'title', 'cuibfgna', 'cbmqufoa', 'outlook', 'production', 'manager', 'need', 'change', 'title', 'cuibfgna', 'cbmqufoa', 'outlook', 'production', 'manager'] processed_text: ['need', 'change', 'title', 'cuibfgna', 'cbmqufoa', 'outlook', 'production', 'manager', 'need', 'change', 'title', 'cuibfgna', 'cbmqufoa', 'outlook', 'production', 'manager'] list_processed_text: [['need'], ['change'], ['title'], ['cuibfgna'], ['cbmqufoa'], ['outlook'], ['production'], ['manager'], ['need'], ['change'], ['title'], ['cuibfgna'], ['cbmqufoa'], ['outlook'], ['production'], ['manager']] k: 6452 len: <class 'list'> Data: ['distributor', 'tool', 'overview', 'training', 'hello', 'thank', 'r', 'answer', 'tried', 'work', 'tried', 'username', 'password', 'use', 'also', 'tried', 'password', 'daypay', 'hbmwlprq', 'ilfvyodx', 'suggested', 'password', 'use', 'distinti', 'saluti,', 'best', 'regard'] processed_text: ['distributor', 'tool', 'overview', 'training', 'hello', 'thank', 'r', 'answer', 'tried', 'work', 'tried', 'username', 'password', 'use', 'also', 'tried', 'password', 'daypay', 'hbmwlprq', 'ilfvyodx', 'suggested', 'password', 'use', 'distinti', 'saluti,', 'best', 'regard'] list_processed_text: [['distributor'], ['tool'], ['overview'], ['training'], ['hello'], ['thank'], ['r'], ['answer'], ['tried'], ['work'], ['tried'], ['username'], ['password'], ['use'], ['also'], ['tried'], ['password'], ['daypay'], ['hbmwlprq'], ['ilfvyodx'], ['suggested'], ['password'], ['use'], ['distinti'], ['saluti,'], ['best'], ['regard']] k: 6453 len: <class 'list'> Data: ['issue', 'attendance', 'tool', 'hi', 'able', 'login', 'attendance', 'tool', 'website', 'also', 'available', 'hub'] processed_text: ['issue', 'attendance', 'tool', 'hi', 'able', 'login', 'attendance', 'tool', 'website', 'also', 'available', 'hub'] list_processed_text: [['issue'], ['attendance'], ['tool'], ['hi'], ['able'], ['login'], ['attendance'], ['tool'], ['website'], ['also'], ['available'], ['hub']] k: 6454 len: <class 'list'> Data: ['material', 'complaint', 'shipped', 'dfrt', 'going', 'normal', 'bin', 'issue', 'material', 'complaint', 'coming', 'location', 'plant', 'often', 'go', 'normal', 'bin', 'printed', 'transfer', 'order', 'receiver', 'place', 'normal', 'bin', 'location', 'example', 'delivery', 'complaint', 'could', 'pls', 'check', 'material', 'go', 'q', 'bin', 'location', 'automatically', 'pls', 'assign', 'le', 'team'] processed_text: ['material', 'complaint', 'shipped', 'dfrt', 'going', 'normal', 'bin', 'issue', 'material', 'complaint', 'coming', 'location', 'plant', 'often', 'go', 'normal', 'bin', 'printed', 'transfer', 'order', 'receiver', 'place', 'normal', 'bin', 'location', 'example', 'delivery', 'complaint', 'could', 'pls', 'check', 'material', 'go', 'q', 'bin', 'location', 'automatically', 'pls', 'assign', 'le', 'team'] list_processed_text: [['material'], ['complaint'], ['shipped'], ['dfrt'], ['going'], ['normal'], ['bin'], ['issue'], ['material'], ['complaint'], ['coming'], ['location'], ['plant'], ['often'], ['go'], ['normal'], ['bin'], ['printed'], ['transfer'], ['order'], ['receiver'], ['place'], ['normal'], ['bin'], ['location'], ['example'], ['delivery'], ['complaint'], ['could'], ['pls'], ['check'], ['material'], ['go'], ['q'], ['bin'], ['location'], ['automatically'], ['pls'], ['assign'], ['le'], ['team']] k: 6455 len: <class 'list'> Data: ['exel', 'file', 'openning', 'default', 'programdntym', 'open', 'changed', 'exel', 'file', 'openning', 'default', 'programdntym', 'open', 'changed'] processed_text: ['exel', 'file', 'openning', 'default', 'programdntym', 'open', 'changed', 'exel', 'file', 'openning', 'default', 'programdntym', 'open', 'changed'] list_processed_text: [['exel'], ['file'], ['openning'], ['default'], ['programdntym'], ['open'], ['changed'], ['exel'], ['file'], ['openning'], ['default'], ['programdntym'], ['open'], ['changed']] k: 6456 len: <class 'list'> Data: ['installing', 'cutview', 'installing', 'cutview'] processed_text: ['installing', 'cutview', 'installing', 'cutview'] list_processed_text: [['installing'], ['cutview'], ['installing'], ['cutview']] k: 6457 len: <class 'list'> Data: ['problem', 'mit', 'vpn', 'st', 'hrmann', 'niptbwdq', 'csenjruz', 'problem', 'mit', 'vpn', 'st', 'hrmann', 'niptbwdq', 'csenjruz'] processed_text: ['problem', 'mit', 'vpn', 'st', 'hrmann', 'niptbwdq', 'csenjruz', 'problem', 'mit', 'vpn', 'st', 'hrmann', 'niptbwdq', 'csenjruz'] list_processed_text: [['problem'], ['mit'], ['vpn'], ['st'], ['hrmann'], ['niptbwdq'], ['csenjruz'], ['problem'], ['mit'], ['vpn'], ['st'], ['hrmann'], ['niptbwdq'], ['csenjruz']] k: 6458 len: <class 'list'> Data: ['add', 'user', 'nuksytoh', 'whovmtez', 'sbcheyu', 'ad', 'group', 'eagcutview', 'add', 'user', 'nuksytoh', 'whovmtez', 'sbcheyu', 'ad', 'group', 'eagcutview'] processed_text: ['add', 'user', 'nuksytoh', 'whovmtez', 'sbcheyu', 'ad', 'group', 'eagcutview', 'add', 'user', 'nuksytoh', 'whovmtez', 'sbcheyu', 'ad', 'group', 'eagcutview'] list_processed_text: [['add'], ['user'], ['nuksytoh'], ['whovmtez'], ['sbcheyu'], ['ad'], ['group'], ['eagcutview'], ['add'], ['user'], ['nuksytoh'], ['whovmtez'], ['sbcheyu'], ['ad'], ['group'], ['eagcutview']] k: 6459 len: <class 'list'> Data: ['email', 'synchro', 'window', 'update', 'lumia', 'hello', 'yesterday', 'installed', 'new', 'window', 'update', 'lumia', 'email', 'synchronized', 'available', 'afternoon', 'case', 'need', 'best'] processed_text: ['email', 'synchro', 'window', 'update', 'lumia', 'hello', 'yesterday', 'installed', 'new', 'window', 'update', 'lumia', 'email', 'synchronized', 'available', 'afternoon', 'case', 'need', 'best'] list_processed_text: [['email'], ['synchro'], ['window'], ['update'], ['lumia'], ['hello'], ['yesterday'], ['installed'], ['new'], ['window'], ['update'], ['lumia'], ['email'], ['synchronized'], ['available'], ['afternoon'], ['case'], ['need'], ['best']] k: 6460 len: <class 'list'> Data: ['problem', 'shift', 'planning', 'xpugntjv', 'zcaermdt', 'problem', 'shift', 'planning', 'xpugntjv', 'zcaermdt'] processed_text: ['problem', 'shift', 'planning', 'xpugntjv', 'zcaermdt', 'problem', 'shift', 'planning', 'xpugntjv', 'zcaermdt'] list_processed_text: [['problem'], ['shift'], ['planning'], ['xpugntjv'], ['zcaermdt'], ['problem'], ['shift'], ['planning'], ['xpugntjv'], ['zcaermdt']] k: 6461 len: <class 'list'> Data: ['sale', 'order', 'committed', 'date', 'hello', 'please', 'check', 'system', 'allows', 'sundaycommitted', 'date'] processed_text: ['sale', 'order', 'committed', 'date', 'hello', 'please', 'check', 'system', 'allows', 'sundaycommitted', 'date'] list_processed_text: [['sale'], ['order'], ['committed'], ['date'], ['hello'], ['please'], ['check'], ['system'], ['allows'], ['sundaycommitted'], ['date']] k: 6462 len: <class 'list'> Data: ['company', 'guest', 'account', 'credential', 'unlock', 'ste', 'kind', 'regard', 'child'] processed_text: ['company', 'guest', 'account', 'credential', 'unlock', 'ste', 'kind', 'regard', 'child'] list_processed_text: [['company'], ['guest'], ['account'], ['credential'], ['unlock'], ['ste'], ['kind'], ['regard'], ['child']] k: 6463 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6464 len: <class 'list'> Data: ['able', 'open', 'powerpoint', 'hi', 'helpdesk', 'able', 'open', 'powerpoint', 'slide', 'asked', 'repair', 'error', 'message', 'clicking', 'repair', 'please', 'help'] processed_text: ['able', 'open', 'powerpoint', 'hi', 'helpdesk', 'able', 'open', 'powerpoint', 'slide', 'asked', 'repair', 'error', 'message', 'clicking', 'repair', 'please', 'help'] list_processed_text: [['able'], ['open'], ['powerpoint'], ['hi'], ['helpdesk'], ['able'], ['open'], ['powerpoint'], ['slide'], ['asked'], ['repair'], ['error'], ['message'], ['clicking'], ['repair'], ['please'], ['help']] k: 6465 len: <class 'list'> Data: ['probleme', 'mit', 'archiving', 'tool', 'bfqnvezs', 'vwkasnxe', 'probleme', 'mit', 'archiving', 'tool', 'bfqnvezs', 'vwkasnxe'] processed_text: ['probleme', 'mit', 'archiving', 'tool', 'bfqnvezs', 'vwkasnxe', 'probleme', 'mit', 'archiving', 'tool', 'bfqnvezs', 'vwkasnxe'] list_processed_text: [['probleme'], ['mit'], ['archiving'], ['tool'], ['bfqnvezs'], ['vwkasnxe'], ['probleme'], ['mit'], ['archiving'], ['tool'], ['bfqnvezs'], ['vwkasnxe']] k: 6466 len: <class 'list'> Data: ['problem', 'erpgui', 'sqlmtixr', 'urhbvfgd', 'problem', 'erpgui', 'sqlmtixr', 'urhbvfgd'] processed_text: ['problem', 'erpgui', 'sqlmtixr', 'urhbvfgd', 'problem', 'erpgui', 'sqlmtixr', 'urhbvfgd'] list_processed_text: [['problem'], ['erpgui'], ['sqlmtixr'], ['urhbvfgd'], ['problem'], ['erpgui'], ['sqlmtixr'], ['urhbvfgd']] k: 6467 len: <class 'list'> Data: ['problem', 'java', 'xmlbfjpg', 'yegzbvru', 'problem', 'java', 'xmlbfjpg', 'yegzbvru'] processed_text: ['problem', 'java', 'xmlbfjpg', 'yegzbvru', 'problem', 'java', 'xmlbfjpg', 'yegzbvru'] list_processed_text: [['problem'], ['java'], ['xmlbfjpg'], ['yegzbvru'], ['problem'], ['java'], ['xmlbfjpg'], ['yegzbvru']] k: 6468 len: <class 'list'> Data: ['error', 'log', 'vpn', 'server', 'hello', 'log', 'vpn', 'server', 'please', 'reset', 'password'] processed_text: ['error', 'log', 'vpn', 'server', 'hello', 'log', 'vpn', 'server', 'please', 'reset', 'password'] list_processed_text: [['error'], ['log'], ['vpn'], ['server'], ['hello'], ['log'], ['vpn'], ['server'], ['please'], ['reset'], ['password']] k: 6469 len: <class 'list'> Data: ['request', 'access', 'server', 'hostname', 'hostname', 'xkjuigsc', 'nrzykspt', 'quality', 'respect', 'ticket', 'received', 'access', 'security', 'team', 'open', 'data', 'designer', 'application', 'receiving', 'error', 'attached', 'incident', 'checked', 'mohgrtyan', 'rds', 'session', 'dev', 'bod', 'data', 'designer', 'working', 'fine', 'session', 'hence', 'request', 'assist', 'earliest', 'access', 'required', 'kt', 'upcoming', 'project', 'could', 'please', 'help', 'request'] processed_text: ['request', 'access', 'server', 'hostname', 'hostname', 'xkjuigsc', 'nrzykspt', 'quality', 'respect', 'ticket', 'received', 'access', 'security', 'team', 'open', 'data', 'designer', 'application', 'receiving', 'error', 'attached', 'incident', 'checked', 'mohgrtyan', 'rds', 'session', 'dev', 'bod', 'data', 'designer', 'working', 'fine', 'session', 'hence', 'request', 'assist', 'earliest', 'access', 'required', 'kt', 'upcoming', 'project', 'could', 'please', 'help', 'request'] list_processed_text: [['request'], ['access'], ['server'], ['hostname'], ['hostname'], ['xkjuigsc'], ['nrzykspt'], ['quality'], ['respect'], ['ticket'], ['received'], ['access'], ['security'], ['team'], ['open'], ['data'], ['designer'], ['application'], ['receiving'], ['error'], ['attached'], ['incident'], ['checked'], ['mohgrtyan'], ['rds'], ['session'], ['dev'], ['bod'], ['data'], ['designer'], ['working'], ['fine'], ['session'], ['hence'], ['request'], ['assist'], ['earliest'], ['access'], ['required'], ['kt'], ['upcoming'], ['project'], ['could'], ['please'], ['help'], ['request']] k: 6470 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'wqfzjycu', 'omleknjd', 'ticket', 'update', 'ticket', 'wqfzjycu', 'omleknjd'] processed_text: ['ticket', 'update', 'ticket', 'wqfzjycu', 'omleknjd', 'ticket', 'update', 'ticket', 'wqfzjycu', 'omleknjd'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['wqfzjycu'], ['omleknjd'], ['ticket'], ['update'], ['ticket'], ['wqfzjycu'], ['omleknjd']] k: 6471 len: <class 'list'> Data: ['please', 'move', 'stock', 'sale', 'order', 'unrestricted', 'stock', 'mm', 'pc', 'please', 'move', 'stock', 'sale', 'order', 'unrestricted', 'stock', 'mm', 'pc', 'due', 'csr', 'allowed', 'stock', 'movement', 'kindly', 'help', 'advise', 'back', 'u', 'aerp'] processed_text: ['please', 'move', 'stock', 'sale', 'order', 'unrestricted', 'stock', 'mm', 'pc', 'please', 'move', 'stock', 'sale', 'order', 'unrestricted', 'stock', 'mm', 'pc', 'due', 'csr', 'allowed', 'stock', 'movement', 'kindly', 'help', 'advise', 'back', 'u', 'aerp'] list_processed_text: [['please'], ['move'], ['stock'], ['sale'], ['order'], ['unrestricted'], ['stock'], ['mm'], ['pc'], ['please'], ['move'], ['stock'], ['sale'], ['order'], ['unrestricted'], ['stock'], ['mm'], ['pc'], ['due'], ['csr'], ['allowed'], ['stock'], ['movement'], ['kindly'], ['help'], ['advise'], ['back'], ['u'], ['aerp']] k: 6472 len: <class 'list'> Data: ['messsgeraete', 'alkoana', 'pdf', 'file', 'cannot', 'printed', 'messsgeraete', 'alkoana', 'pdf', 'file', 'cannot', 'printed', 'pdf', 'file', 'cannot', 'created'] processed_text: ['messsgeraete', 'alkoana', 'pdf', 'file', 'cannot', 'printed', 'messsgeraete', 'alkoana', 'pdf', 'file', 'cannot', 'printed', 'pdf', 'file', 'cannot', 'created'] list_processed_text: [['messsgeraete'], ['alkoana'], ['pdf'], ['file'], ['cannot'], ['printed'], ['messsgeraete'], ['alkoana'], ['pdf'], ['file'], ['cannot'], ['printed'], ['pdf'], ['file'], ['cannot'], ['created']] k: 6473 len: <class 'list'> Data: ['account', 'lock', 'ad', 'account', 'lock', 'ad'] processed_text: ['account', 'lock', 'ad', 'account', 'lock', 'ad'] list_processed_text: [['account'], ['lock'], ['ad'], ['account'], ['lock'], ['ad']] k: 6474 len: <class 'list'> Data: ['engineering', 'tool', 'business', 'client', 'vpn', 'engineering', 'tool', 'issue', 'engineering', 'tool', 'business', 'client', 'vpn', 'engineering', 'tool', 'issue'] processed_text: ['engineering', 'tool', 'business', 'client', 'vpn', 'engineering', 'tool', 'issue', 'engineering', 'tool', 'business', 'client', 'vpn', 'engineering', 'tool', 'issue'] list_processed_text: [['engineering'], ['tool'], ['business'], ['client'], ['vpn'], ['engineering'], ['tool'], ['issue'], ['engineering'], ['tool'], ['business'], ['client'], ['vpn'], ['engineering'], ['tool'], ['issue']] k: 6475 len: <class 'list'> Data: ['engineering', 'tool', 'loin', 'engineering', 'tool', 'loin'] processed_text: ['engineering', 'tool', 'loin', 'engineering', 'tool', 'loin'] list_processed_text: [['engineering'], ['tool'], ['loin'], ['engineering'], ['tool'], ['loin']] k: 6476 len: <class 'list'> Data: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] processed_text: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] list_processed_text: [['outlook'], ['prompting'], ['password'], ['outlook'], ['prompting'], ['password']] k: 6477 len: <class 'list'> Data: ['need', 'support', 'hello', 'material', 'use', 'purchasing', 'please', 'help', 'ehfvwltg', 'eakjbtoi', 'analyst', 'supply', 'planning', 'mail', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['need', 'support', 'hello', 'material', 'use', 'purchasing', 'please', 'help', 'ehfvwltg', 'eakjbtoi', 'analyst', 'supply', 'planning', 'mail', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['need'], ['support'], ['hello'], ['material'], ['use'], ['purchasing'], ['please'], ['help'], ['ehfvwltg'], ['eakjbtoi'], ['analyst'], ['supply'], ['planning'], ['mail'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 6478 len: <class 'list'> Data: ['wifi', 'company', 'guest', 'issue', 'apac', 'refer', 'inc', 'please', 'kindly', 'help', 'resolve', 'ticket', 'wifi', 'company', 'guest', 'slowly', 'please', 'advise', 'solution', 'fix', 'way', 'please', 'find', 'attached', 'wifi', 'package', 'apac', 'office', 'domestic', 'mbps', 'international', 'mbps', 'user', 'pax', 'office', 'please', 'kindly', 'suggestion', 'need', 'package', 'change', 'check', 'package', 'local', 'internet', 'provider', 'vendor'] processed_text: ['wifi', 'company', 'guest', 'issue', 'apac', 'refer', 'inc', 'please', 'kindly', 'help', 'resolve', 'ticket', 'wifi', 'company', 'guest', 'slowly', 'please', 'advise', 'solution', 'fix', 'way', 'please', 'find', 'attached', 'wifi', 'package', 'apac', 'office', 'domestic', 'mbps', 'international', 'mbps', 'user', 'pax', 'office', 'please', 'kindly', 'suggestion', 'need', 'package', 'change', 'check', 'package', 'local', 'internet', 'provider', 'vendor'] list_processed_text: [['wifi'], ['company'], ['guest'], ['issue'], ['apac'], ['refer'], ['inc'], ['please'], ['kindly'], ['help'], ['resolve'], ['ticket'], ['wifi'], ['company'], ['guest'], ['slowly'], ['please'], ['advise'], ['solution'], ['fix'], ['way'], ['please'], ['find'], ['attached'], ['wifi'], ['package'], ['apac'], ['office'], ['domestic'], ['mbps'], ['international'], ['mbps'], ['user'], ['pax'], ['office'], ['please'], ['kindly'], ['suggestion'], ['need'], ['package'], ['change'], ['check'], ['package'], ['local'], ['internet'], ['provider'], ['vendor']] k: 6479 len: <class 'list'> Data: ['received', 'call', 'hold', 'music', 'playing', 'side', 'disconnected', 'received', 'call', 'hold', 'music', 'playing', 'side', 'disconnected'] processed_text: ['received', 'call', 'hold', 'music', 'playing', 'side', 'disconnected', 'received', 'call', 'hold', 'music', 'playing', 'side', 'disconnected'] list_processed_text: [['received'], ['call'], ['hold'], ['music'], ['playing'], ['side'], ['disconnected'], ['received'], ['call'], ['hold'], ['music'], ['playing'], ['side'], ['disconnected']] k: 6480 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6481 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6482 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6483 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6484 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6485 len: <class 'list'> Data: ['price', 'error', 'good', 'receipt', 'po', 'sid', 'urgent', 'dear', 'team', 'erp', 'sid', 'module', 'two', 'error', 'good', 'receipt', 'po', 'po', 'po', 'po', 'net', 'price', 'po', 'quantity', 'po', 'price', 'good', 'receipt', 'price', 'usually', 'po', 'price', 'good', 'receipt', 'price', 'price', 'two', 'case', 'please', 'help', 'check', 'reason'] processed_text: ['price', 'error', 'good', 'receipt', 'po', 'sid', 'urgent', 'dear', 'team', 'erp', 'sid', 'module', 'two', 'error', 'good', 'receipt', 'po', 'po', 'po', 'po', 'net', 'price', 'po', 'quantity', 'po', 'price', 'good', 'receipt', 'price', 'usually', 'po', 'price', 'good', 'receipt', 'price', 'price', 'two', 'case', 'please', 'help', 'check', 'reason'] list_processed_text: [['price'], ['error'], ['good'], ['receipt'], ['po'], ['sid'], ['urgent'], ['dear'], ['team'], ['erp'], ['sid'], ['module'], ['two'], ['error'], ['good'], ['receipt'], ['po'], ['po'], ['po'], ['po'], ['net'], ['price'], ['po'], ['quantity'], ['po'], ['price'], ['good'], ['receipt'], ['price'], ['usually'], ['po'], ['price'], ['good'], ['receipt'], ['price'], ['price'], ['two'], ['case'], ['please'], ['help'], ['check'], ['reason']] k: 6486 len: <class 'list'> Data: ['account', 'locked', 'password', 'expired', 'account', 'locked', 'password', 'expired'] processed_text: ['account', 'locked', 'password', 'expired', 'account', 'locked', 'password', 'expired'] list_processed_text: [['account'], ['locked'], ['password'], ['expired'], ['account'], ['locked'], ['password'], ['expired']] k: 6487 len: <class 'list'> Data: ['response', 'side', 'response', 'side'] processed_text: ['response', 'side', 'response', 'side'] list_processed_text: [['response'], ['side'], ['response'], ['side']] k: 6488 len: <class 'list'> Data: ['erp', 'login', 'account', 'locked', 'requesting', 'unlock', 'erp', 'login', 'account'] processed_text: ['erp', 'login', 'account', 'locked', 'requesting', 'unlock', 'erp', 'login', 'account'] list_processed_text: [['erp'], ['login'], ['account'], ['locked'], ['requesting'], ['unlock'], ['erp'], ['login'], ['account']] k: 6489 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6490 len: <class 'list'> Data: ['email', 'address', 'picking', 'automatic', 'email', 'address', 'picking', 'automatic'] processed_text: ['email', 'address', 'picking', 'automatic', 'email', 'address', 'picking', 'automatic'] list_processed_text: [['email'], ['address'], ['picking'], ['automatic'], ['email'], ['address'], ['picking'], ['automatic']] k: 6491 len: <class 'list'> Data: ['would', 'please', 'help', 'change', 'email', 'shipping', 'notification', 'customer', 'north', 'service', 'nwfodmhc', 'exurcwkm', 'tru', 'hello', 'help', 'would', 'please', 'help', 'change', 'email', 'shipping', 'notification', 'customer', 'yandy', 'pan', 'customer', 'experience', 'apac', 'north', 'team'] processed_text: ['would', 'please', 'help', 'change', 'email', 'shipping', 'notification', 'customer', 'north', 'service', 'nwfodmhc', 'exurcwkm', 'tru', 'hello', 'help', 'would', 'please', 'help', 'change', 'email', 'shipping', 'notification', 'customer', 'yandy', 'pan', 'customer', 'experience', 'apac', 'north', 'team'] list_processed_text: [['would'], ['please'], ['help'], ['change'], ['email'], ['shipping'], ['notification'], ['customer'], ['north'], ['service'], ['nwfodmhc'], ['exurcwkm'], ['tru'], ['hello'], ['help'], ['would'], ['please'], ['help'], ['change'], ['email'], ['shipping'], ['notification'], ['customer'], ['yandy'], ['pan'], ['customer'], ['experience'], ['apac'], ['north'], ['team']] k: 6492 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 6493 len: <class 'list'> Data: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'something', 'error', 'unable', 'create', 'urgent', 'plant'] processed_text: ['pls', 'help', 'create', 'delivery', 'note', 'sto', 'dear', 'would', 'pls', 'help', 'create', 'delivery', 'note', 'sto', 'something', 'error', 'unable', 'create', 'urgent', 'plant'] list_processed_text: [['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['dear'], ['would'], ['pls'], ['help'], ['create'], ['delivery'], ['note'], ['sto'], ['something'], ['error'], ['unable'], ['create'], ['urgent'], ['plant']] k: 6494 len: <class 'list'> Data: ['inc', 'fwd', 'collaboration', 'platform', 'tried', 'opening', 'discount', 'phone', 'appears', 'want', 'download', 'ap', 'phone', 'ok'] processed_text: ['inc', 'fwd', 'collaboration', 'platform', 'tried', 'opening', 'discount', 'phone', 'appears', 'want', 'download', 'ap', 'phone', 'ok'] list_processed_text: [['inc'], ['fwd'], ['collaboration'], ['platform'], ['tried'], ['opening'], ['discount'], ['phone'], ['appears'], ['want'], ['download'], ['ap'], ['phone'], ['ok']] k: 6495 len: <class 'list'> Data: ['m', 'excel', 'file', 'opening', 'error', 'procted', 'view', 'file', 'hang', 'm', 'excel', 'file', 'opening', 'error', 'procted', 'view', 'file', 'hang', 'connected', 'user', 'system', 'using', 'teamviewer', 'unchecked', 'proctected', 'view', 'option', 'caller', 'confirmed', 'able', 'ope', 'excel', 'file', 'issue', 'resolved'] processed_text: ['m', 'excel', 'file', 'opening', 'error', 'procted', 'view', 'file', 'hang', 'm', 'excel', 'file', 'opening', 'error', 'procted', 'view', 'file', 'hang', 'connected', 'user', 'system', 'using', 'teamviewer', 'unchecked', 'proctected', 'view', 'option', 'caller', 'confirmed', 'able', 'ope', 'excel', 'file', 'issue', 'resolved'] list_processed_text: [['m'], ['excel'], ['file'], ['opening'], ['error'], ['procted'], ['view'], ['file'], ['hang'], ['m'], ['excel'], ['file'], ['opening'], ['error'], ['procted'], ['view'], ['file'], ['hang'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['unchecked'], ['proctected'], ['view'], ['option'], ['caller'], ['confirmed'], ['able'], ['ope'], ['excel'], ['file'], ['issue'], ['resolved']] k: 6496 len: <class 'list'> Data: ['morning', 'could', 'log', 'computer', 'please', 'lock', 'computer', 'morning', 'could', 'log', 'computer', 'please', 'lock', 'computer', 'id', 'omokam', 'p', 'mizumoto'] processed_text: ['morning', 'could', 'log', 'computer', 'please', 'lock', 'computer', 'morning', 'could', 'log', 'computer', 'please', 'lock', 'computer', 'id', 'omokam', 'p', 'mizumoto'] list_processed_text: [['morning'], ['could'], ['log'], ['computer'], ['please'], ['lock'], ['computer'], ['morning'], ['could'], ['log'], ['computer'], ['please'], ['lock'], ['computer'], ['id'], ['omokam'], ['p'], ['mizumoto']] k: 6497 len: <class 'list'> Data: ['user', 'unable', 'hotel', 'wi', 'fi', 'user', 'unable', 'hotel', 'wi', 'fi', 'advised', 'user', 'shut', 'pc', 'sec', 'restart', 'device', 'opened', 'network', 'shatryung', 'center', 'enabled', 'wi', 'fi', 'connection', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['user', 'unable', 'hotel', 'wi', 'fi', 'user', 'unable', 'hotel', 'wi', 'fi', 'advised', 'user', 'shut', 'pc', 'sec', 'restart', 'device', 'opened', 'network', 'shatryung', 'center', 'enabled', 'wi', 'fi', 'connection', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['user'], ['unable'], ['hotel'], ['wi'], ['fi'], ['user'], ['unable'], ['hotel'], ['wi'], ['fi'], ['advised'], ['user'], ['shut'], ['pc'], ['sec'], ['restart'], ['device'], ['opened'], ['network'], ['shatryung'], ['center'], ['enabled'], ['wi'], ['fi'], ['connection'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6498 len: <class 'list'> Data: ['symantec', 'endpoint', 'encryption', 'see', 'agent', 'deployment', 'hello', 'believe', 'computer', 'downloaded', 'new', 'symantec', 'endpoint', 'encryption', 'see', 'agent', 'concerned', 'yet', 'received', 'email', 'almost', 'month', 'ago'] processed_text: ['symantec', 'endpoint', 'encryption', 'see', 'agent', 'deployment', 'hello', 'believe', 'computer', 'downloaded', 'new', 'symantec', 'endpoint', 'encryption', 'see', 'agent', 'concerned', 'yet', 'received', 'email', 'almost', 'month', 'ago'] list_processed_text: [['symantec'], ['endpoint'], ['encryption'], ['see'], ['agent'], ['deployment'], ['hello'], ['believe'], ['computer'], ['downloaded'], ['new'], ['symantec'], ['endpoint'], ['encryption'], ['see'], ['agent'], ['concerned'], ['yet'], ['received'], ['email'], ['almost'], ['month'], ['ago']] k: 6499 len: <class 'list'> Data: ['wfnbtpkg', 'ixecamwrs', 'email', 'inplant', 'marftgytins', 'email', 'filtered', 'removed', 'still', 'email', 'sent', 'marftgytin', 'instead', 'need', 'email', 'reset', 'outlook', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['wfnbtpkg', 'ixecamwrs', 'email', 'inplant', 'marftgytins', 'email', 'filtered', 'removed', 'still', 'email', 'sent', 'marftgytin', 'instead', 'need', 'email', 'reset', 'outlook', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['wfnbtpkg'], ['ixecamwrs'], ['email'], ['inplant'], ['marftgytins'], ['email'], ['filtered'], ['removed'], ['still'], ['email'], ['sent'], ['marftgytin'], ['instead'], ['need'], ['email'], ['reset'], ['outlook'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 6500 len: <class 'list'> Data: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6501 len: <class 'list'> Data: ['erp', 'login', 'sid', 'missing', 'erp', 'login', 'sid', 'missing', 'connected', 'user', 'system', 'using', 'teamviewer', 'configured', 'erp', 'sid', 'user', 'pc', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['erp', 'login', 'sid', 'missing', 'erp', 'login', 'sid', 'missing', 'connected', 'user', 'system', 'using', 'teamviewer', 'configured', 'erp', 'sid', 'user', 'pc', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['erp'], ['login'], ['sid'], ['missing'], ['erp'], ['login'], ['sid'], ['missing'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['configured'], ['erp'], ['sid'], ['user'], ['pc'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6502 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 6503 len: <class 'list'> Data: ['solidworks', 'simulation', 'hi', 'request', 'provide', 'detail', 'support', 'beacon', 'india', 'providing', 'technical', 'support', 'solidworks', 'usage', 'msg', 'design'] processed_text: ['solidworks', 'simulation', 'hi', 'request', 'provide', 'detail', 'support', 'beacon', 'india', 'providing', 'technical', 'support', 'solidworks', 'usage', 'msg', 'design'] list_processed_text: [['solidworks'], ['simulation'], ['hi'], ['request'], ['provide'], ['detail'], ['support'], ['beacon'], ['india'], ['providing'], ['technical'], ['support'], ['solidworks'], ['usage'], ['msg'], ['design']] k: 6504 len: <class 'list'> Data: ['unable', 'access', 'sale', 'markhtyeting', 'tab', 'unable', 'access', 'sale', 'markhtyeting', 'tab'] processed_text: ['unable', 'access', 'sale', 'markhtyeting', 'tab', 'unable', 'access', 'sale', 'markhtyeting', 'tab'] list_processed_text: [['unable'], ['access'], ['sale'], ['markhtyeting'], ['tab'], ['unable'], ['access'], ['sale'], ['markhtyeting'], ['tab']] k: 6505 len: <class 'list'> Data: ['skype', 'screen', 'share', 'issue', 'shatryung', 'screen', 'person', 'seeing', 'mouse', 'error', 'beshryu', 'screen', 'whenever', 'give', 'access', 'machine', 'view', 'appears', 'please', 'advise', 'correct', 'want', 'give', 'everyone', 'access', 'pc', 'order', 'screen', 'share'] processed_text: ['skype', 'screen', 'share', 'issue', 'shatryung', 'screen', 'person', 'seeing', 'mouse', 'error', 'beshryu', 'screen', 'whenever', 'give', 'access', 'machine', 'view', 'appears', 'please', 'advise', 'correct', 'want', 'give', 'everyone', 'access', 'pc', 'order', 'screen', 'share'] list_processed_text: [['skype'], ['screen'], ['share'], ['issue'], ['shatryung'], ['screen'], ['person'], ['seeing'], ['mouse'], ['error'], ['beshryu'], ['screen'], ['whenever'], ['give'], ['access'], ['machine'], ['view'], ['appears'], ['please'], ['advise'], ['correct'], ['want'], ['give'], ['everyone'], ['access'], ['pc'], ['order'], ['screen'], ['share']] k: 6506 len: <class 'list'> Data: ['receiving', 'following', 'notification', 'erp', 'sid', 'inbox', 'overwhelmed', 'notification', 'write', 'error', 'appear', 'related', 'south', 'amerirtca', 'fe', 'userid', 'affiliated', 'fe', 'transaction', 'see', 'attached', 'screenshot'] processed_text: ['receiving', 'following', 'notification', 'erp', 'sid', 'inbox', 'overwhelmed', 'notification', 'write', 'error', 'appear', 'related', 'south', 'amerirtca', 'fe', 'userid', 'affiliated', 'fe', 'transaction', 'see', 'attached', 'screenshot'] list_processed_text: [['receiving'], ['following'], ['notification'], ['erp'], ['sid'], ['inbox'], ['overwhelmed'], ['notification'], ['write'], ['error'], ['appear'], ['related'], ['south'], ['amerirtca'], ['fe'], ['userid'], ['affiliated'], ['fe'], ['transaction'], ['see'], ['attached'], ['screenshot']] k: 6507 len: <class 'list'> Data: ['errror', 'submitting', 'discount', 'request', 'form', 'collaboration', 'platform', 'hi', 'get', 'following', 'error', 'trying', 'submit', 'request', 'please', 'look', 'markhty'] processed_text: ['errror', 'submitting', 'discount', 'request', 'form', 'collaboration', 'platform', 'hi', 'get', 'following', 'error', 'trying', 'submit', 'request', 'please', 'look', 'markhty'] list_processed_text: [['errror'], ['submitting'], ['discount'], ['request'], ['form'], ['collaboration'], ['platform'], ['hi'], ['get'], ['following'], ['error'], ['trying'], ['submit'], ['request'], ['please'], ['look'], ['markhty']] k: 6508 len: <class 'list'> Data: ['power', 'outage', 'cantabria', 'site', 'hard', 'pm', 'et', 'backup', 'circuit', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'cantabria', 'site', 'hard', 'pm', 'et', 'backup', 'circuit', 'site', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['cantabria'], ['site'], ['hard'], ['pm'], ['et'], ['backup'], ['circuit'], ['site'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6509 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 6510 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 6511 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6512 len: <class 'list'> Data: ['blank', 'call', 'number', 'warehouse', 'tool', 'blank', 'call', 'number', 'warehouse', 'tool'] processed_text: ['blank', 'call', 'number', 'warehouse', 'tool', 'blank', 'call', 'number', 'warehouse', 'tool'] list_processed_text: [['blank'], ['call'], ['number'], ['warehouse'], ['tool'], ['blank'], ['call'], ['number'], ['warehouse'], ['tool']] k: 6513 len: <class 'list'> Data: ['erp', 'plm', 'change', 'bom', 'plant', 'please', 'change', 'mass', 'mm', 'plant'] processed_text: ['erp', 'plm', 'change', 'bom', 'plant', 'please', 'change', 'mass', 'mm', 'plant'] list_processed_text: [['erp'], ['plm'], ['change'], ['bom'], ['plant'], ['please'], ['change'], ['mass'], ['mm'], ['plant']] k: 6514 len: <class 'list'> Data: ['message', 'hostname', 'company', 'com', 'connected', 'connected', 'received', 'reporting', 'tool', 'alert', 'pm', 'et', 'hostname', 'company', 'com', 'connected', 'connected'] processed_text: ['message', 'hostname', 'company', 'com', 'connected', 'connected', 'received', 'reporting', 'tool', 'alert', 'pm', 'et', 'hostname', 'company', 'com', 'connected', 'connected'] list_processed_text: [['message'], ['hostname'], ['company'], ['com'], ['connected'], ['connected'], ['received'], ['reporting'], ['tool'], ['alert'], ['pm'], ['et'], ['hostname'], ['company'], ['com'], ['connected'], ['connected']] k: 6515 len: <class 'list'> Data: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'need', 'help', 'getting', 'phone', 'linked', 'email', 'skype', 'please', 'see', 'attached'] processed_text: ['employee', 'owned', 'mobility', 'agreement', 'hello', 'need', 'help', 'getting', 'phone', 'linked', 'email', 'skype', 'please', 'see', 'attached'] list_processed_text: [['employee'], ['owned'], ['mobility'], ['agreement'], ['hello'], ['need'], ['help'], ['getting'], ['phone'], ['linked'], ['email'], ['skype'], ['please'], ['see'], ['attached']] k: 6516 len: <class 'list'> Data: ['stock', 'transfer', 'order', 'error', 'pricing', 'transfer', 'pricing', 'user', 'attempting', 'create', 'stock', 'transfer', 'order', 'erp', 'following', 'situation', 'receiving', 'error', 'sender', 'reciever', 'material', 'created', 'quantity', 'requsted', 'quantity', 'sto', 'number', 'error', 'code', 'plant', 'plant', 'error', 'net', 'price', 'calculation', 'item', 'please', 'correct', 'plant', 'plant', 'please', 'enter', 'net', 'price', 'could', 'someone', 'please', 'review', 'rqfhiong', 'zkwfqagbs', 'pricing', 'see', 'error', 'received', 'analyst', 'creating', 'sto', 'average', 'customer', 'net', 'price', 'vk', 'zttf', 'exists', 'error', 'average', 'customer', 'net', 'price', 'exists', 'system', 'automatically', 'simulate', 'price'] processed_text: ['stock', 'transfer', 'order', 'error', 'pricing', 'transfer', 'pricing', 'user', 'attempting', 'create', 'stock', 'transfer', 'order', 'erp', 'following', 'situation', 'receiving', 'error', 'sender', 'reciever', 'material', 'created', 'quantity', 'requsted', 'quantity', 'sto', 'number', 'error', 'code', 'plant', 'plant', 'error', 'net', 'price', 'calculation', 'item', 'please', 'correct', 'plant', 'plant', 'please', 'enter', 'net', 'price', 'could', 'someone', 'please', 'review', 'rqfhiong', 'zkwfqagbs', 'pricing', 'see', 'error', 'received', 'analyst', 'creating', 'sto', 'average', 'customer', 'net', 'price', 'vk', 'zttf', 'exists', 'error', 'average', 'customer', 'net', 'price', 'exists', 'system', 'automatically', 'simulate', 'price'] list_processed_text: [['stock'], ['transfer'], ['order'], ['error'], ['pricing'], ['transfer'], ['pricing'], ['user'], ['attempting'], ['create'], ['stock'], ['transfer'], ['order'], ['erp'], ['following'], ['situation'], ['receiving'], ['error'], ['sender'], ['reciever'], ['material'], ['created'], ['quantity'], ['requsted'], ['quantity'], ['sto'], ['number'], ['error'], ['code'], ['plant'], ['plant'], ['error'], ['net'], ['price'], ['calculation'], ['item'], ['please'], ['correct'], ['plant'], ['plant'], ['please'], ['enter'], ['net'], ['price'], ['could'], ['someone'], ['please'], ['review'], ['rqfhiong'], ['zkwfqagbs'], ['pricing'], ['see'], ['error'], ['received'], ['analyst'], ['creating'], ['sto'], ['average'], ['customer'], ['net'], ['price'], ['vk'], ['zttf'], ['exists'], ['error'], ['average'], ['customer'], ['net'], ['price'], ['exists'], ['system'], ['automatically'], ['simulate'], ['price']] k: 6517 len: <class 'list'> Data: ['erp', 'login', 'error', 'message', 'error', 'message', 'state', 'specified', 'path', 'exist'] processed_text: ['erp', 'login', 'error', 'message', 'error', 'message', 'state', 'specified', 'path', 'exist'] list_processed_text: [['erp'], ['login'], ['error'], ['message'], ['error'], ['message'], ['state'], ['specified'], ['path'], ['exist']] k: 6518 len: <class 'list'> Data: ['cannot', 'get', 'access', 'email', 'ext', 'since', 'yesterday', 'unable', 'get', 'microsoft', 'email', 'usually', 'go', 'km', 'home', 'page', 'go', 'bookmarkhty', 'email', 'page', 'keep', 'loading', 'go', 'email', 'page'] processed_text: ['cannot', 'get', 'access', 'email', 'ext', 'since', 'yesterday', 'unable', 'get', 'microsoft', 'email', 'usually', 'go', 'km', 'home', 'page', 'go', 'bookmarkhty', 'email', 'page', 'keep', 'loading', 'go', 'email', 'page'] list_processed_text: [['cannot'], ['get'], ['access'], ['email'], ['ext'], ['since'], ['yesterday'], ['unable'], ['get'], ['microsoft'], ['email'], ['usually'], ['go'], ['km'], ['home'], ['page'], ['go'], ['bookmarkhty'], ['email'], ['page'], ['keep'], ['loading'], ['go'], ['email'], ['page']] k: 6519 len: <class 'list'> Data: ['import', 'device', 'type', 'setting', 'system', 'import', 'device', 'type', 'setting', 'system'] processed_text: ['import', 'device', 'type', 'setting', 'system', 'import', 'device', 'type', 'setting', 'system'] list_processed_text: [['import'], ['device'], ['type'], ['setting'], ['system'], ['import'], ['device'], ['type'], ['setting'], ['system']] k: 6520 len: <class 'list'> Data: ['collaboration', 'platform', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['collaboration', 'platform', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['collaboration'], ['platform'], ['login'], ['issue'], ['es'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6521 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 6522 len: <class 'list'> Data: ['material', 'posted', 'two', 'different', 'plant', 'display', 'material', 'document', 'mov', 'mm', 'sometimes', 'need', 'send', 'material', 'vendor', 'manufacturing', 'different', 'kind', 'new', 'itens', 'company', 'case', 'sent', 'mm', 'external', 'vendor', 'system', 'make', 'two', 'different', 'moviments', 'one', 'plant', 'plant', 'another', 'plant', 'plant', 'problem', 'cannot', 'create', 'nota', 'financial', 'toolcal', 'cannot', 'reverse', 'moviment'] processed_text: ['material', 'posted', 'two', 'different', 'plant', 'display', 'material', 'document', 'mov', 'mm', 'sometimes', 'need', 'send', 'material', 'vendor', 'manufacturing', 'different', 'kind', 'new', 'itens', 'company', 'case', 'sent', 'mm', 'external', 'vendor', 'system', 'make', 'two', 'different', 'moviments', 'one', 'plant', 'plant', 'another', 'plant', 'plant', 'problem', 'cannot', 'create', 'nota', 'financial', 'toolcal', 'cannot', 'reverse', 'moviment'] list_processed_text: [['material'], ['posted'], ['two'], ['different'], ['plant'], ['display'], ['material'], ['document'], ['mov'], ['mm'], ['sometimes'], ['need'], ['send'], ['material'], ['vendor'], ['manufacturing'], ['different'], ['kind'], ['new'], ['itens'], ['company'], ['case'], ['sent'], ['mm'], ['external'], ['vendor'], ['system'], ['make'], ['two'], ['different'], ['moviments'], ['one'], ['plant'], ['plant'], ['another'], ['plant'], ['plant'], ['problem'], ['cannot'], ['create'], ['nota'], ['financial'], ['toolcal'], ['cannot'], ['reverse'], ['moviment']] k: 6523 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6524 len: <class 'list'> Data: ['unlocked', 'erp', 'password', 'unlocked', 'erp', 'password'] processed_text: ['unlocked', 'erp', 'password', 'unlocked', 'erp', 'password'] list_processed_text: [['unlocked'], ['erp'], ['password'], ['unlocked'], ['erp'], ['password']] k: 6525 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6526 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6527 len: <class 'list'> Data: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'hotf', 'failed', 'job', 'scheduler', 'job', 'sid', 'hotf', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['hotf'], ['failed'], ['job'], ['scheduler']] k: 6528 len: <class 'list'> Data: ['user', 'called', 'update', 'user', 'called', 'update'] processed_text: ['user', 'called', 'update', 'user', 'called', 'update'] list_processed_text: [['user'], ['called'], ['update'], ['user'], ['called'], ['update']] k: 6529 len: <class 'list'> Data: ['login', 'password', 'urgent', 'esprit', 'hello', 'would', 'like', 'login', 'password', 'partner', 'dp', 'technology', 'tomorrow', 'possible', 'create', 'aerp'] processed_text: ['login', 'password', 'urgent', 'esprit', 'hello', 'would', 'like', 'login', 'password', 'partner', 'dp', 'technology', 'tomorrow', 'possible', 'create', 'aerp'] list_processed_text: [['login'], ['password'], ['urgent'], ['esprit'], ['hello'], ['would'], ['like'], ['login'], ['password'], ['partner'], ['dp'], ['technology'], ['tomorrow'], ['possible'], ['create'], ['aerp']] k: 6530 len: <class 'list'> Data: ['need', 'create', 'partial', 'delivery', 'today', 'structured', 'using', 'higher', 'level', 'linkage', 'creating', 'delivery', 'note', 'reflects', 'correct', 'quantity', 'saving', 'default', 'full', 'quantity', 'attached', 'listing', 'line', 'item', 'quantity', 'needed', 'shipment', 'need', 'made', 'day', 'customer', 'need'] processed_text: ['need', 'create', 'partial', 'delivery', 'today', 'structured', 'using', 'higher', 'level', 'linkage', 'creating', 'delivery', 'note', 'reflects', 'correct', 'quantity', 'saving', 'default', 'full', 'quantity', 'attached', 'listing', 'line', 'item', 'quantity', 'needed', 'shipment', 'need', 'made', 'day', 'customer', 'need'] list_processed_text: [['need'], ['create'], ['partial'], ['delivery'], ['today'], ['structured'], ['using'], ['higher'], ['level'], ['linkage'], ['creating'], ['delivery'], ['note'], ['reflects'], ['correct'], ['quantity'], ['saving'], ['default'], ['full'], ['quantity'], ['attached'], ['listing'], ['line'], ['item'], ['quantity'], ['needed'], ['shipment'], ['need'], ['made'], ['day'], ['customer'], ['need']] k: 6531 len: <class 'list'> Data: ['lead', 'form', 'component', 'working', 'prod', 'discovered', 'lead', 'form', 'road', 'king', 'beyond', 'evolution', 'working', 'page', 'found', 'clicking', 'banner', 'english', 'homepage', 'try', 'clicking', 'call', 'action', 'button', 'see', 'attached', 'also', 'page', 'qa', 'used', 'uacyltoe', 'hxgayczeing', 'also', 'working', 'content', 'company', 'en', 'recs', 'uacyltoe', 'hxgaycze', 'responsive', 'recs', 'html'] processed_text: ['lead', 'form', 'component', 'working', 'prod', 'discovered', 'lead', 'form', 'road', 'king', 'beyond', 'evolution', 'working', 'page', 'found', 'clicking', 'banner', 'english', 'homepage', 'try', 'clicking', 'call', 'action', 'button', 'see', 'attached', 'also', 'page', 'qa', 'used', 'uacyltoe', 'hxgayczeing', 'also', 'working', 'content', 'company', 'en', 'recs', 'uacyltoe', 'hxgaycze', 'responsive', 'recs', 'html'] list_processed_text: [['lead'], ['form'], ['component'], ['working'], ['prod'], ['discovered'], ['lead'], ['form'], ['road'], ['king'], ['beyond'], ['evolution'], ['working'], ['page'], ['found'], ['clicking'], ['banner'], ['english'], ['homepage'], ['try'], ['clicking'], ['call'], ['action'], ['button'], ['see'], ['attached'], ['also'], ['page'], ['qa'], ['used'], ['uacyltoe'], ['hxgayczeing'], ['also'], ['working'], ['content'], ['company'], ['en'], ['recs'], ['uacyltoe'], ['hxgaycze'], ['responsive'], ['recs'], ['html']] k: 6532 len: <class 'list'> Data: ['computer', 'loading', 'temp', 'profile', 'whenever', 'user', 'logging', 'id', 'password', 'computer', 'loading', 'temp', 'profile', 'whenever', 'user', 'logging', 'id', 'password', 'user', 'id', 'bhergtyemm'] processed_text: ['computer', 'loading', 'temp', 'profile', 'whenever', 'user', 'logging', 'id', 'password', 'computer', 'loading', 'temp', 'profile', 'whenever', 'user', 'logging', 'id', 'password', 'user', 'id', 'bhergtyemm'] list_processed_text: [['computer'], ['loading'], ['temp'], ['profile'], ['whenever'], ['user'], ['logging'], ['id'], ['password'], ['computer'], ['loading'], ['temp'], ['profile'], ['whenever'], ['user'], ['logging'], ['id'], ['password'], ['user'], ['id'], ['bhergtyemm']] k: 6533 len: <class 'list'> Data: ['erp', 'plm', 'engineering', 'tool', 'programdnty', 'start', 'error', 'post', 'login', 'screen', 'receiving', 'attached', 'error', 'reinstalled', 'java', 'recommended', 'version', 'bit', 'deleted', 'engineering', 'tool', 'install', 'programdnty', 'data', 'folder', 'retried', 'install', 'still', 'go', 'verified', 'login', 'ability', 'sid', 'system', 'id', 'password', 'please', 'contact', 'ertnhxkf', 'gwjibhxm', 'get', 'access', 'new', 'pc'] processed_text: ['erp', 'plm', 'engineering', 'tool', 'programdnty', 'start', 'error', 'post', 'login', 'screen', 'receiving', 'attached', 'error', 'reinstalled', 'java', 'recommended', 'version', 'bit', 'deleted', 'engineering', 'tool', 'install', 'programdnty', 'data', 'folder', 'retried', 'install', 'still', 'go', 'verified', 'login', 'ability', 'sid', 'system', 'id', 'password', 'please', 'contact', 'ertnhxkf', 'gwjibhxm', 'get', 'access', 'new', 'pc'] list_processed_text: [['erp'], ['plm'], ['engineering'], ['tool'], ['programdnty'], ['start'], ['error'], ['post'], ['login'], ['screen'], ['receiving'], ['attached'], ['error'], ['reinstalled'], ['java'], ['recommended'], ['version'], ['bit'], ['deleted'], ['engineering'], ['tool'], ['install'], ['programdnty'], ['data'], ['folder'], ['retried'], ['install'], ['still'], ['go'], ['verified'], ['login'], ['ability'], ['sid'], ['system'], ['id'], ['password'], ['please'], ['contact'], ['ertnhxkf'], ['gwjibhxm'], ['get'], ['access'], ['new'], ['pc']] k: 6534 len: <class 'list'> Data: ['printer', 'kicking', 'delivery', 'note', 'hi', 'work', 'usa', 'il', 'plant', 'enter', 'order', 'erp', 'would', 'always', 'kick', 'delivery', 'note', 'reason', 'stopped', 'printing', 'raifstow', 'gfeymtql', 'receiving', 'delivery', 'note', 'reconditioning', 'order', 'screen', 'shot', 'show', 'set', 'printer', 'output', 'device', 'qv', 'help', 'make', 'delivery', 'note', 'automatic', 'like', 'previously'] processed_text: ['printer', 'kicking', 'delivery', 'note', 'hi', 'work', 'usa', 'il', 'plant', 'enter', 'order', 'erp', 'would', 'always', 'kick', 'delivery', 'note', 'reason', 'stopped', 'printing', 'raifstow', 'gfeymtql', 'receiving', 'delivery', 'note', 'reconditioning', 'order', 'screen', 'shot', 'show', 'set', 'printer', 'output', 'device', 'qv', 'help', 'make', 'delivery', 'note', 'automatic', 'like', 'previously'] list_processed_text: [['printer'], ['kicking'], ['delivery'], ['note'], ['hi'], ['work'], ['usa'], ['il'], ['plant'], ['enter'], ['order'], ['erp'], ['would'], ['always'], ['kick'], ['delivery'], ['note'], ['reason'], ['stopped'], ['printing'], ['raifstow'], ['gfeymtql'], ['receiving'], ['delivery'], ['note'], ['reconditioning'], ['order'], ['screen'], ['shot'], ['show'], ['set'], ['printer'], ['output'], ['device'], ['qv'], ['help'], ['make'], ['delivery'], ['note'], ['automatic'], ['like'], ['previously']] k: 6535 len: <class 'list'> Data: ['unable', 'launch', 'hr', 'tool', 'etime', 'unable', 'launch', 'hr', 'tool', 'etime'] processed_text: ['unable', 'launch', 'hr', 'tool', 'etime', 'unable', 'launch', 'hr', 'tool', 'etime'] list_processed_text: [['unable'], ['launch'], ['hr'], ['tool'], ['etime'], ['unable'], ['launch'], ['hr'], ['tool'], ['etime']] k: 6536 len: <class 'list'> Data: ['cannot', 'open', 'pptx', 'file', 'attached', 'email', 'give', 'repair', 'error', 'cannot', 'open', 'pptx', 'file', 'attached', 'email', 'give', 'repair', 'error'] processed_text: ['cannot', 'open', 'pptx', 'file', 'attached', 'email', 'give', 'repair', 'error', 'cannot', 'open', 'pptx', 'file', 'attached', 'email', 'give', 'repair', 'error'] list_processed_text: [['cannot'], ['open'], ['pptx'], ['file'], ['attached'], ['email'], ['give'], ['repair'], ['error'], ['cannot'], ['open'], ['pptx'], ['file'], ['attached'], ['email'], ['give'], ['repair'], ['error']] k: 6537 len: <class 'list'> Data: ['unable', 'see', 'fioghtna', 'wightygins', 'email', 'unable', 'see', 'fioghtna', 'wightygins', 'email'] processed_text: ['unable', 'see', 'fioghtna', 'wightygins', 'email', 'unable', 'see', 'fioghtna', 'wightygins', 'email'] list_processed_text: [['unable'], ['see'], ['fioghtna'], ['wightygins'], ['email'], ['unable'], ['see'], ['fioghtna'], ['wightygins'], ['email']] k: 6538 len: <class 'list'> Data: ['vip', 'unable', 'login', 'hub', 'vip', 'unable', 'login', 'hub'] processed_text: ['vip', 'unable', 'login', 'hub', 'vip', 'unable', 'login', 'hub'] list_processed_text: [['vip'], ['unable'], ['login'], ['hub'], ['vip'], ['unable'], ['login'], ['hub']] k: 6539 len: <class 'list'> Data: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout'] processed_text: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout'] list_processed_text: [['frequent'], ['account'], ['lockout'], ['frequent'], ['account'], ['lockout']] k: 6540 len: <class 'list'> Data: ['create', 'delivery', 'note', 'plant', 'plant', 'slc', 'apo', 'error', 'urgent', 'eilt', 'help', 'plaese', 'create', 'delivery', 'note', 'material', 'shipped', 'plant', 'please', 'also', 'advice', 'apo', 'work', 'correct', 'corrective', 'action', 'required', 'franhtyu', 'fyi', 'reason', 'caused', 'error', 'investigate', 'kind'] processed_text: ['create', 'delivery', 'note', 'plant', 'plant', 'slc', 'apo', 'error', 'urgent', 'eilt', 'help', 'plaese', 'create', 'delivery', 'note', 'material', 'shipped', 'plant', 'please', 'also', 'advice', 'apo', 'work', 'correct', 'corrective', 'action', 'required', 'franhtyu', 'fyi', 'reason', 'caused', 'error', 'investigate', 'kind'] list_processed_text: [['create'], ['delivery'], ['note'], ['plant'], ['plant'], ['slc'], ['apo'], ['error'], ['urgent'], ['eilt'], ['help'], ['plaese'], ['create'], ['delivery'], ['note'], ['material'], ['shipped'], ['plant'], ['please'], ['also'], ['advice'], ['apo'], ['work'], ['correct'], ['corrective'], ['action'], ['required'], ['franhtyu'], ['fyi'], ['reason'], ['caused'], ['error'], ['investigate'], ['kind']] k: 6541 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 6542 len: <class 'list'> Data: ['unable', 'login', 'dell', 'tablet', 'unable', 'login', 'dell', 'tablet'] processed_text: ['unable', 'login', 'dell', 'tablet', 'unable', 'login', 'dell', 'tablet'] list_processed_text: [['unable'], ['login'], ['dell'], ['tablet'], ['unable'], ['login'], ['dell'], ['tablet']] k: 6543 len: <class 'list'> Data: ['internet', 'telecom', 'vendor', 'working', 'hello', 'always', 'get', 'error', 'limited', 'connectivity', 'even', 'good', 'network', 'telecom', 'vendor'] processed_text: ['internet', 'telecom', 'vendor', 'working', 'hello', 'always', 'get', 'error', 'limited', 'connectivity', 'even', 'good', 'network', 'telecom', 'vendor'] list_processed_text: [['internet'], ['telecom'], ['vendor'], ['working'], ['hello'], ['always'], ['get'], ['error'], ['limited'], ['connectivity'], ['even'], ['good'], ['network'], ['telecom'], ['vendor']] k: 6544 len: <class 'list'> Data: ['unable', 'download', 'software', 'unable', 'download', 'software'] processed_text: ['unable', 'download', 'software', 'unable', 'download', 'software'] list_processed_text: [['unable'], ['download'], ['software'], ['unable'], ['download'], ['software']] k: 6545 len: <class 'list'> Data: ['access', 'drawing', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'requesting', 'drawing', 'access', 'erp', 'modeling', 'majetkm'] processed_text: ['access', 'drawing', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'requesting', 'drawing', 'access', 'erp', 'modeling', 'majetkm'] list_processed_text: [['access'], ['drawing'], ['name'], ['mikhghytr'], ['karaffa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['requesting'], ['drawing'], ['access'], ['erp'], ['modeling'], ['majetkm']] k: 6546 len: <class 'list'> Data: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'mkjubdti', 'fbusqrlt', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'rodny', 'please', 'change', 'password'] processed_text: ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'mkjubdti', 'fbusqrlt', 'tiyhum', 'kuyiomar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'rodny', 'please', 'change', 'password'] list_processed_text: [['password'], ['reset'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['mkjubdti'], ['fbusqrlt'], ['tiyhum'], ['kuyiomar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['hi'], ['rodny'], ['please'], ['change'], ['password']] k: 6547 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6548 len: <class 'list'> Data: ['please', 'take', 'survey', 'related', 'ticket', 'remapped'] processed_text: ['please', 'take', 'survey', 'related', 'ticket', 'remapped'] list_processed_text: [['please'], ['take'], ['survey'], ['related'], ['ticket'], ['remapped']] k: 6549 len: <class 'list'> Data: ['delivery', 'note', 'generated', 'delivery', 'wrong', 'delivery', 'piece', 'delivery', 'note', 'generated', 'delivery', 'wrong', 'delivery', 'piece', 'one', 'colleague', 'generated', 'dn', 'actuall', 'piece', 'pc', 'mm', 'delivery', 'note', 'printed', 'notice', 'show', 'deliverable', 'piece', 'pc', 'instead', 'pc', 'erp', 'allow', 'earlier', 'kind', 'issue', 'reference', 'ticket', 'inc'] processed_text: ['delivery', 'note', 'generated', 'delivery', 'wrong', 'delivery', 'piece', 'delivery', 'note', 'generated', 'delivery', 'wrong', 'delivery', 'piece', 'one', 'colleague', 'generated', 'dn', 'actuall', 'piece', 'pc', 'mm', 'delivery', 'note', 'printed', 'notice', 'show', 'deliverable', 'piece', 'pc', 'instead', 'pc', 'erp', 'allow', 'earlier', 'kind', 'issue', 'reference', 'ticket', 'inc'] list_processed_text: [['delivery'], ['note'], ['generated'], ['delivery'], ['wrong'], ['delivery'], ['piece'], ['delivery'], ['note'], ['generated'], ['delivery'], ['wrong'], ['delivery'], ['piece'], ['one'], ['colleague'], ['generated'], ['dn'], ['actuall'], ['piece'], ['pc'], ['mm'], ['delivery'], ['note'], ['printed'], ['notice'], ['show'], ['deliverable'], ['piece'], ['pc'], ['instead'], ['pc'], ['erp'], ['allow'], ['earlier'], ['kind'], ['issue'], ['reference'], ['ticket'], ['inc']] k: 6550 len: <class 'list'> Data: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] processed_text: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] list_processed_text: [['unable'], ['log'], ['skype'], ['unable'], ['log'], ['skype']] k: 6551 len: <class 'list'> Data: ['german', 'call', 'caller', 'disconnected', 'hearing', 'english', 'german', 'call', 'caller', 'disconnected', 'hearing', 'english'] processed_text: ['german', 'call', 'caller', 'disconnected', 'hearing', 'english', 'german', 'call', 'caller', 'disconnected', 'hearing', 'english'] list_processed_text: [['german'], ['call'], ['caller'], ['disconnected'], ['hearing'], ['english'], ['german'], ['call'], ['caller'], ['disconnected'], ['hearing'], ['english']] k: 6552 len: <class 'list'> Data: ['outlook', 'responding', 'outlook', 'responding'] processed_text: ['outlook', 'responding', 'outlook', 'responding'] list_processed_text: [['outlook'], ['responding'], ['outlook'], ['responding']] k: 6553 len: <class 'list'> Data: ['software', 'installation', 'software', 'installation'] processed_text: ['software', 'installation', 'software', 'installation'] list_processed_text: [['software'], ['installation'], ['software'], ['installation']] k: 6554 len: <class 'list'> Data: ['caller', 'id', 'display', 'user', 'desk', 'phone', 'display', 'correctly', 'cwuospin', 'nbhoxqpe', 'pm', 'chukhyt', 'mcnerny', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'desk', 'phone', 'help', 'desk', 'please', 'see', 'chukhyt', 'request', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'world', 'headquarters'] processed_text: ['caller', 'id', 'display', 'user', 'desk', 'phone', 'display', 'correctly', 'cwuospin', 'nbhoxqpe', 'pm', 'chukhyt', 'mcnerny', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'desk', 'phone', 'help', 'desk', 'please', 'see', 'chukhyt', 'request', 'sincerely', 'stanfghyley', 'guhtykes', 'fmp', 'facility', 'manager', 'world', 'headquarters'] list_processed_text: [['caller'], ['id'], ['display'], ['user'], ['desk'], ['phone'], ['display'], ['correctly'], ['cwuospin'], ['nbhoxqpe'], ['pm'], ['chukhyt'], ['mcnerny'], ['facility'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['desk'], ['phone'], ['help'], ['desk'], ['please'], ['see'], ['chukhyt'], ['request'], ['sincerely'], ['stanfghyley'], ['guhtykes'], ['fmp'], ['facility'], ['manager'], ['world'], ['headquarters']] k: 6555 len: <class 'list'> Data: ['angen', 'add', 'ychwanegol', 'mailbox', 'angen', 'add', 'ychwanegol', 'mailbox'] processed_text: ['angen', 'add', 'ychwanegol', 'mailbox', 'angen', 'add', 'ychwanegol', 'mailbox'] list_processed_text: [['angen'], ['add'], ['ychwanegol'], ['mailbox'], ['angen'], ['add'], ['ychwanegol'], ['mailbox']] k: 6556 len: <class 'list'> Data: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] processed_text: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] list_processed_text: [['ticket'], ['ticket'], ['update'], ['ticket'], ['ticket'], ['update']] k: 6557 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6558 len: <class 'list'> Data: ['erp', 'connection', 'issue', 'erp', 'connection', 'issue'] processed_text: ['erp', 'connection', 'issue', 'erp', 'connection', 'issue'] list_processed_text: [['erp'], ['connection'], ['issue'], ['erp'], ['connection'], ['issue']] k: 6559 len: <class 'list'> Data: ['reset', 'password', 'lperi', 'ak', 'erp', 'production', 'hcm', 'erp', 'sid', 'sid', 'want', 'reset', 'password'] processed_text: ['reset', 'password', 'lperi', 'ak', 'erp', 'production', 'hcm', 'erp', 'sid', 'sid', 'want', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['lperi'], ['ak'], ['erp'], ['production'], ['hcm'], ['erp'], ['sid'], ['sid'], ['want'], ['reset'], ['password']] k: 6560 len: <class 'list'> Data: ['kiosk', 'user', 'account', 'expired', 'onjzqptl', 'kgxmisbj', 'kiosk', 'user', 'account', 'expired', 'onjzqptl', 'kgxmisbj'] processed_text: ['kiosk', 'user', 'account', 'expired', 'onjzqptl', 'kgxmisbj', 'kiosk', 'user', 'account', 'expired', 'onjzqptl', 'kgxmisbj'] list_processed_text: [['kiosk'], ['user'], ['account'], ['expired'], ['onjzqptl'], ['kgxmisbj'], ['kiosk'], ['user'], ['account'], ['expired'], ['onjzqptl'], ['kgxmisbj']] k: 6561 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 6562 len: <class 'list'> Data: ['cannot', 'open', 'attachment', 'owa', 'show', 'white', 'screen', 'opening', 'cannot', 'open', 'attachment', 'owa', 'show', 'white', 'screen', 'opening'] processed_text: ['cannot', 'open', 'attachment', 'owa', 'show', 'white', 'screen', 'opening', 'cannot', 'open', 'attachment', 'owa', 'show', 'white', 'screen', 'opening'] list_processed_text: [['cannot'], ['open'], ['attachment'], ['owa'], ['show'], ['white'], ['screen'], ['opening'], ['cannot'], ['open'], ['attachment'], ['owa'], ['show'], ['white'], ['screen'], ['opening']] k: 6563 len: <class 'list'> Data: ['cannot', 'access', 'crm', 'cannot', 'access', 'crm', 'contact', 'info'] processed_text: ['cannot', 'access', 'crm', 'cannot', 'access', 'crm', 'contact', 'info'] list_processed_text: [['cannot'], ['access'], ['crm'], ['cannot'], ['access'], ['crm'], ['contact'], ['info']] k: 6564 len: <class 'list'> Data: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] processed_text: ['logon', 'balancing', 'error', 'erp', 'logon', 'balancing', 'error', 'erp'] list_processed_text: [['logon'], ['balancing'], ['error'], ['erp'], ['logon'], ['balancing'], ['error'], ['erp']] k: 6565 len: <class 'list'> Data: ['performance', 'improvement', 'supervisor', 'dashbankrd', 'performance', 'improvement', 'supervisor', 'dashbankrd'] processed_text: ['performance', 'improvement', 'supervisor', 'dashbankrd', 'performance', 'improvement', 'supervisor', 'dashbankrd'] list_processed_text: [['performance'], ['improvement'], ['supervisor'], ['dashbankrd'], ['performance'], ['improvement'], ['supervisor'], ['dashbankrd']] k: 6566 len: <class 'list'> Data: ['reset', 'password', 'chkmejsn', 'lvidgknc', 'erp', 'production', 'erp', 'please', 'unlock', 'erp', 'account', 'know', 'password'] processed_text: ['reset', 'password', 'chkmejsn', 'lvidgknc', 'erp', 'production', 'erp', 'please', 'unlock', 'erp', 'account', 'know', 'password'] list_processed_text: [['reset'], ['password'], ['chkmejsn'], ['lvidgknc'], ['erp'], ['production'], ['erp'], ['please'], ['unlock'], ['erp'], ['account'], ['know'], ['password']] k: 6567 len: <class 'list'> Data: ['skype', 'let', 'sign', 'say', 'address', 'typed', 'valid', 'skype', 'let', 'sign', 'say', 'address', 'typed', 'valid'] processed_text: ['skype', 'let', 'sign', 'say', 'address', 'typed', 'valid', 'skype', 'let', 'sign', 'say', 'address', 'typed', 'valid'] list_processed_text: [['skype'], ['let'], ['sign'], ['say'], ['address'], ['typed'], ['valid'], ['skype'], ['let'], ['sign'], ['say'], ['address'], ['typed'], ['valid']] k: 6568 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 6569 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6570 len: <class 'list'> Data: ['user', 'id', 'locked', 'hello', 'could', 'please', 'unlock', 'user', 'id', 'teufeae', 'upiyobvj', 'lwohuizr', 'hotline', 'cannot', 'reached'] processed_text: ['user', 'id', 'locked', 'hello', 'could', 'please', 'unlock', 'user', 'id', 'teufeae', 'upiyobvj', 'lwohuizr', 'hotline', 'cannot', 'reached'] list_processed_text: [['user'], ['id'], ['locked'], ['hello'], ['could'], ['please'], ['unlock'], ['user'], ['id'], ['teufeae'], ['upiyobvj'], ['lwohuizr'], ['hotline'], ['cannot'], ['reached']] k: 6571 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6572 len: <class 'list'> Data: ['collaboration', 'platform', 'cloud', 'folder', 'deleted', 'hello,', 'important,', 'data', 'deleted', 'even', 'cloud', 'vw', 'team', 'folder', 'completely', 'deleted', 'please', 'restore', 'vw', 'folder', 'date', 'yesterday', 'work', 'important,', 'best', 'regard', 'uwncfovt', 'vxjbunfi', 'sale', 'engineer', 'mail', 'company', 'deutschland', 'gmbh', 'business', 'hrer', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'or,', 'accordance', 'applicable', 'law,', 'distribution', 'duplication', 'communication', 'person', 'excluded', 'recipient', 'intended', 'recipient', 'strictly', 'forbidden.', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['collaboration', 'platform', 'cloud', 'folder', 'deleted', 'hello,', 'important,', 'data', 'deleted', 'even', 'cloud', 'vw', 'team', 'folder', 'completely', 'deleted', 'please', 'restore', 'vw', 'folder', 'date', 'yesterday', 'work', 'important,', 'best', 'regard', 'uwncfovt', 'vxjbunfi', 'sale', 'engineer', 'mail', 'company', 'deutschland', 'gmbh', 'business', 'hrer', 'rfwlsoej', 'yvtjzkaw', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'or,', 'accordance', 'applicable', 'law,', 'distribution', 'duplication', 'communication', 'person', 'excluded', 'recipient', 'intended', 'recipient', 'strictly', 'forbidden.', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['collaboration'], ['platform'], ['cloud'], ['folder'], ['deleted'], ['hello,'], ['important,'], ['data'], ['deleted'], ['even'], ['cloud'], ['vw'], ['team'], ['folder'], ['completely'], ['deleted'], ['please'], ['restore'], ['vw'], ['folder'], ['date'], ['yesterday'], ['work'], ['important,'], ['best'], ['regard'], ['uwncfovt'], ['vxjbunfi'], ['sale'], ['engineer'], ['mail'], ['company'], ['deutschland'], ['gmbh'], ['business'], ['hrer'], ['rfwlsoej'], ['yvtjzkaw'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['or,'], ['accordance'], ['applicable'], ['law,'], ['distribution'], ['duplication'], ['communication'], ['person'], ['excluded'], ['recipient'], ['intended'], ['recipient'], ['strictly'], ['forbidden.'], ['received'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 6573 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6574 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6575 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6576 len: <class 'list'> Data: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'sid', 'arc', 'failed', 'job', 'scheduler', 'job', 'sid', 'arc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler'], ['job'], ['sid'], ['arc'], ['failed'], ['job'], ['scheduler']] k: 6577 len: <class 'list'> Data: ['need', 'erp', 'access', 'user', 'vv', 'erp', 'incident', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'transaction', 'code', 'user', 'need', 'working', 'plm', 'general', 'plm', 'change', 'coordinator', 'spro', 'describe', 'issue', 'please', 'create', 'user', 'account', 'erp', 'incident', 'sid', 'sid', 'please', 'set', 'user', 'type', 'dialog', 'since', 'erp', 'need', 'business', 'client', 'access', 'create', 'er', 'please', 'open', 'wts', 'http', 'connection', 'also', 'would', 'need', 'active', 'directory', 'account', 'please', 'give', 'access', 'role', 'plm', 'general', 'plm', 'change', 'coordinator', 'spro', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'external', 'erp', 'user', 'provide', 'access', 'user', 'gthydanp'] processed_text: ['need', 'erp', 'access', 'user', 'vv', 'erp', 'incident', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'vv', 'transaction', 'code', 'user', 'need', 'working', 'plm', 'general', 'plm', 'change', 'coordinator', 'spro', 'describe', 'issue', 'please', 'create', 'user', 'account', 'erp', 'incident', 'sid', 'sid', 'please', 'set', 'user', 'type', 'dialog', 'since', 'erp', 'need', 'business', 'client', 'access', 'create', 'er', 'please', 'open', 'wts', 'http', 'connection', 'also', 'would', 'need', 'active', 'directory', 'account', 'please', 'give', 'access', 'role', 'plm', 'general', 'plm', 'change', 'coordinator', 'spro', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'external', 'erp', 'user', 'provide', 'access', 'user', 'gthydanp'] list_processed_text: [['need'], ['erp'], ['access'], ['user'], ['vv'], ['erp'], ['incident'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['vv'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['plm'], ['general'], ['plm'], ['change'], ['coordinator'], ['spro'], ['describe'], ['issue'], ['please'], ['create'], ['user'], ['account'], ['erp'], ['incident'], ['sid'], ['sid'], ['please'], ['set'], ['user'], ['type'], ['dialog'], ['since'], ['erp'], ['need'], ['business'], ['client'], ['access'], ['create'], ['er'], ['please'], ['open'], ['wts'], ['http'], ['connection'], ['also'], ['would'], ['need'], ['active'], ['directory'], ['account'], ['please'], ['give'], ['access'], ['role'], ['plm'], ['general'], ['plm'], ['change'], ['coordinator'], ['spro'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['external'], ['erp'], ['user'], ['provide'], ['access'], ['user'], ['gthydanp']] k: 6578 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6579 len: <class 'list'> Data: ['please', 'run', 'job', 'jb', 'cust', 'db', 'file', 'please', 'assign', 'ticket', 'ebusaar', 'munnangi', 'hello', 'could', 'please', 'run', 'job', 'jb', 'cust', 'db', 'file'] processed_text: ['please', 'run', 'job', 'jb', 'cust', 'db', 'file', 'please', 'assign', 'ticket', 'ebusaar', 'munnangi', 'hello', 'could', 'please', 'run', 'job', 'jb', 'cust', 'db', 'file'] list_processed_text: [['please'], ['run'], ['job'], ['jb'], ['cust'], ['db'], ['file'], ['please'], ['assign'], ['ticket'], ['ebusaar'], ['munnangi'], ['hello'], ['could'], ['please'], ['run'], ['job'], ['jb'], ['cust'], ['db'], ['file']] k: 6580 len: <class 'list'> Data: ['cross', 'company', 'erp', 'allowed', 'transaction', 'user', 'longer', 'process', 'transaction', 'please', 'assist', 'restoring'] processed_text: ['cross', 'company', 'erp', 'allowed', 'transaction', 'user', 'longer', 'process', 'transaction', 'please', 'assist', 'restoring'] list_processed_text: [['cross'], ['company'], ['erp'], ['allowed'], ['transaction'], ['user'], ['longer'], ['process'], ['transaction'], ['please'], ['assist'], ['restoring']] k: 6581 len: <class 'list'> Data: ['npc', 'mm', 'hello', 'service', 'manager', 'serthyei', 'need', 'forward', 'pthsqroz', 'moedyanvess', 'quote', 'drawing', 'created', 'linked', 'mm', 'standard', 'procedure', 'un', 'known', 'reason', 'mm', 'showing', 'linked', 'drawing', 'moreover', 'serthyei', 'able', 'add', 'document', 'number', 'manually', 'please', 'fix', 'need', 'forward', 'npc', 'towards', 'successful', 'manufacturing', 'crtgyerine', 'serthyei'] processed_text: ['npc', 'mm', 'hello', 'service', 'manager', 'serthyei', 'need', 'forward', 'pthsqroz', 'moedyanvess', 'quote', 'drawing', 'created', 'linked', 'mm', 'standard', 'procedure', 'un', 'known', 'reason', 'mm', 'showing', 'linked', 'drawing', 'moreover', 'serthyei', 'able', 'add', 'document', 'number', 'manually', 'please', 'fix', 'need', 'forward', 'npc', 'towards', 'successful', 'manufacturing', 'crtgyerine', 'serthyei'] list_processed_text: [['npc'], ['mm'], ['hello'], ['service'], ['manager'], ['serthyei'], ['need'], ['forward'], ['pthsqroz'], ['moedyanvess'], ['quote'], ['drawing'], ['created'], ['linked'], ['mm'], ['standard'], ['procedure'], ['un'], ['known'], ['reason'], ['mm'], ['showing'], ['linked'], ['drawing'], ['moreover'], ['serthyei'], ['able'], ['add'], ['document'], ['number'], ['manually'], ['please'], ['fix'], ['need'], ['forward'], ['npc'], ['towards'], ['successful'], ['manufacturing'], ['crtgyerine'], ['serthyei']] k: 6582 len: <class 'list'> Data: ['erp', 'hcm', 'zpd', 'upload', 'time', 'erp', 'team', 'need', 'update', 'report', 'zpd', 'upload', 'time', 'erp', 'hcm', 'new', 'digit', 'employee', 'number', 'please', 'see', 'srgtycha', 'jfcrdavy', 'sxpotjlu', 'sent', 'tuesday', 'weszfyok', 'fbadnjhu', 'jywvemun', 'qngschtz', 'pesylifc', 'wnyierbu', 'lixwgnto', 'krutnylz', 'puxsvf', 'together', 'upload', 'programdntym', 'zpd', 'upload', 'time,', 'pernr', 'must', 'also', 'adjusted', 'place', 'maximum', 'number', 'place', 'according', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'file', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['erp', 'hcm', 'zpd', 'upload', 'time', 'erp', 'team', 'need', 'update', 'report', 'zpd', 'upload', 'time', 'erp', 'hcm', 'new', 'digit', 'employee', 'number', 'please', 'see', 'srgtycha', 'jfcrdavy', 'sxpotjlu', 'sent', 'tuesday', 'weszfyok', 'fbadnjhu', 'jywvemun', 'qngschtz', 'pesylifc', 'wnyierbu', 'lixwgnto', 'krutnylz', 'puxsvf', 'together', 'upload', 'programdntym', 'zpd', 'upload', 'time,', 'pernr', 'must', 'also', 'adjusted', 'place', 'maximum', 'number', 'place', 'according', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'file', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['erp'], ['hcm'], ['zpd'], ['upload'], ['time'], ['erp'], ['team'], ['need'], ['update'], ['report'], ['zpd'], ['upload'], ['time'], ['erp'], ['hcm'], ['new'], ['digit'], ['employee'], ['number'], ['please'], ['see'], ['srgtycha'], ['jfcrdavy'], ['sxpotjlu'], ['sent'], ['tuesday'], ['weszfyok'], ['fbadnjhu'], ['jywvemun'], ['qngschtz'], ['pesylifc'], ['wnyierbu'], ['lixwgnto'], ['krutnylz'], ['puxsvf'], ['together'], ['upload'], ['programdntym'], ['zpd'], ['upload'], ['time,'], ['pernr'], ['must'], ['also'], ['adjusted'], ['place'], ['maximum'], ['number'], ['place'], ['according'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['prohibited.'], ['received'], ['communication'], ['mistake,'], ['please'], ['notify'], ['sender'], ['file'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 6583 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 6584 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6585 len: <class 'list'> Data: ['error', 'usual', 'inplant', 'database', 'cannot', 'yet', 'opened', 'restarted', 'pc', 'beforehand'] processed_text: ['error', 'usual', 'inplant', 'database', 'cannot', 'yet', 'opened', 'restarted', 'pc', 'beforehand'] list_processed_text: [['error'], ['usual'], ['inplant'], ['database'], ['cannot'], ['yet'], ['opened'], ['restarted'], ['pc'], ['beforehand']] k: 6586 len: <class 'list'> Data: ['access', 'operating', 'center', 'database', 'ce', 'c', 'work', 'access', 'operating', 'center', 'database', 'ce', 'c', 'work'] processed_text: ['access', 'operating', 'center', 'database', 'ce', 'c', 'work', 'access', 'operating', 'center', 'database', 'ce', 'c', 'work'] list_processed_text: [['access'], ['operating'], ['center'], ['database'], ['ce'], ['c'], ['work'], ['access'], ['operating'], ['center'], ['database'], ['ce'], ['c'], ['work']] k: 6587 len: <class 'list'> Data: ['error', 'message', 'inwarehouse', 'tool', 'document', 'still', 'contails', 'message', 'posting', 'code', 'miro', 'error', 'message', 'inwarehouse', 'tool', 'document', 'still', 'contains', 'message', 'po'] processed_text: ['error', 'message', 'inwarehouse', 'tool', 'document', 'still', 'contails', 'message', 'posting', 'code', 'miro', 'error', 'message', 'inwarehouse', 'tool', 'document', 'still', 'contains', 'message', 'po'] list_processed_text: [['error'], ['message'], ['inwarehouse'], ['tool'], ['document'], ['still'], ['contails'], ['message'], ['posting'], ['code'], ['miro'], ['error'], ['message'], ['inwarehouse'], ['tool'], ['document'], ['still'], ['contains'], ['message'], ['po']] k: 6588 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6589 len: <class 'list'> Data: ['change', 'def', 'montitor', 'please', 'replace', 'def', 'monitor', 'ventilation', 'control', 'boiler', 'room', 'contact', 'ssler', 'christgrytian'] processed_text: ['change', 'def', 'montitor', 'please', 'replace', 'def', 'monitor', 'ventilation', 'control', 'boiler', 'room', 'contact', 'ssler', 'christgrytian'] list_processed_text: [['change'], ['def'], ['montitor'], ['please'], ['replace'], ['def'], ['monitor'], ['ventilation'], ['control'], ['boiler'], ['room'], ['contact'], ['ssler'], ['christgrytian']] k: 6590 len: <class 'list'> Data: ['access', 'requited', 'vln', 'post', 'good', 'issue', 'good', 'morning', 'please', 'usa', 'access', 'gydtvnlw', 'miepcwzf', 'enable', 'u', 'post', 'good', 'issue', 'return', 'delivery', 'nieghjyukea', 'angelique', 'coetzk', 'kind'] processed_text: ['access', 'requited', 'vln', 'post', 'good', 'issue', 'good', 'morning', 'please', 'usa', 'access', 'gydtvnlw', 'miepcwzf', 'enable', 'u', 'post', 'good', 'issue', 'return', 'delivery', 'nieghjyukea', 'angelique', 'coetzk', 'kind'] list_processed_text: [['access'], ['requited'], ['vln'], ['post'], ['good'], ['issue'], ['good'], ['morning'], ['please'], ['usa'], ['access'], ['gydtvnlw'], ['miepcwzf'], ['enable'], ['u'], ['post'], ['good'], ['issue'], ['return'], ['delivery'], ['nieghjyukea'], ['angelique'], ['coetzk'], ['kind']] k: 6591 len: <class 'list'> Data: ['outlook', 'hang', 'open', 'outlook', 'hang', 'open'] processed_text: ['outlook', 'hang', 'open', 'outlook', 'hang', 'open'] list_processed_text: [['outlook'], ['hang'], ['open'], ['outlook'], ['hang'], ['open']] k: 6592 len: <class 'list'> Data: ['circuit', 'outage', 'vogelfontein', 'company', 'eu', 'zaf', 'vogelfontein', 'dmvpn', 'since', 'est', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'yes', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'vogelfontein', 'company', 'eu', 'zaf', 'vogelfontein', 'dmvpn', 'since', 'est', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'yes', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['vogelfontein'], ['company'], ['eu'], ['zaf'], ['vogelfontein'], ['dmvpn'], ['since'], ['est'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['est'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['yes'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['na'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['na'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6593 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6594 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6595 len: <class 'list'> Data: ['r', 'mouse', 'defective', 'r', 'mouse', 'defective'] processed_text: ['r', 'mouse', 'defective', 'r', 'mouse', 'defective'] list_processed_text: [['r'], ['mouse'], ['defective'], ['r'], ['mouse'], ['defective']] k: 6596 len: <class 'list'> Data: ['pc', 'reinecker', 'wzs', 'probably', 'defective', 'machine', 'pc', 'reinecker', 'wzs', 'probably', 'defective', 'machine'] processed_text: ['pc', 'reinecker', 'wzs', 'probably', 'defective', 'machine', 'pc', 'reinecker', 'wzs', 'probably', 'defective', 'machine'] list_processed_text: [['pc'], ['reinecker'], ['wzs'], ['probably'], ['defective'], ['machine'], ['pc'], ['reinecker'], ['wzs'], ['probably'], ['defective'], ['machine']] k: 6597 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 6598 len: <class 'list'> Data: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] processed_text: ['outlook', 'prompting', 'password', 'outlook', 'prompting', 'password'] list_processed_text: [['outlook'], ['prompting'], ['password'], ['outlook'], ['prompting'], ['password']] k: 6599 len: <class 'list'> Data: ['printer', 'work', 'toner', 'change', 'printer', 'work', 'toner', 'change'] processed_text: ['printer', 'work', 'toner', 'change', 'printer', 'work', 'toner', 'change'] list_processed_text: [['printer'], ['work'], ['toner'], ['change'], ['printer'], ['work'], ['toner'], ['change']] k: 6600 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6601 len: <class 'list'> Data: ['l', 'fter', 'defective', 'computer', 'r', 'video', 'surveillance', 'l', 'fter', 'defective', 'computer', 'r', 'video', 'surveillance'] processed_text: ['l', 'fter', 'defective', 'computer', 'r', 'video', 'surveillance', 'l', 'fter', 'defective', 'computer', 'r', 'video', 'surveillance'] list_processed_text: [['l'], ['fter'], ['defective'], ['computer'], ['r'], ['video'], ['surveillance'], ['l'], ['fter'], ['defective'], ['computer'], ['r'], ['video'], ['surveillance']] k: 6602 len: <class 'list'> Data: ['usb', 'keybankr', 'monitor', 'requested', 'usb', 'keybankrd', 'external', 'monitor', 'new', 'desk', 'space'] processed_text: ['usb', 'keybankr', 'monitor', 'requested', 'usb', 'keybankrd', 'external', 'monitor', 'new', 'desk', 'space'] list_processed_text: [['usb'], ['keybankr'], ['monitor'], ['requested'], ['usb'], ['keybankrd'], ['external'], ['monitor'], ['new'], ['desk'], ['space']] k: 6603 len: <class 'list'> Data: ['user', 'cwfzldts', 'dlmukhyn', 'cannot', 'create', 'purchasing', 'requistions', 'punch', 'catalogue', 'get', 'error', 'documenttype', 'available', 'backend', 'system', 'see', 'attached', 'error', 'message', 'purchasing', 'user', 'work', 'seems', 'something', 'usersettings'] processed_text: ['user', 'cwfzldts', 'dlmukhyn', 'cannot', 'create', 'purchasing', 'requistions', 'punch', 'catalogue', 'get', 'error', 'documenttype', 'available', 'backend', 'system', 'see', 'attached', 'error', 'message', 'purchasing', 'user', 'work', 'seems', 'something', 'usersettings'] list_processed_text: [['user'], ['cwfzldts'], ['dlmukhyn'], ['cannot'], ['create'], ['purchasing'], ['requistions'], ['punch'], ['catalogue'], ['get'], ['error'], ['documenttype'], ['available'], ['backend'], ['system'], ['see'], ['attached'], ['error'], ['message'], ['purchasing'], ['user'], ['work'], ['seems'], ['something'], ['usersettings']] k: 6604 len: <class 'list'> Data: ['setup', 'computer', 'ewew', 'wrcktgbd', 'wzrgyunp', 'setup', 'computer', 'ewew', 'wrcktgbd', 'wzrgyunp'] processed_text: ['setup', 'computer', 'ewew', 'wrcktgbd', 'wzrgyunp', 'setup', 'computer', 'ewew', 'wrcktgbd', 'wzrgyunp'] list_processed_text: [['setup'], ['computer'], ['ewew'], ['wrcktgbd'], ['wzrgyunp'], ['setup'], ['computer'], ['ewew'], ['wrcktgbd'], ['wzrgyunp']] k: 6605 len: <class 'list'> Data: ['need', 'network', 'cable', 'teleservice', 'roboworker', 'hello', 'mr', 'bghakch', 'need', 'network', 'cable', 'teleservice', 'roboworker', 'remain', 'permanently', 'connected'] processed_text: ['need', 'network', 'cable', 'teleservice', 'roboworker', 'hello', 'mr', 'bghakch', 'need', 'network', 'cable', 'teleservice', 'roboworker', 'remain', 'permanently', 'connected'] list_processed_text: [['need'], ['network'], ['cable'], ['teleservice'], ['roboworker'], ['hello'], ['mr'], ['bghakch'], ['need'], ['network'], ['cable'], ['teleservice'], ['roboworker'], ['remain'], ['permanently'], ['connected']] k: 6606 len: <class 'list'> Data: ['problem', 'lan', 'meeting', 'room', 'puxsvfwr', 'cwkjruni', 'problem', 'lan', 'meeting', 'room', 'puxsvfwr', 'cwkjruni'] processed_text: ['problem', 'lan', 'meeting', 'room', 'puxsvfwr', 'cwkjruni', 'problem', 'lan', 'meeting', 'room', 'puxsvfwr', 'cwkjruni'] list_processed_text: [['problem'], ['lan'], ['meeting'], ['room'], ['puxsvfwr'], ['cwkjruni'], ['problem'], ['lan'], ['meeting'], ['room'], ['puxsvfwr'], ['cwkjruni']] k: 6607 len: <class 'list'> Data: ['account', 'name', 'seems', 'crm', 'issue', 'try', 'create', 'oppurtunities', 'crm', 'see', 'account', 'name', 'normally', 'working', 'connect', 'engineering', 'tool', 'please', 'help', 'solve', 'issue'] processed_text: ['account', 'name', 'seems', 'crm', 'issue', 'try', 'create', 'oppurtunities', 'crm', 'see', 'account', 'name', 'normally', 'working', 'connect', 'engineering', 'tool', 'please', 'help', 'solve', 'issue'] list_processed_text: [['account'], ['name'], ['seems'], ['crm'], ['issue'], ['try'], ['create'], ['oppurtunities'], ['crm'], ['see'], ['account'], ['name'], ['normally'], ['working'], ['connect'], ['engineering'], ['tool'], ['please'], ['help'], ['solve'], ['issue']] k: 6608 len: <class 'list'> Data: ['conversion', 'issue', 'drawing', 'n', 'pdf', 'got', 'converted', 'accessible', 'model', 'dxf', 'accesible'] processed_text: ['conversion', 'issue', 'drawing', 'n', 'pdf', 'got', 'converted', 'accessible', 'model', 'dxf', 'accesible'] list_processed_text: [['conversion'], ['issue'], ['drawing'], ['n'], ['pdf'], ['got'], ['converted'], ['accessible'], ['model'], ['dxf'], ['accesible']] k: 6609 len: <class 'list'> Data: ['attendance', 'tool', 'issue', 'dear', 'sir', 'mam', 'facing', 'issue', 'attendance', 'tool', 'following', 'message', 'showing', 'showing', 'single', 'sign', 'portal', 'also', 'kindly', 'help', 'resolve', 'issue'] processed_text: ['attendance', 'tool', 'issue', 'dear', 'sir', 'mam', 'facing', 'issue', 'attendance', 'tool', 'following', 'message', 'showing', 'showing', 'single', 'sign', 'portal', 'also', 'kindly', 'help', 'resolve', 'issue'] list_processed_text: [['attendance'], ['tool'], ['issue'], ['dear'], ['sir'], ['mam'], ['facing'], ['issue'], ['attendance'], ['tool'], ['following'], ['message'], ['showing'], ['showing'], ['single'], ['sign'], ['portal'], ['also'], ['kindly'], ['help'], ['resolve'], ['issue']] k: 6610 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 6611 len: <class 'list'> Data: ['changing', 'login', 'id', 'password', 'password', 'management', 'tool', 'password', 'manger', 'successful', 'restarted', 'system', 'outlook', 'sky', 'name', 'wnorzsyv', 'mdflqwxg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changing', 'login', 'id', 'password', 'password', 'management', 'tool', 'password', 'manger', 'successful', 'restarted', 'system', 'outlook', 'skype', 'popping', 'password', 'request', 'logging'] processed_text: ['changing', 'login', 'id', 'password', 'password', 'management', 'tool', 'password', 'manger', 'successful', 'restarted', 'system', 'outlook', 'sky', 'name', 'wnorzsyv', 'mdflqwxg', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'changing', 'login', 'id', 'password', 'password', 'management', 'tool', 'password', 'manger', 'successful', 'restarted', 'system', 'outlook', 'skype', 'popping', 'password', 'request', 'logging'] list_processed_text: [['changing'], ['login'], ['id'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manger'], ['successful'], ['restarted'], ['system'], ['outlook'], ['sky'], ['name'], ['wnorzsyv'], ['mdflqwxg'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['changing'], ['login'], ['id'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manger'], ['successful'], ['restarted'], ['system'], ['outlook'], ['skype'], ['popping'], ['password'], ['request'], ['logging']] k: 6612 len: <class 'list'> Data: ['unable', 'send', 'receive', 'email', 'unable', 'send', 'receive', 'email'] processed_text: ['unable', 'send', 'receive', 'email', 'unable', 'send', 'receive', 'email'] list_processed_text: [['unable'], ['send'], ['receive'], ['email'], ['unable'], ['send'], ['receive'], ['email']] k: 6613 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 6614 len: <class 'list'> Data: ['unable', 'login', 'attendance', 'tool', 'unable', 'login', 'attendance', 'tool', 'using', 'single', 'logon', 'portal', 'link'] processed_text: ['unable', 'login', 'attendance', 'tool', 'unable', 'login', 'attendance', 'tool', 'using', 'single', 'logon', 'portal', 'link'] list_processed_text: [['unable'], ['login'], ['attendance'], ['tool'], ['unable'], ['login'], ['attendance'], ['tool'], ['using'], ['single'], ['logon'], ['portal'], ['link']] k: 6615 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6616 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6617 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6618 len: <class 'list'> Data: ['job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler', 'job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler', 'job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['tooldplcmmaninp'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['tooldplcmmaninp'], ['failed'], ['job'], ['scheduler']] k: 6619 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 6620 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 6621 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] processed_text: ['unable', 'open', 'outlook', 'unable', 'open', 'outlook'] list_processed_text: [['unable'], ['open'], ['outlook'], ['unable'], ['open'], ['outlook']] k: 6622 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 6623 len: <class 'list'> Data: ['awyw', 'please', 'attend', 'mentioned', 'problem', 'earliest', 'system', 'name', 'awyw', 'user', 'name', 'talagrtymr', 'problem', 'display', 'coming', 'monitor', 'system', 'getting', 'continiously', 'best'] processed_text: ['awyw', 'please', 'attend', 'mentioned', 'problem', 'earliest', 'system', 'name', 'awyw', 'user', 'name', 'talagrtymr', 'problem', 'display', 'coming', 'monitor', 'system', 'getting', 'continiously', 'best'] list_processed_text: [['awyw'], ['please'], ['attend'], ['mentioned'], ['problem'], ['earliest'], ['system'], ['name'], ['awyw'], ['user'], ['name'], ['talagrtymr'], ['problem'], ['display'], ['coming'], ['monitor'], ['system'], ['getting'], ['continiously'], ['best']] k: 6624 len: <class 'list'> Data: ['microsoft', 'office', 'software', 'problem', 'access', 'link', 'pop', 'warning', 'computer', 'limitation', 'contact', 'phone', 'system', 'window', 'error', 'message', 'please', 'refer', 'attachment'] processed_text: ['microsoft', 'office', 'software', 'problem', 'access', 'link', 'pop', 'warning', 'computer', 'limitation', 'contact', 'phone', 'system', 'window', 'error', 'message', 'please', 'refer', 'attachment'] list_processed_text: [['microsoft'], ['office'], ['software'], ['problem'], ['access'], ['link'], ['pop'], ['warning'], ['computer'], ['limitation'], ['contact'], ['phone'], ['system'], ['window'], ['error'], ['message'], ['please'], ['refer'], ['attachment']] k: 6625 len: <class 'list'> Data: ['shipping', 'notification', 'hi', 'help', 'would', 'please', 'help', 'set', 'email', 'shipping', 'notification', 'customer'] processed_text: ['shipping', 'notification', 'hi', 'help', 'would', 'please', 'help', 'set', 'email', 'shipping', 'notification', 'customer'] list_processed_text: [['shipping'], ['notification'], ['hi'], ['help'], ['would'], ['please'], ['help'], ['set'], ['email'], ['shipping'], ['notification'], ['customer']] k: 6626 len: <class 'list'> Data: ['network', 'outage', 'company', 'eu', 'che', 'company', 'switzerland', 'dmvpn', 'rtr', 'backup', 'since', 'pm', 'est', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'na', 'yes', 'na', 'start', 'pm', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'swisscom', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'naa', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'company', 'eu', 'che', 'company', 'switzerland', 'dmvpn', 'rtr', 'backup', 'since', 'pm', 'est', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'na', 'yes', 'na', 'start', 'pm', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'swisscom', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'naa', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['company'], ['eu'], ['che'], ['company'], ['switzerland'], ['dmvpn'], ['rtr'], ['backup'], ['since'], ['pm'], ['est'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['na'], ['yes'], ['na'], ['start'], ['pm'], ['est'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['swisscom'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['naa'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6627 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6628 len: <class 'list'> Data: ['ksem', 'wzs', 'pc', 'defective', 'shut', 'longer', 'start', 'please', 'get', 'done', 'himghtmelreich'] processed_text: ['ksem', 'wzs', 'pc', 'defective', 'shut', 'longer', 'start', 'please', 'get', 'done', 'himghtmelreich'] list_processed_text: [['ksem'], ['wzs'], ['pc'], ['defective'], ['shut'], ['longer'], ['start'], ['please'], ['get'], ['done'], ['himghtmelreich']] k: 6629 len: <class 'list'> Data: ['advanced', 'search', 'use', 'material', 'field', 'form', 'set', 'result', 'returned', 'regardless', 'leaving', 'field', 'blank', 'selecting', 'material'] processed_text: ['advanced', 'search', 'use', 'material', 'field', 'form', 'set', 'result', 'returned', 'regardless', 'leaving', 'field', 'blank', 'selecting', 'material'] list_processed_text: [['advanced'], ['search'], ['use'], ['material'], ['field'], ['form'], ['set'], ['result'], ['returned'], ['regardless'], ['leaving'], ['field'], ['blank'], ['selecting'], ['material']] k: 6630 len: <class 'list'> Data: ['able', 'open', 'jpg', 'image', 'file', 'hello', 'able', 'open', 'jpg', 'image', 'file', 'pc', 'pl', 'help'] processed_text: ['able', 'open', 'jpg', 'image', 'file', 'hello', 'able', 'open', 'jpg', 'image', 'file', 'pc', 'pl', 'help'] list_processed_text: [['able'], ['open'], ['jpg'], ['image'], ['file'], ['hello'], ['able'], ['open'], ['jpg'], ['image'], ['file'], ['pc'], ['pl'], ['help']] k: 6631 len: <class 'list'> Data: ['lorwsf', 'usa', 'robot', 'outlook', 'complete', 'time', 'kirtyled', 'alert', 'reporting', 'tool', 'since', 'pm', 'et', 'lorwsf', 'usa', 'robot', 'outlook', 'complete', 'time', 'kirtyled', 'alert', 'reporting', 'tool', 'since', 'pm', 'et'] processed_text: ['lorwsf', 'usa', 'robot', 'outlook', 'complete', 'time', 'kirtyled', 'alert', 'reporting', 'tool', 'since', 'pm', 'et', 'lorwsf', 'usa', 'robot', 'outlook', 'complete', 'time', 'kirtyled', 'alert', 'reporting', 'tool', 'since', 'pm', 'et'] list_processed_text: [['lorwsf'], ['usa'], ['robot'], ['outlook'], ['complete'], ['time'], ['kirtyled'], ['alert'], ['reporting'], ['tool'], ['since'], ['pm'], ['et'], ['lorwsf'], ['usa'], ['robot'], ['outlook'], ['complete'], ['time'], ['kirtyled'], ['alert'], ['reporting'], ['tool'], ['since'], ['pm'], ['et']] k: 6632 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6633 len: <class 'list'> Data: ['job', 'job', 'running', 'longer', 'minute', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'running', 'longer', 'minute', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['running'], ['longer'], ['minute'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6634 len: <class 'list'> Data: ['usa', 'unresolved', 'mii', 'password', 'lockout', 'employee', 'got', 'user', 'authentication', 'failed', 'error', 'cannot', 'confirm', 'production', 'hi', 'occurences', 'people', 'got', 'user', 'authentication', 'failed', 'error', 'tortm', 'hortl', 'howthrelte', 'yqxlbswt', 'eimhxowu', 'tnhymatj', 'unresolved', 'ligsnzur', 'smcxerwk', 'grargtfl', 'unresolved', 'could', 'please', 'check', 'root', 'cause', 'unlock', 'operator', 'password', 'log', 'mii', 'report', 'production', 'lee', 'able', 'get', 'password', 'management', 'tool', 'unlock', 'password', 'try', 'min', 'see', 'work', 'others', 'got', 'failed', 'verify', 'password', 'active', 'directory', 'error', 'tried', 'get', 'password', 'management', 'tool', 'helped', 'unlock', 'tony', 'password', 'got', 'error', 'minute', 'able', 'resolve', 'tortm', 'hortl', 'password', 'issue', 'end', 'shift'] processed_text: ['usa', 'unresolved', 'mii', 'password', 'lockout', 'employee', 'got', 'user', 'authentication', 'failed', 'error', 'cannot', 'confirm', 'production', 'hi', 'occurences', 'people', 'got', 'user', 'authentication', 'failed', 'error', 'tortm', 'hortl', 'howthrelte', 'yqxlbswt', 'eimhxowu', 'tnhymatj', 'unresolved', 'ligsnzur', 'smcxerwk', 'grargtfl', 'unresolved', 'could', 'please', 'check', 'root', 'cause', 'unlock', 'operator', 'password', 'log', 'mii', 'report', 'production', 'lee', 'able', 'get', 'password', 'management', 'tool', 'unlock', 'password', 'try', 'min', 'see', 'work', 'others', 'got', 'failed', 'verify', 'password', 'active', 'directory', 'error', 'tried', 'get', 'password', 'management', 'tool', 'helped', 'unlock', 'tony', 'password', 'got', 'error', 'minute', 'able', 'resolve', 'tortm', 'hortl', 'password', 'issue', 'end', 'shift'] list_processed_text: [['usa'], ['unresolved'], ['mii'], ['password'], ['lockout'], ['employee'], ['got'], ['user'], ['authentication'], ['failed'], ['error'], ['cannot'], ['confirm'], ['production'], ['hi'], ['occurences'], ['people'], ['got'], ['user'], ['authentication'], ['failed'], ['error'], ['tortm'], ['hortl'], ['howthrelte'], ['yqxlbswt'], ['eimhxowu'], ['tnhymatj'], ['unresolved'], ['ligsnzur'], ['smcxerwk'], ['grargtfl'], ['unresolved'], ['could'], ['please'], ['check'], ['root'], ['cause'], ['unlock'], ['operator'], ['password'], ['log'], ['mii'], ['report'], ['production'], ['lee'], ['able'], ['get'], ['password'], ['management'], ['tool'], ['unlock'], ['password'], ['try'], ['min'], ['see'], ['work'], ['others'], ['got'], ['failed'], ['verify'], ['password'], ['active'], ['directory'], ['error'], ['tried'], ['get'], ['password'], ['management'], ['tool'], ['helped'], ['unlock'], ['tony'], ['password'], ['got'], ['error'], ['minute'], ['able'], ['resolve'], ['tortm'], ['hortl'], ['password'], ['issue'], ['end'], ['shift']] k: 6635 len: <class 'list'> Data: ['job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler', 'job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler', 'job', 'hr', 'tooldplcmmaninp', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hr'], ['tooldplcmmaninp'], ['failed'], ['job'], ['scheduler'], ['job'], ['hr'], ['tooldplcmmaninp'], ['failed'], ['job'], ['scheduler']] k: 6636 len: <class 'list'> Data: ['dell', 'blue', 'screen', 'error', 'urgent', 'dell', 'blue', 'screen', 'error', 'user', 'tried', 'recover', 'safe', 'mode', 'restart', 'opetions', 'done', 'help', 'service', 'tag', 'sjv', 'asset', 'tag', 'o', 'win', 'c'] processed_text: ['dell', 'blue', 'screen', 'error', 'urgent', 'dell', 'blue', 'screen', 'error', 'user', 'tried', 'recover', 'safe', 'mode', 'restart', 'opetions', 'done', 'help', 'service', 'tag', 'sjv', 'asset', 'tag', 'o', 'win', 'c'] list_processed_text: [['dell'], ['blue'], ['screen'], ['error'], ['urgent'], ['dell'], ['blue'], ['screen'], ['error'], ['user'], ['tried'], ['recover'], ['safe'], ['mode'], ['restart'], ['opetions'], ['done'], ['help'], ['service'], ['tag'], ['sjv'], ['asset'], ['tag'], ['o'], ['win'], ['c']] k: 6637 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 6638 len: <class 'list'> Data: ['distributor', 'tool', 'page', 'error', 'distributor', 'tool', 'page', 'error'] processed_text: ['distributor', 'tool', 'page', 'error', 'distributor', 'tool', 'page', 'error'] list_processed_text: [['distributor'], ['tool'], ['page'], ['error'], ['distributor'], ['tool'], ['page'], ['error']] k: 6639 len: <class 'list'> Data: ['send', 'automatic', 'erp', 'gui', 'upgrade', 'name', 'stefdgthyo', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'send', 'automatic', 'erp', 'gui', 'upgrade'] processed_text: ['send', 'automatic', 'erp', 'gui', 'upgrade', 'name', 'stefdgthyo', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'send', 'automatic', 'erp', 'gui', 'upgrade'] list_processed_text: [['send'], ['automatic'], ['erp'], ['gui'], ['upgrade'], ['name'], ['stefdgthyo'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['send'], ['automatic'], ['erp'], ['gui'], ['upgrade']] k: 6640 len: <class 'list'> Data: ['network', 'outage', 'india', 'india', 'company', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'india', 'india', 'company', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'na', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['india'], ['india'], ['company'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['na'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['na'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['na'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['na'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6641 len: <class 'list'> Data: ['vpn', 'connection', 'issue', 'vpn', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'changed', 'default', 'browser', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['vpn', 'connection', 'issue', 'vpn', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'changed', 'default', 'browser', 'advised', 'caller', 'logon', 'company', 'vpn', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['vpn'], ['connection'], ['issue'], ['vpn'], ['connection'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['changed'], ['default'], ['browser'], ['advised'], ['caller'], ['logon'], ['company'], ['vpn'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6642 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6643 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'new', 'iphone', 'mobile', 'device', 'activation', 'new', 'iphone'] processed_text: ['mobile', 'device', 'activation', 'new', 'iphone', 'mobile', 'device', 'activation', 'new', 'iphone'] list_processed_text: [['mobile'], ['device'], ['activation'], ['new'], ['iphone'], ['mobile'], ['device'], ['activation'], ['new'], ['iphone']] k: 6644 len: <class 'list'> Data: ['decimal', 'value', 'daily', 'qty', 'confirmed', 'usa', 'plant', 'work', 'center', 'preeco', 'showing', 'mentioned', 'field', 'reference', 'collaboration', 'platform', 'decimal', 'value', 'daily', 'qty', 'confirmed', 'andsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'fccee', 'bcf', 'caf', 'andend'] processed_text: ['decimal', 'value', 'daily', 'qty', 'confirmed', 'usa', 'plant', 'work', 'center', 'preeco', 'showing', 'mentioned', 'field', 'reference', 'collaboration', 'platform', 'decimal', 'value', 'daily', 'qty', 'confirmed', 'andsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'fccee', 'bcf', 'caf', 'andend'] list_processed_text: [['decimal'], ['value'], ['daily'], ['qty'], ['confirmed'], ['usa'], ['plant'], ['work'], ['center'], ['preeco'], ['showing'], ['mentioned'], ['field'], ['reference'], ['collaboration'], ['platform'], ['decimal'], ['value'], ['daily'], ['qty'], ['confirmed'], ['andsection'], ['id'], ['bcc'], ['ab'], ['bc'], ['deae'], ['andpage'], ['id'], ['fccee'], ['bcf'], ['caf'], ['andend']] k: 6645 len: <class 'list'> Data: ['otd', 'frozen', 'date', 'alert', 'issue', 'supervisor', 'dashbankrd', 'otd', 'frozen', 'date', 'alert', 'populating', 'correctly', 'reference', 'collaboration', 'platform', 'otd', 'frozen', 'date', 'alertandsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'aaplant', 'de', 'ac', 'dacafb', 'andend'] processed_text: ['otd', 'frozen', 'date', 'alert', 'issue', 'supervisor', 'dashbankrd', 'otd', 'frozen', 'date', 'alert', 'populating', 'correctly', 'reference', 'collaboration', 'platform', 'otd', 'frozen', 'date', 'alertandsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'aaplant', 'de', 'ac', 'dacafb', 'andend'] list_processed_text: [['otd'], ['frozen'], ['date'], ['alert'], ['issue'], ['supervisor'], ['dashbankrd'], ['otd'], ['frozen'], ['date'], ['alert'], ['populating'], ['correctly'], ['reference'], ['collaboration'], ['platform'], ['otd'], ['frozen'], ['date'], ['alertandsection'], ['id'], ['bcc'], ['ab'], ['bc'], ['deae'], ['andpage'], ['id'], ['aaplant'], ['de'], ['ac'], ['dacafb'], ['andend']] k: 6646 len: <class 'list'> Data: ['setup', 'time', 'calculated', 'properly', 'email', 'kanchi', 'usa', 'confirmation', 'time', 'calculated', 'mii', 'one', 'example', 'kahrthyeui', 'found', 'mii', 'using', 'work', 'center', 'factory', 'calendar', 'excluding', 'weekend', 'time', 'calculation', 'case', 'detail', 'page', 'collaboration', 'platform', 'time', 'calculation', 'erp', 'miiandsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'ec', 'e', 'fa', 'andend'] processed_text: ['setup', 'time', 'calculated', 'properly', 'email', 'kanchi', 'usa', 'confirmation', 'time', 'calculated', 'mii', 'one', 'example', 'kahrthyeui', 'found', 'mii', 'using', 'work', 'center', 'factory', 'calendar', 'excluding', 'weekend', 'time', 'calculation', 'case', 'detail', 'page', 'collaboration', 'platform', 'time', 'calculation', 'erp', 'miiandsection', 'id', 'bcc', 'ab', 'bc', 'deae', 'andpage', 'id', 'ec', 'e', 'fa', 'andend'] list_processed_text: [['setup'], ['time'], ['calculated'], ['properly'], ['email'], ['kanchi'], ['usa'], ['confirmation'], ['time'], ['calculated'], ['mii'], ['one'], ['example'], ['kahrthyeui'], ['found'], ['mii'], ['using'], ['work'], ['center'], ['factory'], ['calendar'], ['excluding'], ['weekend'], ['time'], ['calculation'], ['case'], ['detail'], ['page'], ['collaboration'], ['platform'], ['time'], ['calculation'], ['erp'], ['miiandsection'], ['id'], ['bcc'], ['ab'], ['bc'], ['deae'], ['andpage'], ['id'], ['ec'], ['e'], ['fa'], ['andend']] k: 6647 len: <class 'list'> Data: ['global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'please', 'refer', 'screenshots', 'attached', 'email', 'wdkaoneh', 'unqlarpk', 'employee', 'employee', 'account', 'erp', 'crm', 'displayed', 'search', 'using', 'role', 'employee', 'find', 'employee', 'account', 'erp', 'crm', 'specify', 'role', 'employee'] processed_text: ['global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'global', 'erp', 'crm', 'please', 'investigate', 'agbighyail', 'espinosa', 'employee', 'account', 'erp', 'crm', 'recognized', 'employee', 'please', 'refer', 'screenshots', 'attached', 'email', 'wdkaoneh', 'unqlarpk', 'employee', 'employee', 'account', 'erp', 'crm', 'displayed', 'search', 'using', 'role', 'employee', 'find', 'employee', 'account', 'erp', 'crm', 'specify', 'role', 'employee'] list_processed_text: [['global'], ['erp'], ['crm'], ['please'], ['investigate'], ['agbighyail'], ['espinosa'], ['employee'], ['account'], ['erp'], ['crm'], ['recognized'], ['employee'], ['global'], ['erp'], ['crm'], ['please'], ['investigate'], ['agbighyail'], ['espinosa'], ['employee'], ['account'], ['erp'], ['crm'], ['recognized'], ['employee'], ['please'], ['refer'], ['screenshots'], ['attached'], ['email'], ['wdkaoneh'], ['unqlarpk'], ['employee'], ['employee'], ['account'], ['erp'], ['crm'], ['displayed'], ['search'], ['using'], ['role'], ['employee'], ['find'], ['employee'], ['account'], ['erp'], ['crm'], ['specify'], ['role'], ['employee']] k: 6648 len: <class 'list'> Data: ['search', 'work', 'center', 'machine', 'field', 'collective', 'confirmation', 'header', 'level', 'erp', 'mii', 'search', 'machine', 'number', 'typing', 'work', 'center', 'number', 'pop', 'box', 'machine', 'field', 'work', 'time', 'event', 'normal', 'confirmation', 'work', 'collective', 'header', 'level'] processed_text: ['search', 'work', 'center', 'machine', 'field', 'collective', 'confirmation', 'header', 'level', 'erp', 'mii', 'search', 'machine', 'number', 'typing', 'work', 'center', 'number', 'pop', 'box', 'machine', 'field', 'work', 'time', 'event', 'normal', 'confirmation', 'work', 'collective', 'header', 'level'] list_processed_text: [['search'], ['work'], ['center'], ['machine'], ['field'], ['collective'], ['confirmation'], ['header'], ['level'], ['erp'], ['mii'], ['search'], ['machine'], ['number'], ['typing'], ['work'], ['center'], ['number'], ['pop'], ['box'], ['machine'], ['field'], ['work'], ['time'], ['event'], ['normal'], ['confirmation'], ['work'], ['collective'], ['header'], ['level']] k: 6649 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6650 len: <class 'list'> Data: ['cannot', 'change', 'condition', 'tab', 'hello', 'appears', 'access', 'change', 'value', 'condition', 'tab', 'please', 'review', 'issue', 'need', 'complete', 'quote', 'convert', 'usd', 'kg', 'instead', 'rub', 'kg'] processed_text: ['cannot', 'change', 'condition', 'tab', 'hello', 'appears', 'access', 'change', 'value', 'condition', 'tab', 'please', 'review', 'issue', 'need', 'complete', 'quote', 'convert', 'usd', 'kg', 'instead', 'rub', 'kg'] list_processed_text: [['cannot'], ['change'], ['condition'], ['tab'], ['hello'], ['appears'], ['access'], ['change'], ['value'], ['condition'], ['tab'], ['please'], ['review'], ['issue'], ['need'], ['complete'], ['quote'], ['convert'], ['usd'], ['kg'], ['instead'], ['rub'], ['kg']] k: 6651 len: <class 'list'> Data: ['reset', 'password', 'pzjelyxg', 'vstyaouc', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'pzjelyxg', 'vstyaouc', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['pzjelyxg'], ['vstyaouc'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6652 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6653 len: <class 'list'> Data: ['quadra', 'chek', 'pc', 'eaymvrzj', 'bumzwtco', 'start', 'power', 'connected', 'nthing', 'button', 'pressed', 'quadra', 'chek', 'pc', 'eaymvrzj', 'bumzwtco', 'start', 'power', 'connected', 'nthing', 'button', 'pressed'] processed_text: ['quadra', 'chek', 'pc', 'eaymvrzj', 'bumzwtco', 'start', 'power', 'connected', 'nthing', 'button', 'pressed', 'quadra', 'chek', 'pc', 'eaymvrzj', 'bumzwtco', 'start', 'power', 'connected', 'nthing', 'button', 'pressed'] list_processed_text: [['quadra'], ['chek'], ['pc'], ['eaymvrzj'], ['bumzwtco'], ['start'], ['power'], ['connected'], ['nthing'], ['button'], ['pressed'], ['quadra'], ['chek'], ['pc'], ['eaymvrzj'], ['bumzwtco'], ['start'], ['power'], ['connected'], ['nthing'], ['button'], ['pressed']] k: 6654 len: <class 'list'> Data: ['collaboration', 'platform', 'site', 'ownership', 'hello', 'help', 'since', 'owner', 'left', 'company', 'please', 'reallocate', 'ownership', 'subsite', 'name'] processed_text: ['collaboration', 'platform', 'site', 'ownership', 'hello', 'help', 'since', 'owner', 'left', 'company', 'please', 'reallocate', 'ownership', 'subsite', 'name'] list_processed_text: [['collaboration'], ['platform'], ['site'], ['ownership'], ['hello'], ['help'], ['since'], ['owner'], ['left'], ['company'], ['please'], ['reallocate'], ['ownership'], ['subsite'], ['name']] k: 6655 len: <class 'list'> Data: ['vip', 'unable', 'open', 'file', 'collaboration', 'platform', 'stdezpqw', 'bkmeuhfz', 'never', 'able', 'open', 'kind', 'file', 'collaboration', 'platform', 'keep', 'asking', 'email', 'address', 'password', 'even', 'entering', 'keep', 'coming', 'back'] processed_text: ['vip', 'unable', 'open', 'file', 'collaboration', 'platform', 'stdezpqw', 'bkmeuhfz', 'never', 'able', 'open', 'kind', 'file', 'collaboration', 'platform', 'keep', 'asking', 'email', 'address', 'password', 'even', 'entering', 'keep', 'coming', 'back'] list_processed_text: [['vip'], ['unable'], ['open'], ['file'], ['collaboration'], ['platform'], ['stdezpqw'], ['bkmeuhfz'], ['never'], ['able'], ['open'], ['kind'], ['file'], ['collaboration'], ['platform'], ['keep'], ['asking'], ['email'], ['address'], ['password'], ['even'], ['entering'], ['keep'], ['coming'], ['back']] k: 6656 len: <class 'list'> Data: ['cannot', 'access', 'company', 'collaboration', 'platform', 'dear', 'either', 'cannot', 'access', 'company', 'collaboration', 'platform', 'company', 'collaboration', 'platform', 'page', 'stuck', 'blank', 'page', 'outlook', 'office', 'com', 'shown'] processed_text: ['cannot', 'access', 'company', 'collaboration', 'platform', 'dear', 'either', 'cannot', 'access', 'company', 'collaboration', 'platform', 'company', 'collaboration', 'platform', 'page', 'stuck', 'blank', 'page', 'outlook', 'office', 'com', 'shown'] list_processed_text: [['cannot'], ['access'], ['company'], ['collaboration'], ['platform'], ['dear'], ['either'], ['cannot'], ['access'], ['company'], ['collaboration'], ['platform'], ['company'], ['collaboration'], ['platform'], ['page'], ['stuck'], ['blank'], ['page'], ['outlook'], ['office'], ['com'], ['shown']] k: 6657 len: <class 'list'> Data: ['erp', 'order', 'acknowledgement', 'weight', 'difference', 'hello', 'please', 'review', 'quantity', 'attached', 'order', 'acknowledgement', 'quantity', 'column', 'weight', 'kg', 'correct', 'description', 'field', 'qty', 'kg', 'incorrect', 'correct', 'quantity', 'value', 'kg', 'area'] processed_text: ['erp', 'order', 'acknowledgement', 'weight', 'difference', 'hello', 'please', 'review', 'quantity', 'attached', 'order', 'acknowledgement', 'quantity', 'column', 'weight', 'kg', 'correct', 'description', 'field', 'qty', 'kg', 'incorrect', 'correct', 'quantity', 'value', 'kg', 'area'] list_processed_text: [['erp'], ['order'], ['acknowledgement'], ['weight'], ['difference'], ['hello'], ['please'], ['review'], ['quantity'], ['attached'], ['order'], ['acknowledgement'], ['quantity'], ['column'], ['weight'], ['kg'], ['correct'], ['description'], ['field'], ['qty'], ['kg'], ['incorrect'], ['correct'], ['quantity'], ['value'], ['kg'], ['area']] k: 6658 len: <class 'list'> Data: ['unable', 'load', 'collaboration', 'platform', 'unable', 'load', 'collaboration', 'platform'] processed_text: ['unable', 'load', 'collaboration', 'platform', 'unable', 'load', 'collaboration', 'platform'] list_processed_text: [['unable'], ['load'], ['collaboration'], ['platform'], ['unable'], ['load'], ['collaboration'], ['platform']] k: 6659 len: <class 'list'> Data: ['india', 'company', 'tcl', 'circuit', 'intermittently', 'flapping', 'since', 'pm', 'est', 'site', 'active', 'primary', 'intermittent', 'flap', 'tcl', 'link', 'tcloc'] processed_text: ['india', 'company', 'tcl', 'circuit', 'intermittently', 'flapping', 'since', 'pm', 'est', 'site', 'active', 'primary', 'intermittent', 'flap', 'tcl', 'link', 'tcloc'] list_processed_text: [['india'], ['company'], ['tcl'], ['circuit'], ['intermittently'], ['flapping'], ['since'], ['pm'], ['est'], ['site'], ['active'], ['primary'], ['intermittent'], ['flap'], ['tcl'], ['link'], ['tcloc']] k: 6660 len: <class 'list'> Data: ['approve', 'credit', 'memo', 'several', 'time', 'please', 'review', 'approver', 'level', 'stefyty', 'ross', 'director', 'sale', 'time', 'approve', 'credit', 'memo', 'time', 'workflow', 'happening'] processed_text: ['approve', 'credit', 'memo', 'several', 'time', 'please', 'review', 'approver', 'level', 'stefyty', 'ross', 'director', 'sale', 'time', 'approve', 'credit', 'memo', 'time', 'workflow', 'happening'] list_processed_text: [['approve'], ['credit'], ['memo'], ['several'], ['time'], ['please'], ['review'], ['approver'], ['level'], ['stefyty'], ['ross'], ['director'], ['sale'], ['time'], ['approve'], ['credit'], ['memo'], ['time'], ['workflow'], ['happening']] k: 6661 len: <class 'list'> Data: ['unable', 'login', 'replacement', 'laptop', 'showing', 'connection', 'server', 'unable', 'login', 'replacement', 'laptop', 'showing', 'connection', 'server'] processed_text: ['unable', 'login', 'replacement', 'laptop', 'showing', 'connection', 'server', 'unable', 'login', 'replacement', 'laptop', 'showing', 'connection', 'server'] list_processed_text: [['unable'], ['login'], ['replacement'], ['laptop'], ['showing'], ['connection'], ['server'], ['unable'], ['login'], ['replacement'], ['laptop'], ['showing'], ['connection'], ['server']] k: 6662 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6663 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 6664 len: <class 'list'> Data: ['skype', 'connectivity', 'flickering', 'automatically', 'signout', 'signing', 'back', 'sfb', 'online', 'outage', 'server', 'end', 'network', 'team', 'kindly', 'look', 'issue', 'skype', 'connectivity', 'flickering', 'automatically', 'sign', 'signing', 'back', 'sfb', 'online', 'outage', 'office', 'server', 'end', 'issue', 'multiple', 'user', 'kindly', 'keep', 'ticket', 'priority', 'sev', 'till', 'issue', 'resolved'] processed_text: ['skype', 'connectivity', 'flickering', 'automatically', 'signout', 'signing', 'back', 'sfb', 'online', 'outage', 'server', 'end', 'network', 'team', 'kindly', 'look', 'issue', 'skype', 'connectivity', 'flickering', 'automatically', 'sign', 'signing', 'back', 'sfb', 'online', 'outage', 'office', 'server', 'end', 'issue', 'multiple', 'user', 'kindly', 'keep', 'ticket', 'priority', 'sev', 'till', 'issue', 'resolved'] list_processed_text: [['skype'], ['connectivity'], ['flickering'], ['automatically'], ['signout'], ['signing'], ['back'], ['sfb'], ['online'], ['outage'], ['server'], ['end'], ['network'], ['team'], ['kindly'], ['look'], ['issue'], ['skype'], ['connectivity'], ['flickering'], ['automatically'], ['sign'], ['signing'], ['back'], ['sfb'], ['online'], ['outage'], ['office'], ['server'], ['end'], ['issue'], ['multiple'], ['user'], ['kindly'], ['keep'], ['ticket'], ['priority'], ['sev'], ['till'], ['issue'], ['resolved']] k: 6665 len: <class 'list'> Data: ['unable', 'access', 'net', 'weaver', 'hello', 'unable', 'access', 'kindly', 'needful'] processed_text: ['unable', 'access', 'net', 'weaver', 'hello', 'unable', 'access', 'kindly', 'needful'] list_processed_text: [['unable'], ['access'], ['net'], ['weaver'], ['hello'], ['unable'], ['access'], ['kindly'], ['needful']] k: 6666 len: <class 'list'> Data: ['team', 'sproc', 'assigning', 'indirect', 'revenue', 'tam', 'sproc', 'incorrectly', 'inner', 'joining', 'previous', 'ytd', 'revenue', 'left', 'joining', 'wont', 'result', 'empty', 'result', 'set', 'previous', 'revenue', 'aka', 'first', 'period', 'financial', 'toolcal', 'year'] processed_text: ['team', 'sproc', 'assigning', 'indirect', 'revenue', 'tam', 'sproc', 'incorrectly', 'inner', 'joining', 'previous', 'ytd', 'revenue', 'left', 'joining', 'wont', 'result', 'empty', 'result', 'set', 'previous', 'revenue', 'aka', 'first', 'period', 'financial', 'toolcal', 'year'] list_processed_text: [['team'], ['sproc'], ['assigning'], ['indirect'], ['revenue'], ['tam'], ['sproc'], ['incorrectly'], ['inner'], ['joining'], ['previous'], ['ytd'], ['revenue'], ['left'], ['joining'], ['wont'], ['result'], ['empty'], ['result'], ['set'], ['previous'], ['revenue'], ['aka'], ['first'], ['period'], ['financial'], ['toolcal'], ['year']] k: 6667 len: <class 'list'> Data: ['pikosa', 'cannot', 'log', 'work', 'station', 'hello', 'xepcsrvh', 'tbsokfyl', 'several', 'day', 'cannot', 'log', 'workstation', 'telephony', 'software', 'say', 'used', 'specify', 'screenshot', 'attachment', 'station', 'want', 'log', 'always', 'used', 'please', 'advise'] processed_text: ['pikosa', 'cannot', 'log', 'work', 'station', 'hello', 'xepcsrvh', 'tbsokfyl', 'several', 'day', 'cannot', 'log', 'workstation', 'telephony', 'software', 'say', 'used', 'specify', 'screenshot', 'attachment', 'station', 'want', 'log', 'always', 'used', 'please', 'advise'] list_processed_text: [['pikosa'], ['cannot'], ['log'], ['work'], ['station'], ['hello'], ['xepcsrvh'], ['tbsokfyl'], ['several'], ['day'], ['cannot'], ['log'], ['workstation'], ['telephony'], ['software'], ['say'], ['used'], ['specify'], ['screenshot'], ['attachment'], ['station'], ['want'], ['log'], ['always'], ['used'], ['please'], ['advise']] k: 6668 len: <class 'list'> Data: ['download', 'drawing', 'response', 'error', 'even', 'though', 'succesful', 'email', 'received', 'send', 'input', 'download', 'drawing', 'always', 'get', 'reply', 'email', 'sent', 'still', 'get', 'email', 'example', 'input', 'mail', 'input', 'sale', 'doc', 'delivery', 'doc', 'billing', 'doc', 'purchasing', 'doc', 'pur', 'sch', 'agr', 'mat', 'drawing', 'doc', 'num', 'language', 'download', 'flag', 'document', 'number', 'special', 'material', 'pdf', 'drawing', 'send', 'input', 'expect', 'sends', 'email', 'definitely', 'sends', 'email', 'fine', 'however', 'reply', 'get', 'erp', 'always', 'email', 'sent', 'make', 'sense', 'get', 'email', 'important', 'downloading', 'file', 'ftp', 'site', 'work', 'fine', 'returning', 'valid', 'message', 'even', 'successfully', 'send', 'email'] processed_text: ['download', 'drawing', 'response', 'error', 'even', 'though', 'succesful', 'email', 'received', 'send', 'input', 'download', 'drawing', 'always', 'get', 'reply', 'email', 'sent', 'still', 'get', 'email', 'example', 'input', 'mail', 'input', 'sale', 'doc', 'delivery', 'doc', 'billing', 'doc', 'purchasing', 'doc', 'pur', 'sch', 'agr', 'mat', 'drawing', 'doc', 'num', 'language', 'download', 'flag', 'document', 'number', 'special', 'material', 'pdf', 'drawing', 'send', 'input', 'expect', 'sends', 'email', 'definitely', 'sends', 'email', 'fine', 'however', 'reply', 'get', 'erp', 'always', 'email', 'sent', 'make', 'sense', 'get', 'email', 'important', 'downloading', 'file', 'ftp', 'site', 'work', 'fine', 'returning', 'valid', 'message', 'even', 'successfully', 'send', 'email'] list_processed_text: [['download'], ['drawing'], ['response'], ['error'], ['even'], ['though'], ['succesful'], ['email'], ['received'], ['send'], ['input'], ['download'], ['drawing'], ['always'], ['get'], ['reply'], ['email'], ['sent'], ['still'], ['get'], ['email'], ['example'], ['input'], ['mail'], ['input'], ['sale'], ['doc'], ['delivery'], ['doc'], ['billing'], ['doc'], ['purchasing'], ['doc'], ['pur'], ['sch'], ['agr'], ['mat'], ['drawing'], ['doc'], ['num'], ['language'], ['download'], ['flag'], ['document'], ['number'], ['special'], ['material'], ['pdf'], ['drawing'], ['send'], ['input'], ['expect'], ['sends'], ['email'], ['definitely'], ['sends'], ['email'], ['fine'], ['however'], ['reply'], ['get'], ['erp'], ['always'], ['email'], ['sent'], ['make'], ['sense'], ['get'], ['email'], ['important'], ['downloading'], ['file'], ['ftp'], ['site'], ['work'], ['fine'], ['returning'], ['valid'], ['message'], ['even'], ['successfully'], ['send'], ['email']] k: 6669 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 6670 len: <class 'list'> Data: ['network', 'outage', 'kingston', 'pa', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'kingston', 'pa', 'site', 'hard', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['kingston'], ['pa'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6671 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'nv', 'divestiture', 'site', 'secondary', 'circuit', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'nv', 'divestiture', 'site', 'secondary', 'circuit', 'since', 'et', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['nv'], ['divestiture'], ['site'], ['secondary'], ['circuit'], ['since'], ['et'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6672 len: <class 'list'> Data: ['email', 'hello', 'need', 'email', 'account', 'tab', 'removed', 'main', 'email', 'new', 'one', 'added', 'need', 'removed', 'hntl', 'usa', 'grind', 'hntl', 'usa', 'grind', 'na', 'westcoast', 'rrc', 'na', 'westcoast', 'rrc', 'one', 'added'] processed_text: ['email', 'hello', 'need', 'email', 'account', 'tab', 'removed', 'main', 'email', 'new', 'one', 'added', 'need', 'removed', 'hntl', 'usa', 'grind', 'hntl', 'usa', 'grind', 'na', 'westcoast', 'rrc', 'na', 'westcoast', 'rrc', 'one', 'added'] list_processed_text: [['email'], ['hello'], ['need'], ['email'], ['account'], ['tab'], ['removed'], ['main'], ['email'], ['new'], ['one'], ['added'], ['need'], ['removed'], ['hntl'], ['usa'], ['grind'], ['hntl'], ['usa'], ['grind'], ['na'], ['westcoast'], ['rrc'], ['na'], ['westcoast'], ['rrc'], ['one'], ['added']] k: 6673 len: <class 'list'> Data: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'secondary', 'circuit', 'since', 'et', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'secondary', 'circuit', 'since', 'et', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['vogelfontein'], ['south'], ['africa'], ['sa'], ['secondary'], ['circuit'], ['since'], ['et'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 6674 len: <class 'list'> Data: ['roadking', 'feature', 'feature', 'road', 'king', 'page', 'expanding', 'click', 'div', 'container', 'supposed', 'open', 'show', 'additional', 'content', 'longer', 'working', 'page', 'see', 'screenshot', 'attached'] processed_text: ['roadking', 'feature', 'feature', 'road', 'king', 'page', 'expanding', 'click', 'div', 'container', 'supposed', 'open', 'show', 'additional', 'content', 'longer', 'working', 'page', 'see', 'screenshot', 'attached'] list_processed_text: [['roadking'], ['feature'], ['feature'], ['road'], ['king'], ['page'], ['expanding'], ['click'], ['div'], ['container'], ['supposed'], ['open'], ['show'], ['additional'], ['content'], ['longer'], ['working'], ['page'], ['see'], ['screenshot'], ['attached']] k: 6675 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 6676 len: <class 'list'> Data: ['problem', 'vpn', 'client', 'hello', 'gentleman', "can't", 'use', 'vpn', 'got', 'following', 'error', 'message', 'time', 'try', 'third', 'username', 'password', 'ok', 'please', 'check', 'send', 'thank', 'dv', 'note', 'kind', 'regard'] processed_text: ['problem', 'vpn', 'client', 'hello', 'gentleman', "can't", 'use', 'vpn', 'got', 'following', 'error', 'message', 'time', 'try', 'third', 'username', 'password', 'ok', 'please', 'check', 'send', 'thank', 'dv', 'note', 'kind', 'regard'] list_processed_text: [['problem'], ['vpn'], ['client'], ['hello'], ['gentleman'], ["can't"], ['use'], ['vpn'], ['got'], ['following'], ['error'], ['message'], ['time'], ['try'], ['third'], ['username'], ['password'], ['ok'], ['please'], ['check'], ['send'], ['thank'], ['dv'], ['note'], ['kind'], ['regard']] k: 6677 len: <class 'list'> Data: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] processed_text: ['unable', 'log', 'erp', 'sid', 'unable', 'log', 'erp', 'sid'] list_processed_text: [['unable'], ['log'], ['erp'], ['sid'], ['unable'], ['log'], ['erp'], ['sid']] k: 6678 len: <class 'list'> Data: ['require', 'access', 'canadian', 'legal', 'reporting', 'website', 'thank', 'advance', 'wznkpjis', 'rantlypb', 'sc', 'tsrp', 'sr', 'ehs', 'analyst'] processed_text: ['require', 'access', 'canadian', 'legal', 'reporting', 'website', 'thank', 'advance', 'wznkpjis', 'rantlypb', 'sc', 'tsrp', 'sr', 'ehs', 'analyst'] list_processed_text: [['require'], ['access'], ['canadian'], ['legal'], ['reporting'], ['website'], ['thank'], ['advance'], ['wznkpjis'], ['rantlypb'], ['sc'], ['tsrp'], ['sr'], ['ehs'], ['analyst']] k: 6679 len: <class 'list'> Data: ['user', 'able', 'connect', 'drive', 'user', 'able', 'connect', 'drive'] processed_text: ['user', 'able', 'connect', 'drive', 'user', 'able', 'connect', 'drive'] list_processed_text: [['user'], ['able'], ['connect'], ['drive'], ['user'], ['able'], ['connect'], ['drive']] k: 6680 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'nwfodmhc', 'exurcwkm', 'pm', 'bmhxwvys', 'tdmgolwn', 'tiyhum', 'kuyiomar', 'sabrthy', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'suhrhtyju', 'please', 'reset', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'nwfodmhc', 'exurcwkm', 'pm', 'bmhxwvys', 'tdmgolwn', 'tiyhum', 'kuyiomar', 'sabrthy', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'suhrhtyju', 'please', 'reset', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['bmhxwvys'], ['tdmgolwn'], ['tiyhum'], ['kuyiomar'], ['sabrthy'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['hi'], ['suhrhtyju'], ['please'], ['reset'], ['password']] k: 6681 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] processed_text: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['collaboration'], ['platform'], ['issue']] k: 6682 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 6683 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'nwfodmhc', 'exurcwkm', 'pm', 'bmhxwvys', 'tdmgolwn', 'tiyhum', 'kuyiomar', 'sabrthy', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'suhrhtyju', 'please', 'reset', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'nwfodmhc', 'exurcwkm', 'pm', 'bmhxwvys', 'tdmgolwn', 'tiyhum', 'kuyiomar', 'sabrthy', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'hi', 'suhrhtyju', 'please', 'reset', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['bmhxwvys'], ['tdmgolwn'], ['tiyhum'], ['kuyiomar'], ['sabrthy'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['hi'], ['suhrhtyju'], ['please'], ['reset'], ['password']] k: 6684 len: <class 'list'> Data: ['skype', 'call', 'working', 'make', 'skype', 'call', 'pc', 'hear', 'hear'] processed_text: ['skype', 'call', 'working', 'make', 'skype', 'call', 'pc', 'hear', 'hear'] list_processed_text: [['skype'], ['call'], ['working'], ['make'], ['skype'], ['call'], ['pc'], ['hear'], ['hear']] k: 6685 len: <class 'list'> Data: ['logon', 'missing', 'erp', 'name', 'mitctdrh', 'whaley', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'issue', 'cant', 'login', 'login', 'available'] processed_text: ['logon', 'missing', 'erp', 'name', 'mitctdrh', 'whaley', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'issue', 'cant', 'login', 'login', 'available'] list_processed_text: [['logon'], ['missing'], ['erp'], ['name'], ['mitctdrh'], ['whaley'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['erp'], ['issue'], ['cant'], ['login'], ['login'], ['available']] k: 6686 len: <class 'list'> Data: ['symantec', 'software', 'message', 'hi', 'please', 'see', 'attached', 'symantec', 'message', 'keep', 'getting', 'every', 'time', 'switch', 'lap', 'top'] processed_text: ['symantec', 'software', 'message', 'hi', 'please', 'see', 'attached', 'symantec', 'message', 'keep', 'getting', 'every', 'time', 'switch', 'lap', 'top'] list_processed_text: [['symantec'], ['software'], ['message'], ['hi'], ['please'], ['see'], ['attached'], ['symantec'], ['message'], ['keep'], ['getting'], ['every'], ['time'], ['switch'], ['lap'], ['top']] k: 6687 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 6688 len: <class 'list'> Data: ['unable', 'boot', 'system', 'window', 'unable', 'boot', 'system', 'window'] processed_text: ['unable', 'boot', 'system', 'window', 'unable', 'boot', 'system', 'window'] list_processed_text: [['unable'], ['boot'], ['system'], ['window'], ['unable'], ['boot'], ['system'], ['window']] k: 6689 len: <class 'list'> Data: ['netweaver', 'password', 'working', 'netweaver', 'password', 'working'] processed_text: ['netweaver', 'password', 'working', 'netweaver', 'password', 'working'] list_processed_text: [['netweaver'], ['password'], ['working'], ['netweaver'], ['password'], ['working']] k: 6690 len: <class 'list'> Data: ['bluetooth', 'mouse', 'working', 'bluetooth', 'mouse', 'working'] processed_text: ['bluetooth', 'mouse', 'working', 'bluetooth', 'mouse', 'working'] list_processed_text: [['bluetooth'], ['mouse'], ['working'], ['bluetooth'], ['mouse'], ['working']] k: 6691 len: <class 'list'> Data: ['unable', 'login', 'past', 'see', 'unable', 'login', 'past', 'see'] processed_text: ['unable', 'login', 'past', 'see', 'unable', 'login', 'past', 'see'] list_processed_text: [['unable'], ['login'], ['past'], ['see'], ['unable'], ['login'], ['past'], ['see']] k: 6692 len: <class 'list'> Data: ['security', 'incident', 'dsw', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'apusm', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] processed_text: ['security', 'incident', 'dsw', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'hostname', 'apusm', 'destination', 'port', 'connection', 'directionality', 'internal', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] list_processed_text: [['security'], ['incident'], ['dsw'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['sharing'], ['additional'], ['information'], ['port'], ['best'], ['practice'], ['found'], ['following'], ['site'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['source'], ['port'], ['destination'], ['hostname'], ['apusm'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside']] k: 6693 len: <class 'list'> Data: ['downgrade', 'ie', 'downgrade', 'ie'] processed_text: ['downgrade', 'ie', 'downgrade', 'ie'] list_processed_text: [['downgrade'], ['ie'], ['downgrade'], ['ie']] k: 6694 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 6695 len: <class 'list'> Data: ['warehouse', 'tool', 'quality', 'issue', 'high', 'link', 'utlization', 'usa', 'warehouse', 'tool', 'quality', 'issue', 'high', 'link', 'utilization', 'usa'] processed_text: ['warehouse', 'tool', 'quality', 'issue', 'high', 'link', 'utlization', 'usa', 'warehouse', 'tool', 'quality', 'issue', 'high', 'link', 'utilization', 'usa'] list_processed_text: [['warehouse'], ['tool'], ['quality'], ['issue'], ['high'], ['link'], ['utlization'], ['usa'], ['warehouse'], ['tool'], ['quality'], ['issue'], ['high'], ['link'], ['utilization'], ['usa']] k: 6696 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 6697 len: <class 'list'> Data: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] processed_text: ['blank', 'call', 'gso', 'blank', 'call', 'gso'] list_processed_text: [['blank'], ['call'], ['gso'], ['blank'], ['call'], ['gso']] k: 6698 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] processed_text: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['unable'], ['connect'], ['wifi']] k: 6699 len: <class 'list'> Data: ['monitor', 'orientation', 'error', 'monitor', 'orientation', 'error'] processed_text: ['monitor', 'orientation', 'error', 'monitor', 'orientation', 'error'] list_processed_text: [['monitor'], ['orientation'], ['error'], ['monitor'], ['orientation'], ['error']] k: 6700 len: <class 'list'> Data: ['company', 'owned', 'iphone', 'stolen', 'company', 'owned', 'iphone', 'stolen'] processed_text: ['company', 'owned', 'iphone', 'stolen', 'company', 'owned', 'iphone', 'stolen'] list_processed_text: [['company'], ['owned'], ['iphone'], ['stolen'], ['company'], ['owned'], ['iphone'], ['stolen']] k: 6701 len: <class 'list'> Data: ['microsoft', 'password', 'reset', 'microsoft', 'password', 'reset'] processed_text: ['microsoft', 'password', 'reset', 'microsoft', 'password', 'reset'] list_processed_text: [['microsoft'], ['password'], ['reset'], ['microsoft'], ['password'], ['reset']] k: 6702 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'password', 'working', 'name', 'inhekdol', 'anvqzdif', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'call', 'aerp', 'spengineering', 'toolometer', 'computer', 'foundry', 'posrt', 'floor', 'sample', 'analyzed', 'shut', 'posrting', 'floor', 'critical'] processed_text: ['qlhmawgi', 'sgwipoxn', 'password', 'working', 'name', 'inhekdol', 'anvqzdif', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'call', 'aerp', 'spengineering', 'toolometer', 'computer', 'foundry', 'posrt', 'floor', 'sample', 'analyzed', 'shut', 'posrting', 'floor', 'critical'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['password'], ['working'], ['name'], ['inhekdol'], ['anvqzdif'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['call'], ['aerp'], ['spengineering'], ['toolometer'], ['computer'], ['foundry'], ['posrt'], ['floor'], ['sample'], ['analyzed'], ['shut'], ['posrting'], ['floor'], ['critical']] k: 6703 len: <class 'list'> Data: ['please', 'get', 'ramdnty', 'please', 'get', 'ramdnty'] processed_text: ['please', 'get', 'ramdnty', 'please', 'get', 'ramdnty'] list_processed_text: [['please'], ['get'], ['ramdnty'], ['please'], ['get'], ['ramdnty']] k: 6704 len: <class 'list'> Data: ['etime', 'working', 'etime', 'working'] processed_text: ['etime', 'working', 'etime', 'working'] list_processed_text: [['etime'], ['working'], ['etime'], ['working']] k: 6705 len: <class 'list'> Data: ['please', 'check', 'josh', 'phone', 'please', 'check', 'josh', 'phone'] processed_text: ['please', 'check', 'josh', 'phone', 'please', 'check', 'josh', 'phone'] list_processed_text: [['please'], ['check'], ['josh'], ['phone'], ['please'], ['check'], ['josh'], ['phone']] k: 6706 len: <class 'list'> Data: ['setup', 'access', 'ethic', 'setup', 'access', 'ethic'] processed_text: ['setup', 'access', 'ethic', 'setup', 'access', 'ethic'] list_processed_text: [['setup'], ['access'], ['ethic'], ['setup'], ['access'], ['ethic']] k: 6707 len: <class 'list'> Data: ['server', 'migration', 'germany', 'able', 'access', 'file', 'folder', 'ce', 'c', 'new', 'server', 'server', 'migration', 'germany', 'able', 'access', 'file', 'folder', 'ce', 'c', 'new', 'server'] processed_text: ['server', 'migration', 'germany', 'able', 'access', 'file', 'folder', 'ce', 'c', 'new', 'server', 'server', 'migration', 'germany', 'able', 'access', 'file', 'folder', 'ce', 'c', 'new', 'server'] list_processed_text: [['server'], ['migration'], ['germany'], ['able'], ['access'], ['file'], ['folder'], ['ce'], ['c'], ['new'], ['server'], ['server'], ['migration'], ['germany'], ['able'], ['access'], ['file'], ['folder'], ['ce'], ['c'], ['new'], ['server']] k: 6708 len: <class 'list'> Data: ['security', 'incident', 'possible', 'tor', 'activity', 'source', 'android', 'dedcea', 'source', 'ip', 'source', 'hostname', 'ch', 'center', 'com', 'destination', 'ip', 'destination', 'hostname', 'android', 'dedcea', 'system', 'name', 'user', 'name', 'pethrywr', 'sahl', 'sghtyhlp', 'location', 'koenigsee', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'internetsurvey', 'erratasec', 'com', 'source', 'ip', 'geolocation', 'atlanta', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'icmp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'denied', 'icmp', 'type', 'code', 'interface', 'outside'] processed_text: ['security', 'incident', 'possible', 'tor', 'activity', 'source', 'android', 'dedcea', 'source', 'ip', 'source', 'hostname', 'ch', 'center', 'com', 'destination', 'ip', 'destination', 'hostname', 'android', 'dedcea', 'system', 'name', 'user', 'name', 'pethrywr', 'sahl', 'sghtyhlp', 'location', 'koenigsee', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'internetsurvey', 'erratasec', 'com', 'source', 'ip', 'geolocation', 'atlanta', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'icmp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'denied', 'icmp', 'type', 'code', 'interface', 'outside'] list_processed_text: [['security'], ['incident'], ['possible'], ['tor'], ['activity'], ['source'], ['android'], ['dedcea'], ['source'], ['ip'], ['source'], ['hostname'], ['ch'], ['center'], ['com'], ['destination'], ['ip'], ['destination'], ['hostname'], ['android'], ['dedcea'], ['system'], ['name'], ['user'], ['name'], ['pethrywr'], ['sahl'], ['sghtyhlp'], ['location'], ['koenigsee'], ['sm'], ['status'], ['update'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['denied'], ['icmp'], ['trafficdenied'], ['icmp'], ['type'], ['code'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['internetsurvey'], ['erratasec'], ['com'], ['source'], ['ip'], ['geolocation'], ['atlanta'], ['usa'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['icmp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['denied'], ['icmp'], ['type'], ['code'], ['interface'], ['outside']] k: 6709 len: <class 'list'> Data: ['server', 'migration', 'germany', 'contactperson', 'cioehrnq', 'wfyhgelz', 'access', 'data', 'server', 'proceed', 'customer', 'order'] processed_text: ['server', 'migration', 'germany', 'contactperson', 'cioehrnq', 'wfyhgelz', 'access', 'data', 'server', 'proceed', 'customer', 'order'] list_processed_text: [['server'], ['migration'], ['germany'], ['contactperson'], ['cioehrnq'], ['wfyhgelz'], ['access'], ['data'], ['server'], ['proceed'], ['customer'], ['order']] k: 6710 len: <class 'list'> Data: ['erp', 'allow', 'create', 'attachment', 'customer', 'account', 'trying', 'attach', 'tax', 'exemption', 'form', 'customer', 'account', 'erp', 'able', 'access', 'network', 'drive', 'stored', 'receiving', 'error', 'message', 'attached', 'message', 'incident', 'trying', 'access', 'drive'] processed_text: ['erp', 'allow', 'create', 'attachment', 'customer', 'account', 'trying', 'attach', 'tax', 'exemption', 'form', 'customer', 'account', 'erp', 'able', 'access', 'network', 'drive', 'stored', 'receiving', 'error', 'message', 'attached', 'message', 'incident', 'trying', 'access', 'drive'] list_processed_text: [['erp'], ['allow'], ['create'], ['attachment'], ['customer'], ['account'], ['trying'], ['attach'], ['tax'], ['exemption'], ['form'], ['customer'], ['account'], ['erp'], ['able'], ['access'], ['network'], ['drive'], ['stored'], ['receiving'], ['error'], ['message'], ['attached'], ['message'], ['incident'], ['trying'], ['access'], ['drive']] k: 6711 len: <class 'list'> Data: ['user', 'question', 'use', 'password', 'management', 'tool', 'password', 'manager', 'user', 'question', 'use', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['user', 'question', 'use', 'password', 'management', 'tool', 'password', 'manager', 'user', 'question', 'use', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['user'], ['question'], ['use'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['user'], ['question'], ['use'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 6712 len: <class 'list'> Data: ['everytime', 'click', 'something', 'erp', 'hear', 'annoying', 'clcking', 'sound', 'also', 'try', 'access', 'document', 'header', 'get', 'pop', 'erp', 'gui', 'security', 'say', 'system', 'trying', 'create', 'file', 'erp', 'erp', 'gui', 'confirmationofhpcpo', 'msg', 'directory', 'erp', 'erp', 'gui', 'want', 'usa', 'permission', 'modify', 'parent', 'directory', 'subdirectory', 'give', 'choice', 'allow', 'deny', 'help', 'cannot', 'open', 'attachment'] processed_text: ['everytime', 'click', 'something', 'erp', 'hear', 'annoying', 'clcking', 'sound', 'also', 'try', 'access', 'document', 'header', 'get', 'pop', 'erp', 'gui', 'security', 'say', 'system', 'trying', 'create', 'file', 'erp', 'erp', 'gui', 'confirmationofhpcpo', 'msg', 'directory', 'erp', 'erp', 'gui', 'want', 'usa', 'permission', 'modify', 'parent', 'directory', 'subdirectory', 'give', 'choice', 'allow', 'deny', 'help', 'cannot', 'open', 'attachment'] list_processed_text: [['everytime'], ['click'], ['something'], ['erp'], ['hear'], ['annoying'], ['clcking'], ['sound'], ['also'], ['try'], ['access'], ['document'], ['header'], ['get'], ['pop'], ['erp'], ['gui'], ['security'], ['say'], ['system'], ['trying'], ['create'], ['file'], ['erp'], ['erp'], ['gui'], ['confirmationofhpcpo'], ['msg'], ['directory'], ['erp'], ['erp'], ['gui'], ['want'], ['usa'], ['permission'], ['modify'], ['parent'], ['directory'], ['subdirectory'], ['give'], ['choice'], ['allow'], ['deny'], ['help'], ['cannot'], ['open'], ['attachment']] k: 6713 len: <class 'list'> Data: ['replacing', 'current', 'laptop', 'thomklmas', 'replacing', 'current', 'laptop'] processed_text: ['replacing', 'current', 'laptop', 'thomklmas', 'replacing', 'current', 'laptop'] list_processed_text: [['replacing'], ['current'], ['laptop'], ['thomklmas'], ['replacing'], ['current'], ['laptop']] k: 6714 len: <class 'list'> Data: ['come', 'showixepyfbga', 'wtqdyoin', 'drive'] processed_text: ['come', 'showixepyfbga', 'wtqdyoin', 'drive'] list_processed_text: [['come'], ['showixepyfbga'], ['wtqdyoin'], ['drive']] k: 6715 len: <class 'list'> Data: ['mon', 'updating', 'email', 'morning', 'kind'] processed_text: ['mon', 'updating', 'email', 'morning', 'kind'] list_processed_text: [['mon'], ['updating'], ['email'], ['morning'], ['kind']] k: 6716 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6717 len: <class 'list'> Data: ['password', 'problem', 'hello', 'password', 'locked', 'log', 'company', 'network', 'sign'] processed_text: ['password', 'problem', 'hello', 'password', 'locked', 'log', 'company', 'network', 'sign'] list_processed_text: [['password'], ['problem'], ['hello'], ['password'], ['locked'], ['log'], ['company'], ['network'], ['sign']] k: 6718 len: <class 'list'> Data: ['audio', 'working', 'audio', 'working'] processed_text: ['audio', 'working', 'audio', 'working'] list_processed_text: [['audio'], ['working'], ['audio'], ['working']] k: 6719 len: <class 'list'> Data: ['erp', 'blank', 'screen', 'erp', 'blank', 'screen'] processed_text: ['erp', 'blank', 'screen', 'erp', 'blank', 'screen'] list_processed_text: [['erp'], ['blank'], ['screen'], ['erp'], ['blank'], ['screen']] k: 6720 len: <class 'list'> Data: ['unable', 'start', 'computer', 'showing', 'startup', 'repair', 'unable', 'start', 'computer', 'showing', 'startup', 'repair'] processed_text: ['unable', 'start', 'computer', 'showing', 'startup', 'repair', 'unable', 'start', 'computer', 'showing', 'startup', 'repair'] list_processed_text: [['unable'], ['start'], ['computer'], ['showing'], ['startup'], ['repair'], ['unable'], ['start'], ['computer'], ['showing'], ['startup'], ['repair']] k: 6721 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6722 len: <class 'list'> Data: ['reset', 'password', 'horeduca', 'ogrhivnm', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'horeduca', 'ogrhivnm', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['horeduca'], ['ogrhivnm'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6723 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'requested', 'ughzilfm', 'cfibdamq', 'erp', 'sid', 'password', 'reset', 'requested', 'ughzilfm', 'cfibdamq'] processed_text: ['erp', 'sid', 'password', 'reset', 'requested', 'ughzilfm', 'cfibdamq', 'erp', 'sid', 'password', 'reset', 'requested', 'ughzilfm', 'cfibdamq'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['requested'], ['ughzilfm'], ['cfibdamq'], ['erp'], ['sid'], ['password'], ['reset'], ['requested'], ['ughzilfm'], ['cfibdamq']] k: 6724 len: <class 'list'> Data: ['trying', 'open', 'file', 'attached', 'crm', 'extension', 'rar', 'cannot', 'open', 'file', 'file', 'attached', 'crm', 'trying', 'work', 'rar', 'extension', 'cannot', 'open', 'file', 'know', 'rar', 'file'] processed_text: ['trying', 'open', 'file', 'attached', 'crm', 'extension', 'rar', 'cannot', 'open', 'file', 'file', 'attached', 'crm', 'trying', 'work', 'rar', 'extension', 'cannot', 'open', 'file', 'know', 'rar', 'file'] list_processed_text: [['trying'], ['open'], ['file'], ['attached'], ['crm'], ['extension'], ['rar'], ['cannot'], ['open'], ['file'], ['file'], ['attached'], ['crm'], ['trying'], ['work'], ['rar'], ['extension'], ['cannot'], ['open'], ['file'], ['know'], ['rar'], ['file']] k: 6725 len: <class 'list'> Data: ['read', 'write', 'access', 'drive', 'folder', 'hi', 'please', 'provide', 'read', 'write', 'access', 'following', 'folder', 'drive', 'pu', 'coating', 'data', 'base', 'database', 'production', 'data', 'day', 'wise', 'pu', 'coating', 'data', 'base', 'database', 'production', 'data', 'month', 'wise', 'pu', 'coating', 'data', 'base', 'database', 'pu', 'production', 'database', 'computer', 'name', 'user', 'id', 'detail', 'per', 'list', 'slno', 'system', 'number', 'user', 'access', 'read', 'write', 'awyw', 'awysinic', 'sbfhydeep', 'kurtyar', 'pu', 'coating', 'grinding', 'operation'] processed_text: ['read', 'write', 'access', 'drive', 'folder', 'hi', 'please', 'provide', 'read', 'write', 'access', 'following', 'folder', 'drive', 'pu', 'coating', 'data', 'base', 'database', 'production', 'data', 'day', 'wise', 'pu', 'coating', 'data', 'base', 'database', 'production', 'data', 'month', 'wise', 'pu', 'coating', 'data', 'base', 'database', 'pu', 'production', 'database', 'computer', 'name', 'user', 'id', 'detail', 'per', 'list', 'slno', 'system', 'number', 'user', 'access', 'read', 'write', 'awyw', 'awysinic', 'sbfhydeep', 'kurtyar', 'pu', 'coating', 'grinding', 'operation'] list_processed_text: [['read'], ['write'], ['access'], ['drive'], ['folder'], ['hi'], ['please'], ['provide'], ['read'], ['write'], ['access'], ['following'], ['folder'], ['drive'], ['pu'], ['coating'], ['data'], ['base'], ['database'], ['production'], ['data'], ['day'], ['wise'], ['pu'], ['coating'], ['data'], ['base'], ['database'], ['production'], ['data'], ['month'], ['wise'], ['pu'], ['coating'], ['data'], ['base'], ['database'], ['pu'], ['production'], ['database'], ['computer'], ['name'], ['user'], ['id'], ['detail'], ['per'], ['list'], ['slno'], ['system'], ['number'], ['user'], ['access'], ['read'], ['write'], ['awyw'], ['awysinic'], ['sbfhydeep'], ['kurtyar'], ['pu'], ['coating'], ['grinding'], ['operation']] k: 6726 len: <class 'list'> Data: ['unable', 'outlook', 'unable', 'outlook'] processed_text: ['unable', 'outlook', 'unable', 'outlook'] list_processed_text: [['unable'], ['outlook'], ['unable'], ['outlook']] k: 6727 len: <class 'list'> Data: ['reset', 'password', 'mfvkxghn', 'mzjasxqd', 'sid', 'erp', 'need', 'password', 'set', 'quality', 'assurance', 'area', 'sid'] processed_text: ['reset', 'password', 'mfvkxghn', 'mzjasxqd', 'sid', 'erp', 'need', 'password', 'set', 'quality', 'assurance', 'area', 'sid'] list_processed_text: [['reset'], ['password'], ['mfvkxghn'], ['mzjasxqd'], ['sid'], ['erp'], ['need'], ['password'], ['set'], ['quality'], ['assurance'], ['area'], ['sid']] k: 6728 len: <class 'list'> Data: ['please', 'create', 'work', 'schedule', 'employee', 'rnibmcve', 'xukajlvg', 'pers', 'please', 'create', 'work', 'schedule', 'employee', 'rnibmcve', 'xukajlvg', 'pers', 'target', 'working', 'time', 'week', 'hour', 'working', 'day', 'tuesday', 'thursday', 'saturday', 'start'] processed_text: ['please', 'create', 'work', 'schedule', 'employee', 'rnibmcve', 'xukajlvg', 'pers', 'please', 'create', 'work', 'schedule', 'employee', 'rnibmcve', 'xukajlvg', 'pers', 'target', 'working', 'time', 'week', 'hour', 'working', 'day', 'tuesday', 'thursday', 'saturday', 'start'] list_processed_text: [['please'], ['create'], ['work'], ['schedule'], ['employee'], ['rnibmcve'], ['xukajlvg'], ['pers'], ['please'], ['create'], ['work'], ['schedule'], ['employee'], ['rnibmcve'], ['xukajlvg'], ['pers'], ['target'], ['working'], ['time'], ['week'], ['hour'], ['working'], ['day'], ['tuesday'], ['thursday'], ['saturday'], ['start']] k: 6729 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 6730 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6731 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6732 len: <class 'list'> Data: ['skype', 'disconnecting', 'skype', 'call', 'time', 'minute', 'koenigsee', 'germany', 'conference', 'call', 'skype', 'disconnecting', 'skype', 'call', 'time', 'minute', 'koenigsee', 'germany', 'conference', 'call', 'also', 'internetconnection', 'slow'] processed_text: ['skype', 'disconnecting', 'skype', 'call', 'time', 'minute', 'koenigsee', 'germany', 'conference', 'call', 'skype', 'disconnecting', 'skype', 'call', 'time', 'minute', 'koenigsee', 'germany', 'conference', 'call', 'also', 'internetconnection', 'slow'] list_processed_text: [['skype'], ['disconnecting'], ['skype'], ['call'], ['time'], ['minute'], ['koenigsee'], ['germany'], ['conference'], ['call'], ['skype'], ['disconnecting'], ['skype'], ['call'], ['time'], ['minute'], ['koenigsee'], ['germany'], ['conference'], ['call'], ['also'], ['internetconnection'], ['slow']] k: 6733 len: <class 'list'> Data: ['account', 'getting', 'locked', 'account', 'getting', 'locked'] processed_text: ['account', 'getting', 'locked', 'account', 'getting', 'locked'] list_processed_text: [['account'], ['getting'], ['locked'], ['account'], ['getting'], ['locked']] k: 6734 len: <class 'list'> Data: ['update', 'programdntya', 'ted', 'precise', 'deliver', 'stated', 'either', 'programdnt', 'already', 'working'] processed_text: ['update', 'programdntya', 'ted', 'precise', 'deliver', 'stated', 'either', 'programdnt', 'already', 'working'] list_processed_text: [['update'], ['programdntya'], ['ted'], ['precise'], ['deliver'], ['stated'], ['either'], ['programdnt'], ['already'], ['working']] k: 6735 len: <class 'list'> Data: ['vip', 'symantec', 'login', 'synch', 'password', 'hitacni', 'password', 'system', 'update', 'synch', 'symantec', 'password', 'vip', 'symantec', 'login', 'synch', 'password', 'hitacni', 'password', 'system', 'update', 'synch', 'symantec', 'password'] processed_text: ['vip', 'symantec', 'login', 'synch', 'password', 'hitacni', 'password', 'system', 'update', 'synch', 'symantec', 'password', 'vip', 'symantec', 'login', 'synch', 'password', 'hitacni', 'password', 'system', 'update', 'synch', 'symantec', 'password'] list_processed_text: [['vip'], ['symantec'], ['login'], ['synch'], ['password'], ['hitacni'], ['password'], ['system'], ['update'], ['synch'], ['symantec'], ['password'], ['vip'], ['symantec'], ['login'], ['synch'], ['password'], ['hitacni'], ['password'], ['system'], ['update'], ['synch'], ['symantec'], ['password']] k: 6736 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 6737 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6738 len: <class 'list'> Data: ['access', 'right', 'folder', 'ce', 'team', 'leader', 'approval', 'hr', 'grergtger'] processed_text: ['access', 'right', 'folder', 'ce', 'team', 'leader', 'approval', 'hr', 'grergtger'] list_processed_text: [['access'], ['right'], ['folder'], ['ce'], ['team'], ['leader'], ['approval'], ['hr'], ['grergtger']] k: 6739 len: <class 'list'> Data: ['set', 'back', 'document', 'please', 'set', 'back', 'document', 'status', 'dispo', 'avproduction', 'time', 'work', 'planner', 'work', 'controller', 'te', 'coating', 'te', 'r', 'cutting', 'plate', 'te', 'sk', 'pvd', 'coating', 'metaplas', 'system', 'xl'] processed_text: ['set', 'back', 'document', 'please', 'set', 'back', 'document', 'status', 'dispo', 'avproduction', 'time', 'work', 'planner', 'work', 'controller', 'te', 'coating', 'te', 'r', 'cutting', 'plate', 'te', 'sk', 'pvd', 'coating', 'metaplas', 'system', 'xl'] list_processed_text: [['set'], ['back'], ['document'], ['please'], ['set'], ['back'], ['document'], ['status'], ['dispo'], ['avproduction'], ['time'], ['work'], ['planner'], ['work'], ['controller'], ['te'], ['coating'], ['te'], ['r'], ['cutting'], ['plate'], ['te'], ['sk'], ['pvd'], ['coating'], ['metaplas'], ['system'], ['xl']] k: 6740 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'erp', 'production', 'account', 'locked'] processed_text: ['unable', 'login', 'erp', 'sid', 'erp', 'production', 'account', 'locked'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['erp'], ['production'], ['account'], ['locked']] k: 6741 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6742 len: <class 'list'> Data: ['reset', 'password', 'erp', 'vvkthyiska', 'account', 'blocked', 'hello', 'team', 'could', 'please', 'reset', 'password', 'erp', 'user', 'vvkthyiska', 'mistake', 'blocked', 'account', 'entered', 'time', 'wrong', 'password'] processed_text: ['reset', 'password', 'erp', 'vvkthyiska', 'account', 'blocked', 'hello', 'team', 'could', 'please', 'reset', 'password', 'erp', 'user', 'vvkthyiska', 'mistake', 'blocked', 'account', 'entered', 'time', 'wrong', 'password'] list_processed_text: [['reset'], ['password'], ['erp'], ['vvkthyiska'], ['account'], ['blocked'], ['hello'], ['team'], ['could'], ['please'], ['reset'], ['password'], ['erp'], ['user'], ['vvkthyiska'], ['mistake'], ['blocked'], ['account'], ['entered'], ['time'], ['wrong'], ['password']] k: 6743 len: <class 'list'> Data: ['help', 'excel', 'update', 'crm', 'could', 'please', 'advise', 'step', 'take', 'allow', 'attached', 'spreadsheet', 'refresh', 'data', 'crm', 'error', 'message', 'get', 'open', 'enable', 'content', 'mictbdhryhle', 'burnhntyham', 'regional', 'key', 'account', 'manager', 'msc', 'east', 'coast'] processed_text: ['help', 'excel', 'update', 'crm', 'could', 'please', 'advise', 'step', 'take', 'allow', 'attached', 'spreadsheet', 'refresh', 'data', 'crm', 'error', 'message', 'get', 'open', 'enable', 'content', 'mictbdhryhle', 'burnhntyham', 'regional', 'key', 'account', 'manager', 'msc', 'east', 'coast'] list_processed_text: [['help'], ['excel'], ['update'], ['crm'], ['could'], ['please'], ['advise'], ['step'], ['take'], ['allow'], ['attached'], ['spreadsheet'], ['refresh'], ['data'], ['crm'], ['error'], ['message'], ['get'], ['open'], ['enable'], ['content'], ['mictbdhryhle'], ['burnhntyham'], ['regional'], ['key'], ['account'], ['manager'], ['msc'], ['east'], ['coast']] k: 6744 len: <class 'list'> Data: ['missing', 'archive', 'email', 'hello', 'archive', 'email', 'lauacyltoe', 'hxgaycze', 'found', 'able', 'see', 'email', 'local', 'pc', 'support', 'ojrplsmx', 'wslifbzc', 'already', 'checked', 'find', 'well', 'urgently', 'need', 'email', 'please', 'advise', 'best'] processed_text: ['missing', 'archive', 'email', 'hello', 'archive', 'email', 'lauacyltoe', 'hxgaycze', 'found', 'able', 'see', 'email', 'local', 'pc', 'support', 'ojrplsmx', 'wslifbzc', 'already', 'checked', 'find', 'well', 'urgently', 'need', 'email', 'please', 'advise', 'best'] list_processed_text: [['missing'], ['archive'], ['email'], ['hello'], ['archive'], ['email'], ['lauacyltoe'], ['hxgaycze'], ['found'], ['able'], ['see'], ['email'], ['local'], ['pc'], ['support'], ['ojrplsmx'], ['wslifbzc'], ['already'], ['checked'], ['find'], ['well'], ['urgently'], ['need'], ['email'], ['please'], ['advise'], ['best']] k: 6745 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6746 len: <class 'list'> Data: ['misplaced', 'password', 'password', 'misplaced'] processed_text: ['misplaced', 'password', 'password', 'misplaced'] list_processed_text: [['misplaced'], ['password'], ['password'], ['misplaced']] k: 6747 len: <class 'list'> Data: ['edi', 'order', 'ksb', 'ag', 'dear', 'lady', 'gentleman', 'please', 'give', 'short', 'call', 'edi', 'order', 'ksb', 'ag', 'friendly', 'gr', 'child'] processed_text: ['edi', 'order', 'ksb', 'ag', 'dear', 'lady', 'gentleman', 'please', 'give', 'short', 'call', 'edi', 'order', 'ksb', 'ag', 'friendly', 'gr', 'child'] list_processed_text: [['edi'], ['order'], ['ksb'], ['ag'], ['dear'], ['lady'], ['gentleman'], ['please'], ['give'], ['short'], ['call'], ['edi'], ['order'], ['ksb'], ['ag'], ['friendly'], ['gr'], ['child']] k: 6748 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'run', 'deployment', 'german', 'language', 'former', 'germany', 'location', 'following', 'target', 'efdl', 'efdl', 'efdw', 'efdw', 'efdl', 'efdl', 'edfl', 'edfl', 'edfw', 'edfl', 'edfw', 'edfw', 'edfw', 'edfl', 'efdw', 'please', 'let', 'know', 'plan', 'location', 'moved', 'weekend', 'manually', 'right'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'run', 'deployment', 'german', 'language', 'former', 'germany', 'location', 'following', 'target', 'efdl', 'efdl', 'efdw', 'efdw', 'efdl', 'efdl', 'edfl', 'edfl', 'edfw', 'edfl', 'edfw', 'edfw', 'edfw', 'edfl', 'efdw', 'please', 'let', 'know', 'plan', 'location', 'moved', 'weekend', 'manually', 'right'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['run'], ['deployment'], ['german'], ['language'], ['former'], ['germany'], ['location'], ['following'], ['target'], ['efdl'], ['efdl'], ['efdw'], ['efdw'], ['efdl'], ['efdl'], ['edfl'], ['edfl'], ['edfw'], ['edfl'], ['edfw'], ['edfw'], ['edfw'], ['edfl'], ['efdw'], ['please'], ['let'], ['know'], ['plan'], ['location'], ['moved'], ['weekend'], ['manually'], ['right']] k: 6749 len: <class 'list'> Data: ['reset', 'password', 'karnos', 'dear', 'team', 'please', 'help', 'reset', 'password', 'user', 'karnos'] processed_text: ['reset', 'password', 'karnos', 'dear', 'team', 'please', 'help', 'reset', 'password', 'user', 'karnos'] list_processed_text: [['reset'], ['password'], ['karnos'], ['dear'], ['team'], ['please'], ['help'], ['reset'], ['password'], ['user'], ['karnos']] k: 6750 len: <class 'list'> Data: ['able', 'find', 'folder', 'outlook', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'agent', 'busy', 'assisting', 'customer', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'gxuvbcpr', 'libcktnm', 'hello', 'dwfiykeo', 'argtxmvcumar', 'hello', 'gxuvbcpr', 'libcktnm', 'sorry', 'disturb', 'issue', 'able', 'find', 'folder', 'outlook', 'think', 'deleted', 'see', 'anymore', 'dwfiykeo', 'argtxmvcumar', 'access', 'system', 'please', 'gxuvbcpr', 'libcktnm', 'sure', 'way', 'teamviewer', 'skype', 'dwfiykeo', 'argtxmvcumar', 'team', 'viewer', 'please', 'gxuvbcpr', 'libcktnm', 'id', 'pw', 'gxuvbcpr', 'libcktnm', 'hello', 'gxuvbcpr', 'libcktnm', 'folder', 'find', 'anymore', 'named', 'transportation', 'markhtyet', 'transportation', 'one', 'dwfiykeo', 'argtxmvcumar', 'ic', 'website', 'visitor', 'left', 'conversation'] processed_text: ['able', 'find', 'folder', 'outlook', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'agent', 'busy', 'assisting', 'customer', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'gxuvbcpr', 'libcktnm', 'hello', 'dwfiykeo', 'argtxmvcumar', 'hello', 'gxuvbcpr', 'libcktnm', 'sorry', 'disturb', 'issue', 'able', 'find', 'folder', 'outlook', 'think', 'deleted', 'see', 'anymore', 'dwfiykeo', 'argtxmvcumar', 'access', 'system', 'please', 'gxuvbcpr', 'libcktnm', 'sure', 'way', 'teamviewer', 'skype', 'dwfiykeo', 'argtxmvcumar', 'team', 'viewer', 'please', 'gxuvbcpr', 'libcktnm', 'id', 'pw', 'gxuvbcpr', 'libcktnm', 'hello', 'gxuvbcpr', 'libcktnm', 'folder', 'find', 'anymore', 'named', 'transportation', 'markhtyet', 'transportation', 'one', 'dwfiykeo', 'argtxmvcumar', 'ic', 'website', 'visitor', 'left', 'conversation'] list_processed_text: [['able'], ['find'], ['folder'], ['outlook'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['agent'], ['busy'], ['assisting'], ['customer'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['gxuvbcpr'], ['libcktnm'], ['hello'], ['dwfiykeo'], ['argtxmvcumar'], ['hello'], ['gxuvbcpr'], ['libcktnm'], ['sorry'], ['disturb'], ['issue'], ['able'], ['find'], ['folder'], ['outlook'], ['think'], ['deleted'], ['see'], ['anymore'], ['dwfiykeo'], ['argtxmvcumar'], ['access'], ['system'], ['please'], ['gxuvbcpr'], ['libcktnm'], ['sure'], ['way'], ['teamviewer'], ['skype'], ['dwfiykeo'], ['argtxmvcumar'], ['team'], ['viewer'], ['please'], ['gxuvbcpr'], ['libcktnm'], ['id'], ['pw'], ['gxuvbcpr'], ['libcktnm'], ['hello'], ['gxuvbcpr'], ['libcktnm'], ['folder'], ['find'], ['anymore'], ['named'], ['transportation'], ['markhtyet'], ['transportation'], ['one'], ['dwfiykeo'], ['argtxmvcumar'], ['ic'], ['website'], ['visitor'], ['left'], ['conversation']] k: 6751 len: <class 'list'> Data: ['delete', 'charm', 'delete', 'charm', 'configuration', 'done', 'already', 'issue', 'bex', 'report'] processed_text: ['delete', 'charm', 'delete', 'charm', 'configuration', 'done', 'already', 'issue', 'bex', 'report'] list_processed_text: [['delete'], ['charm'], ['delete'], ['charm'], ['configuration'], ['done'], ['already'], ['issue'], ['bex'], ['report']] k: 6752 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6753 len: <class 'list'> Data: ['unable', 'login', 'citrix', 'unable', 'login', 'citrix'] processed_text: ['unable', 'login', 'citrix', 'unable', 'login', 'citrix'] list_processed_text: [['unable'], ['login'], ['citrix'], ['unable'], ['login'], ['citrix']] k: 6754 len: <class 'list'> Data: ['probleme', 'mit', 'login', 'ypladjeu', 'wzfryxav', 'probleme', 'mit', 'login', 'ypladjeu', 'wzfryxav'] processed_text: ['probleme', 'mit', 'login', 'ypladjeu', 'wzfryxav', 'probleme', 'mit', 'login', 'ypladjeu', 'wzfryxav'] list_processed_text: [['probleme'], ['mit'], ['login'], ['ypladjeu'], ['wzfryxav'], ['probleme'], ['mit'], ['login'], ['ypladjeu'], ['wzfryxav']] k: 6755 len: <class 'list'> Data: ['probleme', 'mit', 'outlook', 'dtlmbcrx', 'mwuateyx', 'probleme', 'mit', 'outlook', 'dtlmbcrx', 'mwuateyx'] processed_text: ['probleme', 'mit', 'outlook', 'dtlmbcrx', 'mwuateyx', 'probleme', 'mit', 'outlook', 'dtlmbcrx', 'mwuateyx'] list_processed_text: [['probleme'], ['mit'], ['outlook'], ['dtlmbcrx'], ['mwuateyx'], ['probleme'], ['mit'], ['outlook'], ['dtlmbcrx'], ['mwuateyx']] k: 6756 len: <class 'list'> Data: ['printer', 'work', 'puxsvfwr', 'cwkjruni', 'printer', 'work', 'puxsvfwr', 'cwkjruni'] processed_text: ['printer', 'work', 'puxsvfwr', 'cwkjruni', 'printer', 'work', 'puxsvfwr', 'cwkjruni'] list_processed_text: [['printer'], ['work'], ['puxsvfwr'], ['cwkjruni'], ['printer'], ['work'], ['puxsvfwr'], ['cwkjruni']] k: 6757 len: <class 'list'> Data: ['confirmation', 'bls', 'beschichtungsleitstand', 'transfered', 'eu', 'tool', 'location', 'germany', 'coating', 'department', 'cvd', 'example', 'batch', 'happens', 'regularly', 'every', 'order', 'miss', 'confirmation', 'packing', 'fhurakgsl', 'mldufqov', 'eu', 'tool', 'german', 'packen', 'zum', 'beschichten', 'however', 'confirmed', 'bls', 'usually', 'confirmation', 'done', 'bls', 'transfered', 'automatically', 'eu', 'tool', 'production', 'planner', 'need', 'close', 'gap', 'manually', 'confirming', 'missing', 'process', 'step', 'incident', 'also', 'impact', 'performance', 'indicator', 'time', 'packing', 'credited', 'system', 'batch', 'current', 'example', 'issue', 'arised', 'already', 'past'] processed_text: ['confirmation', 'bls', 'beschichtungsleitstand', 'transfered', 'eu', 'tool', 'location', 'germany', 'coating', 'department', 'cvd', 'example', 'batch', 'happens', 'regularly', 'every', 'order', 'miss', 'confirmation', 'packing', 'fhurakgsl', 'mldufqov', 'eu', 'tool', 'german', 'packen', 'zum', 'beschichten', 'however', 'confirmed', 'bls', 'usually', 'confirmation', 'done', 'bls', 'transfered', 'automatically', 'eu', 'tool', 'production', 'planner', 'need', 'close', 'gap', 'manually', 'confirming', 'missing', 'process', 'step', 'incident', 'also', 'impact', 'performance', 'indicator', 'time', 'packing', 'credited', 'system', 'batch', 'current', 'example', 'issue', 'arised', 'already', 'past'] list_processed_text: [['confirmation'], ['bls'], ['beschichtungsleitstand'], ['transfered'], ['eu'], ['tool'], ['location'], ['germany'], ['coating'], ['department'], ['cvd'], ['example'], ['batch'], ['happens'], ['regularly'], ['every'], ['order'], ['miss'], ['confirmation'], ['packing'], ['fhurakgsl'], ['mldufqov'], ['eu'], ['tool'], ['german'], ['packen'], ['zum'], ['beschichten'], ['however'], ['confirmed'], ['bls'], ['usually'], ['confirmation'], ['done'], ['bls'], ['transfered'], ['automatically'], ['eu'], ['tool'], ['production'], ['planner'], ['need'], ['close'], ['gap'], ['manually'], ['confirming'], ['missing'], ['process'], ['step'], ['incident'], ['also'], ['impact'], ['performance'], ['indicator'], ['time'], ['packing'], ['credited'], ['system'], ['batch'], ['current'], ['example'], ['issue'], ['arised'], ['already'], ['past']] k: 6758 len: <class 'list'> Data: ['unable', 'open', 'order', 'confirmation', 'erp', 'please', 'find', 'snap', 'shot', 'screen', 'unable', 'open', 'url'] processed_text: ['unable', 'open', 'order', 'confirmation', 'erp', 'please', 'find', 'snap', 'shot', 'screen', 'unable', 'open', 'url'] list_processed_text: [['unable'], ['open'], ['order'], ['confirmation'], ['erp'], ['please'], ['find'], ['snap'], ['shot'], ['screen'], ['unable'], ['open'], ['url']] k: 6759 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 6760 len: <class 'list'> Data: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'virtual', 'center', 'server'] processed_text: ['system', 'disk', 'server', 'hostname', 'full', 'hello', 'system', 'disk', 'server', 'hostname', 'full', 'please', 'check', 'virtual', 'center', 'server'] list_processed_text: [['system'], ['disk'], ['server'], ['hostname'], ['full'], ['hello'], ['system'], ['disk'], ['server'], ['hostname'], ['full'], ['please'], ['check'], ['virtual'], ['center'], ['server']] k: 6761 len: <class 'list'> Data: ['personal', 'drive', 'adelhmk', 'longer', 'available', 'server', 'migration', 'please', 'restore', 'personal', 'drive', 'adelhmk', 'soon', 'possible', 'personal', 'drive', 'adelhmk', 'unavailable', 'server', 'migration'] processed_text: ['personal', 'drive', 'adelhmk', 'longer', 'available', 'server', 'migration', 'please', 'restore', 'personal', 'drive', 'adelhmk', 'soon', 'possible', 'personal', 'drive', 'adelhmk', 'unavailable', 'server', 'migration'] list_processed_text: [['personal'], ['drive'], ['adelhmk'], ['longer'], ['available'], ['server'], ['migration'], ['please'], ['restore'], ['personal'], ['drive'], ['adelhmk'], ['soon'], ['possible'], ['personal'], ['drive'], ['adelhmk'], ['unavailable'], ['server'], ['migration']] k: 6762 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6763 len: <class 'list'> Data: ['crm', 'problem', 'good', 'day', 'problem', 'crm', 'system', 'open', 'prompt', 'password', 'seemor', 'current', 'month', 'outlook', 'appear', 'screen', 'kind'] processed_text: ['crm', 'problem', 'good', 'day', 'problem', 'crm', 'system', 'open', 'prompt', 'password', 'seemor', 'current', 'month', 'outlook', 'appear', 'screen', 'kind'] list_processed_text: [['crm'], ['problem'], ['good'], ['day'], ['problem'], ['crm'], ['system'], ['open'], ['prompt'], ['password'], ['seemor'], ['current'], ['month'], ['outlook'], ['appear'], ['screen'], ['kind']] k: 6764 len: <class 'list'> Data: ['double', 'click', 'production', 'order', 'erp', 'reporting', 'md', 'distribution', 'icon', 'come', 'insert', 'amount', 'allow', 'ship', 'reached'] processed_text: ['double', 'click', 'production', 'order', 'erp', 'reporting', 'md', 'distribution', 'icon', 'come', 'insert', 'amount', 'allow', 'ship', 'reached'] list_processed_text: [['double'], ['click'], ['production'], ['order'], ['erp'], ['reporting'], ['md'], ['distribution'], ['icon'], ['come'], ['insert'], ['amount'], ['allow'], ['ship'], ['reached']] k: 6765 len: <class 'list'> Data: ['printer', 'cannot', 'find', 'scan', 'address', 'hello', 'scanning', 'printer', 'em', 'find', 'preset', 'address', 'sincerely'] processed_text: ['printer', 'cannot', 'find', 'scan', 'address', 'hello', 'scanning', 'printer', 'em', 'find', 'preset', 'address', 'sincerely'] list_processed_text: [['printer'], ['cannot'], ['find'], ['scan'], ['address'], ['hello'], ['scanning'], ['printer'], ['em'], ['find'], ['preset'], ['address'], ['sincerely']] k: 6766 len: <class 'list'> Data: ['po', 'cannot', 'posed', 'miro', 'message', 'attachements', 'po', 'error', 'message', 'shown', 'miro', 'cannot', 'posed', 'erp', 'problem', 'please', 'help', 'settle'] processed_text: ['po', 'cannot', 'posed', 'miro', 'message', 'attachements', 'po', 'error', 'message', 'shown', 'miro', 'cannot', 'posed', 'erp', 'problem', 'please', 'help', 'settle'] list_processed_text: [['po'], ['cannot'], ['posed'], ['miro'], ['message'], ['attachements'], ['po'], ['error'], ['message'], ['shown'], ['miro'], ['cannot'], ['posed'], ['erp'], ['problem'], ['please'], ['help'], ['settle']] k: 6767 len: <class 'list'> Data: ['sound', 'issue', 'sound', 'working'] processed_text: ['sound', 'issue', 'sound', 'working'] list_processed_text: [['sound'], ['issue'], ['sound'], ['working']] k: 6768 len: <class 'list'> Data: ['engineering', 'tool', 'advance', 'search', 'issue', 'hello', 'ran', 'report', 'sale', 'person', 'name', 'atuldhy', 'gurpthy', 'however', 'got', 'report', 'matching', 'user', 'searched', 'kindly', 'check', 'best'] processed_text: ['engineering', 'tool', 'advance', 'search', 'issue', 'hello', 'ran', 'report', 'sale', 'person', 'name', 'atuldhy', 'gurpthy', 'however', 'got', 'report', 'matching', 'user', 'searched', 'kindly', 'check', 'best'] list_processed_text: [['engineering'], ['tool'], ['advance'], ['search'], ['issue'], ['hello'], ['ran'], ['report'], ['sale'], ['person'], ['name'], ['atuldhy'], ['gurpthy'], ['however'], ['got'], ['report'], ['matching'], ['user'], ['searched'], ['kindly'], ['check'], ['best']] k: 6769 len: <class 'list'> Data: ['telephony', 'software', 'input', 'issue', 'enter', 'one', 'number', 'letter', 'output', 'double', 'reply', 'email', 'new', 'telephony', 'software', 'software', 'since', 'telephony', 'software', 'software', 'upgrading', 'input', 'number', 'letter', 'get', 'double', 'show', 'two', 'duplicate', 'number', 'example', 'enter', 'show', 'pls', 'find', 'attachment', 'printerscreen', 'please', 'help', 'solve', 'soon', 'possible'] processed_text: ['telephony', 'software', 'input', 'issue', 'enter', 'one', 'number', 'letter', 'output', 'double', 'reply', 'email', 'new', 'telephony', 'software', 'software', 'since', 'telephony', 'software', 'software', 'upgrading', 'input', 'number', 'letter', 'get', 'double', 'show', 'two', 'duplicate', 'number', 'example', 'enter', 'show', 'pls', 'find', 'attachment', 'printerscreen', 'please', 'help', 'solve', 'soon', 'possible'] list_processed_text: [['telephony'], ['software'], ['input'], ['issue'], ['enter'], ['one'], ['number'], ['letter'], ['output'], ['double'], ['reply'], ['email'], ['new'], ['telephony'], ['software'], ['software'], ['since'], ['telephony'], ['software'], ['software'], ['upgrading'], ['input'], ['number'], ['letter'], ['get'], ['double'], ['show'], ['two'], ['duplicate'], ['number'], ['example'], ['enter'], ['show'], ['pls'], ['find'], ['attachment'], ['printerscreen'], ['please'], ['help'], ['solve'], ['soon'], ['possible']] k: 6770 len: <class 'list'> Data: ['open', 'excel', 'attachment', 'hello', "can't", 'open', 'excel', 'attachment', 'even', 'save', 'open', 'best', 'regard'] processed_text: ['open', 'excel', 'attachment', 'hello', "can't", 'open', 'excel', 'attachment', 'even', 'save', 'open', 'best', 'regard'] list_processed_text: [['open'], ['excel'], ['attachment'], ['hello'], ["can't"], ['open'], ['excel'], ['attachment'], ['even'], ['save'], ['open'], ['best'], ['regard']] k: 6771 len: <class 'list'> Data: ['erp', 'network', 'access', 'limitation', 'hello', 'various', 'user', 'linked', 'network', 'cannot', 'log', 'erp', 'get', 'onto', 'local', 'network', 'drive', 'access', 'file', 'however', 'linked', 'network', 'use', 'internet', 'explorer', 'like', 'user', 'andthyerh', 'cvdebrc', 'vvmathkag', 'username', 'vanthyrdys', 'access', 'every', 'system', 'without', 'issue', 'best'] processed_text: ['erp', 'network', 'access', 'limitation', 'hello', 'various', 'user', 'linked', 'network', 'cannot', 'log', 'erp', 'get', 'onto', 'local', 'network', 'drive', 'access', 'file', 'however', 'linked', 'network', 'use', 'internet', 'explorer', 'like', 'user', 'andthyerh', 'cvdebrc', 'vvmathkag', 'username', 'vanthyrdys', 'access', 'every', 'system', 'without', 'issue', 'best'] list_processed_text: [['erp'], ['network'], ['access'], ['limitation'], ['hello'], ['various'], ['user'], ['linked'], ['network'], ['cannot'], ['log'], ['erp'], ['get'], ['onto'], ['local'], ['network'], ['drive'], ['access'], ['file'], ['however'], ['linked'], ['network'], ['use'], ['internet'], ['explorer'], ['like'], ['user'], ['andthyerh'], ['cvdebrc'], ['vvmathkag'], ['username'], ['vanthyrdys'], ['access'], ['every'], ['system'], ['without'], ['issue'], ['best']] k: 6772 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6773 len: <class 'list'> Data: ['kpm', 'working', 'hour', 'punched', 'task', 'visible', 'kpm'] processed_text: ['kpm', 'working', 'hour', 'punched', 'task', 'visible', 'kpm'] list_processed_text: [['kpm'], ['working'], ['hour'], ['punched'], ['task'], ['visible'], ['kpm']] k: 6774 len: <class 'list'> Data: ['ebhsm', 'utilized', 'e', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['ebhsm', 'utilized', 'e', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['ebhsm'], ['utilized'], ['e'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['server'], ['ebhsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6775 len: <class 'list'> Data: ['rqxsm', 'utilized', 'f', 'label', 'dat', 'rqxsm', 'dced', 'server', 'rqxsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['rqxsm', 'utilized', 'f', 'label', 'dat', 'rqxsm', 'dced', 'server', 'rqxsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['rqxsm'], ['utilized'], ['f'], ['label'], ['dat'], ['rqxsm'], ['dced'], ['server'], ['rqxsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6776 len: <class 'list'> Data: ['hostname', 'label', 'wsp', 'ecaa', 'utilized', 'g', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'label', 'wsp', 'ecaa', 'utilized', 'g', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['label'], ['wsp'], ['ecaa'], ['utilized'], ['g'], ['label'], ['wsp'], ['ecaa'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6777 len: <class 'list'> Data: ['reset', 'password', 'wvdxnkhf', 'jirecvta', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'wvdxnkhf', 'jirecvta', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['wvdxnkhf'], ['jirecvta'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6778 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6779 len: <class 'list'> Data: ['setup', 'new', 'laptop', 'r', 'roboworker', 'qidgvtwa', 'qvbutayx', 'setup', 'new', 'laptop', 'r', 'roboworker', 'qidgvtwa', 'qvbutayx'] processed_text: ['setup', 'new', 'laptop', 'r', 'roboworker', 'qidgvtwa', 'qvbutayx', 'setup', 'new', 'laptop', 'r', 'roboworker', 'qidgvtwa', 'qvbutayx'] list_processed_text: [['setup'], ['new'], ['laptop'], ['r'], ['roboworker'], ['qidgvtwa'], ['qvbutayx'], ['setup'], ['new'], ['laptop'], ['r'], ['roboworker'], ['qidgvtwa'], ['qvbutayx']] k: 6780 len: <class 'list'> Data: ['bad', 'printing', 'quality', 'rn', 'hello', 'use', 'printer', 'rn', 'germany', 'fm', 'printing', 'production', 'paper', 'drawing', 'one', 'step', 'moment', 'bad', 'quality', 'drawing', 'production', 'paper', 'changed', 'toner', 'toner', 'original', 'hp', 'printer', 'tewgersy', 'tgryudf', 'checked', 'printer', 'also', 'regarding', 'checking', 'printer', 'work', 'correct', 'uacyltoe', 'hxgaycze', 'print', 'word', 'good', 'quality', 'uacyltoe', 'hxgaycze', 'print', 'form', 'erp', 'bad', 'quality', 'regarding', 'suggestion', 'check', 'print', 'paramdntyeters', 'erp', 'could', 'recheck', 'please', 'change'] processed_text: ['bad', 'printing', 'quality', 'rn', 'hello', 'use', 'printer', 'rn', 'germany', 'fm', 'printing', 'production', 'paper', 'drawing', 'one', 'step', 'moment', 'bad', 'quality', 'drawing', 'production', 'paper', 'changed', 'toner', 'toner', 'original', 'hp', 'printer', 'tewgersy', 'tgryudf', 'checked', 'printer', 'also', 'regarding', 'checking', 'printer', 'work', 'correct', 'uacyltoe', 'hxgaycze', 'print', 'word', 'good', 'quality', 'uacyltoe', 'hxgaycze', 'print', 'form', 'erp', 'bad', 'quality', 'regarding', 'suggestion', 'check', 'print', 'paramdntyeters', 'erp', 'could', 'recheck', 'please', 'change'] list_processed_text: [['bad'], ['printing'], ['quality'], ['rn'], ['hello'], ['use'], ['printer'], ['rn'], ['germany'], ['fm'], ['printing'], ['production'], ['paper'], ['drawing'], ['one'], ['step'], ['moment'], ['bad'], ['quality'], ['drawing'], ['production'], ['paper'], ['changed'], ['toner'], ['toner'], ['original'], ['hp'], ['printer'], ['tewgersy'], ['tgryudf'], ['checked'], ['printer'], ['also'], ['regarding'], ['checking'], ['printer'], ['work'], ['correct'], ['uacyltoe'], ['hxgaycze'], ['print'], ['word'], ['good'], ['quality'], ['uacyltoe'], ['hxgaycze'], ['print'], ['form'], ['erp'], ['bad'], ['quality'], ['regarding'], ['suggestion'], ['check'], ['print'], ['paramdntyeters'], ['erp'], ['could'], ['recheck'], ['please'], ['change']] k: 6781 len: <class 'list'> Data: ['setup', 'new', 'w', 'sqlmtixr', 'urhbvfgd', 'setup', 'new', 'w', 'sqlmtixr', 'urhbvfgd'] processed_text: ['setup', 'new', 'w', 'sqlmtixr', 'urhbvfgd', 'setup', 'new', 'w', 'sqlmtixr', 'urhbvfgd'] list_processed_text: [['setup'], ['new'], ['w'], ['sqlmtixr'], ['urhbvfgd'], ['setup'], ['new'], ['w'], ['sqlmtixr'], ['urhbvfgd']] k: 6782 len: <class 'list'> Data: ['awysv', 'esxi', 'host', 'user', 'virakv', 'ping', 'awysv', 'pinging', 'awysv', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] processed_text: ['awysv', 'esxi', 'host', 'user', 'virakv', 'ping', 'awysv', 'pinging', 'awysv', 'company', 'com', 'byte', 'data', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'request', 'timed', 'ping', 'statistic', 'packet', 'sent', 'received', 'lost', 'loss'] list_processed_text: [['awysv'], ['esxi'], ['host'], ['user'], ['virakv'], ['ping'], ['awysv'], ['pinging'], ['awysv'], ['company'], ['com'], ['byte'], ['data'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['request'], ['timed'], ['ping'], ['statistic'], ['packet'], ['sent'], ['received'], ['lost'], ['loss']] k: 6783 len: <class 'list'> Data: ['mbb', 'download', 'hello', 'construct', 'mbb', 'erp', 'layout', 'display', 'option', 'name', 'mbb', 'richthammer', 'since', 'today', 'choose', 'layout', 'anymore', 'one', 'layout', 'could', 'collect', 'one', 'created', 'layout', 'look', 'like', 'moment', 'look', 'like', 'please', 'help', 'get', 'layout', 'mbb', 'richthammer', 'back'] processed_text: ['mbb', 'download', 'hello', 'construct', 'mbb', 'erp', 'layout', 'display', 'option', 'name', 'mbb', 'richthammer', 'since', 'today', 'choose', 'layout', 'anymore', 'one', 'layout', 'could', 'collect', 'one', 'created', 'layout', 'look', 'like', 'moment', 'look', 'like', 'please', 'help', 'get', 'layout', 'mbb', 'richthammer', 'back'] list_processed_text: [['mbb'], ['download'], ['hello'], ['construct'], ['mbb'], ['erp'], ['layout'], ['display'], ['option'], ['name'], ['mbb'], ['richthammer'], ['since'], ['today'], ['choose'], ['layout'], ['anymore'], ['one'], ['layout'], ['could'], ['collect'], ['one'], ['created'], ['layout'], ['look'], ['like'], ['moment'], ['look'], ['like'], ['please'], ['help'], ['get'], ['layout'], ['mbb'], ['richthammer'], ['back']] k: 6784 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6785 len: <class 'list'> Data: ['data', 'backup', 'profile', 'update', 'help', 'update', 'profile', 'data', 'backup', 'old', 'pc', 'new', 'pc'] processed_text: ['data', 'backup', 'profile', 'update', 'help', 'update', 'profile', 'data', 'backup', 'old', 'pc', 'new', 'pc'] list_processed_text: [['data'], ['backup'], ['profile'], ['update'], ['help'], ['update'], ['profile'], ['data'], ['backup'], ['old'], ['pc'], ['new'], ['pc']] k: 6786 len: <class 'list'> Data: ['screen', 'ckm', 'reporting', 'terminal', 'across', 'cleaning', 'system', 'defective', 'screen', 'ckm', 'reporting', 'terminal', 'across', 'cleaning', 'system', 'defective'] processed_text: ['screen', 'ckm', 'reporting', 'terminal', 'across', 'cleaning', 'system', 'defective', 'screen', 'ckm', 'reporting', 'terminal', 'across', 'cleaning', 'system', 'defective'] list_processed_text: [['screen'], ['ckm'], ['reporting'], ['terminal'], ['across'], ['cleaning'], ['system'], ['defective'], ['screen'], ['ckm'], ['reporting'], ['terminal'], ['across'], ['cleaning'], ['system'], ['defective']] k: 6787 len: <class 'list'> Data: ['customer', 'master', 'hello', 'help', 'customer', 'master', 'india', 'getting', 'updated', 'lauacyltoe', 'hxgaycze', 'mail', 'since', 'morning'] processed_text: ['customer', 'master', 'hello', 'help', 'customer', 'master', 'india', 'getting', 'updated', 'lauacyltoe', 'hxgaycze', 'mail', 'since', 'morning'] list_processed_text: [['customer'], ['master'], ['hello'], ['help'], ['customer'], ['master'], ['india'], ['getting'], ['updated'], ['lauacyltoe'], ['hxgaycze'], ['mail'], ['since'], ['morning']] k: 6788 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 6789 len: <class 'list'> Data: ['carcau', 'michthey', 'password', 'expires', 'day', 'hello', 'use', 'login', 'would', 'kind', 'help', 'best'] processed_text: ['carcau', 'michthey', 'password', 'expires', 'day', 'hello', 'use', 'login', 'would', 'kind', 'help', 'best'] list_processed_text: [['carcau'], ['michthey'], ['password'], ['expires'], ['day'], ['hello'], ['use'], ['login'], ['would'], ['kind'], ['help'], ['best']] k: 6790 len: <class 'list'> Data: ['tablet', 'dell', 'window', 'please', 'provide', 'detail', 'issue', 'window'] processed_text: ['tablet', 'dell', 'window', 'please', 'provide', 'detail', 'issue', 'window'] list_processed_text: [['tablet'], ['dell'], ['window'], ['please'], ['provide'], ['detail'], ['issue'], ['window']] k: 6791 len: <class 'list'> Data: ['please', 'add', 'office', 'printer', 'new', 'laptop', 'dear', 'sir', 'please', 'add', 'office', 'printer', 'connected', 'company', 'vpn', 'new', 'laptop'] processed_text: ['please', 'add', 'office', 'printer', 'new', 'laptop', 'dear', 'sir', 'please', 'add', 'office', 'printer', 'connected', 'company', 'vpn', 'new', 'laptop'] list_processed_text: [['please'], ['add'], ['office'], ['printer'], ['new'], ['laptop'], ['dear'], ['sir'], ['please'], ['add'], ['office'], ['printer'], ['connected'], ['company'], ['vpn'], ['new'], ['laptop']] k: 6792 len: <class 'list'> Data: ['vvthuenka', 'hi', 'mr', 'ofuhdesi', 'rhbsawmf', 'able', 'login', 'es', 'portal', 'please', 'reset', 'password', 'share', 'manager', 'emp', 'name', 'useid', 'manager', 'ofuhdesi', 'rhbsawmf', 'vvthuenka', 'ebkfwhgt', 'flapokym'] processed_text: ['vvthuenka', 'hi', 'mr', 'ofuhdesi', 'rhbsawmf', 'able', 'login', 'es', 'portal', 'please', 'reset', 'password', 'share', 'manager', 'emp', 'name', 'useid', 'manager', 'ofuhdesi', 'rhbsawmf', 'vvthuenka', 'ebkfwhgt', 'flapokym'] list_processed_text: [['vvthuenka'], ['hi'], ['mr'], ['ofuhdesi'], ['rhbsawmf'], ['able'], ['login'], ['es'], ['portal'], ['please'], ['reset'], ['password'], ['share'], ['manager'], ['emp'], ['name'], ['useid'], ['manager'], ['ofuhdesi'], ['rhbsawmf'], ['vvthuenka'], ['ebkfwhgt'], ['flapokym']] k: 6793 len: <class 'list'> Data: ['hr', 'tool', 'java', 'work', 'hr', 'tool', 'java', 'work'] processed_text: ['hr', 'tool', 'java', 'work', 'hr', 'tool', 'java', 'work'] list_processed_text: [['hr'], ['tool'], ['java'], ['work'], ['hr'], ['tool'], ['java'], ['work']] k: 6794 len: <class 'list'> Data: ['due', 'file', 'server', 'exchange,', 'access', 'database', 'possible', 'due', 'file', 'server', 'exchange', 'access', 'database', 'like', 'eemw', 'eemw', 'eemw', 'please', 'contact', 'hr', 'sudghnthdra', 'hurry'] processed_text: ['due', 'file', 'server', 'exchange,', 'access', 'database', 'possible', 'due', 'file', 'server', 'exchange', 'access', 'database', 'like', 'eemw', 'eemw', 'eemw', 'please', 'contact', 'hr', 'sudghnthdra', 'hurry'] list_processed_text: [['due'], ['file'], ['server'], ['exchange,'], ['access'], ['database'], ['possible'], ['due'], ['file'], ['server'], ['exchange'], ['access'], ['database'], ['like'], ['eemw'], ['eemw'], ['eemw'], ['please'], ['contact'], ['hr'], ['sudghnthdra'], ['hurry']] k: 6795 len: <class 'list'> Data: ['access', 'eemw', 'department', 'ce', 'parting', 'database', 'betap', 'profile', 'betapdachform', 'betapfasen', 'access', 'department', 'ce', 'parting', 'eemw', 'database', 'betap', 'profile', 'betap', 'roof', 'shape', 'betapfasen', 'contact', 'sudghnthdra'] processed_text: ['access', 'eemw', 'department', 'ce', 'parting', 'database', 'betap', 'profile', 'betapdachform', 'betapfasen', 'access', 'department', 'ce', 'parting', 'eemw', 'database', 'betap', 'profile', 'betap', 'roof', 'shape', 'betapfasen', 'contact', 'sudghnthdra'] list_processed_text: [['access'], ['eemw'], ['department'], ['ce'], ['parting'], ['database'], ['betap'], ['profile'], ['betapdachform'], ['betapfasen'], ['access'], ['department'], ['ce'], ['parting'], ['eemw'], ['database'], ['betap'], ['profile'], ['betap'], ['roof'], ['shape'], ['betapfasen'], ['contact'], ['sudghnthdra']] k: 6796 len: <class 'list'> Data: ['password', 'change', 'hello', 'could', 'please', 'help', 'unlocking', 'erp', 'blocked', 'entering', 'wrong', 'password', 'best'] processed_text: ['password', 'change', 'hello', 'could', 'please', 'help', 'unlocking', 'erp', 'blocked', 'entering', 'wrong', 'password', 'best'] list_processed_text: [['password'], ['change'], ['hello'], ['could'], ['please'], ['help'], ['unlocking'], ['erp'], ['blocked'], ['entering'], ['wrong'], ['password'], ['best']] k: 6797 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6798 len: <class 'list'> Data: ['able', 'open', 'dash', 'bankrd', 'hr', 'tool', 'site', 'link', 'web', 'link', 'able', 'open', 'dash', 'bankrd', 'hr', 'tool', 'site', 'link', 'web', 'link', 'kindly', 'check'] processed_text: ['able', 'open', 'dash', 'bankrd', 'hr', 'tool', 'site', 'link', 'web', 'link', 'able', 'open', 'dash', 'bankrd', 'hr', 'tool', 'site', 'link', 'web', 'link', 'kindly', 'check'] list_processed_text: [['able'], ['open'], ['dash'], ['bankrd'], ['hr'], ['tool'], ['site'], ['link'], ['web'], ['link'], ['able'], ['open'], ['dash'], ['bankrd'], ['hr'], ['tool'], ['site'], ['link'], ['web'], ['link'], ['kindly'], ['check']] k: 6799 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 6800 len: <class 'list'> Data: ['unable', 'open', 'permission', 'protected', 'mail', 'unable', 'open', 'permission', 'protected', 'mail'] processed_text: ['unable', 'open', 'permission', 'protected', 'mail', 'unable', 'open', 'permission', 'protected', 'mail'] list_processed_text: [['unable'], ['open'], ['permission'], ['protected'], ['mail'], ['unable'], ['open'], ['permission'], ['protected'], ['mail']] k: 6801 len: <class 'list'> Data: ['kpm', 'time', 'sheet', 'submitting', 'please', 'resolve', 'issue', 'soon', 'possible', 'employee', 'id'] processed_text: ['kpm', 'time', 'sheet', 'submitting', 'please', 'resolve', 'issue', 'soon', 'possible', 'employee', 'id'] list_processed_text: [['kpm'], ['time'], ['sheet'], ['submitting'], ['please'], ['resolve'], ['issue'], ['soon'], ['possible'], ['employee'], ['id']] k: 6802 len: <class 'list'> Data: ['erp', 'miro', 'cannot', 'pose', 'two', 'po', 'error', 'message', 'like', 'attachment', 'two', 'attachment', 'shown', 'pose', 'two', 'po', 'item', 'erp', 'give', 'error', 'message', 'say', 'profit', 'center', 'different', 'pose', 'ir', 'miro', 'please', 'help', 'settle'] processed_text: ['erp', 'miro', 'cannot', 'pose', 'two', 'po', 'error', 'message', 'like', 'attachment', 'two', 'attachment', 'shown', 'pose', 'two', 'po', 'item', 'erp', 'give', 'error', 'message', 'say', 'profit', 'center', 'different', 'pose', 'ir', 'miro', 'please', 'help', 'settle'] list_processed_text: [['erp'], ['miro'], ['cannot'], ['pose'], ['two'], ['po'], ['error'], ['message'], ['like'], ['attachment'], ['two'], ['attachment'], ['shown'], ['pose'], ['two'], ['po'], ['item'], ['erp'], ['give'], ['error'], ['message'], ['say'], ['profit'], ['center'], ['different'], ['pose'], ['ir'], ['miro'], ['please'], ['help'], ['settle']] k: 6803 len: <class 'list'> Data: ['chk', 'dn', 'dear', 'use', 'chk', 'want', 'confirm', 'mm', 'erp', 'show', 'error', 'pls', 'help', 'check', 'fix'] processed_text: ['chk', 'dn', 'dear', 'use', 'chk', 'want', 'confirm', 'mm', 'erp', 'show', 'error', 'pls', 'help', 'check', 'fix'] list_processed_text: [['chk'], ['dn'], ['dear'], ['use'], ['chk'], ['want'], ['confirm'], ['mm'], ['erp'], ['show'], ['error'], ['pls'], ['help'], ['check'], ['fix']] k: 6804 len: <class 'list'> Data: ['password', 'hi', 'help', 'changed', 'password', 'today', 'except', 'please', 'help', 'change', 'sid'] processed_text: ['password', 'hi', 'help', 'changed', 'password', 'today', 'except', 'please', 'help', 'change', 'sid'] list_processed_text: [['password'], ['hi'], ['help'], ['changed'], ['password'], ['today'], ['except'], ['please'], ['help'], ['change'], ['sid']] k: 6805 len: <class 'list'> Data: ['need', 'able', 'create', 'pr', 'xzn', 'xzs', 'used', 'able', 'create', 'pr', 'cost', 'center', 'xzn', 'xzs', 'worl', 'could', 'pls', 'help', 'find', 'show', 'purchaising', 'accross', 'comapny', 'allowed'] processed_text: ['need', 'able', 'create', 'pr', 'xzn', 'xzs', 'used', 'able', 'create', 'pr', 'cost', 'center', 'xzn', 'xzs', 'worl', 'could', 'pls', 'help', 'find', 'show', 'purchaising', 'accross', 'comapny', 'allowed'] list_processed_text: [['need'], ['able'], ['create'], ['pr'], ['xzn'], ['xzs'], ['used'], ['able'], ['create'], ['pr'], ['cost'], ['center'], ['xzn'], ['xzs'], ['worl'], ['could'], ['pls'], ['help'], ['find'], ['show'], ['purchaising'], ['accross'], ['comapny'], ['allowed']] k: 6806 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'engineering', 'tool', 'show', 'error', 'message', 'dataservices', 'taskmgr', 'getassignments', 'transaction', 'process', 'id', 'deadlocked', 'lock', 'communication', 'buffer', 'resource', 'another', 'process', 'chosen', 'deadlock', 'victim', 'rerun', 'transaction', 'please', 'help'] processed_text: ['engineering', 'tool', 'working', 'engineering', 'tool', 'show', 'error', 'message', 'dataservices', 'taskmgr', 'getassignments', 'transaction', 'process', 'id', 'deadlocked', 'lock', 'communication', 'buffer', 'resource', 'another', 'process', 'chosen', 'deadlock', 'victim', 'rerun', 'transaction', 'please', 'help'] list_processed_text: [['engineering'], ['tool'], ['working'], ['engineering'], ['tool'], ['show'], ['error'], ['message'], ['dataservices'], ['taskmgr'], ['getassignments'], ['transaction'], ['process'], ['id'], ['deadlocked'], ['lock'], ['communication'], ['buffer'], ['resource'], ['another'], ['process'], ['chosen'], ['deadlock'], ['victim'], ['rerun'], ['transaction'], ['please'], ['help']] k: 6807 len: <class 'list'> Data: ['window', 'password', 'expired', 'window', 'password', 'expired'] processed_text: ['window', 'password', 'expired', 'window', 'password', 'expired'] list_processed_text: [['window'], ['password'], ['expired'], ['window'], ['password'], ['expired']] k: 6808 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 6809 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6810 len: <class 'list'> Data: ['apps', 'hello', 'apps', 'using', 'phone', 'iphone', 'skype', 'business', 'skype', 'collaboration', 'platform', 'business', 'collaboration', 'platform', 'back', 'phone', 'icloud', 'collaboration', 'platform', 'computer', 'best'] processed_text: ['apps', 'hello', 'apps', 'using', 'phone', 'iphone', 'skype', 'business', 'skype', 'collaboration', 'platform', 'business', 'collaboration', 'platform', 'back', 'phone', 'icloud', 'collaboration', 'platform', 'computer', 'best'] list_processed_text: [['apps'], ['hello'], ['apps'], ['using'], ['phone'], ['iphone'], ['skype'], ['business'], ['skype'], ['collaboration'], ['platform'], ['business'], ['collaboration'], ['platform'], ['back'], ['phone'], ['icloud'], ['collaboration'], ['platform'], ['computer'], ['best']] k: 6811 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6812 len: <class 'list'> Data: ['tablet', 'dell', 'window', 'please', 'provide', 'detail', 'issue', 'window'] processed_text: ['tablet', 'dell', 'window', 'please', 'provide', 'detail', 'issue', 'window'] list_processed_text: [['tablet'], ['dell'], ['window'], ['please'], ['provide'], ['detail'], ['issue'], ['window']] k: 6813 len: <class 'list'> Data: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['es'], ['login'], ['issue'], ['es'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6814 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6815 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6816 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6817 len: <class 'list'> Data: ['usa', 'dnb', 'vpn', 'rtr', 'since', 'pm', 'et', 'usa', 'dnb', 'vpn', 'rtr', 'since', 'pm', 'et', 'router', 'went', 'sup', 'engine', 'replacement', 'activity', 'per', 'chg'] processed_text: ['usa', 'dnb', 'vpn', 'rtr', 'since', 'pm', 'et', 'usa', 'dnb', 'vpn', 'rtr', 'since', 'pm', 'et', 'router', 'went', 'sup', 'engine', 'replacement', 'activity', 'per', 'chg'] list_processed_text: [['usa'], ['dnb'], ['vpn'], ['rtr'], ['since'], ['pm'], ['et'], ['usa'], ['dnb'], ['vpn'], ['rtr'], ['since'], ['pm'], ['et'], ['router'], ['went'], ['sup'], ['engine'], ['replacement'], ['activity'], ['per'], ['chg']] k: 6818 len: <class 'list'> Data: ['gigabitethernet', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'stack', 'sw', 'company', 'com', 'connected', 'ap', 'company', 'de', 'germany', 'asid', 'gigabitethernet', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'stack', 'sw', 'company', 'com', 'connected', 'ap', 'company', 'de', 'germany', 'asid', 'flapping', 'attached', 'monitoring', 'engineering', 'tool'] processed_text: ['gigabitethernet', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'stack', 'sw', 'company', 'com', 'connected', 'ap', 'company', 'de', 'germany', 'asid', 'gigabitethernet', 'company', 'eu', 'deu', 'd', 'germany', 'edksw', 'stack', 'sw', 'company', 'com', 'connected', 'ap', 'company', 'de', 'germany', 'asid', 'flapping', 'attached', 'monitoring', 'engineering', 'tool'] list_processed_text: [['gigabitethernet'], ['company'], ['eu'], ['deu'], ['d'], ['germany'], ['edksw'], ['stack'], ['sw'], ['company'], ['com'], ['connected'], ['ap'], ['company'], ['de'], ['germany'], ['asid'], ['gigabitethernet'], ['company'], ['eu'], ['deu'], ['d'], ['germany'], ['edksw'], ['stack'], ['sw'], ['company'], ['com'], ['connected'], ['ap'], ['company'], ['de'], ['germany'], ['asid'], ['flapping'], ['attached'], ['monitoring'], ['engineering'], ['tool']] k: 6819 len: <class 'list'> Data: ['hostname', 'plm', 'wwi', 'uacyltoe', 'hxgaycze', 'wwisvc', 'exe', 'wrong', 'number', 'instance', 'process', 'wwisvc', 'exe', 'expected', 'instance', 'gte', 'found', 'hostname', 'plm', 'wwi', 'uacyltoe', 'hxgaycze', 'wwisvc', 'exe', 'wrong', 'number', 'instance', 'process', 'wwisvc', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['hostname', 'plm', 'wwi', 'uacyltoe', 'hxgaycze', 'wwisvc', 'exe', 'wrong', 'number', 'instance', 'process', 'wwisvc', 'exe', 'expected', 'instance', 'gte', 'found', 'hostname', 'plm', 'wwi', 'uacyltoe', 'hxgaycze', 'wwisvc', 'exe', 'wrong', 'number', 'instance', 'process', 'wwisvc', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['hostname'], ['plm'], ['wwi'], ['uacyltoe'], ['hxgaycze'], ['wwisvc'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['wwisvc'], ['exe'], ['expected'], ['instance'], ['gte'], ['found'], ['hostname'], ['plm'], ['wwi'], ['uacyltoe'], ['hxgaycze'], ['wwisvc'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['wwisvc'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 6820 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 6821 len: <class 'list'> Data: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrattr', 'failed', 'job', 'scheduler', 'job', 'bwhrattr', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrattr'], ['failed'], ['job'], ['scheduler']] k: 6822 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6823 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6824 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6825 len: <class 'list'> Data: ['israel', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et', 'emea', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et'] processed_text: ['israel', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et', 'emea', 'israel', 'company', 'company', 'eu', 'isr', 'mainswitch', 'access', 'sw', 'since', 'et'] list_processed_text: [['israel'], ['israel'], ['company'], ['company'], ['eu'], ['isr'], ['mainswitch'], ['access'], ['sw'], ['since'], ['et'], ['emea'], ['israel'], ['company'], ['company'], ['eu'], ['isr'], ['mainswitch'], ['access'], ['sw'], ['since'], ['et']] k: 6826 len: <class 'list'> Data: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] processed_text: ['job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler', 'job', 'snp', 'heu', 'regen', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler'], ['job'], ['snp'], ['heu'], ['regen'], ['failed'], ['job'], ['scheduler']] k: 6827 len: <class 'list'> Data: ['india', 'india', 'kirty', 'interface', 'gigabitethernet', 'company', 'ap', 'ind', 'kirty', 'pu', 'stack', 'sw', 'india', 'india', 'kirty', 'interface', 'gigabitethernet', 'uplink', 'core', 'admin', 'switch', 'company', 'ap', 'ind', 'kirty', 'pu', 'stack', 'sw'] processed_text: ['india', 'india', 'kirty', 'interface', 'gigabitethernet', 'company', 'ap', 'ind', 'kirty', 'pu', 'stack', 'sw', 'india', 'india', 'kirty', 'interface', 'gigabitethernet', 'uplink', 'core', 'admin', 'switch', 'company', 'ap', 'ind', 'kirty', 'pu', 'stack', 'sw'] list_processed_text: [['india'], ['india'], ['kirty'], ['interface'], ['gigabitethernet'], ['company'], ['ap'], ['ind'], ['kirty'], ['pu'], ['stack'], ['sw'], ['india'], ['india'], ['kirty'], ['interface'], ['gigabitethernet'], ['uplink'], ['core'], ['admin'], ['switch'], ['company'], ['ap'], ['ind'], ['kirty'], ['pu'], ['stack'], ['sw']] k: 6828 len: <class 'list'> Data: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] processed_text: ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler'], ['job'], ['mm'], ['zscr'], ['wkly'], ['rollfgyuej'], ['failed'], ['job'], ['scheduler']] k: 6829 len: <class 'list'> Data: ['connection', 'drive', 'na', 'dear', 'issue', 'drive', 'na', 'cannot', 'get', 'connection', 'drive', 'eu', 'running', 'well', 'nter', 'webfnhtyer', 'manager', 'sourcing', 'company', 'shared', 'service', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['connection', 'drive', 'na', 'dear', 'issue', 'drive', 'na', 'cannot', 'get', 'connection', 'drive', 'eu', 'running', 'well', 'nter', 'webfnhtyer', 'manager', 'sourcing', 'company', 'shared', 'service', 'gmbh', 'gesch', 'ftsf', 'hrer', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['connection'], ['drive'], ['na'], ['dear'], ['issue'], ['drive'], ['na'], ['cannot'], ['get'], ['connection'], ['drive'], ['eu'], ['running'], ['well'], ['nter'], ['webfnhtyer'], ['manager'], ['sourcing'], ['company'], ['shared'], ['service'], ['gmbh'], ['gesch'], ['ftsf'], ['hrer'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 6830 len: <class 'list'> Data: ['weekly', 'reboot', 'csqe', 'prod', 'server', 'weekly', 'reboot', 'csqe', 'prod', 'server', 'hostname', 'hostname'] processed_text: ['weekly', 'reboot', 'csqe', 'prod', 'server', 'weekly', 'reboot', 'csqe', 'prod', 'server', 'hostname', 'hostname'] list_processed_text: [['weekly'], ['reboot'], ['csqe'], ['prod'], ['server'], ['weekly'], ['reboot'], ['csqe'], ['prod'], ['server'], ['hostname'], ['hostname']] k: 6831 len: <class 'list'> Data: ['hostname', 'chkdsk', 'still', 'running', 'monthy', 'reboot', 'monthly', 'reboot', 'hostname', 'chkdsk', 'running', 'around', 'pm', 'et', 'currently', 'chkdsk', 'verifying', 'file', 'stage', 'percent', 'complete'] processed_text: ['hostname', 'chkdsk', 'still', 'running', 'monthy', 'reboot', 'monthly', 'reboot', 'hostname', 'chkdsk', 'running', 'around', 'pm', 'et', 'currently', 'chkdsk', 'verifying', 'file', 'stage', 'percent', 'complete'] list_processed_text: [['hostname'], ['chkdsk'], ['still'], ['running'], ['monthy'], ['reboot'], ['monthly'], ['reboot'], ['hostname'], ['chkdsk'], ['running'], ['around'], ['pm'], ['et'], ['currently'], ['chkdsk'], ['verifying'], ['file'], ['stage'], ['percent'], ['complete']] k: 6832 len: <class 'list'> Data: ['company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et'] processed_text: ['company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et', 'company', 'ap', 'chn', 'apac', 'company', 'psf', 'access', 'sw', 'company', 'com', 'since', 'pm', 'et'] list_processed_text: [['company'], ['ap'], ['chn'], ['apac'], ['company'], ['psf'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['pm'], ['et'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['psf'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['pm'], ['et']] k: 6833 len: <class 'list'> Data: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['es', 'login', 'issue', 'es', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['es'], ['login'], ['issue'], ['es'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 6834 len: <class 'list'> Data: ['user', 'unable', 'login', 'erp', 'user', 'unable', 'login', 'erp'] processed_text: ['user', 'unable', 'login', 'erp', 'user', 'unable', 'login', 'erp'] list_processed_text: [['user'], ['unable'], ['login'], ['erp'], ['user'], ['unable'], ['login'], ['erp']] k: 6835 len: <class 'list'> Data: ['hostname', 'sm', 'server', 'company', 'india', 'india', 'volume', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'co', 'observing', 'alert', 'monitoring', 'tool', 'since', 'pm', 'et', 'monitoring', 'engineering', 'tool', 'attached', 'volume', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'sm', 'server', 'company', 'india', 'india', 'volume', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'co', 'observing', 'alert', 'monitoring', 'tool', 'since', 'pm', 'et', 'monitoring', 'engineering', 'tool', 'attached', 'volume', 'label', 'wsp', 'ecaa', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['sm'], ['server'], ['company'], ['india'], ['india'], ['volume'], ['label'], ['wsp'], ['ecaa'], ['server'], ['hostname'], ['space'], ['co'], ['observing'], ['alert'], ['monitoring'], ['tool'], ['since'], ['pm'], ['et'], ['monitoring'], ['engineering'], ['tool'], ['attached'], ['volume'], ['label'], ['wsp'], ['ecaa'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6836 len: <class 'list'> Data: ['germany', 'vrtx', 'hostname', 'urgent', 'dear', 'colleague', 'virtual', 'server', 'germany', 'germany', 'move', 'hostname', 'vrtx', 'system', 'urgently', 'missing', 'virtual', 'server', 'hostname', 'fileserver', 'efdsm', 'printserver', 'server', 'team', 'would', 'please', 'kind', 'start', 'virtual', 'server', 'hostname', 'hostname', 'many'] processed_text: ['germany', 'vrtx', 'hostname', 'urgent', 'dear', 'colleague', 'virtual', 'server', 'germany', 'germany', 'move', 'hostname', 'vrtx', 'system', 'urgently', 'missing', 'virtual', 'server', 'hostname', 'fileserver', 'efdsm', 'printserver', 'server', 'team', 'would', 'please', 'kind', 'start', 'virtual', 'server', 'hostname', 'hostname', 'many'] list_processed_text: [['germany'], ['vrtx'], ['hostname'], ['urgent'], ['dear'], ['colleague'], ['virtual'], ['server'], ['germany'], ['germany'], ['move'], ['hostname'], ['vrtx'], ['system'], ['urgently'], ['missing'], ['virtual'], ['server'], ['hostname'], ['fileserver'], ['efdsm'], ['printserver'], ['server'], ['team'], ['would'], ['please'], ['kind'], ['start'], ['virtual'], ['server'], ['hostname'], ['hostname'], ['many']] k: 6837 len: <class 'list'> Data: ['mtd', 'revenue', 'detail', 'report', 'dear', 'another', 'report', 'view', 'often', 'change', 'made', 'reflect', 'territory', 'report', 'missing', 'several', 'distributor', 'please', 'see', 'screen', 'shot', 'qwijaspo', 'ukynmfig', 'sale', 'manager', 'west', 'coast'] processed_text: ['mtd', 'revenue', 'detail', 'report', 'dear', 'another', 'report', 'view', 'often', 'change', 'made', 'reflect', 'territory', 'report', 'missing', 'several', 'distributor', 'please', 'see', 'screen', 'shot', 'qwijaspo', 'ukynmfig', 'sale', 'manager', 'west', 'coast'] list_processed_text: [['mtd'], ['revenue'], ['detail'], ['report'], ['dear'], ['another'], ['report'], ['view'], ['often'], ['change'], ['made'], ['reflect'], ['territory'], ['report'], ['missing'], ['several'], ['distributor'], ['please'], ['see'], ['screen'], ['shot'], ['qwijaspo'], ['ukynmfig'], ['sale'], ['manager'], ['west'], ['coast']] k: 6838 len: <class 'list'> Data: ['vmax', 'alert', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'emc', 'sr', 'observing', 'alert', 'since', 'et', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected'] processed_text: ['vmax', 'alert', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'emc', 'sr', 'observing', 'alert', 'since', 'et', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected', 'severity', 'warning', 'category', 'environment', 'director', 'df', 'numerirtc', 'code', 'event', 'code', 'ac', 'line', 'interrupted', 'description', 'symmetrix', 'power', 'subsystem', 'ac', 'line', 'interruption', 'detected'] list_processed_text: [['vmax'], ['alert'], ['symmetrix'], ['power'], ['subsystem'], ['ac'], ['line'], ['interruption'], ['detected'], ['emc'], ['sr'], ['observing'], ['alert'], ['since'], ['et'], ['severity'], ['warning'], ['category'], ['environment'], ['director'], ['df'], ['numerirtc'], ['code'], ['event'], ['code'], ['ac'], ['line'], ['interrupted'], ['description'], ['symmetrix'], ['power'], ['subsystem'], ['ac'], ['line'], ['interruption'], ['detected'], ['severity'], ['warning'], ['category'], ['environment'], ['director'], ['df'], ['numerirtc'], ['code'], ['event'], ['code'], ['ac'], ['line'], ['interrupted'], ['description'], ['symmetrix'], ['power'], ['subsystem'], ['ac'], ['line'], ['interruption'], ['detected'], ['severity'], ['warning'], ['category'], ['environment'], ['director'], ['df'], ['numerirtc'], ['code'], ['event'], ['code'], ['ac'], ['line'], ['interrupted'], ['description'], ['symmetrix'], ['power'], ['subsystem'], ['ac'], ['line'], ['interruption'], ['detected'], ['severity'], ['warning'], ['category'], ['environment'], ['director'], ['df'], ['numerirtc'], ['code'], ['event'], ['code'], ['ac'], ['line'], ['interrupted'], ['description'], ['symmetrix'], ['power'], ['subsystem'], ['ac'], ['line'], ['interruption'], ['detected']] k: 6839 len: <class 'list'> Data: ['user', 'mentioned', 'internet', 'get', 'disconnected', 'try', 'open', 'ppt', 'home', 'location', 'user', 'mentioned', 'internet', 'get', 'disconnected', 'try', 'open', 'ppt', 'user', 'power', 'cycle', 'pc', 'modem', 'user', 'able', 'conenct', 'inter', 'connected', 'user', 'system', 'using', 'teamviewer', 'tried', 'check', 'network', 'setting', 'fine', 'lost', 'internet', 'connection', 'conection', 'stay', 'min', 'user', 'mentioned', 'connection', 'home', 'intermittent', 'conferenced', 'call', 'comcas', 'isp', 'disconnected', 'call', 'able', 'provide', 'support', 'user', 'user', 'mentioned', 'try', 'connect', 'local', 'hotspot', 'user', 'mentioned', 'check', 'connection', 'later'] processed_text: ['user', 'mentioned', 'internet', 'get', 'disconnected', 'try', 'open', 'ppt', 'home', 'location', 'user', 'mentioned', 'internet', 'get', 'disconnected', 'try', 'open', 'ppt', 'user', 'power', 'cycle', 'pc', 'modem', 'user', 'able', 'conenct', 'inter', 'connected', 'user', 'system', 'using', 'teamviewer', 'tried', 'check', 'network', 'setting', 'fine', 'lost', 'internet', 'connection', 'conection', 'stay', 'min', 'user', 'mentioned', 'connection', 'home', 'intermittent', 'conferenced', 'call', 'comcas', 'isp', 'disconnected', 'call', 'able', 'provide', 'support', 'user', 'user', 'mentioned', 'try', 'connect', 'local', 'hotspot', 'user', 'mentioned', 'check', 'connection', 'later'] list_processed_text: [['user'], ['mentioned'], ['internet'], ['get'], ['disconnected'], ['try'], ['open'], ['ppt'], ['home'], ['location'], ['user'], ['mentioned'], ['internet'], ['get'], ['disconnected'], ['try'], ['open'], ['ppt'], ['user'], ['power'], ['cycle'], ['pc'], ['modem'], ['user'], ['able'], ['conenct'], ['inter'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['tried'], ['check'], ['network'], ['setting'], ['fine'], ['lost'], ['internet'], ['connection'], ['conection'], ['stay'], ['min'], ['user'], ['mentioned'], ['connection'], ['home'], ['intermittent'], ['conferenced'], ['call'], ['comcas'], ['isp'], ['disconnected'], ['call'], ['able'], ['provide'], ['support'], ['user'], ['user'], ['mentioned'], ['try'], ['connect'], ['local'], ['hotspot'], ['user'], ['mentioned'], ['check'], ['connection'], ['later']] k: 6840 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6841 len: <class 'list'> Data: ['space', 'utilization', 'label', 'dat', 'ebhsm', 'dcc', 'space', 'consumed', 'available', 'since', 'est', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['space', 'utilization', 'label', 'dat', 'ebhsm', 'dcc', 'space', 'consumed', 'available', 'since', 'est', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['space'], ['utilization'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['space'], ['consumed'], ['available'], ['since'], ['est'], ['volume'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['server'], ['ebhsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6842 len: <class 'list'> Data: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] processed_text: ['hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor', 'hostname', 'oracle', 'finance', 'app', 'financial', 'management', 'web', 'tier', 'epmsystem', 'service', 'monitor'] list_processed_text: [['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor'], ['hostname'], ['oracle'], ['finance'], ['app'], ['financial'], ['management'], ['web'], ['tier'], ['epmsystem'], ['service'], ['monitor']] k: 6843 len: <class 'list'> Data: ['outlook', 'problem', 'outlook', 'start', 'name', 'uprmwlgb', 'kirvecja', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'problem', 'outlook', 'start'] processed_text: ['outlook', 'problem', 'outlook', 'start', 'name', 'uprmwlgb', 'kirvecja', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'outlook', 'problem', 'outlook', 'start'] list_processed_text: [['outlook'], ['problem'], ['outlook'], ['start'], ['name'], ['uprmwlgb'], ['kirvecja'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['outlook'], ['problem'], ['outlook'], ['start']] k: 6844 len: <class 'list'> Data: ['outlook', 'opening', 'laptop', 'hi', 'outlook', 'opening', 'laptop', 'look', 'urgently', 'abd', 'help'] processed_text: ['outlook', 'opening', 'laptop', 'hi', 'outlook', 'opening', 'laptop', 'look', 'urgently', 'abd', 'help'] list_processed_text: [['outlook'], ['opening'], ['laptop'], ['hi'], ['outlook'], ['opening'], ['laptop'], ['look'], ['urgently'], ['abd'], ['help']] k: 6845 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6846 len: <class 'list'> Data: ['security', 'incident', 'erratum', 'security', 'scanning', 'activity', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'alert', 'alert', 'traffic', 'port', 'entry', 'icmp', 'port', 'entry', 'icmp', 'device', 'alert', 'indicative', 'possible', 'vulnerability', 'scanning', 'activity', 'sourcing', 'erratum', 'ip', 'address', 'erratum', 'page', 'request', 'excluded', 'scanning', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'erratum', 'vulnerability', 'scanning', 'activity', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'erratum', 'vulnerability', 'scanning', 'activity', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'vulnerability', 'exist', 'across', 'system', 'application', 'create', 'path', 'cyber', 'attacker', 'gain', 'access', 'exploit', 'environment', 'scan', 'used', 'identify', 'quantify', 'specific', 'security', 'vulnerability', 'environment', 'based', 'database', 'known', 'flaw', 'sourcing', 'unauthorized', 'host', 'knowledge', 'vulnerability', 'could', 'later', 'exploited', 'potentially', 'interfere', 'service', 'availability', 'execute', 'code', 'usa', 'attacker', 'unauthorized', 'access', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'internetsurvey', 'erratasec', 'com', 'source', 'ip', 'geolocation', 'atlanta', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'icmp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'denied', 'icmp', 'type', 'code', 'interface', 'outside'] processed_text: ['security', 'incident', 'erratum', 'security', 'scanning', 'activity', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'alert', 'alert', 'traffic', 'port', 'entry', 'icmp', 'port', 'entry', 'icmp', 'device', 'alert', 'indicative', 'possible', 'vulnerability', 'scanning', 'activity', 'sourcing', 'erratum', 'ip', 'address', 'erratum', 'page', 'request', 'excluded', 'scanning', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'erratum', 'vulnerability', 'scanning', 'activity', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'erratum', 'vulnerability', 'scanning', 'activity', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'vulnerability', 'exist', 'across', 'system', 'application', 'create', 'path', 'cyber', 'attacker', 'gain', 'access', 'exploit', 'environment', 'scan', 'used', 'identify', 'quantify', 'specific', 'security', 'vulnerability', 'environment', 'based', 'database', 'known', 'flaw', 'sourcing', 'unauthorized', 'host', 'knowledge', 'vulnerability', 'could', 'later', 'exploited', 'potentially', 'interfere', 'service', 'availability', 'execute', 'code', 'usa', 'attacker', 'unauthorized', 'access', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'denied', 'icmp', 'trafficdenied', 'icmp', 'type', 'code', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'internetsurvey', 'erratasec', 'com', 'source', 'ip', 'geolocation', 'atlanta', 'usa', 'connection', 'directionality', 'incoming', 'protocol', 'icmp', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'denied', 'icmp', 'type', 'code', 'interface', 'outside'] list_processed_text: [['security'], ['incident'], ['erratum'], ['security'], ['scanning'], ['activity'], ['incident'], ['overview'], ['seeing'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['denied'], ['icmp'], ['trafficdenied'], ['icmp'], ['type'], ['code'], ['alert'], ['alert'], ['traffic'], ['port'], ['entry'], ['icmp'], ['port'], ['entry'], ['icmp'], ['device'], ['alert'], ['indicative'], ['possible'], ['vulnerability'], ['scanning'], ['activity'], ['sourcing'], ['erratum'], ['ip'], ['address'], ['erratum'], ['page'], ['request'], ['excluded'], ['scanning'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['erratum'], ['vulnerability'], ['scanning'], ['activity'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['erratum'], ['vulnerability'], ['scanning'], ['activity'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['vulnerability'], ['exist'], ['across'], ['system'], ['application'], ['create'], ['path'], ['cyber'], ['attacker'], ['gain'], ['access'], ['exploit'], ['environment'], ['scan'], ['used'], ['identify'], ['quantify'], ['specific'], ['security'], ['vulnerability'], ['environment'], ['based'], ['database'], ['known'], ['flaw'], ['sourcing'], ['unauthorized'], ['host'], ['knowledge'], ['vulnerability'], ['could'], ['later'], ['exploited'], ['potentially'], ['interfere'], ['service'], ['availability'], ['execute'], ['code'], ['usa'], ['attacker'], ['unauthorized'], ['access'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['denied'], ['icmp'], ['trafficdenied'], ['icmp'], ['type'], ['code'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['internetsurvey'], ['erratasec'], ['com'], ['source'], ['ip'], ['geolocation'], ['atlanta'], ['usa'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['icmp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['denied'], ['icmp'], ['type'], ['code'], ['interface'], ['outside']] k: 6847 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6848 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6849 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6850 len: <class 'list'> Data: ['lean', 'tracker', 'error', 'repeated', 'hello', 'pl', 'refer', 'screen', 'shot', 'error', 'warm'] processed_text: ['lean', 'tracker', 'error', 'repeated', 'hello', 'pl', 'refer', 'screen', 'shot', 'error', 'warm'] list_processed_text: [['lean'], ['tracker'], ['error'], ['repeated'], ['hello'], ['pl'], ['refer'], ['screen'], ['shot'], ['error'], ['warm']] k: 6851 len: <class 'list'> Data: ['owa', 'installation', 'mobile', 'device', 'hi', 'using', 'personal', 'android', 'mobile', 'phone', 'would', 'like', 'use', 'owa', 'outlook', 'access', 'denied', 'rejected', 'one', 'help'] processed_text: ['owa', 'installation', 'mobile', 'device', 'hi', 'using', 'personal', 'android', 'mobile', 'phone', 'would', 'like', 'use', 'owa', 'outlook', 'access', 'denied', 'rejected', 'one', 'help'] list_processed_text: [['owa'], ['installation'], ['mobile'], ['device'], ['hi'], ['using'], ['personal'], ['android'], ['mobile'], ['phone'], ['would'], ['like'], ['use'], ['owa'], ['outlook'], ['access'], ['denied'], ['rejected'], ['one'], ['help']] k: 6852 len: <class 'list'> Data: ['abend', 'batch', 'job', 'job', 'abend', 'batch', 'job', 'job'] processed_text: ['abend', 'batch', 'job', 'job', 'abend', 'batch', 'job', 'job'] list_processed_text: [['abend'], ['batch'], ['job'], ['job'], ['abend'], ['batch'], ['job'], ['job']] k: 6853 len: <class 'list'> Data: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bwhrertran', 'failed', 'job', 'scheduler', 'job', 'bwhrertran', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler'], ['job'], ['bwhrertran'], ['failed'], ['job'], ['scheduler']] k: 6854 len: <class 'list'> Data: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] processed_text: ['interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com', 'interface', 'fastethernet', 'vlan', 'lhqwxsf', 'company', 'na', 'usa', 'usa', 'switch', 'cl', 'access', 'sw', 'company', 'com'] list_processed_text: [['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['company'], ['com'], ['interface'], ['fastethernet'], ['vlan'], ['lhqwxsf'], ['company'], ['na'], ['usa'], ['usa'], ['switch'], ['cl'], ['access'], ['sw'], ['company'], ['com']] k: 6855 len: <class 'list'> Data: ['extended', 'monitor', 'cube', 'nvyjtmca', 'xjhpznds', 'working', 'extended', 'monitor', 'cube', 'nvyjtmca', 'xjhpznds', 'working'] processed_text: ['extended', 'monitor', 'cube', 'nvyjtmca', 'xjhpznds', 'working', 'extended', 'monitor', 'cube', 'nvyjtmca', 'xjhpznds', 'working'] list_processed_text: [['extended'], ['monitor'], ['cube'], ['nvyjtmca'], ['xjhpznds'], ['working'], ['extended'], ['monitor'], ['cube'], ['nvyjtmca'], ['xjhpznds'], ['working']] k: 6856 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'edt', 'job', 'job', 'failed', 'job', 'scheduler', 'edt'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'edt', 'job', 'job', 'failed', 'job', 'scheduler', 'edt'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['edt'], ['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['edt']] k: 6857 len: <class 'list'> Data: ['ebhsm', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'ebhsm', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['ebhsm', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'ebhsm', 'volume', 'label', 'dat', 'ebhsm', 'dcc', 'server', 'ebhsm', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['ebhsm'], ['volume'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['server'], ['ebhsm'], ['space'], ['consumed'], ['ebhsm'], ['volume'], ['label'], ['dat'], ['ebhsm'], ['dcc'], ['server'], ['ebhsm'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6858 len: <class 'list'> Data: ['monitoring', 'tool', 'alert', 'activity', 'page', 'working', 'pm', 'pm', 'et', 'et', 'monitoring', 'tool', 'alert', 'activity', 'page', 'working', 'pm', 'pm', 'et', 'et', 'logged', 'logged', 'monitoring', 'tool', 'issue', 'still', 'showing', 'loading', 'nothing', 'displaying', 'click', 'dashbankrd', 'home', 'button', 'issue', 'working', 'fine', 'issue', 'observed', 'alert', 'activity', 'page'] processed_text: ['monitoring', 'tool', 'alert', 'activity', 'page', 'working', 'pm', 'pm', 'et', 'et', 'monitoring', 'tool', 'alert', 'activity', 'page', 'working', 'pm', 'pm', 'et', 'et', 'logged', 'logged', 'monitoring', 'tool', 'issue', 'still', 'showing', 'loading', 'nothing', 'displaying', 'click', 'dashbankrd', 'home', 'button', 'issue', 'working', 'fine', 'issue', 'observed', 'alert', 'activity', 'page'] list_processed_text: [['monitoring'], ['tool'], ['alert'], ['activity'], ['page'], ['working'], ['pm'], ['pm'], ['et'], ['et'], ['monitoring'], ['tool'], ['alert'], ['activity'], ['page'], ['working'], ['pm'], ['pm'], ['et'], ['et'], ['logged'], ['logged'], ['monitoring'], ['tool'], ['issue'], ['still'], ['showing'], ['loading'], ['nothing'], ['displaying'], ['click'], ['dashbankrd'], ['home'], ['button'], ['issue'], ['working'], ['fine'], ['issue'], ['observed'], ['alert'], ['activity'], ['page']] k: 6859 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6860 len: <class 'list'> Data: ['unable', 'login', 'company', 'engineering', 'tool', 'unable', 'login', 'company', 'engineering', 'tool'] processed_text: ['unable', 'login', 'company', 'engineering', 'tool', 'unable', 'login', 'company', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['company'], ['engineering'], ['tool'], ['unable'], ['login'], ['company'], ['engineering'], ['tool']] k: 6861 len: <class 'list'> Data: ['m', 'crm', 'app', 'desktop', 'm', 'crm', 'app', 'desktop'] processed_text: ['m', 'crm', 'app', 'desktop', 'm', 'crm', 'app', 'desktop'] list_processed_text: [['m'], ['crm'], ['app'], ['desktop'], ['m'], ['crm'], ['app'], ['desktop']] k: 6862 len: <class 'list'> Data: ['erp', 'limited', 'attempt', 'view', 'sale', 'data', 'erp', 'row', 'go', 'beyond', 'limited', 'number', 'filter', 'still', 'removed', 'filter', 'show', 'information', 'still', 'limited', 'row', 'fix'] processed_text: ['erp', 'limited', 'attempt', 'view', 'sale', 'data', 'erp', 'row', 'go', 'beyond', 'limited', 'number', 'filter', 'still', 'removed', 'filter', 'show', 'information', 'still', 'limited', 'row', 'fix'] list_processed_text: [['erp'], ['limited'], ['attempt'], ['view'], ['sale'], ['data'], ['erp'], ['row'], ['go'], ['beyond'], ['limited'], ['number'], ['filter'], ['still'], ['removed'], ['filter'], ['show'], ['information'], ['still'], ['limited'], ['row'], ['fix']] k: 6863 len: <class 'list'> Data: ['problem', 'configurator', 'hi', 'try', 'open', 'configurator', 'company', 'center', 'engineering', 'tool', 'get', 'error', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'configurator', 'hi', 'try', 'open', 'configurator', 'company', 'center', 'engineering', 'tool', 'get', 'error', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['configurator'], ['hi'], ['try'], ['open'], ['configurator'], ['company'], ['center'], ['engineering'], ['tool'], ['get'], ['error'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 6864 len: <class 'list'> Data: ['china', 'apac', 'interface', 'gigabitethernet', 'mp', 'company', 'ap', 'chn', 'china', 'access', 'sw', 'company', 'com', 'china', 'apac', 'interface', 'gigabitethernet', 'mp', 'company', 'ap', 'chn', 'china', 'access', 'sw', 'company', 'com', 'since', 'et'] processed_text: ['china', 'apac', 'interface', 'gigabitethernet', 'mp', 'company', 'ap', 'chn', 'china', 'access', 'sw', 'company', 'com', 'china', 'apac', 'interface', 'gigabitethernet', 'mp', 'company', 'ap', 'chn', 'china', 'access', 'sw', 'company', 'com', 'since', 'et'] list_processed_text: [['china'], ['apac'], ['interface'], ['gigabitethernet'], ['mp'], ['company'], ['ap'], ['chn'], ['china'], ['access'], ['sw'], ['company'], ['com'], ['china'], ['apac'], ['interface'], ['gigabitethernet'], ['mp'], ['company'], ['ap'], ['chn'], ['china'], ['access'], ['sw'], ['company'], ['com'], ['since'], ['et']] k: 6865 len: <class 'list'> Data: ['collaboration', 'platform', 'query', 'collaboration', 'platform', 'query'] processed_text: ['collaboration', 'platform', 'query', 'collaboration', 'platform', 'query'] list_processed_text: [['collaboration'], ['platform'], ['query'], ['collaboration'], ['platform'], ['query']] k: 6866 len: <class 'list'> Data: ['access', 'engineering', 'tool', 'access', 'engineering', 'tool'] processed_text: ['access', 'engineering', 'tool', 'access', 'engineering', 'tool'] list_processed_text: [['access'], ['engineering'], ['tool'], ['access'], ['engineering'], ['tool']] k: 6867 len: <class 'list'> Data: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6868 len: <class 'list'> Data: ['unable', 'login', 'unable', 'login', 'switch', 'company', 'eu', 'deu', 'germany', 'vhsw', 'access', 'sw', 'experiencing', 'memory', 'issue'] processed_text: ['unable', 'login', 'unable', 'login', 'switch', 'company', 'eu', 'deu', 'germany', 'vhsw', 'access', 'sw', 'experiencing', 'memory', 'issue'] list_processed_text: [['unable'], ['login'], ['unable'], ['login'], ['switch'], ['company'], ['eu'], ['deu'], ['germany'], ['vhsw'], ['access'], ['sw'], ['experiencing'], ['memory'], ['issue']] k: 6869 len: <class 'list'> Data: ['call', 'external', 'user', 'call', 'external', 'user'] processed_text: ['call', 'external', 'user', 'call', 'external', 'user'] list_processed_text: [['call'], ['external'], ['user'], ['call'], ['external'], ['user']] k: 6870 len: <class 'list'> Data: ['spam', 'bokrgadu', 'euobrlcn', 'think', 'spam', 'fyi', 'hghtyther', 'drop', 'box', 'mail', 'qfcxbpht', 'oiykfzlr', 'new', 'pdf', 'document', 'shared', 'via', 'drop', 'box', 'image', 'removed', 'sender', 'dear', 'dropbox', 'user', 'sent', 'new', 'document', 'dropbox', 'view'] processed_text: ['spam', 'bokrgadu', 'euobrlcn', 'think', 'spam', 'fyi', 'hghtyther', 'drop', 'box', 'mail', 'qfcxbpht', 'oiykfzlr', 'new', 'pdf', 'document', 'shared', 'via', 'drop', 'box', 'image', 'removed', 'sender', 'dear', 'dropbox', 'user', 'sent', 'new', 'document', 'dropbox', 'view'] list_processed_text: [['spam'], ['bokrgadu'], ['euobrlcn'], ['think'], ['spam'], ['fyi'], ['hghtyther'], ['drop'], ['box'], ['mail'], ['qfcxbpht'], ['oiykfzlr'], ['new'], ['pdf'], ['document'], ['shared'], ['via'], ['drop'], ['box'], ['image'], ['removed'], ['sender'], ['dear'], ['dropbox'], ['user'], ['sent'], ['new'], ['document'], ['dropbox'], ['view']] k: 6871 len: <class 'list'> Data: ['issue', 'hi', 'computer', 'shop', 'floor', 'boot', 'power', 'button', 'orange', 'flashing', 'light', 'thing', 'tell', 'computer', 'user', 'name', 'cobrgtool'] processed_text: ['issue', 'hi', 'computer', 'shop', 'floor', 'boot', 'power', 'button', 'orange', 'flashing', 'light', 'thing', 'tell', 'computer', 'user', 'name', 'cobrgtool'] list_processed_text: [['issue'], ['hi'], ['computer'], ['shop'], ['floor'], ['boot'], ['power'], ['button'], ['orange'], ['flashing'], ['light'], ['thing'], ['tell'], ['computer'], ['user'], ['name'], ['cobrgtool']] k: 6872 len: <class 'list'> Data: ['want', 'check', 'email', 'spam', 'want', 'check', 'email', 'spam'] processed_text: ['want', 'check', 'email', 'spam', 'want', 'check', 'email', 'spam'] list_processed_text: [['want'], ['check'], ['email'], ['spam'], ['want'], ['check'], ['email'], ['spam']] k: 6873 len: <class 'list'> Data: ['intern', 'moved', 'markhtyeting', 'group', 'company', 'name', 'callie', 'pollaurid', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'quick', 'question', 'intern', 'moved', 'markhtyeting', 'group', 'company', 'owns', 'computer', 'take', 'new', 'position'] processed_text: ['intern', 'moved', 'markhtyeting', 'group', 'company', 'name', 'callie', 'pollaurid', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'quick', 'question', 'intern', 'moved', 'markhtyeting', 'group', 'company', 'owns', 'computer', 'take', 'new', 'position'] list_processed_text: [['intern'], ['moved'], ['markhtyeting'], ['group'], ['company'], ['name'], ['callie'], ['pollaurid'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['quick'], ['question'], ['intern'], ['moved'], ['markhtyeting'], ['group'], ['company'], ['owns'], ['computer'], ['take'], ['new'], ['position']] k: 6874 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'apologize', 'updated', 'paramdntyeters', 'earlier', 'failed', 'look', 'right', 'role', 'added', 'user', 'updated', 'user', 'mktgen', 'role', 'bc', 'alluser', 'crm', 'bc', 'basis', 'view', 'tcode', 'crm', 'ui', 'erp', 'crm', 'uiu', 'analtyicspro', 'ui', 'erp', 'crm', 'uiu', 'framdntyework', 'erp', 'crm', 'uiu', 'mkt', 'gen', 'erp', 'crm', 'uiu', 'sl', 'erp', 'crm', 'uiu', 'srv', 'gen', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'kathght', 'shfhyw', 'pm', 'aoyrspjv', 'hctgfeal', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'kxvwsatr', 'nmywsqrg', 'ticket', 'comment', 'added', 'send', 'updated', 'screenshot', 'please', 'logging', 'office', 'please', 'sure', 'logged', 'vpn', 'try', 'accessing', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'aoyrspjv', 'hctgfeal', 'pm', 'kathght', 'shfhyw', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'aoyrspjv', 'hctgfeal', 'kxvwsatr', 'nmywsqrg', 'fw', 'ticket', 'comment', 'added', 'hi', 'khrtyujuine', 'would', 'please', 'help', 'problem'] processed_text: ['ticket', 'comment', 'added', 'apologize', 'updated', 'paramdntyeters', 'earlier', 'failed', 'look', 'right', 'role', 'added', 'user', 'updated', 'user', 'mktgen', 'role', 'bc', 'alluser', 'crm', 'bc', 'basis', 'view', 'tcode', 'crm', 'ui', 'erp', 'crm', 'uiu', 'analtyicspro', 'ui', 'erp', 'crm', 'uiu', 'framdntyework', 'erp', 'crm', 'uiu', 'mkt', 'gen', 'erp', 'crm', 'uiu', 'sl', 'erp', 'crm', 'uiu', 'srv', 'gen', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'kathght', 'shfhyw', 'pm', 'aoyrspjv', 'hctgfeal', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'kxvwsatr', 'nmywsqrg', 'ticket', 'comment', 'added', 'send', 'updated', 'screenshot', 'please', 'logging', 'office', 'please', 'sure', 'logged', 'vpn', 'try', 'accessing', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'aoyrspjv', 'hctgfeal', 'pm', 'kathght', 'shfhyw', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'aoyrspjv', 'hctgfeal', 'kxvwsatr', 'nmywsqrg', 'fw', 'ticket', 'comment', 'added', 'hi', 'khrtyujuine', 'would', 'please', 'help', 'problem'] list_processed_text: [['ticket'], ['comment'], ['added'], ['apologize'], ['updated'], ['paramdntyeters'], ['earlier'], ['failed'], ['look'], ['right'], ['role'], ['added'], ['user'], ['updated'], ['user'], ['mktgen'], ['role'], ['bc'], ['alluser'], ['crm'], ['bc'], ['basis'], ['view'], ['tcode'], ['crm'], ['ui'], ['erp'], ['crm'], ['uiu'], ['analtyicspro'], ['ui'], ['erp'], ['crm'], ['uiu'], ['framdntyework'], ['erp'], ['crm'], ['uiu'], ['mkt'], ['gen'], ['erp'], ['crm'], ['uiu'], ['sl'], ['erp'], ['crm'], ['uiu'], ['srv'], ['gen'], ['afkstcev'], ['utbnkyop'], ['senior'], ['analyst'], ['bokrgadu'], ['euobrlcn'], ['kathght'], ['shfhyw'], ['pm'], ['aoyrspjv'], ['hctgfeal'], ['eqxyvfpi'], ['gbaljypo'], ['riqmdnzs'], ['mtlghwex'], ['gergryth'], ['mgndhtillen'], ['kxvwsatr'], ['nmywsqrg'], ['ticket'], ['comment'], ['added'], ['send'], ['updated'], ['screenshot'], ['please'], ['logging'], ['office'], ['please'], ['sure'], ['logged'], ['vpn'], ['try'], ['accessing'], ['afkstcev'], ['utbnkyop'], ['senior'], ['analyst'], ['bokrgadu'], ['euobrlcn'], ['aoyrspjv'], ['hctgfeal'], ['pm'], ['kathght'], ['shfhyw'], ['eqxyvfpi'], ['gbaljypo'], ['riqmdnzs'], ['mtlghwex'], ['gergryth'], ['mgndhtillen'], ['aoyrspjv'], ['hctgfeal'], ['kxvwsatr'], ['nmywsqrg'], ['fw'], ['ticket'], ['comment'], ['added'], ['hi'], ['khrtyujuine'], ['would'], ['please'], ['help'], ['problem']] k: 6875 len: <class 'list'> Data: ['ticket', 'comment', 'added', 'send', 'updated', 'screenshot', 'please', 'logging', 'office', 'please', 'sure', 'logged', 'vpn', 'try', 'accessing', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'aoyrspjv', 'hctgfeal', 'pm', 'kathght', 'shfhyw', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'aoyrspjv', 'hctgfeal', 'kxvwsatr', 'nmywsqrg', 'fw', 'ticket', 'comment', 'added', 'hi', 'khrtyujuine', 'would', 'please', 'help', 'problem'] processed_text: ['ticket', 'comment', 'added', 'send', 'updated', 'screenshot', 'please', 'logging', 'office', 'please', 'sure', 'logged', 'vpn', 'try', 'accessing', 'afkstcev', 'utbnkyop', 'senior', 'analyst', 'bokrgadu', 'euobrlcn', 'aoyrspjv', 'hctgfeal', 'pm', 'kathght', 'shfhyw', 'eqxyvfpi', 'gbaljypo', 'riqmdnzs', 'mtlghwex', 'gergryth', 'mgndhtillen', 'aoyrspjv', 'hctgfeal', 'kxvwsatr', 'nmywsqrg', 'fw', 'ticket', 'comment', 'added', 'hi', 'khrtyujuine', 'would', 'please', 'help', 'problem'] list_processed_text: [['ticket'], ['comment'], ['added'], ['send'], ['updated'], ['screenshot'], ['please'], ['logging'], ['office'], ['please'], ['sure'], ['logged'], ['vpn'], ['try'], ['accessing'], ['afkstcev'], ['utbnkyop'], ['senior'], ['analyst'], ['bokrgadu'], ['euobrlcn'], ['aoyrspjv'], ['hctgfeal'], ['pm'], ['kathght'], ['shfhyw'], ['eqxyvfpi'], ['gbaljypo'], ['riqmdnzs'], ['mtlghwex'], ['gergryth'], ['mgndhtillen'], ['aoyrspjv'], ['hctgfeal'], ['kxvwsatr'], ['nmywsqrg'], ['fw'], ['ticket'], ['comment'], ['added'], ['hi'], ['khrtyujuine'], ['would'], ['please'], ['help'], ['problem']] k: 6876 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 6877 len: <class 'list'> Data: ['request', 'access', 'crm', 'system', 'team', 'please', 'help', 'enable', 'access', 'crm', 'system'] processed_text: ['request', 'access', 'crm', 'system', 'team', 'please', 'help', 'enable', 'access', 'crm', 'system'] list_processed_text: [['request'], ['access'], ['crm'], ['system'], ['team'], ['please'], ['help'], ['enable'], ['access'], ['crm'], ['system']] k: 6878 len: <class 'list'> Data: ['distributor', 'tool', 'entry', 'hello', 'could', 'help', 'entering', 'distributor', 'tool', 'company', 'erp', 'account', 'get', 'outlook', 'io'] processed_text: ['distributor', 'tool', 'entry', 'hello', 'could', 'help', 'entering', 'distributor', 'tool', 'company', 'erp', 'account', 'get', 'outlook', 'io'] list_processed_text: [['distributor'], ['tool'], ['entry'], ['hello'], ['could'], ['help'], ['entering'], ['distributor'], ['tool'], ['company'], ['erp'], ['account'], ['get'], ['outlook'], ['io']] k: 6879 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 6880 len: <class 'list'> Data: ['issue', 'updating', 'vv', 'hello', 'experiencing', 'issue', 'updating', 'following', 'field', 'vv', 'partner', 'lang', 'update', 'field', 'multiple', 'time', 'work', 'erp', 'causing', 'problem', 'customer', 'receiving', 'inwarehouse', 'tool', 'please', 'markhty', 'high', 'priority', 'update', 'record', 'least', 'time', 'partner', 'lang', 'saved'] processed_text: ['issue', 'updating', 'vv', 'hello', 'experiencing', 'issue', 'updating', 'following', 'field', 'vv', 'partner', 'lang', 'update', 'field', 'multiple', 'time', 'work', 'erp', 'causing', 'problem', 'customer', 'receiving', 'inwarehouse', 'tool', 'please', 'markhty', 'high', 'priority', 'update', 'record', 'least', 'time', 'partner', 'lang', 'saved'] list_processed_text: [['issue'], ['updating'], ['vv'], ['hello'], ['experiencing'], ['issue'], ['updating'], ['following'], ['field'], ['vv'], ['partner'], ['lang'], ['update'], ['field'], ['multiple'], ['time'], ['work'], ['erp'], ['causing'], ['problem'], ['customer'], ['receiving'], ['inwarehouse'], ['tool'], ['please'], ['markhty'], ['high'], ['priority'], ['update'], ['record'], ['least'], ['time'], ['partner'], ['lang'], ['saved']] k: 6881 len: <class 'list'> Data: ['vip', 'pls', 'usa', 'access', 'rus', 'hall', 'site', 'referenced', 'vip', 'pls', 'usa', 'access', 'rus', 'hall', 'site', 'referenced', 'aero', 'collaboration', 'platform', 'found'] processed_text: ['vip', 'pls', 'usa', 'access', 'rus', 'hall', 'site', 'referenced', 'vip', 'pls', 'usa', 'access', 'rus', 'hall', 'site', 'referenced', 'aero', 'collaboration', 'platform', 'found'] list_processed_text: [['vip'], ['pls'], ['usa'], ['access'], ['rus'], ['hall'], ['site'], ['referenced'], ['vip'], ['pls'], ['usa'], ['access'], ['rus'], ['hall'], ['site'], ['referenced'], ['aero'], ['collaboration'], ['platform'], ['found']] k: 6882 len: <class 'list'> Data: ['account', 'lock', 'password', 'reset', 'instruction', 'account', 'lock', 'password', 'reset', 'instruction'] processed_text: ['account', 'lock', 'password', 'reset', 'instruction', 'account', 'lock', 'password', 'reset', 'instruction'] list_processed_text: [['account'], ['lock'], ['password'], ['reset'], ['instruction'], ['account'], ['lock'], ['password'], ['reset'], ['instruction']] k: 6883 len: <class 'list'> Data: ['company', 'email', 'account', 'tzrekwqf', 'homwadbs', 'dear', 'support', 'team', 'give', 'status', 'issue', 'must', 'start', 'work', 'company', 'site', 'rth', 'web', 'access', 'office', 'going', 'best'] processed_text: ['company', 'email', 'account', 'tzrekwqf', 'homwadbs', 'dear', 'support', 'team', 'give', 'status', 'issue', 'must', 'start', 'work', 'company', 'site', 'rth', 'web', 'access', 'office', 'going', 'best'] list_processed_text: [['company'], ['email'], ['account'], ['tzrekwqf'], ['homwadbs'], ['dear'], ['support'], ['team'], ['give'], ['status'], ['issue'], ['must'], ['start'], ['work'], ['company'], ['site'], ['rth'], ['web'], ['access'], ['office'], ['going'], ['best']] k: 6884 len: <class 'list'> Data: ['open', 'outlook', 'open', 'outlook', 'problem', 'twice', 'week', 'already'] processed_text: ['open', 'outlook', 'open', 'outlook', 'problem', 'twice', 'week', 'already'] list_processed_text: [['open'], ['outlook'], ['open'], ['outlook'], ['problem'], ['twice'], ['week'], ['already']] k: 6885 len: <class 'list'> Data: ['collaboration', 'platform', 'phone', 'sync', 'collaboration', 'platform', 'phone', 'sync'] processed_text: ['collaboration', 'platform', 'phone', 'sync', 'collaboration', 'platform', 'phone', 'sync'] list_processed_text: [['collaboration'], ['platform'], ['phone'], ['sync'], ['collaboration'], ['platform'], ['phone'], ['sync']] k: 6886 len: <class 'list'> Data: ['update', 'office', 'update', 'office'] processed_text: ['update', 'office', 'update', 'office'] list_processed_text: [['update'], ['office'], ['update'], ['office']] k: 6887 len: <class 'list'> Data: ['spam', 'email', 'query', 'spam', 'email', 'query'] processed_text: ['spam', 'email', 'query', 'spam', 'email', 'query'] list_processed_text: [['spam'], ['email'], ['query'], ['spam'], ['email'], ['query']] k: 6888 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6889 len: <class 'list'> Data: ['vid', 'microsoft', 'window', 'httpsys', 'rce', 'vulnerability', 'exploit', 'attempt', 'm', 'cve', 'dsw', 'incident', 'overview', 'seeing', 'vid', 'microsoft', 'window', 'httpsys', 'rce', 'vulnerability', 'exploit', 'attempt', 'm', 'cve', 'mapp', 'alert', 'generated', 'isensplant', 'company', 'com', 'device', 'indicating', 'one', 'host', 'including', 'attempting', 'exploit', 'microsoft', 'window', 'http', 'sys', 'remote', 'code', 'execution', 'vulnerability', 'cve', 'm', 'one', 'internet', 'facing', 'host', 'including', 'successful', 'exploitation', 'vulnerability', 'result', 'denial', 'service', 'condition', 'remote', 'code', 'execution', 'vulnerable', 'system', 'escalating', 'incident', 'via', 'high', 'severity', 'full', 'escalation', 'master', 'ticket', 'unblocked', 'event', 'related', 'vulnerability', 'e', 'creating', 'singular', 'ticket', 'inbound', 'threat', 'related', 'vulnerability', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'event', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'noted', 'blocking', 'source', 'ip', 'address', 'necessarily', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'environment', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted', 'ensure', 'running', 'recent', 'non', 'vulnerable', 'version', 'window', 'device', 'patched', 'properly', 'hardened', 'attack', 'would', 'like', 'event', 'handled', 'differently', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'event', 'related', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'running', 'non', 'vulnerable', 'version', 'application', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket'] processed_text: ['vid', 'microsoft', 'window', 'httpsys', 'rce', 'vulnerability', 'exploit', 'attempt', 'm', 'cve', 'dsw', 'incident', 'overview', 'seeing', 'vid', 'microsoft', 'window', 'httpsys', 'rce', 'vulnerability', 'exploit', 'attempt', 'm', 'cve', 'mapp', 'alert', 'generated', 'isensplant', 'company', 'com', 'device', 'indicating', 'one', 'host', 'including', 'attempting', 'exploit', 'microsoft', 'window', 'http', 'sys', 'remote', 'code', 'execution', 'vulnerability', 'cve', 'm', 'one', 'internet', 'facing', 'host', 'including', 'successful', 'exploitation', 'vulnerability', 'result', 'denial', 'service', 'condition', 'remote', 'code', 'execution', 'vulnerable', 'system', 'escalating', 'incident', 'via', 'high', 'severity', 'full', 'escalation', 'master', 'ticket', 'unblocked', 'event', 'related', 'vulnerability', 'e', 'creating', 'singular', 'ticket', 'inbound', 'threat', 'related', 'vulnerability', 'ticket', 'effectively', 'serve', 'master', 'ticket', 'related', 'event', 'receive', 'feedback', 'handle', 'event', 'going', 'forward', 'noted', 'blocking', 'source', 'ip', 'address', 'necessarily', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'environment', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted', 'ensure', 'running', 'recent', 'non', 'vulnerable', 'version', 'window', 'device', 'patched', 'properly', 'hardened', 'attack', 'would', 'like', 'event', 'handled', 'differently', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'number', 'option', 'available', 'handling', 'future', 'alert', 'one', 'autoresolve', 'event', 'related', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'likely', 'best', 'choice', 'running', 'application', 'targeted', 'running', 'non', 'vulnerable', 'version', 'application', 'ticket', 'escalation', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket', 'full', 'escalation', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'unique', 'source', 'ip', 'address', 'attack', 'microsoft', 'window', 'http', 'sys', 'kernel', 'driver', 'generate', 'relatively', 'large', 'volume', 'incident', 'ticket'] list_processed_text: [['vid'], ['microsoft'], ['window'], ['httpsys'], ['rce'], ['vulnerability'], ['exploit'], ['attempt'], ['m'], ['cve'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['vid'], ['microsoft'], ['window'], ['httpsys'], ['rce'], ['vulnerability'], ['exploit'], ['attempt'], ['m'], ['cve'], ['mapp'], ['alert'], ['generated'], ['isensplant'], ['company'], ['com'], ['device'], ['indicating'], ['one'], ['host'], ['including'], ['attempting'], ['exploit'], ['microsoft'], ['window'], ['http'], ['sys'], ['remote'], ['code'], ['execution'], ['vulnerability'], ['cve'], ['m'], ['one'], ['internet'], ['facing'], ['host'], ['including'], ['successful'], ['exploitation'], ['vulnerability'], ['result'], ['denial'], ['service'], ['condition'], ['remote'], ['code'], ['execution'], ['vulnerable'], ['system'], ['escalating'], ['incident'], ['via'], ['high'], ['severity'], ['full'], ['escalation'], ['master'], ['ticket'], ['unblocked'], ['event'], ['related'], ['vulnerability'], ['e'], ['creating'], ['singular'], ['ticket'], ['inbound'], ['threat'], ['related'], ['vulnerability'], ['ticket'], ['effectively'], ['serve'], ['master'], ['ticket'], ['related'], ['event'], ['receive'], ['feedback'], ['handle'], ['event'], ['going'], ['forward'], ['noted'], ['blocking'], ['source'], ['ip'], ['address'], ['necessarily'], ['productive'], ['due'], ['attacker'], ['ability'], ['switch'], ['ip'], ['address'], ['use'], ['proxy'], ['anonymizing'], ['software'], ['tor'], ['vpns'], ['please'], ['investigate'], ['environment'], ['determine'], ['whether'], ['running'], ['vulnerable'], ['version'], ['application'], ['targeted'], ['ensure'], ['running'], ['recent'], ['non'], ['vulnerable'], ['version'], ['window'], ['device'], ['patched'], ['properly'], ['hardened'], ['attack'], ['would'], ['like'], ['event'], ['handled'], ['differently'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['number'], ['option'], ['available'], ['handling'], ['future'], ['alert'], ['one'], ['autoresolve'], ['event'], ['related'], ['attack'], ['microsoft'], ['window'], ['http'], ['sys'], ['kernel'], ['driver'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['likely'], ['best'], ['choice'], ['running'], ['application'], ['targeted'], ['running'], ['non'], ['vulnerable'], ['version'], ['application'], ['ticket'], ['escalation'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['attack'], ['microsoft'], ['window'], ['http'], ['sys'], ['kernel'], ['driver'], ['generate'], ['relatively'], ['large'], ['volume'], ['incident'], ['ticket'], ['full'], ['escalation'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['unique'], ['source'], ['ip'], ['address'], ['attack'], ['microsoft'], ['window'], ['http'], ['sys'], ['kernel'], ['driver'], ['generate'], ['relatively'], ['large'], ['volume'], ['incident'], ['ticket']] k: 6890 len: <class 'list'> Data: ['att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'dsw', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'ewll', 'port', 'udp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'internal', 'reconnaissance', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'internal', 'reconnaissance', 'alert', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'dsw', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'ewll', 'port', 'udp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'internal', 'reconnaissance', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'internal', 'reconnaissance', 'alert', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['att'], ['singapore'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['least'], ['internal'], ['outbreak'], ['udp'], ['alert'], ['within'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['least'], ['internal'], ['outbreak'], ['udp'], ['alert'], ['within'], ['minute'], ['traffic'], ['blocked'], ['ewll'], ['port'], ['udp'], ['several'], ['internal'], ['host'], ['indicate'], ['unauthorized'], ['reconnaissance'], ['scanning'], ['misconfiguration'], ['authorized'], ['internal'], ['discovery'], ['blocked'], ['firewall'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['internal'], ['reconnaissance'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['internal'], ['reconnaissance'], ['alert'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 6891 len: <class 'list'> Data: ['company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'aler', 'dsw', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'apul', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc'] processed_text: ['company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'aler', 'dsw', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'apul', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc'] list_processed_text: [['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['aler'], ['dsw'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['apul'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc']] k: 6892 len: <class 'list'> Data: ['company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'aler', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'rqvl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'aler', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'rqvl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['aler'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['rqvl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 6893 len: <class 'list'> Data: ['occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'european', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['occurrence'], ['firewall'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['dsw'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 6894 len: <class 'list'> Data: ['unable', 'load', 'hr', 'tool', 'etime', 'application', 'recently', 'got', 'new', 'computer', 'ever', 'since', 'able', 'load', 'hr', 'tool', 'etime', 'application'] processed_text: ['unable', 'load', 'hr', 'tool', 'etime', 'application', 'recently', 'got', 'new', 'computer', 'ever', 'since', 'able', 'load', 'hr', 'tool', 'etime', 'application'] list_processed_text: [['unable'], ['load'], ['hr'], ['tool'], ['etime'], ['application'], ['recently'], ['got'], ['new'], ['computer'], ['ever'], ['since'], ['able'], ['load'], ['hr'], ['tool'], ['etime'], ['application']] k: 6895 len: <class 'list'> Data: ['hw', 'filesystem', 'near', 'capacity', 'hostname', 'dsw', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'log', 'time', 'utc', 'vendor', 'classification', 'none', 'vendor', 'priority', 'window', 'event', 'id', 'type', 'warning', 'username', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'note', 'default', 'alert', 'generated', 'capacity', 'reach', 'mswineventlog', 'system', 'srv', 'warning', 'hostname', 'company', 'company', 'com', 'none', 'disk', 'near', 'capacity', 'need', 'delete', 'file'] processed_text: ['hw', 'filesystem', 'near', 'capacity', 'hostname', 'dsw', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'log', 'time', 'utc', 'vendor', 'classification', 'none', 'vendor', 'priority', 'window', 'event', 'id', 'type', 'warning', 'username', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'note', 'default', 'alert', 'generated', 'capacity', 'reach', 'mswineventlog', 'system', 'srv', 'warning', 'hostname', 'company', 'company', 'com', 'none', 'disk', 'near', 'capacity', 'need', 'delete', 'file'] list_processed_text: [['hw'], ['filesystem'], ['near'], ['capacity'], ['hostname'], ['dsw'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['filesystem'], ['near'], ['capacity'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['hostname'], ['company'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['vendor'], ['classification'], ['none'], ['vendor'], ['priority'], ['window'], ['event'], ['id'], ['type'], ['warning'], ['username'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['note'], ['default'], ['alert'], ['generated'], ['capacity'], ['reach'], ['mswineventlog'], ['system'], ['srv'], ['warning'], ['hostname'], ['company'], ['company'], ['com'], ['none'], ['disk'], ['near'], ['capacity'], ['need'], ['delete'], ['file']] k: 6896 len: <class 'list'> Data: ['login', 'failure', 'good', 'afternoon', 'unable', 'open', 'drive', 'screen', 'shot', 'error', 'unaware', 'password', 'able', 'open', 'drive', 'assume', 'something', 'email', 'received', 'late', 'yesterday', 'see', 'screen', 'shot', 'unable', 'login', 'see', 'third', 'screen', 'shot', 'please', 'advise', 'correct'] processed_text: ['login', 'failure', 'good', 'afternoon', 'unable', 'open', 'drive', 'screen', 'shot', 'error', 'unaware', 'password', 'able', 'open', 'drive', 'assume', 'something', 'email', 'received', 'late', 'yesterday', 'see', 'screen', 'shot', 'unable', 'login', 'see', 'third', 'screen', 'shot', 'please', 'advise', 'correct'] list_processed_text: [['login'], ['failure'], ['good'], ['afternoon'], ['unable'], ['open'], ['drive'], ['screen'], ['shot'], ['error'], ['unaware'], ['password'], ['able'], ['open'], ['drive'], ['assume'], ['something'], ['email'], ['received'], ['late'], ['yesterday'], ['see'], ['screen'], ['shot'], ['unable'], ['login'], ['see'], ['third'], ['screen'], ['shot'], ['please'], ['advise'], ['correct']] k: 6897 len: <class 'list'> Data: ['connected', 'default', 'printer', 'connected', 'default', 'printer'] processed_text: ['connected', 'default', 'printer', 'connected', 'default', 'printer'] list_processed_text: [['connected'], ['default'], ['printer'], ['connected'], ['default'], ['printer']] k: 6898 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6899 len: <class 'list'> Data: ['new', 'prospect', 'account', 'within', 'crm', 'system', 'issue', 'created', 'new', 'prospect', 'account', 'within', 'crm', 'system', 'day', 'still', 'allocated', 'erp', 'contact'] processed_text: ['new', 'prospect', 'account', 'within', 'crm', 'system', 'issue', 'created', 'new', 'prospect', 'account', 'within', 'crm', 'system', 'day', 'still', 'allocated', 'erp', 'contact'] list_processed_text: [['new'], ['prospect'], ['account'], ['within'], ['crm'], ['system'], ['issue'], ['created'], ['new'], ['prospect'], ['account'], ['within'], ['crm'], ['system'], ['day'], ['still'], ['allocated'], ['erp'], ['contact']] k: 6900 len: <class 'list'> Data: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] processed_text: ['call', 'came', 'got', 'disconnected', 'call', 'came', 'got', 'disconnected'] list_processed_text: [['call'], ['came'], ['got'], ['disconnected'], ['call'], ['came'], ['got'], ['disconnected']] k: 6901 len: <class 'list'> Data: ['blue', 'screen', 'error', 'blue', 'screen', 'error'] processed_text: ['blue', 'screen', 'error', 'blue', 'screen', 'error'] list_processed_text: [['blue'], ['screen'], ['error'], ['blue'], ['screen'], ['error']] k: 6902 len: <class 'list'> Data: ['outlook', 'responding', 'due', 'crm', 'error', 'outlook', 'responding', 'due', 'crm', 'error'] processed_text: ['outlook', 'responding', 'due', 'crm', 'error', 'outlook', 'responding', 'due', 'crm', 'error'] list_processed_text: [['outlook'], ['responding'], ['due'], ['crm'], ['error'], ['outlook'], ['responding'], ['due'], ['crm'], ['error']] k: 6903 len: <class 'list'> Data: ['account', 'information', 'updated', 'nwfodmhc', 'exurcwkm', 'pm', 'johthryu', 'ko', 'nwfodmhc', 'exurcwkm', 'sab', 'fw', 'account', 'information', 'updated', 'hello', 'johthryu', 'mail', 'company', 'click', 'link', 'access', 'aorthyme', 'rnsuipbk', 'global', 'service', 'organization', 'gso', 'know', 'ticketing', 'tool', 'extensive', 'self', 'help', 'knowledgebase', 'easy', 'use', 'troubleshooting', 'article', 'contributed', 'team', 'well', 'customer', 'every', 'time', 'open', 'request', 'incident', 'go', 'ahead', 'follow', 'rabbit', 'click', 'image', 'open', 'knowledgebase', 'explore', 'help', 'issue', 'appreciate', 'feedback', 'please', 'leave', 'comment', 'article', 'visit', 'write', 'gso', 'global', 'service', 'organization', 'original', 'message', 'johthryu', 'ko', 'pm', 'nwfodmhc', 'exurcwkm', 'sab', 'fw', 'account', 'information', 'updated', 'hi', 'expert', 'pla', 'see', 'sure', 'therefore', 'using', 'best'] processed_text: ['account', 'information', 'updated', 'nwfodmhc', 'exurcwkm', 'pm', 'johthryu', 'ko', 'nwfodmhc', 'exurcwkm', 'sab', 'fw', 'account', 'information', 'updated', 'hello', 'johthryu', 'mail', 'company', 'click', 'link', 'access', 'aorthyme', 'rnsuipbk', 'global', 'service', 'organization', 'gso', 'know', 'ticketing', 'tool', 'extensive', 'self', 'help', 'knowledgebase', 'easy', 'use', 'troubleshooting', 'article', 'contributed', 'team', 'well', 'customer', 'every', 'time', 'open', 'request', 'incident', 'go', 'ahead', 'follow', 'rabbit', 'click', 'image', 'open', 'knowledgebase', 'explore', 'help', 'issue', 'appreciate', 'feedback', 'please', 'leave', 'comment', 'article', 'visit', 'write', 'gso', 'global', 'service', 'organization', 'original', 'message', 'johthryu', 'ko', 'pm', 'nwfodmhc', 'exurcwkm', 'sab', 'fw', 'account', 'information', 'updated', 'hi', 'expert', 'pla', 'see', 'sure', 'therefore', 'using', 'best'] list_processed_text: [['account'], ['information'], ['updated'], ['nwfodmhc'], ['exurcwkm'], ['pm'], ['johthryu'], ['ko'], ['nwfodmhc'], ['exurcwkm'], ['sab'], ['fw'], ['account'], ['information'], ['updated'], ['hello'], ['johthryu'], ['mail'], ['company'], ['click'], ['link'], ['access'], ['aorthyme'], ['rnsuipbk'], ['global'], ['service'], ['organization'], ['gso'], ['know'], ['ticketing'], ['tool'], ['extensive'], ['self'], ['help'], ['knowledgebase'], ['easy'], ['use'], ['troubleshooting'], ['article'], ['contributed'], ['team'], ['well'], ['customer'], ['every'], ['time'], ['open'], ['request'], ['incident'], ['go'], ['ahead'], ['follow'], ['rabbit'], ['click'], ['image'], ['open'], ['knowledgebase'], ['explore'], ['help'], ['issue'], ['appreciate'], ['feedback'], ['please'], ['leave'], ['comment'], ['article'], ['visit'], ['write'], ['gso'], ['global'], ['service'], ['organization'], ['original'], ['message'], ['johthryu'], ['ko'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['sab'], ['fw'], ['account'], ['information'], ['updated'], ['hi'], ['expert'], ['pla'], ['see'], ['sure'], ['therefore'], ['using'], ['best']] k: 6904 len: <class 'list'> Data: ['user', 'locked', 'erp', 'sid', 'erp', 'user', 'locked', 'erp', 'sid', 'erp'] processed_text: ['user', 'locked', 'erp', 'sid', 'erp', 'user', 'locked', 'erp', 'sid', 'erp'] list_processed_text: [['user'], ['locked'], ['erp'], ['sid'], ['erp'], ['user'], ['locked'], ['erp'], ['sid'], ['erp']] k: 6905 len: <class 'list'> Data: ['spam', 'user', 'account', 'updated', 'ancile', 'uperform', 'log'] processed_text: ['spam', 'user', 'account', 'updated', 'ancile', 'uperform', 'log'] list_processed_text: [['spam'], ['user'], ['account'], ['updated'], ['ancile'], ['uperform'], ['log']] k: 6906 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lockout', 'erp', 'sid', 'account', 'lockout'] processed_text: ['erp', 'sid', 'account', 'lockout', 'erp', 'sid', 'account', 'lockout'] list_processed_text: [['erp'], ['sid'], ['account'], ['lockout'], ['erp'], ['sid'], ['account'], ['lockout']] k: 6907 len: <class 'list'> Data: ['new', 'user', 'id', 'new', 'user', 'id'] processed_text: ['new', 'user', 'id', 'new', 'user', 'id'] list_processed_text: [['new'], ['user'], ['id'], ['new'], ['user'], ['id']] k: 6908 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 6909 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'shhkioaprhkuoash', 'm', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'hello', 'request', 'configure', 'outlook', 'new', 'iphone', 'received', 'today'] processed_text: ['mobile', 'device', 'activation', 'shhkioaprhkuoash', 'm', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'hello', 'request', 'configure', 'outlook', 'new', 'iphone', 'received', 'today'] list_processed_text: [['mobile'], ['device'], ['activation'], ['shhkioaprhkuoash'], ['m'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['access'], ['importance'], ['high'], ['hello'], ['request'], ['configure'], ['outlook'], ['new'], ['iphone'], ['received'], ['today']] k: 6910 len: <class 'list'> Data: ['e', 'license', 'activated', 'office', 'upgraded', 'e', 'license', 'activated', 'office', 'upgraded'] processed_text: ['e', 'license', 'activated', 'office', 'upgraded', 'e', 'license', 'activated', 'office', 'upgraded'] list_processed_text: [['e'], ['license'], ['activated'], ['office'], ['upgraded'], ['e'], ['license'], ['activated'], ['office'], ['upgraded']] k: 6911 len: <class 'list'> Data: ['audio', 'working', 'contact', 'number', 'pc', 'service', 'tag', 'hgv', 'summary', 'hearing', 'sound', 'laptop', 'planning', 'video', 'use', 'bluetooth', 'earbud'] processed_text: ['audio', 'working', 'contact', 'number', 'pc', 'service', 'tag', 'hgv', 'summary', 'hearing', 'sound', 'laptop', 'planning', 'video', 'use', 'bluetooth', 'earbud'] list_processed_text: [['audio'], ['working'], ['contact'], ['number'], ['pc'], ['service'], ['tag'], ['hgv'], ['summary'], ['hearing'], ['sound'], ['laptop'], ['planning'], ['video'], ['use'], ['bluetooth'], ['earbud']] k: 6912 len: <class 'list'> Data: ['query', 'regarding', 'leaf', 'query', 'regarding', 'leaf'] processed_text: ['query', 'regarding', 'leaf', 'query', 'regarding', 'leaf'] list_processed_text: [['query'], ['regarding'], ['leaf'], ['query'], ['regarding'], ['leaf']] k: 6913 len: <class 'list'> Data: ['unable', 'scroll', 'ie', 'page', 'unable', 'scroll', 'ie', 'page'] processed_text: ['unable', 'scroll', 'ie', 'page', 'unable', 'scroll', 'ie', 'page'] list_processed_text: [['unable'], ['scroll'], ['ie'], ['page'], ['unable'], ['scroll'], ['ie'], ['page']] k: 6914 len: <class 'list'> Data: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] processed_text: ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler'], ['job'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['failed'], ['job'], ['scheduler']] k: 6915 len: <class 'list'> Data: ['engineering', 'tool', 'open', 'engineering', 'tool', 'open', 'error', 'log', 'attached'] processed_text: ['engineering', 'tool', 'open', 'engineering', 'tool', 'open', 'error', 'log', 'attached'] list_processed_text: [['engineering'], ['tool'], ['open'], ['engineering'], ['tool'], ['open'], ['error'], ['log'], ['attached']] k: 6916 len: <class 'list'> Data: ['outlook', 'responding', 'outlook', 'responding'] processed_text: ['outlook', 'responding', 'outlook', 'responding'] list_processed_text: [['outlook'], ['responding'], ['outlook'], ['responding']] k: 6917 len: <class 'list'> Data: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] processed_text: ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'] list_processed_text: [['ticket'], ['update'], ['implant'], ['ticket'], ['update'], ['implant']] k: 6918 len: <class 'list'> Data: ['opening', 'business', 'client', 'getting', 'microsoft', 'net', 'framdntyework', 'installed', 'error', 'see', 'attachment'] processed_text: ['opening', 'business', 'client', 'getting', 'microsoft', 'net', 'framdntyework', 'installed', 'error', 'see', 'attachment'] list_processed_text: [['opening'], ['business'], ['client'], ['getting'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['error'], ['see'], ['attachment']] k: 6919 len: <class 'list'> Data: ['skype', 'open', 'skype', 'open'] processed_text: ['skype', 'open', 'skype', 'open'] list_processed_text: [['skype'], ['open'], ['skype'], ['open']] k: 6920 len: <class 'list'> Data: ['telephony', 'software', 'phone', 'system', 'since', 'new', 'telephony', 'software', 'update', 'missing', 'icon', 'desktop', 'put', 'back'] processed_text: ['telephony', 'software', 'phone', 'system', 'since', 'new', 'telephony', 'software', 'update', 'missing', 'icon', 'desktop', 'put', 'back'] list_processed_text: [['telephony'], ['software'], ['phone'], ['system'], ['since'], ['new'], ['telephony'], ['software'], ['update'], ['missing'], ['icon'], ['desktop'], ['put'], ['back']] k: 6921 len: <class 'list'> Data: ['reset', 'password', 'patrcja', 'szpilewska', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'patrcja', 'szpilewska', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['patrcja'], ['szpilewska'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 6922 len: <class 'list'> Data: ['company', 'ap', 'chn', 'apac', 'access', 'sw', 'apac', 'mandc', 'new', 'plant', 'location', 'sicne', 'et', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'apac', 'mandc', 'new', 'plant', 'location', 'sicne', 'et'] processed_text: ['company', 'ap', 'chn', 'apac', 'access', 'sw', 'apac', 'mandc', 'new', 'plant', 'location', 'sicne', 'et', 'company', 'ap', 'chn', 'apac', 'access', 'sw', 'apac', 'mandc', 'new', 'plant', 'location', 'sicne', 'et'] list_processed_text: [['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['apac'], ['mandc'], ['new'], ['plant'], ['location'], ['sicne'], ['et'], ['company'], ['ap'], ['chn'], ['apac'], ['access'], ['sw'], ['apac'], ['mandc'], ['new'], ['plant'], ['location'], ['sicne'], ['et']] k: 6923 len: <class 'list'> Data: ['telephony', 'software', 'full', 'update', 'find', 'log', 'need', 'telephony', 'software', 'log', 'phone', 'system', 'take', 'call'] processed_text: ['telephony', 'software', 'full', 'update', 'find', 'log', 'need', 'telephony', 'software', 'log', 'phone', 'system', 'take', 'call'] list_processed_text: [['telephony'], ['software'], ['full'], ['update'], ['find'], ['log'], ['need'], ['telephony'], ['software'], ['log'], ['phone'], ['system'], ['take'], ['call']] k: 6924 len: <class 'list'> Data: ['new', 'password', 'work', 'password', 'change', 'new', 'password', 'work', 'password', 'change'] processed_text: ['new', 'password', 'work', 'password', 'change', 'new', 'password', 'work', 'password', 'change'] list_processed_text: [['new'], ['password'], ['work'], ['password'], ['change'], ['new'], ['password'], ['work'], ['password'], ['change']] k: 6925 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 6926 len: <class 'list'> Data: ['ticket', 'update', 'checking', 'status', 'completion', 'ticket', 'inc', 'please', 'provide', 'update', 'expected', 'completion', 'date'] processed_text: ['ticket', 'update', 'checking', 'status', 'completion', 'ticket', 'inc', 'please', 'provide', 'update', 'expected', 'completion', 'date'] list_processed_text: [['ticket'], ['update'], ['checking'], ['status'], ['completion'], ['ticket'], ['inc'], ['please'], ['provide'], ['update'], ['expected'], ['completion'], ['date']] k: 6927 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 6928 len: <class 'list'> Data: ['khspqlnj', 'npgxuzeq', 'called', 'engineering', 'tool', 'issue', 'khspqlnj', 'npgxuzeq', 'called', 'engineering', 'tool', 'issue'] processed_text: ['khspqlnj', 'npgxuzeq', 'called', 'engineering', 'tool', 'issue', 'khspqlnj', 'npgxuzeq', 'called', 'engineering', 'tool', 'issue'] list_processed_text: [['khspqlnj'], ['npgxuzeq'], ['called'], ['engineering'], ['tool'], ['issue'], ['khspqlnj'], ['npgxuzeq'], ['called'], ['engineering'], ['tool'], ['issue']] k: 6929 len: <class 'list'> Data: ['email', 'spam', 'query', 'email', 'spam', 'query'] processed_text: ['email', 'spam', 'query', 'email', 'spam', 'query'] list_processed_text: [['email'], ['spam'], ['query'], ['email'], ['spam'], ['query']] k: 6930 len: <class 'list'> Data: ['erp', 'md', 'show', 'delivery', 'note', 'calling', 'plant', 'plant', 'erp', 'md', 'show', 'delivery', 'note', 'deleted', 'yesterday', 'vln', 'confirms', 'deletion', 'yet', 'delivery', 'note', 'still', 'show', 'open', 'md', 'piece', 'please', 'remove', 'piece', 'return', 'stock'] processed_text: ['erp', 'md', 'show', 'delivery', 'note', 'calling', 'plant', 'plant', 'erp', 'md', 'show', 'delivery', 'note', 'deleted', 'yesterday', 'vln', 'confirms', 'deletion', 'yet', 'delivery', 'note', 'still', 'show', 'open', 'md', 'piece', 'please', 'remove', 'piece', 'return', 'stock'] list_processed_text: [['erp'], ['md'], ['show'], ['delivery'], ['note'], ['calling'], ['plant'], ['plant'], ['erp'], ['md'], ['show'], ['delivery'], ['note'], ['deleted'], ['yesterday'], ['vln'], ['confirms'], ['deletion'], ['yet'], ['delivery'], ['note'], ['still'], ['show'], ['open'], ['md'], ['piece'], ['please'], ['remove'], ['piece'], ['return'], ['stock']] k: 6931 len: <class 'list'> Data: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['password'], ['reset'], ['alert']] k: 6932 len: <class 'list'> Data: ['power', 'surge', 'hub', 'port', 'prompt', 'getting', 'frequent', 'notification', 'power', 'surge', 'hub', 'port', 'attached', 'screenshot', 'laptop', 'kindly', 'check', 'let', 'know', 'action', 'needed', 'done', 'resolve'] processed_text: ['power', 'surge', 'hub', 'port', 'prompt', 'getting', 'frequent', 'notification', 'power', 'surge', 'hub', 'port', 'attached', 'screenshot', 'laptop', 'kindly', 'check', 'let', 'know', 'action', 'needed', 'done', 'resolve'] list_processed_text: [['power'], ['surge'], ['hub'], ['port'], ['prompt'], ['getting'], ['frequent'], ['notification'], ['power'], ['surge'], ['hub'], ['port'], ['attached'], ['screenshot'], ['laptop'], ['kindly'], ['check'], ['let'], ['know'], ['action'], ['needed'], ['done'], ['resolve']] k: 6933 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] processed_text: ['mobile', 'device', 'activation', 'company', 'provided', 'mobile', 'device', 'activation', 'company', 'provided'] list_processed_text: [['mobile'], ['device'], ['activation'], ['company'], ['provided'], ['mobile'], ['device'], ['activation'], ['company'], ['provided']] k: 6934 len: <class 'list'> Data: ['erp', 'log', 'update', 'needed', 'urgently', 'please', 'good', 'day', 'please', 'erp', 'log', 'update', 'get', 'access', 'erp', 'quality', 'management', 'system', 'sid'] processed_text: ['erp', 'log', 'update', 'needed', 'urgently', 'please', 'good', 'day', 'please', 'erp', 'log', 'update', 'get', 'access', 'erp', 'quality', 'management', 'system', 'sid'] list_processed_text: [['erp'], ['log'], ['update'], ['needed'], ['urgently'], ['please'], ['good'], ['day'], ['please'], ['erp'], ['log'], ['update'], ['get'], ['access'], ['erp'], ['quality'], ['management'], ['system'], ['sid']] k: 6935 len: <class 'list'> Data: ['email', 'routing', 'outlook', 'telephony', 'software', 'entering', 'ticket', 'confirm', 'email', 'routing', 'telephony', 'software', 'ca', 'team', 'north', 'amerirtca', 'already', 'two', 'ticket', 'open', 'region', 'issue', 'incident', 'inc', 'incident', 'inc', 'also', 'ticket', 'open', 'investigate', 'side', 'ticked'] processed_text: ['email', 'routing', 'outlook', 'telephony', 'software', 'entering', 'ticket', 'confirm', 'email', 'routing', 'telephony', 'software', 'ca', 'team', 'north', 'amerirtca', 'already', 'two', 'ticket', 'open', 'region', 'issue', 'incident', 'inc', 'incident', 'inc', 'also', 'ticket', 'open', 'investigate', 'side', 'ticked'] list_processed_text: [['email'], ['routing'], ['outlook'], ['telephony'], ['software'], ['entering'], ['ticket'], ['confirm'], ['email'], ['routing'], ['telephony'], ['software'], ['ca'], ['team'], ['north'], ['amerirtca'], ['already'], ['two'], ['ticket'], ['open'], ['region'], ['issue'], ['incident'], ['inc'], ['incident'], ['inc'], ['also'], ['ticket'], ['open'], ['investigate'], ['side'], ['ticked']] k: 6936 len: <class 'list'> Data: ['support', 'r', 'osterwalder', 'niptbwdq', 'csenjruz', 'support', 'r', 'osterwalder', 'niptbwdq', 'csenjruz'] processed_text: ['support', 'r', 'osterwalder', 'niptbwdq', 'csenjruz', 'support', 'r', 'osterwalder', 'niptbwdq', 'csenjruz'] list_processed_text: [['support'], ['r'], ['osterwalder'], ['niptbwdq'], ['csenjruz'], ['support'], ['r'], ['osterwalder'], ['niptbwdq'], ['csenjruz']] k: 6937 len: <class 'list'> Data: ['es', 'login', 'issue', 'password', 'issue', 'es', 'login', 'issue', 'password', 'issue'] processed_text: ['es', 'login', 'issue', 'password', 'issue', 'es', 'login', 'issue', 'password', 'issue'] list_processed_text: [['es'], ['login'], ['issue'], ['password'], ['issue'], ['es'], ['login'], ['issue'], ['password'], ['issue']] k: 6938 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'fernando', 'fillipini', 'zspvxrfk', 'xocyhnkf', 'fabio', 'rghkiriuytes', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'fernando', 'fillipini', 'zspvxrfk', 'xocyhnkf', 'fabio', 'rghkiriuytes', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['fernando'], ['fillipini'], ['zspvxrfk'], ['xocyhnkf'], ['fabio'], ['rghkiriuytes'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user']] k: 6939 len: <class 'list'> Data: ['refprb', 'cannot', 'connect', 'dynamic', 'excel', 'msd', 'crm', 'hi', 'please', 'run', 'command', 'administrator', 'privilege', 'computer', 'user', 'impacted', 'working', 'well', 'send', 'result', 'analysis', 'gpresult', 'log', 'txt', 'gpresult', 'loghtml', 'html', 'best'] processed_text: ['refprb', 'cannot', 'connect', 'dynamic', 'excel', 'msd', 'crm', 'hi', 'please', 'run', 'command', 'administrator', 'privilege', 'computer', 'user', 'impacted', 'working', 'well', 'send', 'result', 'analysis', 'gpresult', 'log', 'txt', 'gpresult', 'loghtml', 'html', 'best'] list_processed_text: [['refprb'], ['cannot'], ['connect'], ['dynamic'], ['excel'], ['msd'], ['crm'], ['hi'], ['please'], ['run'], ['command'], ['administrator'], ['privilege'], ['computer'], ['user'], ['impacted'], ['working'], ['well'], ['send'], ['result'], ['analysis'], ['gpresult'], ['log'], ['txt'], ['gpresult'], ['loghtml'], ['html'], ['best']] k: 6940 len: <class 'list'> Data: ['vpn', 'connecting', 'vpn', 'connecting'] processed_text: ['vpn', 'connecting', 'vpn', 'connecting'] list_processed_text: [['vpn'], ['connecting'], ['vpn'], ['connecting']] k: 6941 len: <class 'list'> Data: ['switch', 'company', 'eu', 'deu', 'germany', 'b', 'gf', 'access', 'sw', 'germany', 'since', 'et', 'switch', 'company', 'eu', 'deu', 'germany', 'b', 'gf', 'access', 'sw', 'germany', 'since', 'et'] processed_text: ['switch', 'company', 'eu', 'deu', 'germany', 'b', 'gf', 'access', 'sw', 'germany', 'since', 'et', 'switch', 'company', 'eu', 'deu', 'germany', 'b', 'gf', 'access', 'sw', 'germany', 'since', 'et'] list_processed_text: [['switch'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['gf'], ['access'], ['sw'], ['germany'], ['since'], ['et'], ['switch'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['gf'], ['access'], ['sw'], ['germany'], ['since'], ['et']] k: 6942 len: <class 'list'> Data: ['email', 'legitimate', 'email', 'want', 'click', 'without', 'knowing'] processed_text: ['email', 'legitimate', 'email', 'want', 'click', 'without', 'knowing'] list_processed_text: [['email'], ['legitimate'], ['email'], ['want'], ['click'], ['without'], ['knowing']] k: 6943 len: <class 'list'> Data: ['outlook', 'email', 'update', 'issue', 'outlook', 'email', 'update', 'issue'] processed_text: ['outlook', 'email', 'update', 'issue', 'outlook', 'email', 'update', 'issue'] list_processed_text: [['outlook'], ['email'], ['update'], ['issue'], ['outlook'], ['email'], ['update'], ['issue']] k: 6944 len: <class 'list'> Data: ['spam', 'email', 'query', 'spam', 'email', 'query'] processed_text: ['spam', 'email', 'query', 'spam', 'email', 'query'] list_processed_text: [['spam'], ['email'], ['query'], ['spam'], ['email'], ['query']] k: 6945 len: <class 'list'> Data: ['userid', 'cccplant', 'cannot', 'reset', 'password', 'please', 'look', 'screenshot', 'userid', 'cccplant', 'cannot', 'reset', 'password', 'please', 'look', 'screenshot'] processed_text: ['userid', 'cccplant', 'cannot', 'reset', 'password', 'please', 'look', 'screenshot', 'userid', 'cccplant', 'cannot', 'reset', 'password', 'please', 'look', 'screenshot'] list_processed_text: [['userid'], ['cccplant'], ['cannot'], ['reset'], ['password'], ['please'], ['look'], ['screenshot'], ['userid'], ['cccplant'], ['cannot'], ['reset'], ['password'], ['please'], ['look'], ['screenshot']] k: 6946 len: <class 'list'> Data: ['hub', 'business', 'client', 'working', 'suddenly', 'hi', 'please', 'find', 'attached', 'screen', 'shot', 'suddenly', 'hub', 'business', 'client', 'going', 'blank', 'close', 'tab', 'restarts', 'work', 'could', 'please', 'fix'] processed_text: ['hub', 'business', 'client', 'working', 'suddenly', 'hi', 'please', 'find', 'attached', 'screen', 'shot', 'suddenly', 'hub', 'business', 'client', 'going', 'blank', 'close', 'tab', 'restarts', 'work', 'could', 'please', 'fix'] list_processed_text: [['hub'], ['business'], ['client'], ['working'], ['suddenly'], ['hi'], ['please'], ['find'], ['attached'], ['screen'], ['shot'], ['suddenly'], ['hub'], ['business'], ['client'], ['going'], ['blank'], ['close'], ['tab'], ['restarts'], ['work'], ['could'], ['please'], ['fix']] k: 6947 len: <class 'list'> Data: ['outlook', 'issue', 'cannot', 'open', 'item', 'text', 'formatheywting', 'command', 'available'] processed_text: ['outlook', 'issue', 'cannot', 'open', 'item', 'text', 'formatheywting', 'command', 'available'] list_processed_text: [['outlook'], ['issue'], ['cannot'], ['open'], ['item'], ['text'], ['formatheywting'], ['command'], ['available']] k: 6948 len: <class 'list'> Data: ['collaboration', 'platform', 'synching', 'collaboration', 'platform', 'synching'] processed_text: ['collaboration', 'platform', 'synching', 'collaboration', 'platform', 'synching'] list_processed_text: [['collaboration'], ['platform'], ['synching'], ['collaboration'], ['platform'], ['synching']] k: 6949 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'production', 'employee', 'pevokgiu', 'hdywstbl', 'idrizj', 'switzerland', 'switzerland', 'need', 'password', 'reset', 'many'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'production', 'employee', 'pevokgiu', 'hdywstbl', 'idrizj', 'switzerland', 'switzerland', 'need', 'password', 'reset', 'many'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['production'], ['employee'], ['pevokgiu'], ['hdywstbl'], ['idrizj'], ['switzerland'], ['switzerland'], ['need'], ['password'], ['reset'], ['many']] k: 6950 len: <class 'list'> Data: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] processed_text: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua'], ['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua']] k: 6951 len: <class 'list'> Data: ['alte', 'equipment', 'abholen', 'qvncizuf', 'ueiybanz', 'alte', 'equipment', 'abholen', 'qvncizuf', 'ueiybanz'] processed_text: ['alte', 'equipment', 'abholen', 'qvncizuf', 'ueiybanz', 'alte', 'equipment', 'abholen', 'qvncizuf', 'ueiybanz'] list_processed_text: [['alte'], ['equipment'], ['abholen'], ['qvncizuf'], ['ueiybanz'], ['alte'], ['equipment'], ['abholen'], ['qvncizuf'], ['ueiybanz']] k: 6952 len: <class 'list'> Data: ['monitor', 'defekt', 'ewew', 'pvd', 'bur', 'orde', 'monitor', 'defekt', 'ewew', 'pvd', 'bur', 'orde'] processed_text: ['monitor', 'defekt', 'ewew', 'pvd', 'bur', 'orde', 'monitor', 'defekt', 'ewew', 'pvd', 'bur', 'orde'] list_processed_text: [['monitor'], ['defekt'], ['ewew'], ['pvd'], ['bur'], ['orde'], ['monitor'], ['defekt'], ['ewew'], ['pvd'], ['bur'], ['orde']] k: 6953 len: <class 'list'> Data: ['please', 'look', 'po', 'term', 'condition', 'page', 'printing', 'last', 'page', 'order', 'please', 'look', 'po', 'term', 'condition', 'page', 'printing', 'last', 'page', 'order', 'page'] processed_text: ['please', 'look', 'po', 'term', 'condition', 'page', 'printing', 'last', 'page', 'order', 'please', 'look', 'po', 'term', 'condition', 'page', 'printing', 'last', 'page', 'order', 'page'] list_processed_text: [['please'], ['look'], ['po'], ['term'], ['condition'], ['page'], ['printing'], ['last'], ['page'], ['order'], ['please'], ['look'], ['po'], ['term'], ['condition'], ['page'], ['printing'], ['last'], ['page'], ['order'], ['page']] k: 6954 len: <class 'list'> Data: ['hostname', 'wrong', 'number', 'instance', 'process', 'wrapper', 'exe', 'expected', 'instance', 'gte', 'found', 'hostname', 'wrong', 'number', 'instance', 'process', 'wrapper', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['hostname', 'wrong', 'number', 'instance', 'process', 'wrapper', 'exe', 'expected', 'instance', 'gte', 'found', 'hostname', 'wrong', 'number', 'instance', 'process', 'wrapper', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['hostname'], ['wrong'], ['number'], ['instance'], ['process'], ['wrapper'], ['exe'], ['expected'], ['instance'], ['gte'], ['found'], ['hostname'], ['wrong'], ['number'], ['instance'], ['process'], ['wrapper'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 6955 len: <class 'list'> Data: ['email', 'common', 'mailbox', 'appear', 'telephony', 'software', 'workflow', 'although', 'email', 'outlook', 'mailbox', 'appear', 'telephony', 'software'] processed_text: ['email', 'common', 'mailbox', 'appear', 'telephony', 'software', 'workflow', 'although', 'email', 'outlook', 'mailbox', 'appear', 'telephony', 'software'] list_processed_text: [['email'], ['common'], ['mailbox'], ['appear'], ['telephony'], ['software'], ['workflow'], ['although'], ['email'], ['outlook'], ['mailbox'], ['appear'], ['telephony'], ['software']] k: 6956 len: <class 'list'> Data: ['received', 'new', 'laptop', 'need', 'outlook', 'configuration', 'help', 'received', 'new', 'laptop', 'need', 'outlook', 'configuration', 'help'] processed_text: ['received', 'new', 'laptop', 'need', 'outlook', 'configuration', 'help', 'received', 'new', 'laptop', 'need', 'outlook', 'configuration', 'help'] list_processed_text: [['received'], ['new'], ['laptop'], ['need'], ['outlook'], ['configuration'], ['help'], ['received'], ['new'], ['laptop'], ['need'], ['outlook'], ['configuration'], ['help']] k: 6957 len: <class 'list'> Data: ['reimbursement', 'amount', 'usd', 'need', 'approve', 'travel', 'expense', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'mahtyurch', 'kutgynka', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service', 'right', 'view', 'please', 'help'] processed_text: ['reimbursement', 'amount', 'usd', 'need', 'approve', 'travel', 'expense', 'following', 'expense', 'report', 'submitted', 'approval', 'personnel', 'mahtyurch', 'kutgynka', 'expense', 'report', 'start', 'date', 'end', 'date', 'total', 'cost', 'usd', 'reimbursement', 'amount', 'usd', 'review', 'expense', 'report', 'full', 'please', 'log', 'universal', 'worklist', 'manager', 'self', 'service', 'right', 'view', 'please', 'help'] list_processed_text: [['reimbursement'], ['amount'], ['usd'], ['need'], ['approve'], ['travel'], ['expense'], ['following'], ['expense'], ['report'], ['submitted'], ['approval'], ['personnel'], ['mahtyurch'], ['kutgynka'], ['expense'], ['report'], ['start'], ['date'], ['end'], ['date'], ['total'], ['cost'], ['usd'], ['reimbursement'], ['amount'], ['usd'], ['review'], ['expense'], ['report'], ['full'], ['please'], ['log'], ['universal'], ['worklist'], ['manager'], ['self'], ['service'], ['right'], ['view'], ['please'], ['help']] k: 6958 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6959 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 6960 len: <class 'list'> Data: ['need', 'access', 'hostname', 'imts', 'folder', 'hello', 'team', 'please', 'usa', 'access', 'imts', 'folder', 'server', 'hostname'] processed_text: ['need', 'access', 'hostname', 'imts', 'folder', 'hello', 'team', 'please', 'usa', 'access', 'imts', 'folder', 'server', 'hostname'] list_processed_text: [['need'], ['access'], ['hostname'], ['imts'], ['folder'], ['hello'], ['team'], ['please'], ['usa'], ['access'], ['imts'], ['folder'], ['server'], ['hostname']] k: 6961 len: <class 'list'> Data: ['tel', 'pr', 'fen', 'tel', 'pr', 'fen'] processed_text: ['tel', 'pr', 'fen', 'tel', 'pr', 'fen'] list_processed_text: [['tel'], ['pr'], ['fen'], ['tel'], ['pr'], ['fen']] k: 6962 len: <class 'list'> Data: ['picking', 'request', 'cannot', 'print', 'hi', 'team', 'problem', 'picking', 'request', 'print', 'plant', 'sale', 'order', 'red', 'cannot', 'print', 'picking', 'request', 'aug', 'problem', 'csr', 'person', 'print', 'picking', 'request', 'print', 'manual', 'operate', 'automatic', 'print', 'please', 'help', 'u', 'aerp', 'best'] processed_text: ['picking', 'request', 'cannot', 'print', 'hi', 'team', 'problem', 'picking', 'request', 'print', 'plant', 'sale', 'order', 'red', 'cannot', 'print', 'picking', 'request', 'aug', 'problem', 'csr', 'person', 'print', 'picking', 'request', 'print', 'manual', 'operate', 'automatic', 'print', 'please', 'help', 'u', 'aerp', 'best'] list_processed_text: [['picking'], ['request'], ['cannot'], ['print'], ['hi'], ['team'], ['problem'], ['picking'], ['request'], ['print'], ['plant'], ['sale'], ['order'], ['red'], ['cannot'], ['print'], ['picking'], ['request'], ['aug'], ['problem'], ['csr'], ['person'], ['print'], ['picking'], ['request'], ['print'], ['manual'], ['operate'], ['automatic'], ['print'], ['please'], ['help'], ['u'], ['aerp'], ['best']] k: 6963 len: <class 'list'> Data: ['please', 'change', 'japanese', 'hi', 'screen', 'sale', 'order', 'please', 'change', 'japanese', 'also', 'ship', 'displayed', 'japanese', 'domestic', 'customer', 'want', 'display', 'japanese', 'best'] processed_text: ['please', 'change', 'japanese', 'hi', 'screen', 'sale', 'order', 'please', 'change', 'japanese', 'also', 'ship', 'displayed', 'japanese', 'domestic', 'customer', 'want', 'display', 'japanese', 'best'] list_processed_text: [['please'], ['change'], ['japanese'], ['hi'], ['screen'], ['sale'], ['order'], ['please'], ['change'], ['japanese'], ['also'], ['ship'], ['displayed'], ['japanese'], ['domestic'], ['customer'], ['want'], ['display'], ['japanese'], ['best']] k: 6964 len: <class 'list'> Data: ['account', 'information', 'updated', 'hi', 'one', 'spam', 'mail', 'please', 'check'] processed_text: ['account', 'information', 'updated', 'hi', 'one', 'spam', 'mail', 'please', 'check'] list_processed_text: [['account'], ['information'], ['updated'], ['hi'], ['one'], ['spam'], ['mail'], ['please'], ['check']] k: 6965 len: <class 'list'> Data: ['disable', 'mail', 'functionality', 'payment', 'advice', 'gnasmtvx', 'cwxtsvkm', 'pradyhtueep', 'yyufs', 'nathyresh', 'gayhtjula', 'lakhsynrhty', 'raghyvhdra', 'najuty', 'automatic', 'payment', 'bank', 'ksp', 'ng', 'request', 'please', 'disable', 'mail', 'functionality', 'payment', 'advice', 'time', 'find', 'solution', 'printing', 'mail', 'functionality'] processed_text: ['disable', 'mail', 'functionality', 'payment', 'advice', 'gnasmtvx', 'cwxtsvkm', 'pradyhtueep', 'yyufs', 'nathyresh', 'gayhtjula', 'lakhsynrhty', 'raghyvhdra', 'najuty', 'automatic', 'payment', 'bank', 'ksp', 'ng', 'request', 'please', 'disable', 'mail', 'functionality', 'payment', 'advice', 'time', 'find', 'solution', 'printing', 'mail', 'functionality'] list_processed_text: [['disable'], ['mail'], ['functionality'], ['payment'], ['advice'], ['gnasmtvx'], ['cwxtsvkm'], ['pradyhtueep'], ['yyufs'], ['nathyresh'], ['gayhtjula'], ['lakhsynrhty'], ['raghyvhdra'], ['najuty'], ['automatic'], ['payment'], ['bank'], ['ksp'], ['ng'], ['request'], ['please'], ['disable'], ['mail'], ['functionality'], ['payment'], ['advice'], ['time'], ['find'], ['solution'], ['printing'], ['mail'], ['functionality']] k: 6966 len: <class 'list'> Data: ['msd', 'crm', 'change', 'qty', 'crm', 'syatem', 'would', 'help', 'change', 'qty', 'pc', 'pc'] processed_text: ['msd', 'crm', 'change', 'qty', 'crm', 'syatem', 'would', 'help', 'change', 'qty', 'pc', 'pc'] list_processed_text: [['msd'], ['crm'], ['change'], ['qty'], ['crm'], ['syatem'], ['would'], ['help'], ['change'], ['qty'], ['pc'], ['pc']] k: 6967 len: <class 'list'> Data: ['nigktly', 'erp', 'download', 'germany', 'plant', 'waiting', 'date', 'since', 'one', 'day', 'job', 'hang', 'step', 'step', 'wait', 'file', 'erp', 'edksm', 'eu', 'tool', 'daten', 'coming', 'ziped', 'file', 'please', 'check', 'whether', 'relazed', 'erp', 'job', 'running', 'properly', 'phone', 'email', 'skype', 'buissness', 'external', 'conact'] processed_text: ['nigktly', 'erp', 'download', 'germany', 'plant', 'waiting', 'date', 'since', 'one', 'day', 'job', 'hang', 'step', 'step', 'wait', 'file', 'erp', 'edksm', 'eu', 'tool', 'daten', 'coming', 'ziped', 'file', 'please', 'check', 'whether', 'relazed', 'erp', 'job', 'running', 'properly', 'phone', 'email', 'skype', 'buissness', 'external', 'conact'] list_processed_text: [['nigktly'], ['erp'], ['download'], ['germany'], ['plant'], ['waiting'], ['date'], ['since'], ['one'], ['day'], ['job'], ['hang'], ['step'], ['step'], ['wait'], ['file'], ['erp'], ['edksm'], ['eu'], ['tool'], ['daten'], ['coming'], ['ziped'], ['file'], ['please'], ['check'], ['whether'], ['relazed'], ['erp'], ['job'], ['running'], ['properly'], ['phone'], ['email'], ['skype'], ['buissness'], ['external'], ['conact']] k: 6968 len: <class 'list'> Data: ['credit', 'component', 'working', 'prod', 'author', 'credit', 'component', 'working', 'prod', 'author', 'getting', 'following', 'error', 'console', 'programdnty', 'uncaught', 'referenceerror', 'xiframdntye', 'definedsubmitform', 'programdnty', 'anonymous', 'function', 'programdnty', 'dispatch', 'jquery', 'min', 'j', 'jquery', 'min', 'j'] processed_text: ['credit', 'component', 'working', 'prod', 'author', 'credit', 'component', 'working', 'prod', 'author', 'getting', 'following', 'error', 'console', 'programdnty', 'uncaught', 'referenceerror', 'xiframdntye', 'definedsubmitform', 'programdnty', 'anonymous', 'function', 'programdnty', 'dispatch', 'jquery', 'min', 'j', 'jquery', 'min', 'j'] list_processed_text: [['credit'], ['component'], ['working'], ['prod'], ['author'], ['credit'], ['component'], ['working'], ['prod'], ['author'], ['getting'], ['following'], ['error'], ['console'], ['programdnty'], ['uncaught'], ['referenceerror'], ['xiframdntye'], ['definedsubmitform'], ['programdnty'], ['anonymous'], ['function'], ['programdnty'], ['dispatch'], ['jquery'], ['min'], ['j'], ['jquery'], ['min'], ['j']] k: 6969 len: <class 'list'> Data: ['laptop', 'screen', 'flickering', 'hello', 'team', 'laptop', 'monitor', 'screen', 'flicker', 'often', 'start', 'laptop'] processed_text: ['laptop', 'screen', 'flickering', 'hello', 'team', 'laptop', 'monitor', 'screen', 'flicker', 'often', 'start', 'laptop'] list_processed_text: [['laptop'], ['screen'], ['flickering'], ['hello'], ['team'], ['laptop'], ['monitor'], ['screen'], ['flicker'], ['often'], ['start'], ['laptop']] k: 6970 len: <class 'list'> Data: ['business', 'client', 'sid', 'search', 'server', 'working', 'hi', 'find', 'document', 'engineering', 'tool', 'sid', 'business', 'client', 'sid', 'search', 'server', 'working', 'request', 'check', 'indexing', 'needful', 'need', 'uacyltoe', 'hxgayczeing', 'business', 'client', 'sid'] processed_text: ['business', 'client', 'sid', 'search', 'server', 'working', 'hi', 'find', 'document', 'engineering', 'tool', 'sid', 'business', 'client', 'sid', 'search', 'server', 'working', 'request', 'check', 'indexing', 'needful', 'need', 'uacyltoe', 'hxgayczeing', 'business', 'client', 'sid'] list_processed_text: [['business'], ['client'], ['sid'], ['search'], ['server'], ['working'], ['hi'], ['find'], ['document'], ['engineering'], ['tool'], ['sid'], ['business'], ['client'], ['sid'], ['search'], ['server'], ['working'], ['request'], ['check'], ['indexing'], ['needful'], ['need'], ['uacyltoe'], ['hxgayczeing'], ['business'], ['client'], ['sid']] k: 6971 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['failed'], ['job'], ['scheduler']] k: 6972 len: <class 'list'> Data: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] processed_text: ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler'], ['job'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['failed'], ['job'], ['scheduler']] k: 6973 len: <class 'list'> Data: ['change', 'payment', 'term', 'emea', 'vendor', 'accounting', 'view', 'v', 'dear', 'please', 'create', 'ticket', 'update', 'emea', 'vendor', 'master', 'file', 'move', 'ticket', 'nahytua', 'another', 'available', 'colleague', 'accounting', 'view', 'done', 'today', 'urgent'] processed_text: ['change', 'payment', 'term', 'emea', 'vendor', 'accounting', 'view', 'v', 'dear', 'please', 'create', 'ticket', 'update', 'emea', 'vendor', 'master', 'file', 'move', 'ticket', 'nahytua', 'another', 'available', 'colleague', 'accounting', 'view', 'done', 'today', 'urgent'] list_processed_text: [['change'], ['payment'], ['term'], ['emea'], ['vendor'], ['accounting'], ['view'], ['v'], ['dear'], ['please'], ['create'], ['ticket'], ['update'], ['emea'], ['vendor'], ['master'], ['file'], ['move'], ['ticket'], ['nahytua'], ['another'], ['available'], ['colleague'], ['accounting'], ['view'], ['done'], ['today'], ['urgent']] k: 6974 len: <class 'list'> Data: ['loan', 'switch', 'help', 'install', 'loan', 'switch', 'lan', 'cable', 'newly', 'created', 'cubicle'] processed_text: ['loan', 'switch', 'help', 'install', 'loan', 'switch', 'lan', 'cable', 'newly', 'created', 'cubicle'] list_processed_text: [['loan'], ['switch'], ['help'], ['install'], ['loan'], ['switch'], ['lan'], ['cable'], ['newly'], ['created'], ['cubicle']] k: 6975 len: <class 'list'> Data: ['keybankrd', 'accident', 'damage', 'hinge', 'cover', 'window', 'key', 'key', 'working', 'also', 'accidental', 'damage', 'hinge'] processed_text: ['keybankrd', 'accident', 'damage', 'hinge', 'cover', 'window', 'key', 'key', 'working', 'also', 'accidental', 'damage', 'hinge'] list_processed_text: [['keybankrd'], ['accident'], ['damage'], ['hinge'], ['cover'], ['window'], ['key'], ['key'], ['working'], ['also'], ['accidental'], ['damage'], ['hinge']] k: 6976 len: <class 'list'> Data: ['unable', 'download', 'file', 'gpts', 'unable', 'download', 'file', 'gpts'] processed_text: ['unable', 'download', 'file', 'gpts', 'unable', 'download', 'file', 'gpts'] list_processed_text: [['unable'], ['download'], ['file'], ['gpts'], ['unable'], ['download'], ['file'], ['gpts']] k: 6977 len: <class 'list'> Data: ['need', 'uasername', 'password', 'ewseditor', 'uacyltoe', 'hxgaycze', 'email', 'australia', 'team', 'polling', 'telephony', 'software', 'far', 'work', 'via', 'outlook', 'engineer', 'need', 'ewseditor', 'uacyltoe', 'hxgaycze', 'ask', 'u', 'provide', 'username', 'password', 'qlhmawgi', 'sgwipoxn'] processed_text: ['need', 'uasername', 'password', 'ewseditor', 'uacyltoe', 'hxgaycze', 'email', 'australia', 'team', 'polling', 'telephony', 'software', 'far', 'work', 'via', 'outlook', 'engineer', 'need', 'ewseditor', 'uacyltoe', 'hxgaycze', 'ask', 'u', 'provide', 'username', 'password', 'qlhmawgi', 'sgwipoxn'] list_processed_text: [['need'], ['uasername'], ['password'], ['ewseditor'], ['uacyltoe'], ['hxgaycze'], ['email'], ['australia'], ['team'], ['polling'], ['telephony'], ['software'], ['far'], ['work'], ['via'], ['outlook'], ['engineer'], ['need'], ['ewseditor'], ['uacyltoe'], ['hxgaycze'], ['ask'], ['u'], ['provide'], ['username'], ['password'], ['qlhmawgi'], ['sgwipoxn']] k: 6978 len: <class 'list'> Data: ['window', 'locked', 'hi', 'following', 'user', 'id', 'winows', 'locked', 'pl', 'help', 'user', 'id', 'dsilvfgj'] processed_text: ['window', 'locked', 'hi', 'following', 'user', 'id', 'winows', 'locked', 'pl', 'help', 'user', 'id', 'dsilvfgj'] list_processed_text: [['window'], ['locked'], ['hi'], ['following'], ['user'], ['id'], ['winows'], ['locked'], ['pl'], ['help'], ['user'], ['id'], ['dsilvfgj']] k: 6979 len: <class 'list'> Data: ['finance', 'app', 'application', 'reporting', 'status', 'hostname', 'since', 'pm', 'est', 'finance', 'app', 'hfm', 'server', 'reporting', 'status', 'hostname', 'since', 'pm', 'est'] processed_text: ['finance', 'app', 'application', 'reporting', 'status', 'hostname', 'since', 'pm', 'est', 'finance', 'app', 'hfm', 'server', 'reporting', 'status', 'hostname', 'since', 'pm', 'est'] list_processed_text: [['finance'], ['app'], ['application'], ['reporting'], ['status'], ['hostname'], ['since'], ['pm'], ['est'], ['finance'], ['app'], ['hfm'], ['server'], ['reporting'], ['status'], ['hostname'], ['since'], ['pm'], ['est']] k: 6980 len: <class 'list'> Data: ['changed', 'weight', 'mm', 'copied', 'sale', 'order', 'met', 'weight', 'problem', 'make', 'shipment', 'order', 'shipping', 'plant', 'complained', 'weight', 'n', 'mm', 'still', 'remain', 'dummy', 'weight', 'new', 'mm', 'actually', 'weight', 'mm', 'already', 'updated', 'mm', 'real', 'weight', 'dn', 'created', 'system', 'cannot', 'carry', 'new', 'weight', 'sale', 'order', 'see', 'sample', 'mm', 'mm', 'change', 'recorded', 'said', 'weight', 'updated', 'however', 'still', 'keep', 'plant', 'run', 'n', 'weight', 'n', 'still', 'shown', 'thus', 'warehouse', 'manual', 'update', 'weight', 'n', 'please', 'verify', 'problem'] processed_text: ['changed', 'weight', 'mm', 'copied', 'sale', 'order', 'met', 'weight', 'problem', 'make', 'shipment', 'order', 'shipping', 'plant', 'complained', 'weight', 'n', 'mm', 'still', 'remain', 'dummy', 'weight', 'new', 'mm', 'actually', 'weight', 'mm', 'already', 'updated', 'mm', 'real', 'weight', 'dn', 'created', 'system', 'cannot', 'carry', 'new', 'weight', 'sale', 'order', 'see', 'sample', 'mm', 'mm', 'change', 'recorded', 'said', 'weight', 'updated', 'however', 'still', 'keep', 'plant', 'run', 'n', 'weight', 'n', 'still', 'shown', 'thus', 'warehouse', 'manual', 'update', 'weight', 'n', 'please', 'verify', 'problem'] list_processed_text: [['changed'], ['weight'], ['mm'], ['copied'], ['sale'], ['order'], ['met'], ['weight'], ['problem'], ['make'], ['shipment'], ['order'], ['shipping'], ['plant'], ['complained'], ['weight'], ['n'], ['mm'], ['still'], ['remain'], ['dummy'], ['weight'], ['new'], ['mm'], ['actually'], ['weight'], ['mm'], ['already'], ['updated'], ['mm'], ['real'], ['weight'], ['dn'], ['created'], ['system'], ['cannot'], ['carry'], ['new'], ['weight'], ['sale'], ['order'], ['see'], ['sample'], ['mm'], ['mm'], ['change'], ['recorded'], ['said'], ['weight'], ['updated'], ['however'], ['still'], ['keep'], ['plant'], ['run'], ['n'], ['weight'], ['n'], ['still'], ['shown'], ['thus'], ['warehouse'], ['manual'], ['update'], ['weight'], ['n'], ['please'], ['verify'], ['problem']] k: 6981 len: <class 'list'> Data: ['external', 'complaint', 'status', 'assigned', 'hello', 'team', 'add', 'receiving', 'address', 'contact', 'person', 'tel', 'number', 'return', 'form', 'letgyo', 'jiftg', 'logistics', 'manager', 'johthryugftyson', 'hu', 'letgyo', 'jiftg', 'east', 'service', 'simfghon', 'wanrtyg', 'external', 'complaint', 'status', 'assigned', 'leo', 'please', 'check', 'possible', 'add', 'warehouse', 'person', 'receiving', 'return', 'plant', 'judthti', 'zhu', 'office', 'tel', 'return', 'form', 'attached'] processed_text: ['external', 'complaint', 'status', 'assigned', 'hello', 'team', 'add', 'receiving', 'address', 'contact', 'person', 'tel', 'number', 'return', 'form', 'letgyo', 'jiftg', 'logistics', 'manager', 'johthryugftyson', 'hu', 'letgyo', 'jiftg', 'east', 'service', 'simfghon', 'wanrtyg', 'external', 'complaint', 'status', 'assigned', 'leo', 'please', 'check', 'possible', 'add', 'warehouse', 'person', 'receiving', 'return', 'plant', 'judthti', 'zhu', 'office', 'tel', 'return', 'form', 'attached'] list_processed_text: [['external'], ['complaint'], ['status'], ['assigned'], ['hello'], ['team'], ['add'], ['receiving'], ['address'], ['contact'], ['person'], ['tel'], ['number'], ['return'], ['form'], ['letgyo'], ['jiftg'], ['logistics'], ['manager'], ['johthryugftyson'], ['hu'], ['letgyo'], ['jiftg'], ['east'], ['service'], ['simfghon'], ['wanrtyg'], ['external'], ['complaint'], ['status'], ['assigned'], ['leo'], ['please'], ['check'], ['possible'], ['add'], ['warehouse'], ['person'], ['receiving'], ['return'], ['plant'], ['judthti'], ['zhu'], ['office'], ['tel'], ['return'], ['form'], ['attached']] k: 6982 len: <class 'list'> Data: ['need', 'access', 'global', 'drive', 'asked', 'put', 'together', 'traiyctrhbkm', 'plvnuxmrterial', 'imts', 'show', 'need', 'access', 'global', 'drive', 'hostname', 'team', 'imts', 'pre', 'show', 'product', 'training', 'file', 'hostname', 'team', 'imts', 'pre', 'show', 'product', 'training', 'currently', 'best'] processed_text: ['need', 'access', 'global', 'drive', 'asked', 'put', 'together', 'traiyctrhbkm', 'plvnuxmrterial', 'imts', 'show', 'need', 'access', 'global', 'drive', 'hostname', 'team', 'imts', 'pre', 'show', 'product', 'training', 'file', 'hostname', 'team', 'imts', 'pre', 'show', 'product', 'training', 'currently', 'best'] list_processed_text: [['need'], ['access'], ['global'], ['drive'], ['asked'], ['put'], ['together'], ['traiyctrhbkm'], ['plvnuxmrterial'], ['imts'], ['show'], ['need'], ['access'], ['global'], ['drive'], ['hostname'], ['team'], ['imts'], ['pre'], ['show'], ['product'], ['training'], ['file'], ['hostname'], ['team'], ['imts'], ['pre'], ['show'], ['product'], ['training'], ['currently'], ['best']] k: 6983 len: <class 'list'> Data: ['ticket', 'update', 'info', 'provided', 'vksfrhdx', 'njhaqket', 'bobj', 'access', 'rakthyesh', 'ramdntythanjesh', 'vksfrhdx', 'njhaqket', 'ctzykflo', 'evzbhgru', 'hadfiunr', 'vupglewt', 'wvdxnkhf', 'jirecvta', 'anftgup', 'nftgyair', 'bobj', 'access', 'dear', 'marftgytin', 'yes', 'request', 'processed', 'completed', 'closed', 'anup', 'reference', 'ticket', 'ticket', 'kind'] processed_text: ['ticket', 'update', 'info', 'provided', 'vksfrhdx', 'njhaqket', 'bobj', 'access', 'rakthyesh', 'ramdntythanjesh', 'vksfrhdx', 'njhaqket', 'ctzykflo', 'evzbhgru', 'hadfiunr', 'vupglewt', 'wvdxnkhf', 'jirecvta', 'anftgup', 'nftgyair', 'bobj', 'access', 'dear', 'marftgytin', 'yes', 'request', 'processed', 'completed', 'closed', 'anup', 'reference', 'ticket', 'ticket', 'kind'] list_processed_text: [['ticket'], ['update'], ['info'], ['provided'], ['vksfrhdx'], ['njhaqket'], ['bobj'], ['access'], ['rakthyesh'], ['ramdntythanjesh'], ['vksfrhdx'], ['njhaqket'], ['ctzykflo'], ['evzbhgru'], ['hadfiunr'], ['vupglewt'], ['wvdxnkhf'], ['jirecvta'], ['anftgup'], ['nftgyair'], ['bobj'], ['access'], ['dear'], ['marftgytin'], ['yes'], ['request'], ['processed'], ['completed'], ['closed'], ['anup'], ['reference'], ['ticket'], ['ticket'], ['kind']] k: 6984 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'phishing', 'email', 'account', 'information', 'updated', 'rakthyesh', 'ramdntythanjesh', 'ed', 'bigdrtyh', 'account', 'information', 'updated', 'dear', 'ed', 'hope', 'good', 'please', 'note', 'phishing', 'uacyltoe', 'hxgaycze', 'email', 'sent', 'uacyltoe', 'hxgaycze', 'preparedness', 'actual', 'scenario', 'congratuldhyation', 'detecting', 'highlighting', 'issue'] processed_text: ['uacyltoe', 'hxgaycze', 'phishing', 'email', 'account', 'information', 'updated', 'rakthyesh', 'ramdntythanjesh', 'ed', 'bigdrtyh', 'account', 'information', 'updated', 'dear', 'ed', 'hope', 'good', 'please', 'note', 'phishing', 'uacyltoe', 'hxgaycze', 'email', 'sent', 'uacyltoe', 'hxgaycze', 'preparedness', 'actual', 'scenario', 'congratuldhyation', 'detecting', 'highlighting', 'issue'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['phishing'], ['email'], ['account'], ['information'], ['updated'], ['rakthyesh'], ['ramdntythanjesh'], ['ed'], ['bigdrtyh'], ['account'], ['information'], ['updated'], ['dear'], ['ed'], ['hope'], ['good'], ['please'], ['note'], ['phishing'], ['uacyltoe'], ['hxgaycze'], ['email'], ['sent'], ['uacyltoe'], ['hxgaycze'], ['preparedness'], ['actual'], ['scenario'], ['congratuldhyation'], ['detecting'], ['highlighting'], ['issue']] k: 6985 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'phishing', 'email', 'account', 'information', 'updated', 'rakthyesh', 'ramdntythanjesh', 'sunil', 'gavasane', 'account', 'information', 'updated', 'dear', 'sunil', 'hope', 'good', 'please', 'note', 'phishing', 'uacyltoe', 'hxgaycze', 'email', 'sent', 'uacyltoe', 'hxgaycze', 'preparedness', 'actual', 'scenario', 'congratuldhyation', 'detecting', 'highlighting', 'issue'] processed_text: ['uacyltoe', 'hxgaycze', 'phishing', 'email', 'account', 'information', 'updated', 'rakthyesh', 'ramdntythanjesh', 'sunil', 'gavasane', 'account', 'information', 'updated', 'dear', 'sunil', 'hope', 'good', 'please', 'note', 'phishing', 'uacyltoe', 'hxgaycze', 'email', 'sent', 'uacyltoe', 'hxgaycze', 'preparedness', 'actual', 'scenario', 'congratuldhyation', 'detecting', 'highlighting', 'issue'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['phishing'], ['email'], ['account'], ['information'], ['updated'], ['rakthyesh'], ['ramdntythanjesh'], ['sunil'], ['gavasane'], ['account'], ['information'], ['updated'], ['dear'], ['sunil'], ['hope'], ['good'], ['please'], ['note'], ['phishing'], ['uacyltoe'], ['hxgaycze'], ['email'], ['sent'], ['uacyltoe'], ['hxgaycze'], ['preparedness'], ['actual'], ['scenario'], ['congratuldhyation'], ['detecting'], ['highlighting'], ['issue']] k: 6986 len: <class 'list'> Data: ['see', 'attachment', 'discritpion', 'show', 'discription', 'show', 'correctly', 'mmaster'] processed_text: ['see', 'attachment', 'discritpion', 'show', 'discription', 'show', 'correctly', 'mmaster'] list_processed_text: [['see'], ['attachment'], ['discritpion'], ['show'], ['discription'], ['show'], ['correctly'], ['mmaster']] k: 6987 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 6988 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 6989 len: <class 'list'> Data: ['email', 'sent', 'net', 'systemaccess', 'applicaiton', 'end', 'user', 'submitting', 'security', 'request', 'approver', 'receiving', 'email', 'systemaccess', 'application', 'approve'] processed_text: ['email', 'sent', 'net', 'systemaccess', 'applicaiton', 'end', 'user', 'submitting', 'security', 'request', 'approver', 'receiving', 'email', 'systemaccess', 'application', 'approve'] list_processed_text: [['email'], ['sent'], ['net'], ['systemaccess'], ['applicaiton'], ['end'], ['user'], ['submitting'], ['security'], ['request'], ['approver'], ['receiving'], ['email'], ['systemaccess'], ['application'], ['approve']] k: 6990 len: <class 'list'> Data: ['request', 'image', 'front', 'cd', 'order', 'evaluate', 'theft', 'concrete', 'mixer', 'engine', 'period'] processed_text: ['request', 'image', 'front', 'cd', 'order', 'evaluate', 'theft', 'concrete', 'mixer', 'engine', 'period'] list_processed_text: [['request'], ['image'], ['front'], ['cd'], ['order'], ['evaluate'], ['theft'], ['concrete'], ['mixer'], ['engine'], ['period']] k: 6991 len: <class 'list'> Data: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] processed_text: ['unable', 'log', 'skype', 'unable', 'log', 'skype'] list_processed_text: [['unable'], ['log'], ['skype'], ['unable'], ['log'], ['skype']] k: 6992 len: <class 'list'> Data: ['blank', 'call', 'blank', 'call'] processed_text: ['blank', 'call', 'blank', 'call'] list_processed_text: [['blank'], ['call'], ['blank'], ['call']] k: 6993 len: <class 'list'> Data: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] processed_text: ['printer', 'driver', 'update', 'printer', 'driver', 'update'] list_processed_text: [['printer'], ['driver'], ['update'], ['printer'], ['driver'], ['update']] k: 6994 len: <class 'list'> Data: ['usa', 'interfacetengigabitethernet', 'since', 'et', 'usa', 'interfacetengigabitethernet', 'dr', 'connection', 'top', 'tech', 'stack', 'company', 'com', 'since', 'et'] processed_text: ['usa', 'interfacetengigabitethernet', 'since', 'et', 'usa', 'interfacetengigabitethernet', 'dr', 'connection', 'top', 'tech', 'stack', 'company', 'com', 'since', 'et'] list_processed_text: [['usa'], ['interfacetengigabitethernet'], ['since'], ['et'], ['usa'], ['interfacetengigabitethernet'], ['dr'], ['connection'], ['top'], ['tech'], ['stack'], ['company'], ['com'], ['since'], ['et']] k: 6995 len: <class 'list'> Data: ['engineering', 'tool', 'icon', 'desktop', 'engineering', 'tool', 'icon', 'desktop'] processed_text: ['engineering', 'tool', 'icon', 'desktop', 'engineering', 'tool', 'icon', 'desktop'] list_processed_text: [['engineering'], ['tool'], ['icon'], ['desktop'], ['engineering'], ['tool'], ['icon'], ['desktop']] k: 6996 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'aparecido', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'aparecido', 'last', 'name', 'trhsyvdur', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'aparecido', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'aparecido', 'last', 'name', 'trhsyvdur', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['aparecido'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['amar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['aparecido'], ['last'], ['name'], ['trhsyvdur'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 6997 len: <class 'list'> Data: ['trying', 'access', 'crm', 'es', 'getting', 'message', 'password', 'expired', 'tried', 'password', 'management', 'tool', 'password', 'manager', 'trying', 'access', 'crm', 'es', 'getting', 'message', 'password', 'expired', 'tried', 'password', 'management', 'tool', 'password', 'manager', 'unlocked', 'account', 'rebooted', 'pc', 'tried', 'password', 'manager'] processed_text: ['trying', 'access', 'crm', 'es', 'getting', 'message', 'password', 'expired', 'tried', 'password', 'management', 'tool', 'password', 'manager', 'trying', 'access', 'crm', 'es', 'getting', 'message', 'password', 'expired', 'tried', 'password', 'management', 'tool', 'password', 'manager', 'unlocked', 'account', 'rebooted', 'pc', 'tried', 'password', 'manager'] list_processed_text: [['trying'], ['access'], ['crm'], ['es'], ['getting'], ['message'], ['password'], ['expired'], ['tried'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['trying'], ['access'], ['crm'], ['es'], ['getting'], ['message'], ['password'], ['expired'], ['tried'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unlocked'], ['account'], ['rebooted'], ['pc'], ['tried'], ['password'], ['manager']] k: 6998 len: <class 'list'> Data: ['hostname', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ceea', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] processed_text: ['hostname', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'ceea', 'server', 'hostname', 'space', 'consumed', 'space', 'available', 'g'] list_processed_text: [['hostname'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g'], ['hostname'], ['volume'], ['label'], ['sys'], ['hostname'], ['ceea'], ['server'], ['hostname'], ['space'], ['consumed'], ['space'], ['available'], ['g']] k: 6999 len: <class 'list'> Data: ['unable', 'get', 'sale', 'org', 'distributor', 'tool', 'unable', 'get', 'sale', 'org', 'distributor', 'tool'] processed_text: ['unable', 'get', 'sale', 'org', 'distributor', 'tool', 'unable', 'get', 'sale', 'org', 'distributor', 'tool'] list_processed_text: [['unable'], ['get'], ['sale'], ['org'], ['distributor'], ['tool'], ['unable'], ['get'], ['sale'], ['org'], ['distributor'], ['tool']] k: 7000 len: <class 'list'> Data: ['trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'phone'] processed_text: ['trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'try', 'look', 'configuration', 'rqfhiong', 'zkwfqagb', 'get', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'phone'] list_processed_text: [['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['try'], ['look'], ['configuration'], ['rqfhiong'], ['zkwfqagb'], ['get'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['phone']] k: 7001 len: <class 'list'> Data: ['telephony', 'software', 'login', 'issue', 'yakimp', 'staszk', 'two', 'user', 'problem', 'logging', 'telephony', 'software', 'system', 'qlzgbjck', 'yzwnvbjt', 'login', 'staszk', 'djskrgae', 'dnckipwh', 'login', 'yakimp', 'print', 'screen', 'attached', 'able', 'assist'] processed_text: ['telephony', 'software', 'login', 'issue', 'yakimp', 'staszk', 'two', 'user', 'problem', 'logging', 'telephony', 'software', 'system', 'qlzgbjck', 'yzwnvbjt', 'login', 'staszk', 'djskrgae', 'dnckipwh', 'login', 'yakimp', 'print', 'screen', 'attached', 'able', 'assist'] list_processed_text: [['telephony'], ['software'], ['login'], ['issue'], ['yakimp'], ['staszk'], ['two'], ['user'], ['problem'], ['logging'], ['telephony'], ['software'], ['system'], ['qlzgbjck'], ['yzwnvbjt'], ['login'], ['staszk'], ['djskrgae'], ['dnckipwh'], ['login'], ['yakimp'], ['print'], ['screen'], ['attached'], ['able'], ['assist']] k: 7002 len: <class 'list'> Data: ['team', 'sproc', 'converting', 'direct', 'team', 'revenue', 'employee', 'currency', 'code', 'team', 'sproc', 'converting', 'direct', 'team', 'revenue', 'employee', 'currency', 'code'] processed_text: ['team', 'sproc', 'converting', 'direct', 'team', 'revenue', 'employee', 'currency', 'code', 'team', 'sproc', 'converting', 'direct', 'team', 'revenue', 'employee', 'currency', 'code'] list_processed_text: [['team'], ['sproc'], ['converting'], ['direct'], ['team'], ['revenue'], ['employee'], ['currency'], ['code'], ['team'], ['sproc'], ['converting'], ['direct'], ['team'], ['revenue'], ['employee'], ['currency'], ['code']] k: 7003 len: <class 'list'> Data: ['unlock', 'erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account'] processed_text: ['unlock', 'erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account'] list_processed_text: [['unlock'], ['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account']] k: 7004 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 7005 len: <class 'list'> Data: ['unable', 'login', 'pc', 'unable', 'login', 'pc'] processed_text: ['unable', 'login', 'pc', 'unable', 'login', 'pc'] list_processed_text: [['unable'], ['login'], ['pc'], ['unable'], ['login'], ['pc']] k: 7006 len: <class 'list'> Data: ['businessobjects', 'cm', 'cm', 'server', 'watcher', 'server', 'named', 'hostname', 'businessobjects', 'cm', 'cm', 'server', 'watcher', 'server', 'named', 'hostname'] processed_text: ['businessobjects', 'cm', 'cm', 'server', 'watcher', 'server', 'named', 'hostname', 'businessobjects', 'cm', 'cm', 'server', 'watcher', 'server', 'named', 'hostname'] list_processed_text: [['businessobjects'], ['cm'], ['cm'], ['server'], ['watcher'], ['server'], ['named'], ['hostname'], ['businessobjects'], ['cm'], ['cm'], ['server'], ['watcher'], ['server'], ['named'], ['hostname']] k: 7007 len: <class 'list'> Data: ['erp', 'login', 'appears', 'working', 'erp', 'login', 'appears', 'working', 'username', 'wolfthry', 'password', 'kasphryer'] processed_text: ['erp', 'login', 'appears', 'working', 'erp', 'login', 'appears', 'working', 'username', 'wolfthry', 'password', 'kasphryer'] list_processed_text: [['erp'], ['login'], ['appears'], ['working'], ['erp'], ['login'], ['appears'], ['working'], ['username'], ['wolfthry'], ['password'], ['kasphryer']] k: 7008 len: <class 'list'> Data: ['telephony', 'software', 'update', 'summary', 'telephony', 'software', 'update', 'work'] processed_text: ['telephony', 'software', 'update', 'summary', 'telephony', 'software', 'update', 'work'] list_processed_text: [['telephony'], ['software'], ['update'], ['summary'], ['telephony'], ['software'], ['update'], ['work']] k: 7009 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'qasdhyzm', 'yuglsrwx', 'id', 'nasftgcijj', 'rspqvzgu', 'vroanwhu', 'id', 'silvgtyar', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'qasdhyzm', 'yuglsrwx', 'id', 'nasftgcijj', 'rspqvzgu', 'vroanwhu', 'id', 'silvgtyar'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'qasdhyzm', 'yuglsrwx', 'id', 'nasftgcijj', 'rspqvzgu', 'vroanwhu', 'id', 'silvgtyar', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'qasdhyzm', 'yuglsrwx', 'id', 'nasftgcijj', 'rspqvzgu', 'vroanwhu', 'id', 'silvgtyar'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['qasdhyzm'], ['yuglsrwx'], ['id'], ['nasftgcijj'], ['rspqvzgu'], ['vroanwhu'], ['id'], ['silvgtyar'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['qasdhyzm'], ['yuglsrwx'], ['id'], ['nasftgcijj'], ['rspqvzgu'], ['vroanwhu'], ['id'], ['silvgtyar']] k: 7010 len: <class 'list'> Data: ['sale', 'org', 'tab', 'show', 'field', 'sale', 'org', 'tab', 'show', 'field'] processed_text: ['sale', 'org', 'tab', 'show', 'field', 'sale', 'org', 'tab', 'show', 'field'] list_processed_text: [['sale'], ['org'], ['tab'], ['show'], ['field'], ['sale'], ['org'], ['tab'], ['show'], ['field']] k: 7011 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 7012 len: <class 'list'> Data: ['m', 'crm', 'online', 'dash', 'bankrd', 'opportunity', 'issue', 'm', 'crm', 'online', 'dash', 'bankrd', 'opportunity', 'issue'] processed_text: ['m', 'crm', 'online', 'dash', 'bankrd', 'opportunity', 'issue', 'm', 'crm', 'online', 'dash', 'bankrd', 'opportunity', 'issue'] list_processed_text: [['m'], ['crm'], ['online'], ['dash'], ['bankrd'], ['opportunity'], ['issue'], ['m'], ['crm'], ['online'], ['dash'], ['bankrd'], ['opportunity'], ['issue']] k: 7013 len: <class 'list'> Data: ['unable', 'open', 'attachment', 'erp', 'unable', 'open', 'attachment', 'erp'] processed_text: ['unable', 'open', 'attachment', 'erp', 'unable', 'open', 'attachment', 'erp'] list_processed_text: [['unable'], ['open'], ['attachment'], ['erp'], ['unable'], ['open'], ['attachment'], ['erp']] k: 7014 len: <class 'list'> Data: ['unable', 'create', 'dn', 'hi', 'please', 'assist', 'create', 'dn', 'able'] processed_text: ['unable', 'create', 'dn', 'hi', 'please', 'assist', 'create', 'dn', 'able'] list_processed_text: [['unable'], ['create'], ['dn'], ['hi'], ['please'], ['assist'], ['create'], ['dn'], ['able']] k: 7015 len: <class 'list'> Data: ['help', 'jdamieul', 'fandyhgg', 'hello', 'danghtnuell', 'connection', 'problem', 'would', 'please', 'get', 'touch', 'office', 'phone', 'number'] processed_text: ['help', 'jdamieul', 'fandyhgg', 'hello', 'danghtnuell', 'connection', 'problem', 'would', 'please', 'get', 'touch', 'office', 'phone', 'number'] list_processed_text: [['help'], ['jdamieul'], ['fandyhgg'], ['hello'], ['danghtnuell'], ['connection'], ['problem'], ['would'], ['please'], ['get'], ['touch'], ['office'], ['phone'], ['number']] k: 7016 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7017 len: <class 'list'> Data: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] processed_text: ['job', 'job', 'failed', 'job', 'scheduler', 'job', 'job', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['job'], ['failed'], ['job'], ['scheduler'], ['job'], ['job'], ['failed'], ['job'], ['scheduler']] k: 7018 len: <class 'list'> Data: ['reset', 'password', 'aliuytre', 'love', 'lewis', 'caas', 'application', 'would', 'like', 'reset', 'caas', 'application', 'remote', 'desktop', 'connection', 'password', 'itylnjqw', 'kqiurhbt', 'thomklmas', 'brrgtyant', 'handle', 'request', 'office', 'apart', 'customer', 'interaction', 'phone', 'system'] processed_text: ['reset', 'password', 'aliuytre', 'love', 'lewis', 'caas', 'application', 'would', 'like', 'reset', 'caas', 'application', 'remote', 'desktop', 'connection', 'password', 'itylnjqw', 'kqiurhbt', 'thomklmas', 'brrgtyant', 'handle', 'request', 'office', 'apart', 'customer', 'interaction', 'phone', 'system'] list_processed_text: [['reset'], ['password'], ['aliuytre'], ['love'], ['lewis'], ['caas'], ['application'], ['would'], ['like'], ['reset'], ['caas'], ['application'], ['remote'], ['desktop'], ['connection'], ['password'], ['itylnjqw'], ['kqiurhbt'], ['thomklmas'], ['brrgtyant'], ['handle'], ['request'], ['office'], ['apart'], ['customer'], ['interaction'], ['phone'], ['system']] k: 7019 len: <class 'list'> Data: ['m', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'issue', 'm', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'issue'] processed_text: ['m', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'issue', 'm', 'outlook', 'issue', 'm', 'crm', 'dynamic', 'issue'] list_processed_text: [['m'], ['outlook'], ['issue'], ['m'], ['crm'], ['dynamic'], ['issue'], ['m'], ['outlook'], ['issue'], ['m'], ['crm'], ['dynamic'], ['issue']] k: 7020 len: <class 'list'> Data: ['outlook', 'issue', 'summary', 'think', 'receiving', 'email'] processed_text: ['outlook', 'issue', 'summary', 'think', 'receiving', 'email'] list_processed_text: [['outlook'], ['issue'], ['summary'], ['think'], ['receiving'], ['email']] k: 7021 len: <class 'list'> Data: ['dev', 'software', 'file', 'system', 'hostname', 'consumed', 'space', 'dev', 'software', 'file', 'system', 'hostname', 'consumed', 'space'] processed_text: ['dev', 'software', 'file', 'system', 'hostname', 'consumed', 'space', 'dev', 'software', 'file', 'system', 'hostname', 'consumed', 'space'] list_processed_text: [['dev'], ['software'], ['file'], ['system'], ['hostname'], ['consumed'], ['space'], ['dev'], ['software'], ['file'], ['system'], ['hostname'], ['consumed'], ['space']] k: 7022 len: <class 'list'> Data: ['virus', 'detected', 'pc', 'virus', 'detected', 'pc', 'please', 'see', 'attachment'] processed_text: ['virus', 'detected', 'pc', 'virus', 'detected', 'pc', 'please', 'see', 'attachment'] list_processed_text: [['virus'], ['detected'], ['pc'], ['virus'], ['detected'], ['pc'], ['please'], ['see'], ['attachment']] k: 7023 len: <class 'list'> Data: ['erp', 'ec', 'tracking', 'working', 'resp', 'computer', 'crash', 'erp', 'ec', 'tracking', 'working', 'resp', 'computer', 'crash', 'immediately', 'trying', 'get', 'proof', 'delivery', 'ups', 'shipment', 'del', 'note', 'header', 'ec', 'tracking', 'clicking', 'proof', 'delivery', 'erp', 'stop', 'tried', 'several', 'time', 'always'] processed_text: ['erp', 'ec', 'tracking', 'working', 'resp', 'computer', 'crash', 'erp', 'ec', 'tracking', 'working', 'resp', 'computer', 'crash', 'immediately', 'trying', 'get', 'proof', 'delivery', 'ups', 'shipment', 'del', 'note', 'header', 'ec', 'tracking', 'clicking', 'proof', 'delivery', 'erp', 'stop', 'tried', 'several', 'time', 'always'] list_processed_text: [['erp'], ['ec'], ['tracking'], ['working'], ['resp'], ['computer'], ['crash'], ['erp'], ['ec'], ['tracking'], ['working'], ['resp'], ['computer'], ['crash'], ['immediately'], ['trying'], ['get'], ['proof'], ['delivery'], ['ups'], ['shipment'], ['del'], ['note'], ['header'], ['ec'], ['tracking'], ['clicking'], ['proof'], ['delivery'], ['erp'], ['stop'], ['tried'], ['several'], ['time'], ['always']] k: 7024 len: <class 'list'> Data: ['account', 'unlock', 'request', 'herr', 'schmidt', 'dnc', 'account', 'unlock', 'request', 'herr', 'schmidt', 'dnc'] processed_text: ['account', 'unlock', 'request', 'herr', 'schmidt', 'dnc', 'account', 'unlock', 'request', 'herr', 'schmidt', 'dnc'] list_processed_text: [['account'], ['unlock'], ['request'], ['herr'], ['schmidt'], ['dnc'], ['account'], ['unlock'], ['request'], ['herr'], ['schmidt'], ['dnc']] k: 7025 len: <class 'list'> Data: ['unable', 'access', 'lunch', 'menu', 'hub', 'email', 'renyhtuee', 'meayhtger', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'renyhtuee', 'meayhtger', 'want', 'access', 'lunch', 'menu', 'someone', 'check', 'access', 'lunch', 'menu', 'something', 'change', 'collaboration', 'platform', 'available', 'everyone', 'best'] processed_text: ['unable', 'access', 'lunch', 'menu', 'hub', 'email', 'renyhtuee', 'meayhtger', 'pm', 'nwfodmhc', 'exurcwkm', 'fw', 'renyhtuee', 'meayhtger', 'want', 'access', 'lunch', 'menu', 'someone', 'check', 'access', 'lunch', 'menu', 'something', 'change', 'collaboration', 'platform', 'available', 'everyone', 'best'] list_processed_text: [['unable'], ['access'], ['lunch'], ['menu'], ['hub'], ['email'], ['renyhtuee'], ['meayhtger'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['fw'], ['renyhtuee'], ['meayhtger'], ['want'], ['access'], ['lunch'], ['menu'], ['someone'], ['check'], ['access'], ['lunch'], ['menu'], ['something'], ['change'], ['collaboration'], ['platform'], ['available'], ['everyone'], ['best']] k: 7026 len: <class 'list'> Data: ['able', 'login', 'hub', 'able', 'login', 'hub', 'helped', 'email', 'address', 'asked', 'user', 'time'] processed_text: ['able', 'login', 'hub', 'able', 'login', 'hub', 'helped', 'email', 'address', 'asked', 'user', 'time'] list_processed_text: [['able'], ['login'], ['hub'], ['able'], ['login'], ['hub'], ['helped'], ['email'], ['address'], ['asked'], ['user'], ['time']] k: 7027 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 7028 len: <class 'list'> Data: ['unable', 'access', 'collaboration', 'platform', 'homepage', 'error', 'access', 'denied', 'screenshot', 'attached', 'confirmed', 'gso', 'security', 'admin', 'team', 'member', 'unable', 'access', 'possibly', 'others', 'well', 'informed', 'gvxfymjk', 'euioadyf', 'khadfhty', 'currently', 'investigating', 'able', 'access', 'site', 'including', 'cor', 'relation', 'finance', 'markhtyeting', 'gso', 'subsite', 'well', 'accessed', 'directly', 'url'] processed_text: ['unable', 'access', 'collaboration', 'platform', 'homepage', 'error', 'access', 'denied', 'screenshot', 'attached', 'confirmed', 'gso', 'security', 'admin', 'team', 'member', 'unable', 'access', 'possibly', 'others', 'well', 'informed', 'gvxfymjk', 'euioadyf', 'khadfhty', 'currently', 'investigating', 'able', 'access', 'site', 'including', 'cor', 'relation', 'finance', 'markhtyeting', 'gso', 'subsite', 'well', 'accessed', 'directly', 'url'] list_processed_text: [['unable'], ['access'], ['collaboration'], ['platform'], ['homepage'], ['error'], ['access'], ['denied'], ['screenshot'], ['attached'], ['confirmed'], ['gso'], ['security'], ['admin'], ['team'], ['member'], ['unable'], ['access'], ['possibly'], ['others'], ['well'], ['informed'], ['gvxfymjk'], ['euioadyf'], ['khadfhty'], ['currently'], ['investigating'], ['able'], ['access'], ['site'], ['including'], ['cor'], ['relation'], ['finance'], ['markhtyeting'], ['gso'], ['subsite'], ['well'], ['accessed'], ['directly'], ['url']] k: 7029 len: <class 'list'> Data: ['pgi', 'mm', 'sid', 'error', 'item', 'category', 'defined', 'message', 'vl', 'pgi'] processed_text: ['pgi', 'mm', 'sid', 'error', 'item', 'category', 'defined', 'message', 'vl', 'pgi'] list_processed_text: [['pgi'], ['mm'], ['sid'], ['error'], ['item'], ['category'], ['defined'], ['message'], ['vl'], ['pgi']] k: 7030 len: <class 'list'> Data: ['snipping', 'tool', 'shortcut', 'snipping', 'tool', 'shortcut'] processed_text: ['snipping', 'tool', 'shortcut', 'snipping', 'tool', 'shortcut'] list_processed_text: [['snipping'], ['tool'], ['shortcut'], ['snipping'], ['tool'], ['shortcut']] k: 7031 len: <class 'list'> Data: ['uacyltoe', 'hxgaycze', 'chat', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'aytjedki', 'rucfxpla', 'uacyltoe', 'hxgaycze', 'aytjedki', 'rucfxpla', 'sabrthy', 'website', 'visitor', 'joined', 'conversation', 'efbwiadp', 'dicafxhv', 'hello', 'sabrthy', 'efbwiadp', 'dicafxhv', 'working', 'fine'] processed_text: ['uacyltoe', 'hxgaycze', 'chat', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'aytjedki', 'rucfxpla', 'uacyltoe', 'hxgaycze', 'aytjedki', 'rucfxpla', 'sabrthy', 'website', 'visitor', 'joined', 'conversation', 'efbwiadp', 'dicafxhv', 'hello', 'sabrthy', 'efbwiadp', 'dicafxhv', 'working', 'fine'] list_processed_text: [['uacyltoe'], ['hxgaycze'], ['chat'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['aytjedki'], ['rucfxpla'], ['uacyltoe'], ['hxgaycze'], ['aytjedki'], ['rucfxpla'], ['sabrthy'], ['website'], ['visitor'], ['joined'], ['conversation'], ['efbwiadp'], ['dicafxhv'], ['hello'], ['sabrthy'], ['efbwiadp'], ['dicafxhv'], ['working'], ['fine']] k: 7032 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 7033 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 7034 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 7035 len: <class 'list'> Data: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] processed_text: ['job', 'hostname', 'fail', 'failed', 'job', 'scheduler', 'job', 'hostname', 'fail', 'failed', 'job', 'scheduler'] list_processed_text: [['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler'], ['job'], ['hostname'], ['fail'], ['failed'], ['job'], ['scheduler']] k: 7036 len: <class 'list'> Data: ['hostname', 'erp', 'sid', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'hostname', 'erp', 'sid', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'erp', 'sid', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'hostname', 'erp', 'sid', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['erp'], ['sid'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['warning'], ['threshold'], ['hostname'], ['erp'], ['sid'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7037 len: <class 'list'> Data: ['business', 'client', 'erp', 'gui', 'issue', 'couple', 'user', 'nmzfdlar', 'whzbrusx', 'uwdqtrnx', 'uhntgvyj', 'reported', 'attached', 'error', 'using', 'transaction', 'code', 'zwwirep'] processed_text: ['business', 'client', 'erp', 'gui', 'issue', 'couple', 'user', 'nmzfdlar', 'whzbrusx', 'uwdqtrnx', 'uhntgvyj', 'reported', 'attached', 'error', 'using', 'transaction', 'code', 'zwwirep'] list_processed_text: [['business'], ['client'], ['erp'], ['gui'], ['issue'], ['couple'], ['user'], ['nmzfdlar'], ['whzbrusx'], ['uwdqtrnx'], ['uhntgvyj'], ['reported'], ['attached'], ['error'], ['using'], ['transaction'], ['code'], ['zwwirep']] k: 7038 len: <class 'list'> Data: ['qlhmawgi', 'sgwipoxn', 'unlock', 'request', 'nk', 'prod', 'qlhmawgi', 'sgwipoxn', 'unlock', 'request', 'nk', 'prod'] processed_text: ['qlhmawgi', 'sgwipoxn', 'unlock', 'request', 'nk', 'prod', 'qlhmawgi', 'sgwipoxn', 'unlock', 'request', 'nk', 'prod'] list_processed_text: [['qlhmawgi'], ['sgwipoxn'], ['unlock'], ['request'], ['nk'], ['prod'], ['qlhmawgi'], ['sgwipoxn'], ['unlock'], ['request'], ['nk'], ['prod']] k: 7039 len: <class 'list'> Data: ['possible', 'bash', 'command', 'injection', 'attempt', 'dsw', 'seeing', 'vid', 'possible', 'bash', 'command', 'injection', 'attempt', 'bash', 'http', 'header', 'incoming', 'alert', 'generated', 'isensor', 'company', 'com', 'device', 'indicating', 'one', 'host', 'including', 'attempting', 'discover', 'whether', 'one', 'internet', 'facing', 'device', 'including', 'clhqsm', 'vulnerable', 'bash', 'shell', 'remote', 'code', 'execution', 'vulnerability', 'cve', 'successful', 'exploitation', 'vulnerability', 'result', 'information', 'disclosure', 'remote', 'code', 'execution', 'traffic', 'alert', 'indicates', 'attempt', 'exploit', 'said', 'application', 'escalating', 'matheywter', 'via', 'medium', 'priority', 'ticket', 'blocking', 'source', 'ip', 'address', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'environment', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted'] processed_text: ['possible', 'bash', 'command', 'injection', 'attempt', 'dsw', 'seeing', 'vid', 'possible', 'bash', 'command', 'injection', 'attempt', 'bash', 'http', 'header', 'incoming', 'alert', 'generated', 'isensor', 'company', 'com', 'device', 'indicating', 'one', 'host', 'including', 'attempting', 'discover', 'whether', 'one', 'internet', 'facing', 'device', 'including', 'clhqsm', 'vulnerable', 'bash', 'shell', 'remote', 'code', 'execution', 'vulnerability', 'cve', 'successful', 'exploitation', 'vulnerability', 'result', 'information', 'disclosure', 'remote', 'code', 'execution', 'traffic', 'alert', 'indicates', 'attempt', 'exploit', 'said', 'application', 'escalating', 'matheywter', 'via', 'medium', 'priority', 'ticket', 'blocking', 'source', 'ip', 'address', 'productive', 'due', 'attacker', 'ability', 'switch', 'ip', 'address', 'use', 'proxy', 'anonymizing', 'software', 'tor', 'vpns', 'please', 'investigate', 'environment', 'determine', 'whether', 'running', 'vulnerable', 'version', 'application', 'targeted'] list_processed_text: [['possible'], ['bash'], ['command'], ['injection'], ['attempt'], ['dsw'], ['seeing'], ['vid'], ['possible'], ['bash'], ['command'], ['injection'], ['attempt'], ['bash'], ['http'], ['header'], ['incoming'], ['alert'], ['generated'], ['isensor'], ['company'], ['com'], ['device'], ['indicating'], ['one'], ['host'], ['including'], ['attempting'], ['discover'], ['whether'], ['one'], ['internet'], ['facing'], ['device'], ['including'], ['clhqsm'], ['vulnerable'], ['bash'], ['shell'], ['remote'], ['code'], ['execution'], ['vulnerability'], ['cve'], ['successful'], ['exploitation'], ['vulnerability'], ['result'], ['information'], ['disclosure'], ['remote'], ['code'], ['execution'], ['traffic'], ['alert'], ['indicates'], ['attempt'], ['exploit'], ['said'], ['application'], ['escalating'], ['matheywter'], ['via'], ['medium'], ['priority'], ['ticket'], ['blocking'], ['source'], ['ip'], ['address'], ['productive'], ['due'], ['attacker'], ['ability'], ['switch'], ['ip'], ['address'], ['use'], ['proxy'], ['anonymizing'], ['software'], ['tor'], ['vpns'], ['please'], ['investigate'], ['environment'], ['determine'], ['whether'], ['running'], ['vulnerable'], ['version'], ['application'], ['targeted']] k: 7040 len: <class 'list'> Data: ['internal', 'outbreak', 'udp', 'dsw', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'awyl', 'port', 'udp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u'] processed_text: ['internal', 'outbreak', 'udp', 'dsw', 'incident', 'overview', 'seeing', 'att', 'singapore', 'asa', 'company', 'com', 'device', 'generating', 'least', 'internal', 'outbreak', 'udp', 'alert', 'within', 'minute', 'traffic', 'blocked', 'awyl', 'port', 'udp', 'several', 'internal', 'host', 'indicate', 'unauthorized', 'reconnaissance', 'scanning', 'misconfiguration', 'authorized', 'internal', 'discovery', 'blocked', 'firewall', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u'] list_processed_text: [['internal'], ['outbreak'], ['udp'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['least'], ['internal'], ['outbreak'], ['udp'], ['alert'], ['within'], ['minute'], ['traffic'], ['blocked'], ['awyl'], ['port'], ['udp'], ['several'], ['internal'], ['host'], ['indicate'], ['unauthorized'], ['reconnaissance'], ['scanning'], ['misconfiguration'], ['authorized'], ['internal'], ['discovery'], ['blocked'], ['firewall'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u']] k: 7041 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'ldgl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'incident', 'overview', 'seeing', 'company', 'internal', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'ldgl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['dsw'], ['incident'], ['overview'], ['seeing'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['ldgl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 7042 len: <class 'list'> Data: ['machine', 'stuck', 'welcome', 'screen', 'machine', 'stuck', 'welcome', 'screen'] processed_text: ['machine', 'stuck', 'welcome', 'screen', 'machine', 'stuck', 'welcome', 'screen'] list_processed_text: [['machine'], ['stuck'], ['welcome'], ['screen'], ['machine'], ['stuck'], ['welcome'], ['screen']] k: 7043 len: <class 'list'> Data: ['rma', 'customer', 'return', 'error', 'billing', 'inwarehouse', 'tool', 'customer', 'return', 'processed', 'correctly', 'input', 'billing', 'material', 'copied', 'reference'] processed_text: ['rma', 'customer', 'return', 'error', 'billing', 'inwarehouse', 'tool', 'customer', 'return', 'processed', 'correctly', 'input', 'billing', 'material', 'copied', 'reference'] list_processed_text: [['rma'], ['customer'], ['return'], ['error'], ['billing'], ['inwarehouse'], ['tool'], ['customer'], ['return'], ['processed'], ['correctly'], ['input'], ['billing'], ['material'], ['copied'], ['reference']] k: 7044 len: <class 'list'> Data: ['urgent', 'user', 'vvspecmfrt', 'please', 'reactivate', 'account', 'user', 'vvspecmfrt', 'please', 'reactivate', 'account', 'till', 'active'] processed_text: ['urgent', 'user', 'vvspecmfrt', 'please', 'reactivate', 'account', 'user', 'vvspecmfrt', 'please', 'reactivate', 'account', 'till', 'active'] list_processed_text: [['urgent'], ['user'], ['vvspecmfrt'], ['please'], ['reactivate'], ['account'], ['user'], ['vvspecmfrt'], ['please'], ['reactivate'], ['account'], ['till'], ['active']] k: 7045 len: <class 'list'> Data: ['monitor', 'rqxw', 'monitor', 'rqxw'] processed_text: ['monitor', 'rqxw', 'monitor', 'rqxw'] list_processed_text: [['monitor'], ['rqxw'], ['monitor'], ['rqxw']] k: 7046 len: <class 'list'> Data: ['urgent', 'reset', 'window', 'password', 'good', 'day', 'htnvbwxs', 'gwfrzuex', 'already', 'issued', 'ticket', 'please', 'address', 'aerp', 'please', 'reset', 'window', 'password', 'rhgteini'] processed_text: ['urgent', 'reset', 'window', 'password', 'good', 'day', 'htnvbwxs', 'gwfrzuex', 'already', 'issued', 'ticket', 'please', 'address', 'aerp', 'please', 'reset', 'window', 'password', 'rhgteini'] list_processed_text: [['urgent'], ['reset'], ['window'], ['password'], ['good'], ['day'], ['htnvbwxs'], ['gwfrzuex'], ['already'], ['issued'], ['ticket'], ['please'], ['address'], ['aerp'], ['please'], ['reset'], ['window'], ['password'], ['rhgteini']] k: 7047 len: <class 'list'> Data: ['skype', 'open', 'skype', 'open'] processed_text: ['skype', 'open', 'skype', 'open'] list_processed_text: [['skype'], ['open'], ['skype'], ['open']] k: 7048 len: <class 'list'> Data: ['outlook', 'open', 'outlook', 'open'] processed_text: ['outlook', 'open', 'outlook', 'open'] list_processed_text: [['outlook'], ['open'], ['outlook'], ['open']] k: 7049 len: <class 'list'> Data: ['password', 'cannot', 'changed', 'dear', 'could', 'please', 'help', 'fix', 'best'] processed_text: ['password', 'cannot', 'changed', 'dear', 'could', 'please', 'help', 'fix', 'best'] list_processed_text: [['password'], ['cannot'], ['changed'], ['dear'], ['could'], ['please'], ['help'], ['fix'], ['best']] k: 7050 len: <class 'list'> Data: ['te', 'installation', 'te', 'installation'] processed_text: ['te', 'installation', 'te', 'installation'] list_processed_text: [['te'], ['installation'], ['te'], ['installation']] k: 7051 len: <class 'list'> Data: ['attendance', 'tool', 'password', 'hi', 'forgotten', 'attendance', 'tool', 'password', 'user', 'id', 'best'] processed_text: ['attendance', 'tool', 'password', 'hi', 'forgotten', 'attendance', 'tool', 'password', 'user', 'id', 'best'] list_processed_text: [['attendance'], ['tool'], ['password'], ['hi'], ['forgotten'], ['attendance'], ['tool'], ['password'], ['user'], ['id'], ['best']] k: 7052 len: <class 'list'> Data: ['issue', 'business', 'client', 'hello', 'team', 'facing', 'issue', 'opening', 'business', 'client', 'getting', 'following', 'error', 'msg', 'pl', 'help'] processed_text: ['issue', 'business', 'client', 'hello', 'team', 'facing', 'issue', 'opening', 'business', 'client', 'getting', 'following', 'error', 'msg', 'pl', 'help'] list_processed_text: [['issue'], ['business'], ['client'], ['hello'], ['team'], ['facing'], ['issue'], ['opening'], ['business'], ['client'], ['getting'], ['following'], ['error'], ['msg'], ['pl'], ['help']] k: 7053 len: <class 'list'> Data: ['employee', 'reichberg', 'philipp', 'need', 'authorization', 'folder', 'file', 'ce', 'manager', 'employee', 'reichberg', 'philipp', 'need', 'authorization', 'folder', 'file', 'ce', 'manager'] processed_text: ['employee', 'reichberg', 'philipp', 'need', 'authorization', 'folder', 'file', 'ce', 'manager', 'employee', 'reichberg', 'philipp', 'need', 'authorization', 'folder', 'file', 'ce', 'manager'] list_processed_text: [['employee'], ['reichberg'], ['philipp'], ['need'], ['authorization'], ['folder'], ['file'], ['ce'], ['manager'], ['employee'], ['reichberg'], ['philipp'], ['need'], ['authorization'], ['folder'], ['file'], ['ce'], ['manager']] k: 7054 len: <class 'list'> Data: ['printer', 'working', 'printer', 'working'] processed_text: ['printer', 'working', 'printer', 'working'] list_processed_text: [['printer'], ['working'], ['printer'], ['working']] k: 7055 len: <class 'list'> Data: ['reset', 'password', 'fniqhjtg', 'qrfuetpw', 'window', 'login', 'please', 'reset', 'user', 'window', 'password', 'welcome', 'issue', 'logging'] processed_text: ['reset', 'password', 'fniqhjtg', 'qrfuetpw', 'window', 'login', 'please', 'reset', 'user', 'window', 'password', 'welcome', 'issue', 'logging'] list_processed_text: [['reset'], ['password'], ['fniqhjtg'], ['qrfuetpw'], ['window'], ['login'], ['please'], ['reset'], ['user'], ['window'], ['password'], ['welcome'], ['issue'], ['logging']] k: 7056 len: <class 'list'> Data: ['printer', 'measuring', 'machine', 'hall', 'constant', 'paper', 'jam', 'printer', 'measuring', 'machine', 'hall', 'constant', 'paper', 'jam'] processed_text: ['printer', 'measuring', 'machine', 'hall', 'constant', 'paper', 'jam', 'printer', 'measuring', 'machine', 'hall', 'constant', 'paper', 'jam'] list_processed_text: [['printer'], ['measuring'], ['machine'], ['hall'], ['constant'], ['paper'], ['jam'], ['printer'], ['measuring'], ['machine'], ['hall'], ['constant'], ['paper'], ['jam']] k: 7057 len: <class 'list'> Data: ['access', 'new', 'payroll', 'site', 'hi', 'issue', 'able', 'gain', 'access', 'make', 'approval', 'new', 'payroll', 'site', 'advised', 'issue', 'browser', 'email', 'trail', 'issue', 'get', 'assistance', 'rectify', 'problem', 'want', 'download', 'wrong', 'browser', 'contact', 'resolve', 'issue'] processed_text: ['access', 'new', 'payroll', 'site', 'hi', 'issue', 'able', 'gain', 'access', 'make', 'approval', 'new', 'payroll', 'site', 'advised', 'issue', 'browser', 'email', 'trail', 'issue', 'get', 'assistance', 'rectify', 'problem', 'want', 'download', 'wrong', 'browser', 'contact', 'resolve', 'issue'] list_processed_text: [['access'], ['new'], ['payroll'], ['site'], ['hi'], ['issue'], ['able'], ['gain'], ['access'], ['make'], ['approval'], ['new'], ['payroll'], ['site'], ['advised'], ['issue'], ['browser'], ['email'], ['trail'], ['issue'], ['get'], ['assistance'], ['rectify'], ['problem'], ['want'], ['download'], ['wrong'], ['browser'], ['contact'], ['resolve'], ['issue']] k: 7058 len: <class 'list'> Data: ['able', 'see', 'drawing', 'business', 'client', 'able', 'view', 'download', 'tool', 'drawing', 'business', 'client', 'summary', 'business', 'client', 'refer', 'call', 'mr', 'dwfiykeo', 'argtxmvcumar'] processed_text: ['able', 'see', 'drawing', 'business', 'client', 'able', 'view', 'download', 'tool', 'drawing', 'business', 'client', 'summary', 'business', 'client', 'refer', 'call', 'mr', 'dwfiykeo', 'argtxmvcumar'] list_processed_text: [['able'], ['see'], ['drawing'], ['business'], ['client'], ['able'], ['view'], ['download'], ['tool'], ['drawing'], ['business'], ['client'], ['summary'], ['business'], ['client'], ['refer'], ['call'], ['mr'], ['dwfiykeo'], ['argtxmvcumar']] k: 7059 len: <class 'list'> Data: ['please', 'help', 'please', 'help', 'experiencing', 'nearly', 'min', 'delay', 'incoming', 'mail', 'per', 'screenshot'] processed_text: ['please', 'help', 'please', 'help', 'experiencing', 'nearly', 'min', 'delay', 'incoming', 'mail', 'per', 'screenshot'] list_processed_text: [['please'], ['help'], ['please'], ['help'], ['experiencing'], ['nearly'], ['min'], ['delay'], ['incoming'], ['mail'], ['per'], ['screenshot']] k: 7060 len: <class 'list'> Data: ['win', 'installation', 'image', 'russia', 'office', 'good', 'day', 'need', 'rebuild', 'win', 'laptop', 'new', 'win', 'image', 'could', 'please', 'download', 'actual', 'image', 'ftp', 'credential', 'usually', 'romftguald', 'helping', 'u', 'kind', 'downloading', 'unavailable', 'ftp', 'ftp', 'terralink', 'ru', 'login', 'company', 'password', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] processed_text: ['win', 'installation', 'image', 'russia', 'office', 'good', 'day', 'need', 'rebuild', 'win', 'laptop', 'new', 'win', 'image', 'could', 'please', 'download', 'actual', 'image', 'ftp', 'credential', 'usually', 'romftguald', 'helping', 'u', 'kind', 'downloading', 'unavailable', 'ftp', 'ftp', 'terralink', 'ru', 'login', 'company', 'password', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'] list_processed_text: [['win'], ['installation'], ['image'], ['russia'], ['office'], ['good'], ['day'], ['need'], ['rebuild'], ['win'], ['laptop'], ['new'], ['win'], ['image'], ['could'], ['please'], ['download'], ['actual'], ['image'], ['ftp'], ['credential'], ['usually'], ['romftguald'], ['helping'], ['u'], ['kind'], ['downloading'], ['unavailable'], ['ftp'], ['ftp'], ['terralink'], ['ru'], ['login'], ['company'], ['password'], ['koahsriq'], ['wdugqatr'], ['administrative'], ['assistant']] k: 7061 len: <class 'list'> Data: ['mail', 'access', 'mobile', 'hi', 'provide', 'mail', 'access', 'mobile', 'encl', 'detail'] processed_text: ['mail', 'access', 'mobile', 'hi', 'provide', 'mail', 'access', 'mobile', 'encl', 'detail'] list_processed_text: [['mail'], ['access'], ['mobile'], ['hi'], ['provide'], ['mail'], ['access'], ['mobile'], ['encl'], ['detail']] k: 7062 len: <class 'list'> Data: ['attached', 'initiative', 'director', 'approved', 'status', 'cannot', 'released', 'per', 'subject', 'changed', 'status', 'director', 'approved', 'cannot', 'release', 'error', 'message', 'enter', 'channel', 'manager', 'account', 'detail', 'cm', 'available', 'please', 'solve'] processed_text: ['attached', 'initiative', 'director', 'approved', 'status', 'cannot', 'released', 'per', 'subject', 'changed', 'status', 'director', 'approved', 'cannot', 'release', 'error', 'message', 'enter', 'channel', 'manager', 'account', 'detail', 'cm', 'available', 'please', 'solve'] list_processed_text: [['attached'], ['initiative'], ['director'], ['approved'], ['status'], ['cannot'], ['released'], ['per'], ['subject'], ['changed'], ['status'], ['director'], ['approved'], ['cannot'], ['release'], ['error'], ['message'], ['enter'], ['channel'], ['manager'], ['account'], ['detail'], ['cm'], ['available'], ['please'], ['solve']] k: 7063 len: <class 'list'> Data: ['erp', 'login', 'issue', 'hello', 'iam', 'getting', 'error', 'trying', 'login', 'kindly', 'help', 'best'] processed_text: ['erp', 'login', 'issue', 'hello', 'iam', 'getting', 'error', 'trying', 'login', 'kindly', 'help', 'best'] list_processed_text: [['erp'], ['login'], ['issue'], ['hello'], ['iam'], ['getting'], ['error'], ['trying'], ['login'], ['kindly'], ['help'], ['best']] k: 7064 len: <class 'list'> Data: ['purchasing', 'zitec', 'catalogue', 'work', 'sid', 'whenn', 'accessing', 'catalog', 'company', 'logon', 'data', 'missing', 'userid', 'password', 'given', 'sid', 'work', 'sid', 'please', 'check'] processed_text: ['purchasing', 'zitec', 'catalogue', 'work', 'sid', 'whenn', 'accessing', 'catalog', 'company', 'logon', 'data', 'missing', 'userid', 'password', 'given', 'sid', 'work', 'sid', 'please', 'check'] list_processed_text: [['purchasing'], ['zitec'], ['catalogue'], ['work'], ['sid'], ['whenn'], ['accessing'], ['catalog'], ['company'], ['logon'], ['data'], ['missing'], ['userid'], ['password'], ['given'], ['sid'], ['work'], ['sid'], ['please'], ['check']] k: 7065 len: <class 'list'> Data: ['installation', 'engineering', 'tool', 'engineering', 'tool', 'google', 'chrome', 'winrar', 'dear', 'concern', 'please', 'install', 'related', 'apps', 'laptop', 'got', 'new', 'laptop', 'best'] processed_text: ['installation', 'engineering', 'tool', 'engineering', 'tool', 'google', 'chrome', 'winrar', 'dear', 'concern', 'please', 'install', 'related', 'apps', 'laptop', 'got', 'new', 'laptop', 'best'] list_processed_text: [['installation'], ['engineering'], ['tool'], ['engineering'], ['tool'], ['google'], ['chrome'], ['winrar'], ['dear'], ['concern'], ['please'], ['install'], ['related'], ['apps'], ['laptop'], ['got'], ['new'], ['laptop'], ['best']] k: 7066 len: <class 'list'> Data: ['sipppr', 'routing', 'demand', 'planner', 'working', 'sippprs', 'get', 'routed', 'admin', 'morning', 'routing', 'sippprs', 'demand', 'planner', 'seems', 'broken'] processed_text: ['sipppr', 'routing', 'demand', 'planner', 'working', 'sippprs', 'get', 'routed', 'admin', 'morning', 'routing', 'sippprs', 'demand', 'planner', 'seems', 'broken'] list_processed_text: [['sipppr'], ['routing'], ['demand'], ['planner'], ['working'], ['sippprs'], ['get'], ['routed'], ['admin'], ['morning'], ['routing'], ['sippprs'], ['demand'], ['planner'], ['seems'], ['broken']] k: 7067 len: <class 'list'> Data: ['power', 'supply', 'docking', 'station', 'work', 'power', 'supply', 'docking', 'station', 'without', 'function', 'ext'] processed_text: ['power', 'supply', 'docking', 'station', 'work', 'power', 'supply', 'docking', 'station', 'without', 'function', 'ext'] list_processed_text: [['power'], ['supply'], ['docking'], ['station'], ['work'], ['power'], ['supply'], ['docking'], ['station'], ['without'], ['function'], ['ext']] k: 7068 len: <class 'list'> Data: ['browser', 'problem', 'hub', 'hello', 'hub', 'open', 'computer', 'screen', 'expand', 'time', 'work', 'computer', 'work', 'browser', 'problem', 'best', 'regard', 'mnakehrf', 'mvunqihf', 'analyst', 'payroll', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] processed_text: ['browser', 'problem', 'hub', 'hello', 'hub', 'open', 'computer', 'screen', 'expand', 'time', 'work', 'computer', 'work', 'browser', 'problem', 'best', 'regard', 'mnakehrf', 'mvunqihf', 'analyst', 'payroll', 'managing', 'director', 'phvkowml', 'azbtkqwx', 'naruedlk', 'mpvhakdq'] list_processed_text: [['browser'], ['problem'], ['hub'], ['hello'], ['hub'], ['open'], ['computer'], ['screen'], ['expand'], ['time'], ['work'], ['computer'], ['work'], ['browser'], ['problem'], ['best'], ['regard'], ['mnakehrf'], ['mvunqihf'], ['analyst'], ['payroll'], ['managing'], ['director'], ['phvkowml'], ['azbtkqwx'], ['naruedlk'], ['mpvhakdq']] k: 7069 len: <class 'list'> Data: ['able', 'sign', 'collaboration', 'platform', 'work', 'sorry', 'found', 'company', 'collaboration', 'platform', 'com', 'directory', 'please', 'try', 'later', 'try', 'automatically', 'fix', 'idea', 'click', 'sign', 'different', 'account', 'site', 'javascript', 'loginasanother', 'uf', 'layout', 'ufcloseconnection', 'aspx', 'loginasanotheruser', 'true', 'usource', 'uf', 'sign', 'office', 'service', 'signed', 'time', 'using', 'account', 'another', 'site', 'want', 'sign', 'start', 'browser', 'private', 'browsing', 'mode', 'site', 'show', 'help', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'ecad', 'ceffcf', 'date', 'time', 'url', 'user', 'issue', 'type', 'user', 'directory', 'company', 'athjyul', 'dixhtyuit', 'senior', 'manager', 'sale', 'north', 'msg', 'companytm'] processed_text: ['able', 'sign', 'collaboration', 'platform', 'work', 'sorry', 'found', 'company', 'collaboration', 'platform', 'com', 'directory', 'please', 'try', 'later', 'try', 'automatically', 'fix', 'idea', 'click', 'sign', 'different', 'account', 'site', 'javascript', 'loginasanother', 'uf', 'layout', 'ufcloseconnection', 'aspx', 'loginasanotheruser', 'true', 'usource', 'uf', 'sign', 'office', 'service', 'signed', 'time', 'using', 'account', 'another', 'site', 'want', 'sign', 'start', 'browser', 'private', 'browsing', 'mode', 'site', 'show', 'help', 'contact', 'support', 'team', 'include', 'technical', 'detail', 'correlation', 'id', 'ecad', 'ceffcf', 'date', 'time', 'url', 'user', 'issue', 'type', 'user', 'directory', 'company', 'athjyul', 'dixhtyuit', 'senior', 'manager', 'sale', 'north', 'msg', 'companytm'] list_processed_text: [['able'], ['sign'], ['collaboration'], ['platform'], ['work'], ['sorry'], ['found'], ['company'], ['collaboration'], ['platform'], ['com'], ['directory'], ['please'], ['try'], ['later'], ['try'], ['automatically'], ['fix'], ['idea'], ['click'], ['sign'], ['different'], ['account'], ['site'], ['javascript'], ['loginasanother'], ['uf'], ['layout'], ['ufcloseconnection'], ['aspx'], ['loginasanotheruser'], ['true'], ['usource'], ['uf'], ['sign'], ['office'], ['service'], ['signed'], ['time'], ['using'], ['account'], ['another'], ['site'], ['want'], ['sign'], ['start'], ['browser'], ['private'], ['browsing'], ['mode'], ['site'], ['show'], ['help'], ['contact'], ['support'], ['team'], ['include'], ['technical'], ['detail'], ['correlation'], ['id'], ['ecad'], ['ceffcf'], ['date'], ['time'], ['url'], ['user'], ['issue'], ['type'], ['user'], ['directory'], ['company'], ['athjyul'], ['dixhtyuit'], ['senior'], ['manager'], ['sale'], ['north'], ['msg'], ['companytm']] k: 7070 len: <class 'list'> Data: ['telephony', 'software', 'software', 'upgrade', 'funktioniert', 'nicht', 'telephony', 'software', 'software', 'upgrade', 'funktioniert', 'nicht', 'pc', 'empl', 'vor', 'dem', 'start', 'de', 'upgrade', 'wurden', 'alle', 'programdntyme', 'geschlossen', 'nach', 'dem', 'start', 'de', 'upgrade', 'erschien', 'folgende', 'fehlermeldung', 'wusa', 'exe', 'anwendungsfehler', 'siehe', 'datei', 'nach', 'der', 'best', 'tigung', 'mit', 'ok', 'wurde', 'anwendung', 'geschlossen', 'und', 'der', 'upgrade', 'nicht', 'durchgef', 'hrt', 'translation', 'telephony', 'software', 'software', 'upgrade', 'work', 'pc', 'empl', 'starting', 'upgrade', 'programdntys', 'closed', 'starting', 'upgrade', 'following', 'error', 'message', 'appeared', 'wusa', 'exe', 'application', 'error', 'see', 'file', 'confirming', 'ok', 'application', 'closed', 'upgrade', 'performed'] processed_text: ['telephony', 'software', 'software', 'upgrade', 'funktioniert', 'nicht', 'telephony', 'software', 'software', 'upgrade', 'funktioniert', 'nicht', 'pc', 'empl', 'vor', 'dem', 'start', 'de', 'upgrade', 'wurden', 'alle', 'programdntyme', 'geschlossen', 'nach', 'dem', 'start', 'de', 'upgrade', 'erschien', 'folgende', 'fehlermeldung', 'wusa', 'exe', 'anwendungsfehler', 'siehe', 'datei', 'nach', 'der', 'best', 'tigung', 'mit', 'ok', 'wurde', 'anwendung', 'geschlossen', 'und', 'der', 'upgrade', 'nicht', 'durchgef', 'hrt', 'translation', 'telephony', 'software', 'software', 'upgrade', 'work', 'pc', 'empl', 'starting', 'upgrade', 'programdntys', 'closed', 'starting', 'upgrade', 'following', 'error', 'message', 'appeared', 'wusa', 'exe', 'application', 'error', 'see', 'file', 'confirming', 'ok', 'application', 'closed', 'upgrade', 'performed'] list_processed_text: [['telephony'], ['software'], ['software'], ['upgrade'], ['funktioniert'], ['nicht'], ['telephony'], ['software'], ['software'], ['upgrade'], ['funktioniert'], ['nicht'], ['pc'], ['empl'], ['vor'], ['dem'], ['start'], ['de'], ['upgrade'], ['wurden'], ['alle'], ['programdntyme'], ['geschlossen'], ['nach'], ['dem'], ['start'], ['de'], ['upgrade'], ['erschien'], ['folgende'], ['fehlermeldung'], ['wusa'], ['exe'], ['anwendungsfehler'], ['siehe'], ['datei'], ['nach'], ['der'], ['best'], ['tigung'], ['mit'], ['ok'], ['wurde'], ['anwendung'], ['geschlossen'], ['und'], ['der'], ['upgrade'], ['nicht'], ['durchgef'], ['hrt'], ['translation'], ['telephony'], ['software'], ['software'], ['upgrade'], ['work'], ['pc'], ['empl'], ['starting'], ['upgrade'], ['programdntys'], ['closed'], ['starting'], ['upgrade'], ['following'], ['error'], ['message'], ['appeared'], ['wusa'], ['exe'], ['application'], ['error'], ['see'], ['file'], ['confirming'], ['ok'], ['application'], ['closed'], ['upgrade'], ['performed']] k: 7071 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7072 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7073 len: <class 'list'> Data: ['te', 'issue', 'dear', 'sir', 'mam', 'facing', 'issue', 'te', 'software', 'kindly', 'help', 'resolve', 'issue'] processed_text: ['te', 'issue', 'dear', 'sir', 'mam', 'facing', 'issue', 'te', 'software', 'kindly', 'help', 'resolve', 'issue'] list_processed_text: [['te'], ['issue'], ['dear'], ['sir'], ['mam'], ['facing'], ['issue'], ['te'], ['software'], ['kindly'], ['help'], ['resolve'], ['issue']] k: 7074 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7075 len: <class 'list'> Data: ['engineering', 'tool', 'opening', 'hi', 'please', 'help', 'resolve', 'issue', 'opening', 'engineering', 'tool', 'available', 'office', 'next', 'hour'] processed_text: ['engineering', 'tool', 'opening', 'hi', 'please', 'help', 'resolve', 'issue', 'opening', 'engineering', 'tool', 'available', 'office', 'next', 'hour'] list_processed_text: [['engineering'], ['tool'], ['opening'], ['hi'], ['please'], ['help'], ['resolve'], ['issue'], ['opening'], ['engineering'], ['tool'], ['available'], ['office'], ['next'], ['hour']] k: 7076 len: <class 'list'> Data: ['wireless', 'access', 'point', 'check', 'geb', 'geb', 'conference', 'room', 'geb', 'xmlbfjpg', 'yegzbvru', 'wireless', 'access', 'point', 'check', 'geb', 'geb', 'conference', 'room', 'geb', 'xmlbfjpg', 'yegzbvru'] processed_text: ['wireless', 'access', 'point', 'check', 'geb', 'geb', 'conference', 'room', 'geb', 'xmlbfjpg', 'yegzbvru', 'wireless', 'access', 'point', 'check', 'geb', 'geb', 'conference', 'room', 'geb', 'xmlbfjpg', 'yegzbvru'] list_processed_text: [['wireless'], ['access'], ['point'], ['check'], ['geb'], ['geb'], ['conference'], ['room'], ['geb'], ['xmlbfjpg'], ['yegzbvru'], ['wireless'], ['access'], ['point'], ['check'], ['geb'], ['geb'], ['conference'], ['room'], ['geb'], ['xmlbfjpg'], ['yegzbvru']] k: 7077 len: <class 'list'> Data: ['business', 'client', 'error', 'hello', 'getting', 'error', 'open', 'business', 'client'] processed_text: ['business', 'client', 'error', 'hello', 'getting', 'error', 'open', 'business', 'client'] list_processed_text: [['business'], ['client'], ['error'], ['hello'], ['getting'], ['error'], ['open'], ['business'], ['client']] k: 7078 len: <class 'list'> Data: ['probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr'] processed_text: ['probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr'] list_processed_text: [['probleme'], ['mit'], ['lan'], ['ewew'], ['xwirzvda'], ['okhyipgr'], ['probleme'], ['mit'], ['lan'], ['ewew'], ['xwirzvda'], ['okhyipgr']] k: 7079 len: <class 'list'> Data: ['probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr'] processed_text: ['probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr', 'probleme', 'mit', 'lan', 'ewew', 'xwirzvda', 'okhyipgr'] list_processed_text: [['probleme'], ['mit'], ['lan'], ['ewew'], ['xwirzvda'], ['okhyipgr'], ['probleme'], ['mit'], ['lan'], ['ewew'], ['xwirzvda'], ['okhyipgr']] k: 7080 len: <class 'list'> Data: ['wireless', 'access', 'point', 'funktioniert', 'nicht', 'jxphgfmb', 'gjbtuwek', 'wireless', 'access', 'point', 'funktioniert', 'nicht', 'jxphgfmb', 'gjbtuwek'] processed_text: ['wireless', 'access', 'point', 'funktioniert', 'nicht', 'jxphgfmb', 'gjbtuwek', 'wireless', 'access', 'point', 'funktioniert', 'nicht', 'jxphgfmb', 'gjbtuwek'] list_processed_text: [['wireless'], ['access'], ['point'], ['funktioniert'], ['nicht'], ['jxphgfmb'], ['gjbtuwek'], ['wireless'], ['access'], ['point'], ['funktioniert'], ['nicht'], ['jxphgfmb'], ['gjbtuwek']] k: 7081 len: <class 'list'> Data: ['vnc', 'access', 'empwx', 'sk', 'presserei', 'germany', 'longer', 'work', 'error', 'message', 'failed', 'connect', 'server', 'lt', 'colleague', 'sk', 'press', 'shop', 'pc', 'number', 'correct', 'pc', 'replaced', 'renewed', 'thank'] processed_text: ['vnc', 'access', 'empwx', 'sk', 'presserei', 'germany', 'longer', 'work', 'error', 'message', 'failed', 'connect', 'server', 'lt', 'colleague', 'sk', 'press', 'shop', 'pc', 'number', 'correct', 'pc', 'replaced', 'renewed', 'thank'] list_processed_text: [['vnc'], ['access'], ['empwx'], ['sk'], ['presserei'], ['germany'], ['longer'], ['work'], ['error'], ['message'], ['failed'], ['connect'], ['server'], ['lt'], ['colleague'], ['sk'], ['press'], ['shop'], ['pc'], ['number'], ['correct'], ['pc'], ['replaced'], ['renewed'], ['thank']] k: 7082 len: <class 'list'> Data: ['good', 'movement', 'mb', 'hello', 'please', 'let', 'know', 'conduct', 'good', 'movement', 'mb', 'mm', 'accepted', 'iwazgesl', 'ydgqtpbo', 'project', 'engineer', 'supply', 'chain', 'logistics', 'company', 'k', 'mail'] processed_text: ['good', 'movement', 'mb', 'hello', 'please', 'let', 'know', 'conduct', 'good', 'movement', 'mb', 'mm', 'accepted', 'iwazgesl', 'ydgqtpbo', 'project', 'engineer', 'supply', 'chain', 'logistics', 'company', 'k', 'mail'] list_processed_text: [['good'], ['movement'], ['mb'], ['hello'], ['please'], ['let'], ['know'], ['conduct'], ['good'], ['movement'], ['mb'], ['mm'], ['accepted'], ['iwazgesl'], ['ydgqtpbo'], ['project'], ['engineer'], ['supply'], ['chain'], ['logistics'], ['company'], ['k'], ['mail']] k: 7083 len: <class 'list'> Data: ['cancel', 'migo', 'entry', 'po', 'dear', 'due', 'good', 'delivery', 'issue', 'plant', 'please', 'help', 'reverse', 'migo', 'entry', 'material', 'doc', 'accounting', 'doc', 'also', 'need', 'help', 'reverse', 'good', 'issue', 'doc', 'n', 'cancelled', 'best'] processed_text: ['cancel', 'migo', 'entry', 'po', 'dear', 'due', 'good', 'delivery', 'issue', 'plant', 'please', 'help', 'reverse', 'migo', 'entry', 'material', 'doc', 'accounting', 'doc', 'also', 'need', 'help', 'reverse', 'good', 'issue', 'doc', 'n', 'cancelled', 'best'] list_processed_text: [['cancel'], ['migo'], ['entry'], ['po'], ['dear'], ['due'], ['good'], ['delivery'], ['issue'], ['plant'], ['please'], ['help'], ['reverse'], ['migo'], ['entry'], ['material'], ['doc'], ['accounting'], ['doc'], ['also'], ['need'], ['help'], ['reverse'], ['good'], ['issue'], ['doc'], ['n'], ['cancelled'], ['best']] k: 7084 len: <class 'list'> Data: ['fe', 'work', 'erp', 'print', 'oa', 'erp', 'choose', 'fe', 'fe', 'work', 'work', 'print', 'excel', 'word', 'pdf', 'file', 'erp', 'id', 'wrtyuh', 'matheywter', 'also', 'happened', 'erp', 'id', 'fufrtal'] processed_text: ['fe', 'work', 'erp', 'print', 'oa', 'erp', 'choose', 'fe', 'fe', 'work', 'work', 'print', 'excel', 'word', 'pdf', 'file', 'erp', 'id', 'wrtyuh', 'matheywter', 'also', 'happened', 'erp', 'id', 'fufrtal'] list_processed_text: [['fe'], ['work'], ['erp'], ['print'], ['oa'], ['erp'], ['choose'], ['fe'], ['fe'], ['work'], ['work'], ['print'], ['excel'], ['word'], ['pdf'], ['file'], ['erp'], ['id'], ['wrtyuh'], ['matheywter'], ['also'], ['happened'], ['erp'], ['id'], ['fufrtal']] k: 7085 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7086 len: <class 'list'> Data: ['configuration', 'knowledge', 'center', 'please', 'add', 'connect', 'mail', 'id', 'outlook', 'need', 'access', 'send', 'receive', 'email', 'work', 'mine', 'gslpdhey', 'ksiyurvlir', 'outlook', 'action', 'request', 'urgent', 'thanking'] processed_text: ['configuration', 'knowledge', 'center', 'please', 'add', 'connect', 'mail', 'id', 'outlook', 'need', 'access', 'send', 'receive', 'email', 'work', 'mine', 'gslpdhey', 'ksiyurvlir', 'outlook', 'action', 'request', 'urgent', 'thanking'] list_processed_text: [['configuration'], ['knowledge'], ['center'], ['please'], ['add'], ['connect'], ['mail'], ['id'], ['outlook'], ['need'], ['access'], ['send'], ['receive'], ['email'], ['work'], ['mine'], ['gslpdhey'], ['ksiyurvlir'], ['outlook'], ['action'], ['request'], ['urgent'], ['thanking']] k: 7087 len: <class 'list'> Data: ['interface', 'usa', 'switch', 'bottom', 'msfc', 'switch', 'since', 'pm', 'est', 'interface', 'bottom', 'msfc', 'switch', 'since', 'pm', 'est', 'switch', 'description', 'gigabitethernet', 'infoblox', 'trinzic', 'dns', 'node', 'ha', 'vip'] processed_text: ['interface', 'usa', 'switch', 'bottom', 'msfc', 'switch', 'since', 'pm', 'est', 'interface', 'bottom', 'msfc', 'switch', 'since', 'pm', 'est', 'switch', 'description', 'gigabitethernet', 'infoblox', 'trinzic', 'dns', 'node', 'ha', 'vip'] list_processed_text: [['interface'], ['usa'], ['switch'], ['bottom'], ['msfc'], ['switch'], ['since'], ['pm'], ['est'], ['interface'], ['bottom'], ['msfc'], ['switch'], ['since'], ['pm'], ['est'], ['switch'], ['description'], ['gigabitethernet'], ['infoblox'], ['trinzic'], ['dns'], ['node'], ['ha'], ['vip']] k: 7088 len: <class 'list'> Data: ['reset', 'password', 'ezrsdgfc', 'hofgvwel', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'ezrsdgfc', 'hofgvwel', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['ezrsdgfc'], ['hofgvwel'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 7089 len: <class 'list'> Data: ['reset', 'password', 'ezrsdgfc', 'hofgvwel', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'ezrsdgfc', 'hofgvwel', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['ezrsdgfc'], ['hofgvwel'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 7090 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7091 len: <class 'list'> Data: ['printer', 'setup', 'help', 'install', 'network', 'printer', 'laptop'] processed_text: ['printer', 'setup', 'help', 'install', 'network', 'printer', 'laptop'] list_processed_text: [['printer'], ['setup'], ['help'], ['install'], ['network'], ['printer'], ['laptop']] k: 7092 len: <class 'list'> Data: ['telephony', 'software', 'prtpu', 'telephony', 'software', 'prtpu'] processed_text: ['telephony', 'software', 'prtpu', 'telephony', 'software', 'prtpu'] list_processed_text: [['telephony'], ['software'], ['prtpu'], ['telephony'], ['software'], ['prtpu']] k: 7093 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 7094 len: <class 'list'> Data: ['inquiry', 'adding', 'digital', 'signature', 'pdf', 'inquiry', 'adding', 'digital', 'signature', 'pdf'] processed_text: ['inquiry', 'adding', 'digital', 'signature', 'pdf', 'inquiry', 'adding', 'digital', 'signature', 'pdf'] list_processed_text: [['inquiry'], ['adding'], ['digital'], ['signature'], ['pdf'], ['inquiry'], ['adding'], ['digital'], ['signature'], ['pdf']] k: 7095 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] processed_text: ['unable', 'sign', 'skype', 'unable', 'sign', 'skype'] list_processed_text: [['unable'], ['sign'], ['skype'], ['unable'], ['sign'], ['skype']] k: 7096 len: <class 'list'> Data: ['unable', 'launch', 'business', 'client', 'getting', 'microsoft', 'net', 'error', 'unable', 'launch', 'business', 'client', 'getting', 'microsoft', 'net', 'error'] processed_text: ['unable', 'launch', 'business', 'client', 'getting', 'microsoft', 'net', 'error', 'unable', 'launch', 'business', 'client', 'getting', 'microsoft', 'net', 'error'] list_processed_text: [['unable'], ['launch'], ['business'], ['client'], ['getting'], ['microsoft'], ['net'], ['error'], ['unable'], ['launch'], ['business'], ['client'], ['getting'], ['microsoft'], ['net'], ['error']] k: 7097 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7098 len: <class 'list'> Data: ['hostname', 'total', 'cpu', 'error', 'threshold', 'hostname', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] processed_text: ['hostname', 'total', 'cpu', 'error', 'threshold', 'hostname', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] list_processed_text: [['hostname'], ['total'], ['cpu'], ['error'], ['threshold'], ['hostname'], ['average'], ['sample'], ['total'], ['cpu'], ['error'], ['threshold']] k: 7099 len: <class 'list'> Data: ['lhqsm', 'hrsync', 'sync', 'failed', 'sync', 'detected', 'last', 'hour', 'please', 'investigate', 'lhqsm', 'hrsync', 'sync', 'failed', 'sync', 'detected', 'last', 'hour', 'please', 'investigate'] processed_text: ['lhqsm', 'hrsync', 'sync', 'failed', 'sync', 'detected', 'last', 'hour', 'please', 'investigate', 'lhqsm', 'hrsync', 'sync', 'failed', 'sync', 'detected', 'last', 'hour', 'please', 'investigate'] list_processed_text: [['lhqsm'], ['hrsync'], ['sync'], ['failed'], ['sync'], ['detected'], ['last'], ['hour'], ['please'], ['investigate'], ['lhqsm'], ['hrsync'], ['sync'], ['failed'], ['sync'], ['detected'], ['last'], ['hour'], ['please'], ['investigate']] k: 7100 len: <class 'list'> Data: ['email', 'contact', 'issue', 'email', 'contact', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'm', 'crm', 'reconfigured', 'mscrm', 'restarted', 'pc', 'reconfigured', 'outlook', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] processed_text: ['email', 'contact', 'issue', 'email', 'contact', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'deleted', 'm', 'crm', 'reconfigured', 'mscrm', 'restarted', 'pc', 'reconfigured', 'outlook', 'caller', 'confirmed', 'able', 'see', 'email', 'outlook', 'issue', 'resolved'] list_processed_text: [['email'], ['contact'], ['issue'], ['email'], ['contact'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['deleted'], ['m'], ['crm'], ['reconfigured'], ['mscrm'], ['restarted'], ['pc'], ['reconfigured'], ['outlook'], ['caller'], ['confirmed'], ['able'], ['see'], ['email'], ['outlook'], ['issue'], ['resolved']] k: 7101 len: <class 'list'> Data: ['dell', 'monitor', 'display', 'issue', 'dell', 'monitor', 'display', 'issue'] processed_text: ['dell', 'monitor', 'display', 'issue', 'dell', 'monitor', 'display', 'issue'] list_processed_text: [['dell'], ['monitor'], ['display'], ['issue'], ['dell'], ['monitor'], ['display'], ['issue']] k: 7102 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7103 len: <class 'list'> Data: ['es', 'problem', 'expense', 'report', 'trying', 'expense', 'report', 'thru', 'es', 'working', 'blank', 'screen', 'pop', 'click', 'oon', 'expense', 'report', 'link'] processed_text: ['es', 'problem', 'expense', 'report', 'trying', 'expense', 'report', 'thru', 'es', 'working', 'blank', 'screen', 'pop', 'click', 'oon', 'expense', 'report', 'link'] list_processed_text: [['es'], ['problem'], ['expense'], ['report'], ['trying'], ['expense'], ['report'], ['thru'], ['es'], ['working'], ['blank'], ['screen'], ['pop'], ['click'], ['oon'], ['expense'], ['report'], ['link']] k: 7104 len: <class 'list'> Data: ['cannot', 'receive', 'call', 'telephony', 'software', 'call', 'come', 'ring', 'one', 'time', 'go', 'warehouse', 'toolmail', 'closed', 'telephony', 'software', 'name', 'tfgtodd', 'panelfgt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'cannot', 'receive', 'call', 'telephony', 'software', 'call', 'come', 'ring', 'one', 'time', 'go', 'warehouse', 'toolmail', 'closed', 'telephony', 'software', 'rebooted', 'phone', 'still'] processed_text: ['cannot', 'receive', 'call', 'telephony', 'software', 'call', 'come', 'ring', 'one', 'time', 'go', 'warehouse', 'toolmail', 'closed', 'telephony', 'software', 'name', 'tfgtodd', 'panelfgt', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'cannot', 'receive', 'call', 'telephony', 'software', 'call', 'come', 'ring', 'one', 'time', 'go', 'warehouse', 'toolmail', 'closed', 'telephony', 'software', 'rebooted', 'phone', 'still'] list_processed_text: [['cannot'], ['receive'], ['call'], ['telephony'], ['software'], ['call'], ['come'], ['ring'], ['one'], ['time'], ['go'], ['warehouse'], ['toolmail'], ['closed'], ['telephony'], ['software'], ['name'], ['tfgtodd'], ['panelfgt'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['cannot'], ['receive'], ['call'], ['telephony'], ['software'], ['call'], ['come'], ['ring'], ['one'], ['time'], ['go'], ['warehouse'], ['toolmail'], ['closed'], ['telephony'], ['software'], ['rebooted'], ['phone'], ['still']] k: 7105 len: <class 'list'> Data: ['please', 'reset', 'security', 'collaboration', 'platform', 'lagp', 'area', 'please', 'reset', 'security', 'collaboration', 'platform', 'lagp', 'area'] processed_text: ['please', 'reset', 'security', 'collaboration', 'platform', 'lagp', 'area', 'please', 'reset', 'security', 'collaboration', 'platform', 'lagp', 'area'] list_processed_text: [['please'], ['reset'], ['security'], ['collaboration'], ['platform'], ['lagp'], ['area'], ['please'], ['reset'], ['security'], ['collaboration'], ['platform'], ['lagp'], ['area']] k: 7106 len: <class 'list'> Data: ['cannot', 'see', 'receipt', 'travel', 'reimbursement', 'link', 'see', 'receipt', 'reimbursement', 'form', 'submitted', 'team', 'member', 'broken', 'ms'] processed_text: ['cannot', 'see', 'receipt', 'travel', 'reimbursement', 'link', 'see', 'receipt', 'reimbursement', 'form', 'submitted', 'team', 'member', 'broken', 'ms'] list_processed_text: [['cannot'], ['see'], ['receipt'], ['travel'], ['reimbursement'], ['link'], ['see'], ['receipt'], ['reimbursement'], ['form'], ['submitted'], ['team'], ['member'], ['broken'], ['ms']] k: 7107 len: <class 'list'> Data: ['need', 'access', 'netweaver', 'drawing', 'also', 'need', 'erp', 'access', 'n', 'type', 'drawing', 'denied', 'access', 'erp', 'unable', 'access', 'drawing', 'erp', 'need', 'access', 'net', 'weaver'] processed_text: ['need', 'access', 'netweaver', 'drawing', 'also', 'need', 'erp', 'access', 'n', 'type', 'drawing', 'denied', 'access', 'erp', 'unable', 'access', 'drawing', 'erp', 'need', 'access', 'net', 'weaver'] list_processed_text: [['need'], ['access'], ['netweaver'], ['drawing'], ['also'], ['need'], ['erp'], ['access'], ['n'], ['type'], ['drawing'], ['denied'], ['access'], ['erp'], ['unable'], ['access'], ['drawing'], ['erp'], ['need'], ['access'], ['net'], ['weaver']] k: 7108 len: <class 'list'> Data: ['security', 'incident', 'correlation', 'rule', 'triggered', 'icmp', 'ping', 'failure', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'source', 'ip', 'source', 'hostname', 'ap', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'ap', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'ileatdatacenter', 'true', 'srchostname', 'ap', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'irreceivedtime', 'foreseeconndirection', 'internal', 'inspectoreventid', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] processed_text: ['security', 'incident', 'correlation', 'rule', 'triggered', 'icmp', 'ping', 'failure', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'source', 'ip', 'source', 'hostname', 'ap', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'ap', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'ileatdatacenter', 'true', 'srchostname', 'ap', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'irreceivedtime', 'foreseeconndirection', 'internal', 'inspectoreventid', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] list_processed_text: [['security'], ['incident'], ['correlation'], ['rule'], ['triggered'], ['icmp'], ['ping'], ['failure'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['source'], ['ip'], ['source'], ['hostname'], ['ap'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['ap'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['ileatdatacenter'], ['true'], ['srchostname'], ['ap'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['irreceivedtime'], ['foreseeconndirection'], ['internal'], ['inspectoreventid'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['device'], ['summary'], ['service'], ['icmp'], ['icmp'], ['detail'], ['service'], ['check'], ['failed'], ['failure'], ['icmp'], ['echo'], ['unable'], ['ping']] k: 7109 len: <class 'list'> Data: ['need', 'get', 'expense', 'report', 'direct', 'deposited', 'well', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'kylfgte', 'kylfgte', 'hello', 'today', 'rakthyesh', 'ramdntythanjesh', 'great', 'kylfgte', 'good'] processed_text: ['need', 'get', 'expense', 'report', 'direct', 'deposited', 'well', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hi', 'kylfgte', 'kylfgte', 'hello', 'today', 'rakthyesh', 'ramdntythanjesh', 'great', 'kylfgte', 'good'] list_processed_text: [['need'], ['get'], ['expense'], ['report'], ['direct'], ['deposited'], ['well'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hi'], ['kylfgte'], ['kylfgte'], ['hello'], ['today'], ['rakthyesh'], ['ramdntythanjesh'], ['great'], ['kylfgte'], ['good']] k: 7110 len: <class 'list'> Data: ['erp', 'sid', 'password', 'locked', 'erp', 'sid', 'password', 'locked'] processed_text: ['erp', 'sid', 'password', 'locked', 'erp', 'sid', 'password', 'locked'] list_processed_text: [['erp'], ['sid'], ['password'], ['locked'], ['erp'], ['sid'], ['password'], ['locked']] k: 7111 len: <class 'list'> Data: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'destination', 'ip', 'system', 'name', 'edml', 'user', 'name', 'ptczqbdw', 'ybaoluck', 'dalgtylam', 'location', 'milano', 'd', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'edml', 'destination', 'ip', 'destination', 'hostname', 'host', 'static', 'business', 'telecomitalia', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'cv', 'sherlockruleid', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'eventtypepriority', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'outgoing', 'srcassetofinterest', 'foreseeexternalip', 'ontologyid', 'srchostname', 'edml', 'eventtypeid', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseedstipgeo', 'rome', 'ita', 'agentid', 'srcmacaddress', 'f', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'edml', 'via', 'eth', 'relay', 'lease', 'duration'] processed_text: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'destination', 'ip', 'system', 'name', 'edml', 'user', 'name', 'ptczqbdw', 'ybaoluck', 'dalgtylam', 'location', 'milano', 'd', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'edml', 'destination', 'ip', 'destination', 'hostname', 'host', 'static', 'business', 'telecomitalia', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'cv', 'sherlockruleid', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'eventtypepriority', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'outgoing', 'srcassetofinterest', 'foreseeexternalip', 'ontologyid', 'srchostname', 'edml', 'eventtypeid', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseedstipgeo', 'rome', 'ita', 'agentid', 'srcmacaddress', 'f', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'correlation', 'data', 'dhcpd', 'dhcpack', 'f', 'edml', 'via', 'eth', 'relay', 'lease', 'duration'] list_processed_text: [['security'], ['incident'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['source'], ['ip'], ['destination'], ['ip'], ['system'], ['name'], ['edml'], ['user'], ['name'], ['ptczqbdw'], ['ybaoluck'], ['dalgtylam'], ['location'], ['milano'], ['d'], ['sm'], ['status'], ['update'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['edml'], ['destination'], ['ip'], ['destination'], ['hostname'], ['host'], ['static'], ['business'], ['telecomitalia'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['cv'], ['sherlockruleid'], ['ctainstanceid'], ['irreceivedtime'], ['inspectoreventid'], ['eventtypepriority'], ['foreseeinternalip'], ['logtimestamp'], ['foreseeconndirection'], ['outgoing'], ['srcassetofinterest'], ['foreseeexternalip'], ['ontologyid'], ['srchostname'], ['edml'], ['eventtypeid'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseedstipgeo'], ['rome'], ['ita'], ['agentid'], ['srcmacaddress'], ['f'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['f'], ['edml'], ['via'], ['eth'], ['relay'], ['lease'], ['duration']] k: 7112 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 7113 len: <class 'list'> Data: ['server', 'getting', 'full', 'found', 'erase', 'last', 'long', 'help', 'name', 'schtrtgoyht', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'ext', 'summary', 'server', 'getting', 'full', 'found', 'erase', 'last', 'long', 'help', 'server', 'ldsm'] processed_text: ['server', 'getting', 'full', 'found', 'erase', 'last', 'long', 'help', 'name', 'schtrtgoyht', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'ext', 'summary', 'server', 'getting', 'full', 'found', 'erase', 'last', 'long', 'help', 'server', 'ldsm'] list_processed_text: [['server'], ['getting'], ['full'], ['found'], ['erase'], ['last'], ['long'], ['help'], ['name'], ['schtrtgoyht'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['ext'], ['summary'], ['server'], ['getting'], ['full'], ['found'], ['erase'], ['last'], ['long'], ['help'], ['server'], ['ldsm']] k: 7114 len: <class 'list'> Data: ['open', 'outlook', 'open', 'outlook', 'issue', 'earlier', 'week'] processed_text: ['open', 'outlook', 'open', 'outlook', 'issue', 'earlier', 'week'] list_processed_text: [['open'], ['outlook'], ['open'], ['outlook'], ['issue'], ['earlier'], ['week']] k: 7115 len: <class 'list'> Data: ['hostname', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7116 len: <class 'list'> Data: ['assistance', 'need', 'access', 'usaed', 'collaboration', 'platform', 'lagp', 'link', 'currently', 'cannot', 'access', 'lagp', 'form', 'hyperlink', 'collaboration', 'platform', 'suomfxpj', 'izcwuvgo', 'stated', 'need', 'contact', 'usaed', 'access', 'click', 'receive'] processed_text: ['assistance', 'need', 'access', 'usaed', 'collaboration', 'platform', 'lagp', 'link', 'currently', 'cannot', 'access', 'lagp', 'form', 'hyperlink', 'collaboration', 'platform', 'suomfxpj', 'izcwuvgo', 'stated', 'need', 'contact', 'usaed', 'access', 'click', 'receive'] list_processed_text: [['assistance'], ['need'], ['access'], ['usaed'], ['collaboration'], ['platform'], ['lagp'], ['link'], ['currently'], ['cannot'], ['access'], ['lagp'], ['form'], ['hyperlink'], ['collaboration'], ['platform'], ['suomfxpj'], ['izcwuvgo'], ['stated'], ['need'], ['contact'], ['usaed'], ['access'], ['click'], ['receive']] k: 7117 len: <class 'list'> Data: ['blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'hi', 'team', 'new', 'functionality', 'feature', 'monitoring', 'tool', 'provides', 'u', 'started', 'monitorixepyfbga', 'wtqdyoinware', 'sensor', 'started', 'receiving', 'alert', 'hostname', 'blade', 'chassis', 'iom', 'sensor', 'turn', 'chassis', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] processed_text: ['blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'hi', 'team', 'new', 'functionality', 'feature', 'monitoring', 'tool', 'provides', 'u', 'started', 'monitorixepyfbga', 'wtqdyoinware', 'sensor', 'started', 'receiving', 'alert', 'hostname', 'blade', 'chassis', 'iom', 'sensor', 'turn', 'chassis', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] list_processed_text: [['blade'], ['chassis'], ['hostname'], ['ip'], ['reporting'], ['non'], ['critical'], ['hardware'], ['issue'], ['hi'], ['team'], ['new'], ['functionality'], ['feature'], ['monitoring'], ['tool'], ['provides'], ['u'], ['started'], ['monitorixepyfbga'], ['wtqdyoinware'], ['sensor'], ['started'], ['receiving'], ['alert'], ['hostname'], ['blade'], ['chassis'], ['iom'], ['sensor'], ['turn'], ['chassis'], ['reporting'], ['non'], ['critical'], ['alert'], ['could'], ['please'], ['investigate'], ['advise']] k: 7118 len: <class 'list'> Data: ['blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'hi', 'team', 'new', 'functionality', 'feature', 'monitoring', 'tool', 'provides', 'u', 'started', 'monitorixepyfbga', 'wtqdyoinware', 'sensor', 'started', 'receiving', 'alert', 'hostname', 'blade', 'chassis', 'iom', 'sensor', 'turn', 'chassis', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] processed_text: ['blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'blade', 'chassis', 'hostname', 'ip', 'reporting', 'non', 'critical', 'hardware', 'issue', 'hi', 'team', 'new', 'functionality', 'feature', 'monitoring', 'tool', 'provides', 'u', 'started', 'monitorixepyfbga', 'wtqdyoinware', 'sensor', 'started', 'receiving', 'alert', 'hostname', 'blade', 'chassis', 'iom', 'sensor', 'turn', 'chassis', 'reporting', 'non', 'critical', 'alert', 'could', 'please', 'investigate', 'advise'] list_processed_text: [['blade'], ['chassis'], ['hostname'], ['ip'], ['reporting'], ['non'], ['critical'], ['hardware'], ['issue'], ['blade'], ['chassis'], ['hostname'], ['ip'], ['reporting'], ['non'], ['critical'], ['hardware'], ['issue'], ['hi'], ['team'], ['new'], ['functionality'], ['feature'], ['monitoring'], ['tool'], ['provides'], ['u'], ['started'], ['monitorixepyfbga'], ['wtqdyoinware'], ['sensor'], ['started'], ['receiving'], ['alert'], ['hostname'], ['blade'], ['chassis'], ['iom'], ['sensor'], ['turn'], ['chassis'], ['reporting'], ['non'], ['critical'], ['alert'], ['could'], ['please'], ['investigate'], ['advise']] k: 7119 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'archive', 'idocs', 'daily', 'sid', 'abended', 'job', 'job', 'scheduler', 'archive', 'idocs', 'daily', 'sid'] processed_text: ['abended', 'job', 'job', 'scheduler', 'archive', 'idocs', 'daily', 'sid', 'abended', 'job', 'job', 'scheduler', 'archive', 'idocs', 'daily', 'sid'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['archive'], ['idocs'], ['daily'], ['sid'], ['abended'], ['job'], ['job'], ['scheduler'], ['archive'], ['idocs'], ['daily'], ['sid']] k: 7120 len: <class 'list'> Data: ['symantec', 'endpoint', 'encryption', 'see', 'agent', 'roll', 'europe', 'region', 'sale', 'pc', 'dear', 'folk', 'would', 'like', 'thank', 'site', 'administrator', 'whoever', 'took', 'part', 'see', 'agent', 'pilot', 'uacyltoe', 'hxgayczeing', 'helped', 'u', 'giving', 'honest', 'feedback', 'installation', 'behavior', 'time', 'time', 'overall', 'helped', 'u', 'complete', 'full', 'fledge', 'uacyltoe', 'hxgayczeing', 'promote', 'package', 'production', 'rollout', 'planned', 'deploy', 'see', 'agent', 'enclosed', 'list', 'sale', 'pc', 'across', 'europe', 'starting', 'would', 'presume', 'site', 'admins', 'sale', 'location', 'acceptance', 'starting', 'deployment', 'mentioned', 'date', 'since', 'particular', 'time', 'framdntye', 'announced', 'month', 'back', 'scot', 'trask', 'global', 'communication', 'regard', 'see', 'agent', 'rollout', 'would', 'request', 'keep', 'respective', 'location', 'user', 'informed', 'deployment', 'schedule', 'also', 'please', 'ensure', 'user', 'familiar', 'package', 'installation', 'step', 'type', 'package', 'installation', 'duration', 'importance', 'package', 'mode', 'installation', 'time', 'reboot', 'installation', 'behavior', 'referring', 'detail', 'deployment', 'date', 'time', 'morning', 'per', 'respective', 'location', 'time', 'zone', 'deployment', 'tool', 'patching', 'antivirus', 'sw', 'package', 'type', 'prompted', 'user', 'prompted', 'prior', 'notification', 'save', 'work', 'proceeding', 'installation', 'clicking', 'continue', 'button', 'duration', 'minute', 'restart', 'required', 'yes', 'automatic', 'restart', 'installation', 'see', 'agent', 'package', 'behavior', 'please', 'ask', 'sale', 'user', 'go', 'provided', 'bill', 'bankrd', 'understand', 'importance', 'package', 'deployment', 'uacyltoe', 'hxgayczeed', 'validated', 'finalized', 'see', 'agent', 'deployment', 'production', 'environment', 'pc', 'deployment', 'target', 'list', 'associated', 'sale', 'pc', 'got', 'replaced', 'removed', 'network', 'please', 'let', 'u', 'know', 'via', 'providing', 'comment', 'separate', 'column', 'enclosed', 'target', 'list', 'crm', 'sale', 'pc', 'see', 'europe', 'targetlist', 'bit', 'xlsx', 'crm', 'sale', 'pc', 'see', 'europe', 'targetlist', 'bit', 'xlsx', 'exclude', 'pc', 'completely', 'deployment', 'vip', 'critical', 'machine', 'pc', 'done', 'manually', 'respective', 'site', 'contact', 'manual', 'installation', 'site', 'admin', 'user', 'must', 'local', 'admin', 'privilege', 'respective', 'pc', 'complete', 'see', 'agent', 'installation', 'without', 'issue', 'please', 'access', 'following', 'server', 'share', 'manual', 'installation', 'user', 'must', 'either', 'office', 'lan', 'vpn', 'network', 'access', 'server', 'share', 'provided', 'hostname', 'see', 'agent', 'deploy', 'file', 'hostname', 'see', 'agent', 'deploy', 'install', 'window', 'bit', 'system', 'please', 'execute', 'exe', 'file', 'bit', 'folder', 'server', 'share', 'install', 'window', 'bit', 'system', 'please', 'execute', 'exe', 'file', 'bit', 'folder', 'server', 'share'] processed_text: ['symantec', 'endpoint', 'encryption', 'see', 'agent', 'roll', 'europe', 'region', 'sale', 'pc', 'dear', 'folk', 'would', 'like', 'thank', 'site', 'administrator', 'whoever', 'took', 'part', 'see', 'agent', 'pilot', 'uacyltoe', 'hxgayczeing', 'helped', 'u', 'giving', 'honest', 'feedback', 'installation', 'behavior', 'time', 'time', 'overall', 'helped', 'u', 'complete', 'full', 'fledge', 'uacyltoe', 'hxgayczeing', 'promote', 'package', 'production', 'rollout', 'planned', 'deploy', 'see', 'agent', 'enclosed', 'list', 'sale', 'pc', 'across', 'europe', 'starting', 'would', 'presume', 'site', 'admins', 'sale', 'location', 'acceptance', 'starting', 'deployment', 'mentioned', 'date', 'since', 'particular', 'time', 'framdntye', 'announced', 'month', 'back', 'scot', 'trask', 'global', 'communication', 'regard', 'see', 'agent', 'rollout', 'would', 'request', 'keep', 'respective', 'location', 'user', 'informed', 'deployment', 'schedule', 'also', 'please', 'ensure', 'user', 'familiar', 'package', 'installation', 'step', 'type', 'package', 'installation', 'duration', 'importance', 'package', 'mode', 'installation', 'time', 'reboot', 'installation', 'behavior', 'referring', 'detail', 'deployment', 'date', 'time', 'morning', 'per', 'respective', 'location', 'time', 'zone', 'deployment', 'tool', 'patching', 'antivirus', 'sw', 'package', 'type', 'prompted', 'user', 'prompted', 'prior', 'notification', 'save', 'work', 'proceeding', 'installation', 'clicking', 'continue', 'button', 'duration', 'minute', 'restart', 'required', 'yes', 'automatic', 'restart', 'installation', 'see', 'agent', 'package', 'behavior', 'please', 'ask', 'sale', 'user', 'go', 'provided', 'bill', 'bankrd', 'understand', 'importance', 'package', 'deployment', 'uacyltoe', 'hxgayczeed', 'validated', 'finalized', 'see', 'agent', 'deployment', 'production', 'environment', 'pc', 'deployment', 'target', 'list', 'associated', 'sale', 'pc', 'got', 'replaced', 'removed', 'network', 'please', 'let', 'u', 'know', 'via', 'providing', 'comment', 'separate', 'column', 'enclosed', 'target', 'list', 'crm', 'sale', 'pc', 'see', 'europe', 'targetlist', 'bit', 'xlsx', 'crm', 'sale', 'pc', 'see', 'europe', 'targetlist', 'bit', 'xlsx', 'exclude', 'pc', 'completely', 'deployment', 'vip', 'critical', 'machine', 'pc', 'done', 'manually', 'respective', 'site', 'contact', 'manual', 'installation', 'site', 'admin', 'user', 'must', 'local', 'admin', 'privilege', 'respective', 'pc', 'complete', 'see', 'agent', 'installation', 'without', 'issue', 'please', 'access', 'following', 'server', 'share', 'manual', 'installation', 'user', 'must', 'either', 'office', 'lan', 'vpn', 'network', 'access', 'server', 'share', 'provided', 'hostname', 'see', 'agent', 'deploy', 'file', 'hostname', 'see', 'agent', 'deploy', 'install', 'window', 'bit', 'system', 'please', 'execute', 'exe', 'file', 'bit', 'folder', 'server', 'share', 'install', 'window', 'bit', 'system', 'please', 'execute', 'exe', 'file', 'bit', 'folder', 'server', 'share'] list_processed_text: [['symantec'], ['endpoint'], ['encryption'], ['see'], ['agent'], ['roll'], ['europe'], ['region'], ['sale'], ['pc'], ['dear'], ['folk'], ['would'], ['like'], ['thank'], ['site'], ['administrator'], ['whoever'], ['took'], ['part'], ['see'], ['agent'], ['pilot'], ['uacyltoe'], ['hxgayczeing'], ['helped'], ['u'], ['giving'], ['honest'], ['feedback'], ['installation'], ['behavior'], ['time'], ['time'], ['overall'], ['helped'], ['u'], ['complete'], ['full'], ['fledge'], ['uacyltoe'], ['hxgayczeing'], ['promote'], ['package'], ['production'], ['rollout'], ['planned'], ['deploy'], ['see'], ['agent'], ['enclosed'], ['list'], ['sale'], ['pc'], ['across'], ['europe'], ['starting'], ['would'], ['presume'], ['site'], ['admins'], ['sale'], ['location'], ['acceptance'], ['starting'], ['deployment'], ['mentioned'], ['date'], ['since'], ['particular'], ['time'], ['framdntye'], ['announced'], ['month'], ['back'], ['scot'], ['trask'], ['global'], ['communication'], ['regard'], ['see'], ['agent'], ['rollout'], ['would'], ['request'], ['keep'], ['respective'], ['location'], ['user'], ['informed'], ['deployment'], ['schedule'], ['also'], ['please'], ['ensure'], ['user'], ['familiar'], ['package'], ['installation'], ['step'], ['type'], ['package'], ['installation'], ['duration'], ['importance'], ['package'], ['mode'], ['installation'], ['time'], ['reboot'], ['installation'], ['behavior'], ['referring'], ['detail'], ['deployment'], ['date'], ['time'], ['morning'], ['per'], ['respective'], ['location'], ['time'], ['zone'], ['deployment'], ['tool'], ['patching'], ['antivirus'], ['sw'], ['package'], ['type'], ['prompted'], ['user'], ['prompted'], ['prior'], ['notification'], ['save'], ['work'], ['proceeding'], ['installation'], ['clicking'], ['continue'], ['button'], ['duration'], ['minute'], ['restart'], ['required'], ['yes'], ['automatic'], ['restart'], ['installation'], ['see'], ['agent'], ['package'], ['behavior'], ['please'], ['ask'], ['sale'], ['user'], ['go'], ['provided'], ['bill'], ['bankrd'], ['understand'], ['importance'], ['package'], ['deployment'], ['uacyltoe'], ['hxgayczeed'], ['validated'], ['finalized'], ['see'], ['agent'], ['deployment'], ['production'], ['environment'], ['pc'], ['deployment'], ['target'], ['list'], ['associated'], ['sale'], ['pc'], ['got'], ['replaced'], ['removed'], ['network'], ['please'], ['let'], ['u'], ['know'], ['via'], ['providing'], ['comment'], ['separate'], ['column'], ['enclosed'], ['target'], ['list'], ['crm'], ['sale'], ['pc'], ['see'], ['europe'], ['targetlist'], ['bit'], ['xlsx'], ['crm'], ['sale'], ['pc'], ['see'], ['europe'], ['targetlist'], ['bit'], ['xlsx'], ['exclude'], ['pc'], ['completely'], ['deployment'], ['vip'], ['critical'], ['machine'], ['pc'], ['done'], ['manually'], ['respective'], ['site'], ['contact'], ['manual'], ['installation'], ['site'], ['admin'], ['user'], ['must'], ['local'], ['admin'], ['privilege'], ['respective'], ['pc'], ['complete'], ['see'], ['agent'], ['installation'], ['without'], ['issue'], ['please'], ['access'], ['following'], ['server'], ['share'], ['manual'], ['installation'], ['user'], ['must'], ['either'], ['office'], ['lan'], ['vpn'], ['network'], ['access'], ['server'], ['share'], ['provided'], ['hostname'], ['see'], ['agent'], ['deploy'], ['file'], ['hostname'], ['see'], ['agent'], ['deploy'], ['install'], ['window'], ['bit'], ['system'], ['please'], ['execute'], ['exe'], ['file'], ['bit'], ['folder'], ['server'], ['share'], ['install'], ['window'], ['bit'], ['system'], ['please'], ['execute'], ['exe'], ['file'], ['bit'], ['folder'], ['server'], ['share']] k: 7121 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7122 len: <class 'list'> Data: ['unable', 'restore', 'pc', 'hibernation', 'reimage', 'bit', 'pc', 'fails', 'restore', 'hibernation', 'imaging', 'bit', 'o', 'running', 'battery', 'backup', 'hour', 'pc', 'automatically', 'go', 'hibernation', 'causing', 'massive', 'data', 'loss', 'please', 'treat', 'priority', 'pc', 'detail', 'pc', 'name', 'aidl', 'window', 'o', 'window', 'sp', 'bit', 'ramdnty', 'gb', 'contact'] processed_text: ['unable', 'restore', 'pc', 'hibernation', 'reimage', 'bit', 'pc', 'fails', 'restore', 'hibernation', 'imaging', 'bit', 'o', 'running', 'battery', 'backup', 'hour', 'pc', 'automatically', 'go', 'hibernation', 'causing', 'massive', 'data', 'loss', 'please', 'treat', 'priority', 'pc', 'detail', 'pc', 'name', 'aidl', 'window', 'o', 'window', 'sp', 'bit', 'ramdnty', 'gb', 'contact'] list_processed_text: [['unable'], ['restore'], ['pc'], ['hibernation'], ['reimage'], ['bit'], ['pc'], ['fails'], ['restore'], ['hibernation'], ['imaging'], ['bit'], ['o'], ['running'], ['battery'], ['backup'], ['hour'], ['pc'], ['automatically'], ['go'], ['hibernation'], ['causing'], ['massive'], ['data'], ['loss'], ['please'], ['treat'], ['priority'], ['pc'], ['detail'], ['pc'], ['name'], ['aidl'], ['window'], ['o'], ['window'], ['sp'], ['bit'], ['ramdnty'], ['gb'], ['contact']] k: 7123 len: <class 'list'> Data: ['unable', 'execute', 'job', 'scheduler', 'job', 'post', 'client', 'upgrade', 'hostname', 'hostname', 'hostname', 'hostname', 'unable', 'execute', 'job', 'scheduler', 'job', 'post', 'client', 'upgrade', 'hostname', 'hostname', 'hostname', 'hostname'] processed_text: ['unable', 'execute', 'job', 'scheduler', 'job', 'post', 'client', 'upgrade', 'hostname', 'hostname', 'hostname', 'hostname', 'unable', 'execute', 'job', 'scheduler', 'job', 'post', 'client', 'upgrade', 'hostname', 'hostname', 'hostname', 'hostname'] list_processed_text: [['unable'], ['execute'], ['job'], ['scheduler'], ['job'], ['post'], ['client'], ['upgrade'], ['hostname'], ['hostname'], ['hostname'], ['hostname'], ['unable'], ['execute'], ['job'], ['scheduler'], ['job'], ['post'], ['client'], ['upgrade'], ['hostname'], ['hostname'], ['hostname'], ['hostname']] k: 7124 len: <class 'list'> Data: ['access', 'ethic', 'training', 'module', 'error', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] processed_text: ['access', 'ethic', 'training', 'module', 'error', 'message', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] list_processed_text: [['access'], ['ethic'], ['training'], ['module'], ['error'], ['message'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp']] k: 7125 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7126 len: <class 'list'> Data: ['reset', 'password', 'andrdgrtew', 'taneghrty', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'andrdgrtew', 'taneghrty', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['andrdgrtew'], ['taneghrty'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 7127 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7128 len: <class 'list'> Data: ['erp', 'consignment', 'zkea', 'issue', 'creating', 'duplicate', 'kb', 'order', 'order', 'zkea', 'created', 'erp', 'generated', 'fill', 'order', 'zkb', 'order', 'order', 'see', 'screenshot', 'email', 'attached', 'erp', 'created', 'fill', 'kb', 'order', 'customer', 'receive', 'duplicate', 'fill', 'returning', 'product'] processed_text: ['erp', 'consignment', 'zkea', 'issue', 'creating', 'duplicate', 'kb', 'order', 'order', 'zkea', 'created', 'erp', 'generated', 'fill', 'order', 'zkb', 'order', 'order', 'see', 'screenshot', 'email', 'attached', 'erp', 'created', 'fill', 'kb', 'order', 'customer', 'receive', 'duplicate', 'fill', 'returning', 'product'] list_processed_text: [['erp'], ['consignment'], ['zkea'], ['issue'], ['creating'], ['duplicate'], ['kb'], ['order'], ['order'], ['zkea'], ['created'], ['erp'], ['generated'], ['fill'], ['order'], ['zkb'], ['order'], ['order'], ['see'], ['screenshot'], ['email'], ['attached'], ['erp'], ['created'], ['fill'], ['kb'], ['order'], ['customer'], ['receive'], ['duplicate'], ['fill'], ['returning'], ['product']] k: 7129 len: <class 'list'> Data: ['drive', 'missing', 'machine', 'drive', 'missing'] processed_text: ['drive', 'missing', 'machine', 'drive', 'missing'] list_processed_text: [['drive'], ['missing'], ['machine'], ['drive'], ['missing']] k: 7130 len: <class 'list'> Data: ['unable', 'log', 'es', 'unable', 'log', 'es'] processed_text: ['unable', 'log', 'es', 'unable', 'log', 'es'] list_processed_text: [['unable'], ['log'], ['es'], ['unable'], ['log'], ['es']] k: 7131 len: <class 'list'> Data: ['laptop', 'damaged', 'fell', 'flight', 'prarthyr', 'jha', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'gtz', 'jhapg', 'issue', 'hi', 'please', 'refer', 'attached', 'photo', 'laptop', 'damaged', 'due', 'fall', 'flight', 'present', 'system', 'working', 'condition', 'issue', 'repeated', 'use', 'hinge', 'seating', 'might', 'become', 'problematic', 'please', 'help', 'latitude', 'computer', 'name', 'aiml', 'user', 'jhapg', 'system', 'id', 'gtz', 'employee', 'code'] processed_text: ['laptop', 'damaged', 'fell', 'flight', 'prarthyr', 'jha', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'gtz', 'jhapg', 'issue', 'hi', 'please', 'refer', 'attached', 'photo', 'laptop', 'damaged', 'due', 'fall', 'flight', 'present', 'system', 'working', 'condition', 'issue', 'repeated', 'use', 'hinge', 'seating', 'might', 'become', 'problematic', 'please', 'help', 'latitude', 'computer', 'name', 'aiml', 'user', 'jhapg', 'system', 'id', 'gtz', 'employee', 'code'] list_processed_text: [['laptop'], ['damaged'], ['fell'], ['flight'], ['prarthyr'], ['jha'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['gtz'], ['jhapg'], ['issue'], ['hi'], ['please'], ['refer'], ['attached'], ['photo'], ['laptop'], ['damaged'], ['due'], ['fall'], ['flight'], ['present'], ['system'], ['working'], ['condition'], ['issue'], ['repeated'], ['use'], ['hinge'], ['seating'], ['might'], ['become'], ['problematic'], ['please'], ['help'], ['latitude'], ['computer'], ['name'], ['aiml'], ['user'], ['jhapg'], ['system'], ['id'], ['gtz'], ['employee'], ['code']] k: 7132 len: <class 'list'> Data: ['lhqsl', 'hostname', 'need', 'added', 'log', 'account', 'bdclient', 'lhqsl', 'hostname', 'need', 'added', 'log', 'account', 'bdclient', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'active', 'directory', 'setting', 'allows', 'user', 'id', 'access', 'company', 'access', 'point', 'companysecure'] processed_text: ['lhqsl', 'hostname', 'need', 'added', 'log', 'account', 'bdclient', 'lhqsl', 'hostname', 'need', 'added', 'log', 'account', 'bdclient', 'name', 'mikhghytr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'active', 'directory', 'setting', 'allows', 'user', 'id', 'access', 'company', 'access', 'point', 'companysecure'] list_processed_text: [['lhqsl'], ['hostname'], ['need'], ['added'], ['log'], ['account'], ['bdclient'], ['lhqsl'], ['hostname'], ['need'], ['added'], ['log'], ['account'], ['bdclient'], ['name'], ['mikhghytr'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['active'], ['directory'], ['setting'], ['allows'], ['user'], ['id'], ['access'], ['company'], ['access'], ['point'], ['companysecure']] k: 7133 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7134 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7135 len: <class 'list'> Data: ['problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'contact', 'yevirgnl', 'ylhogjct', 'info', 'mac', 'address', 'ebdf'] processed_text: ['problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'contact', 'yevirgnl', 'ylhogjct', 'info', 'mac', 'address', 'ebdf'] list_processed_text: [['problem'], ['wlan'], ['germany'], ['germany'], ['attached'], ['device'], ['problem'], ['wlan'], ['germany'], ['germany'], ['attached'], ['device'], ['contact'], ['yevirgnl'], ['ylhogjct'], ['info'], ['mac'], ['address'], ['ebdf']] k: 7136 len: <class 'list'> Data: ['usa', 'robot', 'server', 'cabinet', 'pc', 'lhnw', 'since', 'usa', 'robot', 'server', 'cabinet', 'pc', 'lhnw', 'since'] processed_text: ['usa', 'robot', 'server', 'cabinet', 'pc', 'lhnw', 'since', 'usa', 'robot', 'server', 'cabinet', 'pc', 'lhnw', 'since'] list_processed_text: [['usa'], ['robot'], ['server'], ['cabinet'], ['pc'], ['lhnw'], ['since'], ['usa'], ['robot'], ['server'], ['cabinet'], ['pc'], ['lhnw'], ['since']] k: 7137 len: <class 'list'> Data: ['erp', 'sid', 'access', 'right', 'approved', 'ragini', 'davidthd', 'wgtyills', 'vice', 'president'] processed_text: ['erp', 'sid', 'access', 'right', 'approved', 'ragini', 'davidthd', 'wgtyills', 'vice', 'president'] list_processed_text: [['erp'], ['sid'], ['access'], ['right'], ['approved'], ['ragini'], ['davidthd'], ['wgtyills'], ['vice'], ['president']] k: 7138 len: <class 'list'> Data: ['password', 'reset', 'erp', 'manually', 'reset', 'erp', 'password', 'password', 'previous', 'reset', 'password', 'management', 'tool', 'work'] processed_text: ['password', 'reset', 'erp', 'manually', 'reset', 'erp', 'password', 'password', 'previous', 'reset', 'password', 'management', 'tool', 'work'] list_processed_text: [['password'], ['reset'], ['erp'], ['manually'], ['reset'], ['erp'], ['password'], ['password'], ['previous'], ['reset'], ['password'], ['management'], ['tool'], ['work']] k: 7139 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'new', 'phone', 'exchange', 'server', 'blocked', 'release', 'mail', 'come'] processed_text: ['mobile', 'device', 'activation', 'new', 'phone', 'exchange', 'server', 'blocked', 'release', 'mail', 'come'] list_processed_text: [['mobile'], ['device'], ['activation'], ['new'], ['phone'], ['exchange'], ['server'], ['blocked'], ['release'], ['mail'], ['come']] k: 7140 len: <class 'list'> Data: ['problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'contact', 'yevirgnl', 'ylhogjct', 'info'] processed_text: ['problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'problem', 'wlan', 'germany', 'germany', 'attached', 'device', 'contact', 'yevirgnl', 'ylhogjct', 'info'] list_processed_text: [['problem'], ['wlan'], ['germany'], ['germany'], ['attached'], ['device'], ['problem'], ['wlan'], ['germany'], ['germany'], ['attached'], ['device'], ['contact'], ['yevirgnl'], ['ylhogjct'], ['info']] k: 7141 len: <class 'list'> Data: ['outlook', 'freezing', 'opeyctrhbkm', 'plvnuxmrils', 'outlook', 'freezing', 'opeyctrhbkm', 'plvnuxmrils'] processed_text: ['outlook', 'freezing', 'opeyctrhbkm', 'plvnuxmrils', 'outlook', 'freezing', 'opeyctrhbkm', 'plvnuxmrils'] list_processed_text: [['outlook'], ['freezing'], ['opeyctrhbkm'], ['plvnuxmrils'], ['outlook'], ['freezing'], ['opeyctrhbkm'], ['plvnuxmrils']] k: 7142 len: <class 'list'> Data: ['erp', 'error', 'mesg', 'order', 'exist', 'trying', 'run', 'apo', 'create', 'delivery', 'erp', 'error', 'mesg', 'order', 'exist', 'trying', 'run', 'apo', 'create', 'delivery', 'order', 'order', 'getting', 'error', 'mesg', 'value', 'modific', 'counter', 'doc', 'supply', 'chain', 'see', 'attachment'] processed_text: ['erp', 'error', 'mesg', 'order', 'exist', 'trying', 'run', 'apo', 'create', 'delivery', 'erp', 'error', 'mesg', 'order', 'exist', 'trying', 'run', 'apo', 'create', 'delivery', 'order', 'order', 'getting', 'error', 'mesg', 'value', 'modific', 'counter', 'doc', 'supply', 'chain', 'see', 'attachment'] list_processed_text: [['erp'], ['error'], ['mesg'], ['order'], ['exist'], ['trying'], ['run'], ['apo'], ['create'], ['delivery'], ['erp'], ['error'], ['mesg'], ['order'], ['exist'], ['trying'], ['run'], ['apo'], ['create'], ['delivery'], ['order'], ['order'], ['getting'], ['error'], ['mesg'], ['value'], ['modific'], ['counter'], ['doc'], ['supply'], ['chain'], ['see'], ['attachment']] k: 7143 len: <class 'list'> Data: ['email', 'access', 'mobile', 'device', 'email', 'access', 'mobile', 'device'] processed_text: ['email', 'access', 'mobile', 'device', 'email', 'access', 'mobile', 'device'] list_processed_text: [['email'], ['access'], ['mobile'], ['device'], ['email'], ['access'], ['mobile'], ['device']] k: 7144 len: <class 'list'> Data: ['hostname', 'backup', 'server', 'offline', 'missing', 'virtual', 'drive', 'physical', 'backup', 'server', 'hostname', 'found', 'physical', 'disk', 'failed', 'attached', 'screenshot', 'hostname', 'backup', 'server', 'offline', 'missing', 'virtual', 'drive', 'drac', 'ip'] processed_text: ['hostname', 'backup', 'server', 'offline', 'missing', 'virtual', 'drive', 'physical', 'backup', 'server', 'hostname', 'found', 'physical', 'disk', 'failed', 'attached', 'screenshot', 'hostname', 'backup', 'server', 'offline', 'missing', 'virtual', 'drive', 'drac', 'ip'] list_processed_text: [['hostname'], ['backup'], ['server'], ['offline'], ['missing'], ['virtual'], ['drive'], ['physical'], ['backup'], ['server'], ['hostname'], ['found'], ['physical'], ['disk'], ['failed'], ['attached'], ['screenshot'], ['hostname'], ['backup'], ['server'], ['offline'], ['missing'], ['virtual'], ['drive'], ['drac'], ['ip']] k: 7145 len: <class 'list'> Data: ['occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized'] processed_text: ['occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'dsw', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized'] list_processed_text: [['occurrence'], ['firewall'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['dsw'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized']] k: 7146 len: <class 'list'> Data: ['chat', 'transfer', 'chat', 'transfer'] processed_text: ['chat', 'transfer', 'chat', 'transfer'] list_processed_text: [['chat'], ['transfer'], ['chat'], ['transfer']] k: 7147 len: <class 'list'> Data: ['update', 'erp', 'favorite', 'update', 'erp', 'favorite'] processed_text: ['update', 'erp', 'favorite', 'update', 'erp', 'favorite'] list_processed_text: [['update'], ['erp'], ['favorite'], ['update'], ['erp'], ['favorite']] k: 7148 len: <class 'list'> Data: ['company', 'screensaver', 'computer', 'company', 'screensaver', 'computer'] processed_text: ['company', 'screensaver', 'computer', 'company', 'screensaver', 'computer'] list_processed_text: [['company'], ['screensaver'], ['computer'], ['company'], ['screensaver'], ['computer']] k: 7149 len: <class 'list'> Data: ['unable', 'load', 'webpage', 'unable', 'load', 'webpage'] processed_text: ['unable', 'load', 'webpage', 'unable', 'load', 'webpage'] list_processed_text: [['unable'], ['load'], ['webpage'], ['unable'], ['load'], ['webpage']] k: 7150 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7151 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7152 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7153 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7154 len: <class 'list'> Data: ['unable', 'change', 'quotation', 'unable', 'change', 'quotation'] processed_text: ['unable', 'change', 'quotation', 'unable', 'change', 'quotation'] list_processed_text: [['unable'], ['change'], ['quotation'], ['unable'], ['change'], ['quotation']] k: 7155 len: <class 'list'> Data: ['ki', 'bug', 'fix', 'correction', 'ki', 'bug', 'fix', 'correction'] processed_text: ['ki', 'bug', 'fix', 'correction', 'ki', 'bug', 'fix', 'correction'] list_processed_text: [['ki'], ['bug'], ['fix'], ['correction'], ['ki'], ['bug'], ['fix'], ['correction']] k: 7156 len: <class 'list'> Data: ['unable', 'access', 'm', 'dynamic', 'crm', 'companyprod', 'environment', 'error', 'insufficient', 'access', 'please', 'check', 'attached', 'email', 'error', 'screenshot', 'contact', 'detail', 'believe', 'license', 'recently', 'provided'] processed_text: ['unable', 'access', 'm', 'dynamic', 'crm', 'companyprod', 'environment', 'error', 'insufficient', 'access', 'please', 'check', 'attached', 'email', 'error', 'screenshot', 'contact', 'detail', 'believe', 'license', 'recently', 'provided'] list_processed_text: [['unable'], ['access'], ['m'], ['dynamic'], ['crm'], ['companyprod'], ['environment'], ['error'], ['insufficient'], ['access'], ['please'], ['check'], ['attached'], ['email'], ['error'], ['screenshot'], ['contact'], ['detail'], ['believe'], ['license'], ['recently'], ['provided']] k: 7157 len: <class 'list'> Data: ['able', 'login', 'window', 'able', 'login', 'window'] processed_text: ['able', 'login', 'window', 'able', 'login', 'window'] list_processed_text: [['able'], ['login'], ['window'], ['able'], ['login'], ['window']] k: 7158 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] processed_text: ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['erp'], ['sid'], ['account'], ['unlock']] k: 7159 len: <class 'list'> Data: ['unable', 'clear', 'inwarehouse', 'tool', 'vfx', 'hello', 'please', 'support', 'unable', 'clear', 'inwarehouse', 'tool', 'vfx', 'need', 'help', 'high', 'value', 'inwarehouse', 'tool', 'cannot', 'clear'] processed_text: ['unable', 'clear', 'inwarehouse', 'tool', 'vfx', 'hello', 'please', 'support', 'unable', 'clear', 'inwarehouse', 'tool', 'vfx', 'need', 'help', 'high', 'value', 'inwarehouse', 'tool', 'cannot', 'clear'] list_processed_text: [['unable'], ['clear'], ['inwarehouse'], ['tool'], ['vfx'], ['hello'], ['please'], ['support'], ['unable'], ['clear'], ['inwarehouse'], ['tool'], ['vfx'], ['need'], ['help'], ['high'], ['value'], ['inwarehouse'], ['tool'], ['cannot'], ['clear']] k: 7160 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 7161 len: <class 'list'> Data: ['cant', 'connect', 'netviewer', 'connected', 'vpn', 'saw', 'main', 'screen', 'netviewer', 'wrote', 'usrr', 'name', 'password', 'see', 'error', 'screen', 'attached', 'screen'] processed_text: ['cant', 'connect', 'netviewer', 'connected', 'vpn', 'saw', 'main', 'screen', 'netviewer', 'wrote', 'usrr', 'name', 'password', 'see', 'error', 'screen', 'attached', 'screen'] list_processed_text: [['cant'], ['connect'], ['netviewer'], ['connected'], ['vpn'], ['saw'], ['main'], ['screen'], ['netviewer'], ['wrote'], ['usrr'], ['name'], ['password'], ['see'], ['error'], ['screen'], ['attached'], ['screen']] k: 7162 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7163 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'hrp', 'sid', 'chg', 'point', 'abended', 'job', 'job', 'scheduler', 'hrp', 'sid', 'chg', 'point'] processed_text: ['abended', 'job', 'job', 'scheduler', 'hrp', 'sid', 'chg', 'point', 'abended', 'job', 'job', 'scheduler', 'hrp', 'sid', 'chg', 'point'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['hrp'], ['sid'], ['chg'], ['point'], ['abended'], ['job'], ['job'], ['scheduler'], ['hrp'], ['sid'], ['chg'], ['point']] k: 7164 len: <class 'list'> Data: ['erp', 'sid', 'access', 'right', 'dear', 'global', 'helpdesk', 'team', 'wanted', 'request', 'access', 'right', 'rfvchzmp', 'picjthkd', 'user', 'bagtylleg', 'zsluxctw', 'ptirhcwv', 'erp', 'logon', 'sid', 'system', 'davidthd', 'kindly', 'approve', 'request', 'provide', 'access', 'stefdgthy', 'warm'] processed_text: ['erp', 'sid', 'access', 'right', 'dear', 'global', 'helpdesk', 'team', 'wanted', 'request', 'access', 'right', 'rfvchzmp', 'picjthkd', 'user', 'bagtylleg', 'zsluxctw', 'ptirhcwv', 'erp', 'logon', 'sid', 'system', 'davidthd', 'kindly', 'approve', 'request', 'provide', 'access', 'stefdgthy', 'warm'] list_processed_text: [['erp'], ['sid'], ['access'], ['right'], ['dear'], ['global'], ['helpdesk'], ['team'], ['wanted'], ['request'], ['access'], ['right'], ['rfvchzmp'], ['picjthkd'], ['user'], ['bagtylleg'], ['zsluxctw'], ['ptirhcwv'], ['erp'], ['logon'], ['sid'], ['system'], ['davidthd'], ['kindly'], ['approve'], ['request'], ['provide'], ['access'], ['stefdgthy'], ['warm']] k: 7165 len: <class 'list'> Data: ['material', 'tax', 'classification', 'zero', 'please', 'open', 'ticket', 'assign', 'rzucjgvp', 'ioqjgmah'] processed_text: ['material', 'tax', 'classification', 'zero', 'please', 'open', 'ticket', 'assign', 'rzucjgvp', 'ioqjgmah'] list_processed_text: [['material'], ['tax'], ['classification'], ['zero'], ['please'], ['open'], ['ticket'], ['assign'], ['rzucjgvp'], ['ioqjgmah']] k: 7166 len: <class 'list'> Data: ['email', 'query', 'email', 'query'] processed_text: ['email', 'query', 'email', 'query'] list_processed_text: [['email'], ['query'], ['email'], ['query']] k: 7167 len: <class 'list'> Data: ['response', 'call', 'response', 'call'] processed_text: ['response', 'call', 'response', 'call'] list_processed_text: [['response'], ['call'], ['response'], ['call']] k: 7168 len: <class 'list'> Data: ['password', 'reset', 'ad', 'cyndy', 'emailed', 'requesting', 'password', 'reset', 'jose', 'emailed', 'password'] processed_text: ['password', 'reset', 'ad', 'cyndy', 'emailed', 'requesting', 'password', 'reset', 'jose', 'emailed', 'password'] list_processed_text: [['password'], ['reset'], ['ad'], ['cyndy'], ['emailed'], ['requesting'], ['password'], ['reset'], ['jose'], ['emailed'], ['password']] k: 7169 len: <class 'list'> Data: ['ms', 'access', 'missing', 'hi', 'team', 'ms', 'access', 'missing', 'need', 'access', 'raising', 'job', 'requisition', 'please', 'help', 'fix', 'tiffrtany', 'tafgtyng', 'manager', 'hr', 'shared', 'service', 'asia', 'pacific', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['ms', 'access', 'missing', 'hi', 'team', 'ms', 'access', 'missing', 'need', 'access', 'raising', 'job', 'requisition', 'please', 'help', 'fix', 'tiffrtany', 'tafgtyng', 'manager', 'hr', 'shared', 'service', 'asia', 'pacific', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['ms'], ['access'], ['missing'], ['hi'], ['team'], ['ms'], ['access'], ['missing'], ['need'], ['access'], ['raising'], ['job'], ['requisition'], ['please'], ['help'], ['fix'], ['tiffrtany'], ['tafgtyng'], ['manager'], ['hr'], ['shared'], ['service'], ['asia'], ['pacific'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 7170 len: <class 'list'> Data: ['unable', 'login', 'erp', 'thomklmas', 'contacted', 'u', 'outage', 'core', 'switch', 'usa', 'nvyjtmca', 'xjhpznds', 'went', 'able', 'confirm', 'access', 'restored', 'switch', 'came', 'back'] processed_text: ['unable', 'login', 'erp', 'thomklmas', 'contacted', 'u', 'outage', 'core', 'switch', 'usa', 'nvyjtmca', 'xjhpznds', 'went', 'able', 'confirm', 'access', 'restored', 'switch', 'came', 'back'] list_processed_text: [['unable'], ['login'], ['erp'], ['thomklmas'], ['contacted'], ['u'], ['outage'], ['core'], ['switch'], ['usa'], ['nvyjtmca'], ['xjhpznds'], ['went'], ['able'], ['confirm'], ['access'], ['restored'], ['switch'], ['came'], ['back']] k: 7171 len: <class 'list'> Data: ['please', 'delete', 'calander', 'meeting', 'kurtyar', 'suzjhmfa', 'swmiynoz', 'outlook', 'please', 'delete', 'calendar', 'meeting', 'kurtyar', 'suzjhmfa', 'swmiynoz', 'outlook', 'employee', 'left', 'company', 'request', 'kindly', 'delete', 'following', 'meeting', 'calendar', 'dec'] processed_text: ['please', 'delete', 'calander', 'meeting', 'kurtyar', 'suzjhmfa', 'swmiynoz', 'outlook', 'please', 'delete', 'calendar', 'meeting', 'kurtyar', 'suzjhmfa', 'swmiynoz', 'outlook', 'employee', 'left', 'company', 'request', 'kindly', 'delete', 'following', 'meeting', 'calendar', 'dec'] list_processed_text: [['please'], ['delete'], ['calander'], ['meeting'], ['kurtyar'], ['suzjhmfa'], ['swmiynoz'], ['outlook'], ['please'], ['delete'], ['calendar'], ['meeting'], ['kurtyar'], ['suzjhmfa'], ['swmiynoz'], ['outlook'], ['employee'], ['left'], ['company'], ['request'], ['kindly'], ['delete'], ['following'], ['meeting'], ['calendar'], ['dec']] k: 7172 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 7173 len: <class 'list'> Data: ['access', 'ethic', 'training', 'hello', 'accede', 'ethic', 'training', 'user', 'unrecognized', 'could', 'please', 'check', 'please', 'see', 'attached', 'screen'] processed_text: ['access', 'ethic', 'training', 'hello', 'accede', 'ethic', 'training', 'user', 'unrecognized', 'could', 'please', 'check', 'please', 'see', 'attached', 'screen'] list_processed_text: [['access'], ['ethic'], ['training'], ['hello'], ['accede'], ['ethic'], ['training'], ['user'], ['unrecognized'], ['could'], ['please'], ['check'], ['please'], ['see'], ['attached'], ['screen']] k: 7174 len: <class 'list'> Data: ['outage', 'core', 'swicth', 'usa', 'dac', 'went', 'colin', 'unable', 'access', 'sql', 'database', 'advised', 'outage', 'able', 'confirm', 'issue', 'resolved', 'core', 'switch', 'came', 'back'] processed_text: ['outage', 'core', 'swicth', 'usa', 'dac', 'went', 'colin', 'unable', 'access', 'sql', 'database', 'advised', 'outage', 'able', 'confirm', 'issue', 'resolved', 'core', 'switch', 'came', 'back'] list_processed_text: [['outage'], ['core'], ['swicth'], ['usa'], ['dac'], ['went'], ['colin'], ['unable'], ['access'], ['sql'], ['database'], ['advised'], ['outage'], ['able'], ['confirm'], ['issue'], ['resolved'], ['core'], ['switch'], ['came'], ['back']] k: 7175 len: <class 'list'> Data: ['outlook', 'opening', 'outlook', 'opening'] processed_text: ['outlook', 'opening', 'outlook', 'opening'] list_processed_text: [['outlook'], ['opening'], ['outlook'], ['opening']] k: 7176 len: <class 'list'> Data: ['please', 'unlock', 'sid', 'user', 'sar', 'r', 'please', 'unlock', 'sid', 'user', 'sar'] processed_text: ['please', 'unlock', 'sid', 'user', 'sar', 'r', 'please', 'unlock', 'sid', 'user', 'sar'] list_processed_text: [['please'], ['unlock'], ['sid'], ['user'], ['sar'], ['r'], ['please'], ['unlock'], ['sid'], ['user'], ['sar']] k: 7177 len: <class 'list'> Data: ['new', 'window', 'pc', 'lpgw', 'cannot', 'connect', 'rfid', 'reader', 'via', 'r', 'port', 'new', 'window', 'pc', 'lpgw', 'cannot', 'connect', 'rfid', 'reader', 'via', 'r', 'port'] processed_text: ['new', 'window', 'pc', 'lpgw', 'cannot', 'connect', 'rfid', 'reader', 'via', 'r', 'port', 'new', 'window', 'pc', 'lpgw', 'cannot', 'connect', 'rfid', 'reader', 'via', 'r', 'port'] list_processed_text: [['new'], ['window'], ['pc'], ['lpgw'], ['cannot'], ['connect'], ['rfid'], ['reader'], ['via'], ['r'], ['port'], ['new'], ['window'], ['pc'], ['lpgw'], ['cannot'], ['connect'], ['rfid'], ['reader'], ['via'], ['r'], ['port']] k: 7178 len: <class 'list'> Data: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] processed_text: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] list_processed_text: [['zdsxmcwu'], ['thdjzolwronization'], ['issue'], ['zdsxmcwu'], ['thdjzolwronization'], ['issue']] k: 7179 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7180 len: <class 'list'> Data: ['please', 'activate', 'precimat', 'please', 'activate', 'machine', 'precimat', 'no.', 'yes', 'azm'] processed_text: ['please', 'activate', 'precimat', 'please', 'activate', 'machine', 'precimat', 'no.', 'yes', 'azm'] list_processed_text: [['please'], ['activate'], ['precimat'], ['please'], ['activate'], ['machine'], ['precimat'], ['no.'], ['yes'], ['azm']] k: 7181 len: <class 'list'> Data: ['password', 'reset', 'login', 'erp', 'hcm', 'able', 'use', 'apply', 'job', 'company', 'password', 'reset', 'login', 'erp', 'hcm', 'able', 'use', 'apply', 'job', 'company'] processed_text: ['password', 'reset', 'login', 'erp', 'hcm', 'able', 'use', 'apply', 'job', 'company', 'password', 'reset', 'login', 'erp', 'hcm', 'able', 'use', 'apply', 'job', 'company'] list_processed_text: [['password'], ['reset'], ['login'], ['erp'], ['hcm'], ['able'], ['use'], ['apply'], ['job'], ['company'], ['password'], ['reset'], ['login'], ['erp'], ['hcm'], ['able'], ['use'], ['apply'], ['job'], ['company']] k: 7182 len: <class 'list'> Data: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] processed_text: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] list_processed_text: [['erp'], ['working'], ['error'], ['log'], ['balancing'], ['error'], ['inc'], ['cert'], ['opened'], ['work'], ['around']] k: 7183 len: <class 'list'> Data: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] processed_text: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] list_processed_text: [['erp'], ['working'], ['error'], ['log'], ['balancing'], ['error'], ['inc'], ['cert'], ['opened'], ['work'], ['around']] k: 7184 len: <class 'list'> Data: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] processed_text: ['erp', 'working', 'error', 'log', 'balancing', 'error', 'inc', 'cert', 'opened', 'work', 'around'] list_processed_text: [['erp'], ['working'], ['error'], ['log'], ['balancing'], ['error'], ['inc'], ['cert'], ['opened'], ['work'], ['around']] k: 7185 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'arc', 'abended', 'job', 'job', 'scheduler', 'sid', 'arc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'arc', 'abended', 'job', 'job', 'scheduler', 'sid', 'arc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['arc'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['arc']] k: 7186 len: <class 'list'> Data: ['erp', 'sid', 'log', 'india', 'cec', 'issue', 'erp', 'sid', 'production', 'system', 'logging', 'automatically', 'happened', 'time'] processed_text: ['erp', 'sid', 'log', 'india', 'cec', 'issue', 'erp', 'sid', 'production', 'system', 'logging', 'automatically', 'happened', 'time'] list_processed_text: [['erp'], ['sid'], ['log'], ['india'], ['cec'], ['issue'], ['erp'], ['sid'], ['production'], ['system'], ['logging'], ['automatically'], ['happened'], ['time']] k: 7187 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7188 len: <class 'list'> Data: ['reset', 'password', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'sid', 'user', 'old', 'erp', 'locked'] processed_text: ['reset', 'password', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'sid', 'user', 'old', 'erp', 'locked'] list_processed_text: [['reset'], ['password'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password'], ['sid'], ['user'], ['old'], ['erp'], ['locked']] k: 7189 len: <class 'list'> Data: ['erp', 'logon', 'open', 'hello', 'helpline', 'need', 'erp', 'urgent', 'today', 'cannot', 'connect', 'computer', 'user', 'blocked', 'tried', 'colleague', 'pc', 'please', 'advice'] processed_text: ['erp', 'logon', 'open', 'hello', 'helpline', 'need', 'erp', 'urgent', 'today', 'cannot', 'connect', 'computer', 'user', 'blocked', 'tried', 'colleague', 'pc', 'please', 'advice'] list_processed_text: [['erp'], ['logon'], ['open'], ['hello'], ['helpline'], ['need'], ['erp'], ['urgent'], ['today'], ['cannot'], ['connect'], ['computer'], ['user'], ['blocked'], ['tried'], ['colleague'], ['pc'], ['please'], ['advice']] k: 7190 len: <class 'list'> Data: ['erp', 'internet', 'usa', 'pa', 'location', 'erp', 'internet', 'usa', 'pa', 'location', 'contact'] processed_text: ['erp', 'internet', 'usa', 'pa', 'location', 'erp', 'internet', 'usa', 'pa', 'location', 'contact'] list_processed_text: [['erp'], ['internet'], ['usa'], ['pa'], ['location'], ['erp'], ['internet'], ['usa'], ['pa'], ['location'], ['contact']] k: 7191 len: <class 'list'> Data: ['server', 'e', 'error', 'reading', 'object', 'detail', 'process', 'canceled', 'error', 'execute', 'transaction', 'dscsag', 'obj', 'get', 'multidetail', 'connect', 'message', 'server', 'host', 'failed', 'connection', 'paramdntyeters', 'type', 'dest', 'nogui', 'mshost', 'sid', 'db', 'rname', 'sid', 'group', 'erp', 'production', 'pc', 'phone'] processed_text: ['server', 'e', 'error', 'reading', 'object', 'detail', 'process', 'canceled', 'error', 'execute', 'transaction', 'dscsag', 'obj', 'get', 'multidetail', 'connect', 'message', 'server', 'host', 'failed', 'connection', 'paramdntyeters', 'type', 'dest', 'nogui', 'mshost', 'sid', 'db', 'rname', 'sid', 'group', 'erp', 'production', 'pc', 'phone'] list_processed_text: [['server'], ['e'], ['error'], ['reading'], ['object'], ['detail'], ['process'], ['canceled'], ['error'], ['execute'], ['transaction'], ['dscsag'], ['obj'], ['get'], ['multidetail'], ['connect'], ['message'], ['server'], ['host'], ['failed'], ['connection'], ['paramdntyeters'], ['type'], ['dest'], ['nogui'], ['mshost'], ['sid'], ['db'], ['rname'], ['sid'], ['group'], ['erp'], ['production'], ['pc'], ['phone']] k: 7192 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7193 len: <class 'list'> Data: ['server', 'problem', 'hello', 'server', 'connection', 'lic', 'faulty', 'cannot', 'booked', 'erp', 'take', 'care', 'problem,', 'thank', 'best'] processed_text: ['server', 'problem', 'hello', 'server', 'connection', 'lic', 'faulty', 'cannot', 'booked', 'erp', 'take', 'care', 'problem,', 'thank', 'best'] list_processed_text: [['server'], ['problem'], ['hello'], ['server'], ['connection'], ['lic'], ['faulty'], ['cannot'], ['booked'], ['erp'], ['take'], ['care'], ['problem,'], ['thank'], ['best']] k: 7194 len: <class 'list'> Data: ['erp', 'sid', 'system', 'work', 'production', 'order', 'entered', 'contact'] processed_text: ['erp', 'sid', 'system', 'work', 'production', 'order', 'entered', 'contact'] list_processed_text: [['erp'], ['sid'], ['system'], ['work'], ['production'], ['order'], ['entered'], ['contact']] k: 7195 len: <class 'list'> Data: ['erp', 'working', 'erp', 'working'] processed_text: ['erp', 'working', 'erp', 'working'] list_processed_text: [['erp'], ['working'], ['erp'], ['working']] k: 7196 len: <class 'list'> Data: ['connection', 'erp', 'system', 'hello', 'connection', 'erp', 'system', 'connection', 'message', 'server', 'rc'] processed_text: ['connection', 'erp', 'system', 'hello', 'connection', 'erp', 'system', 'connection', 'message', 'server', 'rc'] list_processed_text: [['connection'], ['erp'], ['system'], ['hello'], ['connection'], ['erp'], ['system'], ['connection'], ['message'], ['server'], ['rc']] k: 7197 len: <class 'list'> Data: ['connecting', 'erp', 'possible', 'hello', 'need', 'help', 'p', 'connecting', 'erp', 'possible', 'receive', 'error', 'message', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['connecting', 'erp', 'possible', 'hello', 'need', 'help', 'p', 'connecting', 'erp', 'possible', 'receive', 'error', 'message', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['connecting'], ['erp'], ['possible'], ['hello'], ['need'], ['help'], ['p'], ['connecting'], ['erp'], ['possible'], ['receive'], ['error'], ['message'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 7198 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'keheu', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'keheu'] processed_text: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'keheu', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'keheu'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu'], ['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['keheu']] k: 7199 len: <class 'list'> Data: ['erp', 'working', 'erp', 'outage', 'erp', 'working', 'erp', 'outage', 'aeophctw', 'nvjyhizu', 'united', 'kingdom'] processed_text: ['erp', 'working', 'erp', 'outage', 'erp', 'working', 'erp', 'outage', 'aeophctw', 'nvjyhizu', 'united', 'kingdom'] list_processed_text: [['erp'], ['working'], ['erp'], ['outage'], ['erp'], ['working'], ['erp'], ['outage'], ['aeophctw'], ['nvjyhizu'], ['united'], ['kingdom']] k: 7200 len: <class 'list'> Data: ['erp', 'broken', 'please', 'see', 'error', 'message', 'erp', 'friendly', 'gr', 'en', 'best'] processed_text: ['erp', 'broken', 'please', 'see', 'error', 'message', 'erp', 'friendly', 'gr', 'en', 'best'] list_processed_text: [['erp'], ['broken'], ['please'], ['see'], ['error'], ['message'], ['erp'], ['friendly'], ['gr'], ['en'], ['best']] k: 7201 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'mm', 'zscr', 'dly', 'uschow', 'abended', 'job', 'job', 'scheduler', 'mm', 'zscr', 'dly', 'uschow'] processed_text: ['abended', 'job', 'job', 'scheduler', 'mm', 'zscr', 'dly', 'uschow', 'abended', 'job', 'job', 'scheduler', 'mm', 'zscr', 'dly', 'uschow'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['mm'], ['zscr'], ['dly'], ['uschow'], ['abended'], ['job'], ['job'], ['scheduler'], ['mm'], ['zscr'], ['dly'], ['uschow']] k: 7202 len: <class 'list'> Data: ['erp', 'working', 'erp', 'connecting'] processed_text: ['erp', 'working', 'erp', 'connecting'] list_processed_text: [['erp'], ['working'], ['erp'], ['connecting']] k: 7203 len: <class 'list'> Data: ['erp', 'sid', 'working', 'plant', 'germany', 'log'] processed_text: ['erp', 'sid', 'working', 'plant', 'germany', 'log'] list_processed_text: [['erp'], ['sid'], ['working'], ['plant'], ['germany'], ['log']] k: 7204 len: <class 'list'> Data: ['erp', 'logon', 'possible', 'error', 'multiple', 'user', 'affected', 'please', 'see', 'error', 'message', 'attached'] processed_text: ['erp', 'logon', 'possible', 'error', 'multiple', 'user', 'affected', 'please', 'see', 'error', 'message', 'attached'] list_processed_text: [['erp'], ['logon'], ['possible'], ['error'], ['multiple'], ['user'], ['affected'], ['please'], ['see'], ['error'], ['message'], ['attached']] k: 7205 len: <class 'list'> Data: ['problem', 'scanner', 'printer', 'zslugaxq', 'dtwlrofu', 'mr', 'dde', 'printer', 'scan', 'something', 'scan', 'gr', 'cannot', 'print', 'anything', 'printer', 'start', 'nothing', 'come'] processed_text: ['problem', 'scanner', 'printer', 'zslugaxq', 'dtwlrofu', 'mr', 'dde', 'printer', 'scan', 'something', 'scan', 'gr', 'cannot', 'print', 'anything', 'printer', 'start', 'nothing', 'come'] list_processed_text: [['problem'], ['scanner'], ['printer'], ['zslugaxq'], ['dtwlrofu'], ['mr'], ['dde'], ['printer'], ['scan'], ['something'], ['scan'], ['gr'], ['cannot'], ['print'], ['anything'], ['printer'], ['start'], ['nothing'], ['come']] k: 7206 len: <class 'list'> Data: ['probleme', 'mit', 'office', 'girnda', 'probleme', 'mit', 'office', 'girnda'] processed_text: ['probleme', 'mit', 'office', 'girnda', 'probleme', 'mit', 'office', 'girnda'] list_processed_text: [['probleme'], ['mit'], ['office'], ['girnda'], ['probleme'], ['mit'], ['office'], ['girnda']] k: 7207 len: <class 'list'> Data: ['setup', 'new', 'w', 'gonzales', 'setup', 'new', 'w', 'gonzales'] processed_text: ['setup', 'new', 'w', 'gonzales', 'setup', 'new', 'w', 'gonzales'] list_processed_text: [['setup'], ['new'], ['w'], ['gonzales'], ['setup'], ['new'], ['w'], ['gonzales']] k: 7208 len: <class 'list'> Data: ['hp', 'alm', 'triggered', 'shown', 'inbox', 'summary', 'actually', 'email', 'hp', 'alm', 'triggered', 'shown', 'inbox'] processed_text: ['hp', 'alm', 'triggered', 'shown', 'inbox', 'summary', 'actually', 'email', 'hp', 'alm', 'triggered', 'shown', 'inbox'] list_processed_text: [['hp'], ['alm'], ['triggered'], ['shown'], ['inbox'], ['summary'], ['actually'], ['email'], ['hp'], ['alm'], ['triggered'], ['shown'], ['inbox']] k: 7209 len: <class 'list'> Data: ['cannot', 'print', 'erp', 'document', 'zz', 'mail', 'function', 'since', 'today', 'around', 'noon', 'please', 'help', 'want', 'print', 'erp', 'document', 'pdf', 'file', 'zz', 'mail', 'function', 'tried', 'since', 'today', 'noon', 'sale', 'document', 'delivery', 'document', 'billing', 'document', 'nothing', 'come'] processed_text: ['cannot', 'print', 'erp', 'document', 'zz', 'mail', 'function', 'since', 'today', 'around', 'noon', 'please', 'help', 'want', 'print', 'erp', 'document', 'pdf', 'file', 'zz', 'mail', 'function', 'tried', 'since', 'today', 'noon', 'sale', 'document', 'delivery', 'document', 'billing', 'document', 'nothing', 'come'] list_processed_text: [['cannot'], ['print'], ['erp'], ['document'], ['zz'], ['mail'], ['function'], ['since'], ['today'], ['around'], ['noon'], ['please'], ['help'], ['want'], ['print'], ['erp'], ['document'], ['pdf'], ['file'], ['zz'], ['mail'], ['function'], ['tried'], ['since'], ['today'], ['noon'], ['sale'], ['document'], ['delivery'], ['document'], ['billing'], ['document'], ['nothing'], ['come']] k: 7210 len: <class 'list'> Data: ['alte', 'equipment', 'abholen', 'wxstfouy', 'isjzcotm', 'alte', 'equipment', 'abholen', 'wxstfouy', 'isjzcotm'] processed_text: ['alte', 'equipment', 'abholen', 'wxstfouy', 'isjzcotm', 'alte', 'equipment', 'abholen', 'wxstfouy', 'isjzcotm'] list_processed_text: [['alte'], ['equipment'], ['abholen'], ['wxstfouy'], ['isjzcotm'], ['alte'], ['equipment'], ['abholen'], ['wxstfouy'], ['isjzcotm']] k: 7211 len: <class 'list'> Data: ['problem', 'logging', 'wxstfouy', 'isjzcotm', 'unfortunately', 'cannot', 'log', 'computer', 'error', 'message', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'could', 'established'] processed_text: ['problem', 'logging', 'wxstfouy', 'isjzcotm', 'unfortunately', 'cannot', 'log', 'computer', 'error', 'message', 'trust', 'relationship', 'workstation', 'primary', 'domain', 'could', 'established'] list_processed_text: [['problem'], ['logging'], ['wxstfouy'], ['isjzcotm'], ['unfortunately'], ['cannot'], ['log'], ['computer'], ['error'], ['message'], ['trust'], ['relationship'], ['workstation'], ['primary'], ['domain'], ['could'], ['established']] k: 7212 len: <class 'list'> Data: ['network', 'outage', 'usa', 'pa', 'location', 'plant', 'network', 'outage', 'usa', 'pa', 'intranet', 'internet', 'affected', 'erp', 'outlook', 'contact'] processed_text: ['network', 'outage', 'usa', 'pa', 'location', 'plant', 'network', 'outage', 'usa', 'pa', 'intranet', 'internet', 'affected', 'erp', 'outlook', 'contact'] list_processed_text: [['network'], ['outage'], ['usa'], ['pa'], ['location'], ['plant'], ['network'], ['outage'], ['usa'], ['pa'], ['intranet'], ['internet'], ['affected'], ['erp'], ['outlook'], ['contact']] k: 7213 len: <class 'list'> Data: ['internet', 'working', 'usa', 'location', 'phone', 'line', 'working', 'fine', 'outlook', 'say', 'connecting', 'server', 'contact'] processed_text: ['internet', 'working', 'usa', 'location', 'phone', 'line', 'working', 'fine', 'outlook', 'say', 'connecting', 'server', 'contact'] list_processed_text: [['internet'], ['working'], ['usa'], ['location'], ['phone'], ['line'], ['working'], ['fine'], ['outlook'], ['say'], ['connecting'], ['server'], ['contact']] k: 7214 len: <class 'list'> Data: ['engineering', 'drawing', 'tool', 'frame', 'cannot', 'loaded', 'engineering', 'drawing', 'tool', 'dt', 'drawing', 'frame', 'message', 'appendix', 'appears'] processed_text: ['engineering', 'drawing', 'tool', 'frame', 'cannot', 'loaded', 'engineering', 'drawing', 'tool', 'dt', 'drawing', 'frame', 'message', 'appendix', 'appears'] list_processed_text: [['engineering'], ['drawing'], ['tool'], ['frame'], ['cannot'], ['loaded'], ['engineering'], ['drawing'], ['tool'], ['dt'], ['drawing'], ['frame'], ['message'], ['appendix'], ['appears']] k: 7215 len: <class 'list'> Data: ['laptop', 'switching', 'laptop', 'starting'] processed_text: ['laptop', 'switching', 'laptop', 'starting'] list_processed_text: [['laptop'], ['switching'], ['laptop'], ['starting']] k: 7216 len: <class 'list'> Data: ['getting', 'warning', 'message', 'outloo', 'sending', 'email', 'via', 'macro', 'function', 'disable', 'warning', 'message', 'getting', 'warning', 'message', 'outloo', 'sending', 'email', 'via', 'macro', 'function', 'disable', 'warning', 'message'] processed_text: ['getting', 'warning', 'message', 'outloo', 'sending', 'email', 'via', 'macro', 'function', 'disable', 'warning', 'message', 'getting', 'warning', 'message', 'outloo', 'sending', 'email', 'via', 'macro', 'function', 'disable', 'warning', 'message'] list_processed_text: [['getting'], ['warning'], ['message'], ['outloo'], ['sending'], ['email'], ['via'], ['macro'], ['function'], ['disable'], ['warning'], ['message'], ['getting'], ['warning'], ['message'], ['outloo'], ['sending'], ['email'], ['via'], ['macro'], ['function'], ['disable'], ['warning'], ['message']] k: 7217 len: <class 'list'> Data: ['dn', 'sale', 'org', 'plant', 'hellp', 'help', 'please', 'refer', 'delivery', 'note', 'number', 'able', 'return', 'pgi', 'please', 'help'] processed_text: ['dn', 'sale', 'org', 'plant', 'hellp', 'help', 'please', 'refer', 'delivery', 'note', 'number', 'able', 'return', 'pgi', 'please', 'help'] list_processed_text: [['dn'], ['sale'], ['org'], ['plant'], ['hellp'], ['help'], ['please'], ['refer'], ['delivery'], ['note'], ['number'], ['able'], ['return'], ['pgi'], ['please'], ['help']] k: 7218 len: <class 'list'> Data: ['erp', 'hana', 'studio', 'sidecar', 'software', 'working', 'erp', 'hana', 'studio', 'sidecar', 'software', 'working'] processed_text: ['erp', 'hana', 'studio', 'sidecar', 'software', 'working', 'erp', 'hana', 'studio', 'sidecar', 'software', 'working'] list_processed_text: [['erp'], ['hana'], ['studio'], ['sidecar'], ['software'], ['working'], ['erp'], ['hana'], ['studio'], ['sidecar'], ['software'], ['working']] k: 7219 len: <class 'list'> Data: ['reset', 'password', 'szcbhvwe', 'edpouqjl', 'erp', 'production', 'erp', 'dear', 'team', 'please', 'kind', 'reset', 'franhtyu', 'password', 'daypay'] processed_text: ['reset', 'password', 'szcbhvwe', 'edpouqjl', 'erp', 'production', 'erp', 'dear', 'team', 'please', 'kind', 'reset', 'franhtyu', 'password', 'daypay'] list_processed_text: [['reset'], ['password'], ['szcbhvwe'], ['edpouqjl'], ['erp'], ['production'], ['erp'], ['dear'], ['team'], ['please'], ['kind'], ['reset'], ['franhtyu'], ['password'], ['daypay']] k: 7220 len: <class 'list'> Data: ['zz', 'mail', 'unable', 'send', 'quotation', 'customer', 'sale', 'hello', 'team', 'unable', 'send', 'quotation', 'customer', 'sale', 'zz', 'mail', 'please', 'check', 'resolve', 'immediately', 'example', 'sent', 'received', 'warm'] processed_text: ['zz', 'mail', 'unable', 'send', 'quotation', 'customer', 'sale', 'hello', 'team', 'unable', 'send', 'quotation', 'customer', 'sale', 'zz', 'mail', 'please', 'check', 'resolve', 'immediately', 'example', 'sent', 'received', 'warm'] list_processed_text: [['zz'], ['mail'], ['unable'], ['send'], ['quotation'], ['customer'], ['sale'], ['hello'], ['team'], ['unable'], ['send'], ['quotation'], ['customer'], ['sale'], ['zz'], ['mail'], ['please'], ['check'], ['resolve'], ['immediately'], ['example'], ['sent'], ['received'], ['warm']] k: 7221 len: <class 'list'> Data: ['meeting', 'inivation', 'skype', 'meeting', 'inivation', 'skype'] processed_text: ['meeting', 'inivation', 'skype', 'meeting', 'inivation', 'skype'] list_processed_text: [['meeting'], ['inivation'], ['skype'], ['meeting'], ['inivation'], ['skype']] k: 7222 len: <class 'list'> Data: ['erp', 'logon', 'sid', 'sid', 'hi', 'trying', 'set', 'erp', 'logon', 'window', 'login', 'password', 'please', 'help', 'reset', 'erp', 'login', 'configure', 'per', 'window', 'login', 'pw'] processed_text: ['erp', 'logon', 'sid', 'sid', 'hi', 'trying', 'set', 'erp', 'logon', 'window', 'login', 'password', 'please', 'help', 'reset', 'erp', 'login', 'configure', 'per', 'window', 'login', 'pw'] list_processed_text: [['erp'], ['logon'], ['sid'], ['sid'], ['hi'], ['trying'], ['set'], ['erp'], ['logon'], ['window'], ['login'], ['password'], ['please'], ['help'], ['reset'], ['erp'], ['login'], ['configure'], ['per'], ['window'], ['login'], ['pw']] k: 7223 len: <class 'list'> Data: ['window', 'disk', 'space', 'utilization', 'alert', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'hostname'] processed_text: ['window', 'disk', 'space', 'utilization', 'alert', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'hostname'] list_processed_text: [['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['hostname'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['hostname']] k: 7224 len: <class 'list'> Data: ['password', 'working', 'user', 'frgtyetij', 'qwvpgayb', 'amniujsh', 'pm', 'nwfodmhc', 'exurcwkm', 'gaiopkun', 'bvcdpxrt', 'qamyesuv', 'npmzxbek', 'fw', 'sab', 'gaiopkun', 'bvcdpxrt', 'password', 'issue', 'importance', 'high', 'hi', 'team', 'rubiargty', 'changed', 'password', 'time', 'already', 'issue', 'remains', 'julgttie', 'cannot', 'log', 'please', 'investigate', 'aerp', 'new', 'sale', 'engineer', 'need', 'work', 'customer', 'immediately'] processed_text: ['password', 'working', 'user', 'frgtyetij', 'qwvpgayb', 'amniujsh', 'pm', 'nwfodmhc', 'exurcwkm', 'gaiopkun', 'bvcdpxrt', 'qamyesuv', 'npmzxbek', 'fw', 'sab', 'gaiopkun', 'bvcdpxrt', 'password', 'issue', 'importance', 'high', 'hi', 'team', 'rubiargty', 'changed', 'password', 'time', 'already', 'issue', 'remains', 'julgttie', 'cannot', 'log', 'please', 'investigate', 'aerp', 'new', 'sale', 'engineer', 'need', 'work', 'customer', 'immediately'] list_processed_text: [['password'], ['working'], ['user'], ['frgtyetij'], ['qwvpgayb'], ['amniujsh'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['gaiopkun'], ['bvcdpxrt'], ['qamyesuv'], ['npmzxbek'], ['fw'], ['sab'], ['gaiopkun'], ['bvcdpxrt'], ['password'], ['issue'], ['importance'], ['high'], ['hi'], ['team'], ['rubiargty'], ['changed'], ['password'], ['time'], ['already'], ['issue'], ['remains'], ['julgttie'], ['cannot'], ['log'], ['please'], ['investigate'], ['aerp'], ['new'], ['sale'], ['engineer'], ['need'], ['work'], ['customer'], ['immediately']] k: 7225 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap'] processed_text: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap']] k: 7226 len: <class 'list'> Data: ['window', 'disk', 'space', 'utilization', 'alert', 'lhbsm', 'window', 'disk', 'space', 'utilization', 'alert', 'lhbsm'] processed_text: ['window', 'disk', 'space', 'utilization', 'alert', 'lhbsm', 'window', 'disk', 'space', 'utilization', 'alert', 'lhbsm'] list_processed_text: [['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['lhbsm'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['lhbsm']] k: 7227 len: <class 'list'> Data: ['firewall', 'company', 'internal', 'pix', 'company', 'com', 'ltrobe', 'since', 'et', 'firewall', 'company', 'internal', 'pix', 'company', 'com', 'ltrobe', 'since', 'et'] processed_text: ['firewall', 'company', 'internal', 'pix', 'company', 'com', 'ltrobe', 'since', 'et', 'firewall', 'company', 'internal', 'pix', 'company', 'com', 'ltrobe', 'since', 'et'] list_processed_text: [['firewall'], ['company'], ['internal'], ['pix'], ['company'], ['com'], ['ltrobe'], ['since'], ['et'], ['firewall'], ['company'], ['internal'], ['pix'], ['company'], ['com'], ['ltrobe'], ['since'], ['et']] k: 7228 len: <class 'list'> Data: ['window', 'disk', 'space', 'utilization', 'alert', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'hostname'] processed_text: ['window', 'disk', 'space', 'utilization', 'alert', 'hostname', 'window', 'disk', 'space', 'utilization', 'alert', 'hostname'] list_processed_text: [['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['hostname'], ['window'], ['disk'], ['space'], ['utilization'], ['alert'], ['hostname']] k: 7229 len: <class 'list'> Data: ['scanner', 'especially', 'scn', 'email', 'working', 'server', 'ip', 'reply', 'ping', 'smtp', 'server', 'error', 'communication', 'error', 'contact', 'server', 'name', 'known', 'server', 'location', 'usa'] processed_text: ['scanner', 'especially', 'scn', 'email', 'working', 'server', 'ip', 'reply', 'ping', 'smtp', 'server', 'error', 'communication', 'error', 'contact', 'server', 'name', 'known', 'server', 'location', 'usa'] list_processed_text: [['scanner'], ['especially'], ['scn'], ['email'], ['working'], ['server'], ['ip'], ['reply'], ['ping'], ['smtp'], ['server'], ['error'], ['communication'], ['error'], ['contact'], ['server'], ['name'], ['known'], ['server'], ['location'], ['usa']] k: 7230 len: <class 'list'> Data: ['document', 'sent', 'via', 'zz', 'mail', 'received', 'time', 'made', 'uacyltoe', 'hxgaycze', 'sent', 'document', 'email', 'address', 'via', 'zz', 'mail', 'pm', 'apac', 'time', 'min', 'later', 'still', 'received'] processed_text: ['document', 'sent', 'via', 'zz', 'mail', 'received', 'time', 'made', 'uacyltoe', 'hxgaycze', 'sent', 'document', 'email', 'address', 'via', 'zz', 'mail', 'pm', 'apac', 'time', 'min', 'later', 'still', 'received'] list_processed_text: [['document'], ['sent'], ['via'], ['zz'], ['mail'], ['received'], ['time'], ['made'], ['uacyltoe'], ['hxgaycze'], ['sent'], ['document'], ['email'], ['address'], ['via'], ['zz'], ['mail'], ['pm'], ['apac'], ['time'], ['min'], ['later'], ['still'], ['received']] k: 7231 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7232 len: <class 'list'> Data: ['zz', 'mail', 'working', 'dear', 'team', 'today', 'zz', 'mail', 'working', 'please', 'check', 'happened'] processed_text: ['zz', 'mail', 'working', 'dear', 'team', 'today', 'zz', 'mail', 'working', 'please', 'check', 'happened'] list_processed_text: [['zz'], ['mail'], ['working'], ['dear'], ['team'], ['today'], ['zz'], ['mail'], ['working'], ['please'], ['check'], ['happened']] k: 7233 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 7234 len: <class 'list'> Data: ['storage', 'machine', 'assembly', 'model', 'need', 'common', 'place', 'online', 'storage', 'complete', 'machine', 'assembly', 'model', 'one', 'place', 'presently', 'drawing', 'individual', 'designer', 'pc', 'retrieval', 'difficult', 'day', 'day', 'machine', 'designed', 'data', 'handling', 'going', 'control', 'common', 'place', 'separate', 'drive', 'administrative', 'control', 'save', 'view', 'complete', 'machine', 'assembly', 'model', 'periodic', 'back', 'archiving', 'data', 'stored', 'place'] processed_text: ['storage', 'machine', 'assembly', 'model', 'need', 'common', 'place', 'online', 'storage', 'complete', 'machine', 'assembly', 'model', 'one', 'place', 'presently', 'drawing', 'individual', 'designer', 'pc', 'retrieval', 'difficult', 'day', 'day', 'machine', 'designed', 'data', 'handling', 'going', 'control', 'common', 'place', 'separate', 'drive', 'administrative', 'control', 'save', 'view', 'complete', 'machine', 'assembly', 'model', 'periodic', 'back', 'archiving', 'data', 'stored', 'place'] list_processed_text: [['storage'], ['machine'], ['assembly'], ['model'], ['need'], ['common'], ['place'], ['online'], ['storage'], ['complete'], ['machine'], ['assembly'], ['model'], ['one'], ['place'], ['presently'], ['drawing'], ['individual'], ['designer'], ['pc'], ['retrieval'], ['difficult'], ['day'], ['day'], ['machine'], ['designed'], ['data'], ['handling'], ['going'], ['control'], ['common'], ['place'], ['separate'], ['drive'], ['administrative'], ['control'], ['save'], ['view'], ['complete'], ['machine'], ['assembly'], ['model'], ['periodic'], ['back'], ['archiving'], ['data'], ['stored'], ['place']] k: 7235 len: <class 'list'> Data: ['azm', 'meldungen', 'glich', 'im', 'eu', 'tool', 'lassen', 'sich', 'keine', 'azm', 'meldungen', 'eintragen', 'eu', 'tool', 'azm', 'message', 'registered'] processed_text: ['azm', 'meldungen', 'glich', 'im', 'eu', 'tool', 'lassen', 'sich', 'keine', 'azm', 'meldungen', 'eintragen', 'eu', 'tool', 'azm', 'message', 'registered'] list_processed_text: [['azm'], ['meldungen'], ['glich'], ['im'], ['eu'], ['tool'], ['lassen'], ['sich'], ['keine'], ['azm'], ['meldungen'], ['eintragen'], ['eu'], ['tool'], ['azm'], ['message'], ['registered']] k: 7236 len: <class 'list'> Data: ['interface', 'gi', 'te', 'gi', 'gi', 'bottom', 'msfc', 'switch', 'usa', 'since', 'et', 'interface', 'gi', 'te', 'gi', 'gi', 'bottom', 'msfc', 'switch', 'usa', 'since', 'et'] processed_text: ['interface', 'gi', 'te', 'gi', 'gi', 'bottom', 'msfc', 'switch', 'usa', 'since', 'et', 'interface', 'gi', 'te', 'gi', 'gi', 'bottom', 'msfc', 'switch', 'usa', 'since', 'et'] list_processed_text: [['interface'], ['gi'], ['te'], ['gi'], ['gi'], ['bottom'], ['msfc'], ['switch'], ['usa'], ['since'], ['et'], ['interface'], ['gi'], ['te'], ['gi'], ['gi'], ['bottom'], ['msfc'], ['switch'], ['usa'], ['since'], ['et']] k: 7237 len: <class 'list'> Data: ['global', 'germany', 'erp', 'send', 'output', 'email', 'work', 'good', 'day', 'dear', 'please', 'help', 'aerp', 'erp', 'output', 'sending', 'email', 'work', 'well', 'yesterday'] processed_text: ['global', 'germany', 'erp', 'send', 'output', 'email', 'work', 'good', 'day', 'dear', 'please', 'help', 'aerp', 'erp', 'output', 'sending', 'email', 'work', 'well', 'yesterday'] list_processed_text: [['global'], ['germany'], ['erp'], ['send'], ['output'], ['email'], ['work'], ['good'], ['day'], ['dear'], ['please'], ['help'], ['aerp'], ['erp'], ['output'], ['sending'], ['email'], ['work'], ['well'], ['yesterday']] k: 7238 len: <class 'list'> Data: ['urgent', 'ordering', 'purchasing', 'catalogue', 'working', 'ordering', 'purchasing', 'catalogue', 'working', 'unable', 'order', 'please', 'see', 'attachment'] processed_text: ['urgent', 'ordering', 'purchasing', 'catalogue', 'working', 'ordering', 'purchasing', 'catalogue', 'working', 'unable', 'order', 'please', 'see', 'attachment'] list_processed_text: [['urgent'], ['ordering'], ['purchasing'], ['catalogue'], ['working'], ['ordering'], ['purchasing'], ['catalogue'], ['working'], ['unable'], ['order'], ['please'], ['see'], ['attachment']] k: 7239 len: <class 'list'> Data: ['log', 'erp', 'password', 'need', 'change', 'hi', 'please', 'assist', 'change', 'window', 'password', 'expire', 'log', 'erp', 'username', 'bragtydlc', 'employee', 'nr', 'please', 'assist', 'aerp'] processed_text: ['log', 'erp', 'password', 'need', 'change', 'hi', 'please', 'assist', 'change', 'window', 'password', 'expire', 'log', 'erp', 'username', 'bragtydlc', 'employee', 'nr', 'please', 'assist', 'aerp'] list_processed_text: [['log'], ['erp'], ['password'], ['need'], ['change'], ['hi'], ['please'], ['assist'], ['change'], ['window'], ['password'], ['expire'], ['log'], ['erp'], ['username'], ['bragtydlc'], ['employee'], ['nr'], ['please'], ['assist'], ['aerp']] k: 7240 len: <class 'list'> Data: ['issue', 'processing', 'tandd', 'request', 'urgent', 'please', 'help', 'look', 'issue', 'got', 'attachment'] processed_text: ['issue', 'processing', 'tandd', 'request', 'urgent', 'please', 'help', 'look', 'issue', 'got', 'attachment'] list_processed_text: [['issue'], ['processing'], ['tandd'], ['request'], ['urgent'], ['please'], ['help'], ['look'], ['issue'], ['got'], ['attachment']] k: 7241 len: <class 'list'> Data: ['urgent', 'erp', 'output', 'generated', 'user', 'poland', 'encounter', 'issue', 'erp', 'output', 'see', 'error', 'message', 'attached'] processed_text: ['urgent', 'erp', 'output', 'generated', 'user', 'poland', 'encounter', 'issue', 'erp', 'output', 'see', 'error', 'message', 'attached'] list_processed_text: [['urgent'], ['erp'], ['output'], ['generated'], ['user'], ['poland'], ['encounter'], ['issue'], ['erp'], ['output'], ['see'], ['error'], ['message'], ['attached']] k: 7242 len: <class 'list'> Data: ['screen', 'would', 'beshryuout', 'momentarily', 'return', 'following', 'display', 'driver', 'stopped', 'responding', 'recovered', 'changed', 'laptop', 'recently', 'change', 'every', 'time', 'used', 'microsoft', 'excel', 'dealing', 'huge', 'information', 'screen', 'would', 'beshryu', 'momentarily', 'following', 'message', 'display', 'driver', 'stopped', 'responding', 'recovered', 'beshryu', 'could', 'happen', 'often', 'every', 'minute', 'using', 'excel', 'twice', 'bad', 'screen', 'turn', 'blue', 'information', 'crash', 'dump', 'force', 'start', 'laptop'] processed_text: ['screen', 'would', 'beshryuout', 'momentarily', 'return', 'following', 'display', 'driver', 'stopped', 'responding', 'recovered', 'changed', 'laptop', 'recently', 'change', 'every', 'time', 'used', 'microsoft', 'excel', 'dealing', 'huge', 'information', 'screen', 'would', 'beshryu', 'momentarily', 'following', 'message', 'display', 'driver', 'stopped', 'responding', 'recovered', 'beshryu', 'could', 'happen', 'often', 'every', 'minute', 'using', 'excel', 'twice', 'bad', 'screen', 'turn', 'blue', 'information', 'crash', 'dump', 'force', 'start', 'laptop'] list_processed_text: [['screen'], ['would'], ['beshryuout'], ['momentarily'], ['return'], ['following'], ['display'], ['driver'], ['stopped'], ['responding'], ['recovered'], ['changed'], ['laptop'], ['recently'], ['change'], ['every'], ['time'], ['used'], ['microsoft'], ['excel'], ['dealing'], ['huge'], ['information'], ['screen'], ['would'], ['beshryu'], ['momentarily'], ['following'], ['message'], ['display'], ['driver'], ['stopped'], ['responding'], ['recovered'], ['beshryu'], ['could'], ['happen'], ['often'], ['every'], ['minute'], ['using'], ['excel'], ['twice'], ['bad'], ['screen'], ['turn'], ['blue'], ['information'], ['crash'], ['dump'], ['force'], ['start'], ['laptop']] k: 7243 len: <class 'list'> Data: ['robot', 'lhqwsf', 'usa', 'inactive', 'since', 'et', 'robot', 'lhqwsf', 'usa', 'inactive', 'since', 'et'] processed_text: ['robot', 'lhqwsf', 'usa', 'inactive', 'since', 'et', 'robot', 'lhqwsf', 'usa', 'inactive', 'since', 'et'] list_processed_text: [['robot'], ['lhqwsf'], ['usa'], ['inactive'], ['since'], ['et'], ['robot'], ['lhqwsf'], ['usa'], ['inactive'], ['since'], ['et']] k: 7244 len: <class 'list'> Data: ['plant', 'label', 'error', 'hello', 'operator', 'print', 'plant', 'label', 'click', 'made', 'plant', 'information', 'correct', 'screenshot', 'could', 'help', 'solve', 'error', 'please'] processed_text: ['plant', 'label', 'error', 'hello', 'operator', 'print', 'plant', 'label', 'click', 'made', 'plant', 'information', 'correct', 'screenshot', 'could', 'help', 'solve', 'error', 'please'] list_processed_text: [['plant'], ['label'], ['error'], ['hello'], ['operator'], ['print'], ['plant'], ['label'], ['click'], ['made'], ['plant'], ['information'], ['correct'], ['screenshot'], ['could'], ['help'], ['solve'], ['error'], ['please']] k: 7245 len: <class 'list'> Data: ['hostname', 'eu', 'tool', 'server', 'restart', 'required', 'please', 'restart', 'server', 'aerp', 'check', 'work', 'eu', 'tool', 'working', 'germany', 'plant', 'partner', 'vacation'] processed_text: ['hostname', 'eu', 'tool', 'server', 'restart', 'required', 'please', 'restart', 'server', 'aerp', 'check', 'work', 'eu', 'tool', 'working', 'germany', 'plant', 'partner', 'vacation'] list_processed_text: [['hostname'], ['eu'], ['tool'], ['server'], ['restart'], ['required'], ['please'], ['restart'], ['server'], ['aerp'], ['check'], ['work'], ['eu'], ['tool'], ['working'], ['germany'], ['plant'], ['partner'], ['vacation']] k: 7246 len: <class 'list'> Data: ['connection', 'admin', 'datacenter', 'switch', 'switch', 'admin', 'datacenter', 'switch', 'latrosince', 'et', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch'] processed_text: ['connection', 'admin', 'datacenter', 'switch', 'switch', 'admin', 'datacenter', 'switch', 'latrosince', 'et', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch', 'connection', 'admin', 'datacenter', 'switch', 'ping', 'failed', 'ip', 'profile', 'admin', 'datacenter', 'switch'] list_processed_text: [['connection'], ['admin'], ['datacenter'], ['switch'], ['switch'], ['admin'], ['datacenter'], ['switch'], ['latrosince'], ['et'], ['connection'], ['admin'], ['datacenter'], ['switch'], ['ping'], ['failed'], ['ip'], ['profile'], ['admin'], ['datacenter'], ['switch'], ['connection'], ['admin'], ['datacenter'], ['switch'], ['ping'], ['failed'], ['ip'], ['profile'], ['admin'], ['datacenter'], ['switch'], ['connection'], ['admin'], ['datacenter'], ['switch'], ['ping'], ['failed'], ['ip'], ['profile'], ['admin'], ['datacenter'], ['switch']] k: 7247 len: <class 'list'> Data: ['pls', 'help', 'change', 'internal', 'order', 'number', 'cost', 'center', 'cnn', 'cplant', 'jsut', 'new', 'company', 'marocm', 'apac', 'cost', 'cneter', 'cplant', 'pls', 'help', 'change', 'internal', 'order', 'number', 'cost', 'center', 'cnn', 'cplant'] processed_text: ['pls', 'help', 'change', 'internal', 'order', 'number', 'cost', 'center', 'cnn', 'cplant', 'jsut', 'new', 'company', 'marocm', 'apac', 'cost', 'cneter', 'cplant', 'pls', 'help', 'change', 'internal', 'order', 'number', 'cost', 'center', 'cnn', 'cplant'] list_processed_text: [['pls'], ['help'], ['change'], ['internal'], ['order'], ['number'], ['cost'], ['center'], ['cnn'], ['cplant'], ['jsut'], ['new'], ['company'], ['marocm'], ['apac'], ['cost'], ['cneter'], ['cplant'], ['pls'], ['help'], ['change'], ['internal'], ['order'], ['number'], ['cost'], ['center'], ['cnn'], ['cplant']] k: 7248 len: <class 'list'> Data: ['able', 'find', 'folder', 'outlook', 'able', 'find', 'folder', 'outlook'] processed_text: ['able', 'find', 'folder', 'outlook', 'able', 'find', 'folder', 'outlook'] list_processed_text: [['able'], ['find'], ['folder'], ['outlook'], ['able'], ['find'], ['folder'], ['outlook']] k: 7249 len: <class 'list'> Data: ['unable', 'send', 'mail', 'forward', 'restriction', 'unable', 'send', 'mail', 'forward', 'restriction'] processed_text: ['unable', 'send', 'mail', 'forward', 'restriction', 'unable', 'send', 'mail', 'forward', 'restriction'] list_processed_text: [['unable'], ['send'], ['mail'], ['forward'], ['restriction'], ['unable'], ['send'], ['mail'], ['forward'], ['restriction']] k: 7250 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'vacation', 'mail', 'sent', 'last', 'week', 'managed', 'see', 'return', 'minute', 'automatically', 'deployment', 'general', 'note', 'unless', 'critical', 'security', 'risk', 'deployment', 'update', 'limited', 'month', 'far', 'month', 'third', 'deployment', 'realize', 'impact', 'user', 'especially', 'unannounced', 'update', 'addition', 'user', 'similarly', 'csr', 'working', 'directly', 'customer', 'think', 'best', 'practice', 'deploy', 'automatically', 'update', 'especially', 'user', 'time', 'impact', 'yesterday', 'deployment', 'csr', 'phone', 'operating', 'hour', 'morning'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'vacation', 'mail', 'sent', 'last', 'week', 'managed', 'see', 'return', 'minute', 'automatically', 'deployment', 'general', 'note', 'unless', 'critical', 'security', 'risk', 'deployment', 'update', 'limited', 'month', 'far', 'month', 'third', 'deployment', 'realize', 'impact', 'user', 'especially', 'unannounced', 'update', 'addition', 'user', 'similarly', 'csr', 'working', 'directly', 'customer', 'think', 'best', 'practice', 'deploy', 'automatically', 'update', 'especially', 'user', 'time', 'impact', 'yesterday', 'deployment', 'csr', 'phone', 'operating', 'hour', 'morning'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['deeghyupak'], ['vacation'], ['mail'], ['sent'], ['last'], ['week'], ['managed'], ['see'], ['return'], ['minute'], ['automatically'], ['deployment'], ['general'], ['note'], ['unless'], ['critical'], ['security'], ['risk'], ['deployment'], ['update'], ['limited'], ['month'], ['far'], ['month'], ['third'], ['deployment'], ['realize'], ['impact'], ['user'], ['especially'], ['unannounced'], ['update'], ['addition'], ['user'], ['similarly'], ['csr'], ['working'], ['directly'], ['customer'], ['think'], ['best'], ['practice'], ['deploy'], ['automatically'], ['update'], ['especially'], ['user'], ['time'], ['impact'], ['yesterday'], ['deployment'], ['csr'], ['phone'], ['operating'], ['hour'], ['morning']] k: 7251 len: <class 'list'> Data: ['problem', 'landline', 'phone', 'lady', 'gentlemen,', 'landline', 'phone,', 'display', 'incompletely', 'recognizable', 'time.', 'several', 'horizontal', 'line', 'make', 'display', 'illegible'] processed_text: ['problem', 'landline', 'phone', 'lady', 'gentlemen,', 'landline', 'phone,', 'display', 'incompletely', 'recognizable', 'time.', 'several', 'horizontal', 'line', 'make', 'display', 'illegible'] list_processed_text: [['problem'], ['landline'], ['phone'], ['lady'], ['gentlemen,'], ['landline'], ['phone,'], ['display'], ['incompletely'], ['recognizable'], ['time.'], ['several'], ['horizontal'], ['line'], ['make'], ['display'], ['illegible']] k: 7252 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7253 len: <class 'list'> Data: ['please', 'advise', 'damage', 'dell', 'laptop', 'lit', 'minute', 'dear', 'sir', 'please', 'advise', 'damage', 'dell', 'laptop', 'lit', 'minute', 'see', 'attachment', 'thank', 'response', 'cooperation', 'best'] processed_text: ['please', 'advise', 'damage', 'dell', 'laptop', 'lit', 'minute', 'dear', 'sir', 'please', 'advise', 'damage', 'dell', 'laptop', 'lit', 'minute', 'see', 'attachment', 'thank', 'response', 'cooperation', 'best'] list_processed_text: [['please'], ['advise'], ['damage'], ['dell'], ['laptop'], ['lit'], ['minute'], ['dear'], ['sir'], ['please'], ['advise'], ['damage'], ['dell'], ['laptop'], ['lit'], ['minute'], ['see'], ['attachment'], ['thank'], ['response'], ['cooperation'], ['best']] k: 7254 len: <class 'list'> Data: ['demage', 'laptop', 'dear', 'sir', 'apologize', 'know', 'lot', 'mechanic', 'lap', 'top', 'power', 'button', 'surely', 'die', 'sorry', 'user', 'indonesia', 'time', 'limited', 'customer', 'visit', 'evaluation', 'data', 'provide', 'engineering', 'solution', 'possible', 'ask', 'laptop', 'exchange', 'please', 'help', 'bring', 'mr', 'abhay', 'mr', 'abhay', 'plan', 'date', 'come', 'indonesia'] processed_text: ['demage', 'laptop', 'dear', 'sir', 'apologize', 'know', 'lot', 'mechanic', 'lap', 'top', 'power', 'button', 'surely', 'die', 'sorry', 'user', 'indonesia', 'time', 'limited', 'customer', 'visit', 'evaluation', 'data', 'provide', 'engineering', 'solution', 'possible', 'ask', 'laptop', 'exchange', 'please', 'help', 'bring', 'mr', 'abhay', 'mr', 'abhay', 'plan', 'date', 'come', 'indonesia'] list_processed_text: [['demage'], ['laptop'], ['dear'], ['sir'], ['apologize'], ['know'], ['lot'], ['mechanic'], ['lap'], ['top'], ['power'], ['button'], ['surely'], ['die'], ['sorry'], ['user'], ['indonesia'], ['time'], ['limited'], ['customer'], ['visit'], ['evaluation'], ['data'], ['provide'], ['engineering'], ['solution'], ['possible'], ['ask'], ['laptop'], ['exchange'], ['please'], ['help'], ['bring'], ['mr'], ['abhay'], ['mr'], ['abhay'], ['plan'], ['date'], ['come'], ['indonesia']] k: 7255 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 7256 len: <class 'list'> Data: ['need', 'adobe', 'reader', 'download', 'need', 'adobe', 'reader', 'download'] processed_text: ['need', 'adobe', 'reader', 'download', 'need', 'adobe', 'reader', 'download'] list_processed_text: [['need'], ['adobe'], ['reader'], ['download'], ['need'], ['adobe'], ['reader'], ['download']] k: 7257 len: <class 'list'> Data: ['account', 'activation', 'good', 'morning', 'please', 'reactivate', 'account', 'colleague', 'mr', 'xrfcjkdl', 'dtnzgkby', 'vvsfgtyrinv', 'best'] processed_text: ['account', 'activation', 'good', 'morning', 'please', 'reactivate', 'account', 'colleague', 'mr', 'xrfcjkdl', 'dtnzgkby', 'vvsfgtyrinv', 'best'] list_processed_text: [['account'], ['activation'], ['good'], ['morning'], ['please'], ['reactivate'], ['account'], ['colleague'], ['mr'], ['xrfcjkdl'], ['dtnzgkby'], ['vvsfgtyrinv'], ['best']] k: 7258 len: <class 'list'> Data: ['virus', 'found', 'laptop', 'following', 'virus', 'found', 'laptop', 'please', 'rectify', 'best'] processed_text: ['virus', 'found', 'laptop', 'following', 'virus', 'found', 'laptop', 'please', 'rectify', 'best'] list_processed_text: [['virus'], ['found'], ['laptop'], ['following'], ['virus'], ['found'], ['laptop'], ['please'], ['rectify'], ['best']] k: 7259 len: <class 'list'> Data: ['skype', 'skype'] processed_text: ['skype', 'skype'] list_processed_text: [['skype'], ['skype']] k: 7260 len: <class 'list'> Data: ['attendance', 'tool', 'password', 'hello', 'attendance', 'tool', 'password', 'forgot', 'please', 'reset'] processed_text: ['attendance', 'tool', 'password', 'hello', 'attendance', 'tool', 'password', 'forgot', 'please', 'reset'] list_processed_text: [['attendance'], ['tool'], ['password'], ['hello'], ['attendance'], ['tool'], ['password'], ['forgot'], ['please'], ['reset']] k: 7261 len: <class 'list'> Data: ['reboot', 'lhqsm', 'hostname', 'hostname', 'lhqsm', 'hostname', 'sql', 'uacyltoe', 'hxgaycze', 'reboot', 'lhqsm', 'hostname', 'hostname', 'lhqsm', 'hostname', 'sql', 'uacyltoe', 'hxgaycze'] processed_text: ['reboot', 'lhqsm', 'hostname', 'hostname', 'lhqsm', 'hostname', 'sql', 'uacyltoe', 'hxgaycze', 'reboot', 'lhqsm', 'hostname', 'hostname', 'lhqsm', 'hostname', 'sql', 'uacyltoe', 'hxgaycze'] list_processed_text: [['reboot'], ['lhqsm'], ['hostname'], ['hostname'], ['lhqsm'], ['hostname'], ['sql'], ['uacyltoe'], ['hxgaycze'], ['reboot'], ['lhqsm'], ['hostname'], ['hostname'], ['lhqsm'], ['hostname'], ['sql'], ['uacyltoe'], ['hxgaycze']] k: 7262 len: <class 'list'> Data: ['po', 'issue', 'hello', 'multiple', 'cost', 'center', 'gr', 'amount', 'best'] processed_text: ['po', 'issue', 'hello', 'multiple', 'cost', 'center', 'gr', 'amount', 'best'] list_processed_text: [['po'], ['issue'], ['hello'], ['multiple'], ['cost'], ['center'], ['gr'], ['amount'], ['best']] k: 7263 len: <class 'list'> Data: ['connect', 'vpn', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'connect', 'vpn'] processed_text: ['connect', 'vpn', 'name', 'pfzxecbo', 'ptygkvzl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'connect', 'vpn'] list_processed_text: [['connect'], ['vpn'], ['name'], ['pfzxecbo'], ['ptygkvzl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['connect'], ['vpn']] k: 7264 len: <class 'list'> Data: ['office', 'office'] processed_text: ['office', 'office'] list_processed_text: [['office'], ['office']] k: 7265 len: <class 'list'> Data: ['lcow', 'show', 'since', 'pm', 'est', 'lcow', 'show', 'since', 'pm', 'est', 'location', 'new', 'albaney', 'engineering', 'tool', 'aggergrythator', 'production', 'server'] processed_text: ['lcow', 'show', 'since', 'pm', 'est', 'lcow', 'show', 'since', 'pm', 'est', 'location', 'new', 'albaney', 'engineering', 'tool', 'aggergrythator', 'production', 'server'] list_processed_text: [['lcow'], ['show'], ['since'], ['pm'], ['est'], ['lcow'], ['show'], ['since'], ['pm'], ['est'], ['location'], ['new'], ['albaney'], ['engineering'], ['tool'], ['aggergrythator'], ['production'], ['server']] k: 7266 len: <class 'list'> Data: ['please', 'help', 'add', 'mail', 'box', 'outlook', 'hello', 'team', 'could', 'please', 'add', 'mail', 'box', 'outlook', 'id', 'jilgtyq'] processed_text: ['please', 'help', 'add', 'mail', 'box', 'outlook', 'hello', 'team', 'could', 'please', 'add', 'mail', 'box', 'outlook', 'id', 'jilgtyq'] list_processed_text: [['please'], ['help'], ['add'], ['mail'], ['box'], ['outlook'], ['hello'], ['team'], ['could'], ['please'], ['add'], ['mail'], ['box'], ['outlook'], ['id'], ['jilgtyq']] k: 7267 len: <class 'list'> Data: ['network', 'outage', 'spain', 'kenci', 'site', 'hard', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'spain', 'kenci', 'site', 'hard', 'pm', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['spain'], ['kenci'], ['site'], ['hard'], ['pm'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7268 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue'] processed_text: ['login', 'issue', 'login', 'issue'] list_processed_text: [['login'], ['issue'], ['login'], ['issue']] k: 7269 len: <class 'list'> Data: ['company', 'login', 'issue', 'company', 'login', 'issue'] processed_text: ['company', 'login', 'issue', 'company', 'login', 'issue'] list_processed_text: [['company'], ['login'], ['issue'], ['company'], ['login'], ['issue']] k: 7270 len: <class 'list'> Data: ['skype', 'business', 'skype', 'business'] processed_text: ['skype', 'business', 'skype', 'business'] list_processed_text: [['skype'], ['business'], ['skype'], ['business']] k: 7271 len: <class 'list'> Data: ['hostname', 'os', 'internal', 'error', 'code', 'argument', 'kggsmgetstring', 'xad', 'hostname', 'os', 'internal', 'error', 'code', 'argument', 'kggsmgetstring', 'xad'] processed_text: ['hostname', 'os', 'internal', 'error', 'code', 'argument', 'kggsmgetstring', 'xad', 'hostname', 'os', 'internal', 'error', 'code', 'argument', 'kggsmgetstring', 'xad'] list_processed_text: [['hostname'], ['os'], ['internal'], ['error'], ['code'], ['argument'], ['kggsmgetstring'], ['xad'], ['hostname'], ['os'], ['internal'], ['error'], ['code'], ['argument'], ['kggsmgetstring'], ['xad']] k: 7272 len: <class 'list'> Data: ['unable', 'submit', 'discount', 'form', 'unable', 'submit', 'discount', 'form'] processed_text: ['unable', 'submit', 'discount', 'form', 'unable', 'submit', 'discount', 'form'] list_processed_text: [['unable'], ['submit'], ['discount'], ['form'], ['unable'], ['submit'], ['discount'], ['form']] k: 7273 len: <class 'list'> Data: ['reset', 'erp', 'sid', 'password', 'user', 'soemec', 'reset', 'erp', 'sid', 'password', 'user', 'soemec'] processed_text: ['reset', 'erp', 'sid', 'password', 'user', 'soemec', 'reset', 'erp', 'sid', 'password', 'user', 'soemec'] list_processed_text: [['reset'], ['erp'], ['sid'], ['password'], ['user'], ['soemec'], ['reset'], ['erp'], ['sid'], ['password'], ['user'], ['soemec']] k: 7274 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] processed_text: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn'], ['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn']] k: 7275 len: <class 'list'> Data: ['user', 'got', 'pop', 'displayed', 'virus', 'browser', 'user', 'got', 'pop', 'displayed', 'virus', 'browser', 'advised', 'user', 'restart', 'pc', 'unable', 'open', 'anyother', 'window', 'issue', 'resolved'] processed_text: ['user', 'got', 'pop', 'displayed', 'virus', 'browser', 'user', 'got', 'pop', 'displayed', 'virus', 'browser', 'advised', 'user', 'restart', 'pc', 'unable', 'open', 'anyother', 'window', 'issue', 'resolved'] list_processed_text: [['user'], ['got'], ['pop'], ['displayed'], ['virus'], ['browser'], ['user'], ['got'], ['pop'], ['displayed'], ['virus'], ['browser'], ['advised'], ['user'], ['restart'], ['pc'], ['unable'], ['open'], ['anyother'], ['window'], ['issue'], ['resolved']] k: 7276 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7277 len: <class 'list'> Data: ['please', 'extend', 'wireless', 'access', 'ticket', 'consultant', 'vmhfteqo', 'jpsfikow', 'schneider', 'down', 'need', 'wireless', 'account', 'extended', 'end', 'year', 'due', 'expire', 'per', 'ticket'] processed_text: ['please', 'extend', 'wireless', 'access', 'ticket', 'consultant', 'vmhfteqo', 'jpsfikow', 'schneider', 'down', 'need', 'wireless', 'account', 'extended', 'end', 'year', 'due', 'expire', 'per', 'ticket'] list_processed_text: [['please'], ['extend'], ['wireless'], ['access'], ['ticket'], ['consultant'], ['vmhfteqo'], ['jpsfikow'], ['schneider'], ['down'], ['need'], ['wireless'], ['account'], ['extended'], ['end'], ['year'], ['due'], ['expire'], ['per'], ['ticket']] k: 7278 len: <class 'list'> Data: ['lcosm', 'conformaclad', 'shop', 'floor', 'app', 'server', 'sqlagent', 'exe', 'sqlservr', 'exe', 'showing', 'since', 'pm', 'et', 'lcosm', 'conformaclad', 'shop', 'floor', 'app', 'server', 'sqlagent', 'exe', 'sqlservr', 'exe', 'showing', 'since', 'pm', 'et'] processed_text: ['lcosm', 'conformaclad', 'shop', 'floor', 'app', 'server', 'sqlagent', 'exe', 'sqlservr', 'exe', 'showing', 'since', 'pm', 'et', 'lcosm', 'conformaclad', 'shop', 'floor', 'app', 'server', 'sqlagent', 'exe', 'sqlservr', 'exe', 'showing', 'since', 'pm', 'et'] list_processed_text: [['lcosm'], ['conformaclad'], ['shop'], ['floor'], ['app'], ['server'], ['sqlagent'], ['exe'], ['sqlservr'], ['exe'], ['showing'], ['since'], ['pm'], ['et'], ['lcosm'], ['conformaclad'], ['shop'], ['floor'], ['app'], ['server'], ['sqlagent'], ['exe'], ['sqlservr'], ['exe'], ['showing'], ['since'], ['pm'], ['et']] k: 7279 len: <class 'list'> Data: ['unable', 'login', 'microsoft', 'email', 'account', 'unable', 'login', 'microsoft', 'email', 'account'] processed_text: ['unable', 'login', 'microsoft', 'email', 'account', 'unable', 'login', 'microsoft', 'email', 'account'] list_processed_text: [['unable'], ['login'], ['microsoft'], ['email'], ['account'], ['unable'], ['login'], ['microsoft'], ['email'], ['account']] k: 7280 len: <class 'list'> Data: ['power', 'outage', 'usa', 'company', 'inc', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'usa', 'company', 'inc', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'slo', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['usa'], ['company'], ['inc'], ['vpn'], ['circuit'], ['pm'], ['et'], ['site'], ['primary'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['slo'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7281 len: <class 'list'> Data: ['vitalyst', 'unable', 'access', 'forecast', 'plan', 'crm', 'unable', 'access', 'forecast', 'plan', 'crm'] processed_text: ['vitalyst', 'unable', 'access', 'forecast', 'plan', 'crm', 'unable', 'access', 'forecast', 'plan', 'crm'] list_processed_text: [['vitalyst'], ['unable'], ['access'], ['forecast'], ['plan'], ['crm'], ['unable'], ['access'], ['forecast'], ['plan'], ['crm']] k: 7282 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7283 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7284 len: <class 'list'> Data: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'system', 'name', 'evhl', 'user', 'name', 'companypzyre', 'mqlsfkre', 'ldnfgt', 'location', 'germany', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'evhl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'remote', 'procedure', 'call', 'rpc', 'also', 'known', 'loovexfbjy', 'lmcaqfkz', 'loc', 'srv', 'microsoft', 'window', 'protocol', 'allows', 'application', 'execute', 'code', 'another', 'address', 'space', 'commonly', 'another', 'computer', 'shared', 'network', 'without', 'programdntymer', 'explicitly', 'coding', 'detail', 'remote', 'interaction', 'programdntymer', 'writes', 'germanytially', 'code', 'whether', 'subroutine', 'local', 'executing', 'programdnty', 'remote', 'rpc', 'initiated', 'client', 'sends', 'request', 'message', 'known', 'remote', 'server', 'execute', 'specified', 'procedure', 'supplied', 'paramdntyeters', 'remote', 'server', 'sends', 'response', 'client', 'application', 'continues', 'process', 'rpc', 'run', 'port', 'used', 'client', 'server', 'application', 'microsoft', 'exchange', 'client', 'mgermanyger', 'service', 'dhcp', 'server', 'dns', 'server', 'win', 'well', 'window', 'application', 'vulnerability', 'rpc', 'also', 'leveraged', 'several', 'worm', 'mean', 'propagation', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'x'] processed_text: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'system', 'name', 'evhl', 'user', 'name', 'companypzyre', 'mqlsfkre', 'ldnfgt', 'location', 'germany', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'evhl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'remote', 'procedure', 'call', 'rpc', 'also', 'known', 'loovexfbjy', 'lmcaqfkz', 'loc', 'srv', 'microsoft', 'window', 'protocol', 'allows', 'application', 'execute', 'code', 'another', 'address', 'space', 'commonly', 'another', 'computer', 'shared', 'network', 'without', 'programdntymer', 'explicitly', 'coding', 'detail', 'remote', 'interaction', 'programdntymer', 'writes', 'germanytially', 'code', 'whether', 'subroutine', 'local', 'executing', 'programdnty', 'remote', 'rpc', 'initiated', 'client', 'sends', 'request', 'message', 'known', 'remote', 'server', 'execute', 'specified', 'procedure', 'supplied', 'paramdntyeters', 'remote', 'server', 'sends', 'response', 'client', 'application', 'continues', 'process', 'rpc', 'run', 'port', 'used', 'client', 'server', 'application', 'microsoft', 'exchange', 'client', 'mgermanyger', 'service', 'dhcp', 'server', 'dns', 'server', 'win', 'well', 'window', 'application', 'vulnerability', 'rpc', 'also', 'leveraged', 'several', 'worm', 'mean', 'propagation', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'x'] list_processed_text: [['security'], ['incident'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['source'], ['ip'], ['system'], ['name'], ['evhl'], ['user'], ['name'], ['companypzyre'], ['mqlsfkre'], ['ldnfgt'], ['location'], ['germany'], ['sm'], ['status'], ['updated'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['incident'], ['overview'], ['seeing'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['evhl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['remote'], ['procedure'], ['call'], ['rpc'], ['also'], ['known'], ['loovexfbjy'], ['lmcaqfkz'], ['loc'], ['srv'], ['microsoft'], ['window'], ['protocol'], ['allows'], ['application'], ['execute'], ['code'], ['another'], ['address'], ['space'], ['commonly'], ['another'], ['computer'], ['shared'], ['network'], ['without'], ['programdntymer'], ['explicitly'], ['coding'], ['detail'], ['remote'], ['interaction'], ['programdntymer'], ['writes'], ['germanytially'], ['code'], ['whether'], ['subroutine'], ['local'], ['executing'], ['programdnty'], ['remote'], ['rpc'], ['initiated'], ['client'], ['sends'], ['request'], ['message'], ['known'], ['remote'], ['server'], ['execute'], ['specified'], ['procedure'], ['supplied'], ['paramdntyeters'], ['remote'], ['server'], ['sends'], ['response'], ['client'], ['application'], ['continues'], ['process'], ['rpc'], ['run'], ['port'], ['used'], ['client'], ['server'], ['application'], ['microsoft'], ['exchange'], ['client'], ['mgermanyger'], ['service'], ['dhcp'], ['server'], ['dns'], ['server'], ['win'], ['well'], ['window'], ['application'], ['vulnerability'], ['rpc'], ['also'], ['leveraged'], ['several'], ['worm'], ['mean'], ['propagation'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['evhl'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['ulm'], ['deu'], ['connection'], ['directionality'], ['outgoing'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['event'], ['id'], ['event'], ['summary'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['evhl'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['ulm'], ['deu'], ['connection'], ['directionality'], ['outgoing'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['x']] k: 7285 len: <class 'list'> Data: ['password', 'reset', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'please', 'advise', 'crm', 'password', 'start'] processed_text: ['password', 'reset', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hello', 'please', 'advise', 'crm', 'password', 'start'] list_processed_text: [['password'], ['reset'], ['name'], ['mikhghytr'], ['karaffa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hello'], ['please'], ['advise'], ['crm'], ['password'], ['start']] k: 7286 len: <class 'list'> Data: ['update', 'crm', 'access', 'ticket', 'update', 'crm', 'access', 'ticket'] processed_text: ['update', 'crm', 'access', 'ticket', 'update', 'crm', 'access', 'ticket'] list_processed_text: [['update'], ['crm'], ['access'], ['ticket'], ['update'], ['crm'], ['access'], ['ticket']] k: 7287 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 7288 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 7289 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 7290 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 7291 len: <class 'list'> Data: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'system', 'name', 'evhl', 'user', 'name', 'companypzyre', 'mqlsfkre', 'ldnfgt', 'location', 'germany', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'evhl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'remote', 'procedure', 'call', 'rpc', 'also', 'known', 'loovexfbjy', 'lmcaqfkz', 'loc', 'srv', 'microsoft', 'window', 'protocol', 'allows', 'application', 'execute', 'code', 'another', 'address', 'space', 'commonly', 'another', 'computer', 'shared', 'network', 'without', 'programdntymer', 'explicitly', 'coding', 'detail', 'remote', 'interaction', 'programdntymer', 'writes', 'germanytially', 'code', 'whether', 'subroutine', 'local', 'executing', 'programdnty', 'remote', 'rpc', 'initiated', 'client', 'sends', 'request', 'message', 'known', 'remote', 'server', 'execute', 'specified', 'procedure', 'supplied', 'paramdntyeters', 'remote', 'server', 'sends', 'response', 'client', 'application', 'continues', 'process', 'rpc', 'run', 'port', 'used', 'client', 'server', 'application', 'microsoft', 'exchange', 'client', 'mgermanyger', 'service', 'dhcp', 'server', 'dns', 'server', 'win', 'well', 'window', 'application', 'vulnerability', 'rpc', 'also', 'leveraged', 'several', 'worm', 'mean', 'propagation', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'x'] processed_text: ['security', 'incident', 'repeat', 'outbound', 'connection', 'tcp', 'source', 'ip', 'system', 'name', 'evhl', 'user', 'name', 'companypzyre', 'mqlsfkre', 'ldnfgt', 'location', 'germany', 'sm', 'status', 'updated', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'evhl', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'remote', 'procedure', 'call', 'rpc', 'also', 'known', 'loovexfbjy', 'lmcaqfkz', 'loc', 'srv', 'microsoft', 'window', 'protocol', 'allows', 'application', 'execute', 'code', 'another', 'address', 'space', 'commonly', 'another', 'computer', 'shared', 'network', 'without', 'programdntymer', 'explicitly', 'coding', 'detail', 'remote', 'interaction', 'programdntymer', 'writes', 'germanytially', 'code', 'whether', 'subroutine', 'local', 'executing', 'programdnty', 'remote', 'rpc', 'initiated', 'client', 'sends', 'request', 'message', 'known', 'remote', 'server', 'execute', 'specified', 'procedure', 'supplied', 'paramdntyeters', 'remote', 'server', 'sends', 'response', 'client', 'application', 'continues', 'process', 'rpc', 'run', 'port', 'used', 'client', 'server', 'application', 'microsoft', 'exchange', 'client', 'mgermanyger', 'service', 'dhcp', 'server', 'dns', 'server', 'win', 'well', 'window', 'application', 'vulnerability', 'rpc', 'also', 'leveraged', 'several', 'worm', 'mean', 'propagation', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'repeat', 'outbound', 'connection', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'evhl', 'source', 'port', 'destination', 'ip', 'destination', 'port', 'destination', 'ip', 'geolocation', 'ulm', 'deu', 'connection', 'directionality', 'outgoing', 'protocol', 'tcp', 'device', 'information', 'device', 'ip', 'device', 'name', 'company', 'european', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'noris', 'access', 'group', 'acl', 'inside', 'xedbf', 'x'] list_processed_text: [['security'], ['incident'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['source'], ['ip'], ['system'], ['name'], ['evhl'], ['user'], ['name'], ['companypzyre'], ['mqlsfkre'], ['ldnfgt'], ['location'], ['germany'], ['sm'], ['status'], ['updated'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['incident'], ['overview'], ['seeing'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['evhl'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['remote'], ['procedure'], ['call'], ['rpc'], ['also'], ['known'], ['loovexfbjy'], ['lmcaqfkz'], ['loc'], ['srv'], ['microsoft'], ['window'], ['protocol'], ['allows'], ['application'], ['execute'], ['code'], ['another'], ['address'], ['space'], ['commonly'], ['another'], ['computer'], ['shared'], ['network'], ['without'], ['programdntymer'], ['explicitly'], ['coding'], ['detail'], ['remote'], ['interaction'], ['programdntymer'], ['writes'], ['germanytially'], ['code'], ['whether'], ['subroutine'], ['local'], ['executing'], ['programdnty'], ['remote'], ['rpc'], ['initiated'], ['client'], ['sends'], ['request'], ['message'], ['known'], ['remote'], ['server'], ['execute'], ['specified'], ['procedure'], ['supplied'], ['paramdntyeters'], ['remote'], ['server'], ['sends'], ['response'], ['client'], ['application'], ['continues'], ['process'], ['rpc'], ['run'], ['port'], ['used'], ['client'], ['server'], ['application'], ['microsoft'], ['exchange'], ['client'], ['mgermanyger'], ['service'], ['dhcp'], ['server'], ['dns'], ['server'], ['win'], ['well'], ['window'], ['application'], ['vulnerability'], ['rpc'], ['also'], ['leveraged'], ['several'], ['worm'], ['mean'], ['propagation'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['evhl'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['ulm'], ['deu'], ['connection'], ['directionality'], ['outgoing'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['event'], ['id'], ['event'], ['summary'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['evhl'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['ulm'], ['deu'], ['connection'], ['directionality'], ['outgoing'], ['protocol'], ['tcp'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['noris'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['x']] k: 7292 len: <class 'list'> Data: ['circuit', 'outage', 'carrier', 'india', 'telecom', 'vendor', 'circuit', 'since', 'et', 'site', 'primary', 'tikona', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'carrier', 'india', 'telecom', 'vendor', 'circuit', 'since', 'et', 'site', 'primary', 'tikona', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['carrier'], ['india'], ['telecom'], ['vendor'], ['circuit'], ['since'], ['et'], ['site'], ['primary'], ['tikona'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7293 len: <class 'list'> Data: ['unable', 'access', 'site', 'unable', 'access', 'site'] processed_text: ['unable', 'access', 'site', 'unable', 'access', 'site'] list_processed_text: [['unable'], ['access'], ['site'], ['unable'], ['access'], ['site']] k: 7294 len: <class 'list'> Data: ['could', 'please', 'help', 'set', 'erp', 'user', 'name', 'password', 'work', 'hello', 'could', 'please', 'help', 'set', 'erp', 'user', 'name', 'password', 'work'] processed_text: ['could', 'please', 'help', 'set', 'erp', 'user', 'name', 'password', 'work', 'hello', 'could', 'please', 'help', 'set', 'erp', 'user', 'name', 'password', 'work'] list_processed_text: [['could'], ['please'], ['help'], ['set'], ['erp'], ['user'], ['name'], ['password'], ['work'], ['hello'], ['could'], ['please'], ['help'], ['set'], ['erp'], ['user'], ['name'], ['password'], ['work']] k: 7295 len: <class 'list'> Data: ['zmmdata', 'currency', 'error', 'trying', 'extend', 'plant', 'assign', 'vaghjmskee', 'krisyuhnyrt', 'zmmdata', 'currency', 'error', 'trying', 'extend', 'plant', 'assign', 'vaghjmskee', 'krisyuhnyrt', 'getting', 'following', 'error', 'trying', 'extend', 'plant', 'example', 'mm', 'currency', 'amount', 'jpy', 'field', 'moving', 'pr', 'could', 'converted'] processed_text: ['zmmdata', 'currency', 'error', 'trying', 'extend', 'plant', 'assign', 'vaghjmskee', 'krisyuhnyrt', 'zmmdata', 'currency', 'error', 'trying', 'extend', 'plant', 'assign', 'vaghjmskee', 'krisyuhnyrt', 'getting', 'following', 'error', 'trying', 'extend', 'plant', 'example', 'mm', 'currency', 'amount', 'jpy', 'field', 'moving', 'pr', 'could', 'converted'] list_processed_text: [['zmmdata'], ['currency'], ['error'], ['trying'], ['extend'], ['plant'], ['assign'], ['vaghjmskee'], ['krisyuhnyrt'], ['zmmdata'], ['currency'], ['error'], ['trying'], ['extend'], ['plant'], ['assign'], ['vaghjmskee'], ['krisyuhnyrt'], ['getting'], ['following'], ['error'], ['trying'], ['extend'], ['plant'], ['example'], ['mm'], ['currency'], ['amount'], ['jpy'], ['field'], ['moving'], ['pr'], ['could'], ['converted']] k: 7296 len: <class 'list'> Data: ['unable', 'connect', 'dv', 'unable', 'connect', 'dv'] processed_text: ['unable', 'connect', 'dv', 'unable', 'connect', 'dv'] list_processed_text: [['unable'], ['connect'], ['dv'], ['unable'], ['connect'], ['dv']] k: 7297 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7298 len: <class 'list'> Data: ['security', 'incident', 'sw', 'broadscanning', 'possible', 'vulnerability', 'scanning', 'seeing', 'activity', 'indicating', 'host', 'conducting', 'vulnerability', 'scan', 'scan', 'used', 'identify', 'specific', 'vulnerability', 'remote', 'host', 'could', 'exploited', 'potentially', 'interfere', 'service', 'availability', 'execute', 'code', 'usa', 'attacker', 'unauthorized', 'access', 'result', 'scan', 'could', 'used', 'future', 'attack', 'exploitation', 'targeted', 'host', 'based', 'internet', 'visibility', 'detecting', 'non', 'targeted', 'broadscan', 'similar', 'activity', 'source', 'detected', 'across', 'client', 'base', 'please', 'consider', 'blocking', 'ip', 'address', 'investigating', 'host', 'malicious', 'scrip', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'broadscanning', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'broadscanning', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'st', 'pethrywrsburg', 'ru', 'destination', 'ip', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'status', 'code', 'user', 'agent', 'mozilla', 'window', 'nt', 'rv', 'gecko', 'firefox', 'host', 'www', 'companyipg', 'com', 'full', 'url', 'path', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'file', 'name', 'wp', 'setup', 'php', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xc', 'ack', 'xec', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'ex', 'http', 'hostname', 'www', 'companyipg', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'ae', 'ca', 'wz', 'ca', 'ca', 'ea', 'ac', 'ce', 'f', 'pi', 'ec', 'sk', 'eeec', 'b', 'f', 'post', 'wp', 'fe', 'f', 'e', 'content', 'plugins', 'e', 'e', 'dd', 'inboundio', 'markhtye', 'f', 'e', 'ting', 'admin', 'parti', 'f', 'cf', 'al', 'csv', 'uploader', 'f', 'php', 'http', 'f', 'eb', 'e', 'ost', 'www', 'companyme', 'c', 'fd', 'da', 'e', 'talipg', 'com', 'cont', 'e', 'c', 'ent', 'length', 'f', 'accept', 'encoding', 'c', 'gzip', 'deflate', 'fa', 'da', 'accept', 'u', 'sid', 'df', 'cc', 'er', 'agent', 'mozill', 'e', 'f', 'window', 'b', 'e', 'rv', 'ff', 'gecko', 'f', 'fe', 'irefox', 'con', 'f', 'ea', 'nection', 'keep', 'al', 'fe', 'ive', 'content', 'typ', 'f', 'e', 'multipart', 'dd', 'f', 'data', 'boundary', 'baafd', 'cebef', 'ad', 'ad', 'baa', 'fdceb', 'fe', 'ef', 'content', 'fe', 'disposition', 'fo', 'b', 'rm', 'data', 'name', 'b', 'e', 'ile', 'filename', 'e', 'wp', 'setup', 'php', 'fe', 'ontent', 'type', 'tex', 'c', 'ed', 'ad', 'ac', 'plain', 'php', 'isset', 'quest', 'ee', 'e', 'header', 'http', 'f', 'e', 'found', 'f', 'f', 'f', 'f', 'b', 'dc', 'quest', 'ee', 'b', 'fe', 'da', 'dd', 'ba', 'afdceb', 'dd', 'da', 'ef', 'pcap', 'hex', 'event', 'id', 'event', 'summary', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'st', 'pethrywrsburg', 'ru', 'destination', 'ip', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'status', 'code', 'user', 'agent', 'mozilla', 'window', 'nt', 'rv', 'gecko', 'firefox', 'host', 'www', 'companyipg', 'com', 'full', 'url', 'path', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'file', 'name', 'wp', 'setup', 'php', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xff', 'ack', 'efb', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'ex', 'http', 'hostname', 'www', 'companyipg', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'bf', 'ca', 'ca', 'ca', 'ea', 'dd', 'ce', 'ff', 'pc', 'def', 'f', 'eeec', 'b', 'f', 'post', 'wp', 'fe', 'f', 'e', 'content', 'plugins', 'e', 'e', 'dd', 'inboundio', 'markhtye', 'f', 'e', 'ting', 'admin', 'parti', 'f', 'cf', 'al', 'csv', 'uploader', 'f', 'php', 'http', 'f', 'eb', 'e', 'ost', 'www', 'companyme', 'c', 'fd', 'da', 'e', 'talipg', 'com', 'cont', 'e', 'c', 'ent', 'length', 'f', 'accept', 'encoding', 'c', 'gzip', 'deflate', 'fa', 'da', 'accept', 'u', 'sid', 'df', 'cc', 'er', 'agent', 'mozill', 'e', 'f', 'window', 'b', 'e', 'rv', 'ff', 'gecko', 'f', 'fe', 'irefox', 'con', 'f', 'ea', 'nection', 'keep', 'al', 'fe', 'ive', 'content', 'typ', 'f', 'e', 'multipart', 'dd', 'f', 'data', 'boundary', 'baafd', 'cebef', 'ad', 'ad', 'baa', 'fdceb', 'fe', 'ef', 'content', 'fe', 'disposition', 'fo', 'b', 'rm', 'data', 'name', 'b', 'e', 'ile', 'filename', 'e', 'wp', 'setup', 'php', 'fe', 'ontent', 'type', 'tex', 'c', 'ed', 'ad', 'ac', 'plain', 'php', 'isset', 'quest', 'ee', 'e', 'header', 'http', 'f', 'e', 'found', 'f', 'f', 'f', 'f', 'b', 'dc', 'quest', 'ee', 'b', 'fe', 'da', 'dd', 'ba', 'afdceb', 'dd', 'da', 'ef', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'sw', 'broadscanning', 'possible', 'vulnerability', 'scanning', 'seeing', 'activity', 'indicating', 'host', 'conducting', 'vulnerability', 'scan', 'scan', 'used', 'identify', 'specific', 'vulnerability', 'remote', 'host', 'could', 'exploited', 'potentially', 'interfere', 'service', 'availability', 'execute', 'code', 'usa', 'attacker', 'unauthorized', 'access', 'result', 'scan', 'could', 'used', 'future', 'attack', 'exploitation', 'targeted', 'host', 'based', 'internet', 'visibility', 'detecting', 'non', 'targeted', 'broadscan', 'similar', 'activity', 'source', 'detected', 'across', 'client', 'base', 'please', 'consider', 'blocking', 'ip', 'address', 'investigating', 'host', 'malicious', 'scrip', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'broadscanning', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'autoresolve', 'broadscanning', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'st', 'pethrywrsburg', 'ru', 'destination', 'ip', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'status', 'code', 'user', 'agent', 'mozilla', 'window', 'nt', 'rv', 'gecko', 'firefox', 'host', 'www', 'companyipg', 'com', 'full', 'url', 'path', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'file', 'name', 'wp', 'setup', 'php', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xc', 'ack', 'xec', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'ex', 'http', 'hostname', 'www', 'companyipg', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'ae', 'ca', 'wz', 'ca', 'ca', 'ea', 'ac', 'ce', 'f', 'pi', 'ec', 'sk', 'eeec', 'b', 'f', 'post', 'wp', 'fe', 'f', 'e', 'content', 'plugins', 'e', 'e', 'dd', 'inboundio', 'markhtye', 'f', 'e', 'ting', 'admin', 'parti', 'f', 'cf', 'al', 'csv', 'uploader', 'f', 'php', 'http', 'f', 'eb', 'e', 'ost', 'www', 'companyme', 'c', 'fd', 'da', 'e', 'talipg', 'com', 'cont', 'e', 'c', 'ent', 'length', 'f', 'accept', 'encoding', 'c', 'gzip', 'deflate', 'fa', 'da', 'accept', 'u', 'sid', 'df', 'cc', 'er', 'agent', 'mozill', 'e', 'f', 'window', 'b', 'e', 'rv', 'ff', 'gecko', 'f', 'fe', 'irefox', 'con', 'f', 'ea', 'nection', 'keep', 'al', 'fe', 'ive', 'content', 'typ', 'f', 'e', 'multipart', 'dd', 'f', 'data', 'boundary', 'baafd', 'cebef', 'ad', 'ad', 'baa', 'fdceb', 'fe', 'ef', 'content', 'fe', 'disposition', 'fo', 'b', 'rm', 'data', 'name', 'b', 'e', 'ile', 'filename', 'e', 'wp', 'setup', 'php', 'fe', 'ontent', 'type', 'tex', 'c', 'ed', 'ad', 'ac', 'plain', 'php', 'isset', 'quest', 'ee', 'e', 'header', 'http', 'f', 'e', 'found', 'f', 'f', 'f', 'f', 'b', 'dc', 'quest', 'ee', 'b', 'fe', 'da', 'dd', 'ba', 'afdceb', 'dd', 'da', 'ef', 'pcap', 'hex', 'event', 'id', 'event', 'summary', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'port', 'source', 'ip', 'geolocation', 'st', 'pethrywrsburg', 'ru', 'destination', 'ip', 'destination', 'port', 'connection', 'directionality', 'incoming', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'status', 'code', 'user', 'agent', 'mozilla', 'window', 'nt', 'rv', 'gecko', 'firefox', 'host', 'www', 'companyipg', 'com', 'full', 'url', 'path', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensplant', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'vendor', 'reference', 'vid', 'file', 'name', 'wp', 'setup', 'php', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'suspicious', 'executable', 'file', 'upload', 'php', 'http', 'incoming', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xff', 'ack', 'efb', 'win', 'tcplen', 'tcp', 'option', 'nop', 'nop', 't', 'pcap', 'ex', 'http', 'uri', 'wp', 'content', 'plugins', 'inboundio', 'markhtyeting', 'admin', 'partial', 'csv', 'uploader', 'php', 'ex', 'http', 'hostname', 'www', 'companyipg', 'com', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'cd', 'bf', 'ca', 'ca', 'ca', 'ea', 'dd', 'ce', 'ff', 'pc', 'def', 'f', 'eeec', 'b', 'f', 'post', 'wp', 'fe', 'f', 'e', 'content', 'plugins', 'e', 'e', 'dd', 'inboundio', 'markhtye', 'f', 'e', 'ting', 'admin', 'parti', 'f', 'cf', 'al', 'csv', 'uploader', 'f', 'php', 'http', 'f', 'eb', 'e', 'ost', 'www', 'companyme', 'c', 'fd', 'da', 'e', 'talipg', 'com', 'cont', 'e', 'c', 'ent', 'length', 'f', 'accept', 'encoding', 'c', 'gzip', 'deflate', 'fa', 'da', 'accept', 'u', 'sid', 'df', 'cc', 'er', 'agent', 'mozill', 'e', 'f', 'window', 'b', 'e', 'rv', 'ff', 'gecko', 'f', 'fe', 'irefox', 'con', 'f', 'ea', 'nection', 'keep', 'al', 'fe', 'ive', 'content', 'typ', 'f', 'e', 'multipart', 'dd', 'f', 'data', 'boundary', 'baafd', 'cebef', 'ad', 'ad', 'baa', 'fdceb', 'fe', 'ef', 'content', 'fe', 'disposition', 'fo', 'b', 'rm', 'data', 'name', 'b', 'e', 'ile', 'filename', 'e', 'wp', 'setup', 'php', 'fe', 'ontent', 'type', 'tex', 'c', 'ed', 'ad', 'ac', 'plain', 'php', 'isset', 'quest', 'ee', 'e', 'header', 'http', 'f', 'e', 'found', 'f', 'f', 'f', 'f', 'b', 'dc', 'quest', 'ee', 'b', 'fe', 'da', 'dd', 'ba', 'afdceb', 'dd', 'da', 'ef', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['sw'], ['broadscanning'], ['possible'], ['vulnerability'], ['scanning'], ['seeing'], ['activity'], ['indicating'], ['host'], ['conducting'], ['vulnerability'], ['scan'], ['scan'], ['used'], ['identify'], ['specific'], ['vulnerability'], ['remote'], ['host'], ['could'], ['exploited'], ['potentially'], ['interfere'], ['service'], ['availability'], ['execute'], ['code'], ['usa'], ['attacker'], ['unauthorized'], ['access'], ['result'], ['scan'], ['could'], ['used'], ['future'], ['attack'], ['exploitation'], ['targeted'], ['host'], ['based'], ['internet'], ['visibility'], ['detecting'], ['non'], ['targeted'], ['broadscan'], ['similar'], ['activity'], ['source'], ['detected'], ['across'], ['client'], ['base'], ['please'], ['consider'], ['blocking'], ['ip'], ['address'], ['investigating'], ['host'], ['malicious'], ['scrip'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['broadscanning'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['autoresolve'], ['broadscanning'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['suspicious'], ['executable'], ['file'], ['upload'], ['php'], ['http'], ['incoming'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['st'], ['pethrywrsburg'], ['ru'], ['destination'], ['ip'], ['destination'], ['port'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['status'], ['code'], ['user'], ['agent'], ['mozilla'], ['window'], ['nt'], ['rv'], ['gecko'], ['firefox'], ['host'], ['www'], ['companyipg'], ['com'], ['full'], ['url'], ['path'], ['wp'], ['content'], ['plugins'], ['inboundio'], ['markhtyeting'], ['admin'], ['partial'], ['csv'], ['uploader'], ['php'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['vendor'], ['reference'], ['vid'], ['file'], ['name'], ['wp'], ['setup'], ['php'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['suspicious'], ['executable'], ['file'], ['upload'], ['php'], ['http'], ['incoming'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['xref'], ['vid'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xc'], ['ack'], ['xec'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['ex'], ['http'], ['uri'], ['wp'], ['content'], ['plugins'], ['inboundio'], ['markhtyeting'], ['admin'], ['partial'], ['csv'], ['uploader'], ['php'], ['ex'], ['http'], ['hostname'], ['www'], ['companyipg'], ['com'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['cd'], ['ae'], ['ca'], ['wz'], ['ca'], ['ca'], ['ea'], ['ac'], ['ce'], ['f'], ['pi'], ['ec'], ['sk'], ['eeec'], ['b'], ['f'], ['post'], ['wp'], ['fe'], ['f'], ['e'], ['content'], ['plugins'], ['e'], ['e'], ['dd'], ['inboundio'], ['markhtye'], ['f'], ['e'], ['ting'], ['admin'], ['parti'], ['f'], ['cf'], ['al'], ['csv'], ['uploader'], ['f'], ['php'], ['http'], ['f'], ['eb'], ['e'], ['ost'], ['www'], ['companyme'], ['c'], ['fd'], ['da'], ['e'], ['talipg'], ['com'], ['cont'], ['e'], ['c'], ['ent'], ['length'], ['f'], ['accept'], ['encoding'], ['c'], ['gzip'], ['deflate'], ['fa'], ['da'], ['accept'], ['u'], ['sid'], ['df'], ['cc'], ['er'], ['agent'], ['mozill'], ['e'], ['f'], ['window'], ['b'], ['e'], ['rv'], ['ff'], ['gecko'], ['f'], ['fe'], ['irefox'], ['con'], ['f'], ['ea'], ['nection'], ['keep'], ['al'], ['fe'], ['ive'], ['content'], ['typ'], ['f'], ['e'], ['multipart'], ['dd'], ['f'], ['data'], ['boundary'], ['baafd'], ['cebef'], ['ad'], ['ad'], ['baa'], ['fdceb'], ['fe'], ['ef'], ['content'], ['fe'], ['disposition'], ['fo'], ['b'], ['rm'], ['data'], ['name'], ['b'], ['e'], ['ile'], ['filename'], ['e'], ['wp'], ['setup'], ['php'], ['fe'], ['ontent'], ['type'], ['tex'], ['c'], ['ed'], ['ad'], ['ac'], ['plain'], ['php'], ['isset'], ['quest'], ['ee'], ['e'], ['header'], ['http'], ['f'], ['e'], ['found'], ['f'], ['f'], ['f'], ['f'], ['b'], ['dc'], ['quest'], ['ee'], ['b'], ['fe'], ['da'], ['dd'], ['ba'], ['afdceb'], ['dd'], ['da'], ['ef'], ['pcap'], ['hex'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['suspicious'], ['executable'], ['file'], ['upload'], ['php'], ['http'], ['incoming'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['port'], ['source'], ['ip'], ['geolocation'], ['st'], ['pethrywrsburg'], ['ru'], ['destination'], ['ip'], ['destination'], ['port'], ['connection'], ['directionality'], ['incoming'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['status'], ['code'], ['user'], ['agent'], ['mozilla'], ['window'], ['nt'], ['rv'], ['gecko'], ['firefox'], ['host'], ['www'], ['companyipg'], ['com'], ['full'], ['url'], ['path'], ['wp'], ['content'], ['plugins'], ['inboundio'], ['markhtyeting'], ['admin'], ['partial'], ['csv'], ['uploader'], ['php'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensplant'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['vendor'], ['reference'], ['vid'], ['file'], ['name'], ['wp'], ['setup'], ['php'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['suspicious'], ['executable'], ['file'], ['upload'], ['php'], ['http'], ['incoming'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['xref'], ['vid'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xff'], ['ack'], ['efb'], ['win'], ['tcplen'], ['tcp'], ['option'], ['nop'], ['nop'], ['t'], ['pcap'], ['ex'], ['http'], ['uri'], ['wp'], ['content'], ['plugins'], ['inboundio'], ['markhtyeting'], ['admin'], ['partial'], ['csv'], ['uploader'], ['php'], ['ex'], ['http'], ['hostname'], ['www'], ['companyipg'], ['com'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['cd'], ['bf'], ['ca'], ['ca'], ['ca'], ['ea'], ['dd'], ['ce'], ['ff'], ['pc'], ['def'], ['f'], ['eeec'], ['b'], ['f'], ['post'], ['wp'], ['fe'], ['f'], ['e'], ['content'], ['plugins'], ['e'], ['e'], ['dd'], ['inboundio'], ['markhtye'], ['f'], ['e'], ['ting'], ['admin'], ['parti'], ['f'], ['cf'], ['al'], ['csv'], ['uploader'], ['f'], ['php'], ['http'], ['f'], ['eb'], ['e'], ['ost'], ['www'], ['companyme'], ['c'], ['fd'], ['da'], ['e'], ['talipg'], ['com'], ['cont'], ['e'], ['c'], ['ent'], ['length'], ['f'], ['accept'], ['encoding'], ['c'], ['gzip'], ['deflate'], ['fa'], ['da'], ['accept'], ['u'], ['sid'], ['df'], ['cc'], ['er'], ['agent'], ['mozill'], ['e'], ['f'], ['window'], ['b'], ['e'], ['rv'], ['ff'], ['gecko'], ['f'], ['fe'], ['irefox'], ['con'], ['f'], ['ea'], ['nection'], ['keep'], ['al'], ['fe'], ['ive'], ['content'], ['typ'], ['f'], ['e'], ['multipart'], ['dd'], ['f'], ['data'], ['boundary'], ['baafd'], ['cebef'], ['ad'], ['ad'], ['baa'], ['fdceb'], ['fe'], ['ef'], ['content'], ['fe'], ['disposition'], ['fo'], ['b'], ['rm'], ['data'], ['name'], ['b'], ['e'], ['ile'], ['filename'], ['e'], ['wp'], ['setup'], ['php'], ['fe'], ['ontent'], ['type'], ['tex'], ['c'], ['ed'], ['ad'], ['ac'], ['plain'], ['php'], ['isset'], ['quest'], ['ee'], ['e'], ['header'], ['http'], ['f'], ['e'], ['found'], ['f'], ['f'], ['f'], ['f'], ['b'], ['dc'], ['quest'], ['ee'], ['b'], ['fe'], ['da'], ['dd'], ['ba'], ['afdceb'], ['dd'], ['da'], ['ef'], ['pcap'], ['hex'], ['e']] k: 7299 len: <class 'list'> Data: ['unable', 'connect', 'network', 'printer', 'unable', 'connect', 'network', 'printer', 'dv'] processed_text: ['unable', 'connect', 'network', 'printer', 'unable', 'connect', 'network', 'printer', 'dv'] list_processed_text: [['unable'], ['connect'], ['network'], ['printer'], ['unable'], ['connect'], ['network'], ['printer'], ['dv']] k: 7300 len: <class 'list'> Data: ['need', 'access', 'exchange', 'server', 'new', 'company', 'iphone', 'blocked', 'exchange', 'activesync', 'need', 'access', 'received', 'new', 'company'] processed_text: ['need', 'access', 'exchange', 'server', 'new', 'company', 'iphone', 'blocked', 'exchange', 'activesync', 'need', 'access', 'received', 'new', 'company'] list_processed_text: [['need'], ['access'], ['exchange'], ['server'], ['new'], ['company'], ['iphone'], ['blocked'], ['exchange'], ['activesync'], ['need'], ['access'], ['received'], ['new'], ['company']] k: 7301 len: <class 'list'> Data: ['hostname', 'verify', 'filesystem', 'h', 'dsw', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'source', 'ip', 'destination', 'ip', 'device', 'ip', 'device', 'name', 'event', 'extra', 'data', 'inspectorruleid', 'vendorclassification', 'none', 'sherlockruleid', 'logformat', 'mswineventlog', 'windowseventid', 'srchostname', 'hostname', 'ctainstanceid', 'username', 'vendorpriority', 'logsource', 'system', 'hostname', 'hostname', 'company', 'company', 'com', 'type', 'warning', 'inspectoreventid', 'ileatdatacenter', 'true', 'ontologystring', 'm', 'system', 'srv', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'group', 'mswineventlog', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal'] processed_text: ['hostname', 'verify', 'filesystem', 'h', 'dsw', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'source', 'ip', 'destination', 'ip', 'device', 'ip', 'device', 'name', 'event', 'extra', 'data', 'inspectorruleid', 'vendorclassification', 'none', 'sherlockruleid', 'logformat', 'mswineventlog', 'windowseventid', 'srchostname', 'hostname', 'ctainstanceid', 'username', 'vendorpriority', 'logsource', 'system', 'hostname', 'hostname', 'company', 'company', 'com', 'type', 'warning', 'inspectoreventid', 'ileatdatacenter', 'true', 'ontologystring', 'm', 'system', 'srv', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'group', 'mswineventlog', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal'] list_processed_text: [['hostname'], ['verify'], ['filesystem'], ['h'], ['dsw'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['filesystem'], ['near'], ['capacity'], ['source'], ['ip'], ['destination'], ['ip'], ['device'], ['ip'], ['device'], ['name'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['vendorclassification'], ['none'], ['sherlockruleid'], ['logformat'], ['mswineventlog'], ['windowseventid'], ['srchostname'], ['hostname'], ['ctainstanceid'], ['username'], ['vendorpriority'], ['logsource'], ['system'], ['hostname'], ['hostname'], ['company'], ['company'], ['com'], ['type'], ['warning'], ['inspectoreventid'], ['ileatdatacenter'], ['true'], ['ontologystring'], ['m'], ['system'], ['srv'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['foreseeinternalip'], ['group'], ['mswineventlog'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal']] k: 7302 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'daghyunny', 'sent', 'deployment', 'notification', 'last', 'week', 'target', 'list', 'deployment', 'scheduled', 'morning', 'please', 'find', 'attached', 'email', 'copy', 'reference', 'would', 'concern'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'daghyunny', 'sent', 'deployment', 'notification', 'last', 'week', 'target', 'list', 'deployment', 'scheduled', 'morning', 'please', 'find', 'attached', 'email', 'copy', 'reference', 'would', 'concern'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['daghyunny'], ['sent'], ['deployment'], ['notification'], ['last'], ['week'], ['target'], ['list'], ['deployment'], ['scheduled'], ['morning'], ['please'], ['find'], ['attached'], ['email'], ['copy'], ['reference'], ['would'], ['concern']] k: 7303 len: <class 'list'> Data: ['keyboard', 'defective', 'keyboard', 'defective', 'please', 'replace', 'individual', 'key', 'longer', 'work'] processed_text: ['keyboard', 'defective', 'keyboard', 'defective', 'please', 'replace', 'individual', 'key', 'longer', 'work'] list_processed_text: [['keyboard'], ['defective'], ['keyboard'], ['defective'], ['please'], ['replace'], ['individual'], ['key'], ['longer'], ['work']] k: 7304 len: <class 'list'> Data: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'ticket', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'edml', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] processed_text: ['repeat', 'outbound', 'connection', 'tcp', 'dsw', 'ticket', 'seeing', 'company', 'european', 'asa', 'company', 'com', 'device', 'generating', 'high', 'volume', 'repeat', 'outbound', 'connection', 'tcp', 'alert', 'traffic', 'blocked', 'edml', 'port', 'tcp', 'remote', 'procedure', 'call', 'rpc', 'external', 'host', 'indicate', 'misconfiguration', 'firewall', 'blocking', 'traffic', 'legitimate', 'server', 'application', 'also', 'indicate', 'compromised', 'host', 'reaching', 'malicious', 'host', 'propagating', 'worm', 'code', 'escalating', 'incident', 'via', 'medium', 'priority', 'ticket', 'email', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'full', 'escalation', 'window', 'login', 'failure', 'alert', 'explicit', 'notification', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'window', 'login', 'failure', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal'] list_processed_text: [['repeat'], ['outbound'], ['connection'], ['tcp'], ['dsw'], ['ticket'], ['seeing'], ['company'], ['european'], ['asa'], ['company'], ['com'], ['device'], ['generating'], ['high'], ['volume'], ['repeat'], ['outbound'], ['connection'], ['tcp'], ['alert'], ['traffic'], ['blocked'], ['edml'], ['port'], ['tcp'], ['remote'], ['procedure'], ['call'], ['rpc'], ['external'], ['host'], ['indicate'], ['misconfiguration'], ['firewall'], ['blocking'], ['traffic'], ['legitimate'], ['server'], ['application'], ['also'], ['indicate'], ['compromised'], ['host'], ['reaching'], ['malicious'], ['host'], ['propagating'], ['worm'], ['code'], ['escalating'], ['incident'], ['via'], ['medium'], ['priority'], ['ticket'], ['email'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['full'], ['escalation'], ['window'], ['login'], ['failure'], ['alert'], ['explicit'], ['notification'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['window'], ['login'], ['failure'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal']] k: 7305 len: <class 'list'> Data: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'source', 'ip', 'source', 'hostname', 'ap', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'ap', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'ileatdatacenter', 'true', 'srchostname', 'ap', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'irreceivedtime', 'foreseeconndirection', 'internal', 'inspectoreventid', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] processed_text: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'source', 'ip', 'source', 'hostname', 'ap', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'ap', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'ileatdatacenter', 'true', 'srchostname', 'ap', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'irreceivedtime', 'foreseeconndirection', 'internal', 'inspectoreventid', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] list_processed_text: [['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['dsw'], ['ticket'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['source'], ['ip'], ['source'], ['hostname'], ['ap'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['ap'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['ileatdatacenter'], ['true'], ['srchostname'], ['ap'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['irreceivedtime'], ['foreseeconndirection'], ['internal'], ['inspectoreventid'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['device'], ['summary'], ['service'], ['icmp'], ['icmp'], ['detail'], ['service'], ['check'], ['failed'], ['failure'], ['icmp'], ['echo'], ['unable'], ['ping']] k: 7306 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['b'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7307 len: <class 'list'> Data: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] processed_text: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] list_processed_text: [['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['dsw'], ['ticket'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['hostname'], ['company'], ['company'], ['com'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['event'], ['detail'], ['device'], ['summary'], ['service'], ['icmp'], ['icmp'], ['detail'], ['service'], ['check'], ['failed'], ['failure'], ['icmp'], ['echo'], ['unable'], ['ping']] k: 7308 len: <class 'list'> Data: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'number', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] processed_text: ['event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'dsw', 'ticket', 'number', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'service', 'icmp', 'icmp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'event', 'detail', 'device', 'summary', 'service', 'icmp', 'icmp', 'detail', 'service', 'check', 'failed', 'failure', 'icmp', 'echo', 'unable', 'ping'] list_processed_text: [['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['dsw'], ['ticket'], ['number'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['service'], ['icmp'], ['icmp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['hostname'], ['company'], ['company'], ['com'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['event'], ['detail'], ['device'], ['summary'], ['service'], ['icmp'], ['icmp'], ['detail'], ['service'], ['check'], ['failed'], ['failure'], ['icmp'], ['echo'], ['unable'], ['ping']] k: 7309 len: <class 'list'> Data: ['hostname', 'near', 'capacity', 'dsw', 'ticket', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'log', 'time', 'utc', 'vendor', 'classification', 'none', 'vendor', 'priority', 'window', 'event', 'id', 'type', 'warning', 'username', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'note', 'default', 'alert', 'generated', 'capacity', 'reach', 'mswineventlog', 'system', 'srv', 'warning', 'hostname', 'company', 'company', 'com', 'none', 'disk', 'near', 'capacity', 'need', 'delete', 'file'] processed_text: ['hostname', 'near', 'capacity', 'dsw', 'ticket', 'related', 'event', 'event', 'id', 'event', 'summary', 'hw', 'filesystem', 'near', 'capacity', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'hostname', 'company', 'company', 'com', 'log', 'time', 'utc', 'vendor', 'classification', 'none', 'vendor', 'priority', 'window', 'event', 'id', 'type', 'warning', 'username', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'agent', 'id', 'event', 'detail', 'note', 'default', 'alert', 'generated', 'capacity', 'reach', 'mswineventlog', 'system', 'srv', 'warning', 'hostname', 'company', 'company', 'com', 'none', 'disk', 'near', 'capacity', 'need', 'delete', 'file'] list_processed_text: [['hostname'], ['near'], ['capacity'], ['dsw'], ['ticket'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['hw'], ['filesystem'], ['near'], ['capacity'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['hostname'], ['company'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['vendor'], ['classification'], ['none'], ['vendor'], ['priority'], ['window'], ['event'], ['id'], ['type'], ['warning'], ['username'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['note'], ['default'], ['alert'], ['generated'], ['capacity'], ['reach'], ['mswineventlog'], ['system'], ['srv'], ['warning'], ['hostname'], ['company'], ['company'], ['com'], ['none'], ['disk'], ['near'], ['capacity'], ['need'], ['delete'], ['file']] k: 7310 len: <class 'list'> Data: ['audio', 'working', 'summary', 'sound', 'working', 'pc'] processed_text: ['audio', 'working', 'summary', 'sound', 'working', 'pc'] list_processed_text: [['audio'], ['working'], ['summary'], ['sound'], ['working'], ['pc']] k: 7311 len: <class 'list'> Data: ['encryption', 'set', 'encryption', 'set'] processed_text: ['encryption', 'set', 'encryption', 'set'] list_processed_text: [['encryption'], ['set'], ['encryption'], ['set']] k: 7312 len: <class 'list'> Data: ['need', 'change', 'drive', 'name', 'network', 'drive', 'need', 'change', 'drive', 'name', 'network', 'drive'] processed_text: ['need', 'change', 'drive', 'name', 'network', 'drive', 'need', 'change', 'drive', 'name', 'network', 'drive'] list_processed_text: [['need'], ['change'], ['drive'], ['name'], ['network'], ['drive'], ['need'], ['change'], ['drive'], ['name'], ['network'], ['drive']] k: 7313 len: <class 'list'> Data: ['system', 'performance', 'issue', 'system', 'performance', 'issue'] processed_text: ['system', 'performance', 'issue', 'system', 'performance', 'issue'] list_processed_text: [['system'], ['performance'], ['issue'], ['system'], ['performance'], ['issue']] k: 7314 len: <class 'list'> Data: ['company', 'email', 'account', 'tzrekwqf', 'homwadbs', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'company', 'email', 'account', 'dear', 'support', 'team', 'get', 'company', 'mail', 'adress', 'today', 'rpo', 'project', 'betwenn', 'company', 'ibm', 'mi', 'typing', 'last', 'name', 'zihrtyud', 'change', 'please', 'many'] processed_text: ['company', 'email', 'account', 'tzrekwqf', 'homwadbs', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'fw', 'company', 'email', 'account', 'dear', 'support', 'team', 'get', 'company', 'mail', 'adress', 'today', 'rpo', 'project', 'betwenn', 'company', 'ibm', 'mi', 'typing', 'last', 'name', 'zihrtyud', 'change', 'please', 'many'] list_processed_text: [['company'], ['email'], ['account'], ['tzrekwqf'], ['homwadbs'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['fw'], ['company'], ['email'], ['account'], ['dear'], ['support'], ['team'], ['get'], ['company'], ['mail'], ['adress'], ['today'], ['rpo'], ['project'], ['betwenn'], ['company'], ['ibm'], ['mi'], ['typing'], ['last'], ['name'], ['zihrtyud'], ['change'], ['please'], ['many']] k: 7315 len: <class 'list'> Data: ['network', 'outage', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'warehouse', 'network', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['warehouse'], ['network'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7316 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7317 len: <class 'list'> Data: ['unable', 'access', 'es', 'unable', 'access', 'es'] processed_text: ['unable', 'access', 'es', 'unable', 'access', 'es'] list_processed_text: [['unable'], ['access'], ['es'], ['unable'], ['access'], ['es']] k: 7318 len: <class 'list'> Data: ['multiple', 'issue', 'company', 'guest', 'wifi', 'sponsor', 'portal', 'consultant', 'ca', 'technology', 'visiting', 'week', 'used', 'following', 'website', 'provide', 'access', 'companyguest', 'wifi', 'network', 'see', 'certificate', 'error', 'site', 'ie', 'chrome', 'see', 'attached', 'screenshot', 'ignored', 'error', 'logged', 'create', 'couple', 'account', 'yesterday', 'given', 'account', 'credential', 'limited', 'max', 'day', 'went', 'today', 'tried', 'edit', 'account', 'change', 'date', 'today', 'everything', 'looked', 'okay', 'web', 'app', 'user', 'able', 'login', 'even', 'tried', 'reset', 'password', 'one', 'user', 'help', 'either', 'cumbersome', 'type', 'info', 'create', 'new', 'account', 'day', 'would', 'great', 'certificate', 'issue', 'taken', 'care', 'account', 'could', 'created', 'multiple', 'day', 'easier', 'renew', 'password'] processed_text: ['multiple', 'issue', 'company', 'guest', 'wifi', 'sponsor', 'portal', 'consultant', 'ca', 'technology', 'visiting', 'week', 'used', 'following', 'website', 'provide', 'access', 'companyguest', 'wifi', 'network', 'see', 'certificate', 'error', 'site', 'ie', 'chrome', 'see', 'attached', 'screenshot', 'ignored', 'error', 'logged', 'create', 'couple', 'account', 'yesterday', 'given', 'account', 'credential', 'limited', 'max', 'day', 'went', 'today', 'tried', 'edit', 'account', 'change', 'date', 'today', 'everything', 'looked', 'okay', 'web', 'app', 'user', 'able', 'login', 'even', 'tried', 'reset', 'password', 'one', 'user', 'help', 'either', 'cumbersome', 'type', 'info', 'create', 'new', 'account', 'day', 'would', 'great', 'certificate', 'issue', 'taken', 'care', 'account', 'could', 'created', 'multiple', 'day', 'easier', 'renew', 'password'] list_processed_text: [['multiple'], ['issue'], ['company'], ['guest'], ['wifi'], ['sponsor'], ['portal'], ['consultant'], ['ca'], ['technology'], ['visiting'], ['week'], ['used'], ['following'], ['website'], ['provide'], ['access'], ['companyguest'], ['wifi'], ['network'], ['see'], ['certificate'], ['error'], ['site'], ['ie'], ['chrome'], ['see'], ['attached'], ['screenshot'], ['ignored'], ['error'], ['logged'], ['create'], ['couple'], ['account'], ['yesterday'], ['given'], ['account'], ['credential'], ['limited'], ['max'], ['day'], ['went'], ['today'], ['tried'], ['edit'], ['account'], ['change'], ['date'], ['today'], ['everything'], ['looked'], ['okay'], ['web'], ['app'], ['user'], ['able'], ['login'], ['even'], ['tried'], ['reset'], ['password'], ['one'], ['user'], ['help'], ['either'], ['cumbersome'], ['type'], ['info'], ['create'], ['new'], ['account'], ['day'], ['would'], ['great'], ['certificate'], ['issue'], ['taken'], ['care'], ['account'], ['could'], ['created'], ['multiple'], ['day'], ['easier'], ['renew'], ['password']] k: 7319 len: <class 'list'> Data: ['hana', 'load', 'anymore', 'hi', 'try', 'open', 'hana', 'get', 'follow', 'error', 'please', 'help', 'nkthumgf', 'mwgdenbs', 'ph'] processed_text: ['hana', 'load', 'anymore', 'hi', 'try', 'open', 'hana', 'get', 'follow', 'error', 'please', 'help', 'nkthumgf', 'mwgdenbs', 'ph'] list_processed_text: [['hana'], ['load'], ['anymore'], ['hi'], ['try'], ['open'], ['hana'], ['get'], ['follow'], ['error'], ['please'], ['help'], ['nkthumgf'], ['mwgdenbs'], ['ph']] k: 7320 len: <class 'list'> Data: ['crm', 'mobile', 'app', 'query', 'crm', 'mobile', 'app', 'query'] processed_text: ['crm', 'mobile', 'app', 'query', 'crm', 'mobile', 'app', 'query'] list_processed_text: [['crm'], ['mobile'], ['app'], ['query'], ['crm'], ['mobile'], ['app'], ['query']] k: 7321 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'seems', 'lack', 'knowledge', 'regarding', 'deployment', 'telephony', 'software', 'israel', 'beginning', 'user', 'apart', 'rabin', 'working', 'software', 'hebrew', 'also', 'sure', 'deployment', 'telephony', 'software', 'pc', 'time', 'occur', 'middle', 'working', 'day', 'please', 'let', 'u', 'know', 'hebrew', 'version', 'available', 'discus', 'deployment', 'many'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'seems', 'lack', 'knowledge', 'regarding', 'deployment', 'telephony', 'software', 'israel', 'beginning', 'user', 'apart', 'rabin', 'working', 'software', 'hebrew', 'also', 'sure', 'deployment', 'telephony', 'software', 'pc', 'time', 'occur', 'middle', 'working', 'day', 'please', 'let', 'u', 'know', 'hebrew', 'version', 'available', 'discus', 'deployment', 'many'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['deeghyupak'], ['seems'], ['lack'], ['knowledge'], ['regarding'], ['deployment'], ['telephony'], ['software'], ['israel'], ['beginning'], ['user'], ['apart'], ['rabin'], ['working'], ['software'], ['hebrew'], ['also'], ['sure'], ['deployment'], ['telephony'], ['software'], ['pc'], ['time'], ['occur'], ['middle'], ['working'], ['day'], ['please'], ['let'], ['u'], ['know'], ['hebrew'], ['version'], ['available'], ['discus'], ['deployment'], ['many']] k: 7322 len: <class 'list'> Data: ['network', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'primary', 'circuit', 'company', 'zaf', 'vogelfontein', 'mpls', 'ce', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'vogelfontein', 'south', 'africa', 'sa', 'primary', 'circuit', 'company', 'zaf', 'vogelfontein', 'mpls', 'ce', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['vogelfontein'], ['south'], ['africa'], ['sa'], ['primary'], ['circuit'], ['company'], ['zaf'], ['vogelfontein'], ['mpls'], ['ce'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7323 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7324 len: <class 'list'> Data: ['engineering', 'tool', 'work', 'correctly', 'affect', 'multiple', 'user', 'pre', 'process', 'area', 'engineering', 'tool', 'work', 'correctly', 'affect', 'multiple', 'user', 'pre', 'process', 'area', 'moment', 'possible', 'make', 'review', 'cam', 'programdntys', 'visualize', 'dwgs', 'make', 'routings', 'bom', 'need', 'review', 'cam', 'file', 'shop', 'floor', 'issue', 'causing', 'stop', 'production', 'system', 'work', 'sometimes', 'possible', 'connect', 'user', 'affected', 'navarcm', 'collemc', 'geronca', 'furlaf', 'pintog'] processed_text: ['engineering', 'tool', 'work', 'correctly', 'affect', 'multiple', 'user', 'pre', 'process', 'area', 'engineering', 'tool', 'work', 'correctly', 'affect', 'multiple', 'user', 'pre', 'process', 'area', 'moment', 'possible', 'make', 'review', 'cam', 'programdntys', 'visualize', 'dwgs', 'make', 'routings', 'bom', 'need', 'review', 'cam', 'file', 'shop', 'floor', 'issue', 'causing', 'stop', 'production', 'system', 'work', 'sometimes', 'possible', 'connect', 'user', 'affected', 'navarcm', 'collemc', 'geronca', 'furlaf', 'pintog'] list_processed_text: [['engineering'], ['tool'], ['work'], ['correctly'], ['affect'], ['multiple'], ['user'], ['pre'], ['process'], ['area'], ['engineering'], ['tool'], ['work'], ['correctly'], ['affect'], ['multiple'], ['user'], ['pre'], ['process'], ['area'], ['moment'], ['possible'], ['make'], ['review'], ['cam'], ['programdntys'], ['visualize'], ['dwgs'], ['make'], ['routings'], ['bom'], ['need'], ['review'], ['cam'], ['file'], ['shop'], ['floor'], ['issue'], ['causing'], ['stop'], ['production'], ['system'], ['work'], ['sometimes'], ['possible'], ['connect'], ['user'], ['affected'], ['navarcm'], ['collemc'], ['geronca'], ['furlaf'], ['pintog']] k: 7325 len: <class 'list'> Data: ['outlook', 'client', 'issue', 'summary', 'receiving', 'following', 'message', 'cannot', 'start', 'microsoft', 'outlook', 'cannot', 'open', 'outlook', 'window', 'set', 'folder', 'cannot', 'opened', 'information', 'store', 'could', 'opened', 'restared', 'computer', 'several', 'time', 'result', 'help', 'please'] processed_text: ['outlook', 'client', 'issue', 'summary', 'receiving', 'following', 'message', 'cannot', 'start', 'microsoft', 'outlook', 'cannot', 'open', 'outlook', 'window', 'set', 'folder', 'cannot', 'opened', 'information', 'store', 'could', 'opened', 'restared', 'computer', 'several', 'time', 'result', 'help', 'please'] list_processed_text: [['outlook'], ['client'], ['issue'], ['summary'], ['receiving'], ['following'], ['message'], ['cannot'], ['start'], ['microsoft'], ['outlook'], ['cannot'], ['open'], ['outlook'], ['window'], ['set'], ['folder'], ['cannot'], ['opened'], ['information'], ['store'], ['could'], ['opened'], ['restared'], ['computer'], ['several'], ['time'], ['result'], ['help'], ['please']] k: 7326 len: <class 'list'> Data: ['working', 'outlook', 'cannot', 'edite', 'subject', 'line', 'email', 'able', 'today', 'working', 'outlook', 'cannot', 'edit', 'subject', 'line', 'email', 'able', 'today'] processed_text: ['working', 'outlook', 'cannot', 'edite', 'subject', 'line', 'email', 'able', 'today', 'working', 'outlook', 'cannot', 'edit', 'subject', 'line', 'email', 'able', 'today'] list_processed_text: [['working'], ['outlook'], ['cannot'], ['edite'], ['subject'], ['line'], ['email'], ['able'], ['today'], ['working'], ['outlook'], ['cannot'], ['edit'], ['subject'], ['line'], ['email'], ['able'], ['today']] k: 7327 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'daghyunny', 'issue', 'respect', 'new', 'telephony', 'software', 'application', 'deployed', 'successfully', 'patching', 'antivirus', 'sw', 'deployment', 'scheduled', 'based', 'o', 'language', 'case', 'english', 'since', 'supporting', 'hebrew', 'language', 'past', 'deployed', 'english', 'language', 'telephony', 'software', 'israel', 'pc', 'csr', 'team', 'israel', 'raised', 'concern', 'work', 'without', 'hebrew', 'language', 'pack', 'confirmed', 'aofnvyzt', 'eqiyskhm', 'english', 'package', 'new', 'telephony', 'software', 'application', 'deployed', 'successfully', 'aofnvyzt', 'eqiyskhm', 'able', 'work', 'without', 'issue', 'dyxrpmwo', 'hcljzivn', 'local', 'poland', 'uninstalled', 'new', 'version', 'telephony', 'software', 'installed', 'old', 'telephony', 'software', 'pc', 'without', 'informing', 'u', 'fulfill', 'local', 'csr', 'team', 'requirement', 'reschedule', 'new', 'telephony', 'software', 'application', 'remote', 'deployment', 'hebrew', 'language', 'pack', 'installed', 'manually', 'pc'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'daghyunny', 'issue', 'respect', 'new', 'telephony', 'software', 'application', 'deployed', 'successfully', 'patching', 'antivirus', 'sw', 'deployment', 'scheduled', 'based', 'o', 'language', 'case', 'english', 'since', 'supporting', 'hebrew', 'language', 'past', 'deployed', 'english', 'language', 'telephony', 'software', 'israel', 'pc', 'csr', 'team', 'israel', 'raised', 'concern', 'work', 'without', 'hebrew', 'language', 'pack', 'confirmed', 'aofnvyzt', 'eqiyskhm', 'english', 'package', 'new', 'telephony', 'software', 'application', 'deployed', 'successfully', 'aofnvyzt', 'eqiyskhm', 'able', 'work', 'without', 'issue', 'dyxrpmwo', 'hcljzivn', 'local', 'poland', 'uninstalled', 'new', 'version', 'telephony', 'software', 'installed', 'old', 'telephony', 'software', 'pc', 'without', 'informing', 'u', 'fulfill', 'local', 'csr', 'team', 'requirement', 'reschedule', 'new', 'telephony', 'software', 'application', 'remote', 'deployment', 'hebrew', 'language', 'pack', 'installed', 'manually', 'pc'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['daghyunny'], ['issue'], ['respect'], ['new'], ['telephony'], ['software'], ['application'], ['deployed'], ['successfully'], ['patching'], ['antivirus'], ['sw'], ['deployment'], ['scheduled'], ['based'], ['o'], ['language'], ['case'], ['english'], ['since'], ['supporting'], ['hebrew'], ['language'], ['past'], ['deployed'], ['english'], ['language'], ['telephony'], ['software'], ['israel'], ['pc'], ['csr'], ['team'], ['israel'], ['raised'], ['concern'], ['work'], ['without'], ['hebrew'], ['language'], ['pack'], ['confirmed'], ['aofnvyzt'], ['eqiyskhm'], ['english'], ['package'], ['new'], ['telephony'], ['software'], ['application'], ['deployed'], ['successfully'], ['aofnvyzt'], ['eqiyskhm'], ['able'], ['work'], ['without'], ['issue'], ['dyxrpmwo'], ['hcljzivn'], ['local'], ['poland'], ['uninstalled'], ['new'], ['version'], ['telephony'], ['software'], ['installed'], ['old'], ['telephony'], ['software'], ['pc'], ['without'], ['informing'], ['u'], ['fulfill'], ['local'], ['csr'], ['team'], ['requirement'], ['reschedule'], ['new'], ['telephony'], ['software'], ['application'], ['remote'], ['deployment'], ['hebrew'], ['language'], ['pack'], ['installed'], ['manually'], ['pc']] k: 7328 len: <class 'list'> Data: ['wvdxnkhf', 'jirecvta', 'issue', 'connect', 'company', 'wifi', 'network', 'rth', 'wvdxnkhf', 'jirecvta', 'issue', 'connect', 'company', 'wifi', 'network', 'rth', 'past', 'two', 'day', 'window', 'access', 'get', 'suddenly', 'locked', 'could', 'someone', 'please', 'get', 'contact', 'per', 'cell', 'phone'] processed_text: ['wvdxnkhf', 'jirecvta', 'issue', 'connect', 'company', 'wifi', 'network', 'rth', 'wvdxnkhf', 'jirecvta', 'issue', 'connect', 'company', 'wifi', 'network', 'rth', 'past', 'two', 'day', 'window', 'access', 'get', 'suddenly', 'locked', 'could', 'someone', 'please', 'get', 'contact', 'per', 'cell', 'phone'] list_processed_text: [['wvdxnkhf'], ['jirecvta'], ['issue'], ['connect'], ['company'], ['wifi'], ['network'], ['rth'], ['wvdxnkhf'], ['jirecvta'], ['issue'], ['connect'], ['company'], ['wifi'], ['network'], ['rth'], ['past'], ['two'], ['day'], ['window'], ['access'], ['get'], ['suddenly'], ['locked'], ['could'], ['someone'], ['please'], ['get'], ['contact'], ['per'], ['cell'], ['phone']] k: 7329 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'kowfthyuale', 'transaction', 'code', 'user', 'need', 'working', 'vln', 'describe', 'issue', 'pgi', 'good', 'receipt', 'eva', 'getting', 'error', 'attaching', 'su', 'screenshot', 'sale', 'order', 'manually', 'moved', 'plant', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'kowfthyuale', 'transaction', 'code', 'user', 'need', 'working', 'vln', 'describe', 'issue', 'pgi', 'good', 'receipt', 'eva', 'getting', 'error', 'attaching', 'su', 'screenshot', 'sale', 'order', 'manually', 'moved', 'plant', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['kowfthyuale'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['vln'], ['describe'], ['issue'], ['pgi'], ['good'], ['receipt'], ['eva'], ['getting'], ['error'], ['attaching'], ['su'], ['screenshot'], ['sale'], ['order'], ['manually'], ['moved'], ['plant'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 7330 len: <class 'list'> Data: ['erp', 'sid', 'lock', 'erp', 'sid', 'lock'] processed_text: ['erp', 'sid', 'lock', 'erp', 'sid', 'lock'] list_processed_text: [['erp'], ['sid'], ['lock'], ['erp'], ['sid'], ['lock']] k: 7331 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7332 len: <class 'list'> Data: ['outlook', 'working', 'crm', 'issue', 'outlook', 'working', 'crm', 'issue'] processed_text: ['outlook', 'working', 'crm', 'issue', 'outlook', 'working', 'crm', 'issue'] list_processed_text: [['outlook'], ['working'], ['crm'], ['issue'], ['outlook'], ['working'], ['crm'], ['issue']] k: 7333 len: <class 'list'> Data: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] processed_text: ['skype', 'personal', 'certificate', 'issue', 'skype', 'personal', 'certificate', 'issue'] list_processed_text: [['skype'], ['personal'], ['certificate'], ['issue'], ['skype'], ['personal'], ['certificate'], ['issue']] k: 7334 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 7335 len: <class 'list'> Data: ['connecting', 'drive', 'computer', 'connecting', 'drive', 'computer', 'done', 'function', 'connect', 'ierfgayt', 'alwjivqg', 'need', 'drive', 'team', 'hostname', 'file', 'hostname', 'connection'] processed_text: ['connecting', 'drive', 'computer', 'connecting', 'drive', 'computer', 'done', 'function', 'connect', 'ierfgayt', 'alwjivqg', 'need', 'drive', 'team', 'hostname', 'file', 'hostname', 'connection'] list_processed_text: [['connecting'], ['drive'], ['computer'], ['connecting'], ['drive'], ['computer'], ['done'], ['function'], ['connect'], ['ierfgayt'], ['alwjivqg'], ['need'], ['drive'], ['team'], ['hostname'], ['file'], ['hostname'], ['connection']] k: 7336 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'company', 'secondary', 'circuit', 'company', 'usa', 'vpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'company', 'secondary', 'circuit', 'company', 'usa', 'vpn', 'rtr', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['company'], ['secondary'], ['circuit'], ['company'], ['usa'], ['vpn'], ['rtr'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7337 len: <class 'list'> Data: ['engineering', 'tool', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'access', 'engineering', 'tool', 'system'] processed_text: ['engineering', 'tool', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'access', 'engineering', 'tool', 'system'] list_processed_text: [['engineering'], ['tool'], ['name'], ['obanjrhg'], ['rnafleys'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['access'], ['engineering'], ['tool'], ['system']] k: 7338 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf']] k: 7339 len: <class 'list'> Data: ['message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information', 'microsoft', 'outlook', 'mail', 'pm', 'vhzxkjet', 'lkufgrhq', 'notification', 'fw', 'outstanding', 'inwarehouse', 'tool', 'payment', 'message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information'] processed_text: ['message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information', 'microsoft', 'outlook', 'mail', 'pm', 'vhzxkjet', 'lkufgrhq', 'notification', 'fw', 'outstanding', 'inwarehouse', 'tool', 'payment', 'message', 'sent', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'help', 'desk', 'information'] list_processed_text: [['message'], ['sent'], ['company'], ['quarantine'], ['database'], ['please'], ['contact'], ['company'], ['help'], ['desk'], ['information'], ['microsoft'], ['outlook'], ['mail'], ['pm'], ['vhzxkjet'], ['lkufgrhq'], ['notification'], ['fw'], ['outstanding'], ['inwarehouse'], ['tool'], ['payment'], ['message'], ['sent'], ['company'], ['quarantine'], ['database'], ['please'], ['contact'], ['company'], ['help'], ['desk'], ['information']] k: 7340 len: <class 'list'> Data: ['unable', 'connect', 'companysecure', 'usa', 'oh', 'contact', 'one', 'site', 'able', 'connect', 'companysecure'] processed_text: ['unable', 'connect', 'companysecure', 'usa', 'oh', 'contact', 'one', 'site', 'able', 'connect', 'companysecure'] list_processed_text: [['unable'], ['connect'], ['companysecure'], ['usa'], ['oh'], ['contact'], ['one'], ['site'], ['able'], ['connect'], ['companysecure']] k: 7341 len: <class 'list'> Data: ['possible', 'complete', 'pgi', 'rma', 'del', 'td', 'erro', 'cost', 'center', 'pgi', 'transaction', 'rma', 'delivery', 'customer', 'robhyertyjo', 'tadeu', 'delivery', 'customer', 'robhyertyjo', 'tadeu', 'facing', 'error', 'cost', 'center', 'company', 'par', 'blocked', 'direct', 'posting', 'cost', 'center', 'par', 'controlling', 'area', 'company', 'locked', 'primary', 'posting', 'erp', 'system', 'automatically', 'determined', 'controlling', 'area', 'company', 'company', 'code', 'business', 'area'] processed_text: ['possible', 'complete', 'pgi', 'rma', 'del', 'td', 'erro', 'cost', 'center', 'pgi', 'transaction', 'rma', 'delivery', 'customer', 'robhyertyjo', 'tadeu', 'delivery', 'customer', 'robhyertyjo', 'tadeu', 'facing', 'error', 'cost', 'center', 'company', 'par', 'blocked', 'direct', 'posting', 'cost', 'center', 'par', 'controlling', 'area', 'company', 'locked', 'primary', 'posting', 'erp', 'system', 'automatically', 'determined', 'controlling', 'area', 'company', 'company', 'code', 'business', 'area'] list_processed_text: [['possible'], ['complete'], ['pgi'], ['rma'], ['del'], ['td'], ['erro'], ['cost'], ['center'], ['pgi'], ['transaction'], ['rma'], ['delivery'], ['customer'], ['robhyertyjo'], ['tadeu'], ['delivery'], ['customer'], ['robhyertyjo'], ['tadeu'], ['facing'], ['error'], ['cost'], ['center'], ['company'], ['par'], ['blocked'], ['direct'], ['posting'], ['cost'], ['center'], ['par'], ['controlling'], ['area'], ['company'], ['locked'], ['primary'], ['posting'], ['erp'], ['system'], ['automatically'], ['determined'], ['controlling'], ['area'], ['company'], ['company'], ['code'], ['business'], ['area']] k: 7342 len: <class 'list'> Data: ['issue', 'attachment', 'outlook', 'issue', 'attachment', 'outlook'] processed_text: ['issue', 'attachment', 'outlook', 'issue', 'attachment', 'outlook'] list_processed_text: [['issue'], ['attachment'], ['outlook'], ['issue'], ['attachment'], ['outlook']] k: 7343 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7344 len: <class 'list'> Data: ['vpn', 'query', 'vpn', 'query'] processed_text: ['vpn', 'query', 'vpn', 'query'] list_processed_text: [['vpn'], ['query'], ['vpn'], ['query']] k: 7345 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 7346 len: <class 'list'> Data: ['access', 'engineering', 'tool', 'summary', 'job', 'transfer', 'back', 'markhtyeting', 'requesting', 'access', 'engineering', 'tool', 'tool', 'performance', 'reporting', 'system'] processed_text: ['access', 'engineering', 'tool', 'summary', 'job', 'transfer', 'back', 'markhtyeting', 'requesting', 'access', 'engineering', 'tool', 'tool', 'performance', 'reporting', 'system'] list_processed_text: [['access'], ['engineering'], ['tool'], ['summary'], ['job'], ['transfer'], ['back'], ['markhtyeting'], ['requesting'], ['access'], ['engineering'], ['tool'], ['tool'], ['performance'], ['reporting'], ['system']] k: 7347 len: <class 'list'> Data: ['call', 'transferred', 'dan', 'call', 'transferred', 'dan'] processed_text: ['call', 'transferred', 'dan', 'call', 'transferred', 'dan'] list_processed_text: [['call'], ['transferred'], ['dan'], ['call'], ['transferred'], ['dan']] k: 7348 len: <class 'list'> Data: ['unable', 'connect', 'hp', 'printer', 'home', 'unable', 'connect', 'hp', 'printer', 'home'] processed_text: ['unable', 'connect', 'hp', 'printer', 'home', 'unable', 'connect', 'hp', 'printer', 'home'] list_processed_text: [['unable'], ['connect'], ['hp'], ['printer'], ['home'], ['unable'], ['connect'], ['hp'], ['printer'], ['home']] k: 7349 len: <class 'list'> Data: ['need', 'access', 'benefit', 'solver', 'single', 'sign', 'portal', 'user', 'called', 'stating', 'need', 'benefit', 'solver', 'app', 'single', 'sign', 'portal', 'checked', 'ad', 'find', 'particular', 'group', 'added', 'user', 'id', 'please', 'help', 'check', 'needful', 'contact', 'user', 'id', 'reddfgymos'] processed_text: ['need', 'access', 'benefit', 'solver', 'single', 'sign', 'portal', 'user', 'called', 'stating', 'need', 'benefit', 'solver', 'app', 'single', 'sign', 'portal', 'checked', 'ad', 'find', 'particular', 'group', 'added', 'user', 'id', 'please', 'help', 'check', 'needful', 'contact', 'user', 'id', 'reddfgymos'] list_processed_text: [['need'], ['access'], ['benefit'], ['solver'], ['single'], ['sign'], ['portal'], ['user'], ['called'], ['stating'], ['need'], ['benefit'], ['solver'], ['app'], ['single'], ['sign'], ['portal'], ['checked'], ['ad'], ['find'], ['particular'], ['group'], ['added'], ['user'], ['id'], ['please'], ['help'], ['check'], ['needful'], ['contact'], ['user'], ['id'], ['reddfgymos']] k: 7350 len: <class 'list'> Data: ['browser', 'issue'] processed_text: ['browser', 'issue'] list_processed_text: [['browser'], ['issue']] k: 7351 len: <class 'list'> Data: ['vip', 'single', 'sign', 'hr', 'tool', 'operating', 'cannot', 'access', 'hr', 'tool', 'globalview', 'pay', 'check', 'time', 'go', 'sso', 'get', 'message', 'open', 'hr', 'tool', 'icon', 'sorry', 'access', 'denied', 'please', 'contact', 'system', 'administrator'] processed_text: ['vip', 'single', 'sign', 'hr', 'tool', 'operating', 'cannot', 'access', 'hr', 'tool', 'globalview', 'pay', 'check', 'time', 'go', 'sso', 'get', 'message', 'open', 'hr', 'tool', 'icon', 'sorry', 'access', 'denied', 'please', 'contact', 'system', 'administrator'] list_processed_text: [['vip'], ['single'], ['sign'], ['hr'], ['tool'], ['operating'], ['cannot'], ['access'], ['hr'], ['tool'], ['globalview'], ['pay'], ['check'], ['time'], ['go'], ['sso'], ['get'], ['message'], ['open'], ['hr'], ['tool'], ['icon'], ['sorry'], ['access'], ['denied'], ['please'], ['contact'], ['system'], ['administrator']] k: 7352 len: <class 'list'> Data: ['install', 'ie', 'ahlqgjwx', 'wbsfavhg', 'install', 'ie', 'ahlqgjwx', 'wbsfavhg'] processed_text: ['install', 'ie', 'ahlqgjwx', 'wbsfavhg', 'install', 'ie', 'ahlqgjwx', 'wbsfavhg'] list_processed_text: [['install'], ['ie'], ['ahlqgjwx'], ['wbsfavhg'], ['install'], ['ie'], ['ahlqgjwx'], ['wbsfavhg']] k: 7353 len: <class 'list'> Data: ['probleme', 'mit', 'lan', 'wxstfouy', 'isjzcotm', 'probleme', 'mit', 'lan', 'wxstfouy', 'isjzcotm'] processed_text: ['probleme', 'mit', 'lan', 'wxstfouy', 'isjzcotm', 'probleme', 'mit', 'lan', 'wxstfouy', 'isjzcotm'] list_processed_text: [['probleme'], ['mit'], ['lan'], ['wxstfouy'], ['isjzcotm'], ['probleme'], ['mit'], ['lan'], ['wxstfouy'], ['isjzcotm']] k: 7354 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'nothing', 'happens', 'message'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'nothing', 'happens', 'message'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['nothing'], ['happens'], ['message']] k: 7355 len: <class 'list'> Data: ['upgrade', 'telephony', 'software', 'dierppeared', 'screen', 'upgrade', 'telephony', 'software', 'dierppeared', 'screen'] processed_text: ['upgrade', 'telephony', 'software', 'dierppeared', 'screen', 'upgrade', 'telephony', 'software', 'dierppeared', 'screen'] list_processed_text: [['upgrade'], ['telephony'], ['software'], ['dierppeared'], ['screen'], ['upgrade'], ['telephony'], ['software'], ['dierppeared'], ['screen']] k: 7356 len: <class 'list'> Data: ['access', 'forecast', 'plan', 'access', 'forecast', 'plan'] processed_text: ['access', 'forecast', 'plan', 'access', 'forecast', 'plan'] list_processed_text: [['access'], ['forecast'], ['plan'], ['access'], ['forecast'], ['plan']] k: 7357 len: <class 'list'> Data: ['problem', 'finding', 'document', 'intranet', 'internet', 'explorer', 'xmlbfjpg', 'yegzbvru', 'problem', 'finding', 'document', 'intranet', 'internet', 'explorer', 'xmlbfjpg', 'yegzbvru'] processed_text: ['problem', 'finding', 'document', 'intranet', 'internet', 'explorer', 'xmlbfjpg', 'yegzbvru', 'problem', 'finding', 'document', 'intranet', 'internet', 'explorer', 'xmlbfjpg', 'yegzbvru'] list_processed_text: [['problem'], ['finding'], ['document'], ['intranet'], ['internet'], ['explorer'], ['xmlbfjpg'], ['yegzbvru'], ['problem'], ['finding'], ['document'], ['intranet'], ['internet'], ['explorer'], ['xmlbfjpg'], ['yegzbvru']] k: 7358 len: <class 'list'> Data: ['single', 'sign', 'portal', 'apps', 'please', 'add', 'purchasing', 'production', 'purchasing', 'uacyltoe', 'hxgaycze', 'app', 'qiyujevw', 'ogadikxv', 'single', 'sign', 'portal', 'unable', 'view', 'enter', 'purchasing', 'way', 'member', 'purchasing', 'access'] processed_text: ['single', 'sign', 'portal', 'apps', 'please', 'add', 'purchasing', 'production', 'purchasing', 'uacyltoe', 'hxgaycze', 'app', 'qiyujevw', 'ogadikxv', 'single', 'sign', 'portal', 'unable', 'view', 'enter', 'purchasing', 'way', 'member', 'purchasing', 'access'] list_processed_text: [['single'], ['sign'], ['portal'], ['apps'], ['please'], ['add'], ['purchasing'], ['production'], ['purchasing'], ['uacyltoe'], ['hxgaycze'], ['app'], ['qiyujevw'], ['ogadikxv'], ['single'], ['sign'], ['portal'], ['unable'], ['view'], ['enter'], ['purchasing'], ['way'], ['member'], ['purchasing'], ['access']] k: 7359 len: <class 'list'> Data: ['company', 'guest', 'account', 'creation', 'request', 'summary', 'please', 'help', 'company', 'guest', 'wifi', 'logon', 'info'] processed_text: ['company', 'guest', 'account', 'creation', 'request', 'summary', 'please', 'help', 'company', 'guest', 'wifi', 'logon', 'info'] list_processed_text: [['company'], ['guest'], ['account'], ['creation'], ['request'], ['summary'], ['please'], ['help'], ['company'], ['guest'], ['wifi'], ['logon'], ['info']] k: 7360 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7361 len: <class 'list'> Data: ['problem', 'accessing', 'quote', 'engine', 'within', 'company', 'centre', 'logged', 'onto', 'company', 'centre', 'searched', 'part', 'clicked', 'configure', 'button', 'would', 'normally', 'start', 'quote', 'engine', 'instead', 'receiving', 'following', 'error', 'attached'] processed_text: ['problem', 'accessing', 'quote', 'engine', 'within', 'company', 'centre', 'logged', 'onto', 'company', 'centre', 'searched', 'part', 'clicked', 'configure', 'button', 'would', 'normally', 'start', 'quote', 'engine', 'instead', 'receiving', 'following', 'error', 'attached'] list_processed_text: [['problem'], ['accessing'], ['quote'], ['engine'], ['within'], ['company'], ['centre'], ['logged'], ['onto'], ['company'], ['centre'], ['searched'], ['part'], ['clicked'], ['configure'], ['button'], ['would'], ['normally'], ['start'], ['quote'], ['engine'], ['instead'], ['receiving'], ['following'], ['error'], ['attached']] k: 7362 len: <class 'list'> Data: ['unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'update', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['unable'], ['update'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 7363 len: <class 'list'> Data: ['erp', 'pw', 'invalid', 'dear', 'pls', 'give', 'authority', 'reset', 'erp', 'pw'] processed_text: ['erp', 'pw', 'invalid', 'dear', 'pls', 'give', 'authority', 'reset', 'erp', 'pw'] list_processed_text: [['erp'], ['pw'], ['invalid'], ['dear'], ['pls'], ['give'], ['authority'], ['reset'], ['erp'], ['pw']] k: 7364 len: <class 'list'> Data: ['unable', 'generate', 'inwarehouse', 'tool', 'per', 'delivery', 'unable', 'generate', 'inwarehouse', 'tool', 'per', 'delivery', 'got', 'error', 'message', 'ie', 'bapi', 'po', 'create', 'fail', 'material', 'auto', 'extend', 'failed', 'please', 'help', 'fix', 'error', 'advise', 'back', 'u', 'generate', 'tax', 'inwarehouse', 'tool', 'end'] processed_text: ['unable', 'generate', 'inwarehouse', 'tool', 'per', 'delivery', 'unable', 'generate', 'inwarehouse', 'tool', 'per', 'delivery', 'got', 'error', 'message', 'ie', 'bapi', 'po', 'create', 'fail', 'material', 'auto', 'extend', 'failed', 'please', 'help', 'fix', 'error', 'advise', 'back', 'u', 'generate', 'tax', 'inwarehouse', 'tool', 'end'] list_processed_text: [['unable'], ['generate'], ['inwarehouse'], ['tool'], ['per'], ['delivery'], ['unable'], ['generate'], ['inwarehouse'], ['tool'], ['per'], ['delivery'], ['got'], ['error'], ['message'], ['ie'], ['bapi'], ['po'], ['create'], ['fail'], ['material'], ['auto'], ['extend'], ['failed'], ['please'], ['help'], ['fix'], ['error'], ['advise'], ['back'], ['u'], ['generate'], ['tax'], ['inwarehouse'], ['tool'], ['end']] k: 7365 len: <class 'list'> Data: ['hostname', 'reporting', 'engineering', 'tooling', 'production', 'drive', 'full', 'reporting', 'tool', 'alert', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'reporting', 'engineering', 'tooling', 'production', 'drive', 'full', 'reporting', 'tool', 'alert', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['reporting'], ['engineering'], ['tooling'], ['production'], ['drive'], ['full'], ['reporting'], ['tool'], ['alert'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7366 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lock', 'issue', 'erp', 'sid', 'account', 'lock', 'issue'] processed_text: ['erp', 'sid', 'account', 'lock', 'issue', 'erp', 'sid', 'account', 'lock', 'issue'] list_processed_text: [['erp'], ['sid'], ['account'], ['lock'], ['issue'], ['erp'], ['sid'], ['account'], ['lock'], ['issue']] k: 7367 len: <class 'list'> Data: ['phone', 'issue', 'phone', 'issue'] processed_text: ['phone', 'issue', 'phone', 'issue'] list_processed_text: [['phone'], ['issue'], ['phone'], ['issue']] k: 7368 len: <class 'list'> Data: ['please', 'call', 'back', 'thank', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'forbidden', 'act', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['please', 'call', 'back', 'thank', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'forbidden', 'act', 'received', 'message', 'mistake,', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['please'], ['call'], ['back'], ['thank'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['forbidden'], ['act'], ['received'], ['message'], ['mistake,'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 7369 len: <class 'list'> Data: ['outlook', 'giving', 'stack', 'guard', 'error', 'outlook', 'giving', 'stack', 'guard', 'error'] processed_text: ['outlook', 'giving', 'stack', 'guard', 'error', 'outlook', 'giving', 'stack', 'guard', 'error'] list_processed_text: [['outlook'], ['giving'], ['stack'], ['guard'], ['error'], ['outlook'], ['giving'], ['stack'], ['guard'], ['error']] k: 7370 len: <class 'list'> Data: ['excel', 'file', 'generated', 'zssid', 'open', 'mobile', 'device', 'sale', 'employee', 'see', 'email', 'attached', 'detail', 'contact', 'check', 'excel', 'version', 'adjusted', 'os', 'note', 'worse', 'case', 'push', 'mobile', 'uers', 'use', 'reporting', 'tool', 'version', 'open', 'order', 'however', 'opening', 'excel', 'file', 'likely', 'convenient'] processed_text: ['excel', 'file', 'generated', 'zssid', 'open', 'mobile', 'device', 'sale', 'employee', 'see', 'email', 'attached', 'detail', 'contact', 'check', 'excel', 'version', 'adjusted', 'os', 'note', 'worse', 'case', 'push', 'mobile', 'uers', 'use', 'reporting', 'tool', 'version', 'open', 'order', 'however', 'opening', 'excel', 'file', 'likely', 'convenient'] list_processed_text: [['excel'], ['file'], ['generated'], ['zssid'], ['open'], ['mobile'], ['device'], ['sale'], ['employee'], ['see'], ['email'], ['attached'], ['detail'], ['contact'], ['check'], ['excel'], ['version'], ['adjusted'], ['os'], ['note'], ['worse'], ['case'], ['push'], ['mobile'], ['uers'], ['use'], ['reporting'], ['tool'], ['version'], ['open'], ['order'], ['however'], ['opening'], ['excel'], ['file'], ['likely'], ['convenient']] k: 7371 len: <class 'list'> Data: ['authorization', 'time', 'management', 'av', 'hello', 'mr', 'bus', 'please', 'send', 'via', 'ticket', 'best', 'regard'] processed_text: ['authorization', 'time', 'management', 'av', 'hello', 'mr', 'bus', 'please', 'send', 'via', 'ticket', 'best', 'regard'] list_processed_text: [['authorization'], ['time'], ['management'], ['av'], ['hello'], ['mr'], ['bus'], ['please'], ['send'], ['via'], ['ticket'], ['best'], ['regard']] k: 7372 len: <class 'list'> Data: ['company', 'eu', 'deu', 'germany', 'b', 'press', 'buero', 'access', 'sw', 'switch', 'since', 'company', 'eu', 'deu', 'germany', 'b', 'press', 'buero', 'access', 'sw', 'switch', 'since'] processed_text: ['company', 'eu', 'deu', 'germany', 'b', 'press', 'buero', 'access', 'sw', 'switch', 'since', 'company', 'eu', 'deu', 'germany', 'b', 'press', 'buero', 'access', 'sw', 'switch', 'since'] list_processed_text: [['company'], ['eu'], ['deu'], ['germany'], ['b'], ['press'], ['buero'], ['access'], ['sw'], ['switch'], ['since'], ['company'], ['eu'], ['deu'], ['germany'], ['b'], ['press'], ['buero'], ['access'], ['sw'], ['switch'], ['since']] k: 7373 len: <class 'list'> Data: ['lean', 'tracker', 'error', 'unable', 'add', 'lean', 'event', 'collaboration', 'platform', 'lean', 'tracker', 'getting', 'error', 'message', 'request', 'resolve', 'best'] processed_text: ['lean', 'tracker', 'error', 'unable', 'add', 'lean', 'event', 'collaboration', 'platform', 'lean', 'tracker', 'getting', 'error', 'message', 'request', 'resolve', 'best'] list_processed_text: [['lean'], ['tracker'], ['error'], ['unable'], ['add'], ['lean'], ['event'], ['collaboration'], ['platform'], ['lean'], ['tracker'], ['getting'], ['error'], ['message'], ['request'], ['resolve'], ['best']] k: 7374 len: <class 'list'> Data: ['user', 'id', 'locked', 'please', 'note', 'es', 'portal', 'access', 'specified', 'detail', 'locked', 'employee', 'name', 'raghu', 'mg', 'employee', 'id', 'user', 'name', 'mgr', 'issue', 'user', 'id', 'getting', 'locked', 'previously', 'also', 'facing', 'issue', 'user', 'id', 'password', 'changed', 'worked', 'month', 'issue', 'occurred', 'employee', 'getting', 'error', 'message', 'user', 'authentication', 'failed', 'seek', 'support', 'resolve', 'issue'] processed_text: ['user', 'id', 'locked', 'please', 'note', 'es', 'portal', 'access', 'specified', 'detail', 'locked', 'employee', 'name', 'raghu', 'mg', 'employee', 'id', 'user', 'name', 'mgr', 'issue', 'user', 'id', 'getting', 'locked', 'previously', 'also', 'facing', 'issue', 'user', 'id', 'password', 'changed', 'worked', 'month', 'issue', 'occurred', 'employee', 'getting', 'error', 'message', 'user', 'authentication', 'failed', 'seek', 'support', 'resolve', 'issue'] list_processed_text: [['user'], ['id'], ['locked'], ['please'], ['note'], ['es'], ['portal'], ['access'], ['specified'], ['detail'], ['locked'], ['employee'], ['name'], ['raghu'], ['mg'], ['employee'], ['id'], ['user'], ['name'], ['mgr'], ['issue'], ['user'], ['id'], ['getting'], ['locked'], ['previously'], ['also'], ['facing'], ['issue'], ['user'], ['id'], ['password'], ['changed'], ['worked'], ['month'], ['issue'], ['occurred'], ['employee'], ['getting'], ['error'], ['message'], ['user'], ['authentication'], ['failed'], ['seek'], ['support'], ['resolve'], ['issue']] k: 7375 len: <class 'list'> Data: ['telephony', 'software', 'installation', 'upgrade', 'work', 'two', 'restarts', 'application', 'empw', 'nt', 'sincerely,', 'gr', 'en', 'best'] processed_text: ['telephony', 'software', 'installation', 'upgrade', 'work', 'two', 'restarts', 'application', 'empw', 'nt', 'sincerely,', 'gr', 'en', 'best'] list_processed_text: [['telephony'], ['software'], ['installation'], ['upgrade'], ['work'], ['two'], ['restarts'], ['application'], ['empw'], ['nt'], ['sincerely,'], ['gr'], ['en'], ['best']] k: 7376 len: <class 'list'> Data: ['receiving', 'server', 'error', 'crm', 'adoption', 'score', 'card', 'hello', 'please', 'find', 'snap', 'error', 'receiving', 'accessing', 'adoption', 'scorecard', 'please', 'needful'] processed_text: ['receiving', 'server', 'error', 'crm', 'adoption', 'score', 'card', 'hello', 'please', 'find', 'snap', 'error', 'receiving', 'accessing', 'adoption', 'scorecard', 'please', 'needful'] list_processed_text: [['receiving'], ['server'], ['error'], ['crm'], ['adoption'], ['score'], ['card'], ['hello'], ['please'], ['find'], ['snap'], ['error'], ['receiving'], ['accessing'], ['adoption'], ['scorecard'], ['please'], ['needful']] k: 7377 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'phone', 'call', 'please', 'stop', 'immediately', 'update', 'telephony', 'software', 'pc', 'unable', 'run', 'telephony', 'software', 'update', 'please', 'see', 'list', 'aghl', 'israel', 'israel', 'nazarr', 'window', 'professional', 'ic', 'user', 'application', 'english', 'aghw', 'israel', 'israel', 'israey', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'aghw', 'israel', 'israel', 'nahumo', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'aghw', 'israel', 'israel', 'tevkia', 'window', 'professional', 'ic', 'user', 'application', 'english', 'aghw', 'israel', 'israel', 'pogredrty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'affected', 'pc', 'issue', 'many'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'phone', 'call', 'please', 'stop', 'immediately', 'update', 'telephony', 'software', 'pc', 'unable', 'run', 'telephony', 'software', 'update', 'please', 'see', 'list', 'aghl', 'israel', 'israel', 'nazarr', 'window', 'professional', 'ic', 'user', 'application', 'english', 'aghw', 'israel', 'israel', 'israey', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'aghw', 'israel', 'israel', 'nahumo', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'aghw', 'israel', 'israel', 'tevkia', 'window', 'professional', 'ic', 'user', 'application', 'english', 'aghw', 'israel', 'israel', 'pogredrty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'affected', 'pc', 'issue', 'many'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['deeghyupak'], ['phone'], ['call'], ['please'], ['stop'], ['immediately'], ['update'], ['telephony'], ['software'], ['pc'], ['unable'], ['run'], ['telephony'], ['software'], ['update'], ['please'], ['see'], ['list'], ['aghl'], ['israel'], ['israel'], ['nazarr'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['aghw'], ['israel'], ['israel'], ['israey'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['bit'], ['english'], ['aghw'], ['israel'], ['israel'], ['nahumo'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['bit'], ['english'], ['aghw'], ['israel'], ['israel'], ['tevkia'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['aghw'], ['israel'], ['israel'], ['pogredrty'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['affected'], ['pc'], ['issue'], ['many']] k: 7378 len: <class 'list'> Data: ['attendance', 'tool', 'password', 'reset', 'request', 'attendance', 'tool', 'password', 'reset', 'request'] processed_text: ['attendance', 'tool', 'password', 'reset', 'request', 'attendance', 'tool', 'password', 'reset', 'request'] list_processed_text: [['attendance'], ['tool'], ['password'], ['reset'], ['request'], ['attendance'], ['tool'], ['password'], ['reset'], ['request']] k: 7379 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'daghyunny', 'please', 'find', 'pc', 'installed', 'old', 'telephony', 'software', 'application', 'pulled', 'report', 'patching', 'antivirus', 'sw', 'name', 'location', 'country', 'user', 'o', 'name', 'name', 'install', 'primary', 'language', 'o', 'architecture', 'deployment', 'aghl', 'israel', 'israel', 'nazarr', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'israey', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'nahumo', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'tevkia', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'pogredrty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'agvw', 'israel', 'sokdelfgty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'scheduled', 'new', 'version', 'upgrade', 'pc', 'installed', 'old', 'telephony', 'software', 'application'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'daghyunny', 'please', 'find', 'pc', 'installed', 'old', 'telephony', 'software', 'application', 'pulled', 'report', 'patching', 'antivirus', 'sw', 'name', 'location', 'country', 'user', 'o', 'name', 'name', 'install', 'primary', 'language', 'o', 'architecture', 'deployment', 'aghl', 'israel', 'israel', 'nazarr', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'israey', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'nahumo', 'window', 'professional', 'ic', 'user', 'application', 'bit', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'tevkia', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'aghw', 'israel', 'israel', 'pogredrty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'agvw', 'israel', 'sokdelfgty', 'window', 'professional', 'ic', 'user', 'application', 'english', 'bit', 'patching', 'antivirus', 'sw', 'scheduled', 'new', 'version', 'upgrade', 'pc', 'installed', 'old', 'telephony', 'software', 'application'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['daghyunny'], ['please'], ['find'], ['pc'], ['installed'], ['old'], ['telephony'], ['software'], ['application'], ['pulled'], ['report'], ['patching'], ['antivirus'], ['sw'], ['name'], ['location'], ['country'], ['user'], ['o'], ['name'], ['name'], ['install'], ['primary'], ['language'], ['o'], ['architecture'], ['deployment'], ['aghl'], ['israel'], ['israel'], ['nazarr'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['aghw'], ['israel'], ['israel'], ['israey'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['bit'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['aghw'], ['israel'], ['israel'], ['nahumo'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['bit'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['aghw'], ['israel'], ['israel'], ['tevkia'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['aghw'], ['israel'], ['israel'], ['pogredrty'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['agvw'], ['israel'], ['sokdelfgty'], ['window'], ['professional'], ['ic'], ['user'], ['application'], ['english'], ['bit'], ['patching'], ['antivirus'], ['sw'], ['scheduled'], ['new'], ['version'], ['upgrade'], ['pc'], ['installed'], ['old'], ['telephony'], ['software'], ['application']] k: 7380 len: <class 'list'> Data: ['ad', 'account', 'lock', 'ad', 'account', 'lock'] processed_text: ['ad', 'account', 'lock', 'ad', 'account', 'lock'] list_processed_text: [['ad'], ['account'], ['lock'], ['ad'], ['account'], ['lock']] k: 7381 len: <class 'list'> Data: ['new', 'order', 'mm', 'dmhpm', 'mm', 'mb', 'crysyhtal', 'xithya', 'pm', 'nwfodmhc', 'exurcwkm', 'cindy', 'wanrtyg', 'marftgytin', 'xia', 'tfw', 'new', 'order', 'mm', 'dmhpm', 'mm', 'mb', 'importance', 'high', 'hi', 'please', 'advise', 'group', 'cost', 'mm', 'plant', 'plant', 'different', 'taking', 'mm', 'example', 'group', 'cost', 'group', 'cost'] processed_text: ['new', 'order', 'mm', 'dmhpm', 'mm', 'mb', 'crysyhtal', 'xithya', 'pm', 'nwfodmhc', 'exurcwkm', 'cindy', 'wanrtyg', 'marftgytin', 'xia', 'tfw', 'new', 'order', 'mm', 'dmhpm', 'mm', 'mb', 'importance', 'high', 'hi', 'please', 'advise', 'group', 'cost', 'mm', 'plant', 'plant', 'different', 'taking', 'mm', 'example', 'group', 'cost', 'group', 'cost'] list_processed_text: [['new'], ['order'], ['mm'], ['dmhpm'], ['mm'], ['mb'], ['crysyhtal'], ['xithya'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['cindy'], ['wanrtyg'], ['marftgytin'], ['xia'], ['tfw'], ['new'], ['order'], ['mm'], ['dmhpm'], ['mm'], ['mb'], ['importance'], ['high'], ['hi'], ['please'], ['advise'], ['group'], ['cost'], ['mm'], ['plant'], ['plant'], ['different'], ['taking'], ['mm'], ['example'], ['group'], ['cost'], ['group'], ['cost']] k: 7382 len: <class 'list'> Data: ['intercompany', 'hi', 'team', 'generate', 'intercompany', 'delivery', 'note', 'following', 'error', 'message', 'appears', 'please', 'look', 'mit', 'freundlichen', 'grugermany', 'best'] processed_text: ['intercompany', 'hi', 'team', 'generate', 'intercompany', 'delivery', 'note', 'following', 'error', 'message', 'appears', 'please', 'look', 'mit', 'freundlichen', 'grugermany', 'best'] list_processed_text: [['intercompany'], ['hi'], ['team'], ['generate'], ['intercompany'], ['delivery'], ['note'], ['following'], ['error'], ['message'], ['appears'], ['please'], ['look'], ['mit'], ['freundlichen'], ['grugermany'], ['best']] k: 7383 len: <class 'list'> Data: ['need', 'help', 'installing', 'te', 'need', 'help', 'installing', 'te'] processed_text: ['need', 'help', 'installing', 'te', 'need', 'help', 'installing', 'te'] list_processed_text: [['need'], ['help'], ['installing'], ['te'], ['need'], ['help'], ['installing'], ['te']] k: 7384 len: <class 'list'> Data: ['email', 'notification', 'unfortunately', 'field', 'lost', 'thank', 'much', 'gr', 'trgqbeax', 'hfyzudql', 'best', 'regard'] processed_text: ['email', 'notification', 'unfortunately', 'field', 'lost', 'thank', 'much', 'gr', 'trgqbeax', 'hfyzudql', 'best', 'regard'] list_processed_text: [['email'], ['notification'], ['unfortunately'], ['field'], ['lost'], ['thank'], ['much'], ['gr'], ['trgqbeax'], ['hfyzudql'], ['best'], ['regard']] k: 7385 len: <class 'list'> Data: ['able', 'login', 'es', 'portal', 'able', 'login', 'es', 'portal'] processed_text: ['able', 'login', 'es', 'portal', 'able', 'login', 'es', 'portal'] list_processed_text: [['able'], ['login'], ['es'], ['portal'], ['able'], ['login'], ['es'], ['portal']] k: 7386 len: <class 'list'> Data: ['zpdist', 'programdnty', 'allowing', 'distribute', 'planned', 'order', 'production', 'order', 'hello', 'chandruhdty', 'ebi', 'created', 'example', 'sid', 'debugging', 'fixing', 'production', 'order', 'receive', 'mm', 'issue', 'appear', 'case', 'user', 'try', 'ship', 'planned', 'order', 'also', 'trying', 'ship', 'production', 'order', 'shipping', 'planned', 'order', 'look', 'like', 'zpdist', 'programdnty', 'allow', 'ship', 'planned', 'order', 'case', 'planned', 'order', 'finish', 'date', 'due', 'past', 'due', 'purple', 'example', 'screenshot', 'case', 'planned', 'order', 'finish', 'date', 'due', 'red', 'example', 'zpdist', 'programdnty', 'allow', 'ship', 'planned', 'order', 'following', 'thing', 'need', 'changed', 'zpdist', 'programdnty', 'allow', 'force', 'shipment', 'planned', 'order', 'even', 'though', 'planned', 'order', 'due', 'like', 'zpdist', 'programdnty', 'stock', 'transfer', 'order', 'zpdist', 'programdnty', 'use', 'planned', 'order', 'start', 'date', 'rather', 'planned', 'order', 'finish', 'date', 'determine', 'whether', 'planned', 'order', 'due', 'shipping', 'production', 'order', 'look', 'like', 'zpdist', 'programdnty', 'allow', 'ship', 'production', 'order', 'case', 'basic', 'finish', 'date', 'production', 'order', 'due', 'past', 'due', 'blue', 'example', 'case', 'basic', 'finish', 'date', 'production', 'order', 'due', 'yellow', 'example', 'zpdist', 'programdnty', 'allow', 'ship', 'production', 'order', 'following', 'thing', 'need', 'changed', 'zpdist', 'programdnty', 'allow', 'force', 'shipment', 'production', 'order', 'even', 'though', 'production', 'order', 'due', 'like', 'zpdist', 'programdnty', 'stock', 'transfer', 'order', 'zpdist', 'programdnty', 'use', 'basic', 'start', 'date', 'already', 'shown', 'transaction', 'rather', 'basic', 'finish', 'date', 'determine', 'whether', 'production', 'order', 'due'] processed_text: ['zpdist', 'programdnty', 'allowing', 'distribute', 'planned', 'order', 'production', 'order', 'hello', 'chandruhdty', 'ebi', 'created', 'example', 'sid', 'debugging', 'fixing', 'production', 'order', 'receive', 'mm', 'issue', 'appear', 'case', 'user', 'try', 'ship', 'planned', 'order', 'also', 'trying', 'ship', 'production', 'order', 'shipping', 'planned', 'order', 'look', 'like', 'zpdist', 'programdnty', 'allow', 'ship', 'planned', 'order', 'case', 'planned', 'order', 'finish', 'date', 'due', 'past', 'due', 'purple', 'example', 'screenshot', 'case', 'planned', 'order', 'finish', 'date', 'due', 'red', 'example', 'zpdist', 'programdnty', 'allow', 'ship', 'planned', 'order', 'following', 'thing', 'need', 'changed', 'zpdist', 'programdnty', 'allow', 'force', 'shipment', 'planned', 'order', 'even', 'though', 'planned', 'order', 'due', 'like', 'zpdist', 'programdnty', 'stock', 'transfer', 'order', 'zpdist', 'programdnty', 'use', 'planned', 'order', 'start', 'date', 'rather', 'planned', 'order', 'finish', 'date', 'determine', 'whether', 'planned', 'order', 'due', 'shipping', 'production', 'order', 'look', 'like', 'zpdist', 'programdnty', 'allow', 'ship', 'production', 'order', 'case', 'basic', 'finish', 'date', 'production', 'order', 'due', 'past', 'due', 'blue', 'example', 'case', 'basic', 'finish', 'date', 'production', 'order', 'due', 'yellow', 'example', 'zpdist', 'programdnty', 'allow', 'ship', 'production', 'order', 'following', 'thing', 'need', 'changed', 'zpdist', 'programdnty', 'allow', 'force', 'shipment', 'production', 'order', 'even', 'though', 'production', 'order', 'due', 'like', 'zpdist', 'programdnty', 'stock', 'transfer', 'order', 'zpdist', 'programdnty', 'use', 'basic', 'start', 'date', 'already', 'shown', 'transaction', 'rather', 'basic', 'finish', 'date', 'determine', 'whether', 'production', 'order', 'due'] list_processed_text: [['zpdist'], ['programdnty'], ['allowing'], ['distribute'], ['planned'], ['order'], ['production'], ['order'], ['hello'], ['chandruhdty'], ['ebi'], ['created'], ['example'], ['sid'], ['debugging'], ['fixing'], ['production'], ['order'], ['receive'], ['mm'], ['issue'], ['appear'], ['case'], ['user'], ['try'], ['ship'], ['planned'], ['order'], ['also'], ['trying'], ['ship'], ['production'], ['order'], ['shipping'], ['planned'], ['order'], ['look'], ['like'], ['zpdist'], ['programdnty'], ['allow'], ['ship'], ['planned'], ['order'], ['case'], ['planned'], ['order'], ['finish'], ['date'], ['due'], ['past'], ['due'], ['purple'], ['example'], ['screenshot'], ['case'], ['planned'], ['order'], ['finish'], ['date'], ['due'], ['red'], ['example'], ['zpdist'], ['programdnty'], ['allow'], ['ship'], ['planned'], ['order'], ['following'], ['thing'], ['need'], ['changed'], ['zpdist'], ['programdnty'], ['allow'], ['force'], ['shipment'], ['planned'], ['order'], ['even'], ['though'], ['planned'], ['order'], ['due'], ['like'], ['zpdist'], ['programdnty'], ['stock'], ['transfer'], ['order'], ['zpdist'], ['programdnty'], ['use'], ['planned'], ['order'], ['start'], ['date'], ['rather'], ['planned'], ['order'], ['finish'], ['date'], ['determine'], ['whether'], ['planned'], ['order'], ['due'], ['shipping'], ['production'], ['order'], ['look'], ['like'], ['zpdist'], ['programdnty'], ['allow'], ['ship'], ['production'], ['order'], ['case'], ['basic'], ['finish'], ['date'], ['production'], ['order'], ['due'], ['past'], ['due'], ['blue'], ['example'], ['case'], ['basic'], ['finish'], ['date'], ['production'], ['order'], ['due'], ['yellow'], ['example'], ['zpdist'], ['programdnty'], ['allow'], ['ship'], ['production'], ['order'], ['following'], ['thing'], ['need'], ['changed'], ['zpdist'], ['programdnty'], ['allow'], ['force'], ['shipment'], ['production'], ['order'], ['even'], ['though'], ['production'], ['order'], ['due'], ['like'], ['zpdist'], ['programdnty'], ['stock'], ['transfer'], ['order'], ['zpdist'], ['programdnty'], ['use'], ['basic'], ['start'], ['date'], ['already'], ['shown'], ['transaction'], ['rather'], ['basic'], ['finish'], ['date'], ['determine'], ['whether'], ['production'], ['order'], ['due']] k: 7387 len: <class 'list'> Data: ['window', 'system', 'start', 'window', 'system', 'start'] processed_text: ['window', 'system', 'start', 'window', 'system', 'start'] list_processed_text: [['window'], ['system'], ['start'], ['window'], ['system'], ['start']] k: 7388 len: <class 'list'> Data: ['wifi', 'big', 'meeting', 'stable', 'meeting', 'room', 'meeting', 'switzerland', 'lot', 'participant', 'like', 'today', 'wifi', 'stable', 'user', 'get', 'interrupt', 'frequently', 'possibility', 'check', 'much', 'user', 'connected', 'ap', 'analyzing', 'problem'] processed_text: ['wifi', 'big', 'meeting', 'stable', 'meeting', 'room', 'meeting', 'switzerland', 'lot', 'participant', 'like', 'today', 'wifi', 'stable', 'user', 'get', 'interrupt', 'frequently', 'possibility', 'check', 'much', 'user', 'connected', 'ap', 'analyzing', 'problem'] list_processed_text: [['wifi'], ['big'], ['meeting'], ['stable'], ['meeting'], ['room'], ['meeting'], ['switzerland'], ['lot'], ['participant'], ['like'], ['today'], ['wifi'], ['stable'], ['user'], ['get'], ['interrupt'], ['frequently'], ['possibility'], ['check'], ['much'], ['user'], ['connected'], ['ap'], ['analyzing'], ['problem']] k: 7389 len: <class 'list'> Data: ['payment', 'invoice', 'posted', 'company', 'vfx', 'see', 'attached', 'mail'] processed_text: ['payment', 'invoice', 'posted', 'company', 'vfx', 'see', 'attached', 'mail'] list_processed_text: [['payment'], ['invoice'], ['posted'], ['company'], ['vfx'], ['see'], ['attached'], ['mail']] k: 7390 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lock', 'issue', 'erp', 'sid', 'account', 'lock', 'issue'] processed_text: ['erp', 'sid', 'account', 'lock', 'issue', 'erp', 'sid', 'account', 'lock', 'issue'] list_processed_text: [['erp'], ['sid'], ['account'], ['lock'], ['issue'], ['erp'], ['sid'], ['account'], ['lock'], ['issue']] k: 7391 len: <class 'list'> Data: ['laptop', 'power', 'issue', 'laptop', 'getting'] processed_text: ['laptop', 'power', 'issue', 'laptop', 'getting'] list_processed_text: [['laptop'], ['power'], ['issue'], ['laptop'], ['getting']] k: 7392 len: <class 'list'> Data: ['help', 'mm', 'dear', 'status', 'shipment', 'urgent', 'required'] processed_text: ['help', 'mm', 'dear', 'status', 'shipment', 'urgent', 'required'] list_processed_text: [['help'], ['mm'], ['dear'], ['status'], ['shipment'], ['urgent'], ['required']] k: 7393 len: <class 'list'> Data: ['change', 'volunteer', 'tracker', 'hi', 'would', 'need', 'two', 'edits', 'made', 'volunteer', 'tracker', 'form', 'wa', 'wsignin', 'please', 'add', 'two', 'field', 'beneath', 'facilitator', 'contact', 'person', 'named', 'name', 'organization', 'organization', 'address', 'please', 'add', 'end', 'please', 'send', 'non', 'profit', 'verification', 'document', 'please', 'note', 'volunteer', 'tracker', 'accessible', 'employee', 'set', 'permission', 'accordingly'] processed_text: ['change', 'volunteer', 'tracker', 'hi', 'would', 'need', 'two', 'edits', 'made', 'volunteer', 'tracker', 'form', 'wa', 'wsignin', 'please', 'add', 'two', 'field', 'beneath', 'facilitator', 'contact', 'person', 'named', 'name', 'organization', 'organization', 'address', 'please', 'add', 'end', 'please', 'send', 'non', 'profit', 'verification', 'document', 'please', 'note', 'volunteer', 'tracker', 'accessible', 'employee', 'set', 'permission', 'accordingly'] list_processed_text: [['change'], ['volunteer'], ['tracker'], ['hi'], ['would'], ['need'], ['two'], ['edits'], ['made'], ['volunteer'], ['tracker'], ['form'], ['wa'], ['wsignin'], ['please'], ['add'], ['two'], ['field'], ['beneath'], ['facilitator'], ['contact'], ['person'], ['named'], ['name'], ['organization'], ['organization'], ['address'], ['please'], ['add'], ['end'], ['please'], ['send'], ['non'], ['profit'], ['verification'], ['document'], ['please'], ['note'], ['volunteer'], ['tracker'], ['accessible'], ['employee'], ['set'], ['permission'], ['accordingly']] k: 7394 len: <class 'list'> Data: ['loaner', 'laptop', 'germany', 'location', 'germany', 'required', 'dear', 'team', 'would', 'please', 'need', 'loaner', 'laptop', 'consultant', 'bank', 'period', 'hzptilsw', 'wusdajqv', 'bank', 'consultant', 'jrilgbqu', 'kbspjrod', 'bank', 'consultant', 'hzptilsw', 'wusdajqv', 'bank', 'consultant', 'wpakylnj', 'wdtsyuxg', 'bank', 'consultant', 'three', 'consultant', 'still', 'valid', 'erp', 'microsoft', 'log', 'password', 'fyi', 'bank', 'consultant', 'huge', 'update', 'erp', 'payment', 'management', 'autobank', 'tool', 'could', 'please', 'prepare', 'laptop', 'accordingly', 'confirm', 'get', 'loaner', 'laptop', 'please', 'would', 'pick', 'mentioned', 'date', 'steffen', 'del', 'problem', 'please', 'let', 'know', 'many'] processed_text: ['loaner', 'laptop', 'germany', 'location', 'germany', 'required', 'dear', 'team', 'would', 'please', 'need', 'loaner', 'laptop', 'consultant', 'bank', 'period', 'hzptilsw', 'wusdajqv', 'bank', 'consultant', 'jrilgbqu', 'kbspjrod', 'bank', 'consultant', 'hzptilsw', 'wusdajqv', 'bank', 'consultant', 'wpakylnj', 'wdtsyuxg', 'bank', 'consultant', 'three', 'consultant', 'still', 'valid', 'erp', 'microsoft', 'log', 'password', 'fyi', 'bank', 'consultant', 'huge', 'update', 'erp', 'payment', 'management', 'autobank', 'tool', 'could', 'please', 'prepare', 'laptop', 'accordingly', 'confirm', 'get', 'loaner', 'laptop', 'please', 'would', 'pick', 'mentioned', 'date', 'steffen', 'del', 'problem', 'please', 'let', 'know', 'many'] list_processed_text: [['loaner'], ['laptop'], ['germany'], ['location'], ['germany'], ['required'], ['dear'], ['team'], ['would'], ['please'], ['need'], ['loaner'], ['laptop'], ['consultant'], ['bank'], ['period'], ['hzptilsw'], ['wusdajqv'], ['bank'], ['consultant'], ['jrilgbqu'], ['kbspjrod'], ['bank'], ['consultant'], ['hzptilsw'], ['wusdajqv'], ['bank'], ['consultant'], ['wpakylnj'], ['wdtsyuxg'], ['bank'], ['consultant'], ['three'], ['consultant'], ['still'], ['valid'], ['erp'], ['microsoft'], ['log'], ['password'], ['fyi'], ['bank'], ['consultant'], ['huge'], ['update'], ['erp'], ['payment'], ['management'], ['autobank'], ['tool'], ['could'], ['please'], ['prepare'], ['laptop'], ['accordingly'], ['confirm'], ['get'], ['loaner'], ['laptop'], ['please'], ['would'], ['pick'], ['mentioned'], ['date'], ['steffen'], ['del'], ['problem'], ['please'], ['let'], ['know'], ['many']] k: 7395 len: <class 'list'> Data: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'running', 'telephony', 'software', 'upgrade', 'pc', 'agvw', 'used', 'telephony', 'software'] processed_text: ['deployment', 'notification', 'telephony', 'software', 'hi', 'deeghyupak', 'running', 'telephony', 'software', 'upgrade', 'pc', 'agvw', 'used', 'telephony', 'software'] list_processed_text: [['deployment'], ['notification'], ['telephony'], ['software'], ['hi'], ['deeghyupak'], ['running'], ['telephony'], ['software'], ['upgrade'], ['pc'], ['agvw'], ['used'], ['telephony'], ['software']] k: 7396 len: <class 'list'> Data: ['cannot', 'access', 'sid', 'hello', 'cannot', 'login', 'sid', 'anymore', 'see', 'attachment', 'please', 'fix', 'user', 'id', 'hannas', 'meixni'] processed_text: ['cannot', 'access', 'sid', 'hello', 'cannot', 'login', 'sid', 'anymore', 'see', 'attachment', 'please', 'fix', 'user', 'id', 'hannas', 'meixni'] list_processed_text: [['cannot'], ['access'], ['sid'], ['hello'], ['cannot'], ['login'], ['sid'], ['anymore'], ['see'], ['attachment'], ['please'], ['fix'], ['user'], ['id'], ['hannas'], ['meixni']] k: 7397 len: <class 'list'> Data: ['support', 'r', 'move', 'qvncizuf', 'ueiybanz', 'support', 'r', 'move', 'qvncizuf', 'ueiybanz'] processed_text: ['support', 'r', 'move', 'qvncizuf', 'ueiybanz', 'support', 'r', 'move', 'qvncizuf', 'ueiybanz'] list_processed_text: [['support'], ['r'], ['move'], ['qvncizuf'], ['ueiybanz'], ['support'], ['r'], ['move'], ['qvncizuf'], ['ueiybanz']] k: 7398 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'obqridjk', 'ugelctsz', 'problem', 'eu', 'tool', 'obqridjk', 'ugelctsz'] processed_text: ['problem', 'eu', 'tool', 'obqridjk', 'ugelctsz', 'problem', 'eu', 'tool', 'obqridjk', 'ugelctsz'] list_processed_text: [['problem'], ['eu'], ['tool'], ['obqridjk'], ['ugelctsz'], ['problem'], ['eu'], ['tool'], ['obqridjk'], ['ugelctsz']] k: 7399 len: <class 'list'> Data: ['virus', 'found', 'hi', 'team', 'pls', 'see', 'removed', 'happened', 'last', 'day', 'best'] processed_text: ['virus', 'found', 'hi', 'team', 'pls', 'see', 'removed', 'happened', 'last', 'day', 'best'] list_processed_text: [['virus'], ['found'], ['hi'], ['team'], ['pls'], ['see'], ['removed'], ['happened'], ['last'], ['day'], ['best']] k: 7400 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'message'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'plant', 'issue', 'description', 'error', 'message', 'message'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['message']] k: 7401 len: <class 'list'> Data: ['window', 'account', 'lock', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lock', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lock'], ['window'], ['account'], ['lockout']] k: 7402 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'ragsbdhryu', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'jagthyin', 'bhughjdra', 'last', 'name', 'babanlal', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'ragsbdhryu', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'jagthyin', 'bhughjdra', 'last', 'name', 'babanlal', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['ragsbdhryu'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['jagthyin'], ['bhughjdra'], ['last'], ['name'], ['babanlal'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 7403 len: <class 'list'> Data: ['problem', 'start', 'outlook', 'hello', 'cannot', 'start', 'outlook', 'computer', 'crm', 'synchronizes', 'hour', 'also', 'block', 'thing', 'engineering', 'tool', 'b', 'please', 'help', 'sit', 'computer', 'best', 'regard', 'uwe', 'schr', 'ck', 'technical', 'advice', 'sale', 'mobil', 'tel', 'company', 'deutschland', 'gmbh', 'max', 'planck', 'stra', 'germany', 'www', 'company', 'com', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'harald', 'nnlein', 'headquarters', 'company', 'germany', 'hgermany', 'registergerirtcht', 'bad', 'homburg', 'hgermany', 'hrb', 'communication', 'unique', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'notification', 'due', 'oversight', 'ann', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['problem', 'start', 'outlook', 'hello', 'cannot', 'start', 'outlook', 'computer', 'crm', 'synchronizes', 'hour', 'also', 'block', 'thing', 'engineering', 'tool', 'b', 'please', 'help', 'sit', 'computer', 'best', 'regard', 'uwe', 'schr', 'ck', 'technical', 'advice', 'sale', 'mobil', 'tel', 'company', 'deutschland', 'gmbh', 'max', 'planck', 'stra', 'germany', 'www', 'company', 'com', 'company', 'deutschland', 'gmbh', 'managing', 'director', 'rfwlsoej', 'yvtjzkaw', 'harald', 'nnlein', 'headquarters', 'company', 'germany', 'hgermany', 'registergerirtcht', 'bad', 'homburg', 'hgermany', 'hrb', 'communication', 'unique', 'solely', 'intended', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'exempt', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'notification', 'due', 'oversight', 'ann', 'please', 'notify', 'sender', 'send', 'message', 'company', 'post', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['problem'], ['start'], ['outlook'], ['hello'], ['cannot'], ['start'], ['outlook'], ['computer'], ['crm'], ['synchronizes'], ['hour'], ['also'], ['block'], ['thing'], ['engineering'], ['tool'], ['b'], ['please'], ['help'], ['sit'], ['computer'], ['best'], ['regard'], ['uwe'], ['schr'], ['ck'], ['technical'], ['advice'], ['sale'], ['mobil'], ['tel'], ['company'], ['deutschland'], ['gmbh'], ['max'], ['planck'], ['stra'], ['germany'], ['www'], ['company'], ['com'], ['company'], ['deutschland'], ['gmbh'], ['managing'], ['director'], ['rfwlsoej'], ['yvtjzkaw'], ['harald'], ['nnlein'], ['headquarters'], ['company'], ['germany'], ['hgermany'], ['registergerirtcht'], ['bad'], ['homburg'], ['hgermany'], ['hrb'], ['communication'], ['unique'], ['solely'], ['intended'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['exempt'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['notification'], ['due'], ['oversight'], ['ann'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['company'], ['post'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 7404 len: <class 'list'> Data: ['po', 'error', 'language', 'hello', 'could', 'please', 'help', 'check', 'reason', 'po', 'error', 'language', 'best'] processed_text: ['po', 'error', 'language', 'hello', 'could', 'please', 'help', 'check', 'reason', 'po', 'error', 'language', 'best'] list_processed_text: [['po'], ['error'], ['language'], ['hello'], ['could'], ['please'], ['help'], ['check'], ['reason'], ['po'], ['error'], ['language'], ['best']] k: 7405 len: <class 'list'> Data: ['telephony', 'software', 'software', 'upgrade', 'user', 'laijuttr', 'able', 'find', 'interaction', 'desktop', 'icon', 'pc', 'installation', 'even', 'old', 'version', 'got', 'deleted', 'please', 'assist'] processed_text: ['telephony', 'software', 'software', 'upgrade', 'user', 'laijuttr', 'able', 'find', 'interaction', 'desktop', 'icon', 'pc', 'installation', 'even', 'old', 'version', 'got', 'deleted', 'please', 'assist'] list_processed_text: [['telephony'], ['software'], ['software'], ['upgrade'], ['user'], ['laijuttr'], ['able'], ['find'], ['interaction'], ['desktop'], ['icon'], ['pc'], ['installation'], ['even'], ['old'], ['version'], ['got'], ['deleted'], ['please'], ['assist']] k: 7406 len: <class 'list'> Data: ['outlook', 'spell', 'check', 'error', 'message', 'repeated', 'issue', 'warm'] processed_text: ['outlook', 'spell', 'check', 'error', 'message', 'repeated', 'issue', 'warm'] list_processed_text: [['outlook'], ['spell'], ['check'], ['error'], ['message'], ['repeated'], ['issue'], ['warm']] k: 7407 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7408 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7409 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7410 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 7411 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 7412 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 7413 len: <class 'list'> Data: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] processed_text: ['unable', 'login', 'erp', 'sid', 'unable', 'login', 'erp', 'sid'] list_processed_text: [['unable'], ['login'], ['erp'], ['sid'], ['unable'], ['login'], ['erp'], ['sid']] k: 7414 len: <class 'list'> Data: ['recall', 'ticket', 'please', 'reopen', 'narefgttndra', 'shigthyuva', 'would', 'like', 'recall', 'message', 'ticket', 'please', 'reopen'] processed_text: ['recall', 'ticket', 'please', 'reopen', 'narefgttndra', 'shigthyuva', 'would', 'like', 'recall', 'message', 'ticket', 'please', 'reopen'] list_processed_text: [['recall'], ['ticket'], ['please'], ['reopen'], ['narefgttndra'], ['shigthyuva'], ['would'], ['like'], ['recall'], ['message'], ['ticket'], ['please'], ['reopen']] k: 7415 len: <class 'list'> Data: ['laptop', 'volume', 'working', 'hi', 'laptop', 'dell', 'precision', 'volume', 'stopped', 'working', 'sure', 'whether', 'problem', 'driver', 'please', 'help', 'attend', 'skype', 'session', 'week', 'best'] processed_text: ['laptop', 'volume', 'working', 'hi', 'laptop', 'dell', 'precision', 'volume', 'stopped', 'working', 'sure', 'whether', 'problem', 'driver', 'please', 'help', 'attend', 'skype', 'session', 'week', 'best'] list_processed_text: [['laptop'], ['volume'], ['working'], ['hi'], ['laptop'], ['dell'], ['precision'], ['volume'], ['stopped'], ['working'], ['sure'], ['whether'], ['problem'], ['driver'], ['please'], ['help'], ['attend'], ['skype'], ['session'], ['week'], ['best']] k: 7416 len: <class 'list'> Data: ['outlook', 'spell', 'check', 'working', 'repeated', 'issue', 'hello', 'pl', 'find', 'spell', 'check', 'error', 'outlook', 'repeated', 'error', 'time', 'observed', 'need', 'attention', 'permanent', 'solution', 'warm'] processed_text: ['outlook', 'spell', 'check', 'working', 'repeated', 'issue', 'hello', 'pl', 'find', 'spell', 'check', 'error', 'outlook', 'repeated', 'error', 'time', 'observed', 'need', 'attention', 'permanent', 'solution', 'warm'] list_processed_text: [['outlook'], ['spell'], ['check'], ['working'], ['repeated'], ['issue'], ['hello'], ['pl'], ['find'], ['spell'], ['check'], ['error'], ['outlook'], ['repeated'], ['error'], ['time'], ['observed'], ['need'], ['attention'], ['permanent'], ['solution'], ['warm']] k: 7417 len: <class 'list'> Data: ['dell', 'battery', 'failure', 'kds', 'sw', 'service'] processed_text: ['dell', 'battery', 'failure', 'kds', 'sw', 'service'] list_processed_text: [['dell'], ['battery'], ['failure'], ['kds'], ['sw'], ['service']] k: 7418 len: <class 'list'> Data: ['mm', 'kds', 'sw', 'service', 'nwfodmhc', 'exurcwkm', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'johthryugftyson', 'hu', 'fw', 'mm', 'hi', 'team', 'please', 'assist', 'create', 'dn', 'mentioned', 'mm'] processed_text: ['mm', 'kds', 'sw', 'service', 'nwfodmhc', 'exurcwkm', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'johthryugftyson', 'hu', 'fw', 'mm', 'hi', 'team', 'please', 'assist', 'create', 'dn', 'mentioned', 'mm'] list_processed_text: [['mm'], ['kds'], ['sw'], ['service'], ['nwfodmhc'], ['exurcwkm'], ['rxoynvgi'], ['ntgdsehl'], ['kds'], ['sw'], ['service'], ['johthryugftyson'], ['hu'], ['fw'], ['mm'], ['hi'], ['team'], ['please'], ['assist'], ['create'], ['dn'], ['mentioned'], ['mm']] k: 7419 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 7420 len: <class 'list'> Data: ['unable', 'connect', 'engineering', 'tool', 'unable', 'connect', 'engineering', 'tool'] processed_text: ['unable', 'connect', 'engineering', 'tool', 'unable', 'connect', 'engineering', 'tool'] list_processed_text: [['unable'], ['connect'], ['engineering'], ['tool'], ['unable'], ['connect'], ['engineering'], ['tool']] k: 7421 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap'] processed_text: ['abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap', 'abended', 'job', 'job', 'scheduler', 'pp', 'eu', 'tool', 'netch', 'ap'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap'], ['abended'], ['job'], ['job'], ['scheduler'], ['pp'], ['eu'], ['tool'], ['netch'], ['ap']] k: 7422 len: <class 'list'> Data: ['warehouse', 'vendor', 'export', 'service', 'hostname', 'showing', 'monitoring', 'tool', 'monitoring', 'tool', 'warehouse', 'vendor', 'export', 'service', 'hostname', 'showing', 'monitoring', 'tool', 'monitoring', 'tool'] processed_text: ['warehouse', 'vendor', 'export', 'service', 'hostname', 'showing', 'monitoring', 'tool', 'monitoring', 'tool', 'warehouse', 'vendor', 'export', 'service', 'hostname', 'showing', 'monitoring', 'tool', 'monitoring', 'tool'] list_processed_text: [['warehouse'], ['vendor'], ['export'], ['service'], ['hostname'], ['showing'], ['monitoring'], ['tool'], ['monitoring'], ['tool'], ['warehouse'], ['vendor'], ['export'], ['service'], ['hostname'], ['showing'], ['monitoring'], ['tool'], ['monitoring'], ['tool']] k: 7423 len: <class 'list'> Data: ['sipppr', 'help', 'dear', 'sipppr', 'pdf', 'adobe', 'reader', 'best'] processed_text: ['sipppr', 'help', 'dear', 'sipppr', 'pdf', 'adobe', 'reader', 'best'] list_processed_text: [['sipppr'], ['help'], ['dear'], ['sipppr'], ['pdf'], ['adobe'], ['reader'], ['best']] k: 7424 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7425 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7426 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7427 len: <class 'list'> Data: ['r', 'schneeberger', 'cnc', 'wza', 'programdntyme', 'cannot', 'opened', 'take', 'look', 'hard', 'drive', 'please', 'done', 'himghtmelreich', 'eu', 'tool', 'rep'] processed_text: ['r', 'schneeberger', 'cnc', 'wza', 'programdntyme', 'cannot', 'opened', 'take', 'look', 'hard', 'drive', 'please', 'done', 'himghtmelreich', 'eu', 'tool', 'rep'] list_processed_text: [['r'], ['schneeberger'], ['cnc'], ['wza'], ['programdntyme'], ['cannot'], ['opened'], ['take'], ['look'], ['hard'], ['drive'], ['please'], ['done'], ['himghtmelreich'], ['eu'], ['tool'], ['rep']] k: 7428 len: <class 'list'> Data: ['user', 'needed', 'help', 'login', 'erp', 'sid', 'user', 'needed', 'help', 'login', 'erp', 'sid', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'erp', 'sid', 'issue', 'resolved'] processed_text: ['user', 'needed', 'help', 'login', 'erp', 'sid', 'user', 'needed', 'help', 'login', 'erp', 'sid', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'erp', 'sid', 'issue', 'resolved'] list_processed_text: [['user'], ['needed'], ['help'], ['login'], ['erp'], ['sid'], ['user'], ['needed'], ['help'], ['login'], ['erp'], ['sid'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['erp'], ['sid'], ['issue'], ['resolved']] k: 7429 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] processed_text: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn'], ['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn']] k: 7430 len: <class 'list'> Data: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'change', 'window', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'user', 'system', 'using', 'teamviewer', 'help', 'user', 'login', 'password', 'manager', 'tool', 'password', 'tool', 'change', 'password', 'help', 'user', 'sync', 'psswords', 'company', 'network', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['help'], ['change'], ['window'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['tool'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['help'], ['user'], ['login'], ['password'], ['manager'], ['tool'], ['password'], ['tool'], ['change'], ['password'], ['help'], ['user'], ['sync'], ['psswords'], ['company'], ['network'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7431 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7432 len: <class 'list'> Data: ['expense', 'report', 'submit', 'expense', 'report', 'submit', 'expense', 'report', 'able', 'submit', 'required', 'erp', 'person', 'help', 'desk', 'submit', 'time', 'michjnfyele', 'jenhntyns', 'plant', 'manager'] processed_text: ['expense', 'report', 'submit', 'expense', 'report', 'submit', 'expense', 'report', 'able', 'submit', 'required', 'erp', 'person', 'help', 'desk', 'submit', 'time', 'michjnfyele', 'jenhntyns', 'plant', 'manager'] list_processed_text: [['expense'], ['report'], ['submit'], ['expense'], ['report'], ['submit'], ['expense'], ['report'], ['able'], ['submit'], ['required'], ['erp'], ['person'], ['help'], ['desk'], ['submit'], ['time'], ['michjnfyele'], ['jenhntyns'], ['plant'], ['manager']] k: 7433 len: <class 'list'> Data: ['return', 'held', 'worklfow', 'approval', 'vnhaycfo', 'smkpfjzv', 'vnhaycfo', 'smkpfjzv', 'earthwork', 'usa', 'customer', 'order', 'held', 'due', 'credit', 'involved', 'return', 'return', 'received'] processed_text: ['return', 'held', 'worklfow', 'approval', 'vnhaycfo', 'smkpfjzv', 'vnhaycfo', 'smkpfjzv', 'earthwork', 'usa', 'customer', 'order', 'held', 'due', 'credit', 'involved', 'return', 'return', 'received'] list_processed_text: [['return'], ['held'], ['worklfow'], ['approval'], ['vnhaycfo'], ['smkpfjzv'], ['vnhaycfo'], ['smkpfjzv'], ['earthwork'], ['usa'], ['customer'], ['order'], ['held'], ['due'], ['credit'], ['involved'], ['return'], ['return'], ['received']] k: 7434 len: <class 'list'> Data: ['robhyertyj', 'lee', 'ron', 'bell', 'health', 'saving', 'acct', 'deduction', 'coming', 'paycheck', 'yet', 'elected', 'zero', 'please', 'let', 'know', 'next', 'pay', 'run'] processed_text: ['robhyertyj', 'lee', 'ron', 'bell', 'health', 'saving', 'acct', 'deduction', 'coming', 'paycheck', 'yet', 'elected', 'zero', 'please', 'let', 'know', 'next', 'pay', 'run'] list_processed_text: [['robhyertyj'], ['lee'], ['ron'], ['bell'], ['health'], ['saving'], ['acct'], ['deduction'], ['coming'], ['paycheck'], ['yet'], ['elected'], ['zero'], ['please'], ['let'], ['know'], ['next'], ['pay'], ['run']] k: 7435 len: <class 'list'> Data: ['dell', 'system', 'keep', 'going', 'loop', 'shutting', 'urgent', 'dell', 'system', 'keep', 'going', 'loop', 'shutting', 'advised', 'user', 'restart', 'pc', 'happening', 'service', 'tag', 'contact', 'o', 'win'] processed_text: ['dell', 'system', 'keep', 'going', 'loop', 'shutting', 'urgent', 'dell', 'system', 'keep', 'going', 'loop', 'shutting', 'advised', 'user', 'restart', 'pc', 'happening', 'service', 'tag', 'contact', 'o', 'win'] list_processed_text: [['dell'], ['system'], ['keep'], ['going'], ['loop'], ['shutting'], ['urgent'], ['dell'], ['system'], ['keep'], ['going'], ['loop'], ['shutting'], ['advised'], ['user'], ['restart'], ['pc'], ['happening'], ['service'], ['tag'], ['contact'], ['o'], ['win']] k: 7436 len: <class 'list'> Data: ['adding', 'purchasingupstreamsso', 'member', 'please', 'add', 'kigthuym', 'whjtyulen', 'whjtlkn', 'cqlehowf', 'aosqelnr', 'shrghyadja', 'purchasingupstreamsso', 'active', 'directory', 'ad', 'group', 'including', 'samaccountname', 'ad', 'lowercase'] processed_text: ['adding', 'purchasingupstreamsso', 'member', 'please', 'add', 'kigthuym', 'whjtyulen', 'whjtlkn', 'cqlehowf', 'aosqelnr', 'shrghyadja', 'purchasingupstreamsso', 'active', 'directory', 'ad', 'group', 'including', 'samaccountname', 'ad', 'lowercase'] list_processed_text: [['adding'], ['purchasingupstreamsso'], ['member'], ['please'], ['add'], ['kigthuym'], ['whjtyulen'], ['whjtlkn'], ['cqlehowf'], ['aosqelnr'], ['shrghyadja'], ['purchasingupstreamsso'], ['active'], ['directory'], ['ad'], ['group'], ['including'], ['samaccountname'], ['ad'], ['lowercase']] k: 7437 len: <class 'list'> Data: ['mobile', 'device', 'need', 'contact', 'battery', 'life', 'issue', 'phone', 'loosing', 'charge', 'fast', 'throughout', 'day', 'something', 'battery', 'replaced', 'get', 'new', 'phone'] processed_text: ['mobile', 'device', 'need', 'contact', 'battery', 'life', 'issue', 'phone', 'loosing', 'charge', 'fast', 'throughout', 'day', 'something', 'battery', 'replaced', 'get', 'new', 'phone'] list_processed_text: [['mobile'], ['device'], ['need'], ['contact'], ['battery'], ['life'], ['issue'], ['phone'], ['loosing'], ['charge'], ['fast'], ['throughout'], ['day'], ['something'], ['battery'], ['replaced'], ['get'], ['new'], ['phone']] k: 7438 len: <class 'list'> Data: ['send', 'video', 'someone', 'outside', 'company', 'name', 'aytjedki', 'rucfxpla', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'send', 'video', 'someone', 'outside', 'company', 'large', 'attach', 'email'] processed_text: ['send', 'video', 'someone', 'outside', 'company', 'name', 'aytjedki', 'rucfxpla', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'send', 'video', 'someone', 'outside', 'company', 'large', 'attach', 'email'] list_processed_text: [['send'], ['video'], ['someone'], ['outside'], ['company'], ['name'], ['aytjedki'], ['rucfxpla'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['send'], ['video'], ['someone'], ['outside'], ['company'], ['large'], ['attach'], ['email']] k: 7439 len: <class 'list'> Data: ['vip', 'meeting', 'acceptance', 'notification', 'meeting', 'acceptance', 'notification'] processed_text: ['vip', 'meeting', 'acceptance', 'notification', 'meeting', 'acceptance', 'notification'] list_processed_text: [['vip'], ['meeting'], ['acceptance'], ['notification'], ['meeting'], ['acceptance'], ['notification']] k: 7440 len: <class 'list'> Data: ['unable', 'open', 'tif', 'file', 'unable', 'open', 'tif', 'file'] processed_text: ['unable', 'open', 'tif', 'file', 'unable', 'open', 'tif', 'file'] list_processed_text: [['unable'], ['open'], ['tif'], ['file'], ['unable'], ['open'], ['tif'], ['file']] k: 7441 len: <class 'list'> Data: ['unable', 'login', 'switch', 'unable', 'login', 'switch', 'due', 'memory', 'issue', 'per', 'syslog', 'alarm'] processed_text: ['unable', 'login', 'switch', 'unable', 'login', 'switch', 'due', 'memory', 'issue', 'per', 'syslog', 'alarm'] list_processed_text: [['unable'], ['login'], ['switch'], ['unable'], ['login'], ['switch'], ['due'], ['memory'], ['issue'], ['per'], ['syslog'], ['alarm']] k: 7442 len: <class 'list'> Data: ['crm', 'account', 'contact', 'reassignment', 'help', 'would', 'like', 'reassign', 'account', 'contact', 'thomklmas', 'mitctdrh', 'ervin', 'phone'] processed_text: ['crm', 'account', 'contact', 'reassignment', 'help', 'would', 'like', 'reassign', 'account', 'contact', 'thomklmas', 'mitctdrh', 'ervin', 'phone'] list_processed_text: [['crm'], ['account'], ['contact'], ['reassignment'], ['help'], ['would'], ['like'], ['reassign'], ['account'], ['contact'], ['thomklmas'], ['mitctdrh'], ['ervin'], ['phone']] k: 7443 len: <class 'list'> Data: ['telephony', 'software', 'phone', 'system', 'interaction', 'desktop', 'authentication', 'process', 'failure', 'name', 'mitgckqf', 'ewourgcx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'telephony', 'software', 'phone', 'system', 'interaction', 'desktop', 'authentication', 'process', 'failure'] processed_text: ['telephony', 'software', 'phone', 'system', 'interaction', 'desktop', 'authentication', 'process', 'failure', 'name', 'mitgckqf', 'ewourgcx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'telephony', 'software', 'phone', 'system', 'interaction', 'desktop', 'authentication', 'process', 'failure'] list_processed_text: [['telephony'], ['software'], ['phone'], ['system'], ['interaction'], ['desktop'], ['authentication'], ['process'], ['failure'], ['name'], ['mitgckqf'], ['ewourgcx'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['telephony'], ['software'], ['phone'], ['system'], ['interaction'], ['desktop'], ['authentication'], ['process'], ['failure']] k: 7444 len: <class 'list'> Data: ['accrual', 'posting', 'crm', 'crm', 'replicating', 'ecc', 'cpp', 'programdnty', 'id', 'fund', 'budget', 'posting', 'affected'] processed_text: ['accrual', 'posting', 'crm', 'crm', 'replicating', 'ecc', 'cpp', 'programdnty', 'id', 'fund', 'budget', 'posting', 'affected'] list_processed_text: [['accrual'], ['posting'], ['crm'], ['crm'], ['replicating'], ['ecc'], ['cpp'], ['programdnty'], ['id'], ['fund'], ['budget'], ['posting'], ['affected']] k: 7445 len: <class 'list'> Data: ['access', 'database', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'usa', 'access', 'dunham', 'bradstreet', 'data', 'base'] processed_text: ['access', 'database', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'please', 'usa', 'access', 'dunham', 'bradstreet', 'data', 'base'] list_processed_text: [['access'], ['database'], ['name'], ['mikhghytr'], ['karaffa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['please'], ['usa'], ['access'], ['dunham'], ['bradstreet'], ['data'], ['base']] k: 7446 len: <class 'list'> Data: ['drive', 'encryption', 'attention', 'needed', 'drive', 'encryption', 'attention', 'needed'] processed_text: ['drive', 'encryption', 'attention', 'needed', 'drive', 'encryption', 'attention', 'needed'] list_processed_text: [['drive'], ['encryption'], ['attention'], ['needed'], ['drive'], ['encryption'], ['attention'], ['needed']] k: 7447 len: <class 'list'> Data: ['hostname', 'company', 'com', 'connected', 'connected', 'received', 'reporting', 'tool', 'alert', 'pm', 'et', 'hostname', 'company', 'com', 'connected', 'connected'] processed_text: ['hostname', 'company', 'com', 'connected', 'connected', 'received', 'reporting', 'tool', 'alert', 'pm', 'et', 'hostname', 'company', 'com', 'connected', 'connected'] list_processed_text: [['hostname'], ['company'], ['com'], ['connected'], ['connected'], ['received'], ['reporting'], ['tool'], ['alert'], ['pm'], ['et'], ['hostname'], ['company'], ['com'], ['connected'], ['connected']] k: 7448 len: <class 'list'> Data: ['password', 'reset', 'es', 'portal', 'password', 'reset', 'es', 'portal'] processed_text: ['password', 'reset', 'es', 'portal', 'password', 'reset', 'es', 'portal'] list_processed_text: [['password'], ['reset'], ['es'], ['portal'], ['password'], ['reset'], ['es'], ['portal']] k: 7449 len: <class 'list'> Data: ['expense', 'report', 'reaching', 'manager', 'expense', 'report', 'reaching', 'manager'] processed_text: ['expense', 'report', 'reaching', 'manager', 'expense', 'report', 'reaching', 'manager'] list_processed_text: [['expense'], ['report'], ['reaching'], ['manager'], ['expense'], ['report'], ['reaching'], ['manager']] k: 7450 len: <class 'list'> Data: ['pc', 'boot', 'rqxw', 'beshryu', 'screen', 'post', 'slow', 'start', 'pc', 'boot', 'rqxw', 'beshryu', 'screen', 'post', 'slow', 'start'] processed_text: ['pc', 'boot', 'rqxw', 'beshryu', 'screen', 'post', 'slow', 'start', 'pc', 'boot', 'rqxw', 'beshryu', 'screen', 'post', 'slow', 'start'] list_processed_text: [['pc'], ['boot'], ['rqxw'], ['beshryu'], ['screen'], ['post'], ['slow'], ['start'], ['pc'], ['boot'], ['rqxw'], ['beshryu'], ['screen'], ['post'], ['slow'], ['start']] k: 7451 len: <class 'list'> Data: ['xerox', 'copier', 'usa', 'office', 'prtsid', 'paper', 'feeder', 'fault', 'copy', 'xerox', 'copier', 'usa', 'office', 'prtsid', 'paper', 'feeder', 'fault', 'copy'] processed_text: ['xerox', 'copier', 'usa', 'office', 'prtsid', 'paper', 'feeder', 'fault', 'copy', 'xerox', 'copier', 'usa', 'office', 'prtsid', 'paper', 'feeder', 'fault', 'copy'] list_processed_text: [['xerox'], ['copier'], ['usa'], ['office'], ['prtsid'], ['paper'], ['feeder'], ['fault'], ['copy'], ['xerox'], ['copier'], ['usa'], ['office'], ['prtsid'], ['paper'], ['feeder'], ['fault'], ['copy']] k: 7452 len: <class 'list'> Data: ['password', 'reset', 'jghjimdghty', 'bfhjtuiwell', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'jghjimdghty', 'bfhjtuiwell', 'window', 'password', 'expiring', 'soon', 'importance', 'high', 'hi', 'changed', 'vpn', 'password', 'morning', 'prompted', 'erp', 'outlook', 'go', 'change', 'per', 'password', 'management', 'tool', 'pw', 'software', 'password', 'management', 'tool', 'pw', 'accept', 'self', 'service', 'login', 'password', 'old', 'new', 'email', 'address'] processed_text: ['password', 'reset', 'jghjimdghty', 'bfhjtuiwell', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'jghjimdghty', 'bfhjtuiwell', 'window', 'password', 'expiring', 'soon', 'importance', 'high', 'hi', 'changed', 'vpn', 'password', 'morning', 'prompted', 'erp', 'outlook', 'go', 'change', 'per', 'password', 'management', 'tool', 'pw', 'software', 'password', 'management', 'tool', 'pw', 'accept', 'self', 'service', 'login', 'password', 'old', 'new', 'email', 'address'] list_processed_text: [['password'], ['reset'], ['jghjimdghty'], ['bfhjtuiwell'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['jghjimdghty'], ['bfhjtuiwell'], ['window'], ['password'], ['expiring'], ['soon'], ['importance'], ['high'], ['hi'], ['changed'], ['vpn'], ['password'], ['morning'], ['prompted'], ['erp'], ['outlook'], ['go'], ['change'], ['per'], ['password'], ['management'], ['tool'], ['pw'], ['software'], ['password'], ['management'], ['tool'], ['pw'], ['accept'], ['self'], ['service'], ['login'], ['password'], ['old'], ['new'], ['email'], ['address']] k: 7453 len: <class 'list'> Data: ['account', 'locked', 'password', 'reset', 'request', 'account', 'locked', 'password', 'reset', 'request'] processed_text: ['account', 'locked', 'password', 'reset', 'request', 'account', 'locked', 'password', 'reset', 'request'] list_processed_text: [['account'], ['locked'], ['password'], ['reset'], ['request'], ['account'], ['locked'], ['password'], ['reset'], ['request']] k: 7454 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 7455 len: <class 'list'> Data: ['unable', 'connect', 'network', 'laptop', 'unable', 'connect', 'network', 'laptop'] processed_text: ['unable', 'connect', 'network', 'laptop', 'unable', 'connect', 'network', 'laptop'] list_processed_text: [['unable'], ['connect'], ['network'], ['laptop'], ['unable'], ['connect'], ['network'], ['laptop']] k: 7456 len: <class 'list'> Data: ['create', 'wi', 'fi', 'password', 'ibm', 'team', 'onsite', 'usa', 'week', 'hi', 'please', 'create', 'wi', 'fi', 'password', 'tem', 'member', 'usa', 'pa'] processed_text: ['create', 'wi', 'fi', 'password', 'ibm', 'team', 'onsite', 'usa', 'week', 'hi', 'please', 'create', 'wi', 'fi', 'password', 'tem', 'member', 'usa', 'pa'] list_processed_text: [['create'], ['wi'], ['fi'], ['password'], ['ibm'], ['team'], ['onsite'], ['usa'], ['week'], ['hi'], ['please'], ['create'], ['wi'], ['fi'], ['password'], ['tem'], ['member'], ['usa'], ['pa']] k: 7457 len: <class 'list'> Data: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] processed_text: ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'] list_processed_text: [['collaboration'], ['platform'], ['issue'], ['collaboration'], ['platform'], ['issue']] k: 7458 len: <class 'list'> Data: ['unable', 'open', 'outlook', 'es', 'due', 'bad', 'password', 'unable', 'open', 'outlook', 'es', 'due', 'bad', 'password'] processed_text: ['unable', 'open', 'outlook', 'es', 'due', 'bad', 'password', 'unable', 'open', 'outlook', 'es', 'due', 'bad', 'password'] list_processed_text: [['unable'], ['open'], ['outlook'], ['es'], ['due'], ['bad'], ['password'], ['unable'], ['open'], ['outlook'], ['es'], ['due'], ['bad'], ['password']] k: 7459 len: <class 'list'> Data: ['unable', 'access', 'email', 'unable', 'access', 'email'] processed_text: ['unable', 'access', 'email', 'unable', 'access', 'email'] list_processed_text: [['unable'], ['access'], ['email'], ['unable'], ['access'], ['email']] k: 7460 len: <class 'list'> Data: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] processed_text: ['zdsxmcwu', 'thdjzolwronization', 'issue', 'zdsxmcwu', 'thdjzolwronization', 'issue'] list_processed_text: [['zdsxmcwu'], ['thdjzolwronization'], ['issue'], ['zdsxmcwu'], ['thdjzolwronization'], ['issue']] k: 7461 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 7462 len: <class 'list'> Data: ['access', 'engineering', 'tool', 'access', 'engineering', 'tool'] processed_text: ['access', 'engineering', 'tool', 'access', 'engineering', 'tool'] list_processed_text: [['access'], ['engineering'], ['tool'], ['access'], ['engineering'], ['tool']] k: 7463 len: <class 'list'> Data: ['global', 'germany', 'erp', 'print', 'csi', 'vln', 'work', 'hello', 'dear', 'tried', 'print', 'csi', 'erp', 'vln', 'time', 'message', 'got', 'oops', 'internet', 'explorer', 'could', 'connect', 'hostname', 'company', 'company', 'com', 'anybody', 'could', 'help', 'would', 'great', 'wbr', 'petrghada'] processed_text: ['global', 'germany', 'erp', 'print', 'csi', 'vln', 'work', 'hello', 'dear', 'tried', 'print', 'csi', 'erp', 'vln', 'time', 'message', 'got', 'oops', 'internet', 'explorer', 'could', 'connect', 'hostname', 'company', 'company', 'com', 'anybody', 'could', 'help', 'would', 'great', 'wbr', 'petrghada'] list_processed_text: [['global'], ['germany'], ['erp'], ['print'], ['csi'], ['vln'], ['work'], ['hello'], ['dear'], ['tried'], ['print'], ['csi'], ['erp'], ['vln'], ['time'], ['message'], ['got'], ['oops'], ['internet'], ['explorer'], ['could'], ['connect'], ['hostname'], ['company'], ['company'], ['com'], ['anybody'], ['could'], ['help'], ['would'], ['great'], ['wbr'], ['petrghada']] k: 7464 len: <class 'list'> Data: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] processed_text: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] list_processed_text: [['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['average'], ['sample'], ['total'], ['cpu'], ['error'], ['threshold'], ['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['average'], ['sample'], ['total'], ['cpu'], ['error'], ['threshold']] k: 7465 len: <class 'list'> Data: ['germany', 'kruse', 'password', 'change', 'failed', 'hello', 'frthdyui', 'password', 'change', 'work', 'please', 'help', 'thanks', 'advance', 'gru', 'petrghada'] processed_text: ['germany', 'kruse', 'password', 'change', 'failed', 'hello', 'frthdyui', 'password', 'change', 'work', 'please', 'help', 'thanks', 'advance', 'gru', 'petrghada'] list_processed_text: [['germany'], ['kruse'], ['password'], ['change'], ['failed'], ['hello'], ['frthdyui'], ['password'], ['change'], ['work'], ['please'], ['help'], ['thanks'], ['advance'], ['gru'], ['petrghada']] k: 7466 len: <class 'list'> Data: ['erp', 'access', 'hi', 'please', 'give', 'access', 'erp', 'cannot', 'log'] processed_text: ['erp', 'access', 'hi', 'please', 'give', 'access', 'erp', 'cannot', 'log'] list_processed_text: [['erp'], ['access'], ['hi'], ['please'], ['give'], ['access'], ['erp'], ['cannot'], ['log']] k: 7467 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['b'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7468 len: <class 'list'> Data: ['vip', 'battery', 'seems', 'dead', 'latitude', 'e', 'vip', 'battery', 'seems', 'dead', 'latitude', 'summary', 'dell', 'laptop', 'battery', 'light', 'flashing', 'orange', 'laptop', 'work', 'without', 'connection', 'power', 'cord', 'battery', 'seems', 'dead'] processed_text: ['vip', 'battery', 'seems', 'dead', 'latitude', 'e', 'vip', 'battery', 'seems', 'dead', 'latitude', 'summary', 'dell', 'laptop', 'battery', 'light', 'flashing', 'orange', 'laptop', 'work', 'without', 'connection', 'power', 'cord', 'battery', 'seems', 'dead'] list_processed_text: [['vip'], ['battery'], ['seems'], ['dead'], ['latitude'], ['e'], ['vip'], ['battery'], ['seems'], ['dead'], ['latitude'], ['summary'], ['dell'], ['laptop'], ['battery'], ['light'], ['flashing'], ['orange'], ['laptop'], ['work'], ['without'], ['connection'], ['power'], ['cord'], ['battery'], ['seems'], ['dead']] k: 7469 len: <class 'list'> Data: ['restart', 'service', 'lhqsid', 'server', 'restart', 'service', 'lhqsid', 'server', 'phone'] processed_text: ['restart', 'service', 'lhqsid', 'server', 'restart', 'service', 'lhqsid', 'server', 'phone'] list_processed_text: [['restart'], ['service'], ['lhqsid'], ['server'], ['restart'], ['service'], ['lhqsid'], ['server'], ['phone']] k: 7470 len: <class 'list'> Data: ['password', 'issue', 'password', 'issue'] processed_text: ['password', 'issue', 'password', 'issue'] list_processed_text: [['password'], ['issue'], ['password'], ['issue']] k: 7471 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 7472 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'unlock', 'request', 'erp', 'sid', 'password', 'reset', 'unlock', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'unlock', 'request', 'erp', 'sid', 'password', 'reset', 'unlock', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['unlock'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['unlock'], ['request']] k: 7473 len: <class 'list'> Data: ['unable', 'access', 'hostname', 'unable', 'access', 'hostname'] processed_text: ['unable', 'access', 'hostname', 'unable', 'access', 'hostname'] list_processed_text: [['unable'], ['access'], ['hostname'], ['unable'], ['access'], ['hostname']] k: 7474 len: <class 'list'> Data: ['unable', 'launch', 'skype', 'unable', 'launch', 'skype'] processed_text: ['unable', 'launch', 'skype', 'unable', 'launch', 'skype'] list_processed_text: [['unable'], ['launch'], ['skype'], ['unable'], ['launch'], ['skype']] k: 7475 len: <class 'list'> Data: ['ticket', 'update', 'query', 'ticket', 'inc', 'urgqkinl', 'zpcokgbj', 'ticket', 'update', 'query', 'ticket', 'inc', 'urgqkinl', 'zpcokgbj'] processed_text: ['ticket', 'update', 'query', 'ticket', 'inc', 'urgqkinl', 'zpcokgbj', 'ticket', 'update', 'query', 'ticket', 'inc', 'urgqkinl', 'zpcokgbj'] list_processed_text: [['ticket'], ['update'], ['query'], ['ticket'], ['inc'], ['urgqkinl'], ['zpcokgbj'], ['ticket'], ['update'], ['query'], ['ticket'], ['inc'], ['urgqkinl'], ['zpcokgbj']] k: 7476 len: <class 'list'> Data: ['unable', 'connect', 'company', 'secure', 'unable', 'connect', 'company', 'secure'] processed_text: ['unable', 'connect', 'company', 'secure', 'unable', 'connect', 'company', 'secure'] list_processed_text: [['unable'], ['connect'], ['company'], ['secure'], ['unable'], ['connect'], ['company'], ['secure']] k: 7477 len: <class 'list'> Data: ['shop', 'floor', 'app', 'record', 'error', 'operator', 'reinaldo', 'albrecht', 'second', 'shift', 'machine', 'ewag', 'r', 'grinding', 'process', 'pcd', 'cell', 'cannot', 'record', 'correctly', 'work', 'data', 'shop', 'floor', 'app', 'day', 'record', 'day', 'extended', 'next', 'closed'] processed_text: ['shop', 'floor', 'app', 'record', 'error', 'operator', 'reinaldo', 'albrecht', 'second', 'shift', 'machine', 'ewag', 'r', 'grinding', 'process', 'pcd', 'cell', 'cannot', 'record', 'correctly', 'work', 'data', 'shop', 'floor', 'app', 'day', 'record', 'day', 'extended', 'next', 'closed'] list_processed_text: [['shop'], ['floor'], ['app'], ['record'], ['error'], ['operator'], ['reinaldo'], ['albrecht'], ['second'], ['shift'], ['machine'], ['ewag'], ['r'], ['grinding'], ['process'], ['pcd'], ['cell'], ['cannot'], ['record'], ['correctly'], ['work'], ['data'], ['shop'], ['floor'], ['app'], ['day'], ['record'], ['day'], ['extended'], ['next'], ['closed']] k: 7478 len: <class 'list'> Data: ['engineering', 'tool', 'dwnload', 'prb', 'hello', 'tried', 'download', 'engineering', 'tool', 'desktop', 'showing', 'error', 'please', 'fix', 'issue', 'best'] processed_text: ['engineering', 'tool', 'dwnload', 'prb', 'hello', 'tried', 'download', 'engineering', 'tool', 'desktop', 'showing', 'error', 'please', 'fix', 'issue', 'best'] list_processed_text: [['engineering'], ['tool'], ['dwnload'], ['prb'], ['hello'], ['tried'], ['download'], ['engineering'], ['tool'], ['desktop'], ['showing'], ['error'], ['please'], ['fix'], ['issue'], ['best']] k: 7479 len: <class 'list'> Data: ['possible', 'login', 'due', 'locked', 'account', 'possible', 'login', 'due', 'locked', 'account'] processed_text: ['possible', 'login', 'due', 'locked', 'account', 'possible', 'login', 'due', 'locked', 'account'] list_processed_text: [['possible'], ['login'], ['due'], ['locked'], ['account'], ['possible'], ['login'], ['due'], ['locked'], ['account']] k: 7480 len: <class 'list'> Data: ['cant', 'complete', 'quote', 'number', 'cant', 'complete', 'quote', 'number', 'get', 'error', 'massage', 'line', 'item', 'entered', 'brand', 'listed', 'enter', 'valid', 'brand', 'line', 'item'] processed_text: ['cant', 'complete', 'quote', 'number', 'cant', 'complete', 'quote', 'number', 'get', 'error', 'massage', 'line', 'item', 'entered', 'brand', 'listed', 'enter', 'valid', 'brand', 'line', 'item'] list_processed_text: [['cant'], ['complete'], ['quote'], ['number'], ['cant'], ['complete'], ['quote'], ['number'], ['get'], ['error'], ['massage'], ['line'], ['item'], ['entered'], ['brand'], ['listed'], ['enter'], ['valid'], ['brand'], ['line'], ['item']] k: 7481 len: <class 'list'> Data: ['unable', 'launch', 'netweaver', 'unable', 'launch', 'netweaver'] processed_text: ['unable', 'launch', 'netweaver', 'unable', 'launch', 'netweaver'] list_processed_text: [['unable'], ['launch'], ['netweaver'], ['unable'], ['launch'], ['netweaver']] k: 7482 len: <class 'list'> Data: ['netweaver', 'bussiness', 'client', 'open', 'netweaver', 'bussiness', 'client', 'open'] processed_text: ['netweaver', 'bussiness', 'client', 'open', 'netweaver', 'bussiness', 'client', 'open'] list_processed_text: [['netweaver'], ['bussiness'], ['client'], ['open'], ['netweaver'], ['bussiness'], ['client'], ['open']] k: 7483 len: <class 'list'> Data: ['hr', 'tool', 'portal', 'working', 'hr', 'tool', 'portal', 'working'] processed_text: ['hr', 'tool', 'portal', 'working', 'hr', 'tool', 'portal', 'working'] list_processed_text: [['hr'], ['tool'], ['portal'], ['working'], ['hr'], ['tool'], ['portal'], ['working']] k: 7484 len: <class 'list'> Data: ['vip', 'delegation', 'issue', 'vip', 'telephone', 'summary', 'still', 'trying', 'get', 'issue', 'resolved', 'outlook', 'tomashtgd', 'mchectg', 'new', 'assistant', 'gave', 'editor', 'permission', 'email', 'calendar', 'etc', 'try', 'view', 'email', 'outlook', 'get', 'error', 'message', 'cannot', 'display', 'folder', 'microsoft', 'outlook', 'cannot', 'access', 'specified', 'folder', 'location', 'manually', 'open', 'email', 'account', 'time', 'going', 'work', 'seem', 'able', 'view', 'email', 'owa', 'want', 'use', 'outlook'] processed_text: ['vip', 'delegation', 'issue', 'vip', 'telephone', 'summary', 'still', 'trying', 'get', 'issue', 'resolved', 'outlook', 'tomashtgd', 'mchectg', 'new', 'assistant', 'gave', 'editor', 'permission', 'email', 'calendar', 'etc', 'try', 'view', 'email', 'outlook', 'get', 'error', 'message', 'cannot', 'display', 'folder', 'microsoft', 'outlook', 'cannot', 'access', 'specified', 'folder', 'location', 'manually', 'open', 'email', 'account', 'time', 'going', 'work', 'seem', 'able', 'view', 'email', 'owa', 'want', 'use', 'outlook'] list_processed_text: [['vip'], ['delegation'], ['issue'], ['vip'], ['telephone'], ['summary'], ['still'], ['trying'], ['get'], ['issue'], ['resolved'], ['outlook'], ['tomashtgd'], ['mchectg'], ['new'], ['assistant'], ['gave'], ['editor'], ['permission'], ['email'], ['calendar'], ['etc'], ['try'], ['view'], ['email'], ['outlook'], ['get'], ['error'], ['message'], ['cannot'], ['display'], ['folder'], ['microsoft'], ['outlook'], ['cannot'], ['access'], ['specified'], ['folder'], ['location'], ['manually'], ['open'], ['email'], ['account'], ['time'], ['going'], ['work'], ['seem'], ['able'], ['view'], ['email'], ['owa'], ['want'], ['use'], ['outlook']] k: 7485 len: <class 'list'> Data: ['clock', 'bottom', 'hub', 'home', 'page', 'seem', 'missing', 'tried', 'ie', 'mozilla'] processed_text: ['clock', 'bottom', 'hub', 'home', 'page', 'seem', 'missing', 'tried', 'ie', 'mozilla'] list_processed_text: [['clock'], ['bottom'], ['hub'], ['home'], ['page'], ['seem'], ['missing'], ['tried'], ['ie'], ['mozilla']] k: 7486 len: <class 'list'> Data: ['problem', 'speaker', 'hi', 'problem', 'speaker', 'laptop', 'hear', 'headset', 'earbuds', 'speaker', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'speaker', 'hi', 'problem', 'speaker', 'laptop', 'hear', 'headset', 'earbuds', 'speaker', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['speaker'], ['hi'], ['problem'], ['speaker'], ['laptop'], ['hear'], ['headset'], ['earbuds'], ['speaker'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 7487 len: <class 'list'> Data: ['unable', 'reset', 'password', 'unable', 'reset', 'password'] processed_text: ['unable', 'reset', 'password', 'unable', 'reset', 'password'] list_processed_text: [['unable'], ['reset'], ['password'], ['unable'], ['reset'], ['password']] k: 7488 len: <class 'list'> Data: ['call', 'debgrtybie', 'savgrtyuille', 'inc', 'cancel', 'ticket', 'call', 'debgrtybie', 'savgrtyuille', 'inc', 'cancel', 'ticket'] processed_text: ['call', 'debgrtybie', 'savgrtyuille', 'inc', 'cancel', 'ticket', 'call', 'debgrtybie', 'savgrtyuille', 'inc', 'cancel', 'ticket'] list_processed_text: [['call'], ['debgrtybie'], ['savgrtyuille'], ['inc'], ['cancel'], ['ticket'], ['call'], ['debgrtybie'], ['savgrtyuille'], ['inc'], ['cancel'], ['ticket']] k: 7489 len: <class 'list'> Data: ['immediate', 'restoration', 'drive', 'file', 'required', 'hello', 'hostname', 'team', 'corporate', 'governance', 'hostname', 'team', 'proxy', 'folder', 'deleted', 'helpdesk', 'employee', 'weekend', 'need', 'immediate', 'restoration', 'back', 'folder', 'file', 'contained', 'within', 'restored', 'priority', 'request', 'please', 'respond', 'within', 'hour', 'best', 'debgrtybie', 'savgrtyuille', 'sr', 'corporate', 'paralegal', 'company', 'inc'] processed_text: ['immediate', 'restoration', 'drive', 'file', 'required', 'hello', 'hostname', 'team', 'corporate', 'governance', 'hostname', 'team', 'proxy', 'folder', 'deleted', 'helpdesk', 'employee', 'weekend', 'need', 'immediate', 'restoration', 'back', 'folder', 'file', 'contained', 'within', 'restored', 'priority', 'request', 'please', 'respond', 'within', 'hour', 'best', 'debgrtybie', 'savgrtyuille', 'sr', 'corporate', 'paralegal', 'company', 'inc'] list_processed_text: [['immediate'], ['restoration'], ['drive'], ['file'], ['required'], ['hello'], ['hostname'], ['team'], ['corporate'], ['governance'], ['hostname'], ['team'], ['proxy'], ['folder'], ['deleted'], ['helpdesk'], ['employee'], ['weekend'], ['need'], ['immediate'], ['restoration'], ['back'], ['folder'], ['file'], ['contained'], ['within'], ['restored'], ['priority'], ['request'], ['please'], ['respond'], ['within'], ['hour'], ['best'], ['debgrtybie'], ['savgrtyuille'], ['sr'], ['corporate'], ['paralegal'], ['company'], ['inc']] k: 7490 len: <class 'list'> Data: ['christgrytoph', 'called', 'check', 'account', 'disabled', 'christgrytoph', 'called', 'check', 'account', 'disabled'] processed_text: ['christgrytoph', 'called', 'check', 'account', 'disabled', 'christgrytoph', 'called', 'check', 'account', 'disabled'] list_processed_text: [['christgrytoph'], ['called'], ['check'], ['account'], ['disabled'], ['christgrytoph'], ['called'], ['check'], ['account'], ['disabled']] k: 7491 len: <class 'list'> Data: ['need', 'help', 'resetting', 'erp', 'password', 'unlocking', 'account', 'need', 'help', 'resetting', 'erp', 'password', 'unlocking', 'account'] processed_text: ['need', 'help', 'resetting', 'erp', 'password', 'unlocking', 'account', 'need', 'help', 'resetting', 'erp', 'password', 'unlocking', 'account'] list_processed_text: [['need'], ['help'], ['resetting'], ['erp'], ['password'], ['unlocking'], ['account'], ['need'], ['help'], ['resetting'], ['erp'], ['password'], ['unlocking'], ['account']] k: 7492 len: <class 'list'> Data: ['account', 'expired', 'cyxieuwk', 'rekwlqmu', 'account', 'expired', 'cyxieuwk', 'rekwlqmu', 'informed', 'user', 'need', 'email', 'hr', 'account', 'need', 'enabled', 'account', 'disabled'] processed_text: ['account', 'expired', 'cyxieuwk', 'rekwlqmu', 'account', 'expired', 'cyxieuwk', 'rekwlqmu', 'informed', 'user', 'need', 'email', 'hr', 'account', 'need', 'enabled', 'account', 'disabled'] list_processed_text: [['account'], ['expired'], ['cyxieuwk'], ['rekwlqmu'], ['account'], ['expired'], ['cyxieuwk'], ['rekwlqmu'], ['informed'], ['user'], ['need'], ['email'], ['hr'], ['account'], ['need'], ['enabled'], ['account'], ['disabled']] k: 7493 len: <class 'list'> Data: ['inc', 'sao', 'palo', 'switch', 'since', 'et', 'hi', 'uidgt', 'jean', 'observing', 'one', 'switch', 'sao', 'palo', 'switch', 'since', 'et', 'please', 'check', 'power', 'status', 'cable', 'connection', 'switch', 'revert', 'note', 'device', 'came', 'active', 'planned', 'power', 'maintenance', 'per', 'chg'] processed_text: ['inc', 'sao', 'palo', 'switch', 'since', 'et', 'hi', 'uidgt', 'jean', 'observing', 'one', 'switch', 'sao', 'palo', 'switch', 'since', 'et', 'please', 'check', 'power', 'status', 'cable', 'connection', 'switch', 'revert', 'note', 'device', 'came', 'active', 'planned', 'power', 'maintenance', 'per', 'chg'] list_processed_text: [['inc'], ['sao'], ['palo'], ['switch'], ['since'], ['et'], ['hi'], ['uidgt'], ['jean'], ['observing'], ['one'], ['switch'], ['sao'], ['palo'], ['switch'], ['since'], ['et'], ['please'], ['check'], ['power'], ['status'], ['cable'], ['connection'], ['switch'], ['revert'], ['note'], ['device'], ['came'], ['active'], ['planned'], ['power'], ['maintenance'], ['per'], ['chg']] k: 7494 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'brings', 'error', 'password', 'change', 'attempt', 'password', 'management', 'tool', 'password', 'manager', 'brings', 'error', 'password', 'change', 'attempt'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'brings', 'error', 'password', 'change', 'attempt', 'password', 'management', 'tool', 'password', 'manager', 'brings', 'error', 'password', 'change', 'attempt'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['brings'], ['error'], ['password'], ['change'], ['attempt'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['brings'], ['error'], ['password'], ['change'], ['attempt']] k: 7495 len: <class 'list'> Data: ['collaboration', 'platform', 'online', 'opening', 'collaboration', 'platform', 'online', 'opening', 'error', 'diese', 'seite', 'kann', 'nicht', 'angezeigt', 'warden'] processed_text: ['collaboration', 'platform', 'online', 'opening', 'collaboration', 'platform', 'online', 'opening', 'error', 'diese', 'seite', 'kann', 'nicht', 'angezeigt', 'warden'] list_processed_text: [['collaboration'], ['platform'], ['online'], ['opening'], ['collaboration'], ['platform'], ['online'], ['opening'], ['error'], ['diese'], ['seite'], ['kann'], ['nicht'], ['angezeigt'], ['warden']] k: 7496 len: <class 'list'> Data: ['outlook', 'unlicensed', 'product', 'hello', 'help', 'm', 'office', 'product', 'show', 'following', 'error', 'message', 'gru'] processed_text: ['outlook', 'unlicensed', 'product', 'hello', 'help', 'm', 'office', 'product', 'show', 'following', 'error', 'message', 'gru'] list_processed_text: [['outlook'], ['unlicensed'], ['product'], ['hello'], ['help'], ['m'], ['office'], ['product'], ['show'], ['following'], ['error'], ['message'], ['gru']] k: 7497 len: <class 'list'> Data: ['reset', 'password', 'nvawmlch', 'ubyjolnc', 'erp', 'production', 'erp', 'please', 'reset', 'password'] processed_text: ['reset', 'password', 'nvawmlch', 'ubyjolnc', 'erp', 'production', 'erp', 'please', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['nvawmlch'], ['ubyjolnc'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password']] k: 7498 len: <class 'list'> Data: ['wvdxnkhf', 'jirecvta', 'locked', 'window', 'need', 'password', 'reset', 'user', 'id', 'owenghyga', 'locked', 'using', 'wifi', 'rth', 'location'] processed_text: ['wvdxnkhf', 'jirecvta', 'locked', 'window', 'need', 'password', 'reset', 'user', 'id', 'owenghyga', 'locked', 'using', 'wifi', 'rth', 'location'] list_processed_text: [['wvdxnkhf'], ['jirecvta'], ['locked'], ['window'], ['need'], ['password'], ['reset'], ['user'], ['id'], ['owenghyga'], ['locked'], ['using'], ['wifi'], ['rth'], ['location']] k: 7499 len: <class 'list'> Data: ['unable', 'boot', 'computer', 'unable', 'boot', 'computer', 'earlier', 'issue', 'blue', 'screen', 'computer', 'name', 'service', 'tag', 'fgvv', 'ruf', 'nummer', 'sartlgeo', 'lhqksbdx'] processed_text: ['unable', 'boot', 'computer', 'unable', 'boot', 'computer', 'earlier', 'issue', 'blue', 'screen', 'computer', 'name', 'service', 'tag', 'fgvv', 'ruf', 'nummer', 'sartlgeo', 'lhqksbdx'] list_processed_text: [['unable'], ['boot'], ['computer'], ['unable'], ['boot'], ['computer'], ['earlier'], ['issue'], ['blue'], ['screen'], ['computer'], ['name'], ['service'], ['tag'], ['fgvv'], ['ruf'], ['nummer'], ['sartlgeo'], ['lhqksbdx']] k: 7500 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 7501 len: <class 'list'> Data: ['skype', 'issue', 'm', 'office', 'crashing', 'skype', 'issue', 'm', 'office', 'crashing'] processed_text: ['skype', 'issue', 'm', 'office', 'crashing', 'skype', 'issue', 'm', 'office', 'crashing'] list_processed_text: [['skype'], ['issue'], ['m'], ['office'], ['crashing'], ['skype'], ['issue'], ['m'], ['office'], ['crashing']] k: 7502 len: <class 'list'> Data: ['crm', 'unsafe', 'web', 'side', 'pw', 'update', 'tried', 'lo', 'log', 'crm', 'received', 'following', 'pop', 'soll', 'google', 'chrome', 'ihr', 'passwort', 'r', 'diese', 'webside', 'speichern', 'skotthyutc', 'skiped', 'message', 'went', 'sale', 'markhtyeting', 'clicking', 'crm', 'english', 'languague', 'left', 'save', 'web', 'went', 'side', 'would', 'like', 'use', 'received', 'following', 'pop', 'soll', 'google', 'chrome', 'ihr', 'passwort', 'r', 'diese', 'webside', 'speichern', 'want', 'google', 'save', 'pws'] processed_text: ['crm', 'unsafe', 'web', 'side', 'pw', 'update', 'tried', 'lo', 'log', 'crm', 'received', 'following', 'pop', 'soll', 'google', 'chrome', 'ihr', 'passwort', 'r', 'diese', 'webside', 'speichern', 'skotthyutc', 'skiped', 'message', 'went', 'sale', 'markhtyeting', 'clicking', 'crm', 'english', 'languague', 'left', 'save', 'web', 'went', 'side', 'would', 'like', 'use', 'received', 'following', 'pop', 'soll', 'google', 'chrome', 'ihr', 'passwort', 'r', 'diese', 'webside', 'speichern', 'want', 'google', 'save', 'pws'] list_processed_text: [['crm'], ['unsafe'], ['web'], ['side'], ['pw'], ['update'], ['tried'], ['lo'], ['log'], ['crm'], ['received'], ['following'], ['pop'], ['soll'], ['google'], ['chrome'], ['ihr'], ['passwort'], ['r'], ['diese'], ['webside'], ['speichern'], ['skotthyutc'], ['skiped'], ['message'], ['went'], ['sale'], ['markhtyeting'], ['clicking'], ['crm'], ['english'], ['languague'], ['left'], ['save'], ['web'], ['went'], ['side'], ['would'], ['like'], ['use'], ['received'], ['following'], ['pop'], ['soll'], ['google'], ['chrome'], ['ihr'], ['passwort'], ['r'], ['diese'], ['webside'], ['speichern'], ['want'], ['google'], ['save'], ['pws']] k: 7503 len: <class 'list'> Data: ['one', 'note', 'issue', 'one', 'note', 'issue'] processed_text: ['one', 'note', 'issue', 'one', 'note', 'issue'] list_processed_text: [['one'], ['note'], ['issue'], ['one'], ['note'], ['issue']] k: 7504 len: <class 'list'> Data: ['unlock', 'ad', 'account', 'unlock', 'ad', 'account'] processed_text: ['unlock', 'ad', 'account', 'unlock', 'ad', 'account'] list_processed_text: [['unlock'], ['ad'], ['account'], ['unlock'], ['ad'], ['account']] k: 7505 len: <class 'list'> Data: ['account', 'locked', 'hello', 'team', 'abdhtyu', 'user', 'account', 'blocked', 'please', 'help'] processed_text: ['account', 'locked', 'hello', 'team', 'abdhtyu', 'user', 'account', 'blocked', 'please', 'help'] list_processed_text: [['account'], ['locked'], ['hello'], ['team'], ['abdhtyu'], ['user'], ['account'], ['blocked'], ['please'], ['help']] k: 7506 len: <class 'list'> Data: ['wifi', 'slow', 'speed', 'company', 'apac', 'team', 'please', 'kindly', 'check', 'internet', 'u', 'right', 'unable', 'work', 'ip', 'data', 'copyright', 'microsoft', 'corporation', 'right', 'reserved', 'user', 'vvghychamc', 'tracert', 'trghwyng', 'route', 'google', 'public', 'dns', 'google', 'com', 'maximum', 'hop', 'm', 'm', 'm', 'company', 'ap', 'tha', 'apac', 'dmvpn', 'rtr', 'company', 'com', 'm', 'm', 'm', 'att', 'singapore', 'vpn', 'rtr', 'company', 'com', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'mdfcr', 'tge', 'sng', 'attens', 'net', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'ix', 'jpix', 'ad', 'jp', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'google', 'public', 'dns', 'google', 'com', 'trace', 'complete', 'user', 'vvghychamc', 'przndfbo', 'pldqbhtn', 'pm', 'pichayapuk', 'gdhyrts', 'muggftyali', 'izwtdnfq', 'xptuoaid', 'wifi', 'slow', 'speed', 'company', 'apac', 'dear', 'pichayapuk', 'please', 'kindly', 'check', 'wi', 'fi', 'speed', 'company', 'slow', 'speed', 'impacted', 'work', 'time', 'user', 'office', 'person', 'guest', 'visit', 'sometime', 'please', 'advise', 'suitable', 'package', 'company', 'dear', 'nagfghtyudra', 'attached', 'currently', 'internet', 'package', 'apac', 'office', 'please', 'advise', 'need', 'speed', 'international', 'gate'] processed_text: ['wifi', 'slow', 'speed', 'company', 'apac', 'team', 'please', 'kindly', 'check', 'internet', 'u', 'right', 'unable', 'work', 'ip', 'data', 'copyright', 'microsoft', 'corporation', 'right', 'reserved', 'user', 'vvghychamc', 'tracert', 'trghwyng', 'route', 'google', 'public', 'dns', 'google', 'com', 'maximum', 'hop', 'm', 'm', 'm', 'company', 'ap', 'tha', 'apac', 'dmvpn', 'rtr', 'company', 'com', 'm', 'm', 'm', 'att', 'singapore', 'vpn', 'rtr', 'company', 'com', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'mdfcr', 'tge', 'sng', 'attens', 'net', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'ix', 'jpix', 'ad', 'jp', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'm', 'google', 'public', 'dns', 'google', 'com', 'trace', 'complete', 'user', 'vvghychamc', 'przndfbo', 'pldqbhtn', 'pm', 'pichayapuk', 'gdhyrts', 'muggftyali', 'izwtdnfq', 'xptuoaid', 'wifi', 'slow', 'speed', 'company', 'apac', 'dear', 'pichayapuk', 'please', 'kindly', 'check', 'wi', 'fi', 'speed', 'company', 'slow', 'speed', 'impacted', 'work', 'time', 'user', 'office', 'person', 'guest', 'visit', 'sometime', 'please', 'advise', 'suitable', 'package', 'company', 'dear', 'nagfghtyudra', 'attached', 'currently', 'internet', 'package', 'apac', 'office', 'please', 'advise', 'need', 'speed', 'international', 'gate'] list_processed_text: [['wifi'], ['slow'], ['speed'], ['company'], ['apac'], ['team'], ['please'], ['kindly'], ['check'], ['internet'], ['u'], ['right'], ['unable'], ['work'], ['ip'], ['data'], ['copyright'], ['microsoft'], ['corporation'], ['right'], ['reserved'], ['user'], ['vvghychamc'], ['tracert'], ['trghwyng'], ['route'], ['google'], ['public'], ['dns'], ['google'], ['com'], ['maximum'], ['hop'], ['m'], ['m'], ['m'], ['company'], ['ap'], ['tha'], ['apac'], ['dmvpn'], ['rtr'], ['company'], ['com'], ['m'], ['m'], ['m'], ['att'], ['singapore'], ['vpn'], ['rtr'], ['company'], ['com'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['mdfcr'], ['tge'], ['sng'], ['attens'], ['net'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['ix'], ['jpix'], ['ad'], ['jp'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['m'], ['google'], ['public'], ['dns'], ['google'], ['com'], ['trace'], ['complete'], ['user'], ['vvghychamc'], ['przndfbo'], ['pldqbhtn'], ['pm'], ['pichayapuk'], ['gdhyrts'], ['muggftyali'], ['izwtdnfq'], ['xptuoaid'], ['wifi'], ['slow'], ['speed'], ['company'], ['apac'], ['dear'], ['pichayapuk'], ['please'], ['kindly'], ['check'], ['wi'], ['fi'], ['speed'], ['company'], ['slow'], ['speed'], ['impacted'], ['work'], ['time'], ['user'], ['office'], ['person'], ['guest'], ['visit'], ['sometime'], ['please'], ['advise'], ['suitable'], ['package'], ['company'], ['dear'], ['nagfghtyudra'], ['attached'], ['currently'], ['internet'], ['package'], ['apac'], ['office'], ['please'], ['advise'], ['need'], ['speed'], ['international'], ['gate']] k: 7507 len: <class 'list'> Data: ['setup', 'new', 'w', 'stwpzxbf', 'bjehirkx', 'setup', 'new', 'w', 'stwpzxbf', 'bjehirkx'] processed_text: ['setup', 'new', 'w', 'stwpzxbf', 'bjehirkx', 'setup', 'new', 'w', 'stwpzxbf', 'bjehirkx'] list_processed_text: [['setup'], ['new'], ['w'], ['stwpzxbf'], ['bjehirkx'], ['setup'], ['new'], ['w'], ['stwpzxbf'], ['bjehirkx']] k: 7508 len: <class 'list'> Data: ['change', 'request', 'cannot', 'deleted', 'change', 'request', 'cannot', 'deleted'] processed_text: ['change', 'request', 'cannot', 'deleted', 'change', 'request', 'cannot', 'deleted'] list_processed_text: [['change'], ['request'], ['cannot'], ['deleted'], ['change'], ['request'], ['cannot'], ['deleted']] k: 7509 len: <class 'list'> Data: ['probleme', 'mit', 'purchasing', 'xmlbfjpg', 'yegzbvru', 'probleme', 'mit', 'purchasing', 'xmlbfjpg', 'yegzbvru'] processed_text: ['probleme', 'mit', 'purchasing', 'xmlbfjpg', 'yegzbvru', 'probleme', 'mit', 'purchasing', 'xmlbfjpg', 'yegzbvru'] list_processed_text: [['probleme'], ['mit'], ['purchasing'], ['xmlbfjpg'], ['yegzbvru'], ['probleme'], ['mit'], ['purchasing'], ['xmlbfjpg'], ['yegzbvru']] k: 7510 len: <class 'list'> Data: ['setup', 'new', 'w', 'ghaltiek', 'lsuepvyx', 'setup', 'new', 'w', 'ghaltiek', 'lsuepvyx'] processed_text: ['setup', 'new', 'w', 'ghaltiek', 'lsuepvyx', 'setup', 'new', 'w', 'ghaltiek', 'lsuepvyx'] list_processed_text: [['setup'], ['new'], ['w'], ['ghaltiek'], ['lsuepvyx'], ['setup'], ['new'], ['w'], ['ghaltiek'], ['lsuepvyx']] k: 7511 len: <class 'list'> Data: ['net', 'weaver', 'business', 'client', 'work', 'net', 'weaver', 'business', 'client', 'work', 'error', 'm', 'net', 'framdntyework'] processed_text: ['net', 'weaver', 'business', 'client', 'work', 'net', 'weaver', 'business', 'client', 'work', 'error', 'm', 'net', 'framdntyework'] list_processed_text: [['net'], ['weaver'], ['business'], ['client'], ['work'], ['net'], ['weaver'], ['business'], ['client'], ['work'], ['error'], ['m'], ['net'], ['framdntyework']] k: 7512 len: <class 'list'> Data: ['mobile', 'device', 'company', 'owned', 'successfully', 'activated', 'mobile', 'device', 'company', 'owned', 'successfully', 'activated'] processed_text: ['mobile', 'device', 'company', 'owned', 'successfully', 'activated', 'mobile', 'device', 'company', 'owned', 'successfully', 'activated'] list_processed_text: [['mobile'], ['device'], ['company'], ['owned'], ['successfully'], ['activated'], ['mobile'], ['device'], ['company'], ['owned'], ['successfully'], ['activated']] k: 7513 len: <class 'list'> Data: ['engineering', 'tool', 'working', 'engineering', 'tool', 'working'] processed_text: ['engineering', 'tool', 'working', 'engineering', 'tool', 'working'] list_processed_text: [['engineering'], ['tool'], ['working'], ['engineering'], ['tool'], ['working']] k: 7514 len: <class 'list'> Data: ['authorisation', 'error', 'outlook', 'nicht', 'lizeciertes', 'produkt', 'authorisation', 'error', 'outlook', 'nicht', 'lizeciertes', 'produkt'] processed_text: ['authorisation', 'error', 'outlook', 'nicht', 'lizeciertes', 'produkt', 'authorisation', 'error', 'outlook', 'nicht', 'lizeciertes', 'produkt'] list_processed_text: [['authorisation'], ['error'], ['outlook'], ['nicht'], ['lizeciertes'], ['produkt'], ['authorisation'], ['error'], ['outlook'], ['nicht'], ['lizeciertes'], ['produkt']] k: 7515 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'calculator', 'moin', 'please', 'activate', 'password', 'user', 'password', 'blocked', 'please', 'set', 'password', 'welcome'] processed_text: ['problem', 'eu', 'tool', 'calculator', 'moin', 'please', 'activate', 'password', 'user', 'password', 'blocked', 'please', 'set', 'password', 'welcome'] list_processed_text: [['problem'], ['eu'], ['tool'], ['calculator'], ['moin'], ['please'], ['activate'], ['password'], ['user'], ['password'], ['blocked'], ['please'], ['set'], ['password'], ['welcome']] k: 7516 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'user', 'beckes', 'erp', 'sid', 'password', 'reset', 'request', 'user', 'beckes'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'user', 'beckes', 'erp', 'sid', 'password', 'reset', 'request', 'user', 'beckes'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['user'], ['beckes'], ['erp'], ['sid'], ['password'], ['reset'], ['request'], ['user'], ['beckes']] k: 7517 len: <class 'list'> Data: ['probleme', 'mit', 'datenbank', 'eu', 'tool', 'hgrvubzo', 'wgyhktic', 'probleme', 'mit', 'datenbank', 'eu', 'tool', 'hgrvubzo', 'wgyhktic'] processed_text: ['probleme', 'mit', 'datenbank', 'eu', 'tool', 'hgrvubzo', 'wgyhktic', 'probleme', 'mit', 'datenbank', 'eu', 'tool', 'hgrvubzo', 'wgyhktic'] list_processed_text: [['probleme'], ['mit'], ['datenbank'], ['eu'], ['tool'], ['hgrvubzo'], ['wgyhktic'], ['probleme'], ['mit'], ['datenbank'], ['eu'], ['tool'], ['hgrvubzo'], ['wgyhktic']] k: 7518 len: <class 'list'> Data: ['mail', 'address', 'cytohwau', 'qfunricw', 'ticketing', 'tool', 'missing', 'ticketing', 'tool', 'user', 'cytohwau', 'qfunricw', 'email', 'available', 'see', 'picture', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['mail', 'address', 'cytohwau', 'qfunricw', 'ticketing', 'tool', 'missing', 'ticketing', 'tool', 'user', 'cytohwau', 'qfunricw', 'email', 'available', 'see', 'picture', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['mail'], ['address'], ['cytohwau'], ['qfunricw'], ['ticketing'], ['tool'], ['missing'], ['ticketing'], ['tool'], ['user'], ['cytohwau'], ['qfunricw'], ['email'], ['available'], ['see'], ['picture'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 7519 len: <class 'list'> Data: ['crm', 'working', 'dear', 'sir', 'tried', 'open', 'crm', 'please', 'see', 'attachment', 'message', 'opening'] processed_text: ['crm', 'working', 'dear', 'sir', 'tried', 'open', 'crm', 'please', 'see', 'attachment', 'message', 'opening'] list_processed_text: [['crm'], ['working'], ['dear'], ['sir'], ['tried'], ['open'], ['crm'], ['please'], ['see'], ['attachment'], ['message'], ['opening']] k: 7520 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7521 len: <class 'list'> Data: ['business', 'client', 'brings', 'error', 'launched', 'business', 'client', 'brings', 'error', 'launched'] processed_text: ['business', 'client', 'brings', 'error', 'launched', 'business', 'client', 'brings', 'error', 'launched'] list_processed_text: [['business'], ['client'], ['brings'], ['error'], ['launched'], ['business'], ['client'], ['brings'], ['error'], ['launched']] k: 7522 len: <class 'list'> Data: ['programdnty', 'zmmtaxupd', 'sale', 'organization', 'selection', 'crieria', 'doesnt', 'work', 'please', 'disable', 'programdnty', 'temporarlly', 'programdnty', 'zmmtaxupd', 'update', 'tax', 'classification', 'sale', 'organization', 'irrespective', 'selection', 'criterion', 'programdnty', 'exection', 'impact', 'apo', 'job', 'india', 'sale', 'org', 'two', 'tax', 'classification', 'field', 'updated', 'incorrect', 'value', 'last', 'week'] processed_text: ['programdnty', 'zmmtaxupd', 'sale', 'organization', 'selection', 'crieria', 'doesnt', 'work', 'please', 'disable', 'programdnty', 'temporarlly', 'programdnty', 'zmmtaxupd', 'update', 'tax', 'classification', 'sale', 'organization', 'irrespective', 'selection', 'criterion', 'programdnty', 'exection', 'impact', 'apo', 'job', 'india', 'sale', 'org', 'two', 'tax', 'classification', 'field', 'updated', 'incorrect', 'value', 'last', 'week'] list_processed_text: [['programdnty'], ['zmmtaxupd'], ['sale'], ['organization'], ['selection'], ['crieria'], ['doesnt'], ['work'], ['please'], ['disable'], ['programdnty'], ['temporarlly'], ['programdnty'], ['zmmtaxupd'], ['update'], ['tax'], ['classification'], ['sale'], ['organization'], ['irrespective'], ['selection'], ['criterion'], ['programdnty'], ['exection'], ['impact'], ['apo'], ['job'], ['india'], ['sale'], ['org'], ['two'], ['tax'], ['classification'], ['field'], ['updated'], ['incorrect'], ['value'], ['last'], ['week']] k: 7523 len: <class 'list'> Data: ['window', 'account', 'locked', 'ad', 'window', 'account', 'locked', 'ad'] processed_text: ['window', 'account', 'locked', 'ad', 'window', 'account', 'locked', 'ad'] list_processed_text: [['window'], ['account'], ['locked'], ['ad'], ['window'], ['account'], ['locked'], ['ad']] k: 7524 len: <class 'list'> Data: ['user', 'getting', 'unlicensed', 'error', 'office', 'user', 'getting', 'unlicensed', 'error', 'office'] processed_text: ['user', 'getting', 'unlicensed', 'error', 'office', 'user', 'getting', 'unlicensed', 'error', 'office'] list_processed_text: [['user'], ['getting'], ['unlicensed'], ['error'], ['office'], ['user'], ['getting'], ['unlicensed'], ['error'], ['office']] k: 7525 len: <class 'list'> Data: ['email', 'address', 'link', 'delivery', 'supply', 'chainttlf', 'kc', 'hello', 'best'] processed_text: ['email', 'address', 'link', 'delivery', 'supply', 'chainttlf', 'kc', 'hello', 'best'] list_processed_text: [['email'], ['address'], ['link'], ['delivery'], ['supply'], ['chainttlf'], ['kc'], ['hello'], ['best']] k: 7526 len: <class 'list'> Data: ['able', 'view', 'attachment', 'outlook', 'able', 'view', 'attachment', 'outlook'] processed_text: ['able', 'view', 'attachment', 'outlook', 'able', 'view', 'attachment', 'outlook'] list_processed_text: [['able'], ['view'], ['attachment'], ['outlook'], ['able'], ['view'], ['attachment'], ['outlook']] k: 7527 len: <class 'list'> Data: ['pc', 'ewkw', 'work', 'pc', 'switch', 'cytohwau', 'qfunricw', 'sent', 'thursday', 'nwfodmhc', 'exurcwkm', 'concerning', 'pc', 'ewkw', 'qdxyifhj', 'zbwtunpy', 'pc', 'ewkw', 'work', 'pc', 'switch', 'work', 'pc', 'possible', 'even', 'different', 'keyboard', 'tried', 'change', 'kind', 'regard', 'cytohwau', 'qfunricw', 'grinding', 'service', 'germany'] processed_text: ['pc', 'ewkw', 'work', 'pc', 'switch', 'cytohwau', 'qfunricw', 'sent', 'thursday', 'nwfodmhc', 'exurcwkm', 'concerning', 'pc', 'ewkw', 'qdxyifhj', 'zbwtunpy', 'pc', 'ewkw', 'work', 'pc', 'switch', 'work', 'pc', 'possible', 'even', 'different', 'keyboard', 'tried', 'change', 'kind', 'regard', 'cytohwau', 'qfunricw', 'grinding', 'service', 'germany'] list_processed_text: [['pc'], ['ewkw'], ['work'], ['pc'], ['switch'], ['cytohwau'], ['qfunricw'], ['sent'], ['thursday'], ['nwfodmhc'], ['exurcwkm'], ['concerning'], ['pc'], ['ewkw'], ['qdxyifhj'], ['zbwtunpy'], ['pc'], ['ewkw'], ['work'], ['pc'], ['switch'], ['work'], ['pc'], ['possible'], ['even'], ['different'], ['keyboard'], ['tried'], ['change'], ['kind'], ['regard'], ['cytohwau'], ['qfunricw'], ['grinding'], ['service'], ['germany']] k: 7528 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7529 len: <class 'list'> Data: ['issue', 'posting', 'hub', 'hi', 'issue', 'posting', 'news', 'hub', 'uploading', 'new', 'picture', 'news', 'carousel', 'site', 'link', 'created', 'jpg', 'ending', 'therefore', 'inserting', 'news', 'carousel', 'picture', 'show', 'correctly', 'would', 'need', 'fixed', 'within', 'today', 'several', 'news', 'go'] processed_text: ['issue', 'posting', 'hub', 'hi', 'issue', 'posting', 'news', 'hub', 'uploading', 'new', 'picture', 'news', 'carousel', 'site', 'link', 'created', 'jpg', 'ending', 'therefore', 'inserting', 'news', 'carousel', 'picture', 'show', 'correctly', 'would', 'need', 'fixed', 'within', 'today', 'several', 'news', 'go'] list_processed_text: [['issue'], ['posting'], ['hub'], ['hi'], ['issue'], ['posting'], ['news'], ['hub'], ['uploading'], ['new'], ['picture'], ['news'], ['carousel'], ['site'], ['link'], ['created'], ['jpg'], ['ending'], ['therefore'], ['inserting'], ['news'], ['carousel'], ['picture'], ['show'], ['correctly'], ['would'], ['need'], ['fixed'], ['within'], ['today'], ['several'], ['news'], ['go']] k: 7530 len: <class 'list'> Data: ['tablet', 'dell', 'wifi', 'ap', 'please', 'provide', 'detail', 'issue', 'wifi', 'ap'] processed_text: ['tablet', 'dell', 'wifi', 'ap', 'please', 'provide', 'detail', 'issue', 'wifi', 'ap'] list_processed_text: [['tablet'], ['dell'], ['wifi'], ['ap'], ['please'], ['provide'], ['detail'], ['issue'], ['wifi'], ['ap']] k: 7531 len: <class 'list'> Data: ['locked', 'account', 'hi', 'please', 'assist', 'vnglqiht', 'sebxvtdj', 'access', 'account', 'forgot', 'password', 'need', 'urgent', 'please', 'kind'] processed_text: ['locked', 'account', 'hi', 'please', 'assist', 'vnglqiht', 'sebxvtdj', 'access', 'account', 'forgot', 'password', 'need', 'urgent', 'please', 'kind'] list_processed_text: [['locked'], ['account'], ['hi'], ['please'], ['assist'], ['vnglqiht'], ['sebxvtdj'], ['access'], ['account'], ['forgot'], ['password'], ['need'], ['urgent'], ['please'], ['kind']] k: 7532 len: <class 'list'> Data: ['require', 'set', 'mobile', 'link', 'company', 'mail', 'please', 'kindly', 'set', 'mobile', 'link', 'company', 'mail', 'user', 'fbmugzrl', 'ahyiuqev', 'model', 'iphone', 'gb'] processed_text: ['require', 'set', 'mobile', 'link', 'company', 'mail', 'please', 'kindly', 'set', 'mobile', 'link', 'company', 'mail', 'user', 'fbmugzrl', 'ahyiuqev', 'model', 'iphone', 'gb'] list_processed_text: [['require'], ['set'], ['mobile'], ['link'], ['company'], ['mail'], ['please'], ['kindly'], ['set'], ['mobile'], ['link'], ['company'], ['mail'], ['user'], ['fbmugzrl'], ['ahyiuqev'], ['model'], ['iphone'], ['gb']] k: 7533 len: <class 'list'> Data: ['oa', 'inwarehouse', 'tool', 'created', 'accounting', 'document', 'please', 'double', 'check', 'help', 'solve', 'proble', 'oa', 'inwarehouse', 'tool', 'created', 'accounting', 'document', 'please', 'double', 'check', 'help', 'solve', 'problem'] processed_text: ['oa', 'inwarehouse', 'tool', 'created', 'accounting', 'document', 'please', 'double', 'check', 'help', 'solve', 'proble', 'oa', 'inwarehouse', 'tool', 'created', 'accounting', 'document', 'please', 'double', 'check', 'help', 'solve', 'problem'] list_processed_text: [['oa'], ['inwarehouse'], ['tool'], ['created'], ['accounting'], ['document'], ['please'], ['double'], ['check'], ['help'], ['solve'], ['proble'], ['oa'], ['inwarehouse'], ['tool'], ['created'], ['accounting'], ['document'], ['please'], ['double'], ['check'], ['help'], ['solve'], ['problem']] k: 7534 len: <class 'list'> Data: ['vpn', 'vpn'] processed_text: ['vpn', 'vpn'] list_processed_text: [['vpn'], ['vpn']] k: 7535 len: <class 'list'> Data: [] processed_text: [] list_processed_text: [] k: 7536 len: <class 'list'> Data: ['erp', 'print', 'fe', 'please', 'help', 'switch', 'fe', 'print', 'urgent', 'erp', 'print', 'fe', 'please', 'help', 'switch', 'fe', 'print', 'urgent'] processed_text: ['erp', 'print', 'fe', 'please', 'help', 'switch', 'fe', 'print', 'urgent', 'erp', 'print', 'fe', 'please', 'help', 'switch', 'fe', 'print', 'urgent'] list_processed_text: [['erp'], ['print'], ['fe'], ['please'], ['help'], ['switch'], ['fe'], ['print'], ['urgent'], ['erp'], ['print'], ['fe'], ['please'], ['help'], ['switch'], ['fe'], ['print'], ['urgent']] k: 7537 len: <class 'list'> Data: ['dell', 'battery', 'failure', 'hi', 'ti', 'team', 'need', 'assistant', 'attached', 'issue', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] processed_text: ['dell', 'battery', 'failure', 'hi', 'ti', 'team', 'need', 'assistant', 'attached', 'issue', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email'] list_processed_text: [['dell'], ['battery'], ['failure'], ['hi'], ['ti'], ['team'], ['need'], ['assistant'], ['attached'], ['issue'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['asia'], ['regional'], ['distribution'], ['centre'], ['email']] k: 7538 len: <class 'list'> Data: ['damaged', 'laptop', 'zrpemyab', 'xvzwcbha', 'nwfodmhc', 'exurcwkm', 'bmhxwvys', 'tdmgolwn', 'bmhxwvys', 'tdmgolwn', 'rad', 'fw', 'damaged', 'laptop', 'dear', 'help', 'please', 'help', 'suhrhtyju', 'sort', 'issue', 'laptop', 'based', 'indonesia', 'contact', 'detail', 'mentioned', 'suhrhtyju', 'application', 'engineer'] processed_text: ['damaged', 'laptop', 'zrpemyab', 'xvzwcbha', 'nwfodmhc', 'exurcwkm', 'bmhxwvys', 'tdmgolwn', 'bmhxwvys', 'tdmgolwn', 'rad', 'fw', 'damaged', 'laptop', 'dear', 'help', 'please', 'help', 'suhrhtyju', 'sort', 'issue', 'laptop', 'based', 'indonesia', 'contact', 'detail', 'mentioned', 'suhrhtyju', 'application', 'engineer'] list_processed_text: [['damaged'], ['laptop'], ['zrpemyab'], ['xvzwcbha'], ['nwfodmhc'], ['exurcwkm'], ['bmhxwvys'], ['tdmgolwn'], ['bmhxwvys'], ['tdmgolwn'], ['rad'], ['fw'], ['damaged'], ['laptop'], ['dear'], ['help'], ['please'], ['help'], ['suhrhtyju'], ['sort'], ['issue'], ['laptop'], ['based'], ['indonesia'], ['contact'], ['detail'], ['mentioned'], ['suhrhtyju'], ['application'], ['engineer']] k: 7539 len: <class 'list'> Data: ['window', 'window'] processed_text: ['window', 'window'] list_processed_text: [['window'], ['window']] k: 7540 len: <class 'list'> Data: ['erp', 'purchasing', 'error', 'tried', 'submit', 'describe', 'need', 'show', 'data', 'found', 'employee', 'inform', 'system', 'administration', 'please', 'help', 'several', 'order', 'send', 'problem', 'existed', 'week', 'one', 'contact', 'solve'] processed_text: ['erp', 'purchasing', 'error', 'tried', 'submit', 'describe', 'need', 'show', 'data', 'found', 'employee', 'inform', 'system', 'administration', 'please', 'help', 'several', 'order', 'send', 'problem', 'existed', 'week', 'one', 'contact', 'solve'] list_processed_text: [['erp'], ['purchasing'], ['error'], ['tried'], ['submit'], ['describe'], ['need'], ['show'], ['data'], ['found'], ['employee'], ['inform'], ['system'], ['administration'], ['please'], ['help'], ['several'], ['order'], ['send'], ['problem'], ['existed'], ['week'], ['one'], ['contact'], ['solve']] k: 7541 len: <class 'list'> Data: ['vpn', 'connection', 'issue', 'vpn', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'company', 'vpn', 'driver', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['vpn', 'connection', 'issue', 'vpn', 'connection', 'issue', 'connected', 'user', 'system', 'using', 'teamviewer', 'installed', 'company', 'vpn', 'driver', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['vpn'], ['connection'], ['issue'], ['vpn'], ['connection'], ['issue'], ['connected'], ['user'], ['system'], ['using'], ['teamviewer'], ['installed'], ['company'], ['vpn'], ['driver'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7542 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7543 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7544 len: <class 'list'> Data: ['queue', 'dmz', 'failed', 'connect', 'hub', 'lhqsmdom', 'hostname', 'hostname', 'hub', 'observing', 'alert', 'reporting', 'tool', 'since', 'et', 'reporting', 'tool', 'reboot', 'queue', 'dmz', 'failed', 'connect', 'hub', 'lhqsmdom', 'hostname', 'hostname', 'hub'] processed_text: ['queue', 'dmz', 'failed', 'connect', 'hub', 'lhqsmdom', 'hostname', 'hostname', 'hub', 'observing', 'alert', 'reporting', 'tool', 'since', 'et', 'reporting', 'tool', 'reboot', 'queue', 'dmz', 'failed', 'connect', 'hub', 'lhqsmdom', 'hostname', 'hostname', 'hub'] list_processed_text: [['queue'], ['dmz'], ['failed'], ['connect'], ['hub'], ['lhqsmdom'], ['hostname'], ['hostname'], ['hub'], ['observing'], ['alert'], ['reporting'], ['tool'], ['since'], ['et'], ['reporting'], ['tool'], ['reboot'], ['queue'], ['dmz'], ['failed'], ['connect'], ['hub'], ['lhqsmdom'], ['hostname'], ['hostname'], ['hub']] k: 7545 len: <class 'list'> Data: ['sao', 'palo', 'switch', 'since', 'et', 'sao', 'palo', 'switch', 'since', 'et'] processed_text: ['sao', 'palo', 'switch', 'since', 'et', 'sao', 'palo', 'switch', 'since', 'et'] list_processed_text: [['sao'], ['palo'], ['switch'], ['since'], ['et'], ['sao'], ['palo'], ['switch'], ['since'], ['et']] k: 7546 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'unlocked', 'reset', 'erp', 'id', 'daypay', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['unlocked'], ['reset'], ['erp'], ['id'], ['daypay'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7547 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] processed_text: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['rain'], ['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['regen']] k: 7548 len: <class 'list'> Data: ['problem', 'sending', 'discount', 'request', 'hi', 'problem', 'sending', 'discount', 'request', 'get', 'error', 'hit', 'submit', 'request', 'problem', 'last', 'week', 'connected', 'vpn', 'sent', 'request', 'thought', 'problem', 'solved', 'still', 'happening', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'sending', 'discount', 'request', 'hi', 'problem', 'sending', 'discount', 'request', 'get', 'error', 'hit', 'submit', 'request', 'problem', 'last', 'week', 'connected', 'vpn', 'sent', 'request', 'thought', 'problem', 'solved', 'still', 'happening', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['sending'], ['discount'], ['request'], ['hi'], ['problem'], ['sending'], ['discount'], ['request'], ['get'], ['error'], ['hit'], ['submit'], ['request'], ['problem'], ['last'], ['week'], ['connected'], ['vpn'], ['sent'], ['request'], ['thought'], ['problem'], ['solved'], ['still'], ['happening'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 7549 len: <class 'list'> Data: ['na', 'production', 'file', 'received', 'assign', 'pi', 'team', 'file', 'transferred', 'per', 'schedule', 'even', 'last', 'week', 'problem'] processed_text: ['na', 'production', 'file', 'received', 'assign', 'pi', 'team', 'file', 'transferred', 'per', 'schedule', 'even', 'last', 'week', 'problem'] list_processed_text: [['na'], ['production'], ['file'], ['received'], ['assign'], ['pi'], ['team'], ['file'], ['transferred'], ['per'], ['schedule'], ['even'], ['last'], ['week'], ['problem']] k: 7550 len: <class 'list'> Data: ['change', 'office', 'language', 'video', 'thehub', 'work', 'hello', 'equal', 'switch', 'office', 'english', 'german', 'find', 'setting', 'want', 'watch', 'video', 'let', 'talk', 'german', 'click', 'link', 'email', 'tell', 'office', 'video', 'isn’t', 'available', 'office', 'video', 'enabled', 'organization', 'link', 'many', 'thanks', 'help'] processed_text: ['change', 'office', 'language', 'video', 'thehub', 'work', 'hello', 'equal', 'switch', 'office', 'english', 'german', 'find', 'setting', 'want', 'watch', 'video', 'let', 'talk', 'german', 'click', 'link', 'email', 'tell', 'office', 'video', 'isn’t', 'available', 'office', 'video', 'enabled', 'organization', 'link', 'many', 'thanks', 'help'] list_processed_text: [['change'], ['office'], ['language'], ['video'], ['thehub'], ['work'], ['hello'], ['equal'], ['switch'], ['office'], ['english'], ['german'], ['find'], ['setting'], ['want'], ['watch'], ['video'], ['let'], ['talk'], ['german'], ['click'], ['link'], ['email'], ['tell'], ['office'], ['video'], ['isn’t'], ['available'], ['office'], ['video'], ['enabled'], ['organization'], ['link'], ['many'], ['thanks'], ['help']] k: 7551 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] processed_text: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['rain'], ['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['regen']] k: 7552 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp']] k: 7553 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hoti', 'abended', 'job', 'job', 'scheduler', 'sid', 'hoti'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hoti', 'abended', 'job', 'job', 'scheduler', 'sid', 'hoti'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hoti'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hoti']] k: 7554 len: <class 'list'> Data: ['hostname', 'erp', 'sid', 'aprtgghjk', 'production', 'average', 'sample', 'disk', 'free', 'home', 'hostname', 'erp', 'sid', 'aprtgghjk', 'production', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'erp', 'sid', 'aprtgghjk', 'production', 'average', 'sample', 'disk', 'free', 'home', 'hostname', 'erp', 'sid', 'aprtgghjk', 'production', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['erp'], ['sid'], ['aprtgghjk'], ['production'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['hostname'], ['erp'], ['sid'], ['aprtgghjk'], ['production'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7555 len: <class 'list'> Data: ['hostname', 'erp', 'sid', 'app', 'production', 'average', 'sample', 'disk', 'free', 'home', 'hostname', 'erp', 'sid', 'app', 'production', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'erp', 'sid', 'app', 'production', 'average', 'sample', 'disk', 'free', 'home', 'hostname', 'erp', 'sid', 'app', 'production', 'average', 'sample', 'disk', 'free', 'home', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['erp'], ['sid'], ['app'], ['production'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['hostname'], ['erp'], ['sid'], ['app'], ['production'], ['average'], ['sample'], ['disk'], ['free'], ['home'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7556 len: <class 'list'> Data: ['hostname', 'corporate', 'file', 'server', 'team', 'production', 'server', 'inactive', 'hostname', 'corporate', 'file', 'server', 'team', 'production', 'server', 'inactive'] processed_text: ['hostname', 'corporate', 'file', 'server', 'team', 'production', 'server', 'inactive', 'hostname', 'corporate', 'file', 'server', 'team', 'production', 'server', 'inactive'] list_processed_text: [['hostname'], ['corporate'], ['file'], ['server'], ['team'], ['production'], ['server'], ['inactive'], ['hostname'], ['corporate'], ['file'], ['server'], ['team'], ['production'], ['server'], ['inactive']] k: 7557 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7558 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7559 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7560 len: <class 'list'> Data: ['network', 'drive', 'disconnected', 'unable', 'connect', 'drive'] processed_text: ['network', 'drive', 'disconnected', 'unable', 'connect', 'drive'] list_processed_text: [['network'], ['drive'], ['disconnected'], ['unable'], ['connect'], ['drive']] k: 7561 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7562 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7563 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7564 len: <class 'list'> Data: ['hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instance', 'gte', 'found', 'note', 'planned', 'power', 'maintenance', 'south', 'amerirtca', 'per', 'chg', 'service', 'come', 'maintenance'] processed_text: ['hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instance', 'gte', 'found', 'note', 'planned', 'power', 'maintenance', 'south', 'amerirtca', 'per', 'chg', 'service', 'come', 'maintenance'] list_processed_text: [['hostname'], ['south'], ['amerirtca'], ['br'], ['plm'], ['dsc'], ['file'], ['production'], ['dsccache'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['dsccache'], ['exe'], ['hostname'], ['south'], ['amerirtca'], ['br'], ['plm'], ['dsc'], ['file'], ['production'], ['dsccache'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['dsccache'], ['exe'], ['expected'], ['instance'], ['gte'], ['found'], ['note'], ['planned'], ['power'], ['maintenance'], ['south'], ['amerirtca'], ['per'], ['chg'], ['service'], ['come'], ['maintenance']] k: 7565 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7566 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7567 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7568 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7569 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7570 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7571 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7572 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7573 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hot', 'abended', 'job', 'job', 'scheduler', 'sid', 'hot'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hot', 'abended', 'job', 'job', 'scheduler', 'sid', 'hot'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hot'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hot']] k: 7574 len: <class 'list'> Data: ['mii', 'login', 'issue', 'mii', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['mii', 'login', 'issue', 'mii', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['mii'], ['login'], ['issue'], ['mii'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7575 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 7576 len: <class 'list'> Data: ['getting', 'following', 'message', 'trying', 'log', 'sid', 'logon', 'balancing', 'error', 'could', 'connect', 'messag', 'name', 'htsnaodb', 'adjtmlzn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'getting', 'following', 'message', 'trying', 'log', 'sid', 'logon', 'balancing', 'error', 'could', 'connect', 'message', 'server', 'erp', 'right'] processed_text: ['getting', 'following', 'message', 'trying', 'log', 'sid', 'logon', 'balancing', 'error', 'could', 'connect', 'messag', 'name', 'htsnaodb', 'adjtmlzn', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'getting', 'following', 'message', 'trying', 'log', 'sid', 'logon', 'balancing', 'error', 'could', 'connect', 'message', 'server', 'erp', 'right'] list_processed_text: [['getting'], ['following'], ['message'], ['trying'], ['log'], ['sid'], ['logon'], ['balancing'], ['error'], ['could'], ['connect'], ['messag'], ['name'], ['htsnaodb'], ['adjtmlzn'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['getting'], ['following'], ['message'], ['trying'], ['log'], ['sid'], ['logon'], ['balancing'], ['error'], ['could'], ['connect'], ['message'], ['server'], ['erp'], ['right']] k: 7577 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7578 len: <class 'list'> Data: ['job', 'job', 'scheduler', 'job', 'running', 'long', 'abended', 'job', 'job', 'scheduler', 'job', 'running', 'longer', 'min', 'kirtyled', 'restarted'] processed_text: ['job', 'job', 'scheduler', 'job', 'running', 'long', 'abended', 'job', 'job', 'scheduler', 'job', 'running', 'longer', 'min', 'kirtyled', 'restarted'] list_processed_text: [['job'], ['job'], ['scheduler'], ['job'], ['running'], ['long'], ['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['running'], ['longer'], ['min'], ['kirtyled'], ['restarted']] k: 7579 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7580 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7581 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7582 len: <class 'list'> Data: ['reset', 'password', 'jcmxerol', 'nbfyczqr', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'jcmxerol', 'nbfyczqr', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['jcmxerol'], ['nbfyczqr'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 7583 len: <class 'list'> Data: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'rolghtyuando', 'last', 'name', 'santolgiy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'rad', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'rolghtyuando', 'last', 'name', 'santolgiy', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['rad'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['rolghtyuando'], ['last'], ['name'], ['santolgiy'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 7584 len: <class 'list'> Data: ['vpn', 'connection', 'problem', 'later', 'hello', 'connect', 'vpn', 'get', 'message'] processed_text: ['vpn', 'connection', 'problem', 'later', 'hello', 'connect', 'vpn', 'get', 'message'] list_processed_text: [['vpn'], ['connection'], ['problem'], ['later'], ['hello'], ['connect'], ['vpn'], ['get'], ['message']] k: 7585 len: <class 'list'> Data: ['network', 'outage', 'cantabria', 'mecftgobusa', 'kenci', 'hard', 'since', 'est', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'cantabria', 'mecftgobusa', 'kenci', 'hard', 'since', 'est', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'est', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['cantabria'], ['mecftgobusa'], ['kenci'], ['hard'], ['since'], ['est'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['est'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['na'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7586 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7587 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7588 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 7589 len: <class 'list'> Data: ['termination', 'carlos', 'patino', 'effective', 'approved', 'idelcia', 'almeida', 'nascimento', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'terminate', 'action', 'carlos', 'patino', 'completed', 'hello', 'termination', 'carlos', 'patino', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['termination', 'carlos', 'patino', 'effective', 'approved', 'idelcia', 'almeida', 'nascimento', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rakthyesh', 'terminate', 'action', 'carlos', 'patino', 'completed', 'hello', 'termination', 'carlos', 'patino', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['termination'], ['carlos'], ['patino'], ['effective'], ['approved'], ['idelcia'], ['almeida'], ['nascimento'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rakthyesh'], ['terminate'], ['action'], ['carlos'], ['patino'], ['completed'], ['hello'], ['termination'], ['carlos'], ['patino'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 7590 len: <class 'list'> Data: ['access', 'denied', 'adoption', 'scorecard', 'manager', 'user', 'unable', 'view', 'adoption', 'scorecard', 'manager', 'microsoft', 'crm', 'dynamic', 'please', 'check', 'screenshot'] processed_text: ['access', 'denied', 'adoption', 'scorecard', 'manager', 'user', 'unable', 'view', 'adoption', 'scorecard', 'manager', 'microsoft', 'crm', 'dynamic', 'please', 'check', 'screenshot'] list_processed_text: [['access'], ['denied'], ['adoption'], ['scorecard'], ['manager'], ['user'], ['unable'], ['view'], ['adoption'], ['scorecard'], ['manager'], ['microsoft'], ['crm'], ['dynamic'], ['please'], ['check'], ['screenshot']] k: 7591 len: <class 'list'> Data: ['able', 'see', 'activity', 'crm', 'created', 'outlook', 'hi', 'wondering', 'able', 'see', 'activity', 'crm', 'created', 'outlook', 'example', 'email', 'task', 'appointment', 'right', 'see', 'appointment', 'see', 'uvrwikmy', 'yusexirn', 'sr', 'application', 'technician'] processed_text: ['able', 'see', 'activity', 'crm', 'created', 'outlook', 'hi', 'wondering', 'able', 'see', 'activity', 'crm', 'created', 'outlook', 'example', 'email', 'task', 'appointment', 'right', 'see', 'appointment', 'see', 'uvrwikmy', 'yusexirn', 'sr', 'application', 'technician'] list_processed_text: [['able'], ['see'], ['activity'], ['crm'], ['created'], ['outlook'], ['hi'], ['wondering'], ['able'], ['see'], ['activity'], ['crm'], ['created'], ['outlook'], ['example'], ['email'], ['task'], ['appointment'], ['right'], ['see'], ['appointment'], ['see'], ['uvrwikmy'], ['yusexirn'], ['sr'], ['application'], ['technician']] k: 7592 len: <class 'list'> Data: ['circuit', 'outage', 'india', 'kirty', 'telecom', 'vendor', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'india', 'kirty', 'telecom', 'vendor', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['india'], ['kirty'], ['telecom'], ['vendor'], ['circuit'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7593 len: <class 'list'> Data: ['unable', 'sign', 'collaboration', 'platform', 'unable', 'sign', 'collaboration', 'platform'] processed_text: ['unable', 'sign', 'collaboration', 'platform', 'unable', 'sign', 'collaboration', 'platform'] list_processed_text: [['unable'], ['sign'], ['collaboration'], ['platform'], ['unable'], ['sign'], ['collaboration'], ['platform']] k: 7594 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] processed_text: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn'], ['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn']] k: 7595 len: <class 'list'> Data: ['analysis', 'office', 'issue', 'happening', 'every', 'time', 'try', 'filter', 'customer', 'number', 'bex', 'hana', 'using', 'system', 'primarily', 'hana', 'otc', 'billing', 'think', 'issue', 'regarding', 'client', 'tried', 'filtering', 'copying', 'pasting', 'also', 'importing', 'text', 'file', 'result', 'idea', 'fix', 'error', 'find', 'log', 'file', 'reference'] processed_text: ['analysis', 'office', 'issue', 'happening', 'every', 'time', 'try', 'filter', 'customer', 'number', 'bex', 'hana', 'using', 'system', 'primarily', 'hana', 'otc', 'billing', 'think', 'issue', 'regarding', 'client', 'tried', 'filtering', 'copying', 'pasting', 'also', 'importing', 'text', 'file', 'result', 'idea', 'fix', 'error', 'find', 'log', 'file', 'reference'] list_processed_text: [['analysis'], ['office'], ['issue'], ['happening'], ['every'], ['time'], ['try'], ['filter'], ['customer'], ['number'], ['bex'], ['hana'], ['using'], ['system'], ['primarily'], ['hana'], ['otc'], ['billing'], ['think'], ['issue'], ['regarding'], ['client'], ['tried'], ['filtering'], ['copying'], ['pasting'], ['also'], ['importing'], ['text'], ['file'], ['result'], ['idea'], ['fix'], ['error'], ['find'], ['log'], ['file'], ['reference']] k: 7596 len: <class 'list'> Data: ['phone', 'display', 'judi', 'elituytt', 'nmzfdlar', 'whzbrusx', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'phone', 'display', 'hi', 'johthryu', 'forwarding', 'request', 'help', 'desk', 'help', 'desk', 'contact', 'phone', 'issue'] processed_text: ['phone', 'display', 'judi', 'elituytt', 'nmzfdlar', 'whzbrusx', 'facility', 'nwfodmhc', 'exurcwkm', 'amar', 'phone', 'display', 'hi', 'johthryu', 'forwarding', 'request', 'help', 'desk', 'help', 'desk', 'contact', 'phone', 'issue'] list_processed_text: [['phone'], ['display'], ['judi'], ['elituytt'], ['nmzfdlar'], ['whzbrusx'], ['facility'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['phone'], ['display'], ['hi'], ['johthryu'], ['forwarding'], ['request'], ['help'], ['desk'], ['help'], ['desk'], ['contact'], ['phone'], ['issue']] k: 7597 len: <class 'list'> Data: ['termination', 'cyxieuwk', 'rekwlqmu', 'hello', 'termination', 'cyxieuwk', 'rekwlqmu', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['termination', 'cyxieuwk', 'rekwlqmu', 'hello', 'termination', 'cyxieuwk', 'rekwlqmu', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['termination'], ['cyxieuwk'], ['rekwlqmu'], ['hello'], ['termination'], ['cyxieuwk'], ['rekwlqmu'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 7598 len: <class 'list'> Data: ['hostname', 'account', 'locked', 'hostname', 'account', 'locked', 'please', 'unlock', 'account', 'username', 'hqnopr'] processed_text: ['hostname', 'account', 'locked', 'hostname', 'account', 'locked', 'please', 'unlock', 'account', 'username', 'hqnopr'] list_processed_text: [['hostname'], ['account'], ['locked'], ['hostname'], ['account'], ['locked'], ['please'], ['unlock'], ['account'], ['username'], ['hqnopr']] k: 7599 len: <class 'list'> Data: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'att', 'singapore', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'port', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'port', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] processed_text: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'user', 'name', 'location', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'att', 'singapore', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'port', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'hostname', 'source', 'port', 'destination', 'port', 'connection', 'directionality', 'internal', 'device', 'information', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'cv', 'score', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] list_processed_text: [['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['source'], ['ip'], ['system'], ['name'], ['user'], ['name'], ['location'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['sharing'], ['additional'], ['information'], ['port'], ['best'], ['practice'], ['found'], ['following'], ['site'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['source'], ['port'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['source'], ['port'], ['destination'], ['port'], ['connection'], ['directionality'], ['internal'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['cv'], ['score'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x']] k: 7600 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'cfgxpvzi', 'dvpnfbrc', 'recsynqt', 'byoezmla', 'alexandre', 'pinto', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'cfgxpvzi', 'dvpnfbrc', 'recsynqt', 'byoezmla', 'alexandfrre', 'pintfgtyo', 'id', 'vertiayhtu', 'id', 'russoddfac', 'id', 'pintoddsa'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'cfgxpvzi', 'dvpnfbrc', 'recsynqt', 'byoezmla', 'alexandre', 'pinto', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'cfgxpvzi', 'dvpnfbrc', 'recsynqt', 'byoezmla', 'alexandfrre', 'pintfgtyo', 'id', 'vertiayhtu', 'id', 'russoddfac', 'id', 'pintoddsa'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['cfgxpvzi'], ['dvpnfbrc'], ['recsynqt'], ['byoezmla'], ['alexandre'], ['pinto'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['cfgxpvzi'], ['dvpnfbrc'], ['recsynqt'], ['byoezmla'], ['alexandfrre'], ['pintfgtyo'], ['id'], ['vertiayhtu'], ['id'], ['russoddfac'], ['id'], ['pintoddsa']] k: 7601 len: <class 'list'> Data: ['unable', 'submit', 'timecard', 'today', 'unable', 'submit', 'timecard', 'today'] processed_text: ['unable', 'submit', 'timecard', 'today', 'unable', 'submit', 'timecard', 'today'] list_processed_text: [['unable'], ['submit'], ['timecard'], ['today'], ['unable'], ['submit'], ['timecard'], ['today']] k: 7602 len: <class 'list'> Data: ['delete', 'blancog', 'olifgtmpio', 'gargtcia', 'blagtnco', 'olifgtmpio', 'gargtcia', 'blagtnco', 'working', 'company', 'anymore', 'since', 'know', 'still', 'active', 'ad', 'account', 'please', 'delete', 'account', 'soon', 'possible', 'well', 'system', 'account', 'blancog', 'olifgtmpio', 'gargtcia', 'blagtnco'] processed_text: ['delete', 'blancog', 'olifgtmpio', 'gargtcia', 'blagtnco', 'olifgtmpio', 'gargtcia', 'blagtnco', 'working', 'company', 'anymore', 'since', 'know', 'still', 'active', 'ad', 'account', 'please', 'delete', 'account', 'soon', 'possible', 'well', 'system', 'account', 'blancog', 'olifgtmpio', 'gargtcia', 'blagtnco'] list_processed_text: [['delete'], ['blancog'], ['olifgtmpio'], ['gargtcia'], ['blagtnco'], ['olifgtmpio'], ['gargtcia'], ['blagtnco'], ['working'], ['company'], ['anymore'], ['since'], ['know'], ['still'], ['active'], ['ad'], ['account'], ['please'], ['delete'], ['account'], ['soon'], ['possible'], ['well'], ['system'], ['account'], ['blancog'], ['olifgtmpio'], ['gargtcia'], ['blagtnco']] k: 7603 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb', 'since', 'et', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb', 'since', 'et', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb'], ['since'], ['et'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7604 len: <class 'list'> Data: ['hostname', 'internal', 'error', 'unable', 'find', 'process', 'since', 'et', 'hostname', 'internal', 'error', 'unable', 'find', 'process'] processed_text: ['hostname', 'internal', 'error', 'unable', 'find', 'process', 'since', 'et', 'hostname', 'internal', 'error', 'unable', 'find', 'process'] list_processed_text: [['hostname'], ['internal'], ['error'], ['unable'], ['find'], ['process'], ['since'], ['et'], ['hostname'], ['internal'], ['error'], ['unable'], ['find'], ['process']] k: 7605 len: <class 'list'> Data: ['hostname', 'robot', 'inactive', 'swap', 'memory', 'usage', 'unable', 'find', 'process', 'probe', 'process', 'failed', 'start', 'hostname', 'robot', 'hostname', 'inactive', 'hostname', 'average', 'sample', 'swap', 'memory', 'usage', 'error', 'threshold', 'hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'hostname', 'internal', 'error', 'unable', 'find', 'process', 'hostname', 'probe', 'process', 'failed', 'start', 'command', 'process', 'exe', 'error', 'insufficient', 'system', 'resource', 'exist', 'complete', 'requested', 'service'] processed_text: ['hostname', 'robot', 'inactive', 'swap', 'memory', 'usage', 'unable', 'find', 'process', 'probe', 'process', 'failed', 'start', 'hostname', 'robot', 'hostname', 'inactive', 'hostname', 'average', 'sample', 'swap', 'memory', 'usage', 'error', 'threshold', 'hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'hostname', 'internal', 'error', 'unable', 'find', 'process', 'hostname', 'probe', 'process', 'failed', 'start', 'command', 'process', 'exe', 'error', 'insufficient', 'system', 'resource', 'exist', 'complete', 'requested', 'service'] list_processed_text: [['hostname'], ['robot'], ['inactive'], ['swap'], ['memory'], ['usage'], ['unable'], ['find'], ['process'], ['probe'], ['process'], ['failed'], ['start'], ['hostname'], ['robot'], ['hostname'], ['inactive'], ['hostname'], ['average'], ['sample'], ['swap'], ['memory'], ['usage'], ['error'], ['threshold'], ['hostname'], ['average'], ['sample'], ['memory'], ['usage'], ['error'], ['threshold'], ['hostname'], ['internal'], ['error'], ['unable'], ['find'], ['process'], ['hostname'], ['probe'], ['process'], ['failed'], ['start'], ['command'], ['process'], ['exe'], ['error'], ['insufficient'], ['system'], ['resource'], ['exist'], ['complete'], ['requested'], ['service']] k: 7606 len: <class 'list'> Data: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] processed_text: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] list_processed_text: [['unable'], ['connect'], ['wireless'], ['unable'], ['connect'], ['wireless']] k: 7607 len: <class 'list'> Data: ['account', 'unlock', 'account', 'unlock'] processed_text: ['account', 'unlock', 'account', 'unlock'] list_processed_text: [['account'], ['unlock'], ['account'], ['unlock']] k: 7608 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['b'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7609 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 7610 len: <class 'list'> Data: ['unable', 'log', 'reporting', 'engineering', 'tool', 'unable', 'log', 'reporting', 'engineering', 'tool'] processed_text: ['unable', 'log', 'reporting', 'engineering', 'tool', 'unable', 'log', 'reporting', 'engineering', 'tool'] list_processed_text: [['unable'], ['log'], ['reporting'], ['engineering'], ['tool'], ['unable'], ['log'], ['reporting'], ['engineering'], ['tool']] k: 7611 len: <class 'list'> Data: ['ticket', 'update', 'danghtnuell', 'rakthyesh', 'ramdntythanjesh', 'pm', 'bxtqducs', 'zuhoylts', 'pvbomqht', 'smfkuhwi', 'inc', 'telephony', 'software', 'missing', 'pc', 'dear', 'cegtcil', 'danghtnuell', 'contacted', 'service', 'desk', 'assistance', 'telephony', 'software', 'issue', 'kindly', 'assist', 'user', 'kind'] processed_text: ['ticket', 'update', 'danghtnuell', 'rakthyesh', 'ramdntythanjesh', 'pm', 'bxtqducs', 'zuhoylts', 'pvbomqht', 'smfkuhwi', 'inc', 'telephony', 'software', 'missing', 'pc', 'dear', 'cegtcil', 'danghtnuell', 'contacted', 'service', 'desk', 'assistance', 'telephony', 'software', 'issue', 'kindly', 'assist', 'user', 'kind'] list_processed_text: [['ticket'], ['update'], ['danghtnuell'], ['rakthyesh'], ['ramdntythanjesh'], ['pm'], ['bxtqducs'], ['zuhoylts'], ['pvbomqht'], ['smfkuhwi'], ['inc'], ['telephony'], ['software'], ['missing'], ['pc'], ['dear'], ['cegtcil'], ['danghtnuell'], ['contacted'], ['service'], ['desk'], ['assistance'], ['telephony'], ['software'], ['issue'], ['kindly'], ['assist'], ['user'], ['kind']] k: 7612 len: <class 'list'> Data: ['unable', 'view', 'desktop', 'item', 'folder', 'unable', 'view', 'desktop', 'item', 'folder'] processed_text: ['unable', 'view', 'desktop', 'item', 'folder', 'unable', 'view', 'desktop', 'item', 'folder'] list_processed_text: [['unable'], ['view'], ['desktop'], ['item'], ['folder'], ['unable'], ['view'], ['desktop'], ['item'], ['folder']] k: 7613 len: <class 'list'> Data: ['customer', 'service', 'enters', 'order', 'acct', 'get', 'error', 'sale', 'office', 'valid', 'flat', 'rate', 'company', 'account', 'sale', 'office', 'fmw', 'shipping', 'condition', 'updated', 'ground', 'default', 'carrier', 'tupsgrnd', 'bob', 'lewicki', 'requested', 'entered', 'ticket', 'comment', 'believe', 'logic', 'restricting', 'sale', 'office', 'added', 'infrastructure', 'would', 'try', 'use', 'flat', 'rate', 'usa', 'definitely', 'copied', 'prishry', 'rabhtui', 'input', 'meantime', 'please', 'enter', 'ticket', 'get', 'corrected', 'believe', 'able', 'adjusted', 'table'] processed_text: ['customer', 'service', 'enters', 'order', 'acct', 'get', 'error', 'sale', 'office', 'valid', 'flat', 'rate', 'company', 'account', 'sale', 'office', 'fmw', 'shipping', 'condition', 'updated', 'ground', 'default', 'carrier', 'tupsgrnd', 'bob', 'lewicki', 'requested', 'entered', 'ticket', 'comment', 'believe', 'logic', 'restricting', 'sale', 'office', 'added', 'infrastructure', 'would', 'try', 'use', 'flat', 'rate', 'usa', 'definitely', 'copied', 'prishry', 'rabhtui', 'input', 'meantime', 'please', 'enter', 'ticket', 'get', 'corrected', 'believe', 'able', 'adjusted', 'table'] list_processed_text: [['customer'], ['service'], ['enters'], ['order'], ['acct'], ['get'], ['error'], ['sale'], ['office'], ['valid'], ['flat'], ['rate'], ['company'], ['account'], ['sale'], ['office'], ['fmw'], ['shipping'], ['condition'], ['updated'], ['ground'], ['default'], ['carrier'], ['tupsgrnd'], ['bob'], ['lewicki'], ['requested'], ['entered'], ['ticket'], ['comment'], ['believe'], ['logic'], ['restricting'], ['sale'], ['office'], ['added'], ['infrastructure'], ['would'], ['try'], ['use'], ['flat'], ['rate'], ['usa'], ['definitely'], ['copied'], ['prishry'], ['rabhtui'], ['input'], ['meantime'], ['please'], ['enter'], ['ticket'], ['get'], ['corrected'], ['believe'], ['able'], ['adjusted'], ['table']] k: 7614 len: <class 'list'> Data: ['order', 'plant', 'cpp', 'tm', 'warehouse', 'release', 'need', 'fixed', 'urgently', 'need', 'urgent', 'help', 'see', 'attached', 'document', 'example', 'order', 'say', 'shipping', 'receiving', 'pt', 'missing', 'erp', 'recognizing', 'plant', 'getting', 'error', 'trying', 'add', 'plant', 'ship', 'rec', 'plant', 'checked', 'plant', 'plant', 'also', 'problem'] processed_text: ['order', 'plant', 'cpp', 'tm', 'warehouse', 'release', 'need', 'fixed', 'urgently', 'need', 'urgent', 'help', 'see', 'attached', 'document', 'example', 'order', 'say', 'shipping', 'receiving', 'pt', 'missing', 'erp', 'recognizing', 'plant', 'getting', 'error', 'trying', 'add', 'plant', 'ship', 'rec', 'plant', 'checked', 'plant', 'plant', 'also', 'problem'] list_processed_text: [['order'], ['plant'], ['cpp'], ['tm'], ['warehouse'], ['release'], ['need'], ['fixed'], ['urgently'], ['need'], ['urgent'], ['help'], ['see'], ['attached'], ['document'], ['example'], ['order'], ['say'], ['shipping'], ['receiving'], ['pt'], ['missing'], ['erp'], ['recognizing'], ['plant'], ['getting'], ['error'], ['trying'], ['add'], ['plant'], ['ship'], ['rec'], ['plant'], ['checked'], ['plant'], ['plant'], ['also'], ['problem']] k: 7615 len: <class 'list'> Data: ['changed', 'laptop', 'need', 'phone', 'activated', 'pc', 'please', 'help', 'log', 'phone', 'system', 'using', 'changed', 'laptop'] processed_text: ['changed', 'laptop', 'need', 'phone', 'activated', 'pc', 'please', 'help', 'log', 'phone', 'system', 'using', 'changed', 'laptop'] list_processed_text: [['changed'], ['laptop'], ['need'], ['phone'], ['activated'], ['pc'], ['please'], ['help'], ['log'], ['phone'], ['system'], ['using'], ['changed'], ['laptop']] k: 7616 len: <class 'list'> Data: ['enable', 'access', 'erp', 'code', 'cvn', 'view', 'drawing', 'enable', 'access', 'erp', 'code', 'cvn', 'view', 'drawing'] processed_text: ['enable', 'access', 'erp', 'code', 'cvn', 'view', 'drawing', 'enable', 'access', 'erp', 'code', 'cvn', 'view', 'drawing'] list_processed_text: [['enable'], ['access'], ['erp'], ['code'], ['cvn'], ['view'], ['drawing'], ['enable'], ['access'], ['erp'], ['code'], ['cvn'], ['view'], ['drawing']] k: 7617 len: <class 'list'> Data: ['crm', 'issue', 'hello', 'access', 'forcast', 'plan', 'dashbankrd', 'crm', 'see', 'attached', 'screenshot', 'markhty', 'dale', 'sale', 'engineer', 'illinois', 'nc'] processed_text: ['crm', 'issue', 'hello', 'access', 'forcast', 'plan', 'dashbankrd', 'crm', 'see', 'attached', 'screenshot', 'markhty', 'dale', 'sale', 'engineer', 'illinois', 'nc'] list_processed_text: [['crm'], ['issue'], ['hello'], ['access'], ['forcast'], ['plan'], ['dashbankrd'], ['crm'], ['see'], ['attached'], ['screenshot'], ['markhty'], ['dale'], ['sale'], ['engineer'], ['illinois'], ['nc']] k: 7618 len: <class 'list'> Data: ['access', 'request', 'engineering', 'tool', 'access', 'request', 'engineering', 'tool'] processed_text: ['access', 'request', 'engineering', 'tool', 'access', 'request', 'engineering', 'tool'] list_processed_text: [['access'], ['request'], ['engineering'], ['tool'], ['access'], ['request'], ['engineering'], ['tool']] k: 7619 len: <class 'list'> Data: ['requesting', 'access', 'mgmt', 'drive', 'good', 'morning', 'requesting', 'access', 'file'] processed_text: ['requesting', 'access', 'mgmt', 'drive', 'good', 'morning', 'requesting', 'access', 'file'] list_processed_text: [['requesting'], ['access'], ['mgmt'], ['drive'], ['good'], ['morning'], ['requesting'], ['access'], ['file']] k: 7620 len: <class 'list'> Data: ['unable', 'access', 'email', 'company', 'ipad', 'unable', 'access', 'email', 'company', 'ipad'] processed_text: ['unable', 'access', 'email', 'company', 'ipad', 'unable', 'access', 'email', 'company', 'ipad'] list_processed_text: [['unable'], ['access'], ['email'], ['company'], ['ipad'], ['unable'], ['access'], ['email'], ['company'], ['ipad']] k: 7621 len: <class 'list'> Data: ['user', 'unable', 'log', 'outlook', 'user', 'unable', 'log', 'outlook'] processed_text: ['user', 'unable', 'log', 'outlook', 'user', 'unable', 'log', 'outlook'] list_processed_text: [['user'], ['unable'], ['log'], ['outlook'], ['user'], ['unable'], ['log'], ['outlook']] k: 7622 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 7623 len: <class 'list'> Data: ['skype', 'audio', 'issue', 'dear', 'continue', 'skype', 'audio', 'issue', 'unable', 'hear', 'skype', 'call', 'tablet', 'call', 'specifically', 'dial', 'director', 'call', 'number', 'hear', 'every', 'third', 'word', 'issue', 'tech', 'fix', 'issue', 'need', 'done', 'continue', 'issue', 'qwijaspo', 'ukynmfig', 'sale', 'manager', 'west', 'coast'] processed_text: ['skype', 'audio', 'issue', 'dear', 'continue', 'skype', 'audio', 'issue', 'unable', 'hear', 'skype', 'call', 'tablet', 'call', 'specifically', 'dial', 'director', 'call', 'number', 'hear', 'every', 'third', 'word', 'issue', 'tech', 'fix', 'issue', 'need', 'done', 'continue', 'issue', 'qwijaspo', 'ukynmfig', 'sale', 'manager', 'west', 'coast'] list_processed_text: [['skype'], ['audio'], ['issue'], ['dear'], ['continue'], ['skype'], ['audio'], ['issue'], ['unable'], ['hear'], ['skype'], ['call'], ['tablet'], ['call'], ['specifically'], ['dial'], ['director'], ['call'], ['number'], ['hear'], ['every'], ['third'], ['word'], ['issue'], ['tech'], ['fix'], ['issue'], ['need'], ['done'], ['continue'], ['issue'], ['qwijaspo'], ['ukynmfig'], ['sale'], ['manager'], ['west'], ['coast']] k: 7624 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7625 len: <class 'list'> Data: ['engineering', 'tool', 'work', 'engineering', 'tool', 'work'] processed_text: ['engineering', 'tool', 'work', 'engineering', 'tool', 'work'] list_processed_text: [['engineering'], ['tool'], ['work'], ['engineering'], ['tool'], ['work']] k: 7626 len: <class 'list'> Data: ['network', 'outage', 'russia', 'warehouse', 'site', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'warehouse', 'site', 'since', 'et', 'backup', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['warehouse'], ['site'], ['since'], ['et'], ['backup'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7627 len: <class 'list'> Data: ['pc', 'projector', 'einstein', 'conf', 'room', 'working', 'getting', 'video', 'screen', 'pc', 'projector', 'einstein', 'conf', 'room', 'working', 'getting', 'video', 'screen'] processed_text: ['pc', 'projector', 'einstein', 'conf', 'room', 'working', 'getting', 'video', 'screen', 'pc', 'projector', 'einstein', 'conf', 'room', 'working', 'getting', 'video', 'screen'] list_processed_text: [['pc'], ['projector'], ['einstein'], ['conf'], ['room'], ['working'], ['getting'], ['video'], ['screen'], ['pc'], ['projector'], ['einstein'], ['conf'], ['room'], ['working'], ['getting'], ['video'], ['screen']] k: 7628 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'material', 'mm', 'material', 'completed', 'please', 'assign', 'erp', 'supply', 'chain', 'team', 'apo', 'ecc', 'system', 'require', 'synchronization', 'delivery', 'created', 'material', 'needed', 'ship', 'today'] processed_text: ['unable', 'create', 'delivery', 'material', 'mm', 'material', 'completed', 'please', 'assign', 'erp', 'supply', 'chain', 'team', 'apo', 'ecc', 'system', 'require', 'synchronization', 'delivery', 'created', 'material', 'needed', 'ship', 'today'] list_processed_text: [['unable'], ['create'], ['delivery'], ['material'], ['mm'], ['material'], ['completed'], ['please'], ['assign'], ['erp'], ['supply'], ['chain'], ['team'], ['apo'], ['ecc'], ['system'], ['require'], ['synchronization'], ['delivery'], ['created'], ['material'], ['needed'], ['ship'], ['today']] k: 7629 len: <class 'list'> Data: ['company', 'mail', 'mobile', 'phone', 'hello', 'pl', 'let', 'know', 'process', 'install', 'start', 'access', 'official', 'mail', 'smart', 'phone', 'phone', 'detail', 'make', 'oppo', 'build', 'number', 'xex', 'imei', 'imei', 'duel', 'sim', 'mobile', 'pl', 'let', 'know', 'detail', 'needed'] processed_text: ['company', 'mail', 'mobile', 'phone', 'hello', 'pl', 'let', 'know', 'process', 'install', 'start', 'access', 'official', 'mail', 'smart', 'phone', 'phone', 'detail', 'make', 'oppo', 'build', 'number', 'xex', 'imei', 'imei', 'duel', 'sim', 'mobile', 'pl', 'let', 'know', 'detail', 'needed'] list_processed_text: [['company'], ['mail'], ['mobile'], ['phone'], ['hello'], ['pl'], ['let'], ['know'], ['process'], ['install'], ['start'], ['access'], ['official'], ['mail'], ['smart'], ['phone'], ['phone'], ['detail'], ['make'], ['oppo'], ['build'], ['number'], ['xex'], ['imei'], ['imei'], ['duel'], ['sim'], ['mobile'], ['pl'], ['let'], ['know'], ['detail'], ['needed']] k: 7630 len: <class 'list'> Data: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] processed_text: ['impact', 'award', 'password', 'reset', 'impact', 'award', 'password', 'reset'] list_processed_text: [['impact'], ['award'], ['password'], ['reset'], ['impact'], ['award'], ['password'], ['reset']] k: 7631 len: <class 'list'> Data: ['network', 'outage', 'usa', 'refinery', 'company', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'refinery', 'company', 'site', 'hard', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'na', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['refinery'], ['company'], ['site'], ['hard'], ['since'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7632 len: <class 'list'> Data: ['replace', 'internal', 'speaker', 'due', 'crackling', 'issue', 'replace', 'internal', 'speaker', 'due', 'crackling', 'issue'] processed_text: ['replace', 'internal', 'speaker', 'due', 'crackling', 'issue', 'replace', 'internal', 'speaker', 'due', 'crackling', 'issue'] list_processed_text: [['replace'], ['internal'], ['speaker'], ['due'], ['crackling'], ['issue'], ['replace'], ['internal'], ['speaker'], ['due'], ['crackling'], ['issue']] k: 7633 len: <class 'list'> Data: ['material', 'posting', 'production', 'order', 'balance', 'requirement', 'quantity', 'order', 'post', 'qty', 'withdraw', 'switzerland', 'cc', 'post', 'material', 'consumption', 'po', 'mat', 'post', 'number', 'material', 'discounted', 'stock', 'batch', 'posten', 'production', 'order', 'show', 'bill', 'material', 'several', 'order', 'suffering', 'problem', 'need', 'solved', 'aerp', 'contact', 'brjkmwvo', 'odxwcpie'] processed_text: ['material', 'posting', 'production', 'order', 'balance', 'requirement', 'quantity', 'order', 'post', 'qty', 'withdraw', 'switzerland', 'cc', 'post', 'material', 'consumption', 'po', 'mat', 'post', 'number', 'material', 'discounted', 'stock', 'batch', 'posten', 'production', 'order', 'show', 'bill', 'material', 'several', 'order', 'suffering', 'problem', 'need', 'solved', 'aerp', 'contact', 'brjkmwvo', 'odxwcpie'] list_processed_text: [['material'], ['posting'], ['production'], ['order'], ['balance'], ['requirement'], ['quantity'], ['order'], ['post'], ['qty'], ['withdraw'], ['switzerland'], ['cc'], ['post'], ['material'], ['consumption'], ['po'], ['mat'], ['post'], ['number'], ['material'], ['discounted'], ['stock'], ['batch'], ['posten'], ['production'], ['order'], ['show'], ['bill'], ['material'], ['several'], ['order'], ['suffering'], ['problem'], ['need'], ['solved'], ['aerp'], ['contact'], ['brjkmwvo'], ['odxwcpie']] k: 7634 len: <class 'list'> Data: ['discount', 'problem', 'submitting', 'discount', 'screen', 'shot', 'im', 'getting'] processed_text: ['discount', 'problem', 'submitting', 'discount', 'screen', 'shot', 'im', 'getting'] list_processed_text: [['discount'], ['problem'], ['submitting'], ['discount'], ['screen'], ['shot'], ['im'], ['getting']] k: 7635 len: <class 'list'> Data: ['dell', 'device', 'booting', 'despite', 'multiple', 'attempt', 'reset', 'reboot', 'dell', 'device', 'booting', 'despite', 'multiple', 'attempt', 'reset', 'reboot'] processed_text: ['dell', 'device', 'booting', 'despite', 'multiple', 'attempt', 'reset', 'reboot', 'dell', 'device', 'booting', 'despite', 'multiple', 'attempt', 'reset', 'reboot'] list_processed_text: [['dell'], ['device'], ['booting'], ['despite'], ['multiple'], ['attempt'], ['reset'], ['reboot'], ['dell'], ['device'], ['booting'], ['despite'], ['multiple'], ['attempt'], ['reset'], ['reboot']] k: 7636 len: <class 'list'> Data: ['unable', 'view', 'credit', 'card', 'statement', 'es', 'unable', 'view', 'credit', 'card', 'statement', 'es'] processed_text: ['unable', 'view', 'credit', 'card', 'statement', 'es', 'unable', 'view', 'credit', 'card', 'statement', 'es'] list_processed_text: [['unable'], ['view'], ['credit'], ['card'], ['statement'], ['es'], ['unable'], ['view'], ['credit'], ['card'], ['statement'], ['es']] k: 7637 len: <class 'list'> Data: ['erp', 'newweaver', 'business', 'client', 'locked', 'erp', 'newweaver', 'business', 'client', 'locked'] processed_text: ['erp', 'newweaver', 'business', 'client', 'locked', 'erp', 'newweaver', 'business', 'client', 'locked'] list_processed_text: [['erp'], ['newweaver'], ['business'], ['client'], ['locked'], ['erp'], ['newweaver'], ['business'], ['client'], ['locked']] k: 7638 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 7639 len: <class 'list'> Data: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] processed_text: ['erp', 'sid', 'account', 'unlock', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset'], ['erp'], ['sid'], ['account'], ['unlock'], ['password'], ['reset']] k: 7640 len: <class 'list'> Data: ['computer', 'mii', 'u', 'plant', 'facility', 'got', 'thrown', 'company', 'domain', 'computer', 'mii', 'got', 'thrown', 'company', 'domain', 'please', 'contact', 'm', 'dpuifqeo', 'eglwsfkn', 'info'] processed_text: ['computer', 'mii', 'u', 'plant', 'facility', 'got', 'thrown', 'company', 'domain', 'computer', 'mii', 'got', 'thrown', 'company', 'domain', 'please', 'contact', 'm', 'dpuifqeo', 'eglwsfkn', 'info'] list_processed_text: [['computer'], ['mii'], ['u'], ['plant'], ['facility'], ['got'], ['thrown'], ['company'], ['domain'], ['computer'], ['mii'], ['got'], ['thrown'], ['company'], ['domain'], ['please'], ['contact'], ['m'], ['dpuifqeo'], ['eglwsfkn'], ['info']] k: 7641 len: <class 'list'> Data: ['network', 'response', 'time', 'eastern', 'daylight', 'time', 'conference', 'call', 'usa', 'call', 'started', 'dropping', 'reason', 'come', 'network', 'bottleneck', 'want', 'prove', 'disprove', 'finding', 'network', 'traffic', 'level', 'usa', 'usa', 'usa', 'internet', 'time', 'call', 'made'] processed_text: ['network', 'response', 'time', 'eastern', 'daylight', 'time', 'conference', 'call', 'usa', 'call', 'started', 'dropping', 'reason', 'come', 'network', 'bottleneck', 'want', 'prove', 'disprove', 'finding', 'network', 'traffic', 'level', 'usa', 'usa', 'usa', 'internet', 'time', 'call', 'made'] list_processed_text: [['network'], ['response'], ['time'], ['eastern'], ['daylight'], ['time'], ['conference'], ['call'], ['usa'], ['call'], ['started'], ['dropping'], ['reason'], ['come'], ['network'], ['bottleneck'], ['want'], ['prove'], ['disprove'], ['finding'], ['network'], ['traffic'], ['level'], ['usa'], ['usa'], ['usa'], ['internet'], ['time'], ['call'], ['made']] k: 7642 len: <class 'list'> Data: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] processed_text: ['erp', 'sid', 'locked', 'erp', 'sid', 'locked'] list_processed_text: [['erp'], ['sid'], ['locked'], ['erp'], ['sid'], ['locked']] k: 7643 len: <class 'list'> Data: ['ticket', 'update', 'account', 'lockout', 'ticket', 'update', 'account', 'lockout'] processed_text: ['ticket', 'update', 'account', 'lockout', 'ticket', 'update', 'account', 'lockout'] list_processed_text: [['ticket'], ['update'], ['account'], ['lockout'], ['ticket'], ['update'], ['account'], ['lockout']] k: 7644 len: <class 'list'> Data: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] processed_text: ['unable', 'load', 'outlook', 'unable', 'load', 'outlook'] list_processed_text: [['unable'], ['load'], ['outlook'], ['unable'], ['load'], ['outlook']] k: 7645 len: <class 'list'> Data: ['urgent', 'need', 'access', 'account', 'iowa', 'minnesotta', 'south', 'dakota', 'within', 'crm', 'need', 'access', 'account', 'iowa', 'minnesotta', 'south', 'dakota', 'within', 'crm'] processed_text: ['urgent', 'need', 'access', 'account', 'iowa', 'minnesotta', 'south', 'dakota', 'within', 'crm', 'need', 'access', 'account', 'iowa', 'minnesotta', 'south', 'dakota', 'within', 'crm'] list_processed_text: [['urgent'], ['need'], ['access'], ['account'], ['iowa'], ['minnesotta'], ['south'], ['dakota'], ['within'], ['crm'], ['need'], ['access'], ['account'], ['iowa'], ['minnesotta'], ['south'], ['dakota'], ['within'], ['crm']] k: 7646 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7647 len: <class 'list'> Data: ['issue', 'executncqulao', 'qauighdpss', 'programdntys', 'erp', 'working', 'vpn', 'urgent', 'hello', 'issue', 'working', 'vpn', 'form', 'home', 'able', 'run', 'mass', 'programdntys', 'erp', 'vpn', 'last', 'weekend', 'run', 'mass', 'programdnty', 'add', 'partner', 'erp', 'able', 'thought', 'security', 'issue', 'checked', 'security', 'erp', 'team', 'made', 'uacyltoe', 'hxgaycze', 'office', 'working', 'home', 'working', 'vpn', 'please', 'check', 'high', 'priority'] processed_text: ['issue', 'executncqulao', 'qauighdpss', 'programdntys', 'erp', 'working', 'vpn', 'urgent', 'hello', 'issue', 'working', 'vpn', 'form', 'home', 'able', 'run', 'mass', 'programdntys', 'erp', 'vpn', 'last', 'weekend', 'run', 'mass', 'programdnty', 'add', 'partner', 'erp', 'able', 'thought', 'security', 'issue', 'checked', 'security', 'erp', 'team', 'made', 'uacyltoe', 'hxgaycze', 'office', 'working', 'home', 'working', 'vpn', 'please', 'check', 'high', 'priority'] list_processed_text: [['issue'], ['executncqulao'], ['qauighdpss'], ['programdntys'], ['erp'], ['working'], ['vpn'], ['urgent'], ['hello'], ['issue'], ['working'], ['vpn'], ['form'], ['home'], ['able'], ['run'], ['mass'], ['programdntys'], ['erp'], ['vpn'], ['last'], ['weekend'], ['run'], ['mass'], ['programdnty'], ['add'], ['partner'], ['erp'], ['able'], ['thought'], ['security'], ['issue'], ['checked'], ['security'], ['erp'], ['team'], ['made'], ['uacyltoe'], ['hxgaycze'], ['office'], ['working'], ['home'], ['working'], ['vpn'], ['please'], ['check'], ['high'], ['priority']] k: 7648 len: <class 'list'> Data: ['discount', 'error', 'best'] processed_text: ['discount', 'error', 'best'] list_processed_text: [['discount'], ['error'], ['best']] k: 7649 len: <class 'list'> Data: ['reset', 'password', 'yimwfntl', 'rkdwohas', 'erp', 'production', 'erp', 'trying', 'log', 'erp', 'part', 'erp', 'fro', 'first', 'time', 'would', 'accept', 'password', 'locked', 'system'] processed_text: ['reset', 'password', 'yimwfntl', 'rkdwohas', 'erp', 'production', 'erp', 'trying', 'log', 'erp', 'part', 'erp', 'fro', 'first', 'time', 'would', 'accept', 'password', 'locked', 'system'] list_processed_text: [['reset'], ['password'], ['yimwfntl'], ['rkdwohas'], ['erp'], ['production'], ['erp'], ['trying'], ['log'], ['erp'], ['part'], ['erp'], ['fro'], ['first'], ['time'], ['would'], ['accept'], ['password'], ['locked'], ['system']] k: 7650 len: <class 'list'> Data: ['update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'adjust', 'current', 'm', 'office', 'installation'] processed_text: ['update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'adjust', 'current', 'm', 'office', 'installation'] list_processed_text: [['update'], ['cutview'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['update'], ['cutview'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['adjust'], ['current'], ['m'], ['office'], ['installation']] k: 7651 len: <class 'list'> Data: ['wi', 'fi', 'msg', 'sale', 'working', 'help', 'desk', 'unable', 'connect', 'wi', 'fi', 'msg', 'sale', 'since', 'last', 'two', 'three', 'week', 'please', 'note', 'lotus', 'discussion', 'room', 'working', 'fine', 'could', 'connect', 'however', 'shifted', 'msg', 'sale', 'month', 'back', 'unable', 'connect', 'please', 'check', 'restore', 'earliest', 'best'] processed_text: ['wi', 'fi', 'msg', 'sale', 'working', 'help', 'desk', 'unable', 'connect', 'wi', 'fi', 'msg', 'sale', 'since', 'last', 'two', 'three', 'week', 'please', 'note', 'lotus', 'discussion', 'room', 'working', 'fine', 'could', 'connect', 'however', 'shifted', 'msg', 'sale', 'month', 'back', 'unable', 'connect', 'please', 'check', 'restore', 'earliest', 'best'] list_processed_text: [['wi'], ['fi'], ['msg'], ['sale'], ['working'], ['help'], ['desk'], ['unable'], ['connect'], ['wi'], ['fi'], ['msg'], ['sale'], ['since'], ['last'], ['two'], ['three'], ['week'], ['please'], ['note'], ['lotus'], ['discussion'], ['room'], ['working'], ['fine'], ['could'], ['connect'], ['however'], ['shifted'], ['msg'], ['sale'], ['month'], ['back'], ['unable'], ['connect'], ['please'], ['check'], ['restore'], ['earliest'], ['best']] k: 7652 len: <class 'list'> Data: ['launch', 'collaboration', 'platform', 'internet', 'browser', 'ie', 'launch', 'others', 'around', 'experiencing', 'thing', 'launch', 'collaboration', 'platform', 'internet', 'browser', 'ie', 'launch', 'others', 'around', 'experiencing', 'thing'] processed_text: ['launch', 'collaboration', 'platform', 'internet', 'browser', 'ie', 'launch', 'others', 'around', 'experiencing', 'thing', 'launch', 'collaboration', 'platform', 'internet', 'browser', 'ie', 'launch', 'others', 'around', 'experiencing', 'thing'] list_processed_text: [['launch'], ['collaboration'], ['platform'], ['internet'], ['browser'], ['ie'], ['launch'], ['others'], ['around'], ['experiencing'], ['thing'], ['launch'], ['collaboration'], ['platform'], ['internet'], ['browser'], ['ie'], ['launch'], ['others'], ['around'], ['experiencing'], ['thing']] k: 7653 len: <class 'list'> Data: ['update', 'installation', 'cutview', 'update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'adjust', 'current', 'm', 'office', 'installation'] processed_text: ['update', 'installation', 'cutview', 'update', 'cutview', 'lauacyltoe', 'hxgaycze', 'version', 'adjust', 'current', 'm', 'office', 'installation'] list_processed_text: [['update'], ['installation'], ['cutview'], ['update'], ['cutview'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['adjust'], ['current'], ['m'], ['office'], ['installation']] k: 7654 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'luciano', 'amadeu', 'zpfitlyu', 'cemvwyso', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'luciano', 'amadeu', 'zpfitlyu', 'cemvwyso', 'id', 'eulalla', 'id', 'silvaes'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'luciano', 'amadeu', 'zpfitlyu', 'cemvwyso', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'luciano', 'amadeu', 'zpfitlyu', 'cemvwyso', 'id', 'eulalla', 'id', 'silvaes'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['luciano'], ['amadeu'], ['zpfitlyu'], ['cemvwyso'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['luciano'], ['amadeu'], ['zpfitlyu'], ['cemvwyso'], ['id'], ['eulalla'], ['id'], ['silvaes']] k: 7655 len: <class 'list'> Data: ['csscdrill', 'model', 'configair', 'server', 'working', 'sid', 'production', 'csscdrill', 'model', 'configair', 'server', 'working', 'sid', 'production', 'starting', 'csscdrill', 'model', 'standard', 'reference', 'product', 'server', 'response', 'internal', 'server', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'starting', 'csscdrill', 'model', 'scratch', 'selecting', 'standard', 'reference', 'product', 'configair', 'come', 'allow', 'complete', 'good', 'configuration', 'csscdrill', 'model', 'working', 'fine', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'mill', 'model', 'model', 'working', 'fine', 'sid', 'sid'] processed_text: ['csscdrill', 'model', 'configair', 'server', 'working', 'sid', 'production', 'csscdrill', 'model', 'configair', 'server', 'working', 'sid', 'production', 'starting', 'csscdrill', 'model', 'standard', 'reference', 'product', 'server', 'response', 'internal', 'server', 'error', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'starting', 'csscdrill', 'model', 'scratch', 'selecting', 'standard', 'reference', 'product', 'configair', 'come', 'allow', 'complete', 'good', 'configuration', 'csscdrill', 'model', 'working', 'fine', 'sid', 'uacyltoe', 'hxgaycze', 'environment', 'mill', 'model', 'model', 'working', 'fine', 'sid', 'sid'] list_processed_text: [['csscdrill'], ['model'], ['configair'], ['server'], ['working'], ['sid'], ['production'], ['csscdrill'], ['model'], ['configair'], ['server'], ['working'], ['sid'], ['production'], ['starting'], ['csscdrill'], ['model'], ['standard'], ['reference'], ['product'], ['server'], ['response'], ['internal'], ['server'], ['error'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['starting'], ['csscdrill'], ['model'], ['scratch'], ['selecting'], ['standard'], ['reference'], ['product'], ['configair'], ['come'], ['allow'], ['complete'], ['good'], ['configuration'], ['csscdrill'], ['model'], ['working'], ['fine'], ['sid'], ['uacyltoe'], ['hxgaycze'], ['environment'], ['mill'], ['model'], ['model'], ['working'], ['fine'], ['sid'], ['sid']] k: 7656 len: <class 'list'> Data: ['lhqsm', 'average', 'sample', 'disk', 'free', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['lhqsm', 'average', 'sample', 'disk', 'free', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['lhqsm'], ['average'], ['sample'], ['disk'], ['free'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7657 len: <class 'list'> Data: ['news', 'opened', 'hello', 'since', 'day', 'regional', 'news', 'moved', 'first', 'page', 'hub', 'news', 'appear', 'open', 'link', 'heading', 'screen', 'print', 'wrote', 'email', 'best'] processed_text: ['news', 'opened', 'hello', 'since', 'day', 'regional', 'news', 'moved', 'first', 'page', 'hub', 'news', 'appear', 'open', 'link', 'heading', 'screen', 'print', 'wrote', 'email', 'best'] list_processed_text: [['news'], ['opened'], ['hello'], ['since'], ['day'], ['regional'], ['news'], ['moved'], ['first'], ['page'], ['hub'], ['news'], ['appear'], ['open'], ['link'], ['heading'], ['screen'], ['print'], ['wrote'], ['email'], ['best']] k: 7658 len: <class 'list'> Data: ['replace', 'button', 'missing', 'dialog', 'box', 'shopping', 'basket', 'replace', 'button', 'missing', 'dialog', 'box', 'shopping', 'basket', 'click', 'status', 'indicator', 'msg', 'display', 'replacement', 'replace', 'button', 'missing', 'need', 'grid', 'page'] processed_text: ['replace', 'button', 'missing', 'dialog', 'box', 'shopping', 'basket', 'replace', 'button', 'missing', 'dialog', 'box', 'shopping', 'basket', 'click', 'status', 'indicator', 'msg', 'display', 'replacement', 'replace', 'button', 'missing', 'need', 'grid', 'page'] list_processed_text: [['replace'], ['button'], ['missing'], ['dialog'], ['box'], ['shopping'], ['basket'], ['replace'], ['button'], ['missing'], ['dialog'], ['box'], ['shopping'], ['basket'], ['click'], ['status'], ['indicator'], ['msg'], ['display'], ['replacement'], ['replace'], ['button'], ['missing'], ['need'], ['grid'], ['page']] k: 7659 len: <class 'list'> Data: ['outlook', 'functioning', 'outlook', 'functioning'] processed_text: ['outlook', 'functioning', 'outlook', 'functioning'] list_processed_text: [['outlook'], ['functioning'], ['outlook'], ['functioning']] k: 7660 len: <class 'list'> Data: ['enhancement', 'storage', 'capacity', 'dear', 'sir', 'sufficient', 'space', 'following', 'drive', 'server', 'request', 'enhance', 'storage', 'capacity', 'drive', 'mtbu', 'ele', 'hostname', 'file', 'hostname', 'eplan', 'vault', 'hostname', 'file', 'hostname'] processed_text: ['enhancement', 'storage', 'capacity', 'dear', 'sir', 'sufficient', 'space', 'following', 'drive', 'server', 'request', 'enhance', 'storage', 'capacity', 'drive', 'mtbu', 'ele', 'hostname', 'file', 'hostname', 'eplan', 'vault', 'hostname', 'file', 'hostname'] list_processed_text: [['enhancement'], ['storage'], ['capacity'], ['dear'], ['sir'], ['sufficient'], ['space'], ['following'], ['drive'], ['server'], ['request'], ['enhance'], ['storage'], ['capacity'], ['drive'], ['mtbu'], ['ele'], ['hostname'], ['file'], ['hostname'], ['eplan'], ['vault'], ['hostname'], ['file'], ['hostname']] k: 7661 len: <class 'list'> Data: ['mouse', 'issue', 'mouse', 'working'] processed_text: ['mouse', 'issue', 'mouse', 'working'] list_processed_text: [['mouse'], ['issue'], ['mouse'], ['working']] k: 7662 len: <class 'list'> Data: ['call', 'basis', 'dac', 'gso', 'team', 'please', 'note', 'call', 'primary', 'secondary', 'detail', 'today', 'ist', 'ist', 'primary', 'krisyuhnyrt', 'juvfghtla', 'secondary', 'thomklmas', 'kahtuithra'] processed_text: ['call', 'basis', 'dac', 'gso', 'team', 'please', 'note', 'call', 'primary', 'secondary', 'detail', 'today', 'ist', 'ist', 'primary', 'krisyuhnyrt', 'juvfghtla', 'secondary', 'thomklmas', 'kahtuithra'] list_processed_text: [['call'], ['basis'], ['dac'], ['gso'], ['team'], ['please'], ['note'], ['call'], ['primary'], ['secondary'], ['detail'], ['today'], ['ist'], ['ist'], ['primary'], ['krisyuhnyrt'], ['juvfghtla'], ['secondary'], ['thomklmas'], ['kahtuithra']] k: 7663 len: <class 'list'> Data: ['mandatory', 'condition', 'mwst', 'missing', 'order', 'customer', 'master', 'could', 'please', 'check', 'wrong', 'customer', 'master', 'create', 'delivery', 'incomplete', 'log', 'pricing', 'error', 'mandatory', 'condition', 'mwst', 'missing', 'check', 'pricing', 'department', 'mwst', 'defined', 'customer', 'corretly', 'tax', 'like', 'turkey', 'tr', 'tax', 'free', 'trade', 'zone', 'customer', 'azerbaijan', 'maybe', 'added', 'condition', 'country', 'also', 'ship', 'tool', 'today', 'new', 'order', 'form', 'new', 'distributor', 'big', 'potential', 'priority'] processed_text: ['mandatory', 'condition', 'mwst', 'missing', 'order', 'customer', 'master', 'could', 'please', 'check', 'wrong', 'customer', 'master', 'create', 'delivery', 'incomplete', 'log', 'pricing', 'error', 'mandatory', 'condition', 'mwst', 'missing', 'check', 'pricing', 'department', 'mwst', 'defined', 'customer', 'corretly', 'tax', 'like', 'turkey', 'tr', 'tax', 'free', 'trade', 'zone', 'customer', 'azerbaijan', 'maybe', 'added', 'condition', 'country', 'also', 'ship', 'tool', 'today', 'new', 'order', 'form', 'new', 'distributor', 'big', 'potential', 'priority'] list_processed_text: [['mandatory'], ['condition'], ['mwst'], ['missing'], ['order'], ['customer'], ['master'], ['could'], ['please'], ['check'], ['wrong'], ['customer'], ['master'], ['create'], ['delivery'], ['incomplete'], ['log'], ['pricing'], ['error'], ['mandatory'], ['condition'], ['mwst'], ['missing'], ['check'], ['pricing'], ['department'], ['mwst'], ['defined'], ['customer'], ['corretly'], ['tax'], ['like'], ['turkey'], ['tr'], ['tax'], ['free'], ['trade'], ['zone'], ['customer'], ['azerbaijan'], ['maybe'], ['added'], ['condition'], ['country'], ['also'], ['ship'], ['tool'], ['today'], ['new'], ['order'], ['form'], ['new'], ['distributor'], ['big'], ['potential'], ['priority']] k: 7664 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7665 len: <class 'list'> Data: ['setup', 'new', 'w', 'svuxjkpg', 'tpurnjvi', 'setup', 'new', 'w', 'svuxjkpg', 'tpurnjvi'] processed_text: ['setup', 'new', 'w', 'svuxjkpg', 'tpurnjvi', 'setup', 'new', 'w', 'svuxjkpg', 'tpurnjvi'] list_processed_text: [['setup'], ['new'], ['w'], ['svuxjkpg'], ['tpurnjvi'], ['setup'], ['new'], ['w'], ['svuxjkpg'], ['tpurnjvi']] k: 7666 len: <class 'list'> Data: ['setup', 'new', 'w', 'xovczlad', 'fkicawph', 'setup', 'new', 'w', 'xovczlad', 'fkicawph'] processed_text: ['setup', 'new', 'w', 'xovczlad', 'fkicawph', 'setup', 'new', 'w', 'xovczlad', 'fkicawph'] list_processed_text: [['setup'], ['new'], ['w'], ['xovczlad'], ['fkicawph'], ['setup'], ['new'], ['w'], ['xovczlad'], ['fkicawph']] k: 7667 len: <class 'list'> Data: ['ak', 'crm', 'outlook', 'working', 'hello', 'please', 'help', 'solve', 'following', 'issue', 'whenever', 'want', 'start', 'outlook', 'get', 'microsoft', 'dynamic', 'crm', 'message', 'order', 'proceed', 'click', 'storno', 'cancel', 'severeal', 'time', 'outlook', 'opened', 'connection', 'crm', 'need', 'pofgtzdravem', 'kind'] processed_text: ['ak', 'crm', 'outlook', 'working', 'hello', 'please', 'help', 'solve', 'following', 'issue', 'whenever', 'want', 'start', 'outlook', 'get', 'microsoft', 'dynamic', 'crm', 'message', 'order', 'proceed', 'click', 'storno', 'cancel', 'severeal', 'time', 'outlook', 'opened', 'connection', 'crm', 'need', 'pofgtzdravem', 'kind'] list_processed_text: [['ak'], ['crm'], ['outlook'], ['working'], ['hello'], ['please'], ['help'], ['solve'], ['following'], ['issue'], ['whenever'], ['want'], ['start'], ['outlook'], ['get'], ['microsoft'], ['dynamic'], ['crm'], ['message'], ['order'], ['proceed'], ['click'], ['storno'], ['cancel'], ['severeal'], ['time'], ['outlook'], ['opened'], ['connection'], ['crm'], ['need'], ['pofgtzdravem'], ['kind']] k: 7668 len: <class 'list'> Data: ['setup', 'new', 'w', 'bzekndcu', 'ivhnpdbu', 'setup', 'new', 'w', 'bzekndcu', 'ivhnpdbu'] processed_text: ['setup', 'new', 'w', 'bzekndcu', 'ivhnpdbu', 'setup', 'new', 'w', 'bzekndcu', 'ivhnpdbu'] list_processed_text: [['setup'], ['new'], ['w'], ['bzekndcu'], ['ivhnpdbu'], ['setup'], ['new'], ['w'], ['bzekndcu'], ['ivhnpdbu']] k: 7669 len: <class 'list'> Data: ['setup', 'laptop', 'r', 'sandstrahlger', 'und', 'roboworker', 'qidgvtwa', 'qvbutayx', 'setuplaptop', 'r', 'sandstrahlger', 'und', 'roboworker', 'qidgvtwa', 'qvbutayx'] processed_text: ['setup', 'laptop', 'r', 'sandstrahlger', 'und', 'roboworker', 'qidgvtwa', 'qvbutayx', 'setuplaptop', 'r', 'sandstrahlger', 'und', 'roboworker', 'qidgvtwa', 'qvbutayx'] list_processed_text: [['setup'], ['laptop'], ['r'], ['sandstrahlger'], ['und'], ['roboworker'], ['qidgvtwa'], ['qvbutayx'], ['setuplaptop'], ['r'], ['sandstrahlger'], ['und'], ['roboworker'], ['qidgvtwa'], ['qvbutayx']] k: 7670 len: <class 'list'> Data: ['cellphone', 'loudspeaker', 'microphone', 'defective', 'disturbed', 'extension', 'handset', 'gigaset', 'sl', 'loudspeaker', 'microphone', 'scratch', 'stop', 'time'] processed_text: ['cellphone', 'loudspeaker', 'microphone', 'defective', 'disturbed', 'extension', 'handset', 'gigaset', 'sl', 'loudspeaker', 'microphone', 'scratch', 'stop', 'time'] list_processed_text: [['cellphone'], ['loudspeaker'], ['microphone'], ['defective'], ['disturbed'], ['extension'], ['handset'], ['gigaset'], ['sl'], ['loudspeaker'], ['microphone'], ['scratch'], ['stop'], ['time']] k: 7671 len: <class 'list'> Data: ['please', 'help', 'hi', 'want', 'know', 'run', 'report', 'finance', 'app', 'regarding', 'report', 'allocation', 'key', 'cost', 'center', 'allocated', 'different', 'bu', 'please', 'help'] processed_text: ['please', 'help', 'hi', 'want', 'know', 'run', 'report', 'finance', 'app', 'regarding', 'report', 'allocation', 'key', 'cost', 'center', 'allocated', 'different', 'bu', 'please', 'help'] list_processed_text: [['please'], ['help'], ['hi'], ['want'], ['know'], ['run'], ['report'], ['finance'], ['app'], ['regarding'], ['report'], ['allocation'], ['key'], ['cost'], ['center'], ['allocated'], ['different'], ['bu'], ['please'], ['help']] k: 7672 len: <class 'list'> Data: ['unable', 'upload', 'engineering', 'tool', 'dear', 'sir', 'unable', 'upload', 'engineering', 'tool', 'error', 'showing', 'connected', 'server', 'application', 'show', 'connected', 'status', 'please', 'see', 'screen', 'shot', 'ref', 'best'] processed_text: ['unable', 'upload', 'engineering', 'tool', 'dear', 'sir', 'unable', 'upload', 'engineering', 'tool', 'error', 'showing', 'connected', 'server', 'application', 'show', 'connected', 'status', 'please', 'see', 'screen', 'shot', 'ref', 'best'] list_processed_text: [['unable'], ['upload'], ['engineering'], ['tool'], ['dear'], ['sir'], ['unable'], ['upload'], ['engineering'], ['tool'], ['error'], ['showing'], ['connected'], ['server'], ['application'], ['show'], ['connected'], ['status'], ['please'], ['see'], ['screen'], ['shot'], ['ref'], ['best']] k: 7673 len: <class 'list'> Data: ['password', 'work', 'say', 'account', 'disabled', 'password', 'work', 'say', 'account', 'disabled'] processed_text: ['password', 'work', 'say', 'account', 'disabled', 'password', 'work', 'say', 'account', 'disabled'] list_processed_text: [['password'], ['work'], ['say'], ['account'], ['disabled'], ['password'], ['work'], ['say'], ['account'], ['disabled']] k: 7674 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7675 len: <class 'list'> Data: ['vendor', 'payment', 'bank', 'hi', 'pradtheyp', 'nathyresh', 'effect', 'tuesday', 'ie', 'propose', 'make', 'vendor', 'payment', 'bank', 'order', 'facilitate', 'process', 'requested', 'make', 'following', 'change', 'vendor', 'master', 'domestic', 'vendor', 'list', 'enclosed', 'house', 'bank', 'id', 'changed', 'itelephony', 'softwarei', 'bank', 'bank', 'amerirtca', 'method', 'payment', 'w', 'e', 'mail', 'address', 'updated', 'correspondence', 'internet', 'id', 'change', 'made', 'please', 'confirm', 'initiate', 'first', 'payment', 'vendor', 'bank'] processed_text: ['vendor', 'payment', 'bank', 'hi', 'pradtheyp', 'nathyresh', 'effect', 'tuesday', 'ie', 'propose', 'make', 'vendor', 'payment', 'bank', 'order', 'facilitate', 'process', 'requested', 'make', 'following', 'change', 'vendor', 'master', 'domestic', 'vendor', 'list', 'enclosed', 'house', 'bank', 'id', 'changed', 'itelephony', 'softwarei', 'bank', 'bank', 'amerirtca', 'method', 'payment', 'w', 'e', 'mail', 'address', 'updated', 'correspondence', 'internet', 'id', 'change', 'made', 'please', 'confirm', 'initiate', 'first', 'payment', 'vendor', 'bank'] list_processed_text: [['vendor'], ['payment'], ['bank'], ['hi'], ['pradtheyp'], ['nathyresh'], ['effect'], ['tuesday'], ['ie'], ['propose'], ['make'], ['vendor'], ['payment'], ['bank'], ['order'], ['facilitate'], ['process'], ['requested'], ['make'], ['following'], ['change'], ['vendor'], ['master'], ['domestic'], ['vendor'], ['list'], ['enclosed'], ['house'], ['bank'], ['id'], ['changed'], ['itelephony'], ['softwarei'], ['bank'], ['bank'], ['amerirtca'], ['method'], ['payment'], ['w'], ['e'], ['mail'], ['address'], ['updated'], ['correspondence'], ['internet'], ['id'], ['change'], ['made'], ['please'], ['confirm'], ['initiate'], ['first'], ['payment'], ['vendor'], ['bank']] k: 7676 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7677 len: <class 'list'> Data: ['problem', 'calling', 'skype', 'dear', 'sir', 'facing', 'problem', 'individual', 'calling', 'well', 'attending', 'meeting', 'skype', 'whenever', 'trying', 'connect', 'coming', 'responding', 'skype', 'app', 'getting', 'closed', 'signed', 'request', 'pl', 'resolve', 'company', 'ftgvlneh', 'aitsgqwo', 'asst', 'mngr', 'sale', 'north', 'msg'] processed_text: ['problem', 'calling', 'skype', 'dear', 'sir', 'facing', 'problem', 'individual', 'calling', 'well', 'attending', 'meeting', 'skype', 'whenever', 'trying', 'connect', 'coming', 'responding', 'skype', 'app', 'getting', 'closed', 'signed', 'request', 'pl', 'resolve', 'company', 'ftgvlneh', 'aitsgqwo', 'asst', 'mngr', 'sale', 'north', 'msg'] list_processed_text: [['problem'], ['calling'], ['skype'], ['dear'], ['sir'], ['facing'], ['problem'], ['individual'], ['calling'], ['well'], ['attending'], ['meeting'], ['skype'], ['whenever'], ['trying'], ['connect'], ['coming'], ['responding'], ['skype'], ['app'], ['getting'], ['closed'], ['signed'], ['request'], ['pl'], ['resolve'], ['company'], ['ftgvlneh'], ['aitsgqwo'], ['asst'], ['mngr'], ['sale'], ['north'], ['msg']] k: 7678 len: <class 'list'> Data: ['erp', 'routing', 'logic', 'missing', 'infrastrcture', 'npr', 'form', 'pls', 'add', 'data', 'zsd', 'determine', 'logic', 'region', 'apac', 'csd', 'ap', 'xz', 'custom', 'solution', 'earth', 'cutting', 'germany', 'csd', 'na', 'bdc', 'bdc', 'usa', 'custom', 'solution', 'australia', 'csd', 'au', 'drum', 'drum', 'job', 'australia', 'poland', 'eng', 'emea', 'pz', 'poland', 'quote', 'order', 'eng', 'programdnty', 'eng', 'amerirtcas', 'csd', 'na', 'bdc', 'bdc', 'usa', 'custom', 'solution', 'south', 'africa', 'csd', 'emea', 'sa', 'south', 'africa', 'purchasing'] processed_text: ['erp', 'routing', 'logic', 'missing', 'infrastrcture', 'npr', 'form', 'pls', 'add', 'data', 'zsd', 'determine', 'logic', 'region', 'apac', 'csd', 'ap', 'xz', 'custom', 'solution', 'earth', 'cutting', 'germany', 'csd', 'na', 'bdc', 'bdc', 'usa', 'custom', 'solution', 'australia', 'csd', 'au', 'drum', 'drum', 'job', 'australia', 'poland', 'eng', 'emea', 'pz', 'poland', 'quote', 'order', 'eng', 'programdnty', 'eng', 'amerirtcas', 'csd', 'na', 'bdc', 'bdc', 'usa', 'custom', 'solution', 'south', 'africa', 'csd', 'emea', 'sa', 'south', 'africa', 'purchasing'] list_processed_text: [['erp'], ['routing'], ['logic'], ['missing'], ['infrastrcture'], ['npr'], ['form'], ['pls'], ['add'], ['data'], ['zsd'], ['determine'], ['logic'], ['region'], ['apac'], ['csd'], ['ap'], ['xz'], ['custom'], ['solution'], ['earth'], ['cutting'], ['germany'], ['csd'], ['na'], ['bdc'], ['bdc'], ['usa'], ['custom'], ['solution'], ['australia'], ['csd'], ['au'], ['drum'], ['drum'], ['job'], ['australia'], ['poland'], ['eng'], ['emea'], ['pz'], ['poland'], ['quote'], ['order'], ['eng'], ['programdnty'], ['eng'], ['amerirtcas'], ['csd'], ['na'], ['bdc'], ['bdc'], ['usa'], ['custom'], ['solution'], ['south'], ['africa'], ['csd'], ['emea'], ['sa'], ['south'], ['africa'], ['purchasing']] k: 7679 len: <class 'list'> Data: ['incorrect', 'tax', 'code', 'mm', 'hello', 'understand', 'order', 'booking', 'team', 'booking', 'order', 'since', 'yesterday', 'come', 'across', 'many', 'mm', 'tax', 'rate', 'material', 'country', 'jivp', 'jivc', 'csr', 'name', 'prod', 'hierarchy', 'chandmt', 'tswwah', 'chandmt', 'tpsshru', 'chandmt', 'tswwah', 'chandmt', 'tpsshru', 'list', 'item', 'tax', 'rate', 'given', 'present', 'booking', 'order', 'correct', 'tax', 'rate', 'oa', 'request', 'assistance', 'resolving', 'top', 'priority', 'put', 'hold', 'invoicing'] processed_text: ['incorrect', 'tax', 'code', 'mm', 'hello', 'understand', 'order', 'booking', 'team', 'booking', 'order', 'since', 'yesterday', 'come', 'across', 'many', 'mm', 'tax', 'rate', 'material', 'country', 'jivp', 'jivc', 'csr', 'name', 'prod', 'hierarchy', 'chandmt', 'tswwah', 'chandmt', 'tpsshru', 'chandmt', 'tswwah', 'chandmt', 'tpsshru', 'list', 'item', 'tax', 'rate', 'given', 'present', 'booking', 'order', 'correct', 'tax', 'rate', 'oa', 'request', 'assistance', 'resolving', 'top', 'priority', 'put', 'hold', 'invoicing'] list_processed_text: [['incorrect'], ['tax'], ['code'], ['mm'], ['hello'], ['understand'], ['order'], ['booking'], ['team'], ['booking'], ['order'], ['since'], ['yesterday'], ['come'], ['across'], ['many'], ['mm'], ['tax'], ['rate'], ['material'], ['country'], ['jivp'], ['jivc'], ['csr'], ['name'], ['prod'], ['hierarchy'], ['chandmt'], ['tswwah'], ['chandmt'], ['tpsshru'], ['chandmt'], ['tswwah'], ['chandmt'], ['tpsshru'], ['list'], ['item'], ['tax'], ['rate'], ['given'], ['present'], ['booking'], ['order'], ['correct'], ['tax'], ['rate'], ['oa'], ['request'], ['assistance'], ['resolving'], ['top'], ['priority'], ['put'], ['hold'], ['invoicing']] k: 7680 len: <class 'list'> Data: ['need', 'help', 'reset', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'reset', 'password', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['need', 'help', 'reset', 'password', 'password', 'management', 'tool', 'password', 'manager', 'need', 'help', 'reset', 'password', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['need'], ['help'], ['reset'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['need'], ['help'], ['reset'], ['password'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 7681 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc']] k: 7682 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'full'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'full', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'full'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['full']] k: 7683 len: <class 'list'> Data: ['account', 'lokced', 'erp', 'sid', 'account', 'lokced', 'erp', 'sid'] processed_text: ['account', 'lokced', 'erp', 'sid', 'account', 'lokced', 'erp', 'sid'] list_processed_text: [['account'], ['lokced'], ['erp'], ['sid'], ['account'], ['lokced'], ['erp'], ['sid']] k: 7684 len: <class 'list'> Data: ['recall', 'ticket', 'comment', 'added', 'franhtyu', 'liu', 'would', 'like', 'recall', 'message', 'ticket', 'comment', 'added', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] processed_text: ['recall', 'ticket', 'comment', 'added', 'franhtyu', 'liu', 'would', 'like', 'recall', 'message', 'ticket', 'comment', 'added', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language'] list_processed_text: [['recall'], ['ticket'], ['comment'], ['added'], ['franhtyu'], ['liu'], ['would'], ['like'], ['recall'], ['message'], ['ticket'], ['comment'], ['added'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language']] k: 7685 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf']] k: 7686 len: <class 'list'> Data: ['issue', 'bex', 'business', 'client', 'dear', 'sir', 'madam', 'able', 'access', 'bex', 'well', 'business', 'client', 'pl', 'rectify', 'immediately', 'urgent'] processed_text: ['issue', 'bex', 'business', 'client', 'dear', 'sir', 'madam', 'able', 'access', 'bex', 'well', 'business', 'client', 'pl', 'rectify', 'immediately', 'urgent'] list_processed_text: [['issue'], ['bex'], ['business'], ['client'], ['dear'], ['sir'], ['madam'], ['able'], ['access'], ['bex'], ['well'], ['business'], ['client'], ['pl'], ['rectify'], ['immediately'], ['urgent']] k: 7687 len: <class 'list'> Data: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] processed_text: ['account', 'locked', 'ad', 'account', 'locked', 'ad'] list_processed_text: [['account'], ['locked'], ['ad'], ['account'], ['locked'], ['ad']] k: 7688 len: <class 'list'> Data: ['required', 'gb', 'additional', 'memory', 'drive', 'server', 'hostname', 'please', 'check', 'attachment', 'required', 'gb', 'additional', 'memory', 'drive', 'server', 'hostname', 'please', 'check', 'attachment'] processed_text: ['required', 'gb', 'additional', 'memory', 'drive', 'server', 'hostname', 'please', 'check', 'attachment', 'required', 'gb', 'additional', 'memory', 'drive', 'server', 'hostname', 'please', 'check', 'attachment'] list_processed_text: [['required'], ['gb'], ['additional'], ['memory'], ['drive'], ['server'], ['hostname'], ['please'], ['check'], ['attachment'], ['required'], ['gb'], ['additional'], ['memory'], ['drive'], ['server'], ['hostname'], ['please'], ['check'], ['attachment']] k: 7689 len: <class 'list'> Data: ['able', 'login', 'skype', 'able', 'login', 'skype'] processed_text: ['able', 'login', 'skype', 'able', 'login', 'skype'] list_processed_text: [['able'], ['login'], ['skype'], ['able'], ['login'], ['skype']] k: 7690 len: <class 'list'> Data: ['drive', 'access', 'hi', 'team', 'lost', 'access', 'drive', 'computer', 'please', 'see', 'screenshots', 'issue', 'occurring', 'walfgtkek', 'tagsyrhu', 'please', 'arrange', 'access', 'reinstated'] processed_text: ['drive', 'access', 'hi', 'team', 'lost', 'access', 'drive', 'computer', 'please', 'see', 'screenshots', 'issue', 'occurring', 'walfgtkek', 'tagsyrhu', 'please', 'arrange', 'access', 'reinstated'] list_processed_text: [['drive'], ['access'], ['hi'], ['team'], ['lost'], ['access'], ['drive'], ['computer'], ['please'], ['see'], ['screenshots'], ['issue'], ['occurring'], ['walfgtkek'], ['tagsyrhu'], ['please'], ['arrange'], ['access'], ['reinstated']] k: 7691 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'secondary', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'secondary', 'circuit', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['secondary'], ['circuit'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7692 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7693 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7694 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7695 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7696 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7697 len: <class 'list'> Data: ['unable', 'access', 'email', 'unable', 'access', 'email'] processed_text: ['unable', 'access', 'email', 'unable', 'access', 'email'] list_processed_text: [['unable'], ['access'], ['email'], ['unable'], ['access'], ['email']] k: 7698 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] processed_text: ['abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn', 'abended', 'job', 'job', 'scheduler', 'hr', 'tooldcvcgenratn'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn'], ['abended'], ['job'], ['job'], ['scheduler'], ['hr'], ['tooldcvcgenratn']] k: 7699 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7700 len: <class 'list'> Data: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'value', 'modific', 'counter', 'document', 'supply', 'chain'] processed_text: ['unable', 'create', 'delivery', 'please', 'provide', 'following', 'order', 'number', 'material', 'item', 'number', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'value', 'modific', 'counter', 'document', 'supply', 'chain'] list_processed_text: [['unable'], ['create'], ['delivery'], ['please'], ['provide'], ['following'], ['order'], ['number'], ['material'], ['item'], ['number'], ['warehouse'], ['location'], ['plant'], ['issue'], ['description'], ['error'], ['message'], ['value'], ['modific'], ['counter'], ['document'], ['supply'], ['chain']] k: 7701 len: <class 'list'> Data: ['erp', 'distributor', 'tool', 'company', 'center', 'customer', 'able', 'place', 'transaction', 'erp', 'distributor', 'tool', 'company', 'center', 'customer', 'able', 'place', 'transaction', 'customer', 'service', 'able', 'place', 'transaction', 'ecc'] processed_text: ['erp', 'distributor', 'tool', 'company', 'center', 'customer', 'able', 'place', 'transaction', 'erp', 'distributor', 'tool', 'company', 'center', 'customer', 'able', 'place', 'transaction', 'customer', 'service', 'able', 'place', 'transaction', 'ecc'] list_processed_text: [['erp'], ['distributor'], ['tool'], ['company'], ['center'], ['customer'], ['able'], ['place'], ['transaction'], ['erp'], ['distributor'], ['tool'], ['company'], ['center'], ['customer'], ['able'], ['place'], ['transaction'], ['customer'], ['service'], ['able'], ['place'], ['transaction'], ['ecc']] k: 7702 len: <class 'list'> Data: ['md', 'display', 'stock', 'locking', 'create', 'delivery', 'min', 'hr', 'close', 'window', 'still', 'didnt', 'process', 'window', 'locked', 'screenshots', 'spinning', 'circle'] processed_text: ['md', 'display', 'stock', 'locking', 'create', 'delivery', 'min', 'hr', 'close', 'window', 'still', 'didnt', 'process', 'window', 'locked', 'screenshots', 'spinning', 'circle'] list_processed_text: [['md'], ['display'], ['stock'], ['locking'], ['create'], ['delivery'], ['min'], ['hr'], ['close'], ['window'], ['still'], ['didnt'], ['process'], ['window'], ['locked'], ['screenshots'], ['spinning'], ['circle']] k: 7703 len: <class 'list'> Data: ['erp', 'user', 'id', 'vaugtyghtl', 'issue', 'erp', 'location', 'usa', 'user', 'affected', 'system', 'erp', 'sid', 'erp', 'production', 'issue', 'clocking', 'contact', 'server', 'name', 'hostname', 'transaction', 'md'] processed_text: ['erp', 'user', 'id', 'vaugtyghtl', 'issue', 'erp', 'location', 'usa', 'user', 'affected', 'system', 'erp', 'sid', 'erp', 'production', 'issue', 'clocking', 'contact', 'server', 'name', 'hostname', 'transaction', 'md'] list_processed_text: [['erp'], ['user'], ['id'], ['vaugtyghtl'], ['issue'], ['erp'], ['location'], ['usa'], ['user'], ['affected'], ['system'], ['erp'], ['sid'], ['erp'], ['production'], ['issue'], ['clocking'], ['contact'], ['server'], ['name'], ['hostname'], ['transaction'], ['md']] k: 7704 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'requesting', 'email', 'personal', 'iphone'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation', 'name', 'mikhghytr', 'karaffa', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'requesting', 'email', 'personal', 'iphone'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation'], ['name'], ['mikhghytr'], ['karaffa'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['requesting'], ['email'], ['personal'], ['iphone']] k: 7705 len: <class 'list'> Data: ['erp', 'production', 'possible', 'case', 'ot', 'order', 'ot', 'job', 'work', 'ot', 'job', 'cannot', 'processed', 'delivery'] processed_text: ['erp', 'production', 'possible', 'case', 'ot', 'order', 'ot', 'job', 'work', 'ot', 'job', 'cannot', 'processed', 'delivery'] list_processed_text: [['erp'], ['production'], ['possible'], ['case'], ['ot'], ['order'], ['ot'], ['job'], ['work'], ['ot'], ['job'], ['cannot'], ['processed'], ['delivery']] k: 7706 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7707 len: <class 'list'> Data: ['outage', 'erp', 'sid', 'outage', 'erp', 'sid'] processed_text: ['outage', 'erp', 'sid', 'outage', 'erp', 'sid'] list_processed_text: [['outage'], ['erp'], ['sid'], ['outage'], ['erp'], ['sid']] k: 7708 len: <class 'list'> Data: ['german', 'call', 'german', 'call'] processed_text: ['german', 'call', 'german', 'call'] list_processed_text: [['german'], ['call'], ['german'], ['call']] k: 7709 len: <class 'list'> Data: ['totalteamsales', 'sproc', 'assigning', 'direct', 'team', 'revenue', 'employee', 'totalteamsales', 'sproc', 'assigning', 'direct', 'team', 'revenue', 'employee'] processed_text: ['totalteamsales', 'sproc', 'assigning', 'direct', 'team', 'revenue', 'employee', 'totalteamsales', 'sproc', 'assigning', 'direct', 'team', 'revenue', 'employee'] list_processed_text: [['totalteamsales'], ['sproc'], ['assigning'], ['direct'], ['team'], ['revenue'], ['employee'], ['totalteamsales'], ['sproc'], ['assigning'], ['direct'], ['team'], ['revenue'], ['employee']] k: 7710 len: <class 'list'> Data: ['skype', 'show', 'online', 'noticed', 'received', 'email', 'message', 'skype', 'business', 'even', 'line', 'uacyltoe', 'hxgaycze', 'turned', 'pc', 'smartphone', 'pc', 'colleague', 'show', 'inactive', 'away', 'people', 'send', 'message'] processed_text: ['skype', 'show', 'online', 'noticed', 'received', 'email', 'message', 'skype', 'business', 'even', 'line', 'uacyltoe', 'hxgaycze', 'turned', 'pc', 'smartphone', 'pc', 'colleague', 'show', 'inactive', 'away', 'people', 'send', 'message'] list_processed_text: [['skype'], ['show'], ['online'], ['noticed'], ['received'], ['email'], ['message'], ['skype'], ['business'], ['even'], ['line'], ['uacyltoe'], ['hxgaycze'], ['turned'], ['pc'], ['smartphone'], ['pc'], ['colleague'], ['show'], ['inactive'], ['away'], ['people'], ['send'], ['message']] k: 7711 len: <class 'list'> Data: ['need', 'ticket', 'zmm', 'stock', 'transfer', 'programdnty', 'zmm', 'stock', 'transfer', 'processing', 'eternal', 'circle', 'franhtyu', 'rebalancing', 'completing', 'dqplrwoy', 'cutpwjie', 'supply', 'chain', 'planner'] processed_text: ['need', 'ticket', 'zmm', 'stock', 'transfer', 'programdnty', 'zmm', 'stock', 'transfer', 'processing', 'eternal', 'circle', 'franhtyu', 'rebalancing', 'completing', 'dqplrwoy', 'cutpwjie', 'supply', 'chain', 'planner'] list_processed_text: [['need'], ['ticket'], ['zmm'], ['stock'], ['transfer'], ['programdnty'], ['zmm'], ['stock'], ['transfer'], ['processing'], ['eternal'], ['circle'], ['franhtyu'], ['rebalancing'], ['completing'], ['dqplrwoy'], ['cutpwjie'], ['supply'], ['chain'], ['planner']] k: 7712 len: <class 'list'> Data: ['install', 'printer', 'maintenance', 'area', 'install', 'printer', 'maintenance', 'area'] processed_text: ['install', 'printer', 'maintenance', 'area', 'install', 'printer', 'maintenance', 'area'] list_processed_text: [['install'], ['printer'], ['maintenance'], ['area'], ['install'], ['printer'], ['maintenance'], ['area']] k: 7713 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'sid', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'yes', 'erp', 'slow', 'one', 'transaction', 'impacted', 'yes', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'hostname', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'four', 'user', 'usa', 'application', 'running', 'slow', 'erp', 'sid', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'determine', 'network', 'problem', 'erp', 'sid', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'yes', 'erp', 'slow', 'one', 'transaction', 'impacted', 'yes', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'hostname', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'yes', 'four', 'user', 'usa', 'application', 'running', 'slow', 'erp', 'sid', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['determine'], ['network'], ['problem'], ['erp'], ['sid'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['yes'], ['erp'], ['slow'], ['one'], ['transaction'], ['impacted'], ['yes'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['hostname'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['yes'], ['four'], ['user'], ['usa'], ['application'], ['running'], ['slow'], ['erp'], ['sid'], ['access'], ['data'], ['file'], ['server'], ['comment'], ['issue'], ['system']] k: 7714 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'usa', 'user', 'id', 'ad', 'dinkifgtrl', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'sid', 'erp', 'production', 'server', 'name', 'hostname', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'quote', 'order', 'va', 'va', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'sale', 'per', 'robhyertyj', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'yes', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred', 'attached', 'user', 'name', 'robhyertyj', 'dinfgrtyukins', 'contact'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'usa', 'user', 'id', 'ad', 'dinkifgtrl', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'sid', 'erp', 'production', 'server', 'name', 'hostname', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'quote', 'order', 'va', 'va', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'sale', 'per', 'robhyertyj', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'yes', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred', 'attached', 'user', 'name', 'robhyertyj', 'dinfgrtyukins', 'contact'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['please'], ['provide'], ['detail'], ['template'], ['multiple'], ['application'], ['impacted'], ['please'], ['use'], ['quick'], ['ticket'], ['template'], ['operation'], ['folder'], ['site'], ['location'], ['usa'], ['user'], ['id'], ['ad'], ['dinkifgtrl'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['sid'], ['erp'], ['production'], ['server'], ['name'], ['hostname'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['quote'], ['order'], ['va'], ['va'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['sale'], ['per'], ['robhyertyj'], ['issue'], ['replicated'], ['support'], ['group'], ['user'], ['seeing'], ['yes'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred'], ['attached'], ['user'], ['name'], ['robhyertyj'], ['dinfgrtyukins'], ['contact']] k: 7715 len: <class 'list'> Data: ['check', 'security', 'ethic', 'collaboration', 'platform', 'page', 'hi', 'please', 'check', 'security', 'ethic', 'collaboration', 'platform', 'page', 'trying', 'upload', 'file', 'procedure', 'category', 'folder', 'able', 'upload', 'noname', 'category', 'reason', 'cannot', 'upload', 'procedure', 'suspect', 'security', 'setting', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] processed_text: ['check', 'security', 'ethic', 'collaboration', 'platform', 'page', 'hi', 'please', 'check', 'security', 'ethic', 'collaboration', 'platform', 'page', 'trying', 'upload', 'file', 'procedure', 'category', 'folder', 'able', 'upload', 'noname', 'category', 'reason', 'cannot', 'upload', 'procedure', 'suspect', 'security', 'setting', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys'] list_processed_text: [['check'], ['security'], ['ethic'], ['collaboration'], ['platform'], ['page'], ['hi'], ['please'], ['check'], ['security'], ['ethic'], ['collaboration'], ['platform'], ['page'], ['trying'], ['upload'], ['file'], ['procedure'], ['category'], ['folder'], ['able'], ['upload'], ['noname'], ['category'], ['reason'], ['cannot'], ['upload'], ['procedure'], ['suspect'], ['security'], ['setting'], ['mikhghytr'], ['wafglhdrhjop'], ['sr'], ['manager'], ['global'], ['ethic'], ['compliance'], ['programdntys']] k: 7716 len: <class 'list'> Data: ['problem', 'hi', 'try', 'submit', 'discount', 'form', 'get', 'error', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] processed_text: ['problem', 'hi', 'try', 'submit', 'discount', 'form', 'get', 'error', 'please', 'advise', 'vkzwafuh', 'tcjnuswg', 'cmp', 'sr', 'application', 'eng'] list_processed_text: [['problem'], ['hi'], ['try'], ['submit'], ['discount'], ['form'], ['get'], ['error'], ['please'], ['advise'], ['vkzwafuh'], ['tcjnuswg'], ['cmp'], ['sr'], ['application'], ['eng']] k: 7717 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7718 len: <class 'list'> Data: ['site', 'contact', 'reported', 'circuit', 'outage', 'south', 'amerirtca', 'santiago', 'south', 'amerirtca', 'reported', 'today', 'minute', 'dmvpn', 'working', 'contacted', 'local', 'isp', 'confirmed', 'internet', 'circuit', 'working', 'fine', 'could', 'please', 'investigate', 'log', 'router', 'let', 'u', 'know', 'finding', 'surprised', 'datacenter', 'team', 'contacted', 'u', 'issue'] processed_text: ['site', 'contact', 'reported', 'circuit', 'outage', 'south', 'amerirtca', 'santiago', 'south', 'amerirtca', 'reported', 'today', 'minute', 'dmvpn', 'working', 'contacted', 'local', 'isp', 'confirmed', 'internet', 'circuit', 'working', 'fine', 'could', 'please', 'investigate', 'log', 'router', 'let', 'u', 'know', 'finding', 'surprised', 'datacenter', 'team', 'contacted', 'u', 'issue'] list_processed_text: [['site'], ['contact'], ['reported'], ['circuit'], ['outage'], ['south'], ['amerirtca'], ['santiago'], ['south'], ['amerirtca'], ['reported'], ['today'], ['minute'], ['dmvpn'], ['working'], ['contacted'], ['local'], ['isp'], ['confirmed'], ['internet'], ['circuit'], ['working'], ['fine'], ['could'], ['please'], ['investigate'], ['log'], ['router'], ['let'], ['u'], ['know'], ['finding'], ['surprised'], ['datacenter'], ['team'], ['contacted'], ['u'], ['issue']] k: 7719 len: <class 'list'> Data: ['circuit', 'outage', 'apac', 'fengapac', 'company', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'apac', 'fengapac', 'company', 'vpn', 'circuit', 'pm', 'et', 'site', 'primary', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['apac'], ['fengapac'], ['company'], ['vpn'], ['circuit'], ['pm'], ['et'], ['site'], ['primary'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7720 len: <class 'list'> Data: ['unable', 'login', 'sid', 'using', 'erp', 'gui', 'hi', 'unable', 'login', 'sid', 'today', 'see', 'error', 'shown', 'screenshots', 'request', 'help', 'earliest', 'since', 'trying', 'uacyltoe', 'hxgaycze', 'something', 'related', 'engineering', 'tool'] processed_text: ['unable', 'login', 'sid', 'using', 'erp', 'gui', 'hi', 'unable', 'login', 'sid', 'today', 'see', 'error', 'shown', 'screenshots', 'request', 'help', 'earliest', 'since', 'trying', 'uacyltoe', 'hxgaycze', 'something', 'related', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['sid'], ['using'], ['erp'], ['gui'], ['hi'], ['unable'], ['login'], ['sid'], ['today'], ['see'], ['error'], ['shown'], ['screenshots'], ['request'], ['help'], ['earliest'], ['since'], ['trying'], ['uacyltoe'], ['hxgaycze'], ['something'], ['related'], ['engineering'], ['tool']] k: 7721 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7722 len: <class 'list'> Data: ['power', 'outage', 'india', 'india', 'site', 'hard', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['power', 'outage', 'india', 'india', 'site', 'hard', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['power'], ['outage'], ['india'], ['india'], ['site'], ['hard'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7723 len: <class 'list'> Data: ['programdnty', 'erp', 'loading', 'programdnty', 'erp', 'loading'] processed_text: ['programdnty', 'erp', 'loading', 'programdnty', 'erp', 'loading'] list_processed_text: [['programdnty'], ['erp'], ['loading'], ['programdnty'], ['erp'], ['loading']] k: 7724 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] processed_text: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['blank'], ['call'], ['loud'], ['noise']] k: 7725 len: <class 'list'> Data: ['license', 'query', 'hello', 'please', 'arrange', 'mr', 'de', 'gracia', 'fernandez', 'ghjkzalez', 'k', 'access', 'payroll', 'get', 'approval'] processed_text: ['license', 'query', 'hello', 'please', 'arrange', 'mr', 'de', 'gracia', 'fernandez', 'ghjkzalez', 'k', 'access', 'payroll', 'get', 'approval'] list_processed_text: [['license'], ['query'], ['hello'], ['please'], ['arrange'], ['mr'], ['de'], ['gracia'], ['fernandez'], ['ghjkzalez'], ['k'], ['access'], ['payroll'], ['get'], ['approval']] k: 7726 len: <class 'list'> Data: ['lhqsm', 'ka', 'hfyujqti', 'jdcbiezx', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'lhqsm', 'ka', 'hfyujqti', 'jdcbiezx', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['lhqsm', 'ka', 'hfyujqti', 'jdcbiezx', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'lhqsm', 'ka', 'hfyujqti', 'jdcbiezx', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['lhqsm'], ['ka'], ['hfyujqti'], ['jdcbiezx'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['lhqsm'], ['ka'], ['hfyujqti'], ['jdcbiezx'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7727 len: <class 'list'> Data: ['npc', 'please', 'refer', 'screenshot', 'npc', 'mrp', 'type', 'incorrect', 'error'] processed_text: ['npc', 'please', 'refer', 'screenshot', 'npc', 'mrp', 'type', 'incorrect', 'error'] list_processed_text: [['npc'], ['please'], ['refer'], ['screenshot'], ['npc'], ['mrp'], ['type'], ['incorrect'], ['error']] k: 7728 len: <class 'list'> Data: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'corporate', 'user', 'id', 'ad', 'prohgtyarb', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'workflow', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'quote', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'sale', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred', 'stuck', 'workflow', 'try', 'go', 'say', 'cannot', 'save'] processed_text: ['application', 'response', 'time', 'network', 'resource', 'work', 'normally', 'please', 'provide', 'detail', 'template', 'multiple', 'application', 'impacted', 'please', 'use', 'quick', 'ticket', 'template', 'operation', 'folder', 'site', 'location', 'corporate', 'user', 'id', 'ad', 'prohgtyarb', 'system', 'seeing', 'performance', 'problem', 'please', 'list', 'g', 'crm', 'erp', 'bw', 'bobj', 'workflow', 'transaction', 'slow', 'g', 'va', 'create', 'order', 'quote', 'area', 'belongs', 'g', 'sale', 'finance', 'markhtyeting', 'etc', 'sale', 'issue', 'replicated', 'support', 'group', 'user', 'seeing', 'please', 'attach', 'relevant', 'screenshots', 'exact', 'time', 'issue', 'occurred', 'stuck', 'workflow', 'try', 'go', 'say', 'cannot', 'save'] list_processed_text: [['application'], ['response'], ['time'], ['network'], ['resource'], ['work'], ['normally'], ['please'], ['provide'], ['detail'], ['template'], ['multiple'], ['application'], ['impacted'], ['please'], ['use'], ['quick'], ['ticket'], ['template'], ['operation'], ['folder'], ['site'], ['location'], ['corporate'], ['user'], ['id'], ['ad'], ['prohgtyarb'], ['system'], ['seeing'], ['performance'], ['problem'], ['please'], ['list'], ['g'], ['crm'], ['erp'], ['bw'], ['bobj'], ['workflow'], ['transaction'], ['slow'], ['g'], ['va'], ['create'], ['order'], ['quote'], ['area'], ['belongs'], ['g'], ['sale'], ['finance'], ['markhtyeting'], ['etc'], ['sale'], ['issue'], ['replicated'], ['support'], ['group'], ['user'], ['seeing'], ['please'], ['attach'], ['relevant'], ['screenshots'], ['exact'], ['time'], ['issue'], ['occurred'], ['stuck'], ['workflow'], ['try'], ['go'], ['say'], ['cannot'], ['save']] k: 7729 len: <class 'list'> Data: ['major', 'problem', 'inventory', 'need', 'sev', 'heavily', 'limit', 'amount', 'production', 'put', 'floor', 'also', 'multiple', 'people', 'department', 'affected', 'includes', 'many', 'additional', 'man', 'hour', 'issue', 'oracle', 'powder', 'charging', 'system', 'automatically', 'issuing', 'material', 'production', 'order', 'erp', 'use', 'many', 'extra', 'man', 'hour', 'manually', 'entering', 'data', 'erp', 'also', 'problem', 'dramdntyatically', 'decrease', 'efficiency', 'accuracy', 'issuing', 'production', 'order'] processed_text: ['major', 'problem', 'inventory', 'need', 'sev', 'heavily', 'limit', 'amount', 'production', 'put', 'floor', 'also', 'multiple', 'people', 'department', 'affected', 'includes', 'many', 'additional', 'man', 'hour', 'issue', 'oracle', 'powder', 'charging', 'system', 'automatically', 'issuing', 'material', 'production', 'order', 'erp', 'use', 'many', 'extra', 'man', 'hour', 'manually', 'entering', 'data', 'erp', 'also', 'problem', 'dramdntyatically', 'decrease', 'efficiency', 'accuracy', 'issuing', 'production', 'order'] list_processed_text: [['major'], ['problem'], ['inventory'], ['need'], ['sev'], ['heavily'], ['limit'], ['amount'], ['production'], ['put'], ['floor'], ['also'], ['multiple'], ['people'], ['department'], ['affected'], ['includes'], ['many'], ['additional'], ['man'], ['hour'], ['issue'], ['oracle'], ['powder'], ['charging'], ['system'], ['automatically'], ['issuing'], ['material'], ['production'], ['order'], ['erp'], ['use'], ['many'], ['extra'], ['man'], ['hour'], ['manually'], ['entering'], ['data'], ['erp'], ['also'], ['problem'], ['dramdntyatically'], ['decrease'], ['efficiency'], ['accuracy'], ['issuing'], ['production'], ['order']] k: 7730 len: <class 'list'> Data: ['unable', 'log', 'window', 'unable', 'log', 'window'] processed_text: ['unable', 'log', 'window', 'unable', 'log', 'window'] list_processed_text: [['unable'], ['log'], ['window'], ['unable'], ['log'], ['window']] k: 7731 len: <class 'list'> Data: ['usa', 'ar', 'pbx', 'rqxaudix', 'company', 'com', 'since', 'usa', 'ar', 'pbx', 'rqxaudix', 'company', 'com', 'since'] processed_text: ['usa', 'ar', 'pbx', 'rqxaudix', 'company', 'com', 'since', 'usa', 'ar', 'pbx', 'rqxaudix', 'company', 'com', 'since'] list_processed_text: [['usa'], ['ar'], ['pbx'], ['rqxaudix'], ['company'], ['com'], ['since'], ['usa'], ['ar'], ['pbx'], ['rqxaudix'], ['company'], ['com'], ['since']] k: 7732 len: <class 'list'> Data: ['access', 'security', 'group', 'gshn', 'summary', 'please', 'add', 'gshn', 'mail', 'group'] processed_text: ['access', 'security', 'group', 'gshn', 'summary', 'please', 'add', 'gshn', 'mail', 'group'] list_processed_text: [['access'], ['security'], ['group'], ['gshn'], ['summary'], ['please'], ['add'], ['gshn'], ['mail'], ['group']] k: 7733 len: <class 'list'> Data: ['plug', 'responding', 'error', 'erp', 'plug', 'responding', 'error', 'erp'] processed_text: ['plug', 'responding', 'error', 'erp', 'plug', 'responding', 'error', 'erp'] list_processed_text: [['plug'], ['responding'], ['error'], ['erp'], ['plug'], ['responding'], ['error'], ['erp']] k: 7734 len: <class 'list'> Data: ['error', 'message', 'pthsqroz', 'moedyanvess', 'erp', 'pthsqroz', 'moedyanvess', 'error', 'message', 'object', 'notification', 'business', 'operation', 'entered', 'user', 'master'] processed_text: ['error', 'message', 'pthsqroz', 'moedyanvess', 'erp', 'pthsqroz', 'moedyanvess', 'error', 'message', 'object', 'notification', 'business', 'operation', 'entered', 'user', 'master'] list_processed_text: [['error'], ['message'], ['pthsqroz'], ['moedyanvess'], ['erp'], ['pthsqroz'], ['moedyanvess'], ['error'], ['message'], ['object'], ['notification'], ['business'], ['operation'], ['entered'], ['user'], ['master']] k: 7735 len: <class 'list'> Data: ['outlook', 'go', 'responding', 'outlook', 'go', 'responding'] processed_text: ['outlook', 'go', 'responding', 'outlook', 'go', 'responding'] list_processed_text: [['outlook'], ['go'], ['responding'], ['outlook'], ['go'], ['responding']] k: 7736 len: <class 'list'> Data: ['user', 'wanted', 'reset', 'internet', 'explorer', 'user', 'wanted', 'reset', 'internet', 'explorer'] processed_text: ['user', 'wanted', 'reset', 'internet', 'explorer', 'user', 'wanted', 'reset', 'internet', 'explorer'] list_processed_text: [['user'], ['wanted'], ['reset'], ['internet'], ['explorer'], ['user'], ['wanted'], ['reset'], ['internet'], ['explorer']] k: 7737 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7738 len: <class 'list'> Data: ['erp', 'sid', 'erp', 'production', 'account', 'locked', 'erp', 'sid', 'erp', 'production', 'account', 'locked'] processed_text: ['erp', 'sid', 'erp', 'production', 'account', 'locked', 'erp', 'sid', 'erp', 'production', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['erp'], ['production'], ['account'], ['locked'], ['erp'], ['sid'], ['erp'], ['production'], ['account'], ['locked']] k: 7739 len: <class 'list'> Data: ['transfer', 'information', 'old', 'new', 'laptop', 'transfer', 'information', 'old', 'new', 'laptop'] processed_text: ['transfer', 'information', 'old', 'new', 'laptop', 'transfer', 'information', 'old', 'new', 'laptop'] list_processed_text: [['transfer'], ['information'], ['old'], ['new'], ['laptop'], ['transfer'], ['information'], ['old'], ['new'], ['laptop']] k: 7740 len: <class 'list'> Data: ['print', 'color', 'color', 'printer', 'working'] processed_text: ['print', 'color', 'color', 'printer', 'working'] list_processed_text: [['print'], ['color'], ['color'], ['printer'], ['working']] k: 7741 len: <class 'list'> Data: ['hostname', 'unable', 'reach', 'destination', 'server', 'offline'] processed_text: ['hostname', 'unable', 'reach', 'destination', 'server', 'offline'] list_processed_text: [['hostname'], ['unable'], ['reach'], ['destination'], ['server'], ['offline']] k: 7742 len: <class 'list'> Data: ['zpress', 'save', 'data', 'material', 'zpress', 'save', 'data', 'material', 'pl', 'check', 'order'] processed_text: ['zpress', 'save', 'data', 'material', 'zpress', 'save', 'data', 'material', 'pl', 'check', 'order'] list_processed_text: [['zpress'], ['save'], ['data'], ['material'], ['zpress'], ['save'], ['data'], ['material'], ['pl'], ['check'], ['order']] k: 7743 len: <class 'list'> Data: ['join', 'skype', 'meeting', 'join', 'skype', 'meeting'] processed_text: ['join', 'skype', 'meeting', 'join', 'skype', 'meeting'] list_processed_text: [['join'], ['skype'], ['meeting'], ['join'], ['skype'], ['meeting']] k: 7744 len: <class 'list'> Data: ['set', 'pc', 'please', 'forward', 'smpijawb', 'eawkpgqf', 'alicona', 'messger', 'converted,', 'pc', 'r', 'sdnemlwy', 'dsbmgonk', 'must', 'set', 'apl', 'juchaomy', 'gaxrulwo', 'av', 'abstechprogramdntym', 'date', 'august', 'employee', 'come', 'back'] processed_text: ['set', 'pc', 'please', 'forward', 'smpijawb', 'eawkpgqf', 'alicona', 'messger', 'converted,', 'pc', 'r', 'sdnemlwy', 'dsbmgonk', 'must', 'set', 'apl', 'juchaomy', 'gaxrulwo', 'av', 'abstechprogramdntym', 'date', 'august', 'employee', 'come', 'back'] list_processed_text: [['set'], ['pc'], ['please'], ['forward'], ['smpijawb'], ['eawkpgqf'], ['alicona'], ['messger'], ['converted,'], ['pc'], ['r'], ['sdnemlwy'], ['dsbmgonk'], ['must'], ['set'], ['apl'], ['juchaomy'], ['gaxrulwo'], ['av'], ['abstechprogramdntym'], ['date'], ['august'], ['employee'], ['come'], ['back']] k: 7745 len: <class 'list'> Data: ['move', 'workplace', 'please', 'forward', 'smpijawb', 'eawkpgqf', 'alicona', 'messger', 'must', 'changed', 'av', 'abstechprogramdntym', 'hall', 'former', 'valve', 'el', 'control', 'kw'] processed_text: ['move', 'workplace', 'please', 'forward', 'smpijawb', 'eawkpgqf', 'alicona', 'messger', 'must', 'changed', 'av', 'abstechprogramdntym', 'hall', 'former', 'valve', 'el', 'control', 'kw'] list_processed_text: [['move'], ['workplace'], ['please'], ['forward'], ['smpijawb'], ['eawkpgqf'], ['alicona'], ['messger'], ['must'], ['changed'], ['av'], ['abstechprogramdntym'], ['hall'], ['former'], ['valve'], ['el'], ['control'], ['kw']] k: 7746 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'skype', 'unable', 'launch', 'outlook', 'skype'] processed_text: ['unable', 'launch', 'outlook', 'skype', 'unable', 'launch', 'outlook', 'skype'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['skype'], ['unable'], ['launch'], ['outlook'], ['skype']] k: 7747 len: <class 'list'> Data: ['access', 'drive', 'pollaurid', 'w', 'hello', 'help', 'put', 'ticket', 'access', 'quality', 'assurance', 'drive', 'employee', 'uqjbkydr', 'bsqofdlx', 'username', 'whalep', 'aerp', 'copied', 'owner', 'drive', 'eozqgims', 'rbmosifh', 'quality', 'manager', 'permission', 'reason'] processed_text: ['access', 'drive', 'pollaurid', 'w', 'hello', 'help', 'put', 'ticket', 'access', 'quality', 'assurance', 'drive', 'employee', 'uqjbkydr', 'bsqofdlx', 'username', 'whalep', 'aerp', 'copied', 'owner', 'drive', 'eozqgims', 'rbmosifh', 'quality', 'manager', 'permission', 'reason'] list_processed_text: [['access'], ['drive'], ['pollaurid'], ['w'], ['hello'], ['help'], ['put'], ['ticket'], ['access'], ['quality'], ['assurance'], ['drive'], ['employee'], ['uqjbkydr'], ['bsqofdlx'], ['username'], ['whalep'], ['aerp'], ['copied'], ['owner'], ['drive'], ['eozqgims'], ['rbmosifh'], ['quality'], ['manager'], ['permission'], ['reason']] k: 7748 len: <class 'list'> Data: ['flash', 'player', 'incompatibility', 'flash', 'player', 'incompatibility'] processed_text: ['flash', 'player', 'incompatibility', 'flash', 'player', 'incompatibility'] list_processed_text: [['flash'], ['player'], ['incompatibility'], ['flash'], ['player'], ['incompatibility']] k: 7749 len: <class 'list'> Data: ['audio', 'device', 'installed', 'audio', 'device', 'installed'] processed_text: ['audio', 'device', 'installed', 'audio', 'device', 'installed'] list_processed_text: [['audio'], ['device'], ['installed'], ['audio'], ['device'], ['installed']] k: 7750 len: <class 'list'> Data: ['wifi', 'working', 'wifi', 'working'] processed_text: ['wifi', 'working', 'wifi', 'working'] list_processed_text: [['wifi'], ['working'], ['wifi'], ['working']] k: 7751 len: <class 'list'> Data: ['need', 'help', 'connecting', 'skype', 'meeting', 'coming', 'error', 'need', 'help', 'connecting', 'skype', 'meeting', 'coming', 'error'] processed_text: ['need', 'help', 'connecting', 'skype', 'meeting', 'coming', 'error', 'need', 'help', 'connecting', 'skype', 'meeting', 'coming', 'error'] list_processed_text: [['need'], ['help'], ['connecting'], ['skype'], ['meeting'], ['coming'], ['error'], ['need'], ['help'], ['connecting'], ['skype'], ['meeting'], ['coming'], ['error']] k: 7752 len: <class 'list'> Data: ['unable', 'open', 'pdf', 'file', 'unable', 'open', 'pdf', 'file', 'user', 'system'] processed_text: ['unable', 'open', 'pdf', 'file', 'unable', 'open', 'pdf', 'file', 'user', 'system'] list_processed_text: [['unable'], ['open'], ['pdf'], ['file'], ['unable'], ['open'], ['pdf'], ['file'], ['user'], ['system']] k: 7753 len: <class 'list'> Data: ['able', 'use', 'command', 'field', 'hello', 'able', 'use', 'command', 'field', 'default', 'taking', 'mc', 'pl', 'help'] processed_text: ['able', 'use', 'command', 'field', 'hello', 'able', 'use', 'command', 'field', 'default', 'taking', 'mc', 'pl', 'help'] list_processed_text: [['able'], ['use'], ['command'], ['field'], ['hello'], ['able'], ['use'], ['command'], ['field'], ['default'], ['taking'], ['mc'], ['pl'], ['help']] k: 7754 len: <class 'list'> Data: ['microsoft', 'net', 'framdntyework', 'missing', 'dear', 'please', 'open', 'ticket', 'address', 'shortly'] processed_text: ['microsoft', 'net', 'framdntyework', 'missing', 'dear', 'please', 'open', 'ticket', 'address', 'shortly'] list_processed_text: [['microsoft'], ['net'], ['framdntyework'], ['missing'], ['dear'], ['please'], ['open'], ['ticket'], ['address'], ['shortly']] k: 7755 len: <class 'list'> Data: ['netweaver', 'start', 'receive', 'error', 'message', 'trying', 'start', 'business', 'client', 'microsoft', 'net', 'framdntyework', 'installed', 'upgraded', 'knovel', 'software', 'last', 'night', 'receiving', 'message', 'ext', 'ldil'] processed_text: ['netweaver', 'start', 'receive', 'error', 'message', 'trying', 'start', 'business', 'client', 'microsoft', 'net', 'framdntyework', 'installed', 'upgraded', 'knovel', 'software', 'last', 'night', 'receiving', 'message', 'ext', 'ldil'] list_processed_text: [['netweaver'], ['start'], ['receive'], ['error'], ['message'], ['trying'], ['start'], ['business'], ['client'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['upgraded'], ['knovel'], ['software'], ['last'], ['night'], ['receiving'], ['message'], ['ext'], ['ldil']] k: 7756 len: <class 'list'> Data: ['please', 'send', 'link', 'password', 'management', 'tool', 'password', 'manager', 'please', 'send', 'link', 'password', 'management', 'tool', 'password', 'manager'] processed_text: ['please', 'send', 'link', 'password', 'management', 'tool', 'password', 'manager', 'please', 'send', 'link', 'password', 'management', 'tool', 'password', 'manager'] list_processed_text: [['please'], ['send'], ['link'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['please'], ['send'], ['link'], ['password'], ['management'], ['tool'], ['password'], ['manager']] k: 7757 len: <class 'list'> Data: ['skype', 'work', 'zlnxswvp', 'ptmzsbhk', 'nwfodmhc', 'exurcwkm', 'sab', 'wg', 'skype', 'start', 'please', 'support', 'kind', 'regards,', 'child'] processed_text: ['skype', 'work', 'zlnxswvp', 'ptmzsbhk', 'nwfodmhc', 'exurcwkm', 'sab', 'wg', 'skype', 'start', 'please', 'support', 'kind', 'regards,', 'child'] list_processed_text: [['skype'], ['work'], ['zlnxswvp'], ['ptmzsbhk'], ['nwfodmhc'], ['exurcwkm'], ['sab'], ['wg'], ['skype'], ['start'], ['please'], ['support'], ['kind'], ['regards,'], ['child']] k: 7758 len: <class 'list'> Data: ['headset', 'connecting', 'plantronic', 'headset', 'beshryuwire', 'thecomputer', 'speaker', 'computer', 'turned', 'turned', 'note', 'issue', 'already', 'solved'] processed_text: ['headset', 'connecting', 'plantronic', 'headset', 'beshryuwire', 'thecomputer', 'speaker', 'computer', 'turned', 'turned', 'note', 'issue', 'already', 'solved'] list_processed_text: [['headset'], ['connecting'], ['plantronic'], ['headset'], ['beshryuwire'], ['thecomputer'], ['speaker'], ['computer'], ['turned'], ['turned'], ['note'], ['issue'], ['already'], ['solved']] k: 7759 len: <class 'list'> Data: ['data', 'transmission', 'hello', 'apparently', 'problem', 'transfer', 'stamping', 'time', 'eu', 'tool', 'erp', 'digit', 'personnel', 'number', 'see', 'friendly', 'gr', 'weszfyok', 'fbadnjhu', 'axesnghb', 'cyzuomxa', 'sent', 'thursday', 'july', 'zslugaxq', 'dtwlrofu', 'jjgp', 'zslugaxq', 'dtwwlrofu', 'regarding', 'temporary', 'employee', 'lochthowe', 'andre', 'hello', 'everyone', 'since', 'then,', 'mr', 'lochthowe', 'stamping', 'card', 'eu', 'tool', 'since', 'time', 'data', 'transferred', 'erp', 'something', 'wrong', 'card', 'master', 'number', 'u', 'first', 'employee', 'eight-digit', 'master', 'number', 'may', 'please', 'check', 'kind', 'regard', 'best'] processed_text: ['data', 'transmission', 'hello', 'apparently', 'problem', 'transfer', 'stamping', 'time', 'eu', 'tool', 'erp', 'digit', 'personnel', 'number', 'see', 'friendly', 'gr', 'weszfyok', 'fbadnjhu', 'axesnghb', 'cyzuomxa', 'sent', 'thursday', 'july', 'zslugaxq', 'dtwlrofu', 'jjgp', 'zslugaxq', 'dtwwlrofu', 'regarding', 'temporary', 'employee', 'lochthowe', 'andre', 'hello', 'everyone', 'since', 'then,', 'mr', 'lochthowe', 'stamping', 'card', 'eu', 'tool', 'since', 'time', 'data', 'transferred', 'erp', 'something', 'wrong', 'card', 'master', 'number', 'u', 'first', 'employee', 'eight-digit', 'master', 'number', 'may', 'please', 'check', 'kind', 'regard', 'best'] list_processed_text: [['data'], ['transmission'], ['hello'], ['apparently'], ['problem'], ['transfer'], ['stamping'], ['time'], ['eu'], ['tool'], ['erp'], ['digit'], ['personnel'], ['number'], ['see'], ['friendly'], ['gr'], ['weszfyok'], ['fbadnjhu'], ['axesnghb'], ['cyzuomxa'], ['sent'], ['thursday'], ['july'], ['zslugaxq'], ['dtwlrofu'], ['jjgp'], ['zslugaxq'], ['dtwwlrofu'], ['regarding'], ['temporary'], ['employee'], ['lochthowe'], ['andre'], ['hello'], ['everyone'], ['since'], ['then,'], ['mr'], ['lochthowe'], ['stamping'], ['card'], ['eu'], ['tool'], ['since'], ['time'], ['data'], ['transferred'], ['erp'], ['something'], ['wrong'], ['card'], ['master'], ['number'], ['u'], ['first'], ['employee'], ['eight-digit'], ['master'], ['number'], ['may'], ['please'], ['check'], ['kind'], ['regard'], ['best']] k: 7760 len: <class 'list'> Data: ['bobj', 'webi', 'job', 'running', 'bobj', 'webi', 'job', 'running', 'please', 'investigate', 'earliest'] processed_text: ['bobj', 'webi', 'job', 'running', 'bobj', 'webi', 'job', 'running', 'please', 'investigate', 'earliest'] list_processed_text: [['bobj'], ['webi'], ['job'], ['running'], ['bobj'], ['webi'], ['job'], ['running'], ['please'], ['investigate'], ['earliest']] k: 7761 len: <class 'list'> Data: ['international', 'payment', 'rejected', 'payment', 'method', 'l', 'von', 'pradyhtueep', 'yyufs', 'gesendet', 'ubiqcrvy', 'mxjcnqfs', 'nathyresh', 'gayhtjula', 'erp', 'fico', 'ebusaar', 'munnangi', 'iszaguwe', 'bdfzamjs', 'pkjhmfgc', 'zuvjqgwa', 'joacrhfz', 'ctrbjusz', 'maryhtutina', 'bauuyternfeyt', 'betreff', 'zahllauf', 'nicht', 'ausgef', 'hrt', 'international', 'payment', 'rejected', 'jartnine', 'looking', 'development', 'change', 'implemented', 'recently', 'get', 'back', 'tomorrow', 'sorry', 'inconvenience'] processed_text: ['international', 'payment', 'rejected', 'payment', 'method', 'l', 'von', 'pradyhtueep', 'yyufs', 'gesendet', 'ubiqcrvy', 'mxjcnqfs', 'nathyresh', 'gayhtjula', 'erp', 'fico', 'ebusaar', 'munnangi', 'iszaguwe', 'bdfzamjs', 'pkjhmfgc', 'zuvjqgwa', 'joacrhfz', 'ctrbjusz', 'maryhtutina', 'bauuyternfeyt', 'betreff', 'zahllauf', 'nicht', 'ausgef', 'hrt', 'international', 'payment', 'rejected', 'jartnine', 'looking', 'development', 'change', 'implemented', 'recently', 'get', 'back', 'tomorrow', 'sorry', 'inconvenience'] list_processed_text: [['international'], ['payment'], ['rejected'], ['payment'], ['method'], ['l'], ['von'], ['pradyhtueep'], ['yyufs'], ['gesendet'], ['ubiqcrvy'], ['mxjcnqfs'], ['nathyresh'], ['gayhtjula'], ['erp'], ['fico'], ['ebusaar'], ['munnangi'], ['iszaguwe'], ['bdfzamjs'], ['pkjhmfgc'], ['zuvjqgwa'], ['joacrhfz'], ['ctrbjusz'], ['maryhtutina'], ['bauuyternfeyt'], ['betreff'], ['zahllauf'], ['nicht'], ['ausgef'], ['hrt'], ['international'], ['payment'], ['rejected'], ['jartnine'], ['looking'], ['development'], ['change'], ['implemented'], ['recently'], ['get'], ['back'], ['tomorrow'], ['sorry'], ['inconvenience']] k: 7762 len: <class 'list'> Data: ['laptop', 'doesnt', 'stay', 'power', 'light', 'stay', 'minute', 'go', 'laptop', 'doesnt', 'stay', 'power', 'light', 'stay', 'minute', 'go', 'bmhxwvys', 'tdmgolwn', 'pm', 'nwfodmhc', 'exurcwkm', 'zrpemyab', 'xvzwcbha', 'tru', 'fw', 'damaged', 'laptop', 'dear', 'sir', 'damage', 'dell', 'laptop', 'lit', 'minute', 'see', 'attachment', 'thank', 'response', 'cooperation', 'best'] processed_text: ['laptop', 'doesnt', 'stay', 'power', 'light', 'stay', 'minute', 'go', 'laptop', 'doesnt', 'stay', 'power', 'light', 'stay', 'minute', 'go', 'bmhxwvys', 'tdmgolwn', 'pm', 'nwfodmhc', 'exurcwkm', 'zrpemyab', 'xvzwcbha', 'tru', 'fw', 'damaged', 'laptop', 'dear', 'sir', 'damage', 'dell', 'laptop', 'lit', 'minute', 'see', 'attachment', 'thank', 'response', 'cooperation', 'best'] list_processed_text: [['laptop'], ['doesnt'], ['stay'], ['power'], ['light'], ['stay'], ['minute'], ['go'], ['laptop'], ['doesnt'], ['stay'], ['power'], ['light'], ['stay'], ['minute'], ['go'], ['bmhxwvys'], ['tdmgolwn'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['zrpemyab'], ['xvzwcbha'], ['tru'], ['fw'], ['damaged'], ['laptop'], ['dear'], ['sir'], ['damage'], ['dell'], ['laptop'], ['lit'], ['minute'], ['see'], ['attachment'], ['thank'], ['response'], ['cooperation'], ['best']] k: 7763 len: <class 'list'> Data: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] processed_text: ['erp', 'password', 'reset', 'sid', 'erp', 'password', 'reset', 'sid'] list_processed_text: [['erp'], ['password'], ['reset'], ['sid'], ['erp'], ['password'], ['reset'], ['sid']] k: 7764 len: <class 'list'> Data: ['erp', 'log', 'problem', 'hello', 'team', 'log', 'erp', 'password', 'could', 'help', 'issue'] processed_text: ['erp', 'log', 'problem', 'hello', 'team', 'log', 'erp', 'password', 'could', 'help', 'issue'] list_processed_text: [['erp'], ['log'], ['problem'], ['hello'], ['team'], ['log'], ['erp'], ['password'], ['could'], ['help'], ['issue']] k: 7765 len: <class 'list'> Data: ['password', 'reset', 'alert', 'user', 'lafgturie', 'sherwtgyu', 'password', 'reset', 'alert'] processed_text: ['password', 'reset', 'alert', 'user', 'lafgturie', 'sherwtgyu', 'password', 'reset', 'alert'] list_processed_text: [['password'], ['reset'], ['alert'], ['user'], ['lafgturie'], ['sherwtgyu'], ['password'], ['reset'], ['alert']] k: 7766 len: <class 'list'> Data: ['connecting', 'hr', 'tool', 'etime', 'window', 'open', 'nothing', 'populates', 'screen', 'empty', 'screen', 'etime', 'access', 'hr', 'tool', 'portal', 'access', 'single', 'sign', 'working'] processed_text: ['connecting', 'hr', 'tool', 'etime', 'window', 'open', 'nothing', 'populates', 'screen', 'empty', 'screen', 'etime', 'access', 'hr', 'tool', 'portal', 'access', 'single', 'sign', 'working'] list_processed_text: [['connecting'], ['hr'], ['tool'], ['etime'], ['window'], ['open'], ['nothing'], ['populates'], ['screen'], ['empty'], ['screen'], ['etime'], ['access'], ['hr'], ['tool'], ['portal'], ['access'], ['single'], ['sign'], ['working']] k: 7767 len: <class 'list'> Data: ['business', 'card', 'request', 'hello', 'team', 'please', 'arrange', 'business', 'card', 'please', 'find', 'detail', 'let', 'know', 'protocol', 'zqbmgy', 'stuwbacm', 'analyst', 'apps', 'dev', 'maintenance', 'ebus', 'warm'] processed_text: ['business', 'card', 'request', 'hello', 'team', 'please', 'arrange', 'business', 'card', 'please', 'find', 'detail', 'let', 'know', 'protocol', 'zqbmgy', 'stuwbacm', 'analyst', 'apps', 'dev', 'maintenance', 'ebus', 'warm'] list_processed_text: [['business'], ['card'], ['request'], ['hello'], ['team'], ['please'], ['arrange'], ['business'], ['card'], ['please'], ['find'], ['detail'], ['let'], ['know'], ['protocol'], ['zqbmgy'], ['stuwbacm'], ['analyst'], ['apps'], ['dev'], ['maintenance'], ['ebus'], ['warm']] k: 7768 len: <class 'list'> Data: ['remove', 'plant', 'plant', 'assignment', 'sale', 'orgs', 'romania', 'slovakia', 'project', 'related', 'supposed', 'removed', 'immediately', 'uat', 'however', 'missed', 'removing', 'assignment', 'shipment', 'plant', 'assigned', 'uacyltoe', 'hxgayczeing', 'purpose', 'business', 'requirement', 'come', 'future'] processed_text: ['remove', 'plant', 'plant', 'assignment', 'sale', 'orgs', 'romania', 'slovakia', 'project', 'related', 'supposed', 'removed', 'immediately', 'uat', 'however', 'missed', 'removing', 'assignment', 'shipment', 'plant', 'assigned', 'uacyltoe', 'hxgayczeing', 'purpose', 'business', 'requirement', 'come', 'future'] list_processed_text: [['remove'], ['plant'], ['plant'], ['assignment'], ['sale'], ['orgs'], ['romania'], ['slovakia'], ['project'], ['related'], ['supposed'], ['removed'], ['immediately'], ['uat'], ['however'], ['missed'], ['removing'], ['assignment'], ['shipment'], ['plant'], ['assigned'], ['uacyltoe'], ['hxgayczeing'], ['purpose'], ['business'], ['requirement'], ['come'], ['future']] k: 7769 len: <class 'list'> Data: ['business', 'card', 'request', 'hello', 'team', 'please', 'arrange', 'business', 'card', 'please', 'find', 'detail', 'let', 'know', 'protocol', 'zqbmgy', 'stuwbacm', 'analyst', 'apps', 'dev', 'maintenance', 'ebus', 'erp', 'sd', 'warm'] processed_text: ['business', 'card', 'request', 'hello', 'team', 'please', 'arrange', 'business', 'card', 'please', 'find', 'detail', 'let', 'know', 'protocol', 'zqbmgy', 'stuwbacm', 'analyst', 'apps', 'dev', 'maintenance', 'ebus', 'erp', 'sd', 'warm'] list_processed_text: [['business'], ['card'], ['request'], ['hello'], ['team'], ['please'], ['arrange'], ['business'], ['card'], ['please'], ['find'], ['detail'], ['let'], ['know'], ['protocol'], ['zqbmgy'], ['stuwbacm'], ['analyst'], ['apps'], ['dev'], ['maintenance'], ['ebus'], ['erp'], ['sd'], ['warm']] k: 7770 len: <class 'list'> Data: ['due', 'security', 'update', 'kb', 'network', 'connection', 'possible', 'due', 'security', 'update', 'kb', 'network', 'connection', 'possible', 'error', 'message', 'network', 'connection'] processed_text: ['due', 'security', 'update', 'kb', 'network', 'connection', 'possible', 'due', 'security', 'update', 'kb', 'network', 'connection', 'possible', 'error', 'message', 'network', 'connection'] list_processed_text: [['due'], ['security'], ['update'], ['kb'], ['network'], ['connection'], ['possible'], ['due'], ['security'], ['update'], ['kb'], ['network'], ['connection'], ['possible'], ['error'], ['message'], ['network'], ['connection']] k: 7771 len: <class 'list'> Data: ['change', 'license', 'fron', 'k', 'could', 'please', 'change', 'license', 'following', 'employee', 'luifdsts', 'olhryhira', 'cost', 'center', 'pam', 'maertosv', 'krsxguty', 'odqpwsgi', 'soarewer', 'uzavdmoj', 'wrpkolzq', 'alvesdss', 'kgcw', 'isyfngdz', 'machasssg', 'puxqyesm', 'xqathyuz', 'peredrfifj', 'flavio', 'pereira', 'schidrftas', 'maihdlne', 'xodeqlsv', 'vieiresddr', 'dfjbnrem', 'vabqwxlm', 'albussdqp', 'imeytghj', 'lyrikzep', 'larsffar', 'rafaelm', 'lara', 'ribewddwic', 'fhkebpyx', 'tqpermnu', 'carmsswot', 'uvyjpixc', 'kbfcrauw', 'garcisdwr', 'rodrigo', 'fernansdes', 'garcia', 'olivesswc', 'gcbrdkzl', 'oamkcufr', 'placisddwd', 'douglas', 'placido', 'grateful'] processed_text: ['change', 'license', 'fron', 'k', 'could', 'please', 'change', 'license', 'following', 'employee', 'luifdsts', 'olhryhira', 'cost', 'center', 'pam', 'maertosv', 'krsxguty', 'odqpwsgi', 'soarewer', 'uzavdmoj', 'wrpkolzq', 'alvesdss', 'kgcw', 'isyfngdz', 'machasssg', 'puxqyesm', 'xqathyuz', 'peredrfifj', 'flavio', 'pereira', 'schidrftas', 'maihdlne', 'xodeqlsv', 'vieiresddr', 'dfjbnrem', 'vabqwxlm', 'albussdqp', 'imeytghj', 'lyrikzep', 'larsffar', 'rafaelm', 'lara', 'ribewddwic', 'fhkebpyx', 'tqpermnu', 'carmsswot', 'uvyjpixc', 'kbfcrauw', 'garcisdwr', 'rodrigo', 'fernansdes', 'garcia', 'olivesswc', 'gcbrdkzl', 'oamkcufr', 'placisddwd', 'douglas', 'placido', 'grateful'] list_processed_text: [['change'], ['license'], ['fron'], ['k'], ['could'], ['please'], ['change'], ['license'], ['following'], ['employee'], ['luifdsts'], ['olhryhira'], ['cost'], ['center'], ['pam'], ['maertosv'], ['krsxguty'], ['odqpwsgi'], ['soarewer'], ['uzavdmoj'], ['wrpkolzq'], ['alvesdss'], ['kgcw'], ['isyfngdz'], ['machasssg'], ['puxqyesm'], ['xqathyuz'], ['peredrfifj'], ['flavio'], ['pereira'], ['schidrftas'], ['maihdlne'], ['xodeqlsv'], ['vieiresddr'], ['dfjbnrem'], ['vabqwxlm'], ['albussdqp'], ['imeytghj'], ['lyrikzep'], ['larsffar'], ['rafaelm'], ['lara'], ['ribewddwic'], ['fhkebpyx'], ['tqpermnu'], ['carmsswot'], ['uvyjpixc'], ['kbfcrauw'], ['garcisdwr'], ['rodrigo'], ['fernansdes'], ['garcia'], ['olivesswc'], ['gcbrdkzl'], ['oamkcufr'], ['placisddwd'], ['douglas'], ['placido'], ['grateful']] k: 7772 len: <class 'list'> Data: ['hostname', 'kisp', 'ii', 'app', 'server', 'production', 'disk', 'free', 'warning', 'threshold', 'hostname', 'kisp', 'ii', 'app', 'server', 'production', 'disk', 'free', 'warning', 'threshold'] processed_text: ['hostname', 'kisp', 'ii', 'app', 'server', 'production', 'disk', 'free', 'warning', 'threshold', 'hostname', 'kisp', 'ii', 'app', 'server', 'production', 'disk', 'free', 'warning', 'threshold'] list_processed_text: [['hostname'], ['kisp'], ['ii'], ['app'], ['server'], ['production'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['kisp'], ['ii'], ['app'], ['server'], ['production'], ['disk'], ['free'], ['warning'], ['threshold']] k: 7773 len: <class 'list'> Data: ['order', 'cannot', 'printed', 'order', 'printed', 'draw', 'error'] processed_text: ['order', 'cannot', 'printed', 'order', 'printed', 'draw', 'error'] list_processed_text: [['order'], ['cannot'], ['printed'], ['order'], ['printed'], ['draw'], ['error']] k: 7774 len: <class 'list'> Data: ['change', 'erp', 'logon', 'language', 'german', 'english', 'change', 'erp', 'logon', 'language', 'german', 'english'] processed_text: ['change', 'erp', 'logon', 'language', 'german', 'english', 'change', 'erp', 'logon', 'language', 'german', 'english'] list_processed_text: [['change'], ['erp'], ['logon'], ['language'], ['german'], ['english'], ['change'], ['erp'], ['logon'], ['language'], ['german'], ['english']] k: 7775 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'user', 'mertut', 'erp', 'sid', 'password', 'reset', 'user', 'mertut'] processed_text: ['erp', 'sid', 'password', 'reset', 'user', 'mertut', 'erp', 'sid', 'password', 'reset', 'user', 'mertut'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['user'], ['mertut'], ['erp'], ['sid'], ['password'], ['reset'], ['user'], ['mertut']] k: 7776 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7777 len: <class 'list'> Data: ['please', 'reset', 'erp', 'sid', 'password', 'user', 'peilerk', 'thank', 'dv', 'note', 'kind', 'regard'] processed_text: ['please', 'reset', 'erp', 'sid', 'password', 'user', 'peilerk', 'thank', 'dv', 'note', 'kind', 'regard'] list_processed_text: [['please'], ['reset'], ['erp'], ['sid'], ['password'], ['user'], ['peilerk'], ['thank'], ['dv'], ['note'], ['kind'], ['regard']] k: 7778 len: <class 'list'> Data: ['printing', 'hello', 'news', 'issue', 'printing', 'drawing', 'production', 'paper', 'issue', 'solved'] processed_text: ['printing', 'hello', 'news', 'issue', 'printing', 'drawing', 'production', 'paper', 'issue', 'solved'] list_processed_text: [['printing'], ['hello'], ['news'], ['issue'], ['printing'], ['drawing'], ['production'], ['paper'], ['issue'], ['solved']] k: 7779 len: <class 'list'> Data: ['cannot', 'release', 'order', 'print', 'plant', 'sid'] processed_text: ['cannot', 'release', 'order', 'print', 'plant', 'sid'] list_processed_text: [['cannot'], ['release'], ['order'], ['print'], ['plant'], ['sid']] k: 7780 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7781 len: <class 'list'> Data: ['erp', 'sid', 'production', 'order', 'cannot', 'printed', 'error', 'connection', 'system', 'production', 'order', 'interface', 'app', 'fu', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'incorrect', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] processed_text: ['erp', 'sid', 'production', 'order', 'cannot', 'printed', 'error', 'connection', 'system', 'production', 'order', 'interface', 'app', 'fu', 'destination', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'incorrect', 'error', 'opening', 'rfc', 'connection', 'cpic', 'call'] list_processed_text: [['erp'], ['sid'], ['production'], ['order'], ['cannot'], ['printed'], ['error'], ['connection'], ['system'], ['production'], ['order'], ['interface'], ['app'], ['fu'], ['destination'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['fu'], ['incorrect'], ['error'], ['opening'], ['rfc'], ['connection'], ['cpic'], ['call']] k: 7782 len: <class 'list'> Data: ['restore', 'folder', 'stoebtrt', 'hello', 'path', 'folder', 'hostname', 'department', 'lean', 'lean', 'project', 'lean', 'project', 'planted', 'fy', 'file', 'hostname', 'department', 'lean', 'lean', 'project', 'lean', 'project', 'planted', 'fy', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['restore', 'folder', 'stoebtrt', 'hello', 'path', 'folder', 'hostname', 'department', 'lean', 'lean', 'project', 'lean', 'project', 'planted', 'fy', 'file', 'hostname', 'department', 'lean', 'lean', 'project', 'lean', 'project', 'planted', 'fy', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['restore'], ['folder'], ['stoebtrt'], ['hello'], ['path'], ['folder'], ['hostname'], ['department'], ['lean'], ['lean'], ['project'], ['lean'], ['project'], ['planted'], ['fy'], ['file'], ['hostname'], ['department'], ['lean'], ['lean'], ['project'], ['lean'], ['project'], ['planted'], ['fy'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 7783 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf']] k: 7784 len: <class 'list'> Data: ['koenigsee', 'problem', 'printing', 'erp', 'production', 'order', 'interface', 'app', 'error', 'koenigsee', 'problem', 'printing', 'erp', 'production', 'order', 'interface', 'app', 'error'] processed_text: ['koenigsee', 'problem', 'printing', 'erp', 'production', 'order', 'interface', 'app', 'error', 'koenigsee', 'problem', 'printing', 'erp', 'production', 'order', 'interface', 'app', 'error'] list_processed_text: [['koenigsee'], ['problem'], ['printing'], ['erp'], ['production'], ['order'], ['interface'], ['app'], ['error'], ['koenigsee'], ['problem'], ['printing'], ['erp'], ['production'], ['order'], ['interface'], ['app'], ['error']] k: 7785 len: <class 'list'> Data: ['error', 'printer', 'nothing', 'printed', 'anymore', 'error', 'message', 'sincerely'] processed_text: ['error', 'printer', 'nothing', 'printed', 'anymore', 'error', 'message', 'sincerely'] list_processed_text: [['error'], ['printer'], ['nothing'], ['printed'], ['anymore'], ['error'], ['message'], ['sincerely']] k: 7786 len: <class 'list'> Data: ['setup', 'new', 'w', 'chkzbeav', 'ykeilmog', 'setup', 'new', 'w', 'chkzbeav', 'ykeilmog'] processed_text: ['setup', 'new', 'w', 'chkzbeav', 'ykeilmog', 'setup', 'new', 'w', 'chkzbeav', 'ykeilmog'] list_processed_text: [['setup'], ['new'], ['w'], ['chkzbeav'], ['ykeilmog'], ['setup'], ['new'], ['w'], ['chkzbeav'], ['ykeilmog']] k: 7787 len: <class 'list'> Data: ['connection', 'production', 'order', 'interface', 'app', 'fu', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'hello', 'connection', 'plsseald', 'fu', 'server', 'think', 'server', 'print', 'production', 'order', 'germany', 'connection', 'production', 'order', 'interface', 'app', 'fu', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'error', 'rfc', 'connection', 'cpic', 'call'] processed_text: ['connection', 'production', 'order', 'interface', 'app', 'fu', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'hello', 'connection', 'plsseald', 'fu', 'server', 'think', 'server', 'print', 'production', 'order', 'germany', 'connection', 'production', 'order', 'interface', 'app', 'fu', 'production', 'order', 'interface', 'vendor', 'connc', 'fu', 'error', 'rfc', 'connection', 'cpic', 'call'] list_processed_text: [['connection'], ['production'], ['order'], ['interface'], ['app'], ['fu'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['fu'], ['hello'], ['connection'], ['plsseald'], ['fu'], ['server'], ['think'], ['server'], ['print'], ['production'], ['order'], ['germany'], ['connection'], ['production'], ['order'], ['interface'], ['app'], ['fu'], ['production'], ['order'], ['interface'], ['vendor'], ['connc'], ['fu'], ['error'], ['rfc'], ['connection'], ['cpic'], ['call']] k: 7788 len: <class 'list'> Data: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] processed_text: ['problem', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problem', 'erpgui', 'tmqfjard', 'qzhgdoua'] list_processed_text: [['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua'], ['problem'], ['erpgui'], ['tmqfjard'], ['qzhgdoua']] k: 7789 len: <class 'list'> Data: ['setup', 'new', 'w', 'ylhptzmd', 'owslfzqi', 'setup', 'new', 'w', 'ylhptzmd', 'owslfzqi'] processed_text: ['setup', 'new', 'w', 'ylhptzmd', 'owslfzqi', 'setup', 'new', 'w', 'ylhptzmd', 'owslfzqi'] list_processed_text: [['setup'], ['new'], ['w'], ['ylhptzmd'], ['owslfzqi'], ['setup'], ['new'], ['w'], ['ylhptzmd'], ['owslfzqi']] k: 7790 len: <class 'list'> Data: ['setup', 'new', 'w', 'wphqnxly', 'htvrbxmd', 'setup', 'new', 'w', 'wphqnxly', 'htvrbxmd'] processed_text: ['setup', 'new', 'w', 'wphqnxly', 'htvrbxmd', 'setup', 'new', 'w', 'wphqnxly', 'htvrbxmd'] list_processed_text: [['setup'], ['new'], ['w'], ['wphqnxly'], ['htvrbxmd'], ['setup'], ['new'], ['w'], ['wphqnxly'], ['htvrbxmd']] k: 7791 len: <class 'list'> Data: ['barcode', 'scanner', 'defective', 'pifyudbo', 'tagsfbny', 'barcode', 'scanner', 'defective', 'pifyudbo', 'tagsfbny'] processed_text: ['barcode', 'scanner', 'defective', 'pifyudbo', 'tagsfbny', 'barcode', 'scanner', 'defective', 'pifyudbo', 'tagsfbny'] list_processed_text: [['barcode'], ['scanner'], ['defective'], ['pifyudbo'], ['tagsfbny'], ['barcode'], ['scanner'], ['defective'], ['pifyudbo'], ['tagsfbny']] k: 7792 len: <class 'list'> Data: ['business', 'client', 'issue', 'search', 'material', 'code', 'unavailable', 'seraching', 'result', 'via', 'specification'] processed_text: ['business', 'client', 'issue', 'search', 'material', 'code', 'unavailable', 'seraching', 'result', 'via', 'specification'] list_processed_text: [['business'], ['client'], ['issue'], ['search'], ['material'], ['code'], ['unavailable'], ['seraching'], ['result'], ['via'], ['specification']] k: 7793 len: <class 'list'> Data: ['elengineering', 'toolonic', 'ethic', 'employee', 'cajdwtgq', 'breqgycv', 'training', 'course', 'activated', 'hello', 'team', 'good', 'morning', 'please', 'help', 'add', 'ethic', 'training', 'course', 'csr', 'member', 'cajdwtgq', 'breqgycv', 'daria', 'working', 'company', 'since', 'despite', 'request', 'since', 'joined', 'company', 'never', 'received', 'training', 'course', 'invitation', 'required', 'completed', 'employee', 'answered', 'question', 'request', 'info', 'required', 'please', 'let', 'u', 'know'] processed_text: ['elengineering', 'toolonic', 'ethic', 'employee', 'cajdwtgq', 'breqgycv', 'training', 'course', 'activated', 'hello', 'team', 'good', 'morning', 'please', 'help', 'add', 'ethic', 'training', 'course', 'csr', 'member', 'cajdwtgq', 'breqgycv', 'daria', 'working', 'company', 'since', 'despite', 'request', 'since', 'joined', 'company', 'never', 'received', 'training', 'course', 'invitation', 'required', 'completed', 'employee', 'answered', 'question', 'request', 'info', 'required', 'please', 'let', 'u', 'know'] list_processed_text: [['elengineering'], ['toolonic'], ['ethic'], ['employee'], ['cajdwtgq'], ['breqgycv'], ['training'], ['course'], ['activated'], ['hello'], ['team'], ['good'], ['morning'], ['please'], ['help'], ['add'], ['ethic'], ['training'], ['course'], ['csr'], ['member'], ['cajdwtgq'], ['breqgycv'], ['daria'], ['working'], ['company'], ['since'], ['despite'], ['request'], ['since'], ['joined'], ['company'], ['never'], ['received'], ['training'], ['course'], ['invitation'], ['required'], ['completed'], ['employee'], ['answered'], ['question'], ['request'], ['info'], ['required'], ['please'], ['let'], ['u'], ['know']] k: 7794 len: <class 'list'> Data: ['outlook', 'issue', 'yesterday', 'outlook', 'took', 'hour', 'load', 'afterit', 'slow', 'today', 'open', 'outlook', 'outlook', 'issue', 'yesterday', 'outlook', 'took', 'hour', 'load', 'afterit', 'slow', 'today', 'open', 'outlook', 'anymore', 'please', 'check'] processed_text: ['outlook', 'issue', 'yesterday', 'outlook', 'took', 'hour', 'load', 'afterit', 'slow', 'today', 'open', 'outlook', 'outlook', 'issue', 'yesterday', 'outlook', 'took', 'hour', 'load', 'afterit', 'slow', 'today', 'open', 'outlook', 'anymore', 'please', 'check'] list_processed_text: [['outlook'], ['issue'], ['yesterday'], ['outlook'], ['took'], ['hour'], ['load'], ['afterit'], ['slow'], ['today'], ['open'], ['outlook'], ['outlook'], ['issue'], ['yesterday'], ['outlook'], ['took'], ['hour'], ['load'], ['afterit'], ['slow'], ['today'], ['open'], ['outlook'], ['anymore'], ['please'], ['check']] k: 7795 len: <class 'list'> Data: ['dell', 'dell', 'adapter', 'working'] processed_text: ['dell', 'dell', 'adapter', 'working'] list_processed_text: [['dell'], ['dell'], ['adapter'], ['working']] k: 7796 len: <class 'list'> Data: ['pc', 'booting', 'pc', 'booting', 'user', 'already', 'spoken', 'steffen', 'computer', 'name', 'eagw', 'ext'] processed_text: ['pc', 'booting', 'pc', 'booting', 'user', 'already', 'spoken', 'steffen', 'computer', 'name', 'eagw', 'ext'] list_processed_text: [['pc'], ['booting'], ['pc'], ['booting'], ['user'], ['already'], ['spoken'], ['steffen'], ['computer'], ['name'], ['eagw'], ['ext']] k: 7797 len: <class 'list'> Data: ['read', 'write', 'access', 'oe', 'drive', 'rth', 'hello', 'help', 'team', 'pls', 'arrange', 'read', 'write', 'access', 'dveuglzp', 'mqetjxwp', 'following', 'oe', 'drive', 'team', 'eagcldaten', 'team'] processed_text: ['read', 'write', 'access', 'oe', 'drive', 'rth', 'hello', 'help', 'team', 'pls', 'arrange', 'read', 'write', 'access', 'dveuglzp', 'mqetjxwp', 'following', 'oe', 'drive', 'team', 'eagcldaten', 'team'] list_processed_text: [['read'], ['write'], ['access'], ['oe'], ['drive'], ['rth'], ['hello'], ['help'], ['team'], ['pls'], ['arrange'], ['read'], ['write'], ['access'], ['dveuglzp'], ['mqetjxwp'], ['following'], ['oe'], ['drive'], ['team'], ['eagcldaten'], ['team']] k: 7798 len: <class 'list'> Data: ['business', 'client', 'issue', 'specification', 'searching', 'sid', 'returning', 'result', 'work', 'okay', 'sid'] processed_text: ['business', 'client', 'issue', 'specification', 'searching', 'sid', 'returning', 'result', 'work', 'okay', 'sid'] list_processed_text: [['business'], ['client'], ['issue'], ['specification'], ['searching'], ['sid'], ['returning'], ['result'], ['work'], ['okay'], ['sid']] k: 7799 len: <class 'list'> Data: ['issue', 'pricing', 'distributor', 'tool', 'agreed', 'price', 'many', 'distributor', 'given', 'period', 'skus', 'specified', 'pricing', 'condition', 'zcnc', 'erp', 'distributor', 'tool', 'order', 'sold', 'ship', 'combination', 'till', 'flat', 'rate', 'deployment', 'issue', 'today', 'distributor', 'tried', 'book', 'order', 'zcnc', 'pricing', 'condition', 'initial', 'screen', 'show', 'correct', 'price', 'item', 'selected', 'quick', 'order', 'clicked', 'price', 'getting', 'changed', 'list', 'price', 'le', 'standard', 'discount', 'instead', 'retaining', 'zcnc', 'price'] processed_text: ['issue', 'pricing', 'distributor', 'tool', 'agreed', 'price', 'many', 'distributor', 'given', 'period', 'skus', 'specified', 'pricing', 'condition', 'zcnc', 'erp', 'distributor', 'tool', 'order', 'sold', 'ship', 'combination', 'till', 'flat', 'rate', 'deployment', 'issue', 'today', 'distributor', 'tried', 'book', 'order', 'zcnc', 'pricing', 'condition', 'initial', 'screen', 'show', 'correct', 'price', 'item', 'selected', 'quick', 'order', 'clicked', 'price', 'getting', 'changed', 'list', 'price', 'le', 'standard', 'discount', 'instead', 'retaining', 'zcnc', 'price'] list_processed_text: [['issue'], ['pricing'], ['distributor'], ['tool'], ['agreed'], ['price'], ['many'], ['distributor'], ['given'], ['period'], ['skus'], ['specified'], ['pricing'], ['condition'], ['zcnc'], ['erp'], ['distributor'], ['tool'], ['order'], ['sold'], ['ship'], ['combination'], ['till'], ['flat'], ['rate'], ['deployment'], ['issue'], ['today'], ['distributor'], ['tried'], ['book'], ['order'], ['zcnc'], ['pricing'], ['condition'], ['initial'], ['screen'], ['show'], ['correct'], ['price'], ['item'], ['selected'], ['quick'], ['order'], ['clicked'], ['price'], ['getting'], ['changed'], ['list'], ['price'], ['le'], ['standard'], ['discount'], ['instead'], ['retaining'], ['zcnc'], ['price']] k: 7800 len: <class 'list'> Data: ['network', 'outage', 'melbourne', 'rowville', 'site', 'hard', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'phone', 'warehouse', 'tool', 'mail', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'melbourne', 'rowville', 'site', 'hard', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'phone', 'warehouse', 'tool', 'mail', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['melbourne'], ['rowville'], ['site'], ['hard'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['phone'], ['warehouse'], ['tool'], ['mail'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7801 len: <class 'list'> Data: ['desktop', 'notworking', 'desktop', 'connected', 'phone', 'system', 'server', 'room', 'company', 'working', 'please', 'could', 'troubleshoot', 'fix', 'problem'] processed_text: ['desktop', 'notworking', 'desktop', 'connected', 'phone', 'system', 'server', 'room', 'company', 'working', 'please', 'could', 'troubleshoot', 'fix', 'problem'] list_processed_text: [['desktop'], ['notworking'], ['desktop'], ['connected'], ['phone'], ['system'], ['server'], ['room'], ['company'], ['working'], ['please'], ['could'], ['troubleshoot'], ['fix'], ['problem']] k: 7802 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7803 len: <class 'list'> Data: ['power', 'adaptor', 'docking', 'station', 'faulty', 'connect', 'laptop', 'docking', 'station', 'try', 'power', 'encounter', 'attached', 'message', 'confirmed', 'message', 'appear', 'use', 'external', 'adaptor', 'another', 'docking', 'station', 'serial', 'number', 'docking', 'station', 'qad', 'location', 'k'] processed_text: ['power', 'adaptor', 'docking', 'station', 'faulty', 'connect', 'laptop', 'docking', 'station', 'try', 'power', 'encounter', 'attached', 'message', 'confirmed', 'message', 'appear', 'use', 'external', 'adaptor', 'another', 'docking', 'station', 'serial', 'number', 'docking', 'station', 'qad', 'location', 'k'] list_processed_text: [['power'], ['adaptor'], ['docking'], ['station'], ['faulty'], ['connect'], ['laptop'], ['docking'], ['station'], ['try'], ['power'], ['encounter'], ['attached'], ['message'], ['confirmed'], ['message'], ['appear'], ['use'], ['external'], ['adaptor'], ['another'], ['docking'], ['station'], ['serial'], ['number'], ['docking'], ['station'], ['qad'], ['location'], ['k']] k: 7804 len: <class 'list'> Data: ['circuit', 'outage', 'mpls', 'ciruit', 'matlxjgi', 'elrndiuy', 'since', 'et', 'site', 'vpn', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'mpls', 'ciruit', 'matlxjgi', 'elrndiuy', 'since', 'et', 'site', 'vpn', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['mpls'], ['ciruit'], ['matlxjgi'], ['elrndiuy'], ['since'], ['et'], ['site'], ['vpn'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7805 len: <class 'list'> Data: ['login', 'skype', 'change', 'password', 'login', 'skype', 'change', 'password', 'application', 'ok'] processed_text: ['login', 'skype', 'change', 'password', 'login', 'skype', 'change', 'password', 'application', 'ok'] list_processed_text: [['login'], ['skype'], ['change'], ['password'], ['login'], ['skype'], ['change'], ['password'], ['application'], ['ok']] k: 7806 len: <class 'list'> Data: ['thermal', 'warning', 'temperature', 'switch', 'reached', 'red', 'threshold'] processed_text: ['thermal', 'warning', 'temperature', 'switch', 'reached', 'red', 'threshold'] list_processed_text: [['thermal'], ['warning'], ['temperature'], ['switch'], ['reached'], ['red'], ['threshold']] k: 7807 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'request', 'reset', 'microsoft', 'online', 'service', 'password'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password']] k: 7808 len: <class 'list'> Data: ['outlook', 'search', 'issue', 'hi', 'team', 'outlook', 'failing', 'bring', 'email', 'search', 'function', 'tried', 'rebuild', 'indexing', 'fails', 'happening', 'week', 'need', 'able', 'use', 'function'] processed_text: ['outlook', 'search', 'issue', 'hi', 'team', 'outlook', 'failing', 'bring', 'email', 'search', 'function', 'tried', 'rebuild', 'indexing', 'fails', 'happening', 'week', 'need', 'able', 'use', 'function'] list_processed_text: [['outlook'], ['search'], ['issue'], ['hi'], ['team'], ['outlook'], ['failing'], ['bring'], ['email'], ['search'], ['function'], ['tried'], ['rebuild'], ['indexing'], ['fails'], ['happening'], ['week'], ['need'], ['able'], ['use'], ['function']] k: 7809 len: <class 'list'> Data: ['help', 'install', 'symantec', 'computer', 'lpaw', 'hi', 'team', 'need', 'help', 'reinstall', 'antivirus', 'symantec', 'computer', 'lpaw', 'symantec', 'working', 'doubt', 'please', 'contact'] processed_text: ['help', 'install', 'symantec', 'computer', 'lpaw', 'hi', 'team', 'need', 'help', 'reinstall', 'antivirus', 'symantec', 'computer', 'lpaw', 'symantec', 'working', 'doubt', 'please', 'contact'] list_processed_text: [['help'], ['install'], ['symantec'], ['computer'], ['lpaw'], ['hi'], ['team'], ['need'], ['help'], ['reinstall'], ['antivirus'], ['symantec'], ['computer'], ['lpaw'], ['symantec'], ['working'], ['doubt'], ['please'], ['contact']] k: 7810 len: <class 'list'> Data: ['dell', 'pc', 'boot', 'failure', 'urgent', 'dell', 'pc', 'boot', 'failure', 'try', 'restart', 'pc', 'multiple', 'time', 'system', 'reboots', 'automatically', 'loop', 'finally', 'got', 'pc', 'running', 'seems', 'issue', 'pc', 'pc', 'shut', 'computer', 'name', 'lmsl', 'o', 'win', 'contact'] processed_text: ['dell', 'pc', 'boot', 'failure', 'urgent', 'dell', 'pc', 'boot', 'failure', 'try', 'restart', 'pc', 'multiple', 'time', 'system', 'reboots', 'automatically', 'loop', 'finally', 'got', 'pc', 'running', 'seems', 'issue', 'pc', 'pc', 'shut', 'computer', 'name', 'lmsl', 'o', 'win', 'contact'] list_processed_text: [['dell'], ['pc'], ['boot'], ['failure'], ['urgent'], ['dell'], ['pc'], ['boot'], ['failure'], ['try'], ['restart'], ['pc'], ['multiple'], ['time'], ['system'], ['reboots'], ['automatically'], ['loop'], ['finally'], ['got'], ['pc'], ['running'], ['seems'], ['issue'], ['pc'], ['pc'], ['shut'], ['computer'], ['name'], ['lmsl'], ['o'], ['win'], ['contact']] k: 7811 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7812 len: <class 'list'> Data: ['new', 'employee', 'mikhghytr', 'karaffa', 'need', 'new', 'desk', 'phone', 'new', 'employee', 'mikhghytr', 'karaffa', 'need', 'new', 'desk', 'phone', 'phone'] processed_text: ['new', 'employee', 'mikhghytr', 'karaffa', 'need', 'new', 'desk', 'phone', 'new', 'employee', 'mikhghytr', 'karaffa', 'need', 'new', 'desk', 'phone', 'phone'] list_processed_text: [['new'], ['employee'], ['mikhghytr'], ['karaffa'], ['need'], ['new'], ['desk'], ['phone'], ['new'], ['employee'], ['mikhghytr'], ['karaffa'], ['need'], ['new'], ['desk'], ['phone'], ['phone']] k: 7813 len: <class 'list'> Data: ['global', 'erp', 'crm', 'appears', 'erp', 'crm', 'trying', 'send', 'review', 'sale', 'email', 'customer', 'contact', 'global', 'erp', 'crm', 'appears', 'erp', 'crm', 'trying', 'send', 'review', 'sale', 'email', 'customer', 'contact', 'review', 'sale', 'email', 'originally', 'configured', 'would', 'get', 'sent', 'sale', 'employee', 'review', 'sale', 'email', 'never', 'get', 'sent', 'customer', 'contact', 'example', 'refer', 'attached', 'screen', 'shot', 'someone', 'change', 'something', 'please', 'investigate', 'advise', 'aerp'] processed_text: ['global', 'erp', 'crm', 'appears', 'erp', 'crm', 'trying', 'send', 'review', 'sale', 'email', 'customer', 'contact', 'global', 'erp', 'crm', 'appears', 'erp', 'crm', 'trying', 'send', 'review', 'sale', 'email', 'customer', 'contact', 'review', 'sale', 'email', 'originally', 'configured', 'would', 'get', 'sent', 'sale', 'employee', 'review', 'sale', 'email', 'never', 'get', 'sent', 'customer', 'contact', 'example', 'refer', 'attached', 'screen', 'shot', 'someone', 'change', 'something', 'please', 'investigate', 'advise', 'aerp'] list_processed_text: [['global'], ['erp'], ['crm'], ['appears'], ['erp'], ['crm'], ['trying'], ['send'], ['review'], ['sale'], ['email'], ['customer'], ['contact'], ['global'], ['erp'], ['crm'], ['appears'], ['erp'], ['crm'], ['trying'], ['send'], ['review'], ['sale'], ['email'], ['customer'], ['contact'], ['review'], ['sale'], ['email'], ['originally'], ['configured'], ['would'], ['get'], ['sent'], ['sale'], ['employee'], ['review'], ['sale'], ['email'], ['never'], ['get'], ['sent'], ['customer'], ['contact'], ['example'], ['refer'], ['attached'], ['screen'], ['shot'], ['someone'], ['change'], ['something'], ['please'], ['investigate'], ['advise'], ['aerp']] k: 7814 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] processed_text: ['mobile', 'device', 'activation', 'mobile', 'device', 'activation'] list_processed_text: [['mobile'], ['device'], ['activation'], ['mobile'], ['device'], ['activation']] k: 7815 len: <class 'list'> Data: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] processed_text: ['unable', 'install', 'engineering', 'tool', 'unable', 'install', 'engineering', 'tool'] list_processed_text: [['unable'], ['install'], ['engineering'], ['tool'], ['unable'], ['install'], ['engineering'], ['tool']] k: 7816 len: <class 'list'> Data: ['password', 'reset', 'bsopzxhi', 'irfhcgzq', 'password', 'reset', 'bsopzxhi', 'irfhcgzq'] processed_text: ['password', 'reset', 'bsopzxhi', 'irfhcgzq', 'password', 'reset', 'bsopzxhi', 'irfhcgzq'] list_processed_text: [['password'], ['reset'], ['bsopzxhi'], ['irfhcgzq'], ['password'], ['reset'], ['bsopzxhi'], ['irfhcgzq']] k: 7817 len: <class 'list'> Data: ['password', 'hi', 'please', 'reset', 'password', 'sending', 'password', 'log', 'well'] processed_text: ['password', 'hi', 'please', 'reset', 'password', 'sending', 'password', 'log', 'well'] list_processed_text: [['password'], ['hi'], ['please'], ['reset'], ['password'], ['sending'], ['password'], ['log'], ['well']] k: 7818 len: <class 'list'> Data: ['create', 'sso', 'qiyujevw', 'ogadikxv', 'create', 'purchasingupstreamsso', 'ad', 'group', 'qiyujevw', 'ogadikxv', 'wanrtygm', 'samaccountname', 'ad', 'lower', 'case'] processed_text: ['create', 'sso', 'qiyujevw', 'ogadikxv', 'create', 'purchasingupstreamsso', 'ad', 'group', 'qiyujevw', 'ogadikxv', 'wanrtygm', 'samaccountname', 'ad', 'lower', 'case'] list_processed_text: [['create'], ['sso'], ['qiyujevw'], ['ogadikxv'], ['create'], ['purchasingupstreamsso'], ['ad'], ['group'], ['qiyujevw'], ['ogadikxv'], ['wanrtygm'], ['samaccountname'], ['ad'], ['lower'], ['case']] k: 7819 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'michthey', 'olivgtyera', 'id', 'olivgtyemc', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'michthey', 'olivgtyera', 'id', 'olivgtyemc'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'michthey', 'olivgtyera', 'id', 'olivgtyemc', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'michthey', 'olivgtyera', 'id', 'olivgtyemc'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['michthey'], ['olivgtyera'], ['id'], ['olivgtyemc'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['michthey'], ['olivgtyera'], ['id'], ['olivgtyemc']] k: 7820 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7821 len: <class 'list'> Data: ['dynamic', 'crm', 'advanced', 'find', 'ribbon', 'issue', 'ribbon', 'advanced', 'find', 'displaced', 'making', 'difficult', 'query', 'system', 'create', 'view', 'see', 'attached'] processed_text: ['dynamic', 'crm', 'advanced', 'find', 'ribbon', 'issue', 'ribbon', 'advanced', 'find', 'displaced', 'making', 'difficult', 'query', 'system', 'create', 'view', 'see', 'attached'] list_processed_text: [['dynamic'], ['crm'], ['advanced'], ['find'], ['ribbon'], ['issue'], ['ribbon'], ['advanced'], ['find'], ['displaced'], ['making'], ['difficult'], ['query'], ['system'], ['create'], ['view'], ['see'], ['attached']] k: 7822 len: <class 'list'> Data: ['using', 'phone', 'connection', 'intermittent', 'cannot', 'use', 'desk', 'phone', 'call', 'skype', 'meeting', 'cell', 'phone', 'people', 'jc', 'complained', 'thing'] processed_text: ['using', 'phone', 'connection', 'intermittent', 'cannot', 'use', 'desk', 'phone', 'call', 'skype', 'meeting', 'cell', 'phone', 'people', 'jc', 'complained', 'thing'] list_processed_text: [['using'], ['phone'], ['connection'], ['intermittent'], ['cannot'], ['use'], ['desk'], ['phone'], ['call'], ['skype'], ['meeting'], ['cell'], ['phone'], ['people'], ['jc'], ['complained'], ['thing']] k: 7823 len: <class 'list'> Data: ['vpn', 'link', 'vpn', 'link'] processed_text: ['vpn', 'link', 'vpn', 'link'] list_processed_text: [['vpn'], ['link'], ['vpn'], ['link']] k: 7824 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 7825 len: <class 'list'> Data: ['error', 'accessing', 'reporting', 'engineering', 'tool', 'error', 'accessing', 'reporting', 'engineering', 'tool', 'bill', 'would', 'need', 'ticket', 'gso', 'please', 'assign', 'analytics', 'technical', 'team', 'might', 'account', 'magda', 'locked', 'republish', 'using', 'analytics', 'account'] processed_text: ['error', 'accessing', 'reporting', 'engineering', 'tool', 'error', 'accessing', 'reporting', 'engineering', 'tool', 'bill', 'would', 'need', 'ticket', 'gso', 'please', 'assign', 'analytics', 'technical', 'team', 'might', 'account', 'magda', 'locked', 'republish', 'using', 'analytics', 'account'] list_processed_text: [['error'], ['accessing'], ['reporting'], ['engineering'], ['tool'], ['error'], ['accessing'], ['reporting'], ['engineering'], ['tool'], ['bill'], ['would'], ['need'], ['ticket'], ['gso'], ['please'], ['assign'], ['analytics'], ['technical'], ['team'], ['might'], ['account'], ['magda'], ['locked'], ['republish'], ['using'], ['analytics'], ['account']] k: 7826 len: <class 'list'> Data: ['engineering', 'tool', 'permition', 'sign', 'include', 'user', 'id', 'cad', 'user', 'list', 'need', 'access', 'engineering', 'tool', 'however', 'tried', 'logon', 'engineering', 'tool', 'show', 'te', 'message', 'permission', 'please', 'include', 'user', 'id', 'cad', 'user', 'list', 'let', 'know', 'need', 'information', 'contact', 'phone'] processed_text: ['engineering', 'tool', 'permition', 'sign', 'include', 'user', 'id', 'cad', 'user', 'list', 'need', 'access', 'engineering', 'tool', 'however', 'tried', 'logon', 'engineering', 'tool', 'show', 'te', 'message', 'permission', 'please', 'include', 'user', 'id', 'cad', 'user', 'list', 'let', 'know', 'need', 'information', 'contact', 'phone'] list_processed_text: [['engineering'], ['tool'], ['permition'], ['sign'], ['include'], ['user'], ['id'], ['cad'], ['user'], ['list'], ['need'], ['access'], ['engineering'], ['tool'], ['however'], ['tried'], ['logon'], ['engineering'], ['tool'], ['show'], ['te'], ['message'], ['permission'], ['please'], ['include'], ['user'], ['id'], ['cad'], ['user'], ['list'], ['let'], ['know'], ['need'], ['information'], ['contact'], ['phone']] k: 7827 len: <class 'list'> Data: ['reset', 'password', 'esias', 'bosch', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'esias', 'bosch', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['esias'], ['bosch'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 7828 len: <class 'list'> Data: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['error', 'login', 'sid', 'system', 'error', 'login', 'sid', 'system', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'user', 'tried', 'password', 'management', 'tool', 'pwd', 'manager', 'unlocked', 'erp', 'id', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['error'], ['login'], ['sid'], ['system'], ['error'], ['login'], ['sid'], ['system'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['user'], ['tried'], ['password'], ['management'], ['tool'], ['pwd'], ['manager'], ['unlocked'], ['erp'], ['id'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7829 len: <class 'list'> Data: ['reporting', 'tool', 'web', 'link', 'crm', 'opening', 'reporting', 'tool', 'web', 'link', 'crm', 'opening'] processed_text: ['reporting', 'tool', 'web', 'link', 'crm', 'opening', 'reporting', 'tool', 'web', 'link', 'crm', 'opening'] list_processed_text: [['reporting'], ['tool'], ['web'], ['link'], ['crm'], ['opening'], ['reporting'], ['tool'], ['web'], ['link'], ['crm'], ['opening']] k: 7830 len: <class 'list'> Data: ['sharepiont', 'discount', 'request', 'error', 'infopath', 'cannot', 'submit', 'form', 'error', 'occurred', 'form', 'submitted', 'form', 'cannot', 'submitted', 'following', 'location', 'site', 'offline', 'read', 'otherwise', 'unavailable', 'access', 'denied', 'opening', 'file', 'location', 'must', 'first', 'add', 'web', 'site', 'trusted', 'site', 'list', 'browse', 'web', 'site', 'select', 'option', 'login', 'automatically'] processed_text: ['sharepiont', 'discount', 'request', 'error', 'infopath', 'cannot', 'submit', 'form', 'error', 'occurred', 'form', 'submitted', 'form', 'cannot', 'submitted', 'following', 'location', 'site', 'offline', 'read', 'otherwise', 'unavailable', 'access', 'denied', 'opening', 'file', 'location', 'must', 'first', 'add', 'web', 'site', 'trusted', 'site', 'list', 'browse', 'web', 'site', 'select', 'option', 'login', 'automatically'] list_processed_text: [['sharepiont'], ['discount'], ['request'], ['error'], ['infopath'], ['cannot'], ['submit'], ['form'], ['error'], ['occurred'], ['form'], ['submitted'], ['form'], ['cannot'], ['submitted'], ['following'], ['location'], ['site'], ['offline'], ['read'], ['otherwise'], ['unavailable'], ['access'], ['denied'], ['opening'], ['file'], ['location'], ['must'], ['first'], ['add'], ['web'], ['site'], ['trusted'], ['site'], ['list'], ['browse'], ['web'], ['site'], ['select'], ['option'], ['login'], ['automatically']] k: 7831 len: <class 'list'> Data: ['erp', 'access', 'name', 'nxloukai', 'cpbzkrel', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'update', 'ticket', 'ticket', 'need', 'resolved', 'aerp'] processed_text: ['erp', 'access', 'name', 'nxloukai', 'cpbzkrel', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'update', 'ticket', 'ticket', 'need', 'resolved', 'aerp'] list_processed_text: [['erp'], ['access'], ['name'], ['nxloukai'], ['cpbzkrel'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['update'], ['ticket'], ['ticket'], ['need'], ['resolved'], ['aerp']] k: 7832 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 7833 len: <class 'list'> Data: ['company', 'center', 'page', 'load', 'company', 'center', 'page', 'load'] processed_text: ['company', 'center', 'page', 'load', 'company', 'center', 'page', 'load'] list_processed_text: [['company'], ['center'], ['page'], ['load'], ['company'], ['center'], ['page'], ['load']] k: 7834 len: <class 'list'> Data: ['system', 'login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['system', 'login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'unlocked', 'account', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['system'], ['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['unlocked'], ['account'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 7835 len: <class 'list'> Data: ['netweaver', 'working', 'netweaver', 'working', 'name', 'iauqlrjk', 'nijdaukz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'open', 'net', 'weaver', 'business', 'client', 'receive', 'error', 'microsoft', 'net', 'framdntyework', 'installed', 'contact', 'administrator'] processed_text: ['netweaver', 'working', 'netweaver', 'working', 'name', 'iauqlrjk', 'nijdaukz', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'open', 'net', 'weaver', 'business', 'client', 'receive', 'error', 'microsoft', 'net', 'framdntyework', 'installed', 'contact', 'administrator'] list_processed_text: [['netweaver'], ['working'], ['netweaver'], ['working'], ['name'], ['iauqlrjk'], ['nijdaukz'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['able'], ['open'], ['net'], ['weaver'], ['business'], ['client'], ['receive'], ['error'], ['microsoft'], ['net'], ['framdntyework'], ['installed'], ['contact'], ['administrator']] k: 7836 len: <class 'list'> Data: ['qualys', 'scan', 'required', 'server', 'completion', 'hostname', 'new', 'category', 'task', 'owner', 'documentation', 'see', 'attached', 'server', 'profile', 'form', 'nvyjtmca', 'xjhpznds', 'global', 'security', 'create', 'global', 'group', 'add', 'appropriate', 'user', 'security', 'group', 'local', 'security', 'implement', 'local', 'user', 'group', 'security', 'tool', 'kathght', 'shfhyw', 'monitoring', 'add', 'reporting', 'tool', 'monitoring', 'dac', 'inventory', 'erirtc', 'baurhty', 'hoavdlwc', 'ungksotp', 'add', 'server', 'management', 'server', 'akisjtzm', 'uvbmysgcbenezer', 'kishore', 'nikam', 'sm', 'patching', 'antivirus', 'sw', 'add', 'server', 'sm', 'patching', 'antivirus', 'sw', 'shahid', 'nawab', 'security', 'run', 'qualsys', 'scan', 'gzhapcld', 'fdigznbk', 'ugyothfz', 'ugrmkdhx', 'backup', 'configure', 'backup', 'local', 'remote', 'timnhyt', 'rehtyulds', 'gdhyrts', 'muggftyali'] processed_text: ['qualys', 'scan', 'required', 'server', 'completion', 'hostname', 'new', 'category', 'task', 'owner', 'documentation', 'see', 'attached', 'server', 'profile', 'form', 'nvyjtmca', 'xjhpznds', 'global', 'security', 'create', 'global', 'group', 'add', 'appropriate', 'user', 'security', 'group', 'local', 'security', 'implement', 'local', 'user', 'group', 'security', 'tool', 'kathght', 'shfhyw', 'monitoring', 'add', 'reporting', 'tool', 'monitoring', 'dac', 'inventory', 'erirtc', 'baurhty', 'hoavdlwc', 'ungksotp', 'add', 'server', 'management', 'server', 'akisjtzm', 'uvbmysgcbenezer', 'kishore', 'nikam', 'sm', 'patching', 'antivirus', 'sw', 'add', 'server', 'sm', 'patching', 'antivirus', 'sw', 'shahid', 'nawab', 'security', 'run', 'qualsys', 'scan', 'gzhapcld', 'fdigznbk', 'ugyothfz', 'ugrmkdhx', 'backup', 'configure', 'backup', 'local', 'remote', 'timnhyt', 'rehtyulds', 'gdhyrts', 'muggftyali'] list_processed_text: [['qualys'], ['scan'], ['required'], ['server'], ['completion'], ['hostname'], ['new'], ['category'], ['task'], ['owner'], ['documentation'], ['see'], ['attached'], ['server'], ['profile'], ['form'], ['nvyjtmca'], ['xjhpznds'], ['global'], ['security'], ['create'], ['global'], ['group'], ['add'], ['appropriate'], ['user'], ['security'], ['group'], ['local'], ['security'], ['implement'], ['local'], ['user'], ['group'], ['security'], ['tool'], ['kathght'], ['shfhyw'], ['monitoring'], ['add'], ['reporting'], ['tool'], ['monitoring'], ['dac'], ['inventory'], ['erirtc'], ['baurhty'], ['hoavdlwc'], ['ungksotp'], ['add'], ['server'], ['management'], ['server'], ['akisjtzm'], ['uvbmysgcbenezer'], ['kishore'], ['nikam'], ['sm'], ['patching'], ['antivirus'], ['sw'], ['add'], ['server'], ['sm'], ['patching'], ['antivirus'], ['sw'], ['shahid'], ['nawab'], ['security'], ['run'], ['qualsys'], ['scan'], ['gzhapcld'], ['fdigznbk'], ['ugyothfz'], ['ugrmkdhx'], ['backup'], ['configure'], ['backup'], ['local'], ['remote'], ['timnhyt'], ['rehtyulds'], ['gdhyrts'], ['muggftyali']] k: 7837 len: <class 'list'> Data: ['shop', 'floor', 'app', 'problem', 'vldwtjgr', 'vtzakpol', 'pm', 'nwfodmhc', 'exurcwkm', 'dctvfjrn', 'oypnxftq', 'amar', 'shop', 'floor', 'app', 'problem', 'help', 'desk', 'experiencing', 'problem', 'widtqkwzup', 'vtkzuqly', 'tinning', 'cell', 'please', 'assign', 'shop', 'floor', 'app', 'support', 'group', 'work', 'issue', 'operator', 'reporting', 'production', 'order', 'badging', 'posting', 'please', 'let', 'know', 'info', 'need'] processed_text: ['shop', 'floor', 'app', 'problem', 'vldwtjgr', 'vtzakpol', 'pm', 'nwfodmhc', 'exurcwkm', 'dctvfjrn', 'oypnxftq', 'amar', 'shop', 'floor', 'app', 'problem', 'help', 'desk', 'experiencing', 'problem', 'widtqkwzup', 'vtkzuqly', 'tinning', 'cell', 'please', 'assign', 'shop', 'floor', 'app', 'support', 'group', 'work', 'issue', 'operator', 'reporting', 'production', 'order', 'badging', 'posting', 'please', 'let', 'know', 'info', 'need'] list_processed_text: [['shop'], ['floor'], ['app'], ['problem'], ['vldwtjgr'], ['vtzakpol'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['dctvfjrn'], ['oypnxftq'], ['amar'], ['shop'], ['floor'], ['app'], ['problem'], ['help'], ['desk'], ['experiencing'], ['problem'], ['widtqkwzup'], ['vtkzuqly'], ['tinning'], ['cell'], ['please'], ['assign'], ['shop'], ['floor'], ['app'], ['support'], ['group'], ['work'], ['issue'], ['operator'], ['reporting'], ['production'], ['order'], ['badging'], ['posting'], ['please'], ['let'], ['know'], ['info'], ['need']] k: 7838 len: <class 'list'> Data: ['engineering', 'tool', 'error', 'engineering', 'tool', 'error'] processed_text: ['engineering', 'tool', 'error', 'engineering', 'tool', 'error'] list_processed_text: [['engineering'], ['tool'], ['error'], ['engineering'], ['tool'], ['error']] k: 7839 len: <class 'list'> Data: ['password', 'reset', 'expired', 'name', 'ivxybewh', 'ykhsqvnu', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'password', 'reset', 'log', 'computer', 'erp'] processed_text: ['password', 'reset', 'expired', 'name', 'ivxybewh', 'ykhsqvnu', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'password', 'reset', 'log', 'computer', 'erp'] list_processed_text: [['password'], ['reset'], ['expired'], ['name'], ['ivxybewh'], ['ykhsqvnu'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['password'], ['reset'], ['log'], ['computer'], ['erp']] k: 7840 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 7841 len: <class 'list'> Data: ['vitalyst', 'transfer', 'service', 'unavailable', 'crm', 'online', 'vitalyst', 'transfer', 'service', 'unavailable', 'crm', 'online'] processed_text: ['vitalyst', 'transfer', 'service', 'unavailable', 'crm', 'online', 'vitalyst', 'transfer', 'service', 'unavailable', 'crm', 'online'] list_processed_text: [['vitalyst'], ['transfer'], ['service'], ['unavailable'], ['crm'], ['online'], ['vitalyst'], ['transfer'], ['service'], ['unavailable'], ['crm'], ['online']] k: 7842 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 7843 len: <class 'list'> Data: ['hardware', 'issue', 'user', 'trying', 'use', 'separate', 'computer', 'install', 'software', 'getting', 'message', 'stating', 'window', 'cannot', 'connect', 'domain', 'either', 'domain', 'controller', 'otherwise', 'unavailable', 'computer', 'account', 'found', 'computer', 'need', 'replace', 'dead', 'pc', 'shop', 'floor', 'user', 'need', 'install', 'software', 'make', 'running'] processed_text: ['hardware', 'issue', 'user', 'trying', 'use', 'separate', 'computer', 'install', 'software', 'getting', 'message', 'stating', 'window', 'cannot', 'connect', 'domain', 'either', 'domain', 'controller', 'otherwise', 'unavailable', 'computer', 'account', 'found', 'computer', 'need', 'replace', 'dead', 'pc', 'shop', 'floor', 'user', 'need', 'install', 'software', 'make', 'running'] list_processed_text: [['hardware'], ['issue'], ['user'], ['trying'], ['use'], ['separate'], ['computer'], ['install'], ['software'], ['getting'], ['message'], ['stating'], ['window'], ['cannot'], ['connect'], ['domain'], ['either'], ['domain'], ['controller'], ['otherwise'], ['unavailable'], ['computer'], ['account'], ['found'], ['computer'], ['need'], ['replace'], ['dead'], ['pc'], ['shop'], ['floor'], ['user'], ['need'], ['install'], ['software'], ['make'], ['running']] k: 7844 len: <class 'list'> Data: ['call', 'transferred', 'amfgtyartya', 'password', 'call', 'transferred', 'amfgtyartya', 'password'] processed_text: ['call', 'transferred', 'amfgtyartya', 'password', 'call', 'transferred', 'amfgtyartya', 'password'] list_processed_text: [['call'], ['transferred'], ['amfgtyartya'], ['password'], ['call'], ['transferred'], ['amfgtyartya'], ['password']] k: 7845 len: <class 'list'> Data: ['trying', 'access', 'collaboration', 'platform', 'site', 'trying', 'access', 'collaboration', 'platform', 'site', 'believe', 'managed', 'bill', 'gofgrthyuetz', 'left', 'company', 'requested', 'access', 'received', 'response'] processed_text: ['trying', 'access', 'collaboration', 'platform', 'site', 'trying', 'access', 'collaboration', 'platform', 'site', 'believe', 'managed', 'bill', 'gofgrthyuetz', 'left', 'company', 'requested', 'access', 'received', 'response'] list_processed_text: [['trying'], ['access'], ['collaboration'], ['platform'], ['site'], ['trying'], ['access'], ['collaboration'], ['platform'], ['site'], ['believe'], ['managed'], ['bill'], ['gofgrthyuetz'], ['left'], ['company'], ['requested'], ['access'], ['received'], ['response']] k: 7846 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7847 len: <class 'list'> Data: ['hi', 'team', 'laptop', 'random', 'shut', 'problem', 'still', 'exists', 'show', 'battery', 'detected', 'hi', 'team', 'laptop', 'random', 'shut', 'problem', 'still', 'exists', 'lose', 'important', 'unsaved', 'data', 'show', 'battery', 'detected', 'please', 'replace', 'battery', 'laptop', 'please', 'rectify', 'issue', 'soon', 'possible'] processed_text: ['hi', 'team', 'laptop', 'random', 'shut', 'problem', 'still', 'exists', 'show', 'battery', 'detected', 'hi', 'team', 'laptop', 'random', 'shut', 'problem', 'still', 'exists', 'lose', 'important', 'unsaved', 'data', 'show', 'battery', 'detected', 'please', 'replace', 'battery', 'laptop', 'please', 'rectify', 'issue', 'soon', 'possible'] list_processed_text: [['hi'], ['team'], ['laptop'], ['random'], ['shut'], ['problem'], ['still'], ['exists'], ['show'], ['battery'], ['detected'], ['hi'], ['team'], ['laptop'], ['random'], ['shut'], ['problem'], ['still'], ['exists'], ['lose'], ['important'], ['unsaved'], ['data'], ['show'], ['battery'], ['detected'], ['please'], ['replace'], ['battery'], ['laptop'], ['please'], ['rectify'], ['issue'], ['soon'], ['possible']] k: 7848 len: <class 'list'> Data: ['tfrbwoua', 'aegpkruc', 'unable', 'print', 'pdf', 'tfrbwoua', 'aegpkruc', 'unable', 'print', 'pdf'] processed_text: ['tfrbwoua', 'aegpkruc', 'unable', 'print', 'pdf', 'tfrbwoua', 'aegpkruc', 'unable', 'print', 'pdf'] list_processed_text: [['tfrbwoua'], ['aegpkruc'], ['unable'], ['print'], ['pdf'], ['tfrbwoua'], ['aegpkruc'], ['unable'], ['print'], ['pdf']] k: 7849 len: <class 'list'> Data: ['urgent', 'need', 'full', 'py', 'access', 'german', 'location', 'hi', 'could', 'please', 'usa', 'full', 'access', 'permission', 'maintaining', 'py', 'data', 'erp', 'german', 'location', 'reference', 'id', 'mnakehrf', 'mvunqihf', 'hess', 'kagthrl', 'heyinz', 'approval', 'provided', 'jywvemun', 'qngschtz'] processed_text: ['urgent', 'need', 'full', 'py', 'access', 'german', 'location', 'hi', 'could', 'please', 'usa', 'full', 'access', 'permission', 'maintaining', 'py', 'data', 'erp', 'german', 'location', 'reference', 'id', 'mnakehrf', 'mvunqihf', 'hess', 'kagthrl', 'heyinz', 'approval', 'provided', 'jywvemun', 'qngschtz'] list_processed_text: [['urgent'], ['need'], ['full'], ['py'], ['access'], ['german'], ['location'], ['hi'], ['could'], ['please'], ['usa'], ['full'], ['access'], ['permission'], ['maintaining'], ['py'], ['data'], ['erp'], ['german'], ['location'], ['reference'], ['id'], ['mnakehrf'], ['mvunqihf'], ['hess'], ['kagthrl'], ['heyinz'], ['approval'], ['provided'], ['jywvemun'], ['qngschtz']] k: 7850 len: <class 'list'> Data: ['increase', 'ramdnty', 'gb', 'gb', 'ramdnty', 'hostname', 'increase', 'ramdnty', 'gb', 'gb', 'ramdnty', 'hostname', 'server'] processed_text: ['increase', 'ramdnty', 'gb', 'gb', 'ramdnty', 'hostname', 'increase', 'ramdnty', 'gb', 'gb', 'ramdnty', 'hostname', 'server'] list_processed_text: [['increase'], ['ramdnty'], ['gb'], ['gb'], ['ramdnty'], ['hostname'], ['increase'], ['ramdnty'], ['gb'], ['gb'], ['ramdnty'], ['hostname'], ['server']] k: 7851 len: <class 'list'> Data: ['reset', 'password', 'request', 'bobj', 'hello', 'please', 'reset', 'password', 'bobj', 'sid', 'user', 'name', 'mcfgtydonn'] processed_text: ['reset', 'password', 'request', 'bobj', 'hello', 'please', 'reset', 'password', 'bobj', 'sid', 'user', 'name', 'mcfgtydonn'] list_processed_text: [['reset'], ['password'], ['request'], ['bobj'], ['hello'], ['please'], ['reset'], ['password'], ['bobj'], ['sid'], ['user'], ['name'], ['mcfgtydonn']] k: 7852 len: <class 'list'> Data: ['zip', 'code', 'entered', 'erp', 'account', 'sid', 'synch', 'msd', 'crm', 'hello', 'account', 'zip', 'code', 'updated', 'erp', 'sid', 'however', 'move', 'msd', 'crm', 'error', 'say', 'post', 'code', 'valid', 'know', 'format', 'postal', 'code', 'entered', 'israel', 'elogic', 'share', 'rule', 'regarding', 'postal', 'code', 'format', 'lucinda', 'team', 'please'] processed_text: ['zip', 'code', 'entered', 'erp', 'account', 'sid', 'synch', 'msd', 'crm', 'hello', 'account', 'zip', 'code', 'updated', 'erp', 'sid', 'however', 'move', 'msd', 'crm', 'error', 'say', 'post', 'code', 'valid', 'know', 'format', 'postal', 'code', 'entered', 'israel', 'elogic', 'share', 'rule', 'regarding', 'postal', 'code', 'format', 'lucinda', 'team', 'please'] list_processed_text: [['zip'], ['code'], ['entered'], ['erp'], ['account'], ['sid'], ['synch'], ['msd'], ['crm'], ['hello'], ['account'], ['zip'], ['code'], ['updated'], ['erp'], ['sid'], ['however'], ['move'], ['msd'], ['crm'], ['error'], ['say'], ['post'], ['code'], ['valid'], ['know'], ['format'], ['postal'], ['code'], ['entered'], ['israel'], ['elogic'], ['share'], ['rule'], ['regarding'], ['postal'], ['code'], ['format'], ['lucinda'], ['team'], ['please']] k: 7853 len: <class 'list'> Data: ['decommission', 'hostname', 'old', 'zmgsfner', 'caltmgoe', 'sadghryioshkurtyar', 'hiremath', 'mfyivqes', 'cpihaxbs', 'hostname', 'old', 'hi', 'remove', 'old', 'hostname', 'domain', 'needed', 'access', 'recently', 'let', 'know', 'done', 'power', 'move', 'storage'] processed_text: ['decommission', 'hostname', 'old', 'zmgsfner', 'caltmgoe', 'sadghryioshkurtyar', 'hiremath', 'mfyivqes', 'cpihaxbs', 'hostname', 'old', 'hi', 'remove', 'old', 'hostname', 'domain', 'needed', 'access', 'recently', 'let', 'know', 'done', 'power', 'move', 'storage'] list_processed_text: [['decommission'], ['hostname'], ['old'], ['zmgsfner'], ['caltmgoe'], ['sadghryioshkurtyar'], ['hiremath'], ['mfyivqes'], ['cpihaxbs'], ['hostname'], ['old'], ['hi'], ['remove'], ['old'], ['hostname'], ['domain'], ['needed'], ['access'], ['recently'], ['let'], ['know'], ['done'], ['power'], ['move'], ['storage']] k: 7854 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 7855 len: <class 'list'> Data: ['low', 'disk', 'space', 'lhqsid', 'drive', 'vwaliogd', 'dviwuzhm', 'pm', 'gdhyrts', 'muggftyali', 'sadghryioshkurtyar', 'hiremath', 'stefyty', 'parkeyhrt', 'wyjsbzda', 'yfeuhtib', 'low', 'disk', 'space', 'lhqsid', 'drive', 'hi', 'nagfghtyudra', 'sadghryiosh', 'checking', 'access', 'lhqsid', 'tomorrow', 'dot', 'net', 'application', 'deployment', 'realized', 'running', 'space', 'kb', 'free', 'space', 'ok', 'request', 'help', 'clear', 'temporary', 'file', 'free', 'space', 'adding', 'stefyty', 'parkeyhrt', 'cc', 'need', 'approval', 'move', 'file', 'drive', 'required'] processed_text: ['low', 'disk', 'space', 'lhqsid', 'drive', 'vwaliogd', 'dviwuzhm', 'pm', 'gdhyrts', 'muggftyali', 'sadghryioshkurtyar', 'hiremath', 'stefyty', 'parkeyhrt', 'wyjsbzda', 'yfeuhtib', 'low', 'disk', 'space', 'lhqsid', 'drive', 'hi', 'nagfghtyudra', 'sadghryiosh', 'checking', 'access', 'lhqsid', 'tomorrow', 'dot', 'net', 'application', 'deployment', 'realized', 'running', 'space', 'kb', 'free', 'space', 'ok', 'request', 'help', 'clear', 'temporary', 'file', 'free', 'space', 'adding', 'stefyty', 'parkeyhrt', 'cc', 'need', 'approval', 'move', 'file', 'drive', 'required'] list_processed_text: [['low'], ['disk'], ['space'], ['lhqsid'], ['drive'], ['vwaliogd'], ['dviwuzhm'], ['pm'], ['gdhyrts'], ['muggftyali'], ['sadghryioshkurtyar'], ['hiremath'], ['stefyty'], ['parkeyhrt'], ['wyjsbzda'], ['yfeuhtib'], ['low'], ['disk'], ['space'], ['lhqsid'], ['drive'], ['hi'], ['nagfghtyudra'], ['sadghryiosh'], ['checking'], ['access'], ['lhqsid'], ['tomorrow'], ['dot'], ['net'], ['application'], ['deployment'], ['realized'], ['running'], ['space'], ['kb'], ['free'], ['space'], ['ok'], ['request'], ['help'], ['clear'], ['temporary'], ['file'], ['free'], ['space'], ['adding'], ['stefyty'], ['parkeyhrt'], ['cc'], ['need'], ['approval'], ['move'], ['file'], ['drive'], ['required']] k: 7856 len: <class 'list'> Data: ['drive', 'folder', 'access', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'benutzer', 'id', 'user', 'id', 'karagtfma', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'manager', 'commodity', 'amerirtcas', 'verzeichnis', 'folder', 'hostname', 'item', 'purchasing', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control', 'full', 'control', 'name', 'de', 'vorgesetzten', 'manager', 'name'] processed_text: ['drive', 'folder', 'access', 'zugriff', 'auf', 'verzeichnis', 'angefragt', 'folder', 'access', 'requested', 'benutzer', 'id', 'user', 'id', 'karagtfma', 'benutzer', 'die', 'position', 'titel', 'user', 'position', 'title', 'manager', 'commodity', 'amerirtcas', 'verzeichnis', 'folder', 'hostname', 'item', 'purchasing', 'art', 'de', 'zugriffs', 'type', 'access', 'read', 'full', 'control', 'full', 'control', 'name', 'de', 'vorgesetzten', 'manager', 'name'] list_processed_text: [['drive'], ['folder'], ['access'], ['zugriff'], ['auf'], ['verzeichnis'], ['angefragt'], ['folder'], ['access'], ['requested'], ['benutzer'], ['id'], ['user'], ['id'], ['karagtfma'], ['benutzer'], ['die'], ['position'], ['titel'], ['user'], ['position'], ['title'], ['manager'], ['commodity'], ['amerirtcas'], ['verzeichnis'], ['folder'], ['hostname'], ['item'], ['purchasing'], ['art'], ['de'], ['zugriffs'], ['type'], ['access'], ['read'], ['full'], ['control'], ['full'], ['control'], ['name'], ['de'], ['vorgesetzten'], ['manager'], ['name']] k: 7857 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 7858 len: <class 'list'> Data: ['eu', 'tool', 'work', 'eu', 'tool', 'work', 'message', 'unknown', 'error', 'system', 'distributor', 'tool', 'error'] processed_text: ['eu', 'tool', 'work', 'eu', 'tool', 'work', 'message', 'unknown', 'error', 'system', 'distributor', 'tool', 'error'] list_processed_text: [['eu'], ['tool'], ['work'], ['eu'], ['tool'], ['work'], ['message'], ['unknown'], ['error'], ['system'], ['distributor'], ['tool'], ['error']] k: 7859 len: <class 'list'> Data: ['telephony', 'software', 'erp', 'term', 'payment', 'line', 'crm', 'erp', 'customer', 'fredi', 'stury', 'ag', 'ruemlang', 'sale', 'org', 'crm', 'entry', 'day', 'net', 'day', 'erp', 'entry', 'day', 'net', 'day', 'suggested', 'system', 'reflect', 'data', 'according', 'information', 'received', 'repyzajo', 'lxfwopyq', 'requested', 'sale', 'approved', 'finance', 'could', 'please', 'change', 'back'] processed_text: ['telephony', 'software', 'erp', 'term', 'payment', 'line', 'crm', 'erp', 'customer', 'fredi', 'stury', 'ag', 'ruemlang', 'sale', 'org', 'crm', 'entry', 'day', 'net', 'day', 'erp', 'entry', 'day', 'net', 'day', 'suggested', 'system', 'reflect', 'data', 'according', 'information', 'received', 'repyzajo', 'lxfwopyq', 'requested', 'sale', 'approved', 'finance', 'could', 'please', 'change', 'back'] list_processed_text: [['telephony'], ['software'], ['erp'], ['term'], ['payment'], ['line'], ['crm'], ['erp'], ['customer'], ['fredi'], ['stury'], ['ag'], ['ruemlang'], ['sale'], ['org'], ['crm'], ['entry'], ['day'], ['net'], ['day'], ['erp'], ['entry'], ['day'], ['net'], ['day'], ['suggested'], ['system'], ['reflect'], ['data'], ['according'], ['information'], ['received'], ['repyzajo'], ['lxfwopyq'], ['requested'], ['sale'], ['approved'], ['finance'], ['could'], ['please'], ['change'], ['back']] k: 7860 len: <class 'list'> Data: ['outlook', 'opening', 'outlook', 'opening'] processed_text: ['outlook', 'opening', 'outlook', 'opening'] list_processed_text: [['outlook'], ['opening'], ['outlook'], ['opening']] k: 7861 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7862 len: <class 'list'> Data: ['password', 'reset', 'request', 'kiosk', 'user', 'password', 'reset', 'request', 'kiosk', 'user'] processed_text: ['password', 'reset', 'request', 'kiosk', 'user', 'password', 'reset', 'request', 'kiosk', 'user'] list_processed_text: [['password'], ['reset'], ['request'], ['kiosk'], ['user'], ['password'], ['reset'], ['request'], ['kiosk'], ['user']] k: 7863 len: <class 'list'> Data: ['oprbatch', 'extending', 'plant', 'view', 'fert', 'item', 'missing', 'incorrect', 'setting', 'oprbatch', 'extending', 'plant', 'view', 'fert', 'item', 'missing', 'incorrect', 'setting', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrptype', 'incorrect', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrp', 'type', 'incorrect', 'delivery', 'plant', 'incorrect', 'sale', 'org', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrp', 'type', 'incorrect', 'addition', 'oprbatch', 'extends', 'price', 'control', 'defaulted', 'depending', 'source', 'always', 'need', 'corrected', 'manually'] processed_text: ['oprbatch', 'extending', 'plant', 'view', 'fert', 'item', 'missing', 'incorrect', 'setting', 'oprbatch', 'extending', 'plant', 'view', 'fert', 'item', 'missing', 'incorrect', 'setting', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrptype', 'incorrect', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrp', 'type', 'incorrect', 'delivery', 'plant', 'incorrect', 'sale', 'org', 'mm', 'extended', 'plant', 'missing', 'abc', 'spt', 'incorrect', 'mrp', 'type', 'incorrect', 'addition', 'oprbatch', 'extends', 'price', 'control', 'defaulted', 'depending', 'source', 'always', 'need', 'corrected', 'manually'] list_processed_text: [['oprbatch'], ['extending'], ['plant'], ['view'], ['fert'], ['item'], ['missing'], ['incorrect'], ['setting'], ['oprbatch'], ['extending'], ['plant'], ['view'], ['fert'], ['item'], ['missing'], ['incorrect'], ['setting'], ['mm'], ['extended'], ['plant'], ['missing'], ['abc'], ['spt'], ['incorrect'], ['mrptype'], ['incorrect'], ['mm'], ['extended'], ['plant'], ['missing'], ['abc'], ['spt'], ['incorrect'], ['mrp'], ['type'], ['incorrect'], ['delivery'], ['plant'], ['incorrect'], ['sale'], ['org'], ['mm'], ['extended'], ['plant'], ['missing'], ['abc'], ['spt'], ['incorrect'], ['mrp'], ['type'], ['incorrect'], ['addition'], ['oprbatch'], ['extends'], ['price'], ['control'], ['defaulted'], ['depending'], ['source'], ['always'], ['need'], ['corrected'], ['manually']] k: 7864 len: <class 'list'> Data: ['mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'example', 'extended', 'correct', 'morning', 'sale', 'org', 'sale', 'org', 'today', 'blank', 'needed', 'corrected', 'manually', 'extended', 'system', 'allow', 'u', 'save', 'blank', 'need', 'oprbatch', 'populate', 'field', 'mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'example', 'extended', 'correct', 'morning', 'sale', 'org', 'sale', 'org', 'today', 'blank', 'needed', 'corrected', 'manually', 'extended', 'system', 'allow', 'u', 'save', 'blank', 'need', 'oprbatch', 'populate', 'field'] processed_text: ['mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'example', 'extended', 'correct', 'morning', 'sale', 'org', 'sale', 'org', 'today', 'blank', 'needed', 'corrected', 'manually', 'extended', 'system', 'allow', 'u', 'save', 'blank', 'need', 'oprbatch', 'populate', 'field', 'mmaster', 'sale', 'org', 'extension', 'created', 'oprbatch', 'creating', 'error', 'matgrp', 'material', 'statistic', 'example', 'extended', 'correct', 'morning', 'sale', 'org', 'sale', 'org', 'today', 'blank', 'needed', 'corrected', 'manually', 'extended', 'system', 'allow', 'u', 'save', 'blank', 'need', 'oprbatch', 'populate', 'field'] list_processed_text: [['mmaster'], ['sale'], ['org'], ['extension'], ['created'], ['oprbatch'], ['creating'], ['error'], ['matgrp'], ['material'], ['statistic'], ['mmaster'], ['sale'], ['org'], ['extension'], ['created'], ['oprbatch'], ['creating'], ['error'], ['matgrp'], ['material'], ['statistic'], ['example'], ['extended'], ['correct'], ['morning'], ['sale'], ['org'], ['sale'], ['org'], ['today'], ['blank'], ['needed'], ['corrected'], ['manually'], ['extended'], ['system'], ['allow'], ['u'], ['save'], ['blank'], ['need'], ['oprbatch'], ['populate'], ['field'], ['mmaster'], ['sale'], ['org'], ['extension'], ['created'], ['oprbatch'], ['creating'], ['error'], ['matgrp'], ['material'], ['statistic'], ['example'], ['extended'], ['correct'], ['morning'], ['sale'], ['org'], ['sale'], ['org'], ['today'], ['blank'], ['needed'], ['corrected'], ['manually'], ['extended'], ['system'], ['allow'], ['u'], ['save'], ['blank'], ['need'], ['oprbatch'], ['populate'], ['field']] k: 7865 len: <class 'list'> Data: ['cannot', 'use', 'net', 'weaver', 'business', 'client', 'dear', 'sir', 'cannot', 'use', 'net', 'weaver', 'business', 'client', 'please', 'support', 'issue', 'warm'] processed_text: ['cannot', 'use', 'net', 'weaver', 'business', 'client', 'dear', 'sir', 'cannot', 'use', 'net', 'weaver', 'business', 'client', 'please', 'support', 'issue', 'warm'] list_processed_text: [['cannot'], ['use'], ['net'], ['weaver'], ['business'], ['client'], ['dear'], ['sir'], ['cannot'], ['use'], ['net'], ['weaver'], ['business'], ['client'], ['please'], ['support'], ['issue'], ['warm']] k: 7866 len: <class 'list'> Data: ['device', 'replacement', 'setup', 'new', 'hp', 'laserjet', 'mfp', 'replaces', 'old', 'ag', 'tel', 'device', 'replacement', 'setup', 'new', 'hp', 'laserjet', 'mfp', 'replaces', 'old', 'ag', 'tel'] processed_text: ['device', 'replacement', 'setup', 'new', 'hp', 'laserjet', 'mfp', 'replaces', 'old', 'ag', 'tel', 'device', 'replacement', 'setup', 'new', 'hp', 'laserjet', 'mfp', 'replaces', 'old', 'ag', 'tel'] list_processed_text: [['device'], ['replacement'], ['setup'], ['new'], ['hp'], ['laserjet'], ['mfp'], ['replaces'], ['old'], ['ag'], ['tel'], ['device'], ['replacement'], ['setup'], ['new'], ['hp'], ['laserjet'], ['mfp'], ['replaces'], ['old'], ['ag'], ['tel']] k: 7867 len: <class 'list'> Data: ['netframdntyework', 'business', 'client', 'sid', 'deployment', 'across', 'amerirtcas', 'specific', 'list', 'pc', 'dear', 'folk', 'planned', 'deploy', 'dotnetframdntyework', 'business', 'client', 'sid', 'enclosed', 'list', 'engineering', 'tool', 'application', 'installed', 'pc', 'amerirtcas', 'region', 'th', 'aug', 'also', 'please', 'ensure', 'user', 'enclosed', 'familiar', 'package', 'installation', 'step', 'type', 'package', 'installation', 'duration', 'importance', 'package', 'mode', 'installation', 'time', 'reboot', 'installation', 'behavior', 'referring', 'detail', 'note', 'deploy', 'pc', 'amerirtcas', 'engineering', 'tool', 'application', 'installed', 'identified', 'engineering', 'tool', 'application', 'team', 'prioritized', 'list', 'package', 'detail', 'deployment', 'date', 'thursday', 'time', 'morning', 'per', 'respective', 'location', 'time', 'zone', 'deployment', 'tool', 'patching', 'antivirus', 'sw', 'package', 'type', 'prompted', 'user', 'prompted', 'prior', 'notification', 'save', 'work', 'proceeding', 'installation', 'clicking', 'continue', 'button', 'duration', 'minute', 'restart', 'required', 'yes', 'prompt', 'restart', 'installation', 'netframdntyework', 'business', 'client', 'sid', 'package', 'behavior', 'please', 'go', 'provided', 'bill', 'bankrd', 'understand', 'importance', 'package', 'deployment'] processed_text: ['netframdntyework', 'business', 'client', 'sid', 'deployment', 'across', 'amerirtcas', 'specific', 'list', 'pc', 'dear', 'folk', 'planned', 'deploy', 'dotnetframdntyework', 'business', 'client', 'sid', 'enclosed', 'list', 'engineering', 'tool', 'application', 'installed', 'pc', 'amerirtcas', 'region', 'th', 'aug', 'also', 'please', 'ensure', 'user', 'enclosed', 'familiar', 'package', 'installation', 'step', 'type', 'package', 'installation', 'duration', 'importance', 'package', 'mode', 'installation', 'time', 'reboot', 'installation', 'behavior', 'referring', 'detail', 'note', 'deploy', 'pc', 'amerirtcas', 'engineering', 'tool', 'application', 'installed', 'identified', 'engineering', 'tool', 'application', 'team', 'prioritized', 'list', 'package', 'detail', 'deployment', 'date', 'thursday', 'time', 'morning', 'per', 'respective', 'location', 'time', 'zone', 'deployment', 'tool', 'patching', 'antivirus', 'sw', 'package', 'type', 'prompted', 'user', 'prompted', 'prior', 'notification', 'save', 'work', 'proceeding', 'installation', 'clicking', 'continue', 'button', 'duration', 'minute', 'restart', 'required', 'yes', 'prompt', 'restart', 'installation', 'netframdntyework', 'business', 'client', 'sid', 'package', 'behavior', 'please', 'go', 'provided', 'bill', 'bankrd', 'understand', 'importance', 'package', 'deployment'] list_processed_text: [['netframdntyework'], ['business'], ['client'], ['sid'], ['deployment'], ['across'], ['amerirtcas'], ['specific'], ['list'], ['pc'], ['dear'], ['folk'], ['planned'], ['deploy'], ['dotnetframdntyework'], ['business'], ['client'], ['sid'], ['enclosed'], ['list'], ['engineering'], ['tool'], ['application'], ['installed'], ['pc'], ['amerirtcas'], ['region'], ['th'], ['aug'], ['also'], ['please'], ['ensure'], ['user'], ['enclosed'], ['familiar'], ['package'], ['installation'], ['step'], ['type'], ['package'], ['installation'], ['duration'], ['importance'], ['package'], ['mode'], ['installation'], ['time'], ['reboot'], ['installation'], ['behavior'], ['referring'], ['detail'], ['note'], ['deploy'], ['pc'], ['amerirtcas'], ['engineering'], ['tool'], ['application'], ['installed'], ['identified'], ['engineering'], ['tool'], ['application'], ['team'], ['prioritized'], ['list'], ['package'], ['detail'], ['deployment'], ['date'], ['thursday'], ['time'], ['morning'], ['per'], ['respective'], ['location'], ['time'], ['zone'], ['deployment'], ['tool'], ['patching'], ['antivirus'], ['sw'], ['package'], ['type'], ['prompted'], ['user'], ['prompted'], ['prior'], ['notification'], ['save'], ['work'], ['proceeding'], ['installation'], ['clicking'], ['continue'], ['button'], ['duration'], ['minute'], ['restart'], ['required'], ['yes'], ['prompt'], ['restart'], ['installation'], ['netframdntyework'], ['business'], ['client'], ['sid'], ['package'], ['behavior'], ['please'], ['go'], ['provided'], ['bill'], ['bankrd'], ['understand'], ['importance'], ['package'], ['deployment']] k: 7868 len: <class 'list'> Data: ['laptop', 'blue', 'screen', 'laptop', 'blue', 'screen'] processed_text: ['laptop', 'blue', 'screen', 'laptop', 'blue', 'screen'] list_processed_text: [['laptop'], ['blue'], ['screen'], ['laptop'], ['blue'], ['screen']] k: 7869 len: <class 'list'> Data: ['sent', 'snipping', 'tool', 'hello', 'updating', 'erp', 'facing', 'problem', 'oppening', 'attachment', 'erp', 'quote', 'please', 'resolve', 'immidiately', 'causing', 'problem', 'regular', 'activity', 'warm'] processed_text: ['sent', 'snipping', 'tool', 'hello', 'updating', 'erp', 'facing', 'problem', 'oppening', 'attachment', 'erp', 'quote', 'please', 'resolve', 'immidiately', 'causing', 'problem', 'regular', 'activity', 'warm'] list_processed_text: [['sent'], ['snipping'], ['tool'], ['hello'], ['updating'], ['erp'], ['facing'], ['problem'], ['oppening'], ['attachment'], ['erp'], ['quote'], ['please'], ['resolve'], ['immidiately'], ['causing'], ['problem'], ['regular'], ['activity'], ['warm']] k: 7870 len: <class 'list'> Data: ['discount', 'cannot', 'access', 'discount', 'collaboration', 'platform'] processed_text: ['discount', 'cannot', 'access', 'discount', 'collaboration', 'platform'] list_processed_text: [['discount'], ['cannot'], ['access'], ['discount'], ['collaboration'], ['platform']] k: 7871 len: <class 'list'> Data: ['engineering', 'tool', 'getting', 'locked', 'frequently', 'engineering', 'tool', 'getting', 'locked', 'frequently'] processed_text: ['engineering', 'tool', 'getting', 'locked', 'frequently', 'engineering', 'tool', 'getting', 'locked', 'frequently'] list_processed_text: [['engineering'], ['tool'], ['getting'], ['locked'], ['frequently'], ['engineering'], ['tool'], ['getting'], ['locked'], ['frequently']] k: 7872 len: <class 'list'> Data: ['holiday', 'list', 'need', 'rebuilt', 'someone', 'deleted', 'holiday', 'entry', 'holiday', 'list', 'hub', 'backup', 'metavis', 'restored', 'please', 'restore', 'list'] processed_text: ['holiday', 'list', 'need', 'rebuilt', 'someone', 'deleted', 'holiday', 'entry', 'holiday', 'list', 'hub', 'backup', 'metavis', 'restored', 'please', 'restore', 'list'] list_processed_text: [['holiday'], ['list'], ['need'], ['rebuilt'], ['someone'], ['deleted'], ['holiday'], ['entry'], ['holiday'], ['list'], ['hub'], ['backup'], ['metavis'], ['restored'], ['please'], ['restore'], ['list']] k: 7873 len: <class 'list'> Data: ['outlook', 'issue', 'summary', 'unable', 'login', 'outlook'] processed_text: ['outlook', 'issue', 'summary', 'unable', 'login', 'outlook'] list_processed_text: [['outlook'], ['issue'], ['summary'], ['unable'], ['login'], ['outlook']] k: 7874 len: <class 'list'> Data: ['business', 'client', 'prompt', 'related', 'java', 'promts', 'please', 'refer', 'attachment', 'ticket', 'information'] processed_text: ['business', 'client', 'prompt', 'related', 'java', 'promts', 'please', 'refer', 'attachment', 'ticket', 'information'] list_processed_text: [['business'], ['client'], ['prompt'], ['related'], ['java'], ['promts'], ['please'], ['refer'], ['attachment'], ['ticket'], ['information']] k: 7875 len: <class 'list'> Data: ['erp', 'password', 'reset', 'request', 'erp', 'password', 'reset', 'request'] processed_text: ['erp', 'password', 'reset', 'request', 'erp', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['password'], ['reset'], ['request'], ['erp'], ['password'], ['reset'], ['request']] k: 7876 len: <class 'list'> Data: ['setup', 'new', 'w', 'thnsguzj', 'utwijzag', 'setup', 'new', 'w', 'thnsguzj', 'utwijzag'] processed_text: ['setup', 'new', 'w', 'thnsguzj', 'utwijzag', 'setup', 'new', 'w', 'thnsguzj', 'utwijzag'] list_processed_text: [['setup'], ['new'], ['w'], ['thnsguzj'], ['utwijzag'], ['setup'], ['new'], ['w'], ['thnsguzj'], ['utwijzag']] k: 7877 len: <class 'list'> Data: ['setup', 'new', 'w', 'yucgfmiq', 'jamgpnqe', 'setup', 'new', 'w', 'yucgfmiq', 'jamgpnqe'] processed_text: ['setup', 'new', 'w', 'yucgfmiq', 'jamgpnqe', 'setup', 'new', 'w', 'yucgfmiq', 'jamgpnqe'] list_processed_text: [['setup'], ['new'], ['w'], ['yucgfmiq'], ['jamgpnqe'], ['setup'], ['new'], ['w'], ['yucgfmiq'], ['jamgpnqe']] k: 7878 len: <class 'list'> Data: ['setun', 'new', 'w', 'michghytuael', 'luesebrink', 'setun', 'new', 'w', 'michghytuael', 'luesebrink'] processed_text: ['setun', 'new', 'w', 'michghytuael', 'luesebrink', 'setun', 'new', 'w', 'michghytuael', 'luesebrink'] list_processed_text: [['setun'], ['new'], ['w'], ['michghytuael'], ['luesebrink'], ['setun'], ['new'], ['w'], ['michghytuael'], ['luesebrink']] k: 7879 len: <class 'list'> Data: ['setup', 'new', 'w', 'uhammet', 'kuluz', 'setup', 'new', 'w', 'uhammet', 'kuluz'] processed_text: ['setup', 'new', 'w', 'uhammet', 'kuluz', 'setup', 'new', 'w', 'uhammet', 'kuluz'] list_processed_text: [['setup'], ['new'], ['w'], ['uhammet'], ['kuluz'], ['setup'], ['new'], ['w'], ['uhammet'], ['kuluz']] k: 7880 len: <class 'list'> Data: ['install', 'bit', 'version', 'von', 'm', 'office', 'r', 'pc', 'im', 'ro', 'rohlings', 'fertigung', 'njdrcagt', 'shourxyp', 'install', 'bit', 'version', 'von', 'm', 'office', 'r', 'pc', 'im', 'ro', 'rohlings', 'fertigung', 'njdrcagt', 'shourxyp'] processed_text: ['install', 'bit', 'version', 'von', 'm', 'office', 'r', 'pc', 'im', 'ro', 'rohlings', 'fertigung', 'njdrcagt', 'shourxyp', 'install', 'bit', 'version', 'von', 'm', 'office', 'r', 'pc', 'im', 'ro', 'rohlings', 'fertigung', 'njdrcagt', 'shourxyp'] list_processed_text: [['install'], ['bit'], ['version'], ['von'], ['m'], ['office'], ['r'], ['pc'], ['im'], ['ro'], ['rohlings'], ['fertigung'], ['njdrcagt'], ['shourxyp'], ['install'], ['bit'], ['version'], ['von'], ['m'], ['office'], ['r'], ['pc'], ['im'], ['ro'], ['rohlings'], ['fertigung'], ['njdrcagt'], ['shourxyp']] k: 7881 len: <class 'list'> Data: ['report', 'dscsag', 'dm', 'kpro', 'contv', 'clean', 'resulting', 'abap', 'runtime', 'error', 'sid', 'tried', 'run', 'report', 'dscsag', 'dm', 'kpro', 'contv', 'clean', 'sid', 'background', 'job', 'following', 'input', 'resulted', 'abap', 'runtime', 'error', 'shown', 'input', 'variant', 'ugi', 'clean', 'application', 'ugi', 'quantity', 'inactive', 'content', 'version', 'attached', 'screen', 'shot', 'document', 'working', 'ticket', 'inc', 'plm', 'content', 'version', 'generated', 'without', 'configuration', 'report', 'refers', 'ticket'] processed_text: ['report', 'dscsag', 'dm', 'kpro', 'contv', 'clean', 'resulting', 'abap', 'runtime', 'error', 'sid', 'tried', 'run', 'report', 'dscsag', 'dm', 'kpro', 'contv', 'clean', 'sid', 'background', 'job', 'following', 'input', 'resulted', 'abap', 'runtime', 'error', 'shown', 'input', 'variant', 'ugi', 'clean', 'application', 'ugi', 'quantity', 'inactive', 'content', 'version', 'attached', 'screen', 'shot', 'document', 'working', 'ticket', 'inc', 'plm', 'content', 'version', 'generated', 'without', 'configuration', 'report', 'refers', 'ticket'] list_processed_text: [['report'], ['dscsag'], ['dm'], ['kpro'], ['contv'], ['clean'], ['resulting'], ['abap'], ['runtime'], ['error'], ['sid'], ['tried'], ['run'], ['report'], ['dscsag'], ['dm'], ['kpro'], ['contv'], ['clean'], ['sid'], ['background'], ['job'], ['following'], ['input'], ['resulted'], ['abap'], ['runtime'], ['error'], ['shown'], ['input'], ['variant'], ['ugi'], ['clean'], ['application'], ['ugi'], ['quantity'], ['inactive'], ['content'], ['version'], ['attached'], ['screen'], ['shot'], ['document'], ['working'], ['ticket'], ['inc'], ['plm'], ['content'], ['version'], ['generated'], ['without'], ['configuration'], ['report'], ['refers'], ['ticket']] k: 7882 len: <class 'list'> Data: ['forgot', 'attendance', 'tool', 'password', 'forgot', 'attendance', 'tool', 'password'] processed_text: ['forgot', 'attendance', 'tool', 'password', 'forgot', 'attendance', 'tool', 'password'] list_processed_text: [['forgot'], ['attendance'], ['tool'], ['password'], ['forgot'], ['attendance'], ['tool'], ['password']] k: 7883 len: <class 'list'> Data: ['outlock', 'search', 'hello', 'help', 'team', 'problem', 'search', 'email', 'sent,', 'searching', 'name', 'come', 'following', 'error', 'message', 'always', 'suggestion', 'please', 'check', 'ckinfo', 'many', 'thanks', 'kind', 'gr', 'en', 'child'] processed_text: ['outlock', 'search', 'hello', 'help', 'team', 'problem', 'search', 'email', 'sent,', 'searching', 'name', 'come', 'following', 'error', 'message', 'always', 'suggestion', 'please', 'check', 'ckinfo', 'many', 'thanks', 'kind', 'gr', 'en', 'child'] list_processed_text: [['outlock'], ['search'], ['hello'], ['help'], ['team'], ['problem'], ['search'], ['email'], ['sent,'], ['searching'], ['name'], ['come'], ['following'], ['error'], ['message'], ['always'], ['suggestion'], ['please'], ['check'], ['ckinfo'], ['many'], ['thanks'], ['kind'], ['gr'], ['en'], ['child']] k: 7884 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7885 len: <class 'list'> Data: ['outlook', 'working', 'outlook', 'working'] processed_text: ['outlook', 'working', 'outlook', 'working'] list_processed_text: [['outlook'], ['working'], ['outlook'], ['working']] k: 7886 len: <class 'list'> Data: ['reset', 'password', 'erp', 'sid', 'reset', 'password', 'erp', 'sid'] processed_text: ['reset', 'password', 'erp', 'sid', 'reset', 'password', 'erp', 'sid'] list_processed_text: [['reset'], ['password'], ['erp'], ['sid'], ['reset'], ['password'], ['erp'], ['sid']] k: 7887 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7888 len: <class 'list'> Data: ['microsoft', 'outlook', 'working', 'pdujfybc', 'bvfdnale', 'microsoft', 'outlook', 'working', 'pdujfybc', 'bvfdnale', 'pls', 'check', 'pc', 'edww'] processed_text: ['microsoft', 'outlook', 'working', 'pdujfybc', 'bvfdnale', 'microsoft', 'outlook', 'working', 'pdujfybc', 'bvfdnale', 'pls', 'check', 'pc', 'edww'] list_processed_text: [['microsoft'], ['outlook'], ['working'], ['pdujfybc'], ['bvfdnale'], ['microsoft'], ['outlook'], ['working'], ['pdujfybc'], ['bvfdnale'], ['pls'], ['check'], ['pc'], ['edww']] k: 7889 len: <class 'list'> Data: ['visio', 'printer', 'wireless', 'mouse', 'help', 'configure', 'wireless', 'device', 'id', 'printer', 'install', 'visio', 'reimaged', 'laptop'] processed_text: ['visio', 'printer', 'wireless', 'mouse', 'help', 'configure', 'wireless', 'device', 'id', 'printer', 'install', 'visio', 'reimaged', 'laptop'] list_processed_text: [['visio'], ['printer'], ['wireless'], ['mouse'], ['help'], ['configure'], ['wireless'], ['device'], ['id'], ['printer'], ['install'], ['visio'], ['reimaged'], ['laptop']] k: 7890 len: <class 'list'> Data: ['user', 'called', 'give', 'information', 'regarding', 'ticket', 'user', 'called', 'give', 'information', 'regarding', 'ticket'] processed_text: ['user', 'called', 'give', 'information', 'regarding', 'ticket', 'user', 'called', 'give', 'information', 'regarding', 'ticket'] list_processed_text: [['user'], ['called'], ['give'], ['information'], ['regarding'], ['ticket'], ['user'], ['called'], ['give'], ['information'], ['regarding'], ['ticket']] k: 7891 len: <class 'list'> Data: ['account', 'changed', 'new', 'password', 'get', 'many', 'error', 'passwordmanage', 'system', 'account', 'changed', 'new', 'password', 'get', 'many', 'error', 'passwordmanage', 'system', 'erp', 'system', 'password', 'could', 'changed', 'distributor', 'tool', 'system'] processed_text: ['account', 'changed', 'new', 'password', 'get', 'many', 'error', 'passwordmanage', 'system', 'account', 'changed', 'new', 'password', 'get', 'many', 'error', 'passwordmanage', 'system', 'erp', 'system', 'password', 'could', 'changed', 'distributor', 'tool', 'system'] list_processed_text: [['account'], ['changed'], ['new'], ['password'], ['get'], ['many'], ['error'], ['passwordmanage'], ['system'], ['account'], ['changed'], ['new'], ['password'], ['get'], ['many'], ['error'], ['passwordmanage'], ['system'], ['erp'], ['system'], ['password'], ['could'], ['changed'], ['distributor'], ['tool'], ['system']] k: 7892 len: <class 'list'> Data: ['business', 'client', 'issue', 'change', 'message', 'server', 'connecting', 'sid', 'believe', 'lhqx'] processed_text: ['business', 'client', 'issue', 'change', 'message', 'server', 'connecting', 'sid', 'believe', 'lhqx'] list_processed_text: [['business'], ['client'], ['issue'], ['change'], ['message'], ['server'], ['connecting'], ['sid'], ['believe'], ['lhqx']] k: 7893 len: <class 'list'> Data: ['fund', 'hello', 'mail', 'definitely', 'spam', 'mail', 'kindly', 'take', 'note', 'also', 'ok', 'forward', 'mail', 'employee', 'warn', 'everyone'] processed_text: ['fund', 'hello', 'mail', 'definitely', 'spam', 'mail', 'kindly', 'take', 'note', 'also', 'ok', 'forward', 'mail', 'employee', 'warn', 'everyone'] list_processed_text: [['fund'], ['hello'], ['mail'], ['definitely'], ['spam'], ['mail'], ['kindly'], ['take'], ['note'], ['also'], ['ok'], ['forward'], ['mail'], ['employee'], ['warn'], ['everyone']] k: 7894 len: <class 'list'> Data: ['new', 'prospect', 'account', 'created', 'crm', 'get', 'erp', 'number', 'hello', 'two', 'specific', 'case', 'newly', 'created', 'prospect', 'account', 'crm', 'modern', 'construction', 'sandfield', 'engineering', 'get', 'erp', 'number', 'even', 'day', 'run', 'advanced', 'find', 'search', 'found', 'case', 'please', 'see', 'attached', 'file', 'describes', 'issue', 'unique', 'step', 'prospect', 'get', 'erp', 'id', 'result', 'fact', 'show', 'user', 'active', 'prospect', 'view', 'filter', 'prospect', 'erp', 'id', 'user', 'think', 'account', 'created', 'create', 'review', 'want', 'change', 'logic', 'behind', 'view', 'assume', 'filter', 'put', 'exlude', 'non', 'complete', 'account', 'another', 'issue', 'found', 'troubleshooting', 'process', 'deactivated', 'duplicate', 'prospect', 'audit', 'log', 'show', 'minute', 'later', 'account', 'got', 'activated', 'got', 'erp', 'number', 'please', 'investigate', 'one'] processed_text: ['new', 'prospect', 'account', 'created', 'crm', 'get', 'erp', 'number', 'hello', 'two', 'specific', 'case', 'newly', 'created', 'prospect', 'account', 'crm', 'modern', 'construction', 'sandfield', 'engineering', 'get', 'erp', 'number', 'even', 'day', 'run', 'advanced', 'find', 'search', 'found', 'case', 'please', 'see', 'attached', 'file', 'describes', 'issue', 'unique', 'step', 'prospect', 'get', 'erp', 'id', 'result', 'fact', 'show', 'user', 'active', 'prospect', 'view', 'filter', 'prospect', 'erp', 'id', 'user', 'think', 'account', 'created', 'create', 'review', 'want', 'change', 'logic', 'behind', 'view', 'assume', 'filter', 'put', 'exlude', 'non', 'complete', 'account', 'another', 'issue', 'found', 'troubleshooting', 'process', 'deactivated', 'duplicate', 'prospect', 'audit', 'log', 'show', 'minute', 'later', 'account', 'got', 'activated', 'got', 'erp', 'number', 'please', 'investigate', 'one'] list_processed_text: [['new'], ['prospect'], ['account'], ['created'], ['crm'], ['get'], ['erp'], ['number'], ['hello'], ['two'], ['specific'], ['case'], ['newly'], ['created'], ['prospect'], ['account'], ['crm'], ['modern'], ['construction'], ['sandfield'], ['engineering'], ['get'], ['erp'], ['number'], ['even'], ['day'], ['run'], ['advanced'], ['find'], ['search'], ['found'], ['case'], ['please'], ['see'], ['attached'], ['file'], ['describes'], ['issue'], ['unique'], ['step'], ['prospect'], ['get'], ['erp'], ['id'], ['result'], ['fact'], ['show'], ['user'], ['active'], ['prospect'], ['view'], ['filter'], ['prospect'], ['erp'], ['id'], ['user'], ['think'], ['account'], ['created'], ['create'], ['review'], ['want'], ['change'], ['logic'], ['behind'], ['view'], ['assume'], ['filter'], ['put'], ['exlude'], ['non'], ['complete'], ['account'], ['another'], ['issue'], ['found'], ['troubleshooting'], ['process'], ['deactivated'], ['duplicate'], ['prospect'], ['audit'], ['log'], ['show'], ['minute'], ['later'], ['account'], ['got'], ['activated'], ['got'], ['erp'], ['number'], ['please'], ['investigate'], ['one']] k: 7895 len: <class 'list'> Data: ['quotation', 'configured', 'new', 'simple', 'special', 'item', 'remains', 'incomplete', 'sid', 'quotation', 'configured', 'new', 'simple', 'special', 'item', 'remains', 'incomplete', 'sid', 'quote', 'created', 'distributor', 'tool', 'quote', 'alternate', 'mill', 'model', 'item', 'get', 'replaced', 'material', 'initial', 'item', 'quote', 'pricing', 'remains', 'incomplete', 'cannot', 'identify', 'actually', 'incomplete', 'erp', 'show', 'status', 'incomplete', 'therefore', 'quote', 'cannot', 'printed', 'sent', 'customer', 'web'] processed_text: ['quotation', 'configured', 'new', 'simple', 'special', 'item', 'remains', 'incomplete', 'sid', 'quotation', 'configured', 'new', 'simple', 'special', 'item', 'remains', 'incomplete', 'sid', 'quote', 'created', 'distributor', 'tool', 'quote', 'alternate', 'mill', 'model', 'item', 'get', 'replaced', 'material', 'initial', 'item', 'quote', 'pricing', 'remains', 'incomplete', 'cannot', 'identify', 'actually', 'incomplete', 'erp', 'show', 'status', 'incomplete', 'therefore', 'quote', 'cannot', 'printed', 'sent', 'customer', 'web'] list_processed_text: [['quotation'], ['configured'], ['new'], ['simple'], ['special'], ['item'], ['remains'], ['incomplete'], ['sid'], ['quotation'], ['configured'], ['new'], ['simple'], ['special'], ['item'], ['remains'], ['incomplete'], ['sid'], ['quote'], ['created'], ['distributor'], ['tool'], ['quote'], ['alternate'], ['mill'], ['model'], ['item'], ['get'], ['replaced'], ['material'], ['initial'], ['item'], ['quote'], ['pricing'], ['remains'], ['incomplete'], ['cannot'], ['identify'], ['actually'], ['incomplete'], ['erp'], ['show'], ['status'], ['incomplete'], ['therefore'], ['quote'], ['cannot'], ['printed'], ['sent'], ['customer'], ['web']] k: 7896 len: <class 'list'> Data: ['hostname', 'germany', 'de', 'patching', 'antivirus', 'sw', 'production', 'inactive', 'since', 'est', 'germany', 'patching', 'antivirus', 'sw', 'server', 'hostname', 'show', 'since', 'est', 'kindly', 'check'] processed_text: ['hostname', 'germany', 'de', 'patching', 'antivirus', 'sw', 'production', 'inactive', 'since', 'est', 'germany', 'patching', 'antivirus', 'sw', 'server', 'hostname', 'show', 'since', 'est', 'kindly', 'check'] list_processed_text: [['hostname'], ['germany'], ['de'], ['patching'], ['antivirus'], ['sw'], ['production'], ['inactive'], ['since'], ['est'], ['germany'], ['patching'], ['antivirus'], ['sw'], ['server'], ['hostname'], ['show'], ['since'], ['est'], ['kindly'], ['check']] k: 7897 len: <class 'list'> Data: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] processed_text: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'average', 'sample', 'total', 'cpu', 'error', 'threshold'] list_processed_text: [['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['average'], ['sample'], ['total'], ['cpu'], ['error'], ['threshold'], ['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['average'], ['sample'], ['total'], ['cpu'], ['error'], ['threshold']] k: 7898 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'chopamghy', 'transaction', 'code', 'user', 'need', 'working', 'spro', 'describe', 'issue', 'need', 'access', 'spro', 'transaction', 'sid', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'milyhyakrp'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'chopamghy', 'transaction', 'code', 'user', 'need', 'working', 'spro', 'describe', 'issue', 'need', 'access', 'spro', 'transaction', 'sid', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user', 'milyhyakrp'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['chopamghy'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['spro'], ['describe'], ['issue'], ['need'], ['access'], ['spro'], ['transaction'], ['sid'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user'], ['milyhyakrp']] k: 7899 len: <class 'list'> Data: ['engineering', 'tool', 'password', 'entered', 'incorrectly', 'part,', 'please', 'reset', 'password', 'engineering', 'tool', 'erp', 'thanks'] processed_text: ['engineering', 'tool', 'password', 'entered', 'incorrectly', 'part,', 'please', 'reset', 'password', 'engineering', 'tool', 'erp', 'thanks'] list_processed_text: [['engineering'], ['tool'], ['password'], ['entered'], ['incorrectly'], ['part,'], ['please'], ['reset'], ['password'], ['engineering'], ['tool'], ['erp'], ['thanks']] k: 7900 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 7901 len: <class 'list'> Data: ['creating', 'order', 'distributor', 'tool', 'inco', 'shipping', 'condition', 'coming', 'wrong', 'rabhtui', 'look', 'like', 'still', 'web', 'issue', 'folk', 'warehouse', 'seen', 'instance', 'carrier', 'carrier', 'tcode', 'inco', 'sc', 'cip', 'ki', 'trying', 'change', 'ups', 'ground', 'one', 'case', 'look', 'like', 'inco', 'sc', 'pulling', 'sold', 'carrier', 'coming', 'ship', 'another', 'look', 'like', 'customer', 'changed', 'carrier', 'flat', 'rate', 'already', 'see', 'carrier', 'option', 'listed', 'default', 'either', 'sold', 'ship', 'two', 'example', 'warehouse', 'delivery', 'sale', 'order', 'came', 'cip', 'tfedpnd', 'sold', 'cip', 'tupsgrnd', 'ship', 'fca', 'tfedground', 'acct', 'came', 'cip', 'tfedground', 'sold', 'cip', 'tupsgrnd', 'ship', 'fca', 'tup', 'acct'] processed_text: ['creating', 'order', 'distributor', 'tool', 'inco', 'shipping', 'condition', 'coming', 'wrong', 'rabhtui', 'look', 'like', 'still', 'web', 'issue', 'folk', 'warehouse', 'seen', 'instance', 'carrier', 'carrier', 'tcode', 'inco', 'sc', 'cip', 'ki', 'trying', 'change', 'ups', 'ground', 'one', 'case', 'look', 'like', 'inco', 'sc', 'pulling', 'sold', 'carrier', 'coming', 'ship', 'another', 'look', 'like', 'customer', 'changed', 'carrier', 'flat', 'rate', 'already', 'see', 'carrier', 'option', 'listed', 'default', 'either', 'sold', 'ship', 'two', 'example', 'warehouse', 'delivery', 'sale', 'order', 'came', 'cip', 'tfedpnd', 'sold', 'cip', 'tupsgrnd', 'ship', 'fca', 'tfedground', 'acct', 'came', 'cip', 'tfedground', 'sold', 'cip', 'tupsgrnd', 'ship', 'fca', 'tup', 'acct'] list_processed_text: [['creating'], ['order'], ['distributor'], ['tool'], ['inco'], ['shipping'], ['condition'], ['coming'], ['wrong'], ['rabhtui'], ['look'], ['like'], ['still'], ['web'], ['issue'], ['folk'], ['warehouse'], ['seen'], ['instance'], ['carrier'], ['carrier'], ['tcode'], ['inco'], ['sc'], ['cip'], ['ki'], ['trying'], ['change'], ['ups'], ['ground'], ['one'], ['case'], ['look'], ['like'], ['inco'], ['sc'], ['pulling'], ['sold'], ['carrier'], ['coming'], ['ship'], ['another'], ['look'], ['like'], ['customer'], ['changed'], ['carrier'], ['flat'], ['rate'], ['already'], ['see'], ['carrier'], ['option'], ['listed'], ['default'], ['either'], ['sold'], ['ship'], ['two'], ['example'], ['warehouse'], ['delivery'], ['sale'], ['order'], ['came'], ['cip'], ['tfedpnd'], ['sold'], ['cip'], ['tupsgrnd'], ['ship'], ['fca'], ['tfedground'], ['acct'], ['came'], ['cip'], ['tfedground'], ['sold'], ['cip'], ['tupsgrnd'], ['ship'], ['fca'], ['tup'], ['acct']] k: 7902 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 7903 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'reporting', 'tool', 'prod', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['reporting'], ['tool'], ['prod'], ['inc']] k: 7904 len: <class 'list'> Data: ['enterprise', 'scanner', 'working', 'enterprise', 'scanner', 'working'] processed_text: ['enterprise', 'scanner', 'working', 'enterprise', 'scanner', 'working'] list_processed_text: [['enterprise'], ['scanner'], ['working'], ['enterprise'], ['scanner'], ['working']] k: 7905 len: <class 'list'> Data: ['mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'acc', 'grhryueg', 'dewicrth', 'nwfodmhc', 'exurcwkm', 'rad', 'fwd', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'please', 'unblock', 'usa', 'access', 'new', 'phone'] processed_text: ['mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'acc', 'grhryueg', 'dewicrth', 'nwfodmhc', 'exurcwkm', 'rad', 'fwd', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'importance', 'high', 'please', 'unblock', 'usa', 'access', 'new', 'phone'] list_processed_text: [['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['acc'], ['grhryueg'], ['dewicrth'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['fwd'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['access'], ['importance'], ['high'], ['please'], ['unblock'], ['usa'], ['access'], ['new'], ['phone']] k: 7906 len: <class 'list'> Data: ['getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'name', 'kargthythik', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'location'] processed_text: ['getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'name', 'kargthythik', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'location'] list_processed_text: [['getting'], ['old'], ['mail'], ['outlook'], ['kindly'], ['needful'], ['restore'], ['help'], ['store'], ['separate'], ['name'], ['kargthythik'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['getting'], ['old'], ['mail'], ['outlook'], ['kindly'], ['needful'], ['restore'], ['help'], ['store'], ['separate'], ['location']] k: 7907 len: <class 'list'> Data: ['unable', 'login', 'vpn', 'reset', 'password', 'unable', 'login', 'vpn', 'reset', 'password'] processed_text: ['unable', 'login', 'vpn', 'reset', 'password', 'unable', 'login', 'vpn', 'reset', 'password'] list_processed_text: [['unable'], ['login'], ['vpn'], ['reset'], ['password'], ['unable'], ['login'], ['vpn'], ['reset'], ['password']] k: 7908 len: <class 'list'> Data: ['bex', 'password', 'locked', 'due', 'wrong', 'typing', 'please', 'reset', 'password', 'name', 'zcqnuawo', 'ztskpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'bex', 'password', 'locked', 'due', 'wrong', 'typing', 'please', 'reset', 'password'] processed_text: ['bex', 'password', 'locked', 'due', 'wrong', 'typing', 'please', 'reset', 'password', 'name', 'zcqnuawo', 'ztskpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'bex', 'password', 'locked', 'due', 'wrong', 'typing', 'please', 'reset', 'password'] list_processed_text: [['bex'], ['password'], ['locked'], ['due'], ['wrong'], ['typing'], ['please'], ['reset'], ['password'], ['name'], ['zcqnuawo'], ['ztskpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['bex'], ['password'], ['locked'], ['due'], ['wrong'], ['typing'], ['please'], ['reset'], ['password']] k: 7909 len: <class 'list'> Data: ['email', 'back', 'problem', 'outlook', 'hi', 'getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'location'] processed_text: ['email', 'back', 'problem', 'outlook', 'hi', 'getting', 'old', 'mail', 'outlook', 'kindly', 'needful', 'restore', 'help', 'store', 'separate', 'location'] list_processed_text: [['email'], ['back'], ['problem'], ['outlook'], ['hi'], ['getting'], ['old'], ['mail'], ['outlook'], ['kindly'], ['needful'], ['restore'], ['help'], ['store'], ['separate'], ['location']] k: 7910 len: <class 'list'> Data: ['pc', 'made', 'stand', 'dear', 'sir', 'pc', 'number', 'awyw', 'made', 'stand', 'connected', 'network', 'using', 'cmm', 'machine', 'require', 'separate', 'pc', 'kindly', 'needful'] processed_text: ['pc', 'made', 'stand', 'dear', 'sir', 'pc', 'number', 'awyw', 'made', 'stand', 'connected', 'network', 'using', 'cmm', 'machine', 'require', 'separate', 'pc', 'kindly', 'needful'] list_processed_text: [['pc'], ['made'], ['stand'], ['dear'], ['sir'], ['pc'], ['number'], ['awyw'], ['made'], ['stand'], ['connected'], ['network'], ['using'], ['cmm'], ['machine'], ['require'], ['separate'], ['pc'], ['kindly'], ['needful']] k: 7911 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7912 len: <class 'list'> Data: ['cannot', 'open', 'engineering', 'tool', 'hello', 'try', 'open', 'engineering', 'tool', 'get', 'delete', 'engineering', 'tool', 'computer', 'reinstalled', 'still', 'get'] processed_text: ['cannot', 'open', 'engineering', 'tool', 'hello', 'try', 'open', 'engineering', 'tool', 'get', 'delete', 'engineering', 'tool', 'computer', 'reinstalled', 'still', 'get'] list_processed_text: [['cannot'], ['open'], ['engineering'], ['tool'], ['hello'], ['try'], ['open'], ['engineering'], ['tool'], ['get'], ['delete'], ['engineering'], ['tool'], ['computer'], ['reinstalled'], ['still'], ['get']] k: 7913 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hoti', 'abended', 'job', 'job', 'scheduler', 'sid', 'hoti'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hoti', 'abended', 'job', 'job', 'scheduler', 'sid', 'hoti'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hoti'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hoti']] k: 7914 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hotf', 'abended', 'job', 'job', 'scheduler', 'sid', 'hotf'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hotf']] k: 7915 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp']] k: 7916 len: <class 'list'> Data: ['bex', 'cannot', 'convert', 'excel', 'sheet', 'bex', 'cannot', 'convert', 'excel', 'sheet'] processed_text: ['bex', 'cannot', 'convert', 'excel', 'sheet', 'bex', 'cannot', 'convert', 'excel', 'sheet'] list_processed_text: [['bex'], ['cannot'], ['convert'], ['excel'], ['sheet'], ['bex'], ['cannot'], ['convert'], ['excel'], ['sheet']] k: 7917 len: <class 'list'> Data: ['domain', 'account', 'unlock', 'domain', 'account', 'unlock'] processed_text: ['domain', 'account', 'unlock', 'domain', 'account', 'unlock'] list_processed_text: [['domain'], ['account'], ['unlock'], ['domain'], ['account'], ['unlock']] k: 7918 len: <class 'list'> Data: ['trying', 'help', 'nkademwy', 'ihsepkwz', 'log', 'oneteam', 'update', 'direct', 'deposit', 'information', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hello', 'christgry'] processed_text: ['trying', 'help', 'nkademwy', 'ihsepkwz', 'log', 'oneteam', 'update', 'direct', 'deposit', 'information', 'ic', 'welcome', 'next', 'available', 'agent', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'joined', 'conversation', 'rakthyesh', 'ramdntythanjesh', 'hello', 'christgry'] list_processed_text: [['trying'], ['help'], ['nkademwy'], ['ihsepkwz'], ['log'], ['oneteam'], ['update'], ['direct'], ['deposit'], ['information'], ['ic'], ['welcome'], ['next'], ['available'], ['agent'], ['shortly'], ['interaction'], ['alerting'], ['agent'], ['website'], ['visitor'], ['joined'], ['conversation'], ['rakthyesh'], ['ramdntythanjesh'], ['hello'], ['christgry']] k: 7919 len: <class 'list'> Data: ['unable', 'view', 'screen', 'monitor', 'lid', 'closed', 'unable', 'view', 'screen', 'monitor', 'lid', 'closed'] processed_text: ['unable', 'view', 'screen', 'monitor', 'lid', 'closed', 'unable', 'view', 'screen', 'monitor', 'lid', 'closed'] list_processed_text: [['unable'], ['view'], ['screen'], ['monitor'], ['lid'], ['closed'], ['unable'], ['view'], ['screen'], ['monitor'], ['lid'], ['closed']] k: 7920 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7921 len: <class 'list'> Data: ['sid', 'vf', 'vf', 'price', 'problem', 'zor', 'agains', 'zf', 'inwarehouse', 'tool', 'facing', 'problem', 'inwarehouse', 'tool', 'price', 'order', 'correct', 'inwarehouse', 'tool', 'another', 'price', 'example', 'order', 'confirmed', 'delivery', 'inwarehouse', 'tool', 'example', 'order', 'confirmed', 'delivery', 'inwarehouse', 'tool', 'must', 'issue', 'inwarehouse', 'tool', 'hour', 'import', 'payment', 'moment', 'stopped', 'process'] processed_text: ['sid', 'vf', 'vf', 'price', 'problem', 'zor', 'agains', 'zf', 'inwarehouse', 'tool', 'facing', 'problem', 'inwarehouse', 'tool', 'price', 'order', 'correct', 'inwarehouse', 'tool', 'another', 'price', 'example', 'order', 'confirmed', 'delivery', 'inwarehouse', 'tool', 'example', 'order', 'confirmed', 'delivery', 'inwarehouse', 'tool', 'must', 'issue', 'inwarehouse', 'tool', 'hour', 'import', 'payment', 'moment', 'stopped', 'process'] list_processed_text: [['sid'], ['vf'], ['vf'], ['price'], ['problem'], ['zor'], ['agains'], ['zf'], ['inwarehouse'], ['tool'], ['facing'], ['problem'], ['inwarehouse'], ['tool'], ['price'], ['order'], ['correct'], ['inwarehouse'], ['tool'], ['another'], ['price'], ['example'], ['order'], ['confirmed'], ['delivery'], ['inwarehouse'], ['tool'], ['example'], ['order'], ['confirmed'], ['delivery'], ['inwarehouse'], ['tool'], ['must'], ['issue'], ['inwarehouse'], ['tool'], ['hour'], ['import'], ['payment'], ['moment'], ['stopped'], ['process']] k: 7922 len: <class 'list'> Data: ['cannot', 'load', 'finance', 'app', 'hello', 'time', 'select', 'oracle', 'enterprise', 'bar', 'get', 'following', 'error', 'kind'] processed_text: ['cannot', 'load', 'finance', 'app', 'hello', 'time', 'select', 'oracle', 'enterprise', 'bar', 'get', 'following', 'error', 'kind'] list_processed_text: [['cannot'], ['load'], ['finance'], ['app'], ['hello'], ['time'], ['select'], ['oracle'], ['enterprise'], ['bar'], ['get'], ['following'], ['error'], ['kind']] k: 7923 len: <class 'list'> Data: ['employment', 'status', 'employee', 'termination', 'user', 'dbsgicet', 'xzopjhlq', 'vvgtyhpej', 'employee', 'last', 'name', 'peghyurozich', 'employee', 'first', 'name', 'jpsgeghtyui', 'employee', 'number', 'employee', 'location', 'usa', 'manager', 'name', 'bwfhtumx', 'japznrvb', 'employee', 'cost', 'center', 'bdf', 'employee', 'self', 'service', 'es', 'user', 'employee', 'last', 'day', 'work', 'special', 'instruction'] processed_text: ['employment', 'status', 'employee', 'termination', 'user', 'dbsgicet', 'xzopjhlq', 'vvgtyhpej', 'employee', 'last', 'name', 'peghyurozich', 'employee', 'first', 'name', 'jpsgeghtyui', 'employee', 'number', 'employee', 'location', 'usa', 'manager', 'name', 'bwfhtumx', 'japznrvb', 'employee', 'cost', 'center', 'bdf', 'employee', 'self', 'service', 'es', 'user', 'employee', 'last', 'day', 'work', 'special', 'instruction'] list_processed_text: [['employment'], ['status'], ['employee'], ['termination'], ['user'], ['dbsgicet'], ['xzopjhlq'], ['vvgtyhpej'], ['employee'], ['last'], ['name'], ['peghyurozich'], ['employee'], ['first'], ['name'], ['jpsgeghtyui'], ['employee'], ['number'], ['employee'], ['location'], ['usa'], ['manager'], ['name'], ['bwfhtumx'], ['japznrvb'], ['employee'], ['cost'], ['center'], ['bdf'], ['employee'], ['self'], ['service'], ['es'], ['user'], ['employee'], ['last'], ['day'], ['work'], ['special'], ['instruction']] k: 7924 len: <class 'list'> Data: ['reset', 'password', 'nathyusha', 'smoltelephony', 'software', 'using', 'password', 'management', 'tool', 'password', 'reset', 'globalview', 'prtgghjk', 'reset', 'please'] processed_text: ['reset', 'password', 'nathyusha', 'smoltelephony', 'software', 'using', 'password', 'management', 'tool', 'password', 'reset', 'globalview', 'prtgghjk', 'reset', 'please'] list_processed_text: [['reset'], ['password'], ['nathyusha'], ['smoltelephony'], ['software'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['globalview'], ['prtgghjk'], ['reset'], ['please']] k: 7925 len: <class 'list'> Data: ['snmp', 'agent', 'responding', 'infoblox', 'usa', 'datacenter', 'primary', 'dns', 'snmp', 'agent', 'responding', 'infoblox', 'usa', 'datacenter', 'primary', 'dns'] processed_text: ['snmp', 'agent', 'responding', 'infoblox', 'usa', 'datacenter', 'primary', 'dns', 'snmp', 'agent', 'responding', 'infoblox', 'usa', 'datacenter', 'primary', 'dns'] list_processed_text: [['snmp'], ['agent'], ['responding'], ['infoblox'], ['usa'], ['datacenter'], ['primary'], ['dns'], ['snmp'], ['agent'], ['responding'], ['infoblox'], ['usa'], ['datacenter'], ['primary'], ['dns']] k: 7926 len: <class 'list'> Data: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'successful', 'completion', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'successful', 'completion', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['successful'], ['completion'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 7927 len: <class 'list'> Data: ['please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'rabkypet', 'zocjdutp', 'id', 'fothrmijm', 'ltmoubvy', 'utrimobs', 'gomeshthyru', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'rabkypet', 'zocjdutp', 'id', 'fothrmijm', 'ltmoubvy', 'utrimobs', 'gomeshthyru'] processed_text: ['please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'rabkypet', 'zocjdutp', 'id', 'fothrmijm', 'ltmoubvy', 'utrimobs', 'gomeshthyru', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'rabkypet', 'zocjdutp', 'id', 'fothrmijm', 'ltmoubvy', 'utrimobs', 'gomeshthyru'] list_processed_text: [['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['rabkypet'], ['zocjdutp'], ['id'], ['fothrmijm'], ['ltmoubvy'], ['utrimobs'], ['gomeshthyru'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['rabkypet'], ['zocjdutp'], ['id'], ['fothrmijm'], ['ltmoubvy'], ['utrimobs'], ['gomeshthyru']] k: 7928 len: <class 'list'> Data: ['circuit', 'outage', 'usa', 'pa', 'plant', 'comcast', 'secondary', 'circuit', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'usa', 'pa', 'plant', 'comcast', 'secondary', 'circuit', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['usa'], ['pa'], ['plant'], ['comcast'], ['secondary'], ['circuit'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 7929 len: <class 'list'> Data: ['excel', 'continues', 'crash', 'workbook', 'open', 'error', 'message', 'excel', 'cannot', 'complete', 'task', 'available', 'resource', 'choose', 'le', 'data', 'close', 'application', 'also', 'excel', 'stopped', 'working', 'beshryued', 'area', 'screen', 'distorted', 'screen', 'refresh', 'excel', 'view', 'pivot', 'table', 'complex', 'macro', 'use', 'excel', 'outlook', 'skype', 'powerpoint', 'open', 'laptop', 'fan', 'run', 'constantly', 'dock', 'excel', 'use'] processed_text: ['excel', 'continues', 'crash', 'workbook', 'open', 'error', 'message', 'excel', 'cannot', 'complete', 'task', 'available', 'resource', 'choose', 'le', 'data', 'close', 'application', 'also', 'excel', 'stopped', 'working', 'beshryued', 'area', 'screen', 'distorted', 'screen', 'refresh', 'excel', 'view', 'pivot', 'table', 'complex', 'macro', 'use', 'excel', 'outlook', 'skype', 'powerpoint', 'open', 'laptop', 'fan', 'run', 'constantly', 'dock', 'excel', 'use'] list_processed_text: [['excel'], ['continues'], ['crash'], ['workbook'], ['open'], ['error'], ['message'], ['excel'], ['cannot'], ['complete'], ['task'], ['available'], ['resource'], ['choose'], ['le'], ['data'], ['close'], ['application'], ['also'], ['excel'], ['stopped'], ['working'], ['beshryued'], ['area'], ['screen'], ['distorted'], ['screen'], ['refresh'], ['excel'], ['view'], ['pivot'], ['table'], ['complex'], ['macro'], ['use'], ['excel'], ['outlook'], ['skype'], ['powerpoint'], ['open'], ['laptop'], ['fan'], ['run'], ['constantly'], ['dock'], ['excel'], ['use']] k: 7930 len: <class 'list'> Data: ['update', 'dns', 'printer', 'update', 'dns', 'printer', 'model', 'hp', 'laser', 'jet', 'dn', 'dynamic', 'ip', 'address', 'fqdn', 'prtqi', 'short', 'name', 'sid', 'print', 'server', 'hostname'] processed_text: ['update', 'dns', 'printer', 'update', 'dns', 'printer', 'model', 'hp', 'laser', 'jet', 'dn', 'dynamic', 'ip', 'address', 'fqdn', 'prtqi', 'short', 'name', 'sid', 'print', 'server', 'hostname'] list_processed_text: [['update'], ['dns'], ['printer'], ['update'], ['dns'], ['printer'], ['model'], ['hp'], ['laser'], ['jet'], ['dn'], ['dynamic'], ['ip'], ['address'], ['fqdn'], ['prtqi'], ['short'], ['name'], ['sid'], ['print'], ['server'], ['hostname']] k: 7931 len: <class 'list'> Data: ['per', 'inc', 'security', 'incident', 'possible', 'trojan', 'infection', 'host', 'gzhapcld', 'fdigznbk', 'jenfrgryui', 'lu', 'sam', 'wanrtyg', 'stefytyn', 'shi', 'cothyshy', 'wu', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'nyrjkctu', 'tbhkenlo', 'ugyothfz', 'ugrmkdhx', 'suhtnhdyio', 'psfshytd', 'kathght', 'shfhyw', 'bhayhtrathramdnty', 'mamilujli', 'inc', 'security', 'incident', 'possible', 'trojan', 'infection', 'host', 'hello', 'jenfrgryui', 'getting', 'alert', 'possible', 'downloader', 'trojan', 'user', 'id', 'lughjm', 'device', 'sourcing', 'destined', 'host', 'indicating', 'host', 'infected', 'malware', 'due', 'nature', 'threat', 'difficult', 'detect', 'compromise', 'detection', 'difficulty', 'severity', 'threat', 'dell', 'secureworks', 'recommends', 'remove', 'pc', 'network', 'earliest', 'format', 'hard', 'drive', 'install', 'new', 'system', 'reliable', 'attempt', 'clean', 'virus', 'meantime', 'high', 'severity', 'issue', 'moving', 'corresponding', 'account', 'user', 'id', 'lughjm', 'palo', 'virus', 'quarantine', 'group', 'internet', 'access', 'common', 'way', 'computer', 'become', 'infected', 'listed', 'please', 'inform', 'team', 'know', 'pc', 'become', 'infected', 'using', 'portable', 'usb', 'drive', 'also', 'known', 'pen', 'drive', 'thumb', 'drive', 'clicking', 'phishing', 'email', 'link', 'visiting', 'website', 'compromised', 'hacker', 'hello', 'apac', 'pc', 'service', 'pc', 'imaged', 'immediate', 'effect', 'please', 'let', 'u', 'know', 'created', 'ticketing', 'tool', 'ticket', 'assigned', 'europe', 'pc', 'service', 'inc'] processed_text: ['per', 'inc', 'security', 'incident', 'possible', 'trojan', 'infection', 'host', 'gzhapcld', 'fdigznbk', 'jenfrgryui', 'lu', 'sam', 'wanrtyg', 'stefytyn', 'shi', 'cothyshy', 'wu', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'nyrjkctu', 'tbhkenlo', 'ugyothfz', 'ugrmkdhx', 'suhtnhdyio', 'psfshytd', 'kathght', 'shfhyw', 'bhayhtrathramdnty', 'mamilujli', 'inc', 'security', 'incident', 'possible', 'trojan', 'infection', 'host', 'hello', 'jenfrgryui', 'getting', 'alert', 'possible', 'downloader', 'trojan', 'user', 'id', 'lughjm', 'device', 'sourcing', 'destined', 'host', 'indicating', 'host', 'infected', 'malware', 'due', 'nature', 'threat', 'difficult', 'detect', 'compromise', 'detection', 'difficulty', 'severity', 'threat', 'dell', 'secureworks', 'recommends', 'remove', 'pc', 'network', 'earliest', 'format', 'hard', 'drive', 'install', 'new', 'system', 'reliable', 'attempt', 'clean', 'virus', 'meantime', 'high', 'severity', 'issue', 'moving', 'corresponding', 'account', 'user', 'id', 'lughjm', 'palo', 'virus', 'quarantine', 'group', 'internet', 'access', 'common', 'way', 'computer', 'become', 'infected', 'listed', 'please', 'inform', 'team', 'know', 'pc', 'become', 'infected', 'using', 'portable', 'usb', 'drive', 'also', 'known', 'pen', 'drive', 'thumb', 'drive', 'clicking', 'phishing', 'email', 'link', 'visiting', 'website', 'compromised', 'hacker', 'hello', 'apac', 'pc', 'service', 'pc', 'imaged', 'immediate', 'effect', 'please', 'let', 'u', 'know', 'created', 'ticketing', 'tool', 'ticket', 'assigned', 'europe', 'pc', 'service', 'inc'] list_processed_text: [['per'], ['inc'], ['security'], ['incident'], ['possible'], ['trojan'], ['infection'], ['host'], ['gzhapcld'], ['fdigznbk'], ['jenfrgryui'], ['lu'], ['sam'], ['wanrtyg'], ['stefytyn'], ['shi'], ['cothyshy'], ['wu'], ['qfrntose'], ['ivnhumzjalakrisyuhnyrtn'], ['nyrjkctu'], ['tbhkenlo'], ['ugyothfz'], ['ugrmkdhx'], ['suhtnhdyio'], ['psfshytd'], ['kathght'], ['shfhyw'], ['bhayhtrathramdnty'], ['mamilujli'], ['inc'], ['security'], ['incident'], ['possible'], ['trojan'], ['infection'], ['host'], ['hello'], ['jenfrgryui'], ['getting'], ['alert'], ['possible'], ['downloader'], ['trojan'], ['user'], ['id'], ['lughjm'], ['device'], ['sourcing'], ['destined'], ['host'], ['indicating'], ['host'], ['infected'], ['malware'], ['due'], ['nature'], ['threat'], ['difficult'], ['detect'], ['compromise'], ['detection'], ['difficulty'], ['severity'], ['threat'], ['dell'], ['secureworks'], ['recommends'], ['remove'], ['pc'], ['network'], ['earliest'], ['format'], ['hard'], ['drive'], ['install'], ['new'], ['system'], ['reliable'], ['attempt'], ['clean'], ['virus'], ['meantime'], ['high'], ['severity'], ['issue'], ['moving'], ['corresponding'], ['account'], ['user'], ['id'], ['lughjm'], ['palo'], ['virus'], ['quarantine'], ['group'], ['internet'], ['access'], ['common'], ['way'], ['computer'], ['become'], ['infected'], ['listed'], ['please'], ['inform'], ['team'], ['know'], ['pc'], ['become'], ['infected'], ['using'], ['portable'], ['usb'], ['drive'], ['also'], ['known'], ['pen'], ['drive'], ['thumb'], ['drive'], ['clicking'], ['phishing'], ['email'], ['link'], ['visiting'], ['website'], ['compromised'], ['hacker'], ['hello'], ['apac'], ['pc'], ['service'], ['pc'], ['imaged'], ['immediate'], ['effect'], ['please'], ['let'], ['u'], ['know'], ['created'], ['ticketing'], ['tool'], ['ticket'], ['assigned'], ['europe'], ['pc'], ['service'], ['inc']] k: 7932 len: <class 'list'> Data: ['security', 'incident', 'dsw', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'hostname', 'santiago', 'south', 'amerirtca', 'backup', 'exec', 'server', 'user', 'name', 'uidgt', 'olibercsu', 'olvidley', 'location', 'santiago', 'south', 'amerirtca', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'available', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] processed_text: ['security', 'incident', 'dsw', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'hostname', 'santiago', 'south', 'amerirtca', 'backup', 'exec', 'server', 'user', 'name', 'uidgt', 'olibercsu', 'olvidley', 'location', 'santiago', 'south', 'amerirtca', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'available', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] list_processed_text: [['security'], ['incident'], ['dsw'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['source'], ['ip'], ['system'], ['name'], ['hostname'], ['santiago'], ['south'], ['amerirtca'], ['backup'], ['exec'], ['server'], ['user'], ['name'], ['uidgt'], ['olibercsu'], ['olvidley'], ['location'], ['santiago'], ['south'], ['amerirtca'], ['sm'], ['status'], ['see'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['content'], ['version'], ['fmxcnwpu'], ['tcwrdqboinition'], ['version'], ['sequence'], ['host'], ['integrity'], ['content'], ['available'], ['reputation'], ['setting'], ['ap'], ['portal'], ['list'], ['intrusion'], ['prevention'], ['signature'], ['power'], ['eraser'], ['definition'], ['revocation'], ['content'], ['eraser'], ['engine'], ['sonar'], ['content'], ['extended'], ['file'], ['attribute'], ['signature'], ['symantec'], ['permitted'], ['application'], ['list'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['dell'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['sharing'], ['additional'], ['information'], ['port'], ['best'], ['practice'], ['found'], ['following'], ['site'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['eventtypeid'], ['ctainstanceid'], ['foreseeglobalmodelassessmt'], ['unknown'], ['irreceivedtime'], ['foreseemalprobglobalmodel'], ['inspectoreventid'], ['eventtypepriority'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['globalmodelversion'], ['null'], ['empty'], ['model'], ['found'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['eventtypeid'], ['ctainstanceid'], ['foreseeglobalmodelassessmt'], ['unknown'], ['irreceivedtime'], ['foreseemalprobglobalmodel'], ['inspectoreventid'], ['eventtypepriority'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['globalmodelversion'], ['null'], ['empty'], ['model'], ['found'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside']] k: 7933 len: <class 'list'> Data: ['hostname', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found', 'observing', 'alert', 'reporting', 'tool', 'since', 'pm', 'et', 'note', 'opened', 'ticket', 'inc', 'earlier', 'issue', 'look', 'like', 'time', 'issue', 'resolved', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found'] processed_text: ['hostname', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found', 'observing', 'alert', 'reporting', 'tool', 'since', 'pm', 'et', 'note', 'opened', 'ticket', 'inc', 'earlier', 'issue', 'look', 'like', 'time', 'issue', 'resolved', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found'] list_processed_text: [['hostname'], ['epmsystem'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['epmsystem'], ['exe'], ['expected'], ['found'], ['observing'], ['alert'], ['reporting'], ['tool'], ['since'], ['pm'], ['et'], ['note'], ['opened'], ['ticket'], ['inc'], ['earlier'], ['issue'], ['look'], ['like'], ['time'], ['issue'], ['resolved'], ['epmsystem'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['epmsystem'], ['exe'], ['expected'], ['found']] k: 7934 len: <class 'list'> Data: ['security', 'incident', 'dsw', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'hostname', 'santiago', 'south', 'amerirtca', 'backup', 'exec', 'server', 'user', 'name', 'uidgt', 'olibercsu', 'olvidley', 'location', 'santiago', 'south', 'amerirtca', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'available', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] processed_text: ['security', 'incident', 'dsw', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'source', 'ip', 'system', 'name', 'hostname', 'santiago', 'south', 'amerirtca', 'backup', 'exec', 'server', 'user', 'name', 'uidgt', 'olibercsu', 'olvidley', 'location', 'santiago', 'south', 'amerirtca', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'available', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'incident', 'overview', 'detected', 'least', 'occurrence', 'firewall', 'company', 'internal', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'alert', 'traffic', 'blocked', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'automatically', 'resolve', 'alert', 'traffic', 'blocked', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'dell', 'secureworks', 'soc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'additional', 'information', 'port', 'best', 'practice', 'found', 'following', 'site', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xedbf', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'destination', 'hostname', 'device', 'ip', 'device', 'name', 'company', 'internal', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'eventtypeid', 'ctainstanceid', 'foreseeglobalmodelassessmt', 'unknown', 'irreceivedtime', 'foreseemalprobglobalmodel', 'inspectoreventid', 'eventtypepriority', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'globalmodelversion', 'null', 'empty', 'model', 'found', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'sartlgeo', 'lhqksbdx', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'xacbc', 'asa', 'inbound', 'tcp', 'connection', 'denied', 'flag', 'syn', 'interface', 'inside'] list_processed_text: [['security'], ['incident'], ['dsw'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['source'], ['ip'], ['system'], ['name'], ['hostname'], ['santiago'], ['south'], ['amerirtca'], ['backup'], ['exec'], ['server'], ['user'], ['name'], ['uidgt'], ['olibercsu'], ['olvidley'], ['location'], ['santiago'], ['south'], ['amerirtca'], ['sm'], ['status'], ['see'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['content'], ['version'], ['fmxcnwpu'], ['tcwrdqboinition'], ['version'], ['sequence'], ['host'], ['integrity'], ['content'], ['available'], ['reputation'], ['setting'], ['ap'], ['portal'], ['list'], ['intrusion'], ['prevention'], ['signature'], ['power'], ['eraser'], ['definition'], ['revocation'], ['content'], ['eraser'], ['engine'], ['sonar'], ['content'], ['extended'], ['file'], ['attribute'], ['signature'], ['symantec'], ['permitted'], ['application'], ['list'], ['incident'], ['overview'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['alert'], ['traffic'], ['blocked'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['automatically'], ['resolve'], ['alert'], ['traffic'], ['blocked'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['dell'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['sharing'], ['additional'], ['information'], ['port'], ['best'], ['practice'], ['found'], ['following'], ['site'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['eventtypeid'], ['ctainstanceid'], ['foreseeglobalmodelassessmt'], ['unknown'], ['irreceivedtime'], ['foreseemalprobglobalmodel'], ['inspectoreventid'], ['eventtypepriority'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['globalmodelversion'], ['null'], ['empty'], ['model'], ['found'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xedbf'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['destination'], ['hostname'], ['device'], ['ip'], ['device'], ['name'], ['company'], ['internal'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['eventtypeid'], ['ctainstanceid'], ['foreseeglobalmodelassessmt'], ['unknown'], ['irreceivedtime'], ['foreseemalprobglobalmodel'], ['inspectoreventid'], ['eventtypepriority'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['globalmodelversion'], ['null'], ['empty'], ['model'], ['found'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['sartlgeo'], ['lhqksbdx'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['xacbc'], ['asa'], ['inbound'], ['tcp'], ['connection'], ['denied'], ['flag'], ['syn'], ['interface'], ['inside']] k: 7935 len: <class 'list'> Data: ['es', 'password', 'reset', 'es', 'password', 'reset'] processed_text: ['es', 'password', 'reset', 'es', 'password', 'reset'] list_processed_text: [['es'], ['password'], ['reset'], ['es'], ['password'], ['reset']] k: 7936 len: <class 'list'> Data: ['add', 'printer', 'prtqi', 'hostname', 'add', 'printer', 'prtqi', 'hostname', 'bit', 'driver', 'model', 'hp', 'laser', 'jet', 'dn', 'dynamic', 'ip', 'address', 'fqdn', 'prtqi', 'short', 'name', 'sid', 'print', 'server', 'hostname'] processed_text: ['add', 'printer', 'prtqi', 'hostname', 'add', 'printer', 'prtqi', 'hostname', 'bit', 'driver', 'model', 'hp', 'laser', 'jet', 'dn', 'dynamic', 'ip', 'address', 'fqdn', 'prtqi', 'short', 'name', 'sid', 'print', 'server', 'hostname'] list_processed_text: [['add'], ['printer'], ['prtqi'], ['hostname'], ['add'], ['printer'], ['prtqi'], ['hostname'], ['bit'], ['driver'], ['model'], ['hp'], ['laser'], ['jet'], ['dn'], ['dynamic'], ['ip'], ['address'], ['fqdn'], ['prtqi'], ['short'], ['name'], ['sid'], ['print'], ['server'], ['hostname']] k: 7937 len: <class 'list'> Data: ['security', 'incident', 'possible', 'trojan', 'infection', 'host', 'source', 'ip', 'dest', 'ip', 'system', 'name', 'apul', 'user', 'name', 'jenfrgryui', 'lu', 'location', 'singapore', 'sm', 'status', 'given', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'detail', 'event', 'detail', 'event', 'id', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xebc', 'ack', 'xece', 'win', 'xb', 'tcplen', 'pcap', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'http', 'aconnection', 'keep', 'alive', 'acache', 'control', 'cache', 'ahost', 'pcap', 'ex', 'http', 'uri', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'ex', 'http', 'hostname', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'b', 'apul', 'via', 'eth', 'relay', 'lease', 'duration', 'refererproxycorrelationurl', 'null', 'ileatdatacenter', 'true', 'host', 'cv', 'foreseeconndirection', 'outgoing', 'foreseeexternalip', 'eventtypeid', 'netacuity', 'destination', 'isp', 'jin', 'rong', 'street', 'srchostname', 'apul', 'logtimestamp', 'urlhost', 'proto', 'tcp', 'urlfullpath', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'unique', 'event', 'hash', 'device', 'network', 'type', 'internal', 'srcport', 'urlcorrelation', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'dstip', 'httpversion', 'http', 'url', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'vendorpriority', 'httpmethod', 'get', 'ontologyid', 'vendorreference', 'vid', 'eventtypepriority', 'devip', 'source', 'network', 'type', 'internal', 'inspectorruleid', 'lowercaseurlcorrelation', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'sherlockruleid', 'inlineaction', 'urlpath', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'srcmacaddress', 'b', 'inspectoreventid', 'srcip', 'globalproxycorrelationurl', 'explorer', 'tcpflags', 'ap', 'vendoreventid', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'foreseedstipgeo', 'hong', 'kong', 'hkg', 'dstport', 'device', 'id', 'action', 'blocked', 'event', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'irreceivedtime', 'vendorversion', 'netacuity', 'destination', 'organization', 'apacnet', 'hongkong', 'region', 'network', 'agentid', 'ctainstanceid'] processed_text: ['security', 'incident', 'possible', 'trojan', 'infection', 'host', 'source', 'ip', 'dest', 'ip', 'system', 'name', 'apul', 'user', 'name', 'jenfrgryui', 'lu', 'location', 'singapore', 'sm', 'status', 'given', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'detail', 'event', 'detail', 'event', 'id', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'xref', 'vid', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xebc', 'ack', 'xece', 'win', 'xb', 'tcplen', 'pcap', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'http', 'aconnection', 'keep', 'alive', 'acache', 'control', 'cache', 'ahost', 'pcap', 'ex', 'http', 'uri', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'ex', 'http', 'hostname', 'security', 'correlation', 'data', 'dhcpd', 'dhcpack', 'b', 'apul', 'via', 'eth', 'relay', 'lease', 'duration', 'refererproxycorrelationurl', 'null', 'ileatdatacenter', 'true', 'host', 'cv', 'foreseeconndirection', 'outgoing', 'foreseeexternalip', 'eventtypeid', 'netacuity', 'destination', 'isp', 'jin', 'rong', 'street', 'srchostname', 'apul', 'logtimestamp', 'urlhost', 'proto', 'tcp', 'urlfullpath', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'unique', 'event', 'hash', 'device', 'network', 'type', 'internal', 'srcport', 'urlcorrelation', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'dstip', 'httpversion', 'http', 'url', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'vendorpriority', 'httpmethod', 'get', 'ontologyid', 'vendorreference', 'vid', 'eventtypepriority', 'devip', 'source', 'network', 'type', 'internal', 'inspectorruleid', 'lowercaseurlcorrelation', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'sherlockruleid', 'inlineaction', 'urlpath', 'pro', 'pz', 'dn', 'ie', 'sogou', 'com', 'sogou', 'explorer', 'exe', 'srcmacaddress', 'b', 'inspectoreventid', 'srcip', 'globalproxycorrelationurl', 'explorer', 'tcpflags', 'ap', 'vendoreventid', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'foreseedstipgeo', 'hong', 'kong', 'hkg', 'dstport', 'device', 'id', 'action', 'blocked', 'event', 'summary', 'vid', 'bare', 'http', 'get', 'executable', 'ip', 'address', 'possible', 'downloader', 'trojan', 'irreceivedtime', 'vendorversion', 'netacuity', 'destination', 'organization', 'apacnet', 'hongkong', 'region', 'network', 'agentid', 'ctainstanceid'] list_processed_text: [['security'], ['incident'], ['possible'], ['trojan'], ['infection'], ['host'], ['source'], ['ip'], ['dest'], ['ip'], ['system'], ['name'], ['apul'], ['user'], ['name'], ['jenfrgryui'], ['lu'], ['location'], ['singapore'], ['sm'], ['status'], ['given'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['detail'], ['event'], ['detail'], ['event'], ['id'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['trojan'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['xref'], ['vid'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xebc'], ['ack'], ['xece'], ['win'], ['xb'], ['tcplen'], ['pcap'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['http'], ['aconnection'], ['keep'], ['alive'], ['acache'], ['control'], ['cache'], ['ahost'], ['pcap'], ['ex'], ['http'], ['uri'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['ex'], ['http'], ['hostname'], ['security'], ['correlation'], ['data'], ['dhcpd'], ['dhcpack'], ['b'], ['apul'], ['via'], ['eth'], ['relay'], ['lease'], ['duration'], ['refererproxycorrelationurl'], ['null'], ['ileatdatacenter'], ['true'], ['host'], ['cv'], ['foreseeconndirection'], ['outgoing'], ['foreseeexternalip'], ['eventtypeid'], ['netacuity'], ['destination'], ['isp'], ['jin'], ['rong'], ['street'], ['srchostname'], ['apul'], ['logtimestamp'], ['urlhost'], ['proto'], ['tcp'], ['urlfullpath'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['unique'], ['event'], ['hash'], ['device'], ['network'], ['type'], ['internal'], ['srcport'], ['urlcorrelation'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['dstip'], ['httpversion'], ['http'], ['url'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['vendorpriority'], ['httpmethod'], ['get'], ['ontologyid'], ['vendorreference'], ['vid'], ['eventtypepriority'], ['devip'], ['source'], ['network'], ['type'], ['internal'], ['inspectorruleid'], ['lowercaseurlcorrelation'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['sherlockruleid'], ['inlineaction'], ['urlpath'], ['pro'], ['pz'], ['dn'], ['ie'], ['sogou'], ['com'], ['sogou'], ['explorer'], ['exe'], ['srcmacaddress'], ['b'], ['inspectoreventid'], ['srcip'], ['globalproxycorrelationurl'], ['explorer'], ['tcpflags'], ['ap'], ['vendoreventid'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['foreseedstipgeo'], ['hong'], ['kong'], ['hkg'], ['dstport'], ['device'], ['id'], ['action'], ['blocked'], ['event'], ['summary'], ['vid'], ['bare'], ['http'], ['get'], ['executable'], ['ip'], ['address'], ['possible'], ['downloader'], ['trojan'], ['irreceivedtime'], ['vendorversion'], ['netacuity'], ['destination'], ['organization'], ['apacnet'], ['hongkong'], ['region'], ['network'], ['agentid'], ['ctainstanceid']] k: 7938 len: <class 'list'> Data: ['printer', 'issue', 'name', 'seghyurghei', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'connect', 'printer'] processed_text: ['printer', 'issue', 'name', 'seghyurghei', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trying', 'connect', 'printer'] list_processed_text: [['printer'], ['issue'], ['name'], ['seghyurghei'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['trying'], ['connect'], ['printer']] k: 7939 len: <class 'list'> Data: ['security', 'incident', 'dsw', 'traffic', 'sinkhole', 'domain', 'lpawxsf', 'source', 'ip', 'system', 'name', 'lpawxsf', 'user', 'name', 'location', 'indaituba', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'lpawxsf', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'lpawxsf', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'log', 'time', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'lpawxsf', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'event', 'extra', 'data', 'sherlockruleid', 'cv', 'ctainstanceid', 'irreceivedtime', 'httpstatuscode', 'inspectoreventid', 'eventtypepriority', 'dstassetofinterest', 'globalproxycorrelationurl', 'null', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'incoming', 'foreseeexternalip', 'inlineaction', 'ontologyid', 'foreseesrcipgeo', 'franhtyufurt', 'main', 'deu', 'eventtypeid', 'dsthostname', 'lpawxsf', 'vendoreventid', 'vendorpriority', 'tcpflags', 'ap', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'httpcontenttype', 'text', 'html', 'vendorversion', 'refererproxycorrelationurl', 'null', 'agentid', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbe', 'ack', 'xcc', 'win', 'xf', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'ex', 'http', 'hostname', 'futureinterest', 'org', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ccb', 'ce', 'dc', 'ac', 'f', 'j', 'r', 'cc', 'e', 'p', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'thu', 'aug', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'xt', 'html', 'transfe', 'f', 'e', 'encoding', 'chun', 'b', 'fe', 'f', 'ea', 'ked', 'connection', 'cf', 'da', 'cf', 'fe', 'close', 'location', 'af', 'f', 'e', 'e', 'fd', 'fd', 'ef', 'tr', 'com', 'domain', 'fu', 'ef', 'tureinterest', 'org', 'da', 'f', 'fb', 'set', 'cookie', 'bt', 'st', 'feaeff', 'defecbfe', 'e', 'e', 'c', 'c', 'ff', 'eb', 'ad', 'et', 'cookie', 'snkz', 'e', 'ad', 'da', 'da', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'dsw', 'traffic', 'sinkhole', 'domain', 'lpawxsf', 'source', 'ip', 'system', 'name', 'lpawxsf', 'user', 'name', 'location', 'indaituba', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'lpawxsf', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'lpawxsf', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'log', 'time', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'lpawxsf', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'event', 'extra', 'data', 'sherlockruleid', 'cv', 'ctainstanceid', 'irreceivedtime', 'httpstatuscode', 'inspectoreventid', 'eventtypepriority', 'dstassetofinterest', 'globalproxycorrelationurl', 'null', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'incoming', 'foreseeexternalip', 'inlineaction', 'ontologyid', 'foreseesrcipgeo', 'franhtyufurt', 'main', 'deu', 'eventtypeid', 'dsthostname', 'lpawxsf', 'vendoreventid', 'vendorpriority', 'tcpflags', 'ap', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'httpcontenttype', 'text', 'html', 'vendorversion', 'refererproxycorrelationurl', 'null', 'agentid', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbe', 'ack', 'xcc', 'win', 'xf', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'ex', 'http', 'hostname', 'futureinterest', 'org', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ccb', 'ce', 'dc', 'ac', 'f', 'j', 'r', 'cc', 'e', 'p', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'thu', 'aug', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'xt', 'html', 'transfe', 'f', 'e', 'encoding', 'chun', 'b', 'fe', 'f', 'ea', 'ked', 'connection', 'cf', 'da', 'cf', 'fe', 'close', 'location', 'af', 'f', 'e', 'e', 'fd', 'fd', 'ef', 'tr', 'com', 'domain', 'fu', 'ef', 'tureinterest', 'org', 'da', 'f', 'fb', 'set', 'cookie', 'bt', 'st', 'feaeff', 'defecbfe', 'e', 'e', 'c', 'c', 'ff', 'eb', 'ad', 'et', 'cookie', 'snkz', 'e', 'ad', 'da', 'da', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['dsw'], ['traffic'], ['sinkhole'], ['domain'], ['lpawxsf'], ['source'], ['ip'], ['system'], ['name'], ['lpawxsf'], ['user'], ['name'], ['location'], ['indaituba'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['incident'], ['overview'], ['seeing'], ['isensor'], ['company'], ['com'], ['device'], ['generating'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['alert'], ['traffic'], ['blocked'], ['port'], ['tcp'], ['port'], ['tcp'], ['lpawxsf'], ['device'], ['indicating'], ['host'], ['likely'], ['infected'], ['malware'], ['return'], ['traffic'], ['indicates'], ['lpawxsf'], ['likely'], ['attempted'], ['visit'], ['domain'], ['name'], ['sinkholed'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['false'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['ip'], ['address'], ['resolution'], ['requested'], ['sinkhole'], ['traffic'], ['possible'], ['indicator'], ['infected'], ['computer'], ['reaching'], ['controller'], ['taken'], ['law'], ['enforcement'], ['research'], ['organization'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['however'], ['clear'], ['indication'], ['malware'], ['infection'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['per'], ['default'], ['escalation'], ['policy'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['sinkhole'], ['domain'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['auto'], ['resolve'], ['sinkhole'], ['domain'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['domain'], ['name'], ['system'], ['dns'], ['hierarchical'], ['naming'], ['system'], ['resource'], ['connected'], ['internet'], ['private'], ['network'], ['primary'], ['purpose'], ['associating'], ['various'], ['information'], ['domain'], ['name'], ['assigned'], ['participating'], ['entity'], ['primarily'], ['used'], ['translating'], ['domain'], ['name'], ['numerirtcal'], ['ip'], ['address'], ['purpose'], ['locating'], ['service'], ['device'], ['network'], ['domain'], ['name'], ['system'], ['distributes'], ['responsibility'], ['assigning'], ['domain'], ['name'], ['mapping'], ['name'], ['ip'], ['address'], ['designating'], ['authoritative'], ['name'], ['server'], ['domain'], ['authoritative'], ['name'], ['server'], ['assigned'], ['responsible'], ['supported'], ['domain'], ['delegate'], ['authority'], ['subdomains'], ['name'], ['server'], ['domain'], ['name'], ['system'], ['also'], ['specifies'], ['technical'], ['functionality'], ['database'], ['service'], ['defines'], ['dns'], ['protocol'], ['detailed'], ['specification'], ['data'], ['structure'], ['data'], ['communication'], ['exchange'], ['used'], ['dns'], ['part'], ['internet'], ['protocol'], ['suite'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['incorrect'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['name'], ['ip'], ['address'], ['resolution'], ['attempted'], ['client'], ['request'], ['resolve'], ['address'], ['sinkholed'], ['hole'], ['domain'], ['sinkhole'], ['return'], ['non'], ['routable'], ['address'], ['address'], ['except'], ['real'], ['address'], ['germanytially'], ['denies'], ['client'], ['connection'], ['target'], ['host'], ['using'], ['method'], ['compromised'], ['client'], ['easily'], ['found'], ['using'], ['sinkhole'], ['log'], ['another'], ['method'], ['detecting'], ['compromised'], ['host'], ['operation'], ['server'], ['used'], ['command'], ['control'], ['purpose'], ['taken'], ['law'], ['enforcement'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['clear'], ['indication'], ['infection'], ['trojan'], ['sort'], ['connection'], ['sinkhole'], ['seem'], ['somewhat'], ['benign'], ['ramdntyifications'], ['certainly'], ['include'], ['information'], ['leakage'], ['extent'], ['although'], ['sinkhole'], ['operator'], ['unlikely'], ['use'], ['personally'], ['identifiable'], ['information'], ['capture'], ['trojan'], ['communication'], ['become'], ['public'], ['knowledge'], ['company'], ['infected'], ['lead'], ['reputational'], ['damage'], ['additionally'], ['sinkhole'], ['feeding'], ['ip'], ['address'], ['victim'], ['beshryulists'], ['impede'], ['access'], ['certain'], ['service'], ['like'], ['sending'], ['email'], ['finally'], ['trojan'], ['connect'], ['multiple'], ['controller'], ['domain'], ['hostnames'], ['even'], ['though'], ['sinkholed'], ['others'], ['leading'], ['possibility'], ['remote'], ['code'], ['execution'], ['information'], ['leakage'], ['malicious'], ['party'], ['case'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['log'], ['time'], ['source'], ['ip'], ['destination'], ['ip'], ['destination'], ['hostname'], ['lpawxsf'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['sherlockruleid'], ['cv'], ['ctainstanceid'], ['irreceivedtime'], ['httpstatuscode'], ['inspectoreventid'], ['eventtypepriority'], ['dstassetofinterest'], ['globalproxycorrelationurl'], ['null'], ['foreseeinternalip'], ['logtimestamp'], ['foreseeconndirection'], ['incoming'], ['foreseeexternalip'], ['inlineaction'], ['ontologyid'], ['foreseesrcipgeo'], ['franhtyufurt'], ['main'], ['deu'], ['eventtypeid'], ['dsthostname'], ['lpawxsf'], ['vendoreventid'], ['vendorpriority'], ['tcpflags'], ['ap'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['httpcontenttype'], ['text'], ['html'], ['vendorversion'], ['refererproxycorrelationurl'], ['null'], ['agentid'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xfbe'], ['ack'], ['xcc'], ['win'], ['xf'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['ex'], ['http'], ['hostname'], ['futureinterest'], ['org'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['ccb'], ['ce'], ['dc'], ['ac'], ['f'], ['j'], ['r'], ['cc'], ['e'], ['p'], ['http'], ['e'], ['f'], ['moved'], ['f'], ['da'], ['emporarily'], ['serv'], ['e'], ['er'], ['nginx'], ['date'], ['thu'], ['aug'], ['da'], ['gmt'], ['e'], ['content'], ['type'], ['te'], ['f'], ['cd'], ['xt'], ['html'], ['transfe'], ['f'], ['e'], ['encoding'], ['chun'], ['b'], ['fe'], ['f'], ['ea'], ['ked'], ['connection'], ['cf'], ['da'], ['cf'], ['fe'], ['close'], ['location'], ['af'], ['f'], ['e'], ['e'], ['fd'], ['fd'], ['ef'], ['tr'], ['com'], ['domain'], ['fu'], ['ef'], ['tureinterest'], ['org'], ['da'], ['f'], ['fb'], ['set'], ['cookie'], ['bt'], ['st'], ['feaeff'], ['defecbfe'], ['e'], ['e'], ['c'], ['c'], ['ff'], ['eb'], ['ad'], ['et'], ['cookie'], ['snkz'], ['e'], ['ad'], ['da'], ['da'], ['pcap'], ['hex'], ['e']] k: 7940 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 7941 len: <class 'list'> Data: ['per', 'inc', 'security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'gzhapcld', 'fdigznbk', 'bev', 'loughner', 'ghiklyop', 'nikszpeu', 'thoyhts', 'brthyrtiv', 'tiyhum', 'kuyiomar', 'gdhyrts', 'muggftyali', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'nyrjkctu', 'tbhkenlo', 'ugyothfz', 'ugrmkdhx', 'kathght', 'shfhyw', 'suhtnhdyio', 'psfshytd', 'bhayhtrathramdnty', 'mamilujli', 'inc', 'security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'hello', 'amerirtcas', 'pc', 'support', 'detected', 'least', 'occurrence', 'firewall', 'att', 'singapore', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'new', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'created', 'ticketing', 'tool', 'ticket', 'assigned', 'amerirtcas', 'pc', 'service', 'inc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] processed_text: ['per', 'inc', 'security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'gzhapcld', 'fdigznbk', 'bev', 'loughner', 'ghiklyop', 'nikszpeu', 'thoyhts', 'brthyrtiv', 'tiyhum', 'kuyiomar', 'gdhyrts', 'muggftyali', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'nyrjkctu', 'tbhkenlo', 'ugyothfz', 'ugrmkdhx', 'kathght', 'shfhyw', 'suhtnhdyio', 'psfshytd', 'bhayhtrathramdnty', 'mamilujli', 'inc', 'security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'hello', 'amerirtcas', 'pc', 'support', 'detected', 'least', 'occurrence', 'firewall', 'att', 'singapore', 'asa', 'company', 'com', 'dropping', 'traffic', 'sourcing', 'hostname', 'new', 'destined', 'port', 'one', 'destination', 'device', 'activity', 'indicate', 'one', 'following', 'infection', 'host', 'misconfigured', 'firewall', 'misconfigured', 'host', 'port', 'scan', 'authorized', 'unauthorized', 'created', 'ticketing', 'tool', 'ticket', 'assigned', 'amerirtcas', 'pc', 'service', 'inc', 'technical', 'detail', 'historically', 'various', 'worm', 'malware', 'used', 'port', 'propagate', 'example', 'include', 'blaster', 'worm', 'msblast', 'lovsan', 'welchia', 'nachi', 'reatle', 'port', 'microsoft', 'epmap', 'end', 'point', 'mapper', 'also', 'known', 'dce', 'rpc', 'locator', 'service', 'port', 'netbios', 'netbios', 'name', 'service', 'port', 'netbios', 'netbios', 'datagramdnty', 'service', 'port', 'netbios', 'netbios', 'session', 'service', 'port', 'microsoft', 'd', 'smb', 'file', 'sharing', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] list_processed_text: [['per'], ['inc'], ['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['new'], ['gzhapcld'], ['fdigznbk'], ['bev'], ['loughner'], ['ghiklyop'], ['nikszpeu'], ['thoyhts'], ['brthyrtiv'], ['tiyhum'], ['kuyiomar'], ['gdhyrts'], ['muggftyali'], ['qfrntose'], ['ivnhumzjalakrisyuhnyrtn'], ['nyrjkctu'], ['tbhkenlo'], ['ugyothfz'], ['ugrmkdhx'], ['kathght'], ['shfhyw'], ['suhtnhdyio'], ['psfshytd'], ['bhayhtrathramdnty'], ['mamilujli'], ['inc'], ['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['new'], ['hello'], ['amerirtcas'], ['pc'], ['support'], ['detected'], ['least'], ['occurrence'], ['firewall'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['dropping'], ['traffic'], ['sourcing'], ['hostname'], ['new'], ['destined'], ['port'], ['one'], ['destination'], ['device'], ['activity'], ['indicate'], ['one'], ['following'], ['infection'], ['host'], ['misconfigured'], ['firewall'], ['misconfigured'], ['host'], ['port'], ['scan'], ['authorized'], ['unauthorized'], ['created'], ['ticketing'], ['tool'], ['ticket'], ['assigned'], ['amerirtcas'], ['pc'], ['service'], ['inc'], ['technical'], ['detail'], ['historically'], ['various'], ['worm'], ['malware'], ['used'], ['port'], ['propagate'], ['example'], ['include'], ['blaster'], ['worm'], ['msblast'], ['lovsan'], ['welchia'], ['nachi'], ['reatle'], ['port'], ['microsoft'], ['epmap'], ['end'], ['point'], ['mapper'], ['also'], ['known'], ['dce'], ['rpc'], ['locator'], ['service'], ['port'], ['netbios'], ['netbios'], ['name'], ['service'], ['port'], ['netbios'], ['netbios'], ['datagramdnty'], ['service'], ['port'], ['netbios'], ['netbios'], ['session'], ['service'], ['port'], ['microsoft'], ['d'], ['smb'], ['file'], ['sharing'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['new'], ['destination'], ['hostname'], ['lmxl'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['new'], ['eventtypeid'], ['dsthostname'], ['lmxl'], ['ctainstanceid'], ['irreceivedtime'], ['inspectoreventid'], ['proto'], ['tcp'], ['eventtypepriority'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x']] k: 7942 len: <class 'list'> Data: ['client', 'unable', 'view', 'screen', 'tablet', 'docked', 'client', 'unable', 'view', 'screen', 'tablet', 'docked'] processed_text: ['client', 'unable', 'view', 'screen', 'tablet', 'docked', 'client', 'unable', 'view', 'screen', 'tablet', 'docked'] list_processed_text: [['client'], ['unable'], ['view'], ['screen'], ['tablet'], ['docked'], ['client'], ['unable'], ['view'], ['screen'], ['tablet'], ['docked']] k: 7943 len: <class 'list'> Data: ['client', 'pc', 'making', 'buzzing', 'noise', 'wont', 'turn', 'client', 'pc', 'making', 'buzzing', 'noise', 'wont', 'turn'] processed_text: ['client', 'pc', 'making', 'buzzing', 'noise', 'wont', 'turn', 'client', 'pc', 'making', 'buzzing', 'noise', 'wont', 'turn'] list_processed_text: [['client'], ['pc'], ['making'], ['buzzing'], ['noise'], ['wont'], ['turn'], ['client'], ['pc'], ['making'], ['buzzing'], ['noise'], ['wont'], ['turn']] k: 7944 len: <class 'list'> Data: ['activation', 'valid', 'microsoft', 'project', 'activation', 'valid', 'microsoft', 'project'] processed_text: ['activation', 'valid', 'microsoft', 'project', 'activation', 'valid', 'microsoft', 'project'] list_processed_text: [['activation'], ['valid'], ['microsoft'], ['project'], ['activation'], ['valid'], ['microsoft'], ['project']] k: 7945 len: <class 'list'> Data: ['security', 'incident', 'dsw', 'traffic', 'sinkhole', 'domain', 'lpawxsf', 'source', 'ip', 'system', 'name', 'lpawxsf', 'user', 'name', 'location', 'indaituba', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'lpawxsf', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'lpawxsf', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'log', 'time', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'lpawxsf', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'event', 'extra', 'data', 'sherlockruleid', 'cv', 'ctainstanceid', 'irreceivedtime', 'httpstatuscode', 'inspectoreventid', 'eventtypepriority', 'dstassetofinterest', 'globalproxycorrelationurl', 'null', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'incoming', 'foreseeexternalip', 'inlineaction', 'ontologyid', 'foreseesrcipgeo', 'franhtyufurt', 'main', 'deu', 'eventtypeid', 'dsthostname', 'lpawxsf', 'vendoreventid', 'vendorpriority', 'tcpflags', 'ap', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'httpcontenttype', 'text', 'html', 'vendorversion', 'refererproxycorrelationurl', 'null', 'agentid', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbe', 'ack', 'xcc', 'win', 'xf', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'ex', 'http', 'hostname', 'futureinterest', 'org', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ccb', 'ce', 'dc', 'ac', 'f', 'j', 'r', 'cc', 'e', 'p', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'thu', 'aug', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'xt', 'html', 'transfe', 'f', 'e', 'encoding', 'chun', 'b', 'fe', 'f', 'ea', 'ked', 'connection', 'cf', 'da', 'cf', 'fe', 'close', 'location', 'af', 'f', 'e', 'e', 'fd', 'fd', 'ef', 'tr', 'com', 'domain', 'fu', 'ef', 'tureinterest', 'org', 'da', 'f', 'fb', 'set', 'cookie', 'bt', 'st', 'feaeff', 'defecbfe', 'e', 'e', 'c', 'c', 'ff', 'eb', 'ad', 'et', 'cookie', 'snkz', 'e', 'ad', 'da', 'da', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'dsw', 'traffic', 'sinkhole', 'domain', 'lpawxsf', 'source', 'ip', 'system', 'name', 'lpawxsf', 'user', 'name', 'location', 'indaituba', 'sm', 'status', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'incident', 'overview', 'seeing', 'isensor', 'company', 'com', 'device', 'generating', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'alert', 'traffic', 'blocked', 'port', 'tcp', 'port', 'tcp', 'lpawxsf', 'device', 'indicating', 'host', 'likely', 'infected', 'malware', 'return', 'traffic', 'indicates', 'lpawxsf', 'likely', 'attempted', 'visit', 'domain', 'name', 'sinkholed', 'dns', 'sinkhole', 'dns', 'server', 'give', 'false', 'information', 'order', 'prevent', 'use', 'domain', 'ip', 'address', 'resolution', 'requested', 'sinkhole', 'traffic', 'possible', 'indicator', 'infected', 'computer', 'reaching', 'controller', 'taken', 'law', 'enforcement', 'research', 'organization', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'however', 'clear', 'indication', 'malware', 'infection', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'per', 'default', 'escalation', 'policy', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'soc', 'calling', 'u', 'ticket', 'escalation', 'sinkhole', 'domain', 'alert', 'explicit', 'notification', 'via', 'medium', 'priority', 'ticket', 'phone', 'call', 'auto', 'resolve', 'sinkhole', 'domain', 'alert', 'directly', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'soc', 'technical', 'detail', 'domain', 'name', 'system', 'dns', 'hierarchical', 'naming', 'system', 'resource', 'connected', 'internet', 'private', 'network', 'primary', 'purpose', 'associating', 'various', 'information', 'domain', 'name', 'assigned', 'participating', 'entity', 'primarily', 'used', 'translating', 'domain', 'name', 'numerirtcal', 'ip', 'address', 'purpose', 'locating', 'service', 'device', 'network', 'domain', 'name', 'system', 'distributes', 'responsibility', 'assigning', 'domain', 'name', 'mapping', 'name', 'ip', 'address', 'designating', 'authoritative', 'name', 'server', 'domain', 'authoritative', 'name', 'server', 'assigned', 'responsible', 'supported', 'domain', 'delegate', 'authority', 'subdomains', 'name', 'server', 'domain', 'name', 'system', 'also', 'specifies', 'technical', 'functionality', 'database', 'service', 'defines', 'dns', 'protocol', 'detailed', 'specification', 'data', 'structure', 'data', 'communication', 'exchange', 'used', 'dns', 'part', 'internet', 'protocol', 'suite', 'dns', 'sinkhole', 'dns', 'server', 'give', 'incorrect', 'information', 'order', 'prevent', 'use', 'domain', 'name', 'ip', 'address', 'resolution', 'attempted', 'client', 'request', 'resolve', 'address', 'sinkholed', 'hole', 'domain', 'sinkhole', 'return', 'non', 'routable', 'address', 'address', 'except', 'real', 'address', 'germanytially', 'denies', 'client', 'connection', 'target', 'host', 'using', 'method', 'compromised', 'client', 'easily', 'found', 'using', 'sinkhole', 'log', 'another', 'method', 'detecting', 'compromised', 'host', 'operation', 'server', 'used', 'command', 'control', 'purpose', 'taken', 'law', 'enforcement', 'part', 'malware', 'mitigation', 'effort', 'traffic', 'sinkhole', 'examined', 'characteristic', 'automated', 'activity', 'case', 'administrator', 'curious', 'particular', 'domain', 'browse', 'triggering', 'signature', 'repeated', 'automated', 'request', 'sinkhole', 'clear', 'indication', 'infection', 'trojan', 'sort', 'connection', 'sinkhole', 'seem', 'somewhat', 'benign', 'ramdntyifications', 'certainly', 'include', 'information', 'leakage', 'extent', 'although', 'sinkhole', 'operator', 'unlikely', 'use', 'personally', 'identifiable', 'information', 'capture', 'trojan', 'communication', 'become', 'public', 'knowledge', 'company', 'infected', 'lead', 'reputational', 'damage', 'additionally', 'sinkhole', 'feeding', 'ip', 'address', 'victim', 'beshryulists', 'impede', 'access', 'certain', 'service', 'like', 'sending', 'email', 'finally', 'trojan', 'connect', 'multiple', 'controller', 'domain', 'hostnames', 'even', 'though', 'sinkholed', 'others', 'leading', 'possibility', 'remote', 'code', 'execution', 'information', 'leakage', 'malicious', 'party', 'case', 'reference', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'log', 'time', 'source', 'ip', 'destination', 'ip', 'destination', 'hostname', 'lpawxsf', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'event', 'extra', 'data', 'sherlockruleid', 'cv', 'ctainstanceid', 'irreceivedtime', 'httpstatuscode', 'inspectoreventid', 'eventtypepriority', 'dstassetofinterest', 'globalproxycorrelationurl', 'null', 'foreseeinternalip', 'logtimestamp', 'foreseeconndirection', 'incoming', 'foreseeexternalip', 'inlineaction', 'ontologyid', 'foreseesrcipgeo', 'franhtyufurt', 'main', 'deu', 'eventtypeid', 'dsthostname', 'lpawxsf', 'vendoreventid', 'vendorpriority', 'tcpflags', 'ap', 'proto', 'tcp', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'httpcontenttype', 'text', 'html', 'vendorversion', 'refererproxycorrelationurl', 'null', 'agentid', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'vid', 'server', 'response', 'anubis', 'sinkhole', 'cooky', 'set', 'probable', 'infected', 'asset', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xfbe', 'ack', 'xcc', 'win', 'xf', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'ex', 'http', 'hostname', 'futureinterest', 'org', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ccb', 'ce', 'dc', 'ac', 'f', 'j', 'r', 'cc', 'e', 'p', 'http', 'e', 'f', 'moved', 'f', 'da', 'emporarily', 'serv', 'e', 'er', 'nginx', 'date', 'thu', 'aug', 'da', 'gmt', 'e', 'content', 'type', 'te', 'f', 'cd', 'xt', 'html', 'transfe', 'f', 'e', 'encoding', 'chun', 'b', 'fe', 'f', 'ea', 'ked', 'connection', 'cf', 'da', 'cf', 'fe', 'close', 'location', 'af', 'f', 'e', 'e', 'fd', 'fd', 'ef', 'tr', 'com', 'domain', 'fu', 'ef', 'tureinterest', 'org', 'da', 'f', 'fb', 'set', 'cookie', 'bt', 'st', 'feaeff', 'defecbfe', 'e', 'e', 'c', 'c', 'ff', 'eb', 'ad', 'et', 'cookie', 'snkz', 'e', 'ad', 'da', 'da', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['dsw'], ['traffic'], ['sinkhole'], ['domain'], ['lpawxsf'], ['source'], ['ip'], ['system'], ['name'], ['lpawxsf'], ['user'], ['name'], ['location'], ['indaituba'], ['sm'], ['status'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['incident'], ['overview'], ['seeing'], ['isensor'], ['company'], ['com'], ['device'], ['generating'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['alert'], ['traffic'], ['blocked'], ['port'], ['tcp'], ['port'], ['tcp'], ['lpawxsf'], ['device'], ['indicating'], ['host'], ['likely'], ['infected'], ['malware'], ['return'], ['traffic'], ['indicates'], ['lpawxsf'], ['likely'], ['attempted'], ['visit'], ['domain'], ['name'], ['sinkholed'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['false'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['ip'], ['address'], ['resolution'], ['requested'], ['sinkhole'], ['traffic'], ['possible'], ['indicator'], ['infected'], ['computer'], ['reaching'], ['controller'], ['taken'], ['law'], ['enforcement'], ['research'], ['organization'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['however'], ['clear'], ['indication'], ['malware'], ['infection'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['per'], ['default'], ['escalation'], ['policy'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['soc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['sinkhole'], ['domain'], ['alert'], ['explicit'], ['notification'], ['via'], ['medium'], ['priority'], ['ticket'], ['phone'], ['call'], ['auto'], ['resolve'], ['sinkhole'], ['domain'], ['alert'], ['directly'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['soc'], ['technical'], ['detail'], ['domain'], ['name'], ['system'], ['dns'], ['hierarchical'], ['naming'], ['system'], ['resource'], ['connected'], ['internet'], ['private'], ['network'], ['primary'], ['purpose'], ['associating'], ['various'], ['information'], ['domain'], ['name'], ['assigned'], ['participating'], ['entity'], ['primarily'], ['used'], ['translating'], ['domain'], ['name'], ['numerirtcal'], ['ip'], ['address'], ['purpose'], ['locating'], ['service'], ['device'], ['network'], ['domain'], ['name'], ['system'], ['distributes'], ['responsibility'], ['assigning'], ['domain'], ['name'], ['mapping'], ['name'], ['ip'], ['address'], ['designating'], ['authoritative'], ['name'], ['server'], ['domain'], ['authoritative'], ['name'], ['server'], ['assigned'], ['responsible'], ['supported'], ['domain'], ['delegate'], ['authority'], ['subdomains'], ['name'], ['server'], ['domain'], ['name'], ['system'], ['also'], ['specifies'], ['technical'], ['functionality'], ['database'], ['service'], ['defines'], ['dns'], ['protocol'], ['detailed'], ['specification'], ['data'], ['structure'], ['data'], ['communication'], ['exchange'], ['used'], ['dns'], ['part'], ['internet'], ['protocol'], ['suite'], ['dns'], ['sinkhole'], ['dns'], ['server'], ['give'], ['incorrect'], ['information'], ['order'], ['prevent'], ['use'], ['domain'], ['name'], ['ip'], ['address'], ['resolution'], ['attempted'], ['client'], ['request'], ['resolve'], ['address'], ['sinkholed'], ['hole'], ['domain'], ['sinkhole'], ['return'], ['non'], ['routable'], ['address'], ['address'], ['except'], ['real'], ['address'], ['germanytially'], ['denies'], ['client'], ['connection'], ['target'], ['host'], ['using'], ['method'], ['compromised'], ['client'], ['easily'], ['found'], ['using'], ['sinkhole'], ['log'], ['another'], ['method'], ['detecting'], ['compromised'], ['host'], ['operation'], ['server'], ['used'], ['command'], ['control'], ['purpose'], ['taken'], ['law'], ['enforcement'], ['part'], ['malware'], ['mitigation'], ['effort'], ['traffic'], ['sinkhole'], ['examined'], ['characteristic'], ['automated'], ['activity'], ['case'], ['administrator'], ['curious'], ['particular'], ['domain'], ['browse'], ['triggering'], ['signature'], ['repeated'], ['automated'], ['request'], ['sinkhole'], ['clear'], ['indication'], ['infection'], ['trojan'], ['sort'], ['connection'], ['sinkhole'], ['seem'], ['somewhat'], ['benign'], ['ramdntyifications'], ['certainly'], ['include'], ['information'], ['leakage'], ['extent'], ['although'], ['sinkhole'], ['operator'], ['unlikely'], ['use'], ['personally'], ['identifiable'], ['information'], ['capture'], ['trojan'], ['communication'], ['become'], ['public'], ['knowledge'], ['company'], ['infected'], ['lead'], ['reputational'], ['damage'], ['additionally'], ['sinkhole'], ['feeding'], ['ip'], ['address'], ['victim'], ['beshryulists'], ['impede'], ['access'], ['certain'], ['service'], ['like'], ['sending'], ['email'], ['finally'], ['trojan'], ['connect'], ['multiple'], ['controller'], ['domain'], ['hostnames'], ['even'], ['though'], ['sinkholed'], ['others'], ['leading'], ['possibility'], ['remote'], ['code'], ['execution'], ['information'], ['leakage'], ['malicious'], ['party'], ['case'], ['reference'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['log'], ['time'], ['source'], ['ip'], ['destination'], ['ip'], ['destination'], ['hostname'], ['lpawxsf'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['sherlockruleid'], ['cv'], ['ctainstanceid'], ['irreceivedtime'], ['httpstatuscode'], ['inspectoreventid'], ['eventtypepriority'], ['dstassetofinterest'], ['globalproxycorrelationurl'], ['null'], ['foreseeinternalip'], ['logtimestamp'], ['foreseeconndirection'], ['incoming'], ['foreseeexternalip'], ['inlineaction'], ['ontologyid'], ['foreseesrcipgeo'], ['franhtyufurt'], ['main'], ['deu'], ['eventtypeid'], ['dsthostname'], ['lpawxsf'], ['vendoreventid'], ['vendorpriority'], ['tcpflags'], ['ap'], ['proto'], ['tcp'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['httpcontenttype'], ['text'], ['html'], ['vendorversion'], ['refererproxycorrelationurl'], ['null'], ['agentid'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['vid'], ['server'], ['response'], ['anubis'], ['sinkhole'], ['cooky'], ['set'], ['probable'], ['infected'], ['asset'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xfbe'], ['ack'], ['xcc'], ['win'], ['xf'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['ex'], ['http'], ['hostname'], ['futureinterest'], ['org'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['ccb'], ['ce'], ['dc'], ['ac'], ['f'], ['j'], ['r'], ['cc'], ['e'], ['p'], ['http'], ['e'], ['f'], ['moved'], ['f'], ['da'], ['emporarily'], ['serv'], ['e'], ['er'], ['nginx'], ['date'], ['thu'], ['aug'], ['da'], ['gmt'], ['e'], ['content'], ['type'], ['te'], ['f'], ['cd'], ['xt'], ['html'], ['transfe'], ['f'], ['e'], ['encoding'], ['chun'], ['b'], ['fe'], ['f'], ['ea'], ['ked'], ['connection'], ['cf'], ['da'], ['cf'], ['fe'], ['close'], ['location'], ['af'], ['f'], ['e'], ['e'], ['fd'], ['fd'], ['ef'], ['tr'], ['com'], ['domain'], ['fu'], ['ef'], ['tureinterest'], ['org'], ['da'], ['f'], ['fb'], ['set'], ['cookie'], ['bt'], ['st'], ['feaeff'], ['defecbfe'], ['e'], ['e'], ['c'], ['c'], ['ff'], ['eb'], ['ad'], ['et'], ['cookie'], ['snkz'], ['e'], ['ad'], ['da'], ['da'], ['pcap'], ['hex'], ['e']] k: 7946 len: <class 'list'> Data: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'source', 'ip', 'system', 'name', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'username', 'ztnfhiwq', 'njpwxmdi', 'iba', 'ez', 'location', 'mexico', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] processed_text: ['security', 'incident', 'suspicious', 'm', 'rpc', 'm', 'd', 'netbios', 'activity', 'hostname', 'new', 'source', 'ip', 'system', 'name', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'username', 'ztnfhiwq', 'njpwxmdi', 'iba', 'ez', 'location', 'mexico', 'sm', 'status', 'update', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'event', 'data', 'related', 'event', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'event', 'id', 'event', 'summary', 'internal', 'outbreak', 'tcp', 'log', 'time', 'source', 'ip', 'source', 'hostname', 'hostname', 'new', 'destination', 'hostname', 'lmxl', 'device', 'ip', 'device', 'name', 'att', 'singapore', 'asa', 'company', 'com', 'event', 'extra', 'data', 'inspectorruleid', 'sherlockruleid', 'cv', 'ontologyid', 'srchostname', 'hostname', 'new', 'eventtypeid', 'dsthostname', 'lmxl', 'ctainstanceid', 'irreceivedtime', 'inspectoreventid', 'proto', 'tcp', 'eventtypepriority', 'dstport', 'action', 'blocked', 'ileatdatacenter', 'true', 'foreseemaliciouscomment', 'null', 'empty', 'model', 'found', 'evaluationmodels', 'ngm', 'foreseeinternalip', 'logtimestamp', 'agentid', 'foreseeconndirection', 'internal', 'srcassetofinterest', 'srcport', 'occurrence', 'count', 'event', 'count', 'event', 'detail', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x', 'asa', 'deny', 'tcp', 'src', 'inside', 'dst', 'outside', 'access', 'group', 'acl', 'inside', 'x'] list_processed_text: [['security'], ['incident'], ['suspicious'], ['m'], ['rpc'], ['m'], ['d'], ['netbios'], ['activity'], ['hostname'], ['new'], ['source'], ['ip'], ['system'], ['name'], ['hostname'], ['new'], ['destination'], ['hostname'], ['lmxl'], ['device'], ['ip'], ['username'], ['ztnfhiwq'], ['njpwxmdi'], ['iba'], ['ez'], ['location'], ['mexico'], ['sm'], ['status'], ['update'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['event'], ['data'], ['related'], ['event'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['new'], ['destination'], ['hostname'], ['lmxl'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['new'], ['eventtypeid'], ['dsthostname'], ['lmxl'], ['ctainstanceid'], ['irreceivedtime'], ['inspectoreventid'], ['proto'], ['tcp'], ['eventtypepriority'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['event'], ['id'], ['event'], ['summary'], ['internal'], ['outbreak'], ['tcp'], ['log'], ['time'], ['source'], ['ip'], ['source'], ['hostname'], ['hostname'], ['new'], ['destination'], ['hostname'], ['lmxl'], ['device'], ['ip'], ['device'], ['name'], ['att'], ['singapore'], ['asa'], ['company'], ['com'], ['event'], ['extra'], ['data'], ['inspectorruleid'], ['sherlockruleid'], ['cv'], ['ontologyid'], ['srchostname'], ['hostname'], ['new'], ['eventtypeid'], ['dsthostname'], ['lmxl'], ['ctainstanceid'], ['irreceivedtime'], ['inspectoreventid'], ['proto'], ['tcp'], ['eventtypepriority'], ['dstport'], ['action'], ['blocked'], ['ileatdatacenter'], ['true'], ['foreseemaliciouscomment'], ['null'], ['empty'], ['model'], ['found'], ['evaluationmodels'], ['ngm'], ['foreseeinternalip'], ['logtimestamp'], ['agentid'], ['foreseeconndirection'], ['internal'], ['srcassetofinterest'], ['srcport'], ['occurrence'], ['count'], ['event'], ['count'], ['event'], ['detail'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x'], ['asa'], ['deny'], ['tcp'], ['src'], ['inside'], ['dst'], ['outside'], ['access'], ['group'], ['acl'], ['inside'], ['x']] k: 7947 len: <class 'list'> Data: ['security', 'incident', 'sw', 'possible', 'locky', 'ransomware', 'infection', 'lpal', 'source', 'ip', 'system', 'name', 'lpal', 'user', 'name', 'sbinuxja', 'vtbegcho', 'nicolmghyu', 'location', 'centralsamerirtca', 'south', 'amerirtca', 'fieldsales', 'vpn', 'pc', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'sonar', 'risk', 'log', 'risk', 'information', 'downloaded', 'created', 'programdnty', 'file', 'java', 'jre', 'bin', 'javaw', 'exe', 'file', 'path', 'user', 'nicolmghyu', 'bbcc', 'bddbf', 'efa', 'exe', 'application', 'efa', 'exe', 'application', 'type', 'applicable', 'category', 'set', 'malware', 'category', 'type', 'heuristic', 'virus', 'version', 'file', 'size', 'hash', 'cfcabfafdfaffddfeefbfd', 'hash', 'algorithm', 'sha', 'risk', 'reputation', 'first', 'seen', 'symantec', 'known', 'file', 'approximately', 'day', 'reputation', 'file', 'untrustworthy', 'prevalence', 'file', 'seen', 'fewer', 'symantec', 'user', 'sonar', 'risk', 'level', 'high', 'sensitivity', 'low', 'detection', 'score', 'sonar', 'engine', 'version', 'submit', 'recommended', 'submit', 'incident', 'overview', 'ctoc', 'received', 'alert', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'sourcing', 'port', 'tcp', 'lpal', 'destined', 'port', 'tcp', 'geffen', 'nld', 'occurred', 'activity', 'indicates', 'lpal', 'likely', 'infected', 'locky', 'ransomware', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'url', 'path', 'comercial', 'cadastra', 'php', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'ctoc', 'technical', 'detail', 'locky', 'new', 'ransomware', 'encrypts', 'data', 'using', 'aes', 'encryption', 'demand', 'form', 'digital', 'currency', 'decrypt', 'file', 'locky', 'distributed', 'malicious', 'attachment', 'spam', 'email', 'recently', 'seen', 'massive', 'phishing', 'campaign', 'microsoft', 'word', 'document', 'attachment', 'ctu', 'researcher', 'observed', 'attachment', 'example', 'inwarehouse', 'tool', 'doc', 'embedded', 'macro', 'code', 'used', 'download', 'locky', 'payload', 'filename', 'seem', 'constructed', 'using', 'eight', 'random', 'number', 'following', 'inwarehouse', 'tool', 'potential', 'victim', 'receiving', 'attachment', 'need', 'open', 'enable', 'macro', 'initiate', 'payload', 'download', 'http', 'locky', 'running', 'compromised', 'system', 'drop', 'copy', 'temp', 'directory', 'affected', 'user', 'profile', 'set', 'registry', 'run', 'key', 'ensure', 'persistence', 'across', 'reboots', 'dropped', 'file', 'used', 'filename', 'ladybi', 'exe', 'svchost', 'exe', 'locky', 'also', 'set', 'hkcu', 'software', 'locky', 'registry', 'key', 'creates', 'value', 'listed', 'ctu', 'tip', 'article', 'provided', 'reference', 'section', 'locky', 'also', 'check', 'following', 'registry', 'key', 'indicate', 'presence', 'security', 'related', 'software', 'software', 'kasperskylab', 'software', 'eset', 'software', 'avast', 'software', 'victim', 'notified', 'infection', 'desktop', 'background', 'image', 'change', 'see', 'figure', 'ctu', 'tip', 'locky', 'place', 'instruction', 'text', 'file', 'bitmap', 'image', 'desktop', 'display', 'file', 'victim', 'unconfirmed', 'speculation', 'operator', 'botnet', 'distributing', 'locky', 'malware', 'also', 'responsible', 'bugat', 'dridex', 'banking', 'trojan', 'spam', 'emanates', 'botnet', 'distributes', 'bugat', 'threat', 'shiz', 'shifu', 'malware', 'finding', 'conclusive', 'botnet', 'used', 'various', 'affiliate', 'different', 'time', 'locky', 'also', 'capability', 'locate', 'network', 'resource', 'encrypt', 'file', 'location', 'ctu', 'researcher', 'analysing', 'block', 'code', 'used', 'enumerate', 'network', 'based', 'location', 'locky', 'attempt', 'encryption', 'following', 'file', 'file', 'type', 'qcow', 'vmdk', 'tar', 'bz', 'jpeg', 'sqlite', 'ppsm', 'potm', 'xlsx', 'docm', 'wallet', 'dat', 'xlsm', 'xlsb', 'dotm', 'dotx', 'docx', 'djvu', 'pptx', 'pptm', 'xltx', 'xltm', 'ppsx', 'ppam', 'docb', 'potx', 'lay', 'msid', 'sldm', 'sldx', 'tiff', 'class', 'java', 'sqlitedb', 'reference', 'event', 'data', 'event', 'id', 'event', 'summary', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'lpal', 'source', 'port', 'destination', 'ip', 'destination', 'hostname', 'ha', 'ru', 'destination', 'port', 'destination', 'ip', 'geolocation', 'geffen', 'nld', 'connection', 'directionality', 'outgoing', 'http', 'method', 'post', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'full', 'url', 'path', 'comercial', 'cadastra', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xadbff', 'ack', 'xbff', 'win', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'comercial', 'cadastra', 'php', 'ex', 'http', 'hostname', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'ae', 'c', 'ce', 'ac', 'af', 'cf', 'ff', 'dbff', 'q', 'p', 'b', 'ff', 'f', 'p', 'post', 'f', 'cf', 'comercial', 'cada', 'f', 'stra', 'php', 'http', 'f', 'e', 'host', 'ab', 'c', 'keep', 'aliv', 'da', 'ee', 'connecti', 'fe', 'sid', 'da', 'keep', 'alive', 'sid', 'df', 'user', 'agent', 'mozi', 'cc', 'e', 'fd', 'lla', 'compati', 'c', 'b', 'ble', 'msie', 'f', 'e', 'indows', 'nt', 'e', 'fe', 'content', 'typ', 'fe', 'e', 'application', 'f', 'dd', 'e', 'www', 'form', 'urlenc', 'da', 'e', 'oded', 'content', 'le', 'ad', 'ae', 'fd', 'ngth', 'nom', 'c', 'f', 'lpalandso', 'e', 'f', 'winanddata', 'fd', 'f', 'v', 'andidioma', 'port', 'ea', 'ugu', 'south', 'amerirtca', 'anda', 'e', 'nti', 'window', 'andp', 'ed', 'lugin', 'itandidcx', 'b', 'xl', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'sw', 'possible', 'locky', 'ransomware', 'infection', 'lpal', 'source', 'ip', 'system', 'name', 'lpal', 'user', 'name', 'sbinuxja', 'vtbegcho', 'nicolmghyu', 'location', 'centralsamerirtca', 'south', 'amerirtca', 'fieldsales', 'vpn', 'pc', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'sonar', 'risk', 'log', 'risk', 'information', 'downloaded', 'created', 'programdnty', 'file', 'java', 'jre', 'bin', 'javaw', 'exe', 'file', 'path', 'user', 'nicolmghyu', 'bbcc', 'bddbf', 'efa', 'exe', 'application', 'efa', 'exe', 'application', 'type', 'applicable', 'category', 'set', 'malware', 'category', 'type', 'heuristic', 'virus', 'version', 'file', 'size', 'hash', 'cfcabfafdfaffddfeefbfd', 'hash', 'algorithm', 'sha', 'risk', 'reputation', 'first', 'seen', 'symantec', 'known', 'file', 'approximately', 'day', 'reputation', 'file', 'untrustworthy', 'prevalence', 'file', 'seen', 'fewer', 'symantec', 'user', 'sonar', 'risk', 'level', 'high', 'sensitivity', 'low', 'detection', 'score', 'sonar', 'engine', 'version', 'submit', 'recommended', 'submit', 'incident', 'overview', 'ctoc', 'received', 'alert', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'sourcing', 'port', 'tcp', 'lpal', 'destined', 'port', 'tcp', 'geffen', 'nld', 'occurred', 'activity', 'indicates', 'lpal', 'likely', 'infected', 'locky', 'ransomware', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'url', 'path', 'comercial', 'cadastra', 'php', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'ctoc', 'technical', 'detail', 'locky', 'new', 'ransomware', 'encrypts', 'data', 'using', 'aes', 'encryption', 'demand', 'form', 'digital', 'currency', 'decrypt', 'file', 'locky', 'distributed', 'malicious', 'attachment', 'spam', 'email', 'recently', 'seen', 'massive', 'phishing', 'campaign', 'microsoft', 'word', 'document', 'attachment', 'ctu', 'researcher', 'observed', 'attachment', 'example', 'inwarehouse', 'tool', 'doc', 'embedded', 'macro', 'code', 'used', 'download', 'locky', 'payload', 'filename', 'seem', 'constructed', 'using', 'eight', 'random', 'number', 'following', 'inwarehouse', 'tool', 'potential', 'victim', 'receiving', 'attachment', 'need', 'open', 'enable', 'macro', 'initiate', 'payload', 'download', 'http', 'locky', 'running', 'compromised', 'system', 'drop', 'copy', 'temp', 'directory', 'affected', 'user', 'profile', 'set', 'registry', 'run', 'key', 'ensure', 'persistence', 'across', 'reboots', 'dropped', 'file', 'used', 'filename', 'ladybi', 'exe', 'svchost', 'exe', 'locky', 'also', 'set', 'hkcu', 'software', 'locky', 'registry', 'key', 'creates', 'value', 'listed', 'ctu', 'tip', 'article', 'provided', 'reference', 'section', 'locky', 'also', 'check', 'following', 'registry', 'key', 'indicate', 'presence', 'security', 'related', 'software', 'software', 'kasperskylab', 'software', 'eset', 'software', 'avast', 'software', 'victim', 'notified', 'infection', 'desktop', 'background', 'image', 'change', 'see', 'figure', 'ctu', 'tip', 'locky', 'place', 'instruction', 'text', 'file', 'bitmap', 'image', 'desktop', 'display', 'file', 'victim', 'unconfirmed', 'speculation', 'operator', 'botnet', 'distributing', 'locky', 'malware', 'also', 'responsible', 'bugat', 'dridex', 'banking', 'trojan', 'spam', 'emanates', 'botnet', 'distributes', 'bugat', 'threat', 'shiz', 'shifu', 'malware', 'finding', 'conclusive', 'botnet', 'used', 'various', 'affiliate', 'different', 'time', 'locky', 'also', 'capability', 'locate', 'network', 'resource', 'encrypt', 'file', 'location', 'ctu', 'researcher', 'analysing', 'block', 'code', 'used', 'enumerate', 'network', 'based', 'location', 'locky', 'attempt', 'encryption', 'following', 'file', 'file', 'type', 'qcow', 'vmdk', 'tar', 'bz', 'jpeg', 'sqlite', 'ppsm', 'potm', 'xlsx', 'docm', 'wallet', 'dat', 'xlsm', 'xlsb', 'dotm', 'dotx', 'docx', 'djvu', 'pptx', 'pptm', 'xltx', 'xltm', 'ppsx', 'ppam', 'docb', 'potx', 'lay', 'msid', 'sldm', 'sldx', 'tiff', 'class', 'java', 'sqlitedb', 'reference', 'event', 'data', 'event', 'id', 'event', 'summary', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'lpal', 'source', 'port', 'destination', 'ip', 'destination', 'hostname', 'ha', 'ru', 'destination', 'port', 'destination', 'ip', 'geolocation', 'geffen', 'nld', 'connection', 'directionality', 'outgoing', 'http', 'method', 'post', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'full', 'url', 'path', 'comercial', 'cadastra', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xadbff', 'ack', 'xbff', 'win', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'comercial', 'cadastra', 'php', 'ex', 'http', 'hostname', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'c', 'ae', 'c', 'ce', 'ac', 'af', 'cf', 'ff', 'dbff', 'q', 'p', 'b', 'ff', 'f', 'p', 'post', 'f', 'cf', 'comercial', 'cada', 'f', 'stra', 'php', 'http', 'f', 'e', 'host', 'ab', 'c', 'keep', 'aliv', 'da', 'ee', 'connecti', 'fe', 'sid', 'da', 'keep', 'alive', 'sid', 'df', 'user', 'agent', 'mozi', 'cc', 'e', 'fd', 'lla', 'compati', 'c', 'b', 'ble', 'msie', 'f', 'e', 'indows', 'nt', 'e', 'fe', 'content', 'typ', 'fe', 'e', 'application', 'f', 'dd', 'e', 'www', 'form', 'urlenc', 'da', 'e', 'oded', 'content', 'le', 'ad', 'ae', 'fd', 'ngth', 'nom', 'c', 'f', 'lpalandso', 'e', 'f', 'winanddata', 'fd', 'f', 'v', 'andidioma', 'port', 'ea', 'ugu', 'south', 'amerirtca', 'anda', 'e', 'nti', 'window', 'andp', 'ed', 'lugin', 'itandidcx', 'b', 'xl', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['sw'], ['possible'], ['locky'], ['ransomware'], ['infection'], ['lpal'], ['source'], ['ip'], ['system'], ['name'], ['lpal'], ['user'], ['name'], ['sbinuxja'], ['vtbegcho'], ['nicolmghyu'], ['location'], ['centralsamerirtca'], ['south'], ['amerirtca'], ['fieldsales'], ['vpn'], ['pc'], ['sm'], ['status'], ['see'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['content'], ['version'], ['fmxcnwpu'], ['tcwrdqboinition'], ['version'], ['sequence'], ['host'], ['integrity'], ['content'], ['reputation'], ['setting'], ['ap'], ['portal'], ['list'], ['intrusion'], ['prevention'], ['signature'], ['power'], ['eraser'], ['definition'], ['revocation'], ['content'], ['eraser'], ['engine'], ['sonar'], ['content'], ['extended'], ['file'], ['attribute'], ['signature'], ['symantec'], ['permitted'], ['application'], ['list'], ['sonar'], ['risk'], ['log'], ['risk'], ['information'], ['downloaded'], ['created'], ['programdnty'], ['file'], ['java'], ['jre'], ['bin'], ['javaw'], ['exe'], ['file'], ['path'], ['user'], ['nicolmghyu'], ['bbcc'], ['bddbf'], ['efa'], ['exe'], ['application'], ['efa'], ['exe'], ['application'], ['type'], ['applicable'], ['category'], ['set'], ['malware'], ['category'], ['type'], ['heuristic'], ['virus'], ['version'], ['file'], ['size'], ['hash'], ['cfcabfafdfaffddfeefbfd'], ['hash'], ['algorithm'], ['sha'], ['risk'], ['reputation'], ['first'], ['seen'], ['symantec'], ['known'], ['file'], ['approximately'], ['day'], ['reputation'], ['file'], ['untrustworthy'], ['prevalence'], ['file'], ['seen'], ['fewer'], ['symantec'], ['user'], ['sonar'], ['risk'], ['level'], ['high'], ['sensitivity'], ['low'], ['detection'], ['score'], ['sonar'], ['engine'], ['version'], ['submit'], ['recommended'], ['submit'], ['incident'], ['overview'], ['ctoc'], ['received'], ['alert'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['isensor'], ['device'], ['isensor'], ['company'], ['com'], ['traffic'], ['sourcing'], ['port'], ['tcp'], ['lpal'], ['destined'], ['port'], ['tcp'], ['geffen'], ['nld'], ['occurred'], ['activity'], ['indicates'], ['lpal'], ['likely'], ['infected'], ['locky'], ['ransomware'], ['outbound'], ['http'], ['traffic'], ['infected'], ['device'], ['contained'], ['following'], ['method'], ['data'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['version'], ['http'], ['domain'], ['url'], ['path'], ['comercial'], ['cadastra'], ['php'], ['user'], ['agent'], ['mozilla'], ['compatible'], ['msie'], ['window'], ['nt'], ['sv'], ['content'], ['length'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['related'], ['event'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['ctoc'], ['technical'], ['detail'], ['locky'], ['new'], ['ransomware'], ['encrypts'], ['data'], ['using'], ['aes'], ['encryption'], ['demand'], ['form'], ['digital'], ['currency'], ['decrypt'], ['file'], ['locky'], ['distributed'], ['malicious'], ['attachment'], ['spam'], ['email'], ['recently'], ['seen'], ['massive'], ['phishing'], ['campaign'], ['microsoft'], ['word'], ['document'], ['attachment'], ['ctu'], ['researcher'], ['observed'], ['attachment'], ['example'], ['inwarehouse'], ['tool'], ['doc'], ['embedded'], ['macro'], ['code'], ['used'], ['download'], ['locky'], ['payload'], ['filename'], ['seem'], ['constructed'], ['using'], ['eight'], ['random'], ['number'], ['following'], ['inwarehouse'], ['tool'], ['potential'], ['victim'], ['receiving'], ['attachment'], ['need'], ['open'], ['enable'], ['macro'], ['initiate'], ['payload'], ['download'], ['http'], ['locky'], ['running'], ['compromised'], ['system'], ['drop'], ['copy'], ['temp'], ['directory'], ['affected'], ['user'], ['profile'], ['set'], ['registry'], ['run'], ['key'], ['ensure'], ['persistence'], ['across'], ['reboots'], ['dropped'], ['file'], ['used'], ['filename'], ['ladybi'], ['exe'], ['svchost'], ['exe'], ['locky'], ['also'], ['set'], ['hkcu'], ['software'], ['locky'], ['registry'], ['key'], ['creates'], ['value'], ['listed'], ['ctu'], ['tip'], ['article'], ['provided'], ['reference'], ['section'], ['locky'], ['also'], ['check'], ['following'], ['registry'], ['key'], ['indicate'], ['presence'], ['security'], ['related'], ['software'], ['software'], ['kasperskylab'], ['software'], ['eset'], ['software'], ['avast'], ['software'], ['victim'], ['notified'], ['infection'], ['desktop'], ['background'], ['image'], ['change'], ['see'], ['figure'], ['ctu'], ['tip'], ['locky'], ['place'], ['instruction'], ['text'], ['file'], ['bitmap'], ['image'], ['desktop'], ['display'], ['file'], ['victim'], ['unconfirmed'], ['speculation'], ['operator'], ['botnet'], ['distributing'], ['locky'], ['malware'], ['also'], ['responsible'], ['bugat'], ['dridex'], ['banking'], ['trojan'], ['spam'], ['emanates'], ['botnet'], ['distributes'], ['bugat'], ['threat'], ['shiz'], ['shifu'], ['malware'], ['finding'], ['conclusive'], ['botnet'], ['used'], ['various'], ['affiliate'], ['different'], ['time'], ['locky'], ['also'], ['capability'], ['locate'], ['network'], ['resource'], ['encrypt'], ['file'], ['location'], ['ctu'], ['researcher'], ['analysing'], ['block'], ['code'], ['used'], ['enumerate'], ['network'], ['based'], ['location'], ['locky'], ['attempt'], ['encryption'], ['following'], ['file'], ['file'], ['type'], ['qcow'], ['vmdk'], ['tar'], ['bz'], ['jpeg'], ['sqlite'], ['ppsm'], ['potm'], ['xlsx'], ['docm'], ['wallet'], ['dat'], ['xlsm'], ['xlsb'], ['dotm'], ['dotx'], ['docx'], ['djvu'], ['pptx'], ['pptm'], ['xltx'], ['xltm'], ['ppsx'], ['ppam'], ['docb'], ['potx'], ['lay'], ['msid'], ['sldm'], ['sldx'], ['tiff'], ['class'], ['java'], ['sqlitedb'], ['reference'], ['event'], ['data'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['lpal'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['hostname'], ['ha'], ['ru'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['geffen'], ['nld'], ['connection'], ['directionality'], ['outgoing'], ['http'], ['method'], ['post'], ['user'], ['agent'], ['mozilla'], ['compatible'], ['msie'], ['window'], ['nt'], ['sv'], ['host'], ['full'], ['url'], ['path'], ['comercial'], ['cadastra'], ['php'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xadbff'], ['ack'], ['xbff'], ['win'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['comercial'], ['cadastra'], ['php'], ['ex'], ['http'], ['hostname'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['c'], ['ae'], ['c'], ['ce'], ['ac'], ['af'], ['cf'], ['ff'], ['dbff'], ['q'], ['p'], ['b'], ['ff'], ['f'], ['p'], ['post'], ['f'], ['cf'], ['comercial'], ['cada'], ['f'], ['stra'], ['php'], ['http'], ['f'], ['e'], ['host'], ['ab'], ['c'], ['keep'], ['aliv'], ['da'], ['ee'], ['connecti'], ['fe'], ['sid'], ['da'], ['keep'], ['alive'], ['sid'], ['df'], ['user'], ['agent'], ['mozi'], ['cc'], ['e'], ['fd'], ['lla'], ['compati'], ['c'], ['b'], ['ble'], ['msie'], ['f'], ['e'], ['indows'], ['nt'], ['e'], ['fe'], ['content'], ['typ'], ['fe'], ['e'], ['application'], ['f'], ['dd'], ['e'], ['www'], ['form'], ['urlenc'], ['da'], ['e'], ['oded'], ['content'], ['le'], ['ad'], ['ae'], ['fd'], ['ngth'], ['nom'], ['c'], ['f'], ['lpalandso'], ['e'], ['f'], ['winanddata'], ['fd'], ['f'], ['v'], ['andidioma'], ['port'], ['ea'], ['ugu'], ['south'], ['amerirtca'], ['anda'], ['e'], ['nti'], ['window'], ['andp'], ['ed'], ['lugin'], ['itandidcx'], ['b'], ['xl'], ['pcap'], ['hex'], ['e']] k: 7948 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'dear', 'sir', 'trying', 'connect', 'virtual', 'private', 'network', 'please', 'need', 'full', 'tomorrow', 'hr', 'free', 'hr', 'hr', 'inside', 'govt', 'factory', 'laptop', 'mobile', 'allowed', 'best'] processed_text: ['unable', 'connect', 'vpn', 'dear', 'sir', 'trying', 'connect', 'virtual', 'private', 'network', 'please', 'need', 'full', 'tomorrow', 'hr', 'free', 'hr', 'hr', 'inside', 'govt', 'factory', 'laptop', 'mobile', 'allowed', 'best'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['dear'], ['sir'], ['trying'], ['connect'], ['virtual'], ['private'], ['network'], ['please'], ['need'], ['full'], ['tomorrow'], ['hr'], ['free'], ['hr'], ['hr'], ['inside'], ['govt'], ['factory'], ['laptop'], ['mobile'], ['allowed'], ['best']] k: 7949 len: <class 'list'> Data: ['xceliron', 'process', 'working', 'inwarehouse', 'tool', 'blocking', 'due', 'missing', 'good', 'receipt', 'xceliron', 'process', 'working', 'inwarehouse', 'tool', 'blocking', 'due', 'missing', 'good', 'receipt', 'vendor', 'routinely', 'getting', 'paid', 'good', 'receipt', 'asuenpyg', 'vzmneycx', 'created', 'process', 'whereby', 'good', 'receipt', 'done', 'via', 'system', 'process', 'working'] processed_text: ['xceliron', 'process', 'working', 'inwarehouse', 'tool', 'blocking', 'due', 'missing', 'good', 'receipt', 'xceliron', 'process', 'working', 'inwarehouse', 'tool', 'blocking', 'due', 'missing', 'good', 'receipt', 'vendor', 'routinely', 'getting', 'paid', 'good', 'receipt', 'asuenpyg', 'vzmneycx', 'created', 'process', 'whereby', 'good', 'receipt', 'done', 'via', 'system', 'process', 'working'] list_processed_text: [['xceliron'], ['process'], ['working'], ['inwarehouse'], ['tool'], ['blocking'], ['due'], ['missing'], ['good'], ['receipt'], ['xceliron'], ['process'], ['working'], ['inwarehouse'], ['tool'], ['blocking'], ['due'], ['missing'], ['good'], ['receipt'], ['vendor'], ['routinely'], ['getting'], ['paid'], ['good'], ['receipt'], ['asuenpyg'], ['vzmneycx'], ['created'], ['process'], ['whereby'], ['good'], ['receipt'], ['done'], ['via'], ['system'], ['process'], ['working']] k: 7950 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc']] k: 7951 len: <class 'list'> Data: ['lhqwsf', 'usa', 'nologin', 'collaboration', 'platform', 'script', 'returned', 'unexpected', 'value', 'lhqwsf', 'usa', 'nologin', 'collaboration', 'platform', 'script', 'returned', 'unexpected', 'value'] processed_text: ['lhqwsf', 'usa', 'nologin', 'collaboration', 'platform', 'script', 'returned', 'unexpected', 'value', 'lhqwsf', 'usa', 'nologin', 'collaboration', 'platform', 'script', 'returned', 'unexpected', 'value'] list_processed_text: [['lhqwsf'], ['usa'], ['nologin'], ['collaboration'], ['platform'], ['script'], ['returned'], ['unexpected'], ['value'], ['lhqwsf'], ['usa'], ['nologin'], ['collaboration'], ['platform'], ['script'], ['returned'], ['unexpected'], ['value']] k: 7952 len: <class 'list'> Data: ['security', 'incident', 'sw', 'possible', 'locky', 'ransomware', 'infection', 'lpal', 'source', 'ip', 'system', 'name', 'lpal', 'user', 'name', 'sbinuxja', 'vtbegcho', 'nicolmghyu', 'location', 'centralsamerirtca', 'south', 'amerirtca', 'fieldsales', 'vpn', 'pc', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'sonar', 'risk', 'log', 'risk', 'information', 'downloaded', 'created', 'programdnty', 'file', 'java', 'jre', 'bin', 'javaw', 'exe', 'file', 'path', 'user', 'nicolmghyu', 'bbcc', 'bddbf', 'efa', 'exe', 'application', 'efa', 'exe', 'application', 'type', 'applicable', 'category', 'set', 'malware', 'category', 'type', 'heuristic', 'virus', 'version', 'file', 'size', 'hash', 'cfcabfafdfaffddfeefbfd', 'hash', 'algorithm', 'sha', 'risk', 'reputation', 'first', 'seen', 'symantec', 'known', 'file', 'approximately', 'day', 'reputation', 'file', 'untrustworthy', 'prevalence', 'file', 'seen', 'fewer', 'symantec', 'user', 'sonar', 'risk', 'level', 'high', 'sensitivity', 'low', 'detection', 'score', 'sonar', 'engine', 'version', 'submit', 'recommended', 'submit', 'incident', 'overview', 'ctoc', 'received', 'alert', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'sourcing', 'port', 'tcp', 'lpal', 'destined', 'port', 'tcp', 'geffen', 'nld', 'occurred', 'activity', 'indicates', 'lpal', 'likely', 'infected', 'locky', 'ransomware', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'url', 'path', 'comercial', 'cadastra', 'php', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'ctoc', 'technical', 'detail', 'locky', 'new', 'ransomware', 'encrypts', 'data', 'using', 'aes', 'encryption', 'demand', 'form', 'digital', 'currency', 'decrypt', 'file', 'locky', 'distributed', 'malicious', 'attachment', 'spam', 'email', 'recently', 'seen', 'massive', 'phishing', 'campaign', 'microsoft', 'word', 'document', 'attachment', 'ctu', 'researcher', 'observed', 'attachment', 'example', 'inwarehouse', 'tool', 'doc', 'embedded', 'macro', 'code', 'used', 'download', 'locky', 'payload', 'filename', 'seem', 'constructed', 'using', 'eight', 'random', 'number', 'following', 'inwarehouse', 'tool', 'potential', 'victim', 'receiving', 'attachment', 'need', 'open', 'enable', 'macro', 'initiate', 'payload', 'download', 'http', 'locky', 'running', 'compromised', 'system', 'drop', 'copy', 'temp', 'directory', 'affected', 'user', 'profile', 'set', 'registry', 'run', 'key', 'ensure', 'persistence', 'across', 'reboots', 'dropped', 'file', 'used', 'filename', 'ladybi', 'exe', 'svchost', 'exe', 'locky', 'also', 'set', 'hkcu', 'software', 'locky', 'registry', 'key', 'creates', 'value', 'listed', 'ctu', 'tip', 'article', 'provided', 'reference', 'section', 'locky', 'also', 'check', 'following', 'registry', 'key', 'indicate', 'presence', 'security', 'related', 'software', 'software', 'kasperskylab', 'software', 'eset', 'software', 'avast', 'software', 'victim', 'notified', 'infection', 'desktop', 'background', 'image', 'change', 'see', 'figure', 'ctu', 'tip', 'locky', 'place', 'instruction', 'text', 'file', 'bitmap', 'image', 'desktop', 'display', 'file', 'victim', 'unconfirmed', 'speculation', 'operator', 'botnet', 'distributing', 'locky', 'malware', 'also', 'responsible', 'bugat', 'dridex', 'banking', 'trojan', 'spam', 'emanates', 'botnet', 'distributes', 'bugat', 'threat', 'shiz', 'shifu', 'malware', 'finding', 'conclusive', 'botnet', 'used', 'various', 'affiliate', 'different', 'time', 'locky', 'also', 'capability', 'locate', 'network', 'resource', 'encrypt', 'file', 'location', 'ctu', 'researcher', 'analysing', 'block', 'code', 'used', 'enumerate', 'network', 'based', 'location', 'locky', 'attempt', 'encryption', 'following', 'file', 'file', 'type', 'qcow', 'vmdk', 'tar', 'bz', 'jpeg', 'sqlite', 'ppsm', 'potm', 'xlsx', 'docm', 'wallet', 'dat', 'xlsm', 'xlsb', 'dotm', 'dotx', 'docx', 'djvu', 'pptx', 'pptm', 'xltx', 'xltm', 'ppsx', 'ppam', 'docb', 'potx', 'lay', 'msid', 'sldm', 'sldx', 'tiff', 'class', 'java', 'sqlitedb', 'reference', 'event', 'data', 'event', 'id', 'event', 'summary', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'lpal', 'source', 'port', 'destination', 'ip', 'destination', 'hostname', 'ha', 'ru', 'destination', 'port', 'destination', 'ip', 'geolocation', 'geffen', 'nld', 'connection', 'directionality', 'outgoing', 'http', 'method', 'post', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'full', 'url', 'path', 'comercial', 'cadastra', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xadbff', 'ack', 'xbff', 'win', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'comercial', 'cadastra', 'php', 'ex', 'http', 'hostname', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ae', 'c', 'ce', 'ac', 'af', 'cf', 'ff', 'dbff', 'q', 'p', 'ff', 'f', 'p', 'post', 'f', 'cf', 'comercial', 'cada', 'f', 'stra', 'php', 'http', 'f', 'e', 'host', 'ab', 'c', 'keep', 'aliv', 'da', 'ee', 'connecti', 'fe', 'sid', 'da', 'keep', 'alive', 'sid', 'df', 'user', 'agent', 'mozi', 'cc', 'e', 'fd', 'lla', 'compati', 'c', 'b', 'ble', 'msie', 'e', 'e', 'b', 'indows', 'nt', 'fe', 'content', 'typ', 'fe', 'e', 'application', 'dd', 'e', 'www', 'form', 'urlenc', 'da', 'e', 'oded', 'content', 'le', 'ad', 'ae', 'fd', 'ngth', 'nom', 'c', 'f', 'lpalandso', 'e', 'f', 'winanddata', 'fd', 'f', 'v', 'andidioma', 'port', 'ea', 'ugu', 'south', 'amerirtca', 'anda', 'e', 'nti', 'window', 'andp', 'ed', 'lugin', 'itandidcx', 'c', 'xl', 'pcap', 'hex', 'e'] processed_text: ['security', 'incident', 'sw', 'possible', 'locky', 'ransomware', 'infection', 'lpal', 'source', 'ip', 'system', 'name', 'lpal', 'user', 'name', 'sbinuxja', 'vtbegcho', 'nicolmghyu', 'location', 'centralsamerirtca', 'south', 'amerirtca', 'fieldsales', 'vpn', 'pc', 'sm', 'status', 'see', 'field', 'sale', 'user', 'yes', 'dsw', 'event', 'log', 'see', 'content', 'version', 'fmxcnwpu', 'tcwrdqboinition', 'version', 'sequence', 'host', 'integrity', 'content', 'reputation', 'setting', 'ap', 'portal', 'list', 'intrusion', 'prevention', 'signature', 'power', 'eraser', 'definition', 'revocation', 'content', 'eraser', 'engine', 'sonar', 'content', 'extended', 'file', 'attribute', 'signature', 'symantec', 'permitted', 'application', 'list', 'sonar', 'risk', 'log', 'risk', 'information', 'downloaded', 'created', 'programdnty', 'file', 'java', 'jre', 'bin', 'javaw', 'exe', 'file', 'path', 'user', 'nicolmghyu', 'bbcc', 'bddbf', 'efa', 'exe', 'application', 'efa', 'exe', 'application', 'type', 'applicable', 'category', 'set', 'malware', 'category', 'type', 'heuristic', 'virus', 'version', 'file', 'size', 'hash', 'cfcabfafdfaffddfeefbfd', 'hash', 'algorithm', 'sha', 'risk', 'reputation', 'first', 'seen', 'symantec', 'known', 'file', 'approximately', 'day', 'reputation', 'file', 'untrustworthy', 'prevalence', 'file', 'seen', 'fewer', 'symantec', 'user', 'sonar', 'risk', 'level', 'high', 'sensitivity', 'low', 'detection', 'score', 'sonar', 'engine', 'version', 'submit', 'recommended', 'submit', 'incident', 'overview', 'ctoc', 'received', 'alert', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'isensor', 'device', 'isensor', 'company', 'com', 'traffic', 'sourcing', 'port', 'tcp', 'lpal', 'destined', 'port', 'tcp', 'geffen', 'nld', 'occurred', 'activity', 'indicates', 'lpal', 'likely', 'infected', 'locky', 'ransomware', 'outbound', 'http', 'traffic', 'infected', 'device', 'contained', 'following', 'method', 'data', 'protocol', 'tcp', 'http', 'method', 'post', 'http', 'version', 'http', 'domain', 'url', 'path', 'comercial', 'cadastra', 'php', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'content', 'length', 'escalating', 'incident', 'via', 'high', 'priority', 'ticket', 'phone', 'call', 'per', 'default', 'event', 'handling', 'procedure', 'would', 'like', 'u', 'handle', 'incident', 'differently', 'future', 'see', 'handling', 'option', 'question', 'concern', 'please', 'let', 'u', 'know', 'either', 'corresponding', 'u', 'via', 'ticket', 'delegating', 'ticket', 'back', 'ctoc', 'calling', 'u', 'ticket', 'escalation', 'related', 'event', 'medium', 'priority', 'ticket', 'mail', 'notification', 'autoresolve', 'event', 'portal', 'explicit', 'notification', 'event', 'available', 'reporting', 'purpose', 'portal', 'sincerely', 'secureworks', 'ctoc', 'technical', 'detail', 'locky', 'new', 'ransomware', 'encrypts', 'data', 'using', 'aes', 'encryption', 'demand', 'form', 'digital', 'currency', 'decrypt', 'file', 'locky', 'distributed', 'malicious', 'attachment', 'spam', 'email', 'recently', 'seen', 'massive', 'phishing', 'campaign', 'microsoft', 'word', 'document', 'attachment', 'ctu', 'researcher', 'observed', 'attachment', 'example', 'inwarehouse', 'tool', 'doc', 'embedded', 'macro', 'code', 'used', 'download', 'locky', 'payload', 'filename', 'seem', 'constructed', 'using', 'eight', 'random', 'number', 'following', 'inwarehouse', 'tool', 'potential', 'victim', 'receiving', 'attachment', 'need', 'open', 'enable', 'macro', 'initiate', 'payload', 'download', 'http', 'locky', 'running', 'compromised', 'system', 'drop', 'copy', 'temp', 'directory', 'affected', 'user', 'profile', 'set', 'registry', 'run', 'key', 'ensure', 'persistence', 'across', 'reboots', 'dropped', 'file', 'used', 'filename', 'ladybi', 'exe', 'svchost', 'exe', 'locky', 'also', 'set', 'hkcu', 'software', 'locky', 'registry', 'key', 'creates', 'value', 'listed', 'ctu', 'tip', 'article', 'provided', 'reference', 'section', 'locky', 'also', 'check', 'following', 'registry', 'key', 'indicate', 'presence', 'security', 'related', 'software', 'software', 'kasperskylab', 'software', 'eset', 'software', 'avast', 'software', 'victim', 'notified', 'infection', 'desktop', 'background', 'image', 'change', 'see', 'figure', 'ctu', 'tip', 'locky', 'place', 'instruction', 'text', 'file', 'bitmap', 'image', 'desktop', 'display', 'file', 'victim', 'unconfirmed', 'speculation', 'operator', 'botnet', 'distributing', 'locky', 'malware', 'also', 'responsible', 'bugat', 'dridex', 'banking', 'trojan', 'spam', 'emanates', 'botnet', 'distributes', 'bugat', 'threat', 'shiz', 'shifu', 'malware', 'finding', 'conclusive', 'botnet', 'used', 'various', 'affiliate', 'different', 'time', 'locky', 'also', 'capability', 'locate', 'network', 'resource', 'encrypt', 'file', 'location', 'ctu', 'researcher', 'analysing', 'block', 'code', 'used', 'enumerate', 'network', 'based', 'location', 'locky', 'attempt', 'encryption', 'following', 'file', 'file', 'type', 'qcow', 'vmdk', 'tar', 'bz', 'jpeg', 'sqlite', 'ppsm', 'potm', 'xlsx', 'docm', 'wallet', 'dat', 'xlsm', 'xlsb', 'dotm', 'dotx', 'docx', 'djvu', 'pptx', 'pptm', 'xltx', 'xltm', 'ppsx', 'ppam', 'docb', 'potx', 'lay', 'msid', 'sldm', 'sldx', 'tiff', 'class', 'java', 'sqlitedb', 'reference', 'event', 'data', 'event', 'id', 'event', 'summary', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'occurrence', 'count', 'event', 'count', 'host', 'connection', 'information', 'source', 'ip', 'source', 'hostname', 'lpal', 'source', 'port', 'destination', 'ip', 'destination', 'hostname', 'ha', 'ru', 'destination', 'port', 'destination', 'ip', 'geolocation', 'geffen', 'nld', 'connection', 'directionality', 'outgoing', 'http', 'method', 'post', 'user', 'agent', 'mozilla', 'compatible', 'msie', 'window', 'nt', 'sv', 'host', 'full', 'url', 'path', 'comercial', 'cadastra', 'php', 'device', 'information', 'device', 'ip', 'device', 'name', 'isensor', 'company', 'com', 'log', 'time', 'utc', 'action', 'blocked', 'vendor', 'eventid', 'cv', 'score', 'vendor', 'priority', 'vendor', 'version', 'scwx', 'event', 'processing', 'information', 'sherlock', 'rule', 'id', 'sle', 'inspector', 'rule', 'id', 'inspector', 'event', 'id', 'ontology', 'id', 'event', 'type', 'id', 'agent', 'id', 'event', 'detail', 'vid', 'locky', 'ransomware', 'communication', 'outbound', 'classification', 'none', 'priority', 'action', 'accept', 'passive', 'impact', 'flag', 'impact', 'blocked', 'vlan', 'mpls', 'label', 'pad', 'sensor', 'id', 'event', 'id', 'time', 'src', 'ip', 'dst', 'ip', 'sport', 'itype', 'dport', 'icode', 'pro', 'tcp', 'ttl', 'tos', 'id', 'iplen', 'dgmlen', 'df', 'ap', 'seq', 'xadbff', 'ack', 'xbff', 'win', 'tcplen', 'pcap', 'ex', 'http', 'uri', 'comercial', 'cadastra', 'php', 'ex', 'http', 'hostname', 'security', 'ascii', 'packet', 'pcap', 'ascii', 'pcap', 'ascii', 'hex', 'packet', 'pcap', 'hex', 'ae', 'c', 'ce', 'ac', 'af', 'cf', 'ff', 'dbff', 'q', 'p', 'ff', 'f', 'p', 'post', 'f', 'cf', 'comercial', 'cada', 'f', 'stra', 'php', 'http', 'f', 'e', 'host', 'ab', 'c', 'keep', 'aliv', 'da', 'ee', 'connecti', 'fe', 'sid', 'da', 'keep', 'alive', 'sid', 'df', 'user', 'agent', 'mozi', 'cc', 'e', 'fd', 'lla', 'compati', 'c', 'b', 'ble', 'msie', 'e', 'e', 'b', 'indows', 'nt', 'fe', 'content', 'typ', 'fe', 'e', 'application', 'dd', 'e', 'www', 'form', 'urlenc', 'da', 'e', 'oded', 'content', 'le', 'ad', 'ae', 'fd', 'ngth', 'nom', 'c', 'f', 'lpalandso', 'e', 'f', 'winanddata', 'fd', 'f', 'v', 'andidioma', 'port', 'ea', 'ugu', 'south', 'amerirtca', 'anda', 'e', 'nti', 'window', 'andp', 'ed', 'lugin', 'itandidcx', 'c', 'xl', 'pcap', 'hex', 'e'] list_processed_text: [['security'], ['incident'], ['sw'], ['possible'], ['locky'], ['ransomware'], ['infection'], ['lpal'], ['source'], ['ip'], ['system'], ['name'], ['lpal'], ['user'], ['name'], ['sbinuxja'], ['vtbegcho'], ['nicolmghyu'], ['location'], ['centralsamerirtca'], ['south'], ['amerirtca'], ['fieldsales'], ['vpn'], ['pc'], ['sm'], ['status'], ['see'], ['field'], ['sale'], ['user'], ['yes'], ['dsw'], ['event'], ['log'], ['see'], ['content'], ['version'], ['fmxcnwpu'], ['tcwrdqboinition'], ['version'], ['sequence'], ['host'], ['integrity'], ['content'], ['reputation'], ['setting'], ['ap'], ['portal'], ['list'], ['intrusion'], ['prevention'], ['signature'], ['power'], ['eraser'], ['definition'], ['revocation'], ['content'], ['eraser'], ['engine'], ['sonar'], ['content'], ['extended'], ['file'], ['attribute'], ['signature'], ['symantec'], ['permitted'], ['application'], ['list'], ['sonar'], ['risk'], ['log'], ['risk'], ['information'], ['downloaded'], ['created'], ['programdnty'], ['file'], ['java'], ['jre'], ['bin'], ['javaw'], ['exe'], ['file'], ['path'], ['user'], ['nicolmghyu'], ['bbcc'], ['bddbf'], ['efa'], ['exe'], ['application'], ['efa'], ['exe'], ['application'], ['type'], ['applicable'], ['category'], ['set'], ['malware'], ['category'], ['type'], ['heuristic'], ['virus'], ['version'], ['file'], ['size'], ['hash'], ['cfcabfafdfaffddfeefbfd'], ['hash'], ['algorithm'], ['sha'], ['risk'], ['reputation'], ['first'], ['seen'], ['symantec'], ['known'], ['file'], ['approximately'], ['day'], ['reputation'], ['file'], ['untrustworthy'], ['prevalence'], ['file'], ['seen'], ['fewer'], ['symantec'], ['user'], ['sonar'], ['risk'], ['level'], ['high'], ['sensitivity'], ['low'], ['detection'], ['score'], ['sonar'], ['engine'], ['version'], ['submit'], ['recommended'], ['submit'], ['incident'], ['overview'], ['ctoc'], ['received'], ['alert'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['isensor'], ['device'], ['isensor'], ['company'], ['com'], ['traffic'], ['sourcing'], ['port'], ['tcp'], ['lpal'], ['destined'], ['port'], ['tcp'], ['geffen'], ['nld'], ['occurred'], ['activity'], ['indicates'], ['lpal'], ['likely'], ['infected'], ['locky'], ['ransomware'], ['outbound'], ['http'], ['traffic'], ['infected'], ['device'], ['contained'], ['following'], ['method'], ['data'], ['protocol'], ['tcp'], ['http'], ['method'], ['post'], ['http'], ['version'], ['http'], ['domain'], ['url'], ['path'], ['comercial'], ['cadastra'], ['php'], ['user'], ['agent'], ['mozilla'], ['compatible'], ['msie'], ['window'], ['nt'], ['sv'], ['content'], ['length'], ['escalating'], ['incident'], ['via'], ['high'], ['priority'], ['ticket'], ['phone'], ['call'], ['per'], ['default'], ['event'], ['handling'], ['procedure'], ['would'], ['like'], ['u'], ['handle'], ['incident'], ['differently'], ['future'], ['see'], ['handling'], ['option'], ['question'], ['concern'], ['please'], ['let'], ['u'], ['know'], ['either'], ['corresponding'], ['u'], ['via'], ['ticket'], ['delegating'], ['ticket'], ['back'], ['ctoc'], ['calling'], ['u'], ['ticket'], ['escalation'], ['related'], ['event'], ['medium'], ['priority'], ['ticket'], ['mail'], ['notification'], ['autoresolve'], ['event'], ['portal'], ['explicit'], ['notification'], ['event'], ['available'], ['reporting'], ['purpose'], ['portal'], ['sincerely'], ['secureworks'], ['ctoc'], ['technical'], ['detail'], ['locky'], ['new'], ['ransomware'], ['encrypts'], ['data'], ['using'], ['aes'], ['encryption'], ['demand'], ['form'], ['digital'], ['currency'], ['decrypt'], ['file'], ['locky'], ['distributed'], ['malicious'], ['attachment'], ['spam'], ['email'], ['recently'], ['seen'], ['massive'], ['phishing'], ['campaign'], ['microsoft'], ['word'], ['document'], ['attachment'], ['ctu'], ['researcher'], ['observed'], ['attachment'], ['example'], ['inwarehouse'], ['tool'], ['doc'], ['embedded'], ['macro'], ['code'], ['used'], ['download'], ['locky'], ['payload'], ['filename'], ['seem'], ['constructed'], ['using'], ['eight'], ['random'], ['number'], ['following'], ['inwarehouse'], ['tool'], ['potential'], ['victim'], ['receiving'], ['attachment'], ['need'], ['open'], ['enable'], ['macro'], ['initiate'], ['payload'], ['download'], ['http'], ['locky'], ['running'], ['compromised'], ['system'], ['drop'], ['copy'], ['temp'], ['directory'], ['affected'], ['user'], ['profile'], ['set'], ['registry'], ['run'], ['key'], ['ensure'], ['persistence'], ['across'], ['reboots'], ['dropped'], ['file'], ['used'], ['filename'], ['ladybi'], ['exe'], ['svchost'], ['exe'], ['locky'], ['also'], ['set'], ['hkcu'], ['software'], ['locky'], ['registry'], ['key'], ['creates'], ['value'], ['listed'], ['ctu'], ['tip'], ['article'], ['provided'], ['reference'], ['section'], ['locky'], ['also'], ['check'], ['following'], ['registry'], ['key'], ['indicate'], ['presence'], ['security'], ['related'], ['software'], ['software'], ['kasperskylab'], ['software'], ['eset'], ['software'], ['avast'], ['software'], ['victim'], ['notified'], ['infection'], ['desktop'], ['background'], ['image'], ['change'], ['see'], ['figure'], ['ctu'], ['tip'], ['locky'], ['place'], ['instruction'], ['text'], ['file'], ['bitmap'], ['image'], ['desktop'], ['display'], ['file'], ['victim'], ['unconfirmed'], ['speculation'], ['operator'], ['botnet'], ['distributing'], ['locky'], ['malware'], ['also'], ['responsible'], ['bugat'], ['dridex'], ['banking'], ['trojan'], ['spam'], ['emanates'], ['botnet'], ['distributes'], ['bugat'], ['threat'], ['shiz'], ['shifu'], ['malware'], ['finding'], ['conclusive'], ['botnet'], ['used'], ['various'], ['affiliate'], ['different'], ['time'], ['locky'], ['also'], ['capability'], ['locate'], ['network'], ['resource'], ['encrypt'], ['file'], ['location'], ['ctu'], ['researcher'], ['analysing'], ['block'], ['code'], ['used'], ['enumerate'], ['network'], ['based'], ['location'], ['locky'], ['attempt'], ['encryption'], ['following'], ['file'], ['file'], ['type'], ['qcow'], ['vmdk'], ['tar'], ['bz'], ['jpeg'], ['sqlite'], ['ppsm'], ['potm'], ['xlsx'], ['docm'], ['wallet'], ['dat'], ['xlsm'], ['xlsb'], ['dotm'], ['dotx'], ['docx'], ['djvu'], ['pptx'], ['pptm'], ['xltx'], ['xltm'], ['ppsx'], ['ppam'], ['docb'], ['potx'], ['lay'], ['msid'], ['sldm'], ['sldx'], ['tiff'], ['class'], ['java'], ['sqlitedb'], ['reference'], ['event'], ['data'], ['event'], ['id'], ['event'], ['summary'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['occurrence'], ['count'], ['event'], ['count'], ['host'], ['connection'], ['information'], ['source'], ['ip'], ['source'], ['hostname'], ['lpal'], ['source'], ['port'], ['destination'], ['ip'], ['destination'], ['hostname'], ['ha'], ['ru'], ['destination'], ['port'], ['destination'], ['ip'], ['geolocation'], ['geffen'], ['nld'], ['connection'], ['directionality'], ['outgoing'], ['http'], ['method'], ['post'], ['user'], ['agent'], ['mozilla'], ['compatible'], ['msie'], ['window'], ['nt'], ['sv'], ['host'], ['full'], ['url'], ['path'], ['comercial'], ['cadastra'], ['php'], ['device'], ['information'], ['device'], ['ip'], ['device'], ['name'], ['isensor'], ['company'], ['com'], ['log'], ['time'], ['utc'], ['action'], ['blocked'], ['vendor'], ['eventid'], ['cv'], ['score'], ['vendor'], ['priority'], ['vendor'], ['version'], ['scwx'], ['event'], ['processing'], ['information'], ['sherlock'], ['rule'], ['id'], ['sle'], ['inspector'], ['rule'], ['id'], ['inspector'], ['event'], ['id'], ['ontology'], ['id'], ['event'], ['type'], ['id'], ['agent'], ['id'], ['event'], ['detail'], ['vid'], ['locky'], ['ransomware'], ['communication'], ['outbound'], ['classification'], ['none'], ['priority'], ['action'], ['accept'], ['passive'], ['impact'], ['flag'], ['impact'], ['blocked'], ['vlan'], ['mpls'], ['label'], ['pad'], ['sensor'], ['id'], ['event'], ['id'], ['time'], ['src'], ['ip'], ['dst'], ['ip'], ['sport'], ['itype'], ['dport'], ['icode'], ['pro'], ['tcp'], ['ttl'], ['tos'], ['id'], ['iplen'], ['dgmlen'], ['df'], ['ap'], ['seq'], ['xadbff'], ['ack'], ['xbff'], ['win'], ['tcplen'], ['pcap'], ['ex'], ['http'], ['uri'], ['comercial'], ['cadastra'], ['php'], ['ex'], ['http'], ['hostname'], ['security'], ['ascii'], ['packet'], ['pcap'], ['ascii'], ['pcap'], ['ascii'], ['hex'], ['packet'], ['pcap'], ['hex'], ['ae'], ['c'], ['ce'], ['ac'], ['af'], ['cf'], ['ff'], ['dbff'], ['q'], ['p'], ['ff'], ['f'], ['p'], ['post'], ['f'], ['cf'], ['comercial'], ['cada'], ['f'], ['stra'], ['php'], ['http'], ['f'], ['e'], ['host'], ['ab'], ['c'], ['keep'], ['aliv'], ['da'], ['ee'], ['connecti'], ['fe'], ['sid'], ['da'], ['keep'], ['alive'], ['sid'], ['df'], ['user'], ['agent'], ['mozi'], ['cc'], ['e'], ['fd'], ['lla'], ['compati'], ['c'], ['b'], ['ble'], ['msie'], ['e'], ['e'], ['b'], ['indows'], ['nt'], ['fe'], ['content'], ['typ'], ['fe'], ['e'], ['application'], ['dd'], ['e'], ['www'], ['form'], ['urlenc'], ['da'], ['e'], ['oded'], ['content'], ['le'], ['ad'], ['ae'], ['fd'], ['ngth'], ['nom'], ['c'], ['f'], ['lpalandso'], ['e'], ['f'], ['winanddata'], ['fd'], ['f'], ['v'], ['andidioma'], ['port'], ['ea'], ['ugu'], ['south'], ['amerirtca'], ['anda'], ['e'], ['nti'], ['window'], ['andp'], ['ed'], ['lugin'], ['itandidcx'], ['c'], ['xl'], ['pcap'], ['hex'], ['e']] k: 7953 len: <class 'list'> Data: ['engineering', 'tool', 'engineering', 'tool', 'stop', 'working', 'several', 'time', 'day', 'fall', 'without', 'apparent', 'reason', 'work', 'slow', 'succeeds', 'stay', 'running', 'please', 'see', 'attached', 'print', 'screen', 'error'] processed_text: ['engineering', 'tool', 'engineering', 'tool', 'stop', 'working', 'several', 'time', 'day', 'fall', 'without', 'apparent', 'reason', 'work', 'slow', 'succeeds', 'stay', 'running', 'please', 'see', 'attached', 'print', 'screen', 'error'] list_processed_text: [['engineering'], ['tool'], ['engineering'], ['tool'], ['stop'], ['working'], ['several'], ['time'], ['day'], ['fall'], ['without'], ['apparent'], ['reason'], ['work'], ['slow'], ['succeeds'], ['stay'], ['running'], ['please'], ['see'], ['attached'], ['print'], ['screen'], ['error']] k: 7954 len: <class 'list'> Data: ['abend', 'batch', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'job', 'name', 'bkbackup', 'tool', 'hostname', 'prod', 'inc'] processed_text: ['abend', 'batch', 'job', 'job', 'scheduler', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'job', 'name', 'bkbackup', 'tool', 'hostname', 'prod', 'inc'] list_processed_text: [['abend'], ['batch'], ['job'], ['job'], ['scheduler'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc'], ['job'], ['name'], ['bkbackup'], ['tool'], ['hostname'], ['prod'], ['inc']] k: 7955 len: <class 'list'> Data: ['please', 'move', 'client', 'office', 'per', 'sdxjiwlq', 'ynowzqfh', 'please', 'move', 'client', 'office', 'per', 'sdxjiwlq', 'ynowzqfh'] processed_text: ['please', 'move', 'client', 'office', 'per', 'sdxjiwlq', 'ynowzqfh', 'please', 'move', 'client', 'office', 'per', 'sdxjiwlq', 'ynowzqfh'] list_processed_text: [['please'], ['move'], ['client'], ['office'], ['per'], ['sdxjiwlq'], ['ynowzqfh'], ['please'], ['move'], ['client'], ['office'], ['per'], ['sdxjiwlq'], ['ynowzqfh']] k: 7956 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7957 len: <class 'list'> Data: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] processed_text: ['ticket', 'ticket', 'update', 'ticket', 'ticket', 'update'] list_processed_text: [['ticket'], ['ticket'], ['update'], ['ticket'], ['ticket'], ['update']] k: 7958 len: <class 'list'> Data: ['please', 'instal', 'printer', 'pa', 'laptop', 'please', 'instal', 'printer', 'pa', 'laptop'] processed_text: ['please', 'instal', 'printer', 'pa', 'laptop', 'please', 'instal', 'printer', 'pa', 'laptop'] list_processed_text: [['please'], ['instal'], ['printer'], ['pa'], ['laptop'], ['please'], ['instal'], ['printer'], ['pa'], ['laptop']] k: 7959 len: <class 'list'> Data: ['restore', 'file', 'hello', 'help', 'please', 'restore', 'excel', 'file', 'sc', 'drill', 'catalog', 'home', 'drive', 'solid', 'carbide', 'drill', 'file', 'eagclhome', 'martif', 'solid', 'carbide', 'drill', 'yesterday'] processed_text: ['restore', 'file', 'hello', 'help', 'please', 'restore', 'excel', 'file', 'sc', 'drill', 'catalog', 'home', 'drive', 'solid', 'carbide', 'drill', 'file', 'eagclhome', 'martif', 'solid', 'carbide', 'drill', 'yesterday'] list_processed_text: [['restore'], ['file'], ['hello'], ['help'], ['please'], ['restore'], ['excel'], ['file'], ['sc'], ['drill'], ['catalog'], ['home'], ['drive'], ['solid'], ['carbide'], ['drill'], ['file'], ['eagclhome'], ['martif'], ['solid'], ['carbide'], ['drill'], ['yesterday']] k: 7960 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'hotel', 'dell', 'unable', 'connect', 'wifi', 'hotel', 'dell'] processed_text: ['unable', 'connect', 'wifi', 'hotel', 'dell', 'unable', 'connect', 'wifi', 'hotel', 'dell'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['hotel'], ['dell'], ['unable'], ['connect'], ['wifi'], ['hotel'], ['dell']] k: 7961 len: <class 'list'> Data: ['access', 'insertapps', 'corporate', 'technology', 'drive', 'would', 'contact', 'corporate', 'get', 'access', 'ldpequhm', 'nqclatbw', 'alex', 'campbell', 'following', 'server', 'team', 'hostname', 'tech', 'center', 'grade', 'specification', 'ceramdntyic', 'spec', 'access', 'needed', 'support', 'manufacturing', 'technology'] processed_text: ['access', 'insertapps', 'corporate', 'technology', 'drive', 'would', 'contact', 'corporate', 'get', 'access', 'ldpequhm', 'nqclatbw', 'alex', 'campbell', 'following', 'server', 'team', 'hostname', 'tech', 'center', 'grade', 'specification', 'ceramdntyic', 'spec', 'access', 'needed', 'support', 'manufacturing', 'technology'] list_processed_text: [['access'], ['insertapps'], ['corporate'], ['technology'], ['drive'], ['would'], ['contact'], ['corporate'], ['get'], ['access'], ['ldpequhm'], ['nqclatbw'], ['alex'], ['campbell'], ['following'], ['server'], ['team'], ['hostname'], ['tech'], ['center'], ['grade'], ['specification'], ['ceramdntyic'], ['spec'], ['access'], ['needed'], ['support'], ['manufacturing'], ['technology']] k: 7962 len: <class 'list'> Data: ['audio', 'working', 'dell', 'tablet', 'audio', 'working', 'dell', 'tablet'] processed_text: ['audio', 'working', 'dell', 'tablet', 'audio', 'working', 'dell', 'tablet'] list_processed_text: [['audio'], ['working'], ['dell'], ['tablet'], ['audio'], ['working'], ['dell'], ['tablet']] k: 7963 len: <class 'list'> Data: ['unable', 'create', 'report', 'ticketing', 'tool', 'unable', 'create', 'save', 'new', 'report', 'ticketing', 'tool'] processed_text: ['unable', 'create', 'report', 'ticketing', 'tool', 'unable', 'create', 'save', 'new', 'report', 'ticketing', 'tool'] list_processed_text: [['unable'], ['create'], ['report'], ['ticketing'], ['tool'], ['unable'], ['create'], ['save'], ['new'], ['report'], ['ticketing'], ['tool']] k: 7964 len: <class 'list'> Data: ['unable', 'boot', 'laptop', 'unable', 'boot', 'laptop'] processed_text: ['unable', 'boot', 'laptop', 'unable', 'boot', 'laptop'] list_processed_text: [['unable'], ['boot'], ['laptop'], ['unable'], ['boot'], ['laptop']] k: 7965 len: <class 'list'> Data: ['unable', 'sign', 'skype', 'outlook', 'unable', 'sign', 'skype', 'outlook'] processed_text: ['unable', 'sign', 'skype', 'outlook', 'unable', 'sign', 'skype', 'outlook'] list_processed_text: [['unable'], ['sign'], ['skype'], ['outlook'], ['unable'], ['sign'], ['skype'], ['outlook']] k: 7966 len: <class 'list'> Data: ['hostname', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found', 'hostname', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found'] processed_text: ['hostname', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found', 'hostname', 'epmsystem', 'exe', 'wrong', 'number', 'instance', 'process', 'epmsystem', 'exe', 'expected', 'found'] list_processed_text: [['hostname'], ['wrong'], ['number'], ['instance'], ['process'], ['epmsystem'], ['exe'], ['expected'], ['found'], ['hostname'], ['epmsystem'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['epmsystem'], ['exe'], ['expected'], ['found']] k: 7967 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 7968 len: <class 'list'> Data: ['error', 'customer', 'good', 'morning', 'customer', 'must', 'include', 'next', 'data', 'dana', 'manufacturing', 'luxembourg', 'division', 'enco', 'immex', 'vat', 'reg', 'lu', 'dmcc', 'know', 'one', 'dana', 'de', 'mexico', 'corporacion', 'mexico', 'srl', 'de', 'cv', 'division', 'enco', 'immex', 'vat', 'reg', 'lu', 'dmcc', 'data', 'wrong', 'get', 'real', 'information', 'information', 'customer', 'please', 'let', 'know', 'help'] processed_text: ['error', 'customer', 'good', 'morning', 'customer', 'must', 'include', 'next', 'data', 'dana', 'manufacturing', 'luxembourg', 'division', 'enco', 'immex', 'vat', 'reg', 'lu', 'dmcc', 'know', 'one', 'dana', 'de', 'mexico', 'corporacion', 'mexico', 'srl', 'de', 'cv', 'division', 'enco', 'immex', 'vat', 'reg', 'lu', 'dmcc', 'data', 'wrong', 'get', 'real', 'information', 'information', 'customer', 'please', 'let', 'know', 'help'] list_processed_text: [['error'], ['customer'], ['good'], ['morning'], ['customer'], ['must'], ['include'], ['next'], ['data'], ['dana'], ['manufacturing'], ['luxembourg'], ['division'], ['enco'], ['immex'], ['vat'], ['reg'], ['lu'], ['dmcc'], ['know'], ['one'], ['dana'], ['de'], ['mexico'], ['corporacion'], ['mexico'], ['srl'], ['de'], ['cv'], ['division'], ['enco'], ['immex'], ['vat'], ['reg'], ['lu'], ['dmcc'], ['data'], ['wrong'], ['get'], ['real'], ['information'], ['information'], ['customer'], ['please'], ['let'], ['know'], ['help']] k: 7969 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 7970 len: <class 'list'> Data: ['hub', 'home', 'page', 'regional', 'news', 'amerirtcas', 'option', 'see', 'att'] processed_text: ['hub', 'home', 'page', 'regional', 'news', 'amerirtcas', 'option', 'see', 'att'] list_processed_text: [['hub'], ['home'], ['page'], ['regional'], ['news'], ['amerirtcas'], ['option'], ['see'], ['att']] k: 7971 len: <class 'list'> Data: ['issue', 'internet', 'explorer', 'freezing', 'time'] processed_text: ['issue', 'internet', 'explorer', 'freezing', 'time'] list_processed_text: [['issue'], ['internet'], ['explorer'], ['freezing'], ['time']] k: 7972 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'need', 'erp', 'password', 'reset', 'getting', 'error', 'logging', 'engineering', 'tool', 'attempted', 'many', 'time', 'wrong', 'password', 'old', 'password'] processed_text: ['erp', 'sid', 'password', 'reset', 'need', 'erp', 'password', 'reset', 'getting', 'error', 'logging', 'engineering', 'tool', 'attempted', 'many', 'time', 'wrong', 'password', 'old', 'password'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['need'], ['erp'], ['password'], ['reset'], ['getting'], ['error'], ['logging'], ['engineering'], ['tool'], ['attempted'], ['many'], ['time'], ['wrong'], ['password'], ['old'], ['password']] k: 7973 len: <class 'list'> Data: ['supplier', 'told', 'warehouse', 'toolmail', 'matheywt', 'kaufsfthyman', 'also', 'problem', 'x', 'koiapqbg', 'teyldpkw', 'matheywt', 'kaufsfthyman', 'phone', 'system', 'warehouse', 'toolmail'] processed_text: ['supplier', 'told', 'warehouse', 'toolmail', 'matheywt', 'kaufsfthyman', 'also', 'problem', 'x', 'koiapqbg', 'teyldpkw', 'matheywt', 'kaufsfthyman', 'phone', 'system', 'warehouse', 'toolmail'] list_processed_text: [['supplier'], ['told'], ['warehouse'], ['toolmail'], ['matheywt'], ['kaufsfthyman'], ['also'], ['problem'], ['x'], ['koiapqbg'], ['teyldpkw'], ['matheywt'], ['kaufsfthyman'], ['phone'], ['system'], ['warehouse'], ['toolmail']] k: 7974 len: <class 'list'> Data: ['desk', 'phone', 'warehouse', 'toolmail', 'accessing', 'warehouse', 'toolmail', 'receive', 'busy', 'signal', 'red', 'warehouse', 'toolmail', 'light', 'activated', 'phone', 'push', 'button', 'busy', 'signal', 'received', 'others', 'issue'] processed_text: ['desk', 'phone', 'warehouse', 'toolmail', 'accessing', 'warehouse', 'toolmail', 'receive', 'busy', 'signal', 'red', 'warehouse', 'toolmail', 'light', 'activated', 'phone', 'push', 'button', 'busy', 'signal', 'received', 'others', 'issue'] list_processed_text: [['desk'], ['phone'], ['warehouse'], ['toolmail'], ['accessing'], ['warehouse'], ['toolmail'], ['receive'], ['busy'], ['signal'], ['red'], ['warehouse'], ['toolmail'], ['light'], ['activated'], ['phone'], ['push'], ['button'], ['busy'], ['signal'], ['received'], ['others'], ['issue']] k: 7975 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 7976 len: <class 'list'> Data: ['delivery', 'failure', 'date', 'email', 'attached', 'email', 'one', 'sent', 'delivered', 'received', 'delivery', 'error', 'message', 'sender', 'name', 'uidgt', 'olibercsu', 'recipient', 'caller', 'jgnxyahz', 'cixzwuyf', 'delivery', 'failure', 'code', 'xf', 'xf', 'delivery', 'failure', 'text', 'sua', 'mensagem', 'foi', 'recebida', 'por', 'um', 'ou', 'mais', 'do', 'destinat', 'rio', 'assun', 'enc', 'curso', 'customer', 'logistics', 'service', 'cl', 'enviada', 'em', 'po', 'vel', 'encontrar', 'o', 'seguintes', 'destinat', 'rio', 'jgnxyahz', 'cixzwuyf', 'em', 'esta', 'mensagem', 'de', 'ser', 'enviada', 'tente', 'enviar', 'mensagem', 'novamente', 'mais', 'tarde', 'ou', 'contate', 'administrador', 'da', 'rede', 'erro', 'opera', 'cliente', 'falhou', 'xf', 'xf'] processed_text: ['delivery', 'failure', 'date', 'email', 'attached', 'email', 'one', 'sent', 'delivered', 'received', 'delivery', 'error', 'message', 'sender', 'name', 'uidgt', 'olibercsu', 'recipient', 'caller', 'jgnxyahz', 'cixzwuyf', 'delivery', 'failure', 'code', 'xf', 'xf', 'delivery', 'failure', 'text', 'sua', 'mensagem', 'foi', 'recebida', 'por', 'um', 'ou', 'mais', 'do', 'destinat', 'rio', 'assun', 'enc', 'curso', 'customer', 'logistics', 'service', 'cl', 'enviada', 'em', 'po', 'vel', 'encontrar', 'o', 'seguintes', 'destinat', 'rio', 'jgnxyahz', 'cixzwuyf', 'em', 'esta', 'mensagem', 'de', 'ser', 'enviada', 'tente', 'enviar', 'mensagem', 'novamente', 'mais', 'tarde', 'ou', 'contate', 'administrador', 'da', 'rede', 'erro', 'opera', 'cliente', 'falhou', 'xf', 'xf'] list_processed_text: [['delivery'], ['failure'], ['date'], ['email'], ['attached'], ['email'], ['one'], ['sent'], ['delivered'], ['received'], ['delivery'], ['error'], ['message'], ['sender'], ['name'], ['uidgt'], ['olibercsu'], ['recipient'], ['caller'], ['jgnxyahz'], ['cixzwuyf'], ['delivery'], ['failure'], ['code'], ['xf'], ['xf'], ['delivery'], ['failure'], ['text'], ['sua'], ['mensagem'], ['foi'], ['recebida'], ['por'], ['um'], ['ou'], ['mais'], ['do'], ['destinat'], ['rio'], ['assun'], ['enc'], ['curso'], ['customer'], ['logistics'], ['service'], ['cl'], ['enviada'], ['em'], ['po'], ['vel'], ['encontrar'], ['o'], ['seguintes'], ['destinat'], ['rio'], ['jgnxyahz'], ['cixzwuyf'], ['em'], ['esta'], ['mensagem'], ['de'], ['ser'], ['enviada'], ['tente'], ['enviar'], ['mensagem'], ['novamente'], ['mais'], ['tarde'], ['ou'], ['contate'], ['administrador'], ['da'], ['rede'], ['erro'], ['opera'], ['cliente'], ['falhou'], ['xf'], ['xf']] k: 7977 len: <class 'list'> Data: ['access', 'database', 'error', 'access', 'database', 'error', 'attached'] processed_text: ['access', 'database', 'error', 'access', 'database', 'error', 'attached'] list_processed_text: [['access'], ['database'], ['error'], ['access'], ['database'], ['error'], ['attached']] k: 7978 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 7979 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'swap', 'memory', 'usage', 'warning', 'threshold'] processed_text: ['hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'hostname', 'average', 'sample', 'memory', 'usage', 'error', 'threshold', 'swap', 'memory', 'usage', 'warning', 'threshold'] list_processed_text: [['hostname'], ['average'], ['sample'], ['memory'], ['usage'], ['error'], ['threshold'], ['hostname'], ['average'], ['sample'], ['memory'], ['usage'], ['error'], ['threshold'], ['swap'], ['memory'], ['usage'], ['warning'], ['threshold']] k: 7980 len: <class 'list'> Data: ['telephone', 'dial', 'tone', 'cannot', 'pick', 'warehouse', 'tool', 'mail', 'message', 'telephone', 'dial', 'tone', 'cannot', 'pick', 'warehouse', 'tool', 'mail', 'message'] processed_text: ['telephone', 'dial', 'tone', 'cannot', 'pick', 'warehouse', 'tool', 'mail', 'message', 'telephone', 'dial', 'tone', 'cannot', 'pick', 'warehouse', 'tool', 'mail', 'message'] list_processed_text: [['telephone'], ['dial'], ['tone'], ['cannot'], ['pick'], ['warehouse'], ['tool'], ['mail'], ['message'], ['telephone'], ['dial'], ['tone'], ['cannot'], ['pick'], ['warehouse'], ['tool'], ['mail'], ['message']] k: 7981 len: <class 'list'> Data: ['account', 'lockout', 'account', 'lockout'] processed_text: ['account', 'lockout', 'account', 'lockout'] list_processed_text: [['account'], ['lockout'], ['account'], ['lockout']] k: 7982 len: <class 'list'> Data: ['issue', 'disconnected', 'every', 'minute', 'outlook', 'cannot', 'send', 'recive', 'email', 'search', 'issue', 'disconnected', 'every', 'minute', 'outlook', 'cannot', 'send', 'receive', 'email', 'search', 'disconnect'] processed_text: ['issue', 'disconnected', 'every', 'minute', 'outlook', 'cannot', 'send', 'recive', 'email', 'search', 'issue', 'disconnected', 'every', 'minute', 'outlook', 'cannot', 'send', 'receive', 'email', 'search', 'disconnect'] list_processed_text: [['issue'], ['disconnected'], ['every'], ['minute'], ['outlook'], ['cannot'], ['send'], ['recive'], ['email'], ['search'], ['issue'], ['disconnected'], ['every'], ['minute'], ['outlook'], ['cannot'], ['send'], ['receive'], ['email'], ['search'], ['disconnect']] k: 7983 len: <class 'list'> Data: ['restore', 'please', 'restore', 'westes', 'hostname', 'file', 'hostname', 'operational', 'regulation', 'bv', 'bv', 'anlage', 'bv', 'bonus', 'im', 'ad', 'fy', 'docx', 'thank', 'much', 'gr', 'trgqbeax', 'hfyzudql', 'kind', 'regard', 'best'] processed_text: ['restore', 'please', 'restore', 'westes', 'hostname', 'file', 'hostname', 'operational', 'regulation', 'bv', 'bv', 'anlage', 'bv', 'bonus', 'im', 'ad', 'fy', 'docx', 'thank', 'much', 'gr', 'trgqbeax', 'hfyzudql', 'kind', 'regard', 'best'] list_processed_text: [['restore'], ['please'], ['restore'], ['westes'], ['hostname'], ['file'], ['hostname'], ['operational'], ['regulation'], ['bv'], ['bv'], ['anlage'], ['bv'], ['bonus'], ['im'], ['ad'], ['fy'], ['docx'], ['thank'], ['much'], ['gr'], ['trgqbeax'], ['hfyzudql'], ['kind'], ['regard'], ['best']] k: 7984 len: <class 'list'> Data: ['outloock', 'working', 'error', 'message', 'unfortunately', 'outlook', 'encountered', 'error', 'preventing', 'working', 'properly', 'result', 'outlook', 'closed', 'would', 'like', 'repair', 'three', 'bot', 'repair', 'close', 'help'] processed_text: ['outloock', 'working', 'error', 'message', 'unfortunately', 'outlook', 'encountered', 'error', 'preventing', 'working', 'properly', 'result', 'outlook', 'closed', 'would', 'like', 'repair', 'three', 'bot', 'repair', 'close', 'help'] list_processed_text: [['outloock'], ['working'], ['error'], ['message'], ['unfortunately'], ['outlook'], ['encountered'], ['error'], ['preventing'], ['working'], ['properly'], ['result'], ['outlook'], ['closed'], ['would'], ['like'], ['repair'], ['three'], ['bot'], ['repair'], ['close'], ['help']] k: 7985 len: <class 'list'> Data: ['warehouse', 'toolmail', 'working', 'warehouse', 'toolmail', 'seem', 'picking', 'incoming', 'call', 'number', 'attempted', 'uacyltoe', 'hxgaycze', 'calling', 'cell', 'phone', 'ring', 'warehouse', 'toolmail', 'still', 'pick'] processed_text: ['warehouse', 'toolmail', 'working', 'warehouse', 'toolmail', 'seem', 'picking', 'incoming', 'call', 'number', 'attempted', 'uacyltoe', 'hxgaycze', 'calling', 'cell', 'phone', 'ring', 'warehouse', 'toolmail', 'still', 'pick'] list_processed_text: [['warehouse'], ['toolmail'], ['working'], ['warehouse'], ['toolmail'], ['seem'], ['picking'], ['incoming'], ['call'], ['number'], ['attempted'], ['uacyltoe'], ['hxgaycze'], ['calling'], ['cell'], ['phone'], ['ring'], ['warehouse'], ['toolmail'], ['still'], ['pick']] k: 7986 len: <class 'list'> Data: ['setting', 'ooo', 'another', 'mail', 'box', 'setting', 'ooo', 'another', 'mail', 'box', 'summary', 'need', 'office', 'employee', 'work', 'company', 'longer'] processed_text: ['setting', 'ooo', 'another', 'mail', 'box', 'setting', 'ooo', 'another', 'mail', 'box', 'summary', 'need', 'office', 'employee', 'work', 'company', 'longer'] list_processed_text: [['setting'], ['ooo'], ['another'], ['mail'], ['box'], ['setting'], ['ooo'], ['another'], ['mail'], ['box'], ['summary'], ['need'], ['office'], ['employee'], ['work'], ['company'], ['longer']] k: 7987 len: <class 'list'> Data: ['user', 'hajghtdul', 'unable', 'connect', 'via', 'vpn', 'unable', 'access', 'distributor', 'tool', 'distributor', 'tool', 'qa', 'changed', 'password', 'using', 'password', 'management', 'tool', 'password', 'manager', 'password', 'change', 'unable', 'connect', 'via', 'vpn', 'user', 'id', 'hajghtdul'] processed_text: ['user', 'hajghtdul', 'unable', 'connect', 'via', 'vpn', 'unable', 'access', 'distributor', 'tool', 'distributor', 'tool', 'qa', 'changed', 'password', 'using', 'password', 'management', 'tool', 'password', 'manager', 'password', 'change', 'unable', 'connect', 'via', 'vpn', 'user', 'id', 'hajghtdul'] list_processed_text: [['user'], ['hajghtdul'], ['unable'], ['connect'], ['via'], ['vpn'], ['unable'], ['access'], ['distributor'], ['tool'], ['distributor'], ['tool'], ['qa'], ['changed'], ['password'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['change'], ['unable'], ['connect'], ['via'], ['vpn'], ['user'], ['id'], ['hajghtdul']] k: 7988 len: <class 'list'> Data: ['warehouse', 'toolmail', 'possible', 'phone', 'set', 'warehouse', 'toolmail', 'possible', 'phone', 'set'] processed_text: ['warehouse', 'toolmail', 'possible', 'phone', 'set', 'warehouse', 'toolmail', 'possible', 'phone', 'set'] list_processed_text: [['warehouse'], ['toolmail'], ['possible'], ['phone'], ['set'], ['warehouse'], ['toolmail'], ['possible'], ['phone'], ['set']] k: 7989 len: <class 'list'> Data: ['group', 'work', 'new', 'modern', 'look', 'see', 'attached', 'image', 'site', 'show', 'grouping', 'first', 'level', 'second', 'level', 'continuous', 'expand', 'arrow', 'responsive'] processed_text: ['group', 'work', 'new', 'modern', 'look', 'see', 'attached', 'image', 'site', 'show', 'grouping', 'first', 'level', 'second', 'level', 'continuous', 'expand', 'arrow', 'responsive'] list_processed_text: [['group'], ['work'], ['new'], ['modern'], ['look'], ['see'], ['attached'], ['image'], ['site'], ['show'], ['grouping'], ['first'], ['level'], ['second'], ['level'], ['continuous'], ['expand'], ['arrow'], ['responsive']] k: 7990 len: <class 'list'> Data: ['erp', 'sid', 'unlock', 'request', 'erp', 'sid', 'unlock', 'request'] processed_text: ['erp', 'sid', 'unlock', 'request', 'erp', 'sid', 'unlock', 'request'] list_processed_text: [['erp'], ['sid'], ['unlock'], ['request'], ['erp'], ['sid'], ['unlock'], ['request']] k: 7991 len: <class 'list'> Data: ['update', 'inplant', 'update', 'inplant'] processed_text: ['update', 'inplant', 'update', 'inplant'] list_processed_text: [['update'], ['inplant'], ['update'], ['inplant']] k: 7992 len: <class 'list'> Data: ['ldism', 'usa', 'village', 'claapdico', 'robot', 'inactive', 'since', 'et', 'ldism', 'usa', 'village', 'claapdico', 'robot', 'inactive', 'since', 'et'] processed_text: ['ldism', 'usa', 'village', 'claapdico', 'robot', 'inactive', 'since', 'et', 'ldism', 'usa', 'village', 'claapdico', 'robot', 'inactive', 'since', 'et'] list_processed_text: [['ldism'], ['usa'], ['village'], ['claapdico'], ['robot'], ['inactive'], ['since'], ['et'], ['ldism'], ['usa'], ['village'], ['claapdico'], ['robot'], ['inactive'], ['since'], ['et']] k: 7993 len: <class 'list'> Data: ['setup', 'new', 'w', 'xaqzisrk', 'ahbgjrqz', 'setup', 'new', 'w', 'xaqzisrk', 'ahbgjrqz'] processed_text: ['setup', 'new', 'w', 'xaqzisrk', 'ahbgjrqz', 'setup', 'new', 'w', 'xaqzisrk', 'ahbgjrqz'] list_processed_text: [['setup'], ['new'], ['w'], ['xaqzisrk'], ['ahbgjrqz'], ['setup'], ['new'], ['w'], ['xaqzisrk'], ['ahbgjrqz']] k: 7994 len: <class 'list'> Data: ['warehouse', 'toolmail', 'related', 'office', 'phone', 'functioning', 'warehouse', 'toolmail', 'associated', 'office', 'phone', 'functioning', 'properly', 'trying', 'access', 'warehouse', 'toolmail', 'office', 'phone', 'receive', 'possible', 'message', 'phone', 'also', 'tried', 'access', 'warehouse', 'toolmail', 'number', 'receive', 'message', 'state', 'call', 'cannot', 'completed', 'time'] processed_text: ['warehouse', 'toolmail', 'related', 'office', 'phone', 'functioning', 'warehouse', 'toolmail', 'associated', 'office', 'phone', 'functioning', 'properly', 'trying', 'access', 'warehouse', 'toolmail', 'office', 'phone', 'receive', 'possible', 'message', 'phone', 'also', 'tried', 'access', 'warehouse', 'toolmail', 'number', 'receive', 'message', 'state', 'call', 'cannot', 'completed', 'time'] list_processed_text: [['warehouse'], ['toolmail'], ['related'], ['office'], ['phone'], ['functioning'], ['warehouse'], ['toolmail'], ['associated'], ['office'], ['phone'], ['functioning'], ['properly'], ['trying'], ['access'], ['warehouse'], ['toolmail'], ['office'], ['phone'], ['receive'], ['possible'], ['message'], ['phone'], ['also'], ['tried'], ['access'], ['warehouse'], ['toolmail'], ['number'], ['receive'], ['message'], ['state'], ['call'], ['cannot'], ['completed'], ['time']] k: 7995 len: <class 'list'> Data: ['handheld', 'wireless', 'device', 'activation', 'iphone', 'handheld', 'wireless', 'device', 'activation', 'iphone'] processed_text: ['handheld', 'wireless', 'device', 'activation', 'iphone', 'handheld', 'wireless', 'device', 'activation', 'iphone'] list_processed_text: [['handheld'], ['wireless'], ['device'], ['activation'], ['iphone'], ['handheld'], ['wireless'], ['device'], ['activation'], ['iphone']] k: 7996 len: <class 'list'> Data: ['need', 'file', 'restored', 'network', 'nt', 'drive', 'hostname', 'need', 'file', 'restored', 'network', 'nt', 'drive', 'file', 'full', 'pathname', 'techcenter', 'project', 'server', 'drive', 'hostname', 'backup', 'date', 'last', 'modified', 'date', 'want', 'file', 'restored', 'unsure', 'recent', 'backup', 'date', 'used', 'want', 'entire', 'folder', 'restored', 'must', 'provide', 'specific', 'filename', 'restore', 'yes', 'backup', 'tape', 'onsite', 'ok', 'allow', 'business', 'day', 'retrieve', 'offsite', 'tape', 'extra', 'charge', 'apply', 'emergency', 'delivery', 'want', 'filename', 'folder', 'restored', 'original', 'place', 'original', 'name', 'word', 'overwrite', 'done', 'need', 'supply', 'new', 'name', 'location', 'restore', 'note', 'day', 'maximum', 'backup', 'available', 'file', 'restores', 'exception', 'hostname', 'hostname', 'kept', 'year'] processed_text: ['need', 'file', 'restored', 'network', 'nt', 'drive', 'hostname', 'need', 'file', 'restored', 'network', 'nt', 'drive', 'file', 'full', 'pathname', 'techcenter', 'project', 'server', 'drive', 'hostname', 'backup', 'date', 'last', 'modified', 'date', 'want', 'file', 'restored', 'unsure', 'recent', 'backup', 'date', 'used', 'want', 'entire', 'folder', 'restored', 'must', 'provide', 'specific', 'filename', 'restore', 'yes', 'backup', 'tape', 'onsite', 'ok', 'allow', 'business', 'day', 'retrieve', 'offsite', 'tape', 'extra', 'charge', 'apply', 'emergency', 'delivery', 'want', 'filename', 'folder', 'restored', 'original', 'place', 'original', 'name', 'word', 'overwrite', 'done', 'need', 'supply', 'new', 'name', 'location', 'restore', 'note', 'day', 'maximum', 'backup', 'available', 'file', 'restores', 'exception', 'hostname', 'hostname', 'kept', 'year'] list_processed_text: [['need'], ['file'], ['restored'], ['network'], ['nt'], ['drive'], ['hostname'], ['need'], ['file'], ['restored'], ['network'], ['nt'], ['drive'], ['file'], ['full'], ['pathname'], ['techcenter'], ['project'], ['server'], ['drive'], ['hostname'], ['backup'], ['date'], ['last'], ['modified'], ['date'], ['want'], ['file'], ['restored'], ['unsure'], ['recent'], ['backup'], ['date'], ['used'], ['want'], ['entire'], ['folder'], ['restored'], ['must'], ['provide'], ['specific'], ['filename'], ['restore'], ['yes'], ['backup'], ['tape'], ['onsite'], ['ok'], ['allow'], ['business'], ['day'], ['retrieve'], ['offsite'], ['tape'], ['extra'], ['charge'], ['apply'], ['emergency'], ['delivery'], ['want'], ['filename'], ['folder'], ['restored'], ['original'], ['place'], ['original'], ['name'], ['word'], ['overwrite'], ['done'], ['need'], ['supply'], ['new'], ['name'], ['location'], ['restore'], ['note'], ['day'], ['maximum'], ['backup'], ['available'], ['file'], ['restores'], ['exception'], ['hostname'], ['hostname'], ['kept'], ['year']] k: 7997 len: <class 'list'> Data: ['need', 'access', 'utislgov', 'fetaqndw', 'hi', 'want', 'give', 'utislgov', 'fetaqndw', 'access', 'hostname', 'department', 'drive'] processed_text: ['need', 'access', 'utislgov', 'fetaqndw', 'hi', 'want', 'give', 'utislgov', 'fetaqndw', 'access', 'hostname', 'department', 'drive'] list_processed_text: [['need'], ['access'], ['utislgov'], ['fetaqndw'], ['hi'], ['want'], ['give'], ['utislgov'], ['fetaqndw'], ['access'], ['hostname'], ['department'], ['drive']] k: 7998 len: <class 'list'> Data: ['unlock', 'erp', 'sid', 'erp', 'production', 'account', 'unlock', 'erp', 'sid', 'erp', 'production', 'account'] processed_text: ['unlock', 'erp', 'sid', 'erp', 'production', 'account', 'unlock', 'erp', 'sid', 'erp', 'production', 'account'] list_processed_text: [['unlock'], ['erp'], ['sid'], ['erp'], ['production'], ['account'], ['unlock'], ['erp'], ['sid'], ['erp'], ['production'], ['account']] k: 7999 len: <class 'list'> Data: ['review', 'pc', 'lpaw', 'grfv', 'usadtto', 'dfsdpor', 'ffthhiago', 'frsilva', 'use', 'microsoft', 'update', 'update', 'adobe', 'acrobat', 'adobe', 'flash', 'java', 'review', 'group', 'review', 'update', 'sep', 'review', 'patching', 'antivirus', 'sw', 'review', 'erp', 'client', 'run', 'check', 'disk', 'defrag', 'scan', 'sep', 'update', 'driver', 'dell', 'check', 'new', 'version', 'office', 'package', 'uacyltoe', 'hxgayczear', 'itau', 'access', 'hsbc', 'box', 'uacyltoe', 'hxgayczear', 'ita', 'plaghynilhas', 'opening'] processed_text: ['review', 'pc', 'lpaw', 'grfv', 'usadtto', 'dfsdpor', 'ffthhiago', 'frsilva', 'use', 'microsoft', 'update', 'update', 'adobe', 'acrobat', 'adobe', 'flash', 'java', 'review', 'group', 'review', 'update', 'sep', 'review', 'patching', 'antivirus', 'sw', 'review', 'erp', 'client', 'run', 'check', 'disk', 'defrag', 'scan', 'sep', 'update', 'driver', 'dell', 'check', 'new', 'version', 'office', 'package', 'uacyltoe', 'hxgayczear', 'itau', 'access', 'hsbc', 'box', 'uacyltoe', 'hxgayczear', 'ita', 'plaghynilhas', 'opening'] list_processed_text: [['review'], ['pc'], ['lpaw'], ['grfv'], ['usadtto'], ['dfsdpor'], ['ffthhiago'], ['frsilva'], ['use'], ['microsoft'], ['update'], ['update'], ['adobe'], ['acrobat'], ['adobe'], ['flash'], ['java'], ['review'], ['group'], ['review'], ['update'], ['sep'], ['review'], ['patching'], ['antivirus'], ['sw'], ['review'], ['erp'], ['client'], ['run'], ['check'], ['disk'], ['defrag'], ['scan'], ['sep'], ['update'], ['driver'], ['dell'], ['check'], ['new'], ['version'], ['office'], ['package'], ['uacyltoe'], ['hxgayczear'], ['itau'], ['access'], ['hsbc'], ['box'], ['uacyltoe'], ['hxgayczear'], ['ita'], ['plaghynilhas'], ['opening']] k: 8000 len: <class 'list'> Data: ['seep', 'installation', 'seep', 'installation'] processed_text: ['seep', 'installation', 'seep', 'installation'] list_processed_text: [['seep'], ['installation'], ['seep'], ['installation']] k: 8001 len: <class 'list'> Data: ['issue', 'pricing', 'distributor', 'tool', 'agreed', 'price', 'many', 'distributor', 'given', 'period', 'skus', 'specified', 'pricing', 'condition', 'zcnc', 'erp', 'distributor', 'tool', 'order', 'sold', 'ship', 'combination', 'till', 'flat', 'rate', 'deployment', 'issue', 'today', 'distributor', 'tried', 'book', 'order', 'zcnc', 'pricing', 'condition', 'initial', 'screen', 'show', 'correct', 'price', 'item', 'selected', 'quick', 'order', 'clicked', 'price', 'getting', 'changed', 'list', 'price', 'le', 'standard', 'discount', 'instead', 'retaining', 'zcnc', 'price'] processed_text: ['issue', 'pricing', 'distributor', 'tool', 'agreed', 'price', 'many', 'distributor', 'given', 'period', 'skus', 'specified', 'pricing', 'condition', 'zcnc', 'erp', 'distributor', 'tool', 'order', 'sold', 'ship', 'combination', 'till', 'flat', 'rate', 'deployment', 'issue', 'today', 'distributor', 'tried', 'book', 'order', 'zcnc', 'pricing', 'condition', 'initial', 'screen', 'show', 'correct', 'price', 'item', 'selected', 'quick', 'order', 'clicked', 'price', 'getting', 'changed', 'list', 'price', 'le', 'standard', 'discount', 'instead', 'retaining', 'zcnc', 'price'] list_processed_text: [['issue'], ['pricing'], ['distributor'], ['tool'], ['agreed'], ['price'], ['many'], ['distributor'], ['given'], ['period'], ['skus'], ['specified'], ['pricing'], ['condition'], ['zcnc'], ['erp'], ['distributor'], ['tool'], ['order'], ['sold'], ['ship'], ['combination'], ['till'], ['flat'], ['rate'], ['deployment'], ['issue'], ['today'], ['distributor'], ['tried'], ['book'], ['order'], ['zcnc'], ['pricing'], ['condition'], ['initial'], ['screen'], ['show'], ['correct'], ['price'], ['item'], ['selected'], ['quick'], ['order'], ['clicked'], ['price'], ['getting'], ['changed'], ['list'], ['price'], ['le'], ['standard'], ['discount'], ['instead'], ['retaining'], ['zcnc'], ['price']] k: 8002 len: <class 'list'> Data: ['outlook', 'issue', 'outlook', 'issue'] processed_text: ['outlook', 'issue', 'outlook', 'issue'] list_processed_text: [['outlook'], ['issue'], ['outlook'], ['issue']] k: 8003 len: <class 'list'> Data: ['vvfrtgarnb', 'account', 'disabled', 'account', 'need', 'enabled', 'till', 'please', 'enable', 'bahbrgy', 'account', 'aerp', 'leaving', 'company', 'know', 'account', 'disabled', 'today'] processed_text: ['vvfrtgarnb', 'account', 'disabled', 'account', 'need', 'enabled', 'till', 'please', 'enable', 'bahbrgy', 'account', 'aerp', 'leaving', 'company', 'know', 'account', 'disabled', 'today'] list_processed_text: [['vvfrtgarnb'], ['account'], ['disabled'], ['account'], ['need'], ['enabled'], ['till'], ['please'], ['enable'], ['bahbrgy'], ['account'], ['aerp'], ['leaving'], ['company'], ['know'], ['account'], ['disabled'], ['today']] k: 8004 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 8005 len: <class 'list'> Data: ['account', 'disabled', 'user', 'vvfrtgarnb', 'account', 'disabled', 'user', 'vvfrtgarnb'] processed_text: ['account', 'disabled', 'user', 'vvfrtgarnb', 'account', 'disabled', 'user', 'vvfrtgarnb'] list_processed_text: [['account'], ['disabled'], ['user'], ['vvfrtgarnb'], ['account'], ['disabled'], ['user'], ['vvfrtgarnb']] k: 8006 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] processed_text: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['unable'], ['connect'], ['wifi']] k: 8007 len: <class 'list'> Data: ['close', 'telephony', 'software', 'local', 'time', 'due', 'kick', 'dinner', 'hi', 'would', 'please', 'close', 'telephony', 'software', 'turkey', 'local', 'time', 'due', 'kick', 'dinner', 'approved', 'djpwfxzt', 'cfkwxlmq'] processed_text: ['close', 'telephony', 'software', 'local', 'time', 'due', 'kick', 'dinner', 'hi', 'would', 'please', 'close', 'telephony', 'software', 'turkey', 'local', 'time', 'due', 'kick', 'dinner', 'approved', 'djpwfxzt', 'cfkwxlmq'] list_processed_text: [['close'], ['telephony'], ['software'], ['local'], ['time'], ['due'], ['kick'], ['dinner'], ['hi'], ['would'], ['please'], ['close'], ['telephony'], ['software'], ['turkey'], ['local'], ['time'], ['due'], ['kick'], ['dinner'], ['approved'], ['djpwfxzt'], ['cfkwxlmq']] k: 8008 len: <class 'list'> Data: ['distributor', 'tool', 'company', 'issue', 'engineering', 'tool', 'issue', 'distributor', 'tool', 'company', 'issue', 'engineering', 'tool', 'issue'] processed_text: ['distributor', 'tool', 'company', 'issue', 'engineering', 'tool', 'issue', 'distributor', 'tool', 'company', 'issue', 'engineering', 'tool', 'issue'] list_processed_text: [['distributor'], ['tool'], ['company'], ['issue'], ['engineering'], ['tool'], ['issue'], ['distributor'], ['tool'], ['company'], ['issue'], ['engineering'], ['tool'], ['issue']] k: 8009 len: <class 'list'> Data: ['reset', 'password', 'wptbgchj', 'jutpdcqf', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'wptbgchj', 'jutpdcqf', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['wptbgchj'], ['jutpdcqf'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 8010 len: <class 'list'> Data: ['unable', 'connect', 'vpn', 'dear', 'sir', 'madam', 'unable', 'access', 'vpn', 'please', 'refer', 'message'] processed_text: ['unable', 'connect', 'vpn', 'dear', 'sir', 'madam', 'unable', 'access', 'vpn', 'please', 'refer', 'message'] list_processed_text: [['unable'], ['connect'], ['vpn'], ['dear'], ['sir'], ['madam'], ['unable'], ['access'], ['vpn'], ['please'], ['refer'], ['message']] k: 8011 len: <class 'list'> Data: ['symantec', 'management', 'agent', 'disabled', 'symantec', 'management', 'agent', 'disabled'] processed_text: ['symantec', 'management', 'agent', 'disabled', 'symantec', 'management', 'agent', 'disabled'] list_processed_text: [['symantec'], ['management'], ['agent'], ['disabled'], ['symantec'], ['management'], ['agent'], ['disabled']] k: 8012 len: <class 'list'> Data: ['npc', 'maintain', 'plant', 'value', 'task', 'assigned', 'jimdghty', 'beshryu', 'error', 'npc', 'information', 'jimdghty', 'beshryu', 'tried', 'complete', 'task', 'recruited', 'help', 'usa', 'planner', 'usually', 'step', 'tell', 'task', 'complete', 'item', 'product', 'engineering', 'able', 'complete', 'task', 'cannot', 'done', 'based', 'told', 'planner', 'finish', 'task'] processed_text: ['npc', 'maintain', 'plant', 'value', 'task', 'assigned', 'jimdghty', 'beshryu', 'error', 'npc', 'information', 'jimdghty', 'beshryu', 'tried', 'complete', 'task', 'recruited', 'help', 'usa', 'planner', 'usually', 'step', 'tell', 'task', 'complete', 'item', 'product', 'engineering', 'able', 'complete', 'task', 'cannot', 'done', 'based', 'told', 'planner', 'finish', 'task'] list_processed_text: [['npc'], ['maintain'], ['plant'], ['value'], ['task'], ['assigned'], ['jimdghty'], ['beshryu'], ['error'], ['npc'], ['information'], ['jimdghty'], ['beshryu'], ['tried'], ['complete'], ['task'], ['recruited'], ['help'], ['usa'], ['planner'], ['usually'], ['step'], ['tell'], ['task'], ['complete'], ['item'], ['product'], ['engineering'], ['able'], ['complete'], ['task'], ['cannot'], ['done'], ['based'], ['told'], ['planner'], ['finish'], ['task']] k: 8013 len: <class 'list'> Data: ['display', 'setting', 'issue', 'display', 'setting', 'issue'] processed_text: ['display', 'setting', 'issue', 'display', 'setting', 'issue'] list_processed_text: [['display'], ['setting'], ['issue'], ['display'], ['setting'], ['issue']] k: 8014 len: <class 'list'> Data: ['idg', 'password', 'reset', 'possible', 'idg', 'password', 'reset', 'possible'] processed_text: ['idg', 'password', 'reset', 'possible', 'idg', 'password', 'reset', 'possible'] list_processed_text: [['idg'], ['password'], ['reset'], ['possible'], ['idg'], ['password'], ['reset'], ['possible']] k: 8015 len: <class 'list'> Data: ['print', 'drawing', 'attempting', 'print', 'eu', 'location', 'missing', 'sheet', 'page', 'printed', 'guess', 'although', 'drawing', 'fr', 'status', 'original', 'still', 'reside', 'cadb', 'storage'] processed_text: ['print', 'drawing', 'attempting', 'print', 'eu', 'location', 'missing', 'sheet', 'page', 'printed', 'guess', 'although', 'drawing', 'fr', 'status', 'original', 'still', 'reside', 'cadb', 'storage'] list_processed_text: [['print'], ['drawing'], ['attempting'], ['print'], ['eu'], ['location'], ['missing'], ['sheet'], ['page'], ['printed'], ['guess'], ['although'], ['drawing'], ['fr'], ['status'], ['original'], ['still'], ['reside'], ['cadb'], ['storage']] k: 8016 len: <class 'list'> Data: ['log', 'erp', 'hcm', 'via', 'vpn', 'connected', 'vpn', 'log', 'erp', 'keep', 'getting', 'error', 'message', 'seems', 'imply', 'connected', 'vpn', 'help', 'appreciated'] processed_text: ['log', 'erp', 'hcm', 'via', 'vpn', 'connected', 'vpn', 'log', 'erp', 'keep', 'getting', 'error', 'message', 'seems', 'imply', 'connected', 'vpn', 'help', 'appreciated'] list_processed_text: [['log'], ['erp'], ['hcm'], ['via'], ['vpn'], ['connected'], ['vpn'], ['log'], ['erp'], ['keep'], ['getting'], ['error'], ['message'], ['seems'], ['imply'], ['connected'], ['vpn'], ['help'], ['appreciated']] k: 8017 len: <class 'list'> Data: ['attached', 'mail', 'saved', 'desktop', 'template', 'text', 'signature', 'sent', 'nothing', 'seen', 'attached', 'mail', 'saved', 'desktop', 'template', 'text', 'signature', 'sent', 'nothing', 'seen'] processed_text: ['attached', 'mail', 'saved', 'desktop', 'template', 'text', 'signature', 'sent', 'nothing', 'seen', 'attached', 'mail', 'saved', 'desktop', 'template', 'text', 'signature', 'sent', 'nothing', 'seen'] list_processed_text: [['attached'], ['mail'], ['saved'], ['desktop'], ['template'], ['text'], ['signature'], ['sent'], ['nothing'], ['seen'], ['attached'], ['mail'], ['saved'], ['desktop'], ['template'], ['text'], ['signature'], ['sent'], ['nothing'], ['seen']] k: 8018 len: <class 'list'> Data: ['business', 'client', 'login', 'hi', 'kindly', 'help', 'access', 'drawing', 'search', 'view', 'download', 'business', 'client', 'utility'] processed_text: ['business', 'client', 'login', 'hi', 'kindly', 'help', 'access', 'drawing', 'search', 'view', 'download', 'business', 'client', 'utility'] list_processed_text: [['business'], ['client'], ['login'], ['hi'], ['kindly'], ['help'], ['access'], ['drawing'], ['search'], ['view'], ['download'], ['business'], ['client'], ['utility']] k: 8019 len: <class 'list'> Data: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'total', 'cpu', 'since', 'et', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'total', 'cpu', 'error', 'threshold'] processed_text: ['hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'total', 'cpu', 'since', 'et', 'hostname', 'hr', 'tool', 'tax', 'interface', 'app', 'qa', 'total', 'cpu', 'error', 'threshold'] list_processed_text: [['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['total'], ['cpu'], ['since'], ['et'], ['hostname'], ['hr'], ['tool'], ['tax'], ['interface'], ['app'], ['qa'], ['total'], ['cpu'], ['error'], ['threshold']] k: 8020 len: <class 'list'> Data: ['screen', 'kyocera', 'workstation', 'defective', 'please', 'change'] processed_text: ['screen', 'kyocera', 'workstation', 'defective', 'please', 'change'] list_processed_text: [['screen'], ['kyocera'], ['workstation'], ['defective'], ['please'], ['change']] k: 8021 len: <class 'list'> Data: ['setup', 'new', 'w', 'rxpjomyf', 'hvolsgqn', 'setup', 'new', 'w', 'rxpjomyf', 'hvolsgqn'] processed_text: ['setup', 'new', 'w', 'rxpjomyf', 'hvolsgqn', 'setup', 'new', 'w', 'rxpjomyf', 'hvolsgqn'] list_processed_text: [['setup'], ['new'], ['w'], ['rxpjomyf'], ['hvolsgqn'], ['setup'], ['new'], ['w'], ['rxpjomyf'], ['hvolsgqn']] k: 8022 len: <class 'list'> Data: ['setup', 'new', 'w', 'pnwbkitv', 'phbnwmkl', 'setup', 'new', 'w', 'pnwbkitv', 'phbnwmkl'] processed_text: ['setup', 'new', 'w', 'pnwbkitv', 'phbnwmkl', 'setup', 'new', 'w', 'pnwbkitv', 'phbnwmkl'] list_processed_text: [['setup'], ['new'], ['w'], ['pnwbkitv'], ['phbnwmkl'], ['setup'], ['new'], ['w'], ['pnwbkitv'], ['phbnwmkl']] k: 8023 len: <class 'list'> Data: ['setup', 'new', 'w', 'wyighrjl', 'xcwavhyu', 'setup', 'new', 'w', 'wyighrjl', 'xcwavhyu'] processed_text: ['setup', 'new', 'w', 'wyighrjl', 'xcwavhyu', 'setup', 'new', 'w', 'wyighrjl', 'xcwavhyu'] list_processed_text: [['setup'], ['new'], ['w'], ['wyighrjl'], ['xcwavhyu'], ['setup'], ['new'], ['w'], ['wyighrjl'], ['xcwavhyu']] k: 8024 len: <class 'list'> Data: ['setup', 'new', 'w', 'beosjgxt', 'mdevcqjk', 'setup', 'new', 'w', 'beosjgxt', 'mdevcqjk'] processed_text: ['setup', 'new', 'w', 'beosjgxt', 'mdevcqjk', 'setup', 'new', 'w', 'beosjgxt', 'mdevcqjk'] list_processed_text: [['setup'], ['new'], ['w'], ['beosjgxt'], ['mdevcqjk'], ['setup'], ['new'], ['w'], ['beosjgxt'], ['mdevcqjk']] k: 8025 len: <class 'list'> Data: ['erp', 'issue', 'erp', 'gui', 'got', 'updated', 'today', 'able', 'save', 'data', 'desktop', 'please', 'help'] processed_text: ['erp', 'issue', 'erp', 'gui', 'got', 'updated', 'today', 'able', 'save', 'data', 'desktop', 'please', 'help'] list_processed_text: [['erp'], ['issue'], ['erp'], ['gui'], ['got'], ['updated'], ['today'], ['able'], ['save'], ['data'], ['desktop'], ['please'], ['help']] k: 8026 len: <class 'list'> Data: ['lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'expected', 'instance', 'gte', 'found', 'time', 'est'] processed_text: ['lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'expected', 'instance', 'gte', 'found', 'time', 'est'] list_processed_text: [['lhqsm'], ['fim'], ['production'], ['miiserver'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['miiserver'], ['exe'], ['lhqsm'], ['fim'], ['production'], ['miiserver'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['miiserver'], ['exe'], ['expected'], ['instance'], ['gte'], ['found'], ['time'], ['est']] k: 8027 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['request']] k: 8028 len: <class 'list'> Data: ['company', 'guest', 'account', 'working', 'created', 'yesterday', 'company', 'guest', 'account', 'working', 'created', 'yesterday'] processed_text: ['company', 'guest', 'account', 'working', 'created', 'yesterday', 'company', 'guest', 'account', 'working', 'created', 'yesterday'] list_processed_text: [['company'], ['guest'], ['account'], ['working'], ['created'], ['yesterday'], ['company'], ['guest'], ['account'], ['working'], ['created'], ['yesterday']] k: 8029 len: <class 'list'> Data: ['user', 'account', 'locked', 'unable', 'login', 'window'] processed_text: ['user', 'account', 'locked', 'unable', 'login', 'window'] list_processed_text: [['user'], ['account'], ['locked'], ['unable'], ['login'], ['window']] k: 8030 len: <class 'list'> Data: ['able', 'hear', 'thing', 'able', 'hear', 'thing'] processed_text: ['able', 'hear', 'thing', 'able', 'hear', 'thing'] list_processed_text: [['able'], ['hear'], ['thing'], ['able'], ['hear'], ['thing']] k: 8031 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'request', 'user', 'eqtofwbm', 'mojfbwds', 'dear', 'friend', 'please', 'find', 'enclosed', 'request'] processed_text: ['mobile', 'device', 'activation', 'request', 'user', 'eqtofwbm', 'mojfbwds', 'dear', 'friend', 'please', 'find', 'enclosed', 'request'] list_processed_text: [['mobile'], ['device'], ['activation'], ['request'], ['user'], ['eqtofwbm'], ['mojfbwds'], ['dear'], ['friend'], ['please'], ['find'], ['enclosed'], ['request']] k: 8032 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] processed_text: ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['request'], ['erp'], ['sid'], ['password'], ['reset'], ['request']] k: 8033 len: <class 'list'> Data: ['cannot', 'connect', 'network', 'printer', 'vh', 'cannot', 'connect', 'network', 'printer', 'vh'] processed_text: ['cannot', 'connect', 'network', 'printer', 'vh', 'cannot', 'connect', 'network', 'printer', 'vh'] list_processed_text: [['cannot'], ['connect'], ['network'], ['printer'], ['vh'], ['cannot'], ['connect'], ['network'], ['printer'], ['vh']] k: 8034 len: <class 'list'> Data: ['updated', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'eaglt', 'recent', 'anniversary', 'update', 'need', 'lauacyltoe', 'hxgaycze', 'version', 'mp', 'higher', 'hello', 'antivirus', 'team', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'eaglt', 'automatically', 'updated', 'recent', 'win', 'anniversary', 'update', 'mp', 'longer', 'working', 'official', 'company', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'per', 'symantec', 'technical', 'support', 'forum', 'window', 'anniversary', 'update', 'requires', 'least', 'version', 'mp', 'higher', 'please', 'download', 'provide', 'software', 'following', 'share', 'eagcldaten', 'public', 'roedel', 'symantec', 'endpoint', 'protection'] processed_text: ['updated', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'eaglt', 'recent', 'anniversary', 'update', 'need', 'lauacyltoe', 'hxgaycze', 'version', 'mp', 'higher', 'hello', 'antivirus', 'team', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'eaglt', 'automatically', 'updated', 'recent', 'win', 'anniversary', 'update', 'mp', 'longer', 'working', 'official', 'company', 'win', 'uacyltoe', 'hxgaycze', 'machine', 'per', 'symantec', 'technical', 'support', 'forum', 'window', 'anniversary', 'update', 'requires', 'least', 'version', 'mp', 'higher', 'please', 'download', 'provide', 'software', 'following', 'share', 'eagcldaten', 'public', 'roedel', 'symantec', 'endpoint', 'protection'] list_processed_text: [['updated'], ['win'], ['uacyltoe'], ['hxgaycze'], ['machine'], ['eaglt'], ['recent'], ['anniversary'], ['update'], ['need'], ['lauacyltoe'], ['hxgaycze'], ['version'], ['mp'], ['higher'], ['hello'], ['antivirus'], ['team'], ['win'], ['uacyltoe'], ['hxgaycze'], ['machine'], ['eaglt'], ['automatically'], ['updated'], ['recent'], ['win'], ['anniversary'], ['update'], ['mp'], ['longer'], ['working'], ['official'], ['company'], ['win'], ['uacyltoe'], ['hxgaycze'], ['machine'], ['per'], ['symantec'], ['technical'], ['support'], ['forum'], ['window'], ['anniversary'], ['update'], ['requires'], ['least'], ['version'], ['mp'], ['higher'], ['please'], ['download'], ['provide'], ['software'], ['following'], ['share'], ['eagcldaten'], ['public'], ['roedel'], ['symantec'], ['endpoint'], ['protection']] k: 8035 len: <class 'list'> Data: ['mobile', 'device', 'activation', 'personal', 'device', 'mobile', 'device', 'activation', 'personal', 'device'] processed_text: ['mobile', 'device', 'activation', 'personal', 'device', 'mobile', 'device', 'activation', 'personal', 'device'] list_processed_text: [['mobile'], ['device'], ['activation'], ['personal'], ['device'], ['mobile'], ['device'], ['activation'], ['personal'], ['device']] k: 8036 len: <class 'list'> Data: ['data', 'restore', 'restore', 'data', 'file', 'external', 'hard', 'disk', 'reimaged', 'laptop'] processed_text: ['data', 'restore', 'restore', 'data', 'file', 'external', 'hard', 'disk', 'reimaged', 'laptop'] list_processed_text: [['data'], ['restore'], ['restore'], ['data'], ['file'], ['external'], ['hard'], ['disk'], ['reimaged'], ['laptop']] k: 8037 len: <class 'list'> Data: ['polycom', 'realpresence', 'destop', 'polycom', 'software', 'installation', 'desktop'] processed_text: ['polycom', 'realpresence', 'destop', 'polycom', 'software', 'installation', 'desktop'] list_processed_text: [['polycom'], ['realpresence'], ['destop'], ['polycom'], ['software'], ['installation'], ['desktop']] k: 8038 len: <class 'list'> Data: ['ad', 'locked', 'ad', 'locked'] processed_text: ['ad', 'locked', 'ad', 'locked'] list_processed_text: [['ad'], ['locked'], ['ad'], ['locked']] k: 8039 len: <class 'list'> Data: ['eagw', 'show', 'defective', 'system', 'file', 'reinstall', 'lauacyltoe', 'hxgaycze', 'fy', 'win', 'image', 'eagw', 'show', 'defective', 'system', 'file', 'reinstall', 'lauacyltoe', 'hxgaycze', 'fy', 'win', 'image'] processed_text: ['eagw', 'show', 'defective', 'system', 'file', 'reinstall', 'lauacyltoe', 'hxgaycze', 'fy', 'win', 'image', 'eagw', 'show', 'defective', 'system', 'file', 'reinstall', 'lauacyltoe', 'hxgaycze', 'fy', 'win', 'image'] list_processed_text: [['eagw'], ['show'], ['defective'], ['system'], ['file'], ['reinstall'], ['lauacyltoe'], ['hxgaycze'], ['fy'], ['win'], ['image'], ['eagw'], ['show'], ['defective'], ['system'], ['file'], ['reinstall'], ['lauacyltoe'], ['hxgaycze'], ['fy'], ['win'], ['image']] k: 8040 len: <class 'list'> Data: ['terminate', 'action', 'suzjhmfa', 'swmiynoz', 'completed', 'jusfrttin', 'gtehdnyuerrf', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'suzjhmfa', 'swmiynoz', 'completed', 'hello', 'termination', 'suzjhmfa', 'swmiynoz', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['terminate', 'action', 'suzjhmfa', 'swmiynoz', 'completed', 'jusfrttin', 'gtehdnyuerrf', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'suzjhmfa', 'swmiynoz', 'completed', 'hello', 'termination', 'suzjhmfa', 'swmiynoz', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['terminate'], ['action'], ['suzjhmfa'], ['swmiynoz'], ['completed'], ['jusfrttin'], ['gtehdnyuerrf'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['terminate'], ['action'], ['suzjhmfa'], ['swmiynoz'], ['completed'], ['hello'], ['termination'], ['suzjhmfa'], ['swmiynoz'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 8041 len: <class 'list'> Data: ['request', 'reset', 'password', 'password', 'management', 'tool', 'could', 'login', 'reset', 'password', 'request', 'reset', 'password', 'password', 'management', 'tool', 'soon', 'possible', 'could', 'login', 'reset', 'password'] processed_text: ['request', 'reset', 'password', 'password', 'management', 'tool', 'could', 'login', 'reset', 'password', 'request', 'reset', 'password', 'password', 'management', 'tool', 'soon', 'possible', 'could', 'login', 'reset', 'password'] list_processed_text: [['request'], ['reset'], ['password'], ['password'], ['management'], ['tool'], ['could'], ['login'], ['reset'], ['password'], ['request'], ['reset'], ['password'], ['password'], ['management'], ['tool'], ['soon'], ['possible'], ['could'], ['login'], ['reset'], ['password']] k: 8042 len: <class 'list'> Data: ['reset', 'password', 'prgthyuulla', 'ramdntythanjesh', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'prgthyuulla', 'ramdntythanjesh', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['prgthyuulla'], ['ramdntythanjesh'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 8043 len: <class 'list'> Data: ['reset', 'password', 'prgthyuulla', 'ramdntythanjesh', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'prgthyuulla', 'ramdntythanjesh', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['prgthyuulla'], ['ramdntythanjesh'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 8044 len: <class 'list'> Data: ['terminate', 'action', 'kjtqxroc', 'taqekwrd', 'completed', 'jusfrttin', 'gtehdnyuerrf', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'kjtqxroc', 'taqekwrd', 'completed', 'hello', 'termination', 'kjtqxroc', 'taqekwrd', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['terminate', 'action', 'kjtqxroc', 'taqekwrd', 'completed', 'jusfrttin', 'gtehdnyuerrf', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'kjtqxroc', 'taqekwrd', 'completed', 'hello', 'termination', 'kjtqxroc', 'taqekwrd', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['terminate'], ['action'], ['kjtqxroc'], ['taqekwrd'], ['completed'], ['jusfrttin'], ['gtehdnyuerrf'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['terminate'], ['action'], ['kjtqxroc'], ['taqekwrd'], ['completed'], ['hello'], ['termination'], ['kjtqxroc'], ['taqekwrd'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 8045 len: <class 'list'> Data: ['logon', 'server', 'hostname', 'possible', 'logon', 'server', 'hostname', 'possible', 'server', 'loop', 'welcome', 'screen'] processed_text: ['logon', 'server', 'hostname', 'possible', 'logon', 'server', 'hostname', 'possible', 'server', 'loop', 'welcome', 'screen'] list_processed_text: [['logon'], ['server'], ['hostname'], ['possible'], ['logon'], ['server'], ['hostname'], ['possible'], ['server'], ['loop'], ['welcome'], ['screen']] k: 8046 len: <class 'list'> Data: ['lean', 'event', 'hello', 'forwarding', 'lean', 'event', 'updation', 'find', 'mail', 'forwarded', 'message', 'displayed', 'please', 'check', 'advise'] processed_text: ['lean', 'event', 'hello', 'forwarding', 'lean', 'event', 'updation', 'find', 'mail', 'forwarded', 'message', 'displayed', 'please', 'check', 'advise'] list_processed_text: [['lean'], ['event'], ['hello'], ['forwarding'], ['lean'], ['event'], ['updation'], ['find'], ['mail'], ['forwarded'], ['message'], ['displayed'], ['please'], ['check'], ['advise']] k: 8047 len: <class 'list'> Data: ['aw', 'ticket', 'wg', 'po', 'sincerely,', 'gr', 'en', 'kind'] processed_text: ['aw', 'ticket', 'wg', 'po', 'sincerely,', 'gr', 'en', 'kind'] list_processed_text: [['aw'], ['ticket'], ['wg'], ['po'], ['sincerely,'], ['gr'], ['en'], ['kind']] k: 8048 len: <class 'list'> Data: ['network', 'outage', 'russia', 'ru', 'company', 'russia', 'vpn', 'rtr', 'showing', 'since', 'edt', 'backup', 'ckt', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'edt', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'russia', 'ru', 'company', 'russia', 'vpn', 'rtr', 'showing', 'since', 'edt', 'backup', 'ckt', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'edt', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'na', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'yes', 'na', 'cert', 'started', 'na', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['russia'], ['ru'], ['company'], ['russia'], ['vpn'], ['rtr'], ['showing'], ['since'], ['edt'], ['backup'], ['ckt'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['edt'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['na'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['yes'], ['na'], ['cert'], ['started'], ['na'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 8049 len: <class 'list'> Data: ['emea', 'file', 'processed', 'per', 'schedule', 'check', 'let', 'u', 'know', 'reason', 'please', 'include', 'mail', 'notification', 'hi', 'pradtheyp', 'received', 'production', 'feed', 'file', 'emea', 'today', 'please', 'check', 'end', 'send', 'file', 'u', 'also', 'would', 'like', 'know', 'whether', 'possible', 'automatic', 'notification', 'sent', 'concerned', 'people', 'case', 'extraction', 'programdnty', 'fails'] processed_text: ['emea', 'file', 'processed', 'per', 'schedule', 'check', 'let', 'u', 'know', 'reason', 'please', 'include', 'mail', 'notification', 'hi', 'pradtheyp', 'received', 'production', 'feed', 'file', 'emea', 'today', 'please', 'check', 'end', 'send', 'file', 'u', 'also', 'would', 'like', 'know', 'whether', 'possible', 'automatic', 'notification', 'sent', 'concerned', 'people', 'case', 'extraction', 'programdnty', 'fails'] list_processed_text: [['emea'], ['file'], ['processed'], ['per'], ['schedule'], ['check'], ['let'], ['u'], ['know'], ['reason'], ['please'], ['include'], ['mail'], ['notification'], ['hi'], ['pradtheyp'], ['received'], ['production'], ['feed'], ['file'], ['emea'], ['today'], ['please'], ['check'], ['end'], ['send'], ['file'], ['u'], ['also'], ['would'], ['like'], ['know'], ['whether'], ['possible'], ['automatic'], ['notification'], ['sent'], ['concerned'], ['people'], ['case'], ['extraction'], ['programdnty'], ['fails']] k: 8050 len: <class 'list'> Data: ['purchasing', 'mdm', 'import', 'manager', 'work', 'correctly', 'mapping', 'possible', 'anymore'] processed_text: ['purchasing', 'mdm', 'import', 'manager', 'work', 'correctly', 'mapping', 'possible', 'anymore'] list_processed_text: [['purchasing'], ['mdm'], ['import'], ['manager'], ['work'], ['correctly'], ['mapping'], ['possible'], ['anymore']] k: 8051 len: <class 'list'> Data: ['unable', 'open', 'sale', 'order', 'attachment', 'save', 'abap', 'report', 'view', 'desktop', 'attachment', 'erp', 'issue', 'erp', 'update', 'system', 'prompt', 'fix', 'issue', 'sid', 'sid', 'log', 'unable', 'open', 'view', 'sale', 'order', 'outlook', 'email', 'attachment', 'refer', 'attachment', 'download', 'error', 'va', 'va', 'per', 'error', 'look', 'closed', 'try', 'open', 'attachment', 'system', 'prompting', 'install', 'outlook', 'refer', 'outlook', 'installation', 'prompt', 'issue', 'excel', 'file', 'downloaded', 'running', 'abap', 'query', 'unable', 'save', 'save', 'computer', 'issue', 'unable', 'view', 'file', 'saved', 'desktop', 'attach', 'sale', 'order', 'va', 'va'] processed_text: ['unable', 'open', 'sale', 'order', 'attachment', 'save', 'abap', 'report', 'view', 'desktop', 'attachment', 'erp', 'issue', 'erp', 'update', 'system', 'prompt', 'fix', 'issue', 'sid', 'sid', 'log', 'unable', 'open', 'view', 'sale', 'order', 'outlook', 'email', 'attachment', 'refer', 'attachment', 'download', 'error', 'va', 'va', 'per', 'error', 'look', 'closed', 'try', 'open', 'attachment', 'system', 'prompting', 'install', 'outlook', 'refer', 'outlook', 'installation', 'prompt', 'issue', 'excel', 'file', 'downloaded', 'running', 'abap', 'query', 'unable', 'save', 'save', 'computer', 'issue', 'unable', 'view', 'file', 'saved', 'desktop', 'attach', 'sale', 'order', 'va', 'va'] list_processed_text: [['unable'], ['open'], ['sale'], ['order'], ['attachment'], ['save'], ['abap'], ['report'], ['view'], ['desktop'], ['attachment'], ['erp'], ['issue'], ['erp'], ['update'], ['system'], ['prompt'], ['fix'], ['issue'], ['sid'], ['sid'], ['log'], ['unable'], ['open'], ['view'], ['sale'], ['order'], ['outlook'], ['email'], ['attachment'], ['refer'], ['attachment'], ['download'], ['error'], ['va'], ['va'], ['per'], ['error'], ['look'], ['closed'], ['try'], ['open'], ['attachment'], ['system'], ['prompting'], ['install'], ['outlook'], ['refer'], ['outlook'], ['installation'], ['prompt'], ['issue'], ['excel'], ['file'], ['downloaded'], ['running'], ['abap'], ['query'], ['unable'], ['save'], ['save'], ['computer'], ['issue'], ['unable'], ['view'], ['file'], ['saved'], ['desktop'], ['attach'], ['sale'], ['order'], ['va'], ['va']] k: 8052 len: <class 'list'> Data: ['unable', 'send', 'receive', 'email', 'unable', 'send', 'receive', 'email'] processed_text: ['unable', 'send', 'receive', 'email', 'unable', 'send', 'receive', 'email'] list_processed_text: [['unable'], ['send'], ['receive'], ['email'], ['unable'], ['send'], ['receive'], ['email']] k: 8053 len: <class 'list'> Data: ['wg', 'ticket', 'wg', 'po', 'hello', 'everyone', 'see', 'following', 'email', 'correspondence,', 'please', 'fix', 'soon', 'possible', 'thank', 'best', 'regard'] processed_text: ['wg', 'ticket', 'wg', 'po', 'hello', 'everyone', 'see', 'following', 'email', 'correspondence,', 'please', 'fix', 'soon', 'possible', 'thank', 'best', 'regard'] list_processed_text: [['wg'], ['ticket'], ['wg'], ['po'], ['hello'], ['everyone'], ['see'], ['following'], ['email'], ['correspondence,'], ['please'], ['fix'], ['soon'], ['possible'], ['thank'], ['best'], ['regard']] k: 8054 len: <class 'list'> Data: ['able', 'access', 'attendance', 'tool', 'application', 'ticket', 'reference', 'ticket', 'name', 'aryndruh', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'access', 'attendance', 'tool', 'application', 'ticket', 'reference', 'ticket'] processed_text: ['able', 'access', 'attendance', 'tool', 'application', 'ticket', 'reference', 'ticket', 'name', 'aryndruh', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'able', 'access', 'attendance', 'tool', 'application', 'ticket', 'reference', 'ticket'] list_processed_text: [['able'], ['access'], ['attendance'], ['tool'], ['application'], ['ticket'], ['reference'], ['ticket'], ['name'], ['aryndruh'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['able'], ['access'], ['attendance'], ['tool'], ['application'], ['ticket'], ['reference'], ['ticket']] k: 8055 len: <class 'list'> Data: ['bios', 'setting', 'please', 'change', 'wzs', 'wza', 'bios', 'network', 'reset', 'computer', 'start', 'automatically,', 'please', 'let', 'himghtmelreich'] processed_text: ['bios', 'setting', 'please', 'change', 'wzs', 'wza', 'bios', 'network', 'reset', 'computer', 'start', 'automatically,', 'please', 'let', 'himghtmelreich'] list_processed_text: [['bios'], ['setting'], ['please'], ['change'], ['wzs'], ['wza'], ['bios'], ['network'], ['reset'], ['computer'], ['start'], ['automatically,'], ['please'], ['let'], ['himghtmelreich']] k: 8056 len: <class 'list'> Data: ['networking', 'issue', 'customer', 'site', 'dear', 'm', 'ragsbdhryu', 'line', 'telephonic', 'conversation', 'please', 'find', 'following', 'detail', 'two', 'computer', 'machine', 'pc', 'laptop', 'two', 'connected', 'using', 'lan', 'cable', 'name', 'laptop', 'visible', 'network', 'page', 'machine', 'pc', 'name', 'machine', 'pc', 'visible', 'network', 'laptop', 'unable', 'set', 'domain', 'name', 'workgroup', 'setting', 'control', 'panel', 'please', 'sort', 'priority'] processed_text: ['networking', 'issue', 'customer', 'site', 'dear', 'm', 'ragsbdhryu', 'line', 'telephonic', 'conversation', 'please', 'find', 'following', 'detail', 'two', 'computer', 'machine', 'pc', 'laptop', 'two', 'connected', 'using', 'lan', 'cable', 'name', 'laptop', 'visible', 'network', 'page', 'machine', 'pc', 'name', 'machine', 'pc', 'visible', 'network', 'laptop', 'unable', 'set', 'domain', 'name', 'workgroup', 'setting', 'control', 'panel', 'please', 'sort', 'priority'] list_processed_text: [['networking'], ['issue'], ['customer'], ['site'], ['dear'], ['m'], ['ragsbdhryu'], ['line'], ['telephonic'], ['conversation'], ['please'], ['find'], ['following'], ['detail'], ['two'], ['computer'], ['machine'], ['pc'], ['laptop'], ['two'], ['connected'], ['using'], ['lan'], ['cable'], ['name'], ['laptop'], ['visible'], ['network'], ['page'], ['machine'], ['pc'], ['name'], ['machine'], ['pc'], ['visible'], ['network'], ['laptop'], ['unable'], ['set'], ['domain'], ['name'], ['workgroup'], ['setting'], ['control'], ['panel'], ['please'], ['sort'], ['priority']] k: 8057 len: <class 'list'> Data: ['call', 'routing', 'german', 'support', 'agent', 'call', 'routing', 'german', 'support', 'agent', 'fixed', 'workgroup', 'added', 'percent', 'allocated'] processed_text: ['call', 'routing', 'german', 'support', 'agent', 'call', 'routing', 'german', 'support', 'agent', 'fixed', 'workgroup', 'added', 'percent', 'allocated'] list_processed_text: [['call'], ['routing'], ['german'], ['support'], ['agent'], ['call'], ['routing'], ['german'], ['support'], ['agent'], ['fixed'], ['workgroup'], ['added'], ['percent'], ['allocated']] k: 8058 len: <class 'list'> Data: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout', 'contact', 'chg', 'ctask'] processed_text: ['frequent', 'account', 'lockout', 'frequent', 'account', 'lockout', 'contact', 'chg', 'ctask'] list_processed_text: [['frequent'], ['account'], ['lockout'], ['frequent'], ['account'], ['lockout'], ['contact'], ['chg'], ['ctask']] k: 8059 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 8060 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8061 len: <class 'list'> Data: ['internet', 'explorer', 'need', 'help', 'installing', 'lauacyltoe', 'hxgaycze', 'internet', 'explorer'] processed_text: ['internet', 'explorer', 'need', 'help', 'installing', 'lauacyltoe', 'hxgaycze', 'internet', 'explorer'] list_processed_text: [['internet'], ['explorer'], ['need'], ['help'], ['installing'], ['lauacyltoe'], ['hxgaycze'], ['internet'], ['explorer']] k: 8062 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'user', 'hghjnlabel', 'locked', 'need', 'release', 'user', 'reset', 'password', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'user', 'hghjnlabel', 'locked', 'need', 'release', 'user', 'reset', 'password', 'transaction', 'code', 'user', 'need', 'working', 'describe', 'issue', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['user'], ['hghjnlabel'], ['locked'], ['need'], ['release'], ['user'], ['reset'], ['password'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['describe'], ['issue'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 8063 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8064 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'search', 'server', 'prod', 'daily', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'search', 'server', 'prod', 'daily'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'search', 'server', 'prod', 'daily', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'search', 'server', 'prod', 'daily'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['search'], ['server'], ['prod'], ['daily']] k: 8065 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'filesys', 'abended', 'job', 'job', 'scheduler', 'sid', 'filesys'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'filesys', 'abended', 'job', 'job', 'scheduler', 'sid', 'filesys'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['filesys'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['filesys']] k: 8066 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8067 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 8068 len: <class 'list'> Data: ['need', 'upgrade', 'outlook', 'name', 'dehnfyru', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'upgrade', 'outlook'] processed_text: ['need', 'upgrade', 'outlook', 'name', 'dehnfyru', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'need', 'upgrade', 'outlook'] list_processed_text: [['need'], ['upgrade'], ['outlook'], ['name'], ['dehnfyru'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['need'], ['upgrade'], ['outlook']] k: 8069 len: <class 'list'> Data: ['company', 'orshop', 'floor', 'app', 'locked', 'many', 'try', 'wrong', 'password', 'multiple', 'computer', 'use', 'log', 'company', 'orshop', 'floor', 'app', 'locked'] processed_text: ['company', 'orshop', 'floor', 'app', 'locked', 'many', 'try', 'wrong', 'password', 'multiple', 'computer', 'use', 'log', 'company', 'orshop', 'floor', 'app', 'locked'] list_processed_text: [['company'], ['orshop'], ['floor'], ['app'], ['locked'], ['many'], ['try'], ['wrong'], ['password'], ['multiple'], ['computer'], ['use'], ['log'], ['company'], ['orshop'], ['floor'], ['app'], ['locked']] k: 8070 len: <class 'list'> Data: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8071 len: <class 'list'> Data: ['delete', 'sto', 'johthryugftyson', 'hu', 'nwfodmhc', 'exurcwkm', 'qgrbnjiu', 'hidzlfma', 'fw', 'delete', 'sto', 'help', 'need', 'delete', 'sto', 'get', 'error', 'message', 'screen', 'block', 'avoid', 'unnessary', 'dn', 'created', 'please', 'help', 'check', 'delete'] processed_text: ['delete', 'sto', 'johthryugftyson', 'hu', 'nwfodmhc', 'exurcwkm', 'qgrbnjiu', 'hidzlfma', 'fw', 'delete', 'sto', 'help', 'need', 'delete', 'sto', 'get', 'error', 'message', 'screen', 'block', 'avoid', 'unnessary', 'dn', 'created', 'please', 'help', 'check', 'delete'] list_processed_text: [['delete'], ['sto'], ['johthryugftyson'], ['hu'], ['nwfodmhc'], ['exurcwkm'], ['qgrbnjiu'], ['hidzlfma'], ['fw'], ['delete'], ['sto'], ['help'], ['need'], ['delete'], ['sto'], ['get'], ['error'], ['message'], ['screen'], ['block'], ['avoid'], ['unnessary'], ['dn'], ['created'], ['please'], ['help'], ['check'], ['delete']] k: 8072 len: <class 'list'> Data: ['ticket', 'update', 'pmqansex', 'nvihmbwc', 'rakthyesh', 'ramdntythanjesh', 'ugyothfz', 'ugrmkdhx', 'pmqansex', 'nvihmbwc', 'ticket', 'create', 'email', 'account', 'employee', 'gzwasqoc', 'gadisyxr', 'good', 'morning', 'safrgyynjit', 'user', 'called', 'service', 'desk', 'requested', 'expedite', 'issue', 'kindly', 'take', 'request', 'priority', 'assist', 'user', 'kind'] processed_text: ['ticket', 'update', 'pmqansex', 'nvihmbwc', 'rakthyesh', 'ramdntythanjesh', 'ugyothfz', 'ugrmkdhx', 'pmqansex', 'nvihmbwc', 'ticket', 'create', 'email', 'account', 'employee', 'gzwasqoc', 'gadisyxr', 'good', 'morning', 'safrgyynjit', 'user', 'called', 'service', 'desk', 'requested', 'expedite', 'issue', 'kindly', 'take', 'request', 'priority', 'assist', 'user', 'kind'] list_processed_text: [['ticket'], ['update'], ['pmqansex'], ['nvihmbwc'], ['rakthyesh'], ['ramdntythanjesh'], ['ugyothfz'], ['ugrmkdhx'], ['pmqansex'], ['nvihmbwc'], ['ticket'], ['create'], ['email'], ['account'], ['employee'], ['gzwasqoc'], ['gadisyxr'], ['good'], ['morning'], ['safrgyynjit'], ['user'], ['called'], ['service'], ['desk'], ['requested'], ['expedite'], ['issue'], ['kindly'], ['take'], ['request'], ['priority'], ['assist'], ['user'], ['kind']] k: 8073 len: <class 'list'> Data: ['inquiry', 'etime', 'login', 'inquiry', 'etime', 'login'] processed_text: ['inquiry', 'etime', 'login', 'inquiry', 'etime', 'login'] list_processed_text: [['inquiry'], ['etime'], ['login'], ['inquiry'], ['etime'], ['login']] k: 8074 len: <class 'list'> Data: ['shop', 'floor', 'pc', 'locked', 'coshopfloor', 'shop', 'floor', 'pc', 'locked', 'coshopfloor'] processed_text: ['shop', 'floor', 'pc', 'locked', 'coshopfloor', 'shop', 'floor', 'pc', 'locked', 'coshopfloor'] list_processed_text: [['shop'], ['floor'], ['pc'], ['locked'], ['coshopfloor'], ['shop'], ['floor'], ['pc'], ['locked'], ['coshopfloor']] k: 8075 len: <class 'list'> Data: ['symantec', 'endpoint', 'encryption', 'page', 'unable', 'login', 'symantec', 'endpoint', 'encryption', 'page', 'unable', 'login'] processed_text: ['symantec', 'endpoint', 'encryption', 'page', 'unable', 'login', 'symantec', 'endpoint', 'encryption', 'page', 'unable', 'login'] list_processed_text: [['symantec'], ['endpoint'], ['encryption'], ['page'], ['unable'], ['login'], ['symantec'], ['endpoint'], ['encryption'], ['page'], ['unable'], ['login']] k: 8076 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8077 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc']] k: 8078 len: <class 'list'> Data: ['multiple', 'process', 'showing', 'hostname', 'hana', 'sid', 'since', 'pm', 'et', 'multiple', 'process', 'showing', 'hostname', 'hana', 'sid', 'since', 'pm', 'et', 'process', 'hdbnameserver', 'running', 'process', 'hdbxsengine', 'running', 'process', 'hdbpreprocessor', 'running', 'process', 'hdbcompileserve', 'running', 'process', 'hdbindexserver', 'running', 'process', 'hdb', 'erpsid', 'hdb', 'running'] processed_text: ['multiple', 'process', 'showing', 'hostname', 'hana', 'sid', 'since', 'pm', 'et', 'multiple', 'process', 'showing', 'hostname', 'hana', 'sid', 'since', 'pm', 'et', 'process', 'hdbnameserver', 'running', 'process', 'hdbxsengine', 'running', 'process', 'hdbpreprocessor', 'running', 'process', 'hdbcompileserve', 'running', 'process', 'hdbindexserver', 'running', 'process', 'hdb', 'erpsid', 'hdb', 'running'] list_processed_text: [['multiple'], ['process'], ['showing'], ['hostname'], ['hana'], ['sid'], ['since'], ['pm'], ['et'], ['multiple'], ['process'], ['showing'], ['hostname'], ['hana'], ['sid'], ['since'], ['pm'], ['et'], ['process'], ['hdbnameserver'], ['running'], ['process'], ['hdbxsengine'], ['running'], ['process'], ['hdbpreprocessor'], ['running'], ['process'], ['hdbcompileserve'], ['running'], ['process'], ['hdbindexserver'], ['running'], ['process'], ['hdb'], ['erpsid'], ['hdb'], ['running']] k: 8079 len: <class 'list'> Data: ['zdis', 'discount', 'appear', 'zdis', 'discount', 'applying', 'zdis', 'even', 'showing', 'condition', 'causing', 'incorrect', 'sale', 'order', 'order', 'placed', 'hold', 'please', 'see', 'following', 'sale', 'order', 'item', 'quote', 'item'] processed_text: ['zdis', 'discount', 'appear', 'zdis', 'discount', 'applying', 'zdis', 'even', 'showing', 'condition', 'causing', 'incorrect', 'sale', 'order', 'order', 'placed', 'hold', 'please', 'see', 'following', 'sale', 'order', 'item', 'quote', 'item'] list_processed_text: [['zdis'], ['discount'], ['appear'], ['zdis'], ['discount'], ['applying'], ['zdis'], ['even'], ['showing'], ['condition'], ['causing'], ['incorrect'], ['sale'], ['order'], ['order'], ['placed'], ['hold'], ['please'], ['see'], ['following'], ['sale'], ['order'], ['item'], ['quote'], ['item']] k: 8080 len: <class 'list'> Data: ['u', 'dedicated', 'hr', 'tool', 'clock', 'hourly', 'employee', 'please', 'add', 'appropriate', 'option', 'following', 'hourly', 'employee', 'dedicated', 'computer', 'clock', 'hr', 'tool', 'desk', 'laptop', 'u', 'zjihgovn', 'cqxahony', 'u', 'dpuifqeo', 'eglwsfkn', 'u', 'ihlsmzdn', 'cnhqgzwt', 'u', 'ewgihcnz', 'vdjqoeip', 'u', 'moxnqszg', 'zgdckste', 'u', 'bghrbie', 'crhyley', 'assistance', 'please', 'feel', 'free', 'contact', 'time', 'wvngzrca', 'sfmrzdth', 'phr', 'human', 'resource', 'manager', 'u', 'plant', 'usa', 'nc'] processed_text: ['u', 'dedicated', 'hr', 'tool', 'clock', 'hourly', 'employee', 'please', 'add', 'appropriate', 'option', 'following', 'hourly', 'employee', 'dedicated', 'computer', 'clock', 'hr', 'tool', 'desk', 'laptop', 'u', 'zjihgovn', 'cqxahony', 'u', 'dpuifqeo', 'eglwsfkn', 'u', 'ihlsmzdn', 'cnhqgzwt', 'u', 'ewgihcnz', 'vdjqoeip', 'u', 'moxnqszg', 'zgdckste', 'u', 'bghrbie', 'crhyley', 'assistance', 'please', 'feel', 'free', 'contact', 'time', 'wvngzrca', 'sfmrzdth', 'phr', 'human', 'resource', 'manager', 'u', 'plant', 'usa', 'nc'] list_processed_text: [['u'], ['dedicated'], ['hr'], ['tool'], ['clock'], ['hourly'], ['employee'], ['please'], ['add'], ['appropriate'], ['option'], ['following'], ['hourly'], ['employee'], ['dedicated'], ['computer'], ['clock'], ['hr'], ['tool'], ['desk'], ['laptop'], ['u'], ['zjihgovn'], ['cqxahony'], ['u'], ['dpuifqeo'], ['eglwsfkn'], ['u'], ['ihlsmzdn'], ['cnhqgzwt'], ['u'], ['ewgihcnz'], ['vdjqoeip'], ['u'], ['moxnqszg'], ['zgdckste'], ['u'], ['bghrbie'], ['crhyley'], ['assistance'], ['please'], ['feel'], ['free'], ['contact'], ['time'], ['wvngzrca'], ['sfmrzdth'], ['phr'], ['human'], ['resource'], ['manager'], ['u'], ['plant'], ['usa'], ['nc']] k: 8081 len: <class 'list'> Data: ['access', 'needed', 'vmsliazh', 'ltksxmyv', 'u', 'plant', 'user', 'debtgyrur', 'access', 'u', 'plant', 'vmsliazh', 'ltksxmyv', 'hostname', 'downloads', 'fzwxitmen', 'jwvuasft', 'daily', 'today', 'access', 'seems', 'broken', 'please', 'restore', 'aerp', 'usaing', 'whatever', 'approval', 'required', 'restore', 'connection', 'immediately', 'causing', 'shutdown', 'production', 'process', 'need', 'immediately', 'addressed'] processed_text: ['access', 'needed', 'vmsliazh', 'ltksxmyv', 'u', 'plant', 'user', 'debtgyrur', 'access', 'u', 'plant', 'vmsliazh', 'ltksxmyv', 'hostname', 'downloads', 'fzwxitmen', 'jwvuasft', 'daily', 'today', 'access', 'seems', 'broken', 'please', 'restore', 'aerp', 'usaing', 'whatever', 'approval', 'required', 'restore', 'connection', 'immediately', 'causing', 'shutdown', 'production', 'process', 'need', 'immediately', 'addressed'] list_processed_text: [['access'], ['needed'], ['vmsliazh'], ['ltksxmyv'], ['u'], ['plant'], ['user'], ['debtgyrur'], ['access'], ['u'], ['plant'], ['vmsliazh'], ['ltksxmyv'], ['hostname'], ['downloads'], ['fzwxitmen'], ['jwvuasft'], ['daily'], ['today'], ['access'], ['seems'], ['broken'], ['please'], ['restore'], ['aerp'], ['usaing'], ['whatever'], ['approval'], ['required'], ['restore'], ['connection'], ['immediately'], ['causing'], ['shutdown'], ['production'], ['process'], ['need'], ['immediately'], ['addressed']] k: 8082 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 8083 len: <class 'list'> Data: ['user', 'wanted', 'check', 'discount', 'microsoft', 'product', 'user', 'wanted', 'check', 'discount', 'microsoft', 'product'] processed_text: ['user', 'wanted', 'check', 'discount', 'microsoft', 'product', 'user', 'wanted', 'check', 'discount', 'microsoft', 'product'] list_processed_text: [['user'], ['wanted'], ['check'], ['discount'], ['microsoft'], ['product'], ['user'], ['wanted'], ['check'], ['discount'], ['microsoft'], ['product']] k: 8084 len: <class 'list'> Data: ['hr', 'tool', 'time', 'issue', 'hr', 'tool', 'time', 'issue', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'request', 'time', 'computer', 'access', 'team', 'member', 'assigned', 'computer'] processed_text: ['hr', 'tool', 'time', 'issue', 'hr', 'tool', 'time', 'issue', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'request', 'time', 'computer', 'access', 'team', 'member', 'assigned', 'computer'] list_processed_text: [['hr'], ['tool'], ['time'], ['issue'], ['hr'], ['tool'], ['time'], ['issue'], ['name'], ['wvngzrca'], ['sfmrzdth'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['request'], ['time'], ['computer'], ['access'], ['team'], ['member'], ['assigned'], ['computer']] k: 8085 len: <class 'list'> Data: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['job', 'running', 'longer', 'minute', 'kirtyled', 'rerun', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['job'], ['running'], ['longer'], ['minute'], ['kirtyled'], ['rerun'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8086 len: <class 'list'> Data: ['contract', 'management', 'employee', 'publication', 'p', 'contract', 'management', 'employee', 'publication', 'p'] processed_text: ['contract', 'management', 'employee', 'publication', 'p', 'contract', 'management', 'employee', 'publication', 'p'] list_processed_text: [['contract'], ['management'], ['employee'], ['publication'], ['p'], ['contract'], ['management'], ['employee'], ['publication'], ['p']] k: 8087 len: <class 'list'> Data: ['collaboration', 'platform', 'asking', 'login', 'page', 'please', 'assist', 'keeping', 'account', 'logged'] processed_text: ['collaboration', 'platform', 'asking', 'login', 'page', 'please', 'assist', 'keeping', 'account', 'logged'] list_processed_text: [['collaboration'], ['platform'], ['asking'], ['login'], ['page'], ['please'], ['assist'], ['keeping'], ['account'], ['logged']] k: 8088 len: <class 'list'> Data: ['hostname', 'status', 'hostname', 'company', 'com', 'status', 'expected', 'red', 'hostname', 'status', 'hostname', 'company', 'com', 'status', 'expected', 'red'] processed_text: ['hostname', 'status', 'hostname', 'company', 'com', 'status', 'expected', 'red', 'hostname', 'status', 'hostname', 'company', 'com', 'status', 'expected', 'red'] list_processed_text: [['hostname'], ['status'], ['hostname'], ['company'], ['com'], ['status'], ['expected'], ['red'], ['hostname'], ['status'], ['hostname'], ['company'], ['com'], ['status'], ['expected'], ['red']] k: 8089 len: <class 'list'> Data: ['xp', 'pc', 'lab', 'hooked', 'microscope', 'get', 'bsod', 'login', 'xp', 'pc', 'lab', 'hooked', 'microscope', 'get', 'bsod', 'login'] processed_text: ['xp', 'pc', 'lab', 'hooked', 'microscope', 'get', 'bsod', 'login', 'xp', 'pc', 'lab', 'hooked', 'microscope', 'get', 'bsod', 'login'] list_processed_text: [['xp'], ['pc'], ['lab'], ['hooked'], ['microscope'], ['get'], ['bsod'], ['login'], ['xp'], ['pc'], ['lab'], ['hooked'], ['microscope'], ['get'], ['bsod'], ['login']] k: 8090 len: <class 'list'> Data: ['terminate', 'action', 'johthryu', 'chmielewski', 'completed', 'rlgmiuwt', 'dfpqxbgm', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'terminate', 'action', 'johthryu', 'chmielewski', 'completed', 'hello', 'termination', 'johthryu', 'chmielewski', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['terminate', 'action', 'johthryu', 'chmielewski', 'completed', 'rlgmiuwt', 'dfpqxbgm', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'amar', 'terminate', 'action', 'johthryu', 'chmielewski', 'completed', 'hello', 'termination', 'johthryu', 'chmielewski', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['terminate'], ['action'], ['johthryu'], ['chmielewski'], ['completed'], ['rlgmiuwt'], ['dfpqxbgm'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['terminate'], ['action'], ['johthryu'], ['chmielewski'], ['completed'], ['hello'], ['termination'], ['johthryu'], ['chmielewski'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 8091 len: <class 'list'> Data: ['unable', 'map', 'printer', 'unable', 'map', 'printer'] processed_text: ['unable', 'map', 'printer', 'unable', 'map', 'printer'] list_processed_text: [['unable'], ['map'], ['printer'], ['unable'], ['map'], ['printer']] k: 8092 len: <class 'list'> Data: ['reset', 'password', 'reset', 'password'] processed_text: ['reset', 'password', 'reset', 'password'] list_processed_text: [['reset'], ['password'], ['reset'], ['password']] k: 8093 len: <class 'list'> Data: ['erp', 'powder', 'interface', 'working', 'erp', 'powder', 'interface', 'working'] processed_text: ['erp', 'powder', 'interface', 'working', 'erp', 'powder', 'interface', 'working'] list_processed_text: [['erp'], ['powder'], ['interface'], ['working'], ['erp'], ['powder'], ['interface'], ['working']] k: 8094 len: <class 'list'> Data: ['change', 'erp', 'printer', 'please', 'change', 'erp', 'printer', 'hrp', 'hcm', 'production', 'usa', 'fm'] processed_text: ['change', 'erp', 'printer', 'please', 'change', 'erp', 'printer', 'hrp', 'hcm', 'production', 'usa', 'fm'] list_processed_text: [['change'], ['erp'], ['printer'], ['please'], ['change'], ['erp'], ['printer'], ['hrp'], ['hcm'], ['production'], ['usa'], ['fm']] k: 8095 len: <class 'list'> Data: ['unable', 'see', 'crm', 'add', 'outlook', 'unable', 'see', 'crm', 'add', 'outlook'] processed_text: ['unable', 'see', 'crm', 'add', 'outlook', 'unable', 'see', 'crm', 'add', 'outlook'] list_processed_text: [['unable'], ['see'], ['crm'], ['add'], ['outlook'], ['unable'], ['see'], ['crm'], ['add'], ['outlook']] k: 8096 len: <class 'list'> Data: ['trouble', 'password', 'accessing', 'portal', 'name', 'upajtkbn', 'wzyspovl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trouble', 'password', 'accessing', 'portal'] processed_text: ['trouble', 'password', 'accessing', 'portal', 'name', 'upajtkbn', 'wzyspovl', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'trouble', 'password', 'accessing', 'portal'] list_processed_text: [['trouble'], ['password'], ['accessing'], ['portal'], ['name'], ['upajtkbn'], ['wzyspovl'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['trouble'], ['password'], ['accessing'], ['portal']] k: 8097 len: <class 'list'> Data: ['unable', 'connect', 'outlook', 'microsoft', 'outlook', 'morning', 'show', 'either', 'trying', 'connect', 'give', 'error', 'able', 'connect', 'server', 'email', 'morning', 'still', 'sitting', 'outbox', 'cannot', 'get', 'send', 'new', 'email', 'coming', 'rebooted', 'outlook', 'twice', 'whole', 'system', 'success'] processed_text: ['unable', 'connect', 'outlook', 'microsoft', 'outlook', 'morning', 'show', 'either', 'trying', 'connect', 'give', 'error', 'able', 'connect', 'server', 'email', 'morning', 'still', 'sitting', 'outbox', 'cannot', 'get', 'send', 'new', 'email', 'coming', 'rebooted', 'outlook', 'twice', 'whole', 'system', 'success'] list_processed_text: [['unable'], ['connect'], ['outlook'], ['microsoft'], ['outlook'], ['morning'], ['show'], ['either'], ['trying'], ['connect'], ['give'], ['error'], ['able'], ['connect'], ['server'], ['email'], ['morning'], ['still'], ['sitting'], ['outbox'], ['cannot'], ['get'], ['send'], ['new'], ['email'], ['coming'], ['rebooted'], ['outlook'], ['twice'], ['whole'], ['system'], ['success']] k: 8098 len: <class 'list'> Data: ['outlook', 'calendar', 'hello', 'outlook', 'calendar', 'show', 'information', 'someone', 'try', 'schedule', 'meeting', 'using', 'scheduling', 'assistant', 'fix'] processed_text: ['outlook', 'calendar', 'hello', 'outlook', 'calendar', 'show', 'information', 'someone', 'try', 'schedule', 'meeting', 'using', 'scheduling', 'assistant', 'fix'] list_processed_text: [['outlook'], ['calendar'], ['hello'], ['outlook'], ['calendar'], ['show'], ['information'], ['someone'], ['try'], ['schedule'], ['meeting'], ['using'], ['scheduling'], ['assistant'], ['fix']] k: 8099 len: <class 'list'> Data: ['unable', 'save', 'attachment', 'business', 'client', 'unable', 'save', 'attachment', 'business', 'client'] processed_text: ['unable', 'save', 'attachment', 'business', 'client', 'unable', 'save', 'attachment', 'business', 'client'] list_processed_text: [['unable'], ['save'], ['attachment'], ['business'], ['client'], ['unable'], ['save'], ['attachment'], ['business'], ['client']] k: 8100 len: <class 'list'> Data: ['window', 'password', 'reset', 'window', 'password', 'reset'] processed_text: ['window', 'password', 'reset', 'window', 'password', 'reset'] list_processed_text: [['window'], ['password'], ['reset'], ['window'], ['password'], ['reset']] k: 8101 len: <class 'list'> Data: ['unable', 'login', 'one', 'time', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'still', 'issue', 'sf', 'loading', 'white', 'page', 'advise'] processed_text: ['unable', 'login', 'one', 'time', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'still', 'issue', 'sf', 'loading', 'white', 'page', 'advise'] list_processed_text: [['unable'], ['login'], ['one'], ['time'], ['name'], ['wvngzrca'], ['sfmrzdth'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['still'], ['issue'], ['sf'], ['loading'], ['white'], ['page'], ['advise']] k: 8102 len: <class 'list'> Data: ['vmax', 'disk', 'failed', 'df', 'c', 'monitor', 'disk', 'failed', 'df', 'c', 'localhost', 'outside', 'expected', 'limit', 'true', 'true'] processed_text: ['vmax', 'disk', 'failed', 'df', 'c', 'monitor', 'disk', 'failed', 'df', 'c', 'localhost', 'outside', 'expected', 'limit', 'true', 'true'] list_processed_text: [['vmax'], ['disk'], ['failed'], ['df'], ['c'], ['monitor'], ['disk'], ['failed'], ['df'], ['c'], ['localhost'], ['outside'], ['expected'], ['limit'], ['true'], ['true']] k: 8103 len: <class 'list'> Data: ['rounding', 'concern', 'mexico', 'please', 'assign', 'ticket', 'rabhtuikurtyar', 'tammineni', 'znet', 'applied', 'zcnc', 'zcnp', 'manual', 'condition'] processed_text: ['rounding', 'concern', 'mexico', 'please', 'assign', 'ticket', 'rabhtuikurtyar', 'tammineni', 'znet', 'applied', 'zcnc', 'zcnp', 'manual', 'condition'] list_processed_text: [['rounding'], ['concern'], ['mexico'], ['please'], ['assign'], ['ticket'], ['rabhtuikurtyar'], ['tammineni'], ['znet'], ['applied'], ['zcnc'], ['zcnp'], ['manual'], ['condition']] k: 8104 len: <class 'list'> Data: ['account', 'locked', 'trust', 'relationship', 'issue', 'account', 'locked', 'trust', 'relationship', 'issue'] processed_text: ['account', 'locked', 'trust', 'relationship', 'issue', 'account', 'locked', 'trust', 'relationship', 'issue'] list_processed_text: [['account'], ['locked'], ['trust'], ['relationship'], ['issue'], ['account'], ['locked'], ['trust'], ['relationship'], ['issue']] k: 8105 len: <class 'list'> Data: ['engineering', 'tool', 'system', 'able', 'enter', 'customer', 'detail', 'engineering', 'tool', 'system'] processed_text: ['engineering', 'tool', 'system', 'able', 'enter', 'customer', 'detail', 'engineering', 'tool', 'system'] list_processed_text: [['engineering'], ['tool'], ['system'], ['able'], ['enter'], ['customer'], ['detail'], ['engineering'], ['tool'], ['system']] k: 8106 len: <class 'list'> Data: ['unable', 'hear', 'audio', 'skype', 'unable', 'hear', 'audio', 'skype'] processed_text: ['unable', 'hear', 'audio', 'skype', 'unable', 'hear', 'audio', 'skype'] list_processed_text: [['unable'], ['hear'], ['audio'], ['skype'], ['unable'], ['hear'], ['audio'], ['skype']] k: 8107 len: <class 'list'> Data: ['mii', 'responding', 'order', 'scanned', 'system', 'locking', 'giving', 'error', 'see', 'technical', 'error', 'br', 'please', 'try', 'br', 'problem', 'persists', 'please', 'notify', 'administrator', 'br', 'error', 'following', 'error', 'occured', 'processing', 'request', 'object', 'object', 'status', 'error', 'error', 'internal', 'server', 'error', 'operator', 'rebooted', 'computer', 'multiple', 'time', 'karghyuen'] processed_text: ['mii', 'responding', 'order', 'scanned', 'system', 'locking', 'giving', 'error', 'see', 'technical', 'error', 'br', 'please', 'try', 'br', 'problem', 'persists', 'please', 'notify', 'administrator', 'br', 'error', 'following', 'error', 'occured', 'processing', 'request', 'object', 'object', 'status', 'error', 'error', 'internal', 'server', 'error', 'operator', 'rebooted', 'computer', 'multiple', 'time', 'karghyuen'] list_processed_text: [['mii'], ['responding'], ['order'], ['scanned'], ['system'], ['locking'], ['giving'], ['error'], ['see'], ['technical'], ['error'], ['br'], ['please'], ['try'], ['br'], ['problem'], ['persists'], ['please'], ['notify'], ['administrator'], ['br'], ['error'], ['following'], ['error'], ['occured'], ['processing'], ['request'], ['object'], ['object'], ['status'], ['error'], ['error'], ['internal'], ['server'], ['error'], ['operator'], ['rebooted'], ['computer'], ['multiple'], ['time'], ['karghyuen']] k: 8108 len: <class 'list'> Data: ['password', 'reset', 'login', 'issue', 'collaboration', 'platform', 'password', 'reset', 'login', 'issue', 'collaboration', 'platform'] processed_text: ['password', 'reset', 'login', 'issue', 'collaboration', 'platform', 'password', 'reset', 'login', 'issue', 'collaboration', 'platform'] list_processed_text: [['password'], ['reset'], ['login'], ['issue'], ['collaboration'], ['platform'], ['password'], ['reset'], ['login'], ['issue'], ['collaboration'], ['platform']] k: 8109 len: <class 'list'> Data: ['employee', 'password', 'etime', 'working', 'please', 'issue', 'new', 'password', 'etime', 'access', 'employee', 'gyweclbt', 'oahmgpfy', 'ee', 'aerp'] processed_text: ['employee', 'password', 'etime', 'working', 'please', 'issue', 'new', 'password', 'etime', 'access', 'employee', 'gyweclbt', 'oahmgpfy', 'ee', 'aerp'] list_processed_text: [['employee'], ['password'], ['etime'], ['working'], ['please'], ['issue'], ['new'], ['password'], ['etime'], ['access'], ['employee'], ['gyweclbt'], ['oahmgpfy'], ['ee'], ['aerp']] k: 8110 len: <class 'list'> Data: ['release', 'device', 'please', 'release', 'device', 'quarantine', 'microsoft', 'outlook', 'qpixeudn', 'rjlziysd', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'mobile', 'device', 'temporarily', 'blocked', 'accessing', 'content', 'via', 'exchange', 'activesync', 'mobile', 'device', 'quarantined', 'need', 'take', 'action', 'content', 'automatically', 'downloaded', 'soon', 'access', 'usaed', 'administrator', 'please', 'ignore', 'paragraph', 'cannot', 'change', 'delete', 'special', 'note', 'jan', 'microsoft', 'outlook', 'app', 'io', 'android', 'released', 'yesterday', 'currently', 'approved', 'software', 'accessing', 'company', 'mail', 'uacyltoe', 'hxgayczeed', 'approved', 'please', 'consider', 'using', 'one', 'embedded', 'mail', 'software', 'mobile', 'device', 'browser', 'mobile', 'device', 'microsoft', 'owa', 'app', 'published', 'mobile', 'device', 'platform', 'beginning', 'employee', 'supervisor', 'approval', 'use', 'personally', 'owned', 'mobile', 'device', 'access', 'outlook', 'email', 'company', 'moving', 'forward', 'providing', 'opportstorage', 'product', 'employee', 'use', 'specified', 'personally', 'owned', 'device', 'allow', 'productivity', 'improvement', 'enable', 'work', 'life', 'balance', 'addition', 'policy', 'company', 'owned', 'device', 'currently', 'approved', 'handheld', 'device', 'found', 'policy', 'wireless', 'mobility', 'technical', 'document', 'policy', 'updated', 'device', 'approved', 'use', 'approved', 'device', 'would', 'like', 'take', 'advantage', 'opportstorage', 'product', 'submit', 'ticketing', 'tool', 'ticket', 'http', 'company', 'ticketing', 'tool', 'com', 'incident', 'sysparm', 'stack', 'incident', 'list', 'doandsys', 'id', 'andsysparm', 'query', 'incident', 'sys', 'id', 'andsysparm', 'template', 'mobile', 'global', 'support', 'center', 'gsc', 'personally', 'owned', 'device', 'need', 'attach', 'agreement', 'form', 'found', 'wireless', 'mobility', 'standard', 'procedure', 'agreement', 'must', 'signed', 'next', 'level', 'supervisor', 'provided', 'gsc', 'prior', 'ticket', 'entered', 'attach', 'signed', 'form', 'ticket', 'send', 'signed', 'form', 'gsc', 'attach', 'ticket', 'without', 'signed', 'form', 'cancelled', 'week', 'process', 'submit', 'form', 'device', 'denied', 'deleted', 'quarantine', 'wireless', 'mobility', 'standard', 'procedure', 'information', 'mobile', 'device', 'device', 'model', 'iphonec', 'device', 'type', 'iphone', 'device', 'id', 'rufpmvsdusid', 'tlgfkk', 'device', 'o', 'io', 'device', 'user', 'agent', 'apple', 'iphonec', 'device', 'imei', 'exchange', 'activesync', 'version', 'device', 'access', 'state', 'quarantined', 'device', 'access', 'state', 'reason', 'global', 'sent', 'pm'] processed_text: ['release', 'device', 'please', 'release', 'device', 'quarantine', 'microsoft', 'outlook', 'qpixeudn', 'rjlziysd', 'mobile', 'device', 'temporarily', 'blocked', 'synchronizing', 'using', 'exchange', 'activesync', 'administrator', 'usa', 'access', 'mobile', 'device', 'temporarily', 'blocked', 'accessing', 'content', 'via', 'exchange', 'activesync', 'mobile', 'device', 'quarantined', 'need', 'take', 'action', 'content', 'automatically', 'downloaded', 'soon', 'access', 'usaed', 'administrator', 'please', 'ignore', 'paragraph', 'cannot', 'change', 'delete', 'special', 'note', 'jan', 'microsoft', 'outlook', 'app', 'io', 'android', 'released', 'yesterday', 'currently', 'approved', 'software', 'accessing', 'company', 'mail', 'uacyltoe', 'hxgayczeed', 'approved', 'please', 'consider', 'using', 'one', 'embedded', 'mail', 'software', 'mobile', 'device', 'browser', 'mobile', 'device', 'microsoft', 'owa', 'app', 'published', 'mobile', 'device', 'platform', 'beginning', 'employee', 'supervisor', 'approval', 'use', 'personally', 'owned', 'mobile', 'device', 'access', 'outlook', 'email', 'company', 'moving', 'forward', 'providing', 'opportstorage', 'product', 'employee', 'use', 'specified', 'personally', 'owned', 'device', 'allow', 'productivity', 'improvement', 'enable', 'work', 'life', 'balance', 'addition', 'policy', 'company', 'owned', 'device', 'currently', 'approved', 'handheld', 'device', 'found', 'policy', 'wireless', 'mobility', 'technical', 'document', 'policy', 'updated', 'device', 'approved', 'use', 'approved', 'device', 'would', 'like', 'take', 'advantage', 'opportstorage', 'product', 'submit', 'ticketing', 'tool', 'ticket', 'http', 'company', 'ticketing', 'tool', 'com', 'incident', 'sysparm', 'stack', 'incident', 'list', 'doandsys', 'id', 'andsysparm', 'query', 'incident', 'sys', 'id', 'andsysparm', 'template', 'mobile', 'global', 'support', 'center', 'gsc', 'personally', 'owned', 'device', 'need', 'attach', 'agreement', 'form', 'found', 'wireless', 'mobility', 'standard', 'procedure', 'agreement', 'must', 'signed', 'next', 'level', 'supervisor', 'provided', 'gsc', 'prior', 'ticket', 'entered', 'attach', 'signed', 'form', 'ticket', 'send', 'signed', 'form', 'gsc', 'attach', 'ticket', 'without', 'signed', 'form', 'cancelled', 'week', 'process', 'submit', 'form', 'device', 'denied', 'deleted', 'quarantine', 'wireless', 'mobility', 'standard', 'procedure', 'information', 'mobile', 'device', 'device', 'model', 'iphonec', 'device', 'type', 'iphone', 'device', 'id', 'rufpmvsdusid', 'tlgfkk', 'device', 'o', 'io', 'device', 'user', 'agent', 'apple', 'iphonec', 'device', 'imei', 'exchange', 'activesync', 'version', 'device', 'access', 'state', 'quarantined', 'device', 'access', 'state', 'reason', 'global', 'sent', 'pm'] list_processed_text: [['release'], ['device'], ['please'], ['release'], ['device'], ['quarantine'], ['microsoft'], ['outlook'], ['qpixeudn'], ['rjlziysd'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['synchronizing'], ['using'], ['exchange'], ['activesync'], ['administrator'], ['usa'], ['access'], ['mobile'], ['device'], ['temporarily'], ['blocked'], ['accessing'], ['content'], ['via'], ['exchange'], ['activesync'], ['mobile'], ['device'], ['quarantined'], ['need'], ['take'], ['action'], ['content'], ['automatically'], ['downloaded'], ['soon'], ['access'], ['usaed'], ['administrator'], ['please'], ['ignore'], ['paragraph'], ['cannot'], ['change'], ['delete'], ['special'], ['note'], ['jan'], ['microsoft'], ['outlook'], ['app'], ['io'], ['android'], ['released'], ['yesterday'], ['currently'], ['approved'], ['software'], ['accessing'], ['company'], ['mail'], ['uacyltoe'], ['hxgayczeed'], ['approved'], ['please'], ['consider'], ['using'], ['one'], ['embedded'], ['mail'], ['software'], ['mobile'], ['device'], ['browser'], ['mobile'], ['device'], ['microsoft'], ['owa'], ['app'], ['published'], ['mobile'], ['device'], ['platform'], ['beginning'], ['employee'], ['supervisor'], ['approval'], ['use'], ['personally'], ['owned'], ['mobile'], ['device'], ['access'], ['outlook'], ['email'], ['company'], ['moving'], ['forward'], ['providing'], ['opportstorage'], ['product'], ['employee'], ['use'], ['specified'], ['personally'], ['owned'], ['device'], ['allow'], ['productivity'], ['improvement'], ['enable'], ['work'], ['life'], ['balance'], ['addition'], ['policy'], ['company'], ['owned'], ['device'], ['currently'], ['approved'], ['handheld'], ['device'], ['found'], ['policy'], ['wireless'], ['mobility'], ['technical'], ['document'], ['policy'], ['updated'], ['device'], ['approved'], ['use'], ['approved'], ['device'], ['would'], ['like'], ['take'], ['advantage'], ['opportstorage'], ['product'], ['submit'], ['ticketing'], ['tool'], ['ticket'], ['http'], ['company'], ['ticketing'], ['tool'], ['com'], ['incident'], ['sysparm'], ['stack'], ['incident'], ['list'], ['doandsys'], ['id'], ['andsysparm'], ['query'], ['incident'], ['sys'], ['id'], ['andsysparm'], ['template'], ['mobile'], ['global'], ['support'], ['center'], ['gsc'], ['personally'], ['owned'], ['device'], ['need'], ['attach'], ['agreement'], ['form'], ['found'], ['wireless'], ['mobility'], ['standard'], ['procedure'], ['agreement'], ['must'], ['signed'], ['next'], ['level'], ['supervisor'], ['provided'], ['gsc'], ['prior'], ['ticket'], ['entered'], ['attach'], ['signed'], ['form'], ['ticket'], ['send'], ['signed'], ['form'], ['gsc'], ['attach'], ['ticket'], ['without'], ['signed'], ['form'], ['cancelled'], ['week'], ['process'], ['submit'], ['form'], ['device'], ['denied'], ['deleted'], ['quarantine'], ['wireless'], ['mobility'], ['standard'], ['procedure'], ['information'], ['mobile'], ['device'], ['device'], ['model'], ['iphonec'], ['device'], ['type'], ['iphone'], ['device'], ['id'], ['rufpmvsdusid'], ['tlgfkk'], ['device'], ['o'], ['io'], ['device'], ['user'], ['agent'], ['apple'], ['iphonec'], ['device'], ['imei'], ['exchange'], ['activesync'], ['version'], ['device'], ['access'], ['state'], ['quarantined'], ['device'], ['access'], ['state'], ['reason'], ['global'], ['sent'], ['pm']] k: 8111 len: <class 'list'> Data: ['unable', 'login', 'outlook', 'skype', 'unable', 'login', 'outlook', 'skype'] processed_text: ['unable', 'login', 'outlook', 'skype', 'unable', 'login', 'outlook', 'skype'] list_processed_text: [['unable'], ['login'], ['outlook'], ['skype'], ['unable'], ['login'], ['outlook'], ['skype']] k: 8112 len: <class 'list'> Data: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mitctdrhb', 'transaction', 'code', 'user', 'need', 'working', 'logon', 'describe', 'issue', 'changed', 'password', 'using', 'password', 'manager', 'unable', 'log', 'erp', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] processed_text: ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'sid', 'enter', 'user', 'id', 'user', 'issue', 'mitctdrhb', 'transaction', 'code', 'user', 'need', 'working', 'logon', 'describe', 'issue', 'changed', 'password', 'using', 'password', 'manager', 'unable', 'log', 'erp', 'getting', 'authorized', 'message', 'recreate', 'condition', 'nsu', 'attach', 'result', 'ticketing', 'tool', 'ticket', 'provide', 'access', 'user'] list_processed_text: [['erp'], ['access'], ['issue'], ['system'], ['sid'], ['sid'], ['sid'], ['sid'], ['hrp'], ['sid'], ['enter'], ['user'], ['id'], ['user'], ['issue'], ['mitctdrhb'], ['transaction'], ['code'], ['user'], ['need'], ['working'], ['logon'], ['describe'], ['issue'], ['changed'], ['password'], ['using'], ['password'], ['manager'], ['unable'], ['log'], ['erp'], ['getting'], ['authorized'], ['message'], ['recreate'], ['condition'], ['nsu'], ['attach'], ['result'], ['ticketing'], ['tool'], ['ticket'], ['provide'], ['access'], ['user']] k: 8113 len: <class 'list'> Data: ['es', 'password', 'reset', 'request', 'misplaced', 'password', 'ad', 'password', 'reset', 'needed'] processed_text: ['es', 'password', 'reset', 'request', 'misplaced', 'password', 'ad', 'password', 'reset', 'needed'] list_processed_text: [['es'], ['password'], ['reset'], ['request'], ['misplaced'], ['password'], ['ad'], ['password'], ['reset'], ['needed']] k: 8114 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'ricagthyr', 'doflefne', 'id', 'noggtyuerp', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'id', 'noggtyuerp'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'ricagthyr', 'doflefne', 'id', 'noggtyuerp', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'id', 'noggtyuerp'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['ricagthyr'], ['doflefne'], ['id'], ['noggtyuerp'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['id'], ['noggtyuerp']] k: 8115 len: <class 'list'> Data: ['skype', 'im', 'logging', 'stuck', 'logging', 'personal', 'certificate', 'error'] processed_text: ['skype', 'im', 'logging', 'stuck', 'logging', 'personal', 'certificate', 'error'] list_processed_text: [['skype'], ['im'], ['logging'], ['stuck'], ['logging'], ['personal'], ['certificate'], ['error']] k: 8116 len: <class 'list'> Data: ['issue', 'connecting', 'though', 'telecom', 'vendor', 'gprs', 'sim', 'hello', 'facing', 'issue', 'connecting', 'telecom', 'vendor', 'gprs', 'network', 'pl', 'look'] processed_text: ['issue', 'connecting', 'though', 'telecom', 'vendor', 'gprs', 'sim', 'hello', 'facing', 'issue', 'connecting', 'telecom', 'vendor', 'gprs', 'network', 'pl', 'look'] list_processed_text: [['issue'], ['connecting'], ['though'], ['telecom'], ['vendor'], ['gprs'], ['sim'], ['hello'], ['facing'], ['issue'], ['connecting'], ['telecom'], ['vendor'], ['gprs'], ['network'], ['pl'], ['look']] k: 8117 len: <class 'list'> Data: ['reset', 'password', 'erp', 'production', 'hcm', 'locked', 'erp', 'sid', 'set', 'password', 'management', 'tool', 'getting', 'error', 'unable', 'find', 'account', 'user', 'ginemkl', 'logging', 'password', 'management', 'tool', 'please', 'notify', 'wptbgchj', 'jutpdcqf', 'account', 'unlocked'] processed_text: ['reset', 'password', 'erp', 'production', 'hcm', 'locked', 'erp', 'sid', 'set', 'password', 'management', 'tool', 'getting', 'error', 'unable', 'find', 'account', 'user', 'ginemkl', 'logging', 'password', 'management', 'tool', 'please', 'notify', 'wptbgchj', 'jutpdcqf', 'account', 'unlocked'] list_processed_text: [['reset'], ['password'], ['erp'], ['production'], ['hcm'], ['locked'], ['erp'], ['sid'], ['set'], ['password'], ['management'], ['tool'], ['getting'], ['error'], ['unable'], ['find'], ['account'], ['user'], ['ginemkl'], ['logging'], ['password'], ['management'], ['tool'], ['please'], ['notify'], ['wptbgchj'], ['jutpdcqf'], ['account'], ['unlocked']] k: 8118 len: <class 'list'> Data: ['reset', 'password', 'kevguind', 'gineman', 'using', 'password', 'management', 'tool', 'password', 'reset'] processed_text: ['reset', 'password', 'kevguind', 'gineman', 'using', 'password', 'management', 'tool', 'password', 'reset'] list_processed_text: [['reset'], ['password'], ['kevguind'], ['gineman'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset']] k: 8119 len: <class 'list'> Data: ['good', 'receipt', 'issue', 'hello', 'po', 'po', 'created', 'roll', 'paper', 'price', 'price', 'changed', 'purchase', 'order', 'good', 'receipt', 'booked', 'total', 'amount', 'asked', 'uk', 'warehouse', 'sure', 'possible', 'good', 'receipt', 'different', 'value', 'see', 'caused'] processed_text: ['good', 'receipt', 'issue', 'hello', 'po', 'po', 'created', 'roll', 'paper', 'price', 'price', 'changed', 'purchase', 'order', 'good', 'receipt', 'booked', 'total', 'amount', 'asked', 'uk', 'warehouse', 'sure', 'possible', 'good', 'receipt', 'different', 'value', 'see', 'caused'] list_processed_text: [['good'], ['receipt'], ['issue'], ['hello'], ['po'], ['po'], ['created'], ['roll'], ['paper'], ['price'], ['price'], ['changed'], ['purchase'], ['order'], ['good'], ['receipt'], ['booked'], ['total'], ['amount'], ['asked'], ['uk'], ['warehouse'], ['sure'], ['possible'], ['good'], ['receipt'], ['different'], ['value'], ['see'], ['caused']] k: 8120 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'b', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['b'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8121 len: <class 'list'> Data: ['job', 'qeue', 'engg', 'application', 'stopped', 'job', 'qeue', 'processor', 'engg', 'stopped', 'need', 'restarted', 'please', 'forward', 'engg', 'group'] processed_text: ['job', 'qeue', 'engg', 'application', 'stopped', 'job', 'qeue', 'processor', 'engg', 'stopped', 'need', 'restarted', 'please', 'forward', 'engg', 'group'] list_processed_text: [['job'], ['qeue'], ['engg'], ['application'], ['stopped'], ['job'], ['qeue'], ['processor'], ['engg'], ['stopped'], ['need'], ['restarted'], ['please'], ['forward'], ['engg'], ['group']] k: 8122 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 8123 len: <class 'list'> Data: ['docking', 'station', 'charging', 'computer', 'checked', 'plug', 'still', 'charging', 'computer'] processed_text: ['docking', 'station', 'charging', 'computer', 'checked', 'plug', 'still', 'charging', 'computer'] list_processed_text: [['docking'], ['station'], ['charging'], ['computer'], ['checked'], ['plug'], ['still'], ['charging'], ['computer']] k: 8124 len: <class 'list'> Data: ['issue', 'lean', 'tracker', 'issue', 'lean', 'tracker'] processed_text: ['issue', 'lean', 'tracker', 'issue', 'lean', 'tracker'] list_processed_text: [['issue'], ['lean'], ['tracker'], ['issue'], ['lean'], ['tracker']] k: 8125 len: <class 'list'> Data: ['password', 'reset', 'password', 'reset'] processed_text: ['password', 'reset', 'password', 'reset'] list_processed_text: [['password'], ['reset'], ['password'], ['reset']] k: 8126 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'changing', 'password', 'unable', 'launch', 'outlook', 'changing', 'password'] processed_text: ['unable', 'launch', 'outlook', 'changing', 'password', 'unable', 'launch', 'outlook', 'changing', 'password'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['changing'], ['password'], ['unable'], ['launch'], ['outlook'], ['changing'], ['password']] k: 8127 len: <class 'list'> Data: ['unlock', 'csvlijud', 'jzhnkclo', 'unlock', 'csvlijud', 'jzhnkclo', 'pc', 'name', 'rrsp', 'contact', 'name', 'user', 'id', 'administrator'] processed_text: ['unlock', 'csvlijud', 'jzhnkclo', 'unlock', 'csvlijud', 'jzhnkclo', 'pc', 'name', 'rrsp', 'contact', 'name', 'user', 'id', 'administrator'] list_processed_text: [['unlock'], ['csvlijud'], ['jzhnkclo'], ['unlock'], ['csvlijud'], ['jzhnkclo'], ['pc'], ['name'], ['rrsp'], ['contact'], ['name'], ['user'], ['id'], ['administrator']] k: 8128 len: <class 'list'> Data: ['unable', 'login', 'window', 'account', 'locked', 'unable', 'login', 'window', 'account', 'locked'] processed_text: ['unable', 'login', 'window', 'account', 'locked', 'unable', 'login', 'window', 'account', 'locked'] list_processed_text: [['unable'], ['login'], ['window'], ['account'], ['locked'], ['unable'], ['login'], ['window'], ['account'], ['locked']] k: 8129 len: <class 'list'> Data: ['unable', 'log', 'hr', 'tool', 'get', 'directed', 'hr', 'tool', 'logon', 'page', 'instead', 'directly', 'getting', 'authenticated', 'sso', 'see', 'attachment'] processed_text: ['unable', 'log', 'hr', 'tool', 'get', 'directed', 'hr', 'tool', 'logon', 'page', 'instead', 'directly', 'getting', 'authenticated', 'sso', 'see', 'attachment'] list_processed_text: [['unable'], ['log'], ['hr'], ['tool'], ['get'], ['directed'], ['hr'], ['tool'], ['logon'], ['page'], ['instead'], ['directly'], ['getting'], ['authenticated'], ['sso'], ['see'], ['attachment']] k: 8130 len: <class 'list'> Data: ['cannot', 'make', 'skype', 'meeting', 'every', 'time', 'error', 'stating', 'skype', 'running', 'cannot', 'make', 'skype', 'meeting', 'every', 'time', 'error', 'stating', 'skype', 'running'] processed_text: ['cannot', 'make', 'skype', 'meeting', 'every', 'time', 'error', 'stating', 'skype', 'running', 'cannot', 'make', 'skype', 'meeting', 'every', 'time', 'error', 'stating', 'skype', 'running'] list_processed_text: [['cannot'], ['make'], ['skype'], ['meeting'], ['every'], ['time'], ['error'], ['stating'], ['skype'], ['running'], ['cannot'], ['make'], ['skype'], ['meeting'], ['every'], ['time'], ['error'], ['stating'], ['skype'], ['running']] k: 8131 len: <class 'list'> Data: ['shagfferon', 'called', 'reset', 'password', 'user', 'bregtnnl', 'shagfferon', 'called', 'reset', 'password', 'user', 'bregtnnl'] processed_text: ['shagfferon', 'called', 'reset', 'password', 'user', 'bregtnnl', 'shagfferon', 'called', 'reset', 'password', 'user', 'bregtnnl'] list_processed_text: [['shagfferon'], ['called'], ['reset'], ['password'], ['user'], ['bregtnnl'], ['shagfferon'], ['called'], ['reset'], ['password'], ['user'], ['bregtnnl']] k: 8132 len: <class 'list'> Data: ['reset', 'password', 'robhyertyj', 'shipping', 'tool', 'erp', 'production', 'bw', 'used', 'quite', 'awhile', 'let', 'current', 'password'] processed_text: ['reset', 'password', 'robhyertyj', 'shipping', 'tool', 'erp', 'production', 'bw', 'used', 'quite', 'awhile', 'let', 'current', 'password'] list_processed_text: [['reset'], ['password'], ['robhyertyj'], ['shipping'], ['tool'], ['erp'], ['production'], ['bw'], ['used'], ['quite'], ['awhile'], ['let'], ['current'], ['password']] k: 8133 len: <class 'list'> Data: ['browser', 'issue', 'collaboration', 'platform', 'loading', 'browser', 'issue', 'collaboration', 'platform', 'loading'] processed_text: ['browser', 'issue', 'collaboration', 'platform', 'loading', 'browser', 'issue', 'collaboration', 'platform', 'loading'] list_processed_text: [['browser'], ['issue'], ['collaboration'], ['platform'], ['loading'], ['browser'], ['issue'], ['collaboration'], ['platform'], ['loading']] k: 8134 len: <class 'list'> Data: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] processed_text: ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'] list_processed_text: [['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset']] k: 8135 len: <class 'list'> Data: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'mpls', 'circuit', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['circuit', 'outage', 'vogelfontein', 'south', 'africa', 'mpls', 'circuit', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['circuit'], ['outage'], ['vogelfontein'], ['south'], ['africa'], ['mpls'], ['circuit'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 8136 len: <class 'list'> Data: ['access', 'vpn', 'user', 'id', 'wijuiidl', 'computer', 'name', 'lehl', 'access', 'vpn'] processed_text: ['access', 'vpn', 'user', 'id', 'wijuiidl', 'computer', 'name', 'lehl', 'access', 'vpn'] list_processed_text: [['access'], ['vpn'], ['user'], ['id'], ['wijuiidl'], ['computer'], ['name'], ['lehl'], ['access'], ['vpn']] k: 8137 len: <class 'list'> Data: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] processed_text: ['unable', 'login', 'skype', 'unable', 'login', 'skype'] list_processed_text: [['unable'], ['login'], ['skype'], ['unable'], ['login'], ['skype']] k: 8138 len: <class 'list'> Data: ['bex', 'patch', 'installation', 'bex', 'patch', 'installation'] processed_text: ['bex', 'patch', 'installation', 'bex', 'patch', 'installation'] list_processed_text: [['bex'], ['patch'], ['installation'], ['bex'], ['patch'], ['installation']] k: 8139 len: <class 'list'> Data: ['supply', 'chain', 'software', 'login', 'issue', 'supply', 'chain', 'software', 'login', 'issue'] processed_text: ['supply', 'chain', 'software', 'login', 'issue', 'supply', 'chain', 'software', 'login', 'issue'] list_processed_text: [['supply'], ['chain'], ['software'], ['login'], ['issue'], ['supply'], ['chain'], ['software'], ['login'], ['issue']] k: 8140 len: <class 'list'> Data: ['business', 'client', 'input', 'puedo', 'ingresar', 'business', 'client', 'con', 'contrase'] processed_text: ['business', 'client', 'input', 'puedo', 'ingresar', 'business', 'client', 'con', 'contrase'] list_processed_text: [['business'], ['client'], ['input'], ['puedo'], ['ingresar'], ['business'], ['client'], ['con'], ['contrase']] k: 8141 len: <class 'list'> Data: ['need', 'replacement', 'monitor', 'coatncqulao', 'qauighdpchine', 'need', 'replacement', 'monitor', 'coatncqulao', 'qauighdpchine'] processed_text: ['need', 'replacement', 'monitor', 'coatncqulao', 'qauighdpchine', 'need', 'replacement', 'monitor', 'coatncqulao', 'qauighdpchine'] list_processed_text: [['need'], ['replacement'], ['monitor'], ['coatncqulao'], ['qauighdpchine'], ['need'], ['replacement'], ['monitor'], ['coatncqulao'], ['qauighdpchine']] k: 8142 len: <class 'list'> Data: ['item', 'number', 'issue', 'inwarehouse', 'tool', 'form', 'israel', 'item', 'number', 'issue', 'inwarehouse', 'tool', 'form', 'israel'] processed_text: ['item', 'number', 'issue', 'inwarehouse', 'tool', 'form', 'israel', 'item', 'number', 'issue', 'inwarehouse', 'tool', 'form', 'israel'] list_processed_text: [['item'], ['number'], ['issue'], ['inwarehouse'], ['tool'], ['form'], ['israel'], ['item'], ['number'], ['issue'], ['inwarehouse'], ['tool'], ['form'], ['israel']] k: 8143 len: <class 'list'> Data: ['bqdlegnp', 'lnphmsco', 'password', 'expired', 'please', 'call', 'please', 'call', 'bqdlegnp', 'lnphmsco', 'update', 'password', 'cannot', 'login', 'anything'] processed_text: ['bqdlegnp', 'lnphmsco', 'password', 'expired', 'please', 'call', 'please', 'call', 'bqdlegnp', 'lnphmsco', 'update', 'password', 'cannot', 'login', 'anything'] list_processed_text: [['bqdlegnp'], ['lnphmsco'], ['password'], ['expired'], ['please'], ['call'], ['please'], ['call'], ['bqdlegnp'], ['lnphmsco'], ['update'], ['password'], ['cannot'], ['login'], ['anything']] k: 8144 len: <class 'list'> Data: ['general', 'inquiry', 'general', 'inquiry'] processed_text: ['general', 'inquiry', 'general', 'inquiry'] list_processed_text: [['general'], ['inquiry'], ['general'], ['inquiry']] k: 8145 len: <class 'list'> Data: ['time', 'recording', 'working', 'eu', 'tool', 'unable', 'connect', 'server', 'time', 'recording', 'eu', 'tool', 'work', 'eu', 'tool', 'installed', 'user', 'pc', 'telefon'] processed_text: ['time', 'recording', 'working', 'eu', 'tool', 'unable', 'connect', 'server', 'time', 'recording', 'eu', 'tool', 'work', 'eu', 'tool', 'installed', 'user', 'pc', 'telefon'] list_processed_text: [['time'], ['recording'], ['working'], ['eu'], ['tool'], ['unable'], ['connect'], ['server'], ['time'], ['recording'], ['eu'], ['tool'], ['work'], ['eu'], ['tool'], ['installed'], ['user'], ['pc'], ['telefon']] k: 8146 len: <class 'list'> Data: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'home', 'location', 'usa', 'whenever', 'come', 'u', 'plant', 'connect', 'network', 'pc', 'run', 'estorage', 'productly', 'slow', 'programdntys', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] processed_text: ['network', 'problem', 'multiple', 'application', 'running', 'slow', 'home', 'location', 'usa', 'whenever', 'come', 'u', 'plant', 'connect', 'network', 'pc', 'run', 'estorage', 'productly', 'slow', 'programdntys', 'slow', 'determine', 'network', 'problem', 'erp', 'slow', 'please', 'use', 'quick', 'ticket', 'within', 'erp', 'folder', 'erp', 'running', 'slow', 'one', 'transaction', 'impacted', 'erp', 'server', 'server', 'name', 'located', 'status', 'bar', 'bottom', 'right', 'screen', 'co', 'worker', 'also', 'notice', 'slow', 'response', 'time', 'erp', 'application', 'running', 'slow', 'access', 'data', 'file', 'server', 'comment', 'issue', 'system'] list_processed_text: [['network'], ['problem'], ['multiple'], ['application'], ['running'], ['slow'], ['home'], ['location'], ['usa'], ['whenever'], ['come'], ['u'], ['plant'], ['connect'], ['network'], ['pc'], ['run'], ['estorage'], ['productly'], ['slow'], ['programdntys'], ['slow'], ['determine'], ['network'], ['problem'], ['erp'], ['slow'], ['please'], ['use'], ['quick'], ['ticket'], ['within'], ['erp'], ['folder'], ['erp'], ['running'], ['slow'], ['one'], ['transaction'], ['impacted'], ['erp'], ['server'], ['server'], ['name'], ['located'], ['status'], ['bar'], ['bottom'], ['right'], ['screen'], ['co'], ['worker'], ['also'], ['notice'], ['slow'], ['response'], ['time'], ['erp'], ['application'], ['running'], ['slow'], ['access'], ['data'], ['file'], ['server'], ['comment'], ['issue'], ['system']] k: 8147 len: <class 'list'> Data: ['oneteam', 'sso', 'working', 'unable', 'log', 'hr', 'tool', 'oneteam', 'sso', 'portal', 'hub', 'whenever', 'click', 'oneteam', 'link', 'portal', 'taken', 'login', 'screen', 'instead', 'logged', 'directly', 'system', 'tried', 'clearing', 'browser', 'cache', 'tried', 'logging', 'using', 'ie', 'firefox'] processed_text: ['oneteam', 'sso', 'working', 'unable', 'log', 'hr', 'tool', 'oneteam', 'sso', 'portal', 'hub', 'whenever', 'click', 'oneteam', 'link', 'portal', 'taken', 'login', 'screen', 'instead', 'logged', 'directly', 'system', 'tried', 'clearing', 'browser', 'cache', 'tried', 'logging', 'using', 'ie', 'firefox'] list_processed_text: [['oneteam'], ['sso'], ['working'], ['unable'], ['log'], ['hr'], ['tool'], ['oneteam'], ['sso'], ['portal'], ['hub'], ['whenever'], ['click'], ['oneteam'], ['link'], ['portal'], ['taken'], ['login'], ['screen'], ['instead'], ['logged'], ['directly'], ['system'], ['tried'], ['clearing'], ['browser'], ['cache'], ['tried'], ['logging'], ['using'], ['ie'], ['firefox']] k: 8148 len: <class 'list'> Data: ['company', 'center', 'show', 'org', 'changed', 'password', 'changed', 'password', 'company', 'center', 'account', 'show', 'option', 'choose', 'sale', 'org', 'login', 'info', 'bfrgtonersp', 'augdec'] processed_text: ['company', 'center', 'show', 'org', 'changed', 'password', 'changed', 'password', 'company', 'center', 'account', 'show', 'option', 'choose', 'sale', 'org', 'login', 'info', 'bfrgtonersp', 'augdec'] list_processed_text: [['company'], ['center'], ['show'], ['org'], ['changed'], ['password'], ['changed'], ['password'], ['company'], ['center'], ['account'], ['show'], ['option'], ['choose'], ['sale'], ['org'], ['login'], ['info'], ['bfrgtonersp'], ['augdec']] k: 8149 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'nfsbackup', 'error', 'threshold', 'hostname', 'disk', 'free', 'nfsbackup', 'error', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'nfsbackup', 'error', 'threshold', 'hostname', 'disk', 'free', 'nfsbackup', 'error', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['nfsbackup'], ['error'], ['threshold'], ['hostname'], ['disk'], ['free'], ['nfsbackup'], ['error'], ['threshold'], ['total'], ['size'], ['gb']] k: 8150 len: <class 'list'> Data: ['install', 'pdf', 'mailer', 'kebogxzp', 'difnjlkp', 'install', 'pdf', 'mailer', 'kebogxzp', 'difnjlkp'] processed_text: ['install', 'pdf', 'mailer', 'kebogxzp', 'difnjlkp', 'install', 'pdf', 'mailer', 'kebogxzp', 'difnjlkp'] list_processed_text: [['install'], ['pdf'], ['mailer'], ['kebogxzp'], ['difnjlkp'], ['install'], ['pdf'], ['mailer'], ['kebogxzp'], ['difnjlkp']] k: 8151 len: <class 'list'> Data: ['reset', 'password', 'couskjgd', 'uzojtkmh', 'window', 'login', 'hi', 'please', 'unlock', 'sebfghkasthian', 'account', 'couskjgd', 'uzojtkmh', 'wirftejas'] processed_text: ['reset', 'password', 'couskjgd', 'uzojtkmh', 'window', 'login', 'hi', 'please', 'unlock', 'sebfghkasthian', 'account', 'couskjgd', 'uzojtkmh', 'wirftejas'] list_processed_text: [['reset'], ['password'], ['couskjgd'], ['uzojtkmh'], ['window'], ['login'], ['hi'], ['please'], ['unlock'], ['sebfghkasthian'], ['account'], ['couskjgd'], ['uzojtkmh'], ['wirftejas']] k: 8152 len: <class 'list'> Data: ['reset', 'password', 'couskjgd', 'uzojtkmh', 'using', 'password', 'management', 'tool', 'password', 'reset', 'hi', 'please', 'unlock', 'sebfghkasthian', 'wiejas', 'account'] processed_text: ['reset', 'password', 'couskjgd', 'uzojtkmh', 'using', 'password', 'management', 'tool', 'password', 'reset', 'hi', 'please', 'unlock', 'sebfghkasthian', 'wiejas', 'account'] list_processed_text: [['reset'], ['password'], ['couskjgd'], ['uzojtkmh'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['hi'], ['please'], ['unlock'], ['sebfghkasthian'], ['wiejas'], ['account']] k: 8153 len: <class 'list'> Data: ['problem', 'computer', 'ewew', 'defective', 'fp', 'sector', 'xosdfhbu', 'gtbfkisl', 'problem', 'computer', 'ewew', 'defective', 'fp', 'sector', 'xosdfhbu', 'gtbfkisl'] processed_text: ['problem', 'computer', 'ewew', 'defective', 'fp', 'sector', 'xosdfhbu', 'gtbfkisl', 'problem', 'computer', 'ewew', 'defective', 'fp', 'sector', 'xosdfhbu', 'gtbfkisl'] list_processed_text: [['problem'], ['computer'], ['ewew'], ['defective'], ['fp'], ['sector'], ['xosdfhbu'], ['gtbfkisl'], ['problem'], ['computer'], ['ewew'], ['defective'], ['fp'], ['sector'], ['xosdfhbu'], ['gtbfkisl']] k: 8154 len: <class 'list'> Data: ['requester', 'oqecus', 'encxjoawjr', 'put', 'usa', 'shop', 'sw', 'port', 'vlan', 'trying', 'get', 'machine', 'netwo', 'hi', 'suraj', 'put', 'usa', 'shop', 'sw', 'port', 'vlan', 'trying', 'get', 'machine', 'network'] processed_text: ['requester', 'oqecus', 'encxjoawjr', 'put', 'usa', 'shop', 'sw', 'port', 'vlan', 'trying', 'get', 'machine', 'netwo', 'hi', 'suraj', 'put', 'usa', 'shop', 'sw', 'port', 'vlan', 'trying', 'get', 'machine', 'network'] list_processed_text: [['requester'], ['oqecus'], ['encxjoawjr'], ['put'], ['usa'], ['shop'], ['sw'], ['port'], ['vlan'], ['trying'], ['get'], ['machine'], ['netwo'], ['hi'], ['suraj'], ['put'], ['usa'], ['shop'], ['sw'], ['port'], ['vlan'], ['trying'], ['get'], ['machine'], ['network']] k: 8155 len: <class 'list'> Data: ['unable', 'open', 'collaboration', 'platform', 'name', 'betshdy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'collaboration', 'platform', 'open', 'sits', 'spin'] processed_text: ['unable', 'open', 'collaboration', 'platform', 'name', 'betshdy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'cannot', 'get', 'collaboration', 'platform', 'open', 'sits', 'spin'] list_processed_text: [['unable'], ['open'], ['collaboration'], ['platform'], ['name'], ['betshdy'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['cannot'], ['get'], ['collaboration'], ['platform'], ['open'], ['sits'], ['spin']] k: 8156 len: <class 'list'> Data: ['vip', 'incorrect', 'language', 'automated', 'email', 'message', 'received', 'email', 'attached', 'taking', 'collaboration', 'platform', 'employee', 'longer', 'working', 'company', 'message', 'german', 'portuguese', 'think'] processed_text: ['vip', 'incorrect', 'language', 'automated', 'email', 'message', 'received', 'email', 'attached', 'taking', 'collaboration', 'platform', 'employee', 'longer', 'working', 'company', 'message', 'german', 'portuguese', 'think'] list_processed_text: [['vip'], ['incorrect'], ['language'], ['automated'], ['email'], ['message'], ['received'], ['email'], ['attached'], ['taking'], ['collaboration'], ['platform'], ['employee'], ['longer'], ['working'], ['company'], ['message'], ['german'], ['portuguese'], ['think']] k: 8157 len: <class 'list'> Data: ['email', 'delegation', 'issue', 'mailbox', 'email', 'delegation', 'issue', 'mailbox'] processed_text: ['email', 'delegation', 'issue', 'mailbox', 'email', 'delegation', 'issue', 'mailbox'] list_processed_text: [['email'], ['delegation'], ['issue'], ['mailbox'], ['email'], ['delegation'], ['issue'], ['mailbox']] k: 8158 len: <class 'list'> Data: ['urgent', 'need', 'access', 'roanoke', 'drive', 'new', 'machine', 'user', 'mii', 'implementation', 'today', 'machine', 'roanoke', 'changed', 'user', 'login', 'roaghyunokepc', 'full', 'access', 'please', 'add', 'user', 'lrrsm', 'department', 'aerp', 'production', 'umzcxfah', 'aoshpjiu', 'plant', 'controller', 'u', 'plant'] processed_text: ['urgent', 'need', 'access', 'roanoke', 'drive', 'new', 'machine', 'user', 'mii', 'implementation', 'today', 'machine', 'roanoke', 'changed', 'user', 'login', 'roaghyunokepc', 'full', 'access', 'please', 'add', 'user', 'lrrsm', 'department', 'aerp', 'production', 'umzcxfah', 'aoshpjiu', 'plant', 'controller', 'u', 'plant'] list_processed_text: [['urgent'], ['need'], ['access'], ['roanoke'], ['drive'], ['new'], ['machine'], ['user'], ['mii'], ['implementation'], ['today'], ['machine'], ['roanoke'], ['changed'], ['user'], ['login'], ['roaghyunokepc'], ['full'], ['access'], ['please'], ['add'], ['user'], ['lrrsm'], ['department'], ['aerp'], ['production'], ['umzcxfah'], ['aoshpjiu'], ['plant'], ['controller'], ['u'], ['plant']] k: 8159 len: <class 'list'> Data: ['erp', 'output', 'screen', 'issue', 'hi', 'kindly', 'look', 'snap', 'erp', 'output', 'screen', 'enable', 'show', 'detail', 'proper', 'arrangement', 'issue', 'erp', 'network', 'best'] processed_text: ['erp', 'output', 'screen', 'issue', 'hi', 'kindly', 'look', 'snap', 'erp', 'output', 'screen', 'enable', 'show', 'detail', 'proper', 'arrangement', 'issue', 'erp', 'network', 'best'] list_processed_text: [['erp'], ['output'], ['screen'], ['issue'], ['hi'], ['kindly'], ['look'], ['snap'], ['erp'], ['output'], ['screen'], ['enable'], ['show'], ['detail'], ['proper'], ['arrangement'], ['issue'], ['erp'], ['network'], ['best']] k: 8160 len: <class 'list'> Data: ['rds', 'server', 'germany', 'reachable', 'thinclients', 'hostname', 'reboot', 'serverteam', 'thinclients', 'able', 'connect', 'rds', 'server', 'hostname'] processed_text: ['rds', 'server', 'germany', 'reachable', 'thinclients', 'hostname', 'reboot', 'serverteam', 'thinclients', 'able', 'connect', 'rds', 'server', 'hostname'] list_processed_text: [['rds'], ['server'], ['germany'], ['reachable'], ['thinclients'], ['hostname'], ['reboot'], ['serverteam'], ['thinclients'], ['able'], ['connect'], ['rds'], ['server'], ['hostname']] k: 8161 len: <class 'list'> Data: ['single', 'sign', 'hr', 'tool', 'oneteam', 'working', 'single', 'sign', 'hr', 'tool', 'oneteam', 'working', 'please', 'see', 'screen'] processed_text: ['single', 'sign', 'hr', 'tool', 'oneteam', 'working', 'single', 'sign', 'hr', 'tool', 'oneteam', 'working', 'please', 'see', 'screen'] list_processed_text: [['single'], ['sign'], ['hr'], ['tool'], ['oneteam'], ['working'], ['single'], ['sign'], ['hr'], ['tool'], ['oneteam'], ['working'], ['please'], ['see'], ['screen']] k: 8162 len: <class 'list'> Data: ['erp', 'sid', 'zdsxmcwu', 'thdjzolwronization', 'issue', 'erp', 'sid', 'zdsxmcwu', 'thdjzolwronization', 'issue'] processed_text: ['erp', 'sid', 'zdsxmcwu', 'thdjzolwronization', 'issue', 'erp', 'sid', 'zdsxmcwu', 'thdjzolwronization', 'issue'] list_processed_text: [['erp'], ['sid'], ['zdsxmcwu'], ['thdjzolwronization'], ['issue'], ['erp'], ['sid'], ['zdsxmcwu'], ['thdjzolwronization'], ['issue']] k: 8163 len: <class 'list'> Data: ['ethic', 'access', 'team', 'would', 'like', 'complete', 'ethic', 'ask', 'usa', 'access'] processed_text: ['ethic', 'access', 'team', 'would', 'like', 'complete', 'ethic', 'ask', 'usa', 'access'] list_processed_text: [['ethic'], ['access'], ['team'], ['would'], ['like'], ['complete'], ['ethic'], ['ask'], ['usa'], ['access']] k: 8164 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'hello', 'altogether', 'problem', 'eu', 'tool', 'please', 'open', 'zuteillisten', 'plant', 'hartbearbeitung', 'kantenverrunden', 'sammelarbpl', 'see', 'window', 'past', 'doubleklick', 'eps', 'could', 'see', 'new', 'window', 'point', 'measurement', 'insert', 'function', 'service', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['problem', 'eu', 'tool', 'hello', 'altogether', 'problem', 'eu', 'tool', 'please', 'open', 'zuteillisten', 'plant', 'hartbearbeitung', 'kantenverrunden', 'sammelarbpl', 'see', 'window', 'past', 'doubleklick', 'eps', 'could', 'see', 'new', 'window', 'point', 'measurement', 'insert', 'function', 'service', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['problem'], ['eu'], ['tool'], ['hello'], ['altogether'], ['problem'], ['eu'], ['tool'], ['please'], ['open'], ['zuteillisten'], ['plant'], ['hartbearbeitung'], ['kantenverrunden'], ['sammelarbpl'], ['see'], ['window'], ['past'], ['doubleklick'], ['eps'], ['could'], ['see'], ['new'], ['window'], ['point'], ['measurement'], ['insert'], ['function'], ['service'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 8165 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'reset', 'request'] processed_text: ['password', 'reset', 'request', 'password', 'reset', 'request'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['reset'], ['request']] k: 8166 len: <class 'list'> Data: ['problem', 'eu', 'tool', 'hello', 'altogether', 'problem', 'eu', 'tool', 'please', 'open', 'zuteillisten', 'plant', 'hartbearbeitung', 'kantenverrunden', 'sammelarbpl', 'see', 'window', 'past', 'doubleklick', 'eps', 'could', 'see', 'new', 'window', 'point', 'measurement', 'insert', 'function', 'service', 'mit', 'freundlichen', 'gr', 'en', 'best'] processed_text: ['problem', 'eu', 'tool', 'hello', 'altogether', 'problem', 'eu', 'tool', 'please', 'open', 'zuteillisten', 'plant', 'hartbearbeitung', 'kantenverrunden', 'sammelarbpl', 'see', 'window', 'past', 'doubleklick', 'eps', 'could', 'see', 'new', 'window', 'point', 'measurement', 'insert', 'function', 'service', 'mit', 'freundlichen', 'gr', 'en', 'best'] list_processed_text: [['problem'], ['eu'], ['tool'], ['hello'], ['altogether'], ['problem'], ['eu'], ['tool'], ['please'], ['open'], ['zuteillisten'], ['plant'], ['hartbearbeitung'], ['kantenverrunden'], ['sammelarbpl'], ['see'], ['window'], ['past'], ['doubleklick'], ['eps'], ['could'], ['see'], ['new'], ['window'], ['point'], ['measurement'], ['insert'], ['function'], ['service'], ['mit'], ['freundlichen'], ['gr'], ['en'], ['best']] k: 8167 len: <class 'list'> Data: ['guest', 'wifi', 'access', 'request', 'hi', 'following', 'detail', 'guest', 'visiting', 'company', 'india', 'tomorrow', 'request', 'provigjtyswkb', 'dpvaymxrest', 'wifi', 'access', 'sl', 'guest', 'first', 'name', 'guest', 'last', 'name', 'guest', 'email', 'id', 'location', 'company', 'sponsor', 'email', 'id', 'access', 'required', 'till', 'date', 'sadiertpta', 'palffs', 'india', 'rohitdrf', 'stahyru', 'india', 'vikrhtyas', 'kurtyar', 'gurpthy', 'vikrhtyaskurtyar', 'vikrhtyaskurtyar', 'india'] processed_text: ['guest', 'wifi', 'access', 'request', 'hi', 'following', 'detail', 'guest', 'visiting', 'company', 'india', 'tomorrow', 'request', 'provigjtyswkb', 'dpvaymxrest', 'wifi', 'access', 'sl', 'guest', 'first', 'name', 'guest', 'last', 'name', 'guest', 'email', 'id', 'location', 'company', 'sponsor', 'email', 'id', 'access', 'required', 'till', 'date', 'sadiertpta', 'palffs', 'india', 'rohitdrf', 'stahyru', 'india', 'vikrhtyas', 'kurtyar', 'gurpthy', 'vikrhtyaskurtyar', 'vikrhtyaskurtyar', 'india'] list_processed_text: [['guest'], ['wifi'], ['access'], ['request'], ['hi'], ['following'], ['detail'], ['guest'], ['visiting'], ['company'], ['india'], ['tomorrow'], ['request'], ['provigjtyswkb'], ['dpvaymxrest'], ['wifi'], ['access'], ['sl'], ['guest'], ['first'], ['name'], ['guest'], ['last'], ['name'], ['guest'], ['email'], ['id'], ['location'], ['company'], ['sponsor'], ['email'], ['id'], ['access'], ['required'], ['till'], ['date'], ['sadiertpta'], ['palffs'], ['india'], ['rohitdrf'], ['stahyru'], ['india'], ['vikrhtyas'], ['kurtyar'], ['gurpthy'], ['vikrhtyaskurtyar'], ['vikrhtyaskurtyar'], ['india']] k: 8168 len: <class 'list'> Data: ['sid', 'access', 'hello', 'help', 'access', 'sid', 'seems', 'working', 'please', 'enable', 'confirm'] processed_text: ['sid', 'access', 'hello', 'help', 'access', 'sid', 'seems', 'working', 'please', 'enable', 'confirm'] list_processed_text: [['sid'], ['access'], ['hello'], ['help'], ['access'], ['sid'], ['seems'], ['working'], ['please'], ['enable'], ['confirm']] k: 8169 len: <class 'list'> Data: ['open', 'order', 'kart', 'issue', 'distributor', 'tool', 'distributor', 'tool', 'production', 'system', 'oprn', 'cart', 'displaying', 'carrier', 'information', 'please', 'check', 'fix', 'issue', 'urgently'] processed_text: ['open', 'order', 'kart', 'issue', 'distributor', 'tool', 'distributor', 'tool', 'production', 'system', 'oprn', 'cart', 'displaying', 'carrier', 'information', 'please', 'check', 'fix', 'issue', 'urgently'] list_processed_text: [['open'], ['order'], ['kart'], ['issue'], ['distributor'], ['tool'], ['distributor'], ['tool'], ['production'], ['system'], ['oprn'], ['cart'], ['displaying'], ['carrier'], ['information'], ['please'], ['check'], ['fix'], ['issue'], ['urgently']] k: 8170 len: <class 'list'> Data: ['mii', 'working', 'mii', 'usa', 'estorage', 'productly', 'slow', 'error'] processed_text: ['mii', 'working', 'mii', 'usa', 'estorage', 'productly', 'slow', 'error'] list_processed_text: [['mii'], ['working'], ['mii'], ['usa'], ['estorage'], ['productly'], ['slow'], ['error']] k: 8171 len: <class 'list'> Data: ['ethic', 'login', 'issue', 'hello', 'would', 'please', 'support', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] processed_text: ['ethic', 'login', 'issue', 'hello', 'would', 'please', 'support', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] list_processed_text: [['ethic'], ['login'], ['issue'], ['hello'], ['would'], ['please'], ['support'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp']] k: 8172 len: <class 'list'> Data: ['boot', 'boot'] processed_text: ['boot', 'boot'] list_processed_text: [['boot'], ['boot']] k: 8173 len: <class 'list'> Data: ['ticketing', 'tool', 'query', 'summary', 'ticketing', 'tool', 'change', 'changed', 'status', 'closed', 'cancelled', 'instead', 'closed', 'complete', 'revert', 'change'] processed_text: ['ticketing', 'tool', 'query', 'summary', 'ticketing', 'tool', 'change', 'changed', 'status', 'closed', 'cancelled', 'instead', 'closed', 'complete', 'revert', 'change'] list_processed_text: [['ticketing'], ['tool'], ['query'], ['summary'], ['ticketing'], ['tool'], ['change'], ['changed'], ['status'], ['closed'], ['cancelled'], ['instead'], ['closed'], ['complete'], ['revert'], ['change']] k: 8174 len: <class 'list'> Data: ['dob', 'report', 'option', 'subscribe', 'reprot', 'receive', 'daily', 'mail', 'dob', 'report', 'site', 'certified', 'content', 'view', 'dailyorderbillingreport', 'day', 'iid', 'need', 'subscribe', 'option', 'cannot', 'see', 'screen'] processed_text: ['dob', 'report', 'option', 'subscribe', 'reprot', 'receive', 'daily', 'mail', 'dob', 'report', 'site', 'certified', 'content', 'view', 'dailyorderbillingreport', 'day', 'iid', 'need', 'subscribe', 'option', 'cannot', 'see', 'screen'] list_processed_text: [['dob'], ['report'], ['option'], ['subscribe'], ['reprot'], ['receive'], ['daily'], ['mail'], ['dob'], ['report'], ['site'], ['certified'], ['content'], ['view'], ['dailyorderbillingreport'], ['day'], ['iid'], ['need'], ['subscribe'], ['option'], ['cannot'], ['see'], ['screen']] k: 8175 len: <class 'list'> Data: ['attendance', 'tool', 'password', 'rest', 'please', 'reset', 'attendance', 'tool', 'password', 'forgot', 'username', 'gurhyqsath', 'india', 'met'] processed_text: ['attendance', 'tool', 'password', 'rest', 'please', 'reset', 'attendance', 'tool', 'password', 'forgot', 'username', 'gurhyqsath', 'india', 'met'] list_processed_text: [['attendance'], ['tool'], ['password'], ['rest'], ['please'], ['reset'], ['attendance'], ['tool'], ['password'], ['forgot'], ['username'], ['gurhyqsath'], ['india'], ['met']] k: 8176 len: <class 'list'> Data: ['reporting', 'tool', 'application', 'sending', 'multiple', 'email', 'via', 'smtp', 'hqap', 'company', 'com', 'hi', 'ramdnty', 'discussed', 'send', 'email', 'also', 'called', 'subscription', 'reporting', 'tool', 'application', 'daily', 'basis', 'smtp', 'server', 'remained', 'last', 'year', 'since', 'user', 'receiving', 'duplicate', 'email', 'example', 'see', 'attached', 'duplicate', 'email', 'receiving', 'daily', 'one', 'thing', 'note', 'reporting', 'tool', 'maintains', 'count', 'email', 'sent', 'per', 'day', 'count', 'doubled', 'indicating', 'smtp', 'server', 'seems', 'processing', 'twice', 'instead', 'reporting', 'tool', 'sending', 'multiple', 'time', 'smtp', 'server', 'hqap', 'company', 'com', 'issue', 'escalate', 'higher', 'management', 'greatly', 'appreciate', 'could', 'look', 'earliest', 'let', 'know', 'need', 'detail'] processed_text: ['reporting', 'tool', 'application', 'sending', 'multiple', 'email', 'via', 'smtp', 'hqap', 'company', 'com', 'hi', 'ramdnty', 'discussed', 'send', 'email', 'also', 'called', 'subscription', 'reporting', 'tool', 'application', 'daily', 'basis', 'smtp', 'server', 'remained', 'last', 'year', 'since', 'user', 'receiving', 'duplicate', 'email', 'example', 'see', 'attached', 'duplicate', 'email', 'receiving', 'daily', 'one', 'thing', 'note', 'reporting', 'tool', 'maintains', 'count', 'email', 'sent', 'per', 'day', 'count', 'doubled', 'indicating', 'smtp', 'server', 'seems', 'processing', 'twice', 'instead', 'reporting', 'tool', 'sending', 'multiple', 'time', 'smtp', 'server', 'hqap', 'company', 'com', 'issue', 'escalate', 'higher', 'management', 'greatly', 'appreciate', 'could', 'look', 'earliest', 'let', 'know', 'need', 'detail'] list_processed_text: [['reporting'], ['tool'], ['application'], ['sending'], ['multiple'], ['email'], ['via'], ['smtp'], ['hqap'], ['company'], ['com'], ['hi'], ['ramdnty'], ['discussed'], ['send'], ['email'], ['also'], ['called'], ['subscription'], ['reporting'], ['tool'], ['application'], ['daily'], ['basis'], ['smtp'], ['server'], ['remained'], ['last'], ['year'], ['since'], ['user'], ['receiving'], ['duplicate'], ['email'], ['example'], ['see'], ['attached'], ['duplicate'], ['email'], ['receiving'], ['daily'], ['one'], ['thing'], ['note'], ['reporting'], ['tool'], ['maintains'], ['count'], ['email'], ['sent'], ['per'], ['day'], ['count'], ['doubled'], ['indicating'], ['smtp'], ['server'], ['seems'], ['processing'], ['twice'], ['instead'], ['reporting'], ['tool'], ['sending'], ['multiple'], ['time'], ['smtp'], ['server'], ['hqap'], ['company'], ['com'], ['issue'], ['escalate'], ['higher'], ['management'], ['greatly'], ['appreciate'], ['could'], ['look'], ['earliest'], ['let'], ['know'], ['need'], ['detail']] k: 8177 len: <class 'list'> Data: ['vvdortddp', 'hi', 'mentioned', 'employee', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'emp', 'name', 'useid', 'yaxmwdth', 'xsfgitmq', 'vvdortddp', 'fyi'] processed_text: ['vvdortddp', 'hi', 'mentioned', 'employee', 'unable', 'login', 'es', 'portal', 'please', 'reset', 'password', 'emp', 'name', 'useid', 'yaxmwdth', 'xsfgitmq', 'vvdortddp', 'fyi'] list_processed_text: [['vvdortddp'], ['hi'], ['mentioned'], ['employee'], ['unable'], ['login'], ['es'], ['portal'], ['please'], ['reset'], ['password'], ['emp'], ['name'], ['useid'], ['yaxmwdth'], ['xsfgitmq'], ['vvdortddp'], ['fyi']] k: 8178 len: <class 'list'> Data: ['audio', 'working', 'audio', 'working', 'computer', 'model', 'dell', 'precision', 'name', 'awyl'] processed_text: ['audio', 'working', 'audio', 'working', 'computer', 'model', 'dell', 'precision', 'name', 'awyl'] list_processed_text: [['audio'], ['working'], ['audio'], ['working'], ['computer'], ['model'], ['dell'], ['precision'], ['name'], ['awyl']] k: 8179 len: <class 'list'> Data: ['vendor', 'drawing', 'access', 'working', 'vendor', 'access', 'data', 'anymore', 'vendor', 'access', 'working', 'external', 'website', 'vendor', 'access', 'drawing', 'model', 'situation', 'get', 'critical', 'cause', 'delay', 'customer', 'order', 'vendor', 'affected', 'error', 'message', 'unable', 'read', 'document', 'information', 'erp', 'see', 'attachment'] processed_text: ['vendor', 'drawing', 'access', 'working', 'vendor', 'access', 'data', 'anymore', 'vendor', 'access', 'working', 'external', 'website', 'vendor', 'access', 'drawing', 'model', 'situation', 'get', 'critical', 'cause', 'delay', 'customer', 'order', 'vendor', 'affected', 'error', 'message', 'unable', 'read', 'document', 'information', 'erp', 'see', 'attachment'] list_processed_text: [['vendor'], ['drawing'], ['access'], ['working'], ['vendor'], ['access'], ['data'], ['anymore'], ['vendor'], ['access'], ['working'], ['external'], ['website'], ['vendor'], ['access'], ['drawing'], ['model'], ['situation'], ['get'], ['critical'], ['cause'], ['delay'], ['customer'], ['order'], ['vendor'], ['affected'], ['error'], ['message'], ['unable'], ['read'], ['document'], ['information'], ['erp'], ['see'], ['attachment']] k: 8180 len: <class 'list'> Data: ['investment', 'request', 'mnakehrf', 'mvunqihf', 'new', 'laptop', 'request', 'mnakehrf', 'mvunqihf', 'team', 'attached', 'investment', 'application', 'r', 'new', 'computer', 'laptop', 'r', 'mnakehrf', 'mvunqihf', 'sincerely'] processed_text: ['investment', 'request', 'mnakehrf', 'mvunqihf', 'new', 'laptop', 'request', 'mnakehrf', 'mvunqihf', 'team', 'attached', 'investment', 'application', 'r', 'new', 'computer', 'laptop', 'r', 'mnakehrf', 'mvunqihf', 'sincerely'] list_processed_text: [['investment'], ['request'], ['mnakehrf'], ['mvunqihf'], ['new'], ['laptop'], ['request'], ['mnakehrf'], ['mvunqihf'], ['team'], ['attached'], ['investment'], ['application'], ['r'], ['new'], ['computer'], ['laptop'], ['r'], ['mnakehrf'], ['mvunqihf'], ['sincerely']] k: 8181 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8182 len: <class 'list'> Data: ['stepfhryhan', 'need', 'access', 'collaboration', 'platform', 'link', 'stepfhryhan', 'need', 'access', 'collaboration', 'platform', 'link', 'vacation', 'planning', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'vacation', 'planning', 'pl', 'ne', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'pl', 'ene', 'general', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'general', 'reporting', 'area', 'north', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'berirtchtwesen', 'area', 'north', 'crm', 'team', 'folder', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'crm', 'team', 'folder', 'teamcall', 'teammeeting', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'teamcall', 'team', 'meeting', 'top', 'project', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'top', 'project', 'hello', 'sabrthy', 'far', 'topic', 'yet', 'received', 'ticket', 'kind', 'regard', 'nizholae', 'bjnqikym', 'application', 'technician', 'ap', 'plication', 'engineer', 'company', 'deutschland', 'gmbh', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'dealing', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'notification', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'nizholae', 'bjnqikym', 'sent', 'thursday', 'july', 'aorthyme', 'rnsuipbk', 'regarding', 'aw', 'access', 'netweaver', 'thanks', 'sabrthy', 'best', 'regard', 'nizholae', 'bjnqikym', 'application', 'engineer', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'applicable', 'right', 'disclosure', 'excludes', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.if', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'mail', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'aorthyme', 'rnsuipbk', 'sent', 'thursday', 'july', 'nizholae', 'bjnqikym', 'subject', 'access', 'netweaver', 'hello', 'stepfhryhan', 'take', 'little', 'time', 'collect', 'ticket', 'warm'] processed_text: ['stepfhryhan', 'need', 'access', 'collaboration', 'platform', 'link', 'stepfhryhan', 'need', 'access', 'collaboration', 'platform', 'link', 'vacation', 'planning', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'vacation', 'planning', 'pl', 'ne', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'pl', 'ene', 'general', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'general', 'reporting', 'area', 'north', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'berirtchtwesen', 'area', 'north', 'crm', 'team', 'folder', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'crm', 'team', 'folder', 'teamcall', 'teammeeting', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'teamcall', 'team', 'meeting', 'top', 'project', 'file', 'efdl', 'user', 'linnes', 'collaboration', 'platform', 'company', 'inc', 'fy', 'team', 'folder', 'linnemann', 'top', 'project', 'hello', 'sabrthy', 'far', 'topic', 'yet', 'received', 'ticket', 'kind', 'regard', 'nizholae', 'bjnqikym', 'application', 'technician', 'ap', 'plication', 'engineer', 'company', 'deutschland', 'gmbh', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'excluded', 'disclosure', 'applicable', 'law,', 'distribution', 'reproduction', 'communication', 'people', 'dealing', 'intended', 'recipient', 'strictly', 'prohibited', 'received', 'notification', 'due', 'mistake', 'please', 'notify', 'sender', 'send', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'nizholae', 'bjnqikym', 'sent', 'thursday', 'july', 'aorthyme', 'rnsuipbk', 'regarding', 'aw', 'access', 'netweaver', 'thanks', 'sabrthy', 'best', 'regard', 'nizholae', 'bjnqikym', 'application', 'engineer', 'communication', 'intended', 'solely', 'use', 'addressee', 'may', 'contain', 'information', 'confidential', 'applicable', 'right', 'disclosure', 'excludes', 'distribution', 'reproduction', 'communication', 'person', 'intended', 'recipient', 'strictly', 'prohibited.if', 'received', 'communication', 'mistake,', 'please', 'notify', 'sender', 'mail', 'message', 'select', 'following', 'link', 'view', 'disclaimer', 'alternate', 'language', 'aorthyme', 'rnsuipbk', 'sent', 'thursday', 'july', 'nizholae', 'bjnqikym', 'subject', 'access', 'netweaver', 'hello', 'stepfhryhan', 'take', 'little', 'time', 'collect', 'ticket', 'warm'] list_processed_text: [['stepfhryhan'], ['need'], ['access'], ['collaboration'], ['platform'], ['link'], ['stepfhryhan'], ['need'], ['access'], ['collaboration'], ['platform'], ['link'], ['vacation'], ['planning'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['vacation'], ['planning'], ['pl'], ['ne'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['pl'], ['ene'], ['general'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['general'], ['reporting'], ['area'], ['north'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['berirtchtwesen'], ['area'], ['north'], ['crm'], ['team'], ['folder'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['crm'], ['team'], ['folder'], ['teamcall'], ['teammeeting'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['teamcall'], ['team'], ['meeting'], ['top'], ['project'], ['file'], ['efdl'], ['user'], ['linnes'], ['collaboration'], ['platform'], ['company'], ['inc'], ['fy'], ['team'], ['folder'], ['linnemann'], ['top'], ['project'], ['hello'], ['sabrthy'], ['far'], ['topic'], ['yet'], ['received'], ['ticket'], ['kind'], ['regard'], ['nizholae'], ['bjnqikym'], ['application'], ['technician'], ['ap'], ['plication'], ['engineer'], ['company'], ['deutschland'], ['gmbh'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['excluded'], ['disclosure'], ['applicable'], ['law,'], ['distribution'], ['reproduction'], ['communication'], ['people'], ['dealing'], ['intended'], ['recipient'], ['strictly'], ['prohibited'], ['received'], ['notification'], ['due'], ['mistake'], ['please'], ['notify'], ['sender'], ['send'], ['message'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language'], ['nizholae'], ['bjnqikym'], ['sent'], ['thursday'], ['july'], ['aorthyme'], ['rnsuipbk'], ['regarding'], ['aw'], ['access'], ['netweaver'], ['thanks'], ['sabrthy'], ['best'], ['regard'], ['nizholae'], ['bjnqikym'], ['application'], ['engineer'], ['communication'], ['intended'], ['solely'], ['use'], ['addressee'], ['may'], ['contain'], ['information'], ['confidential'], ['applicable'], ['right'], ['disclosure'], ['excludes'], ['distribution'], ['reproduction'], ['communication'], ['person'], ['intended'], ['recipient'], ['strictly'], ['prohibited.if'], ['received'], ['communication'], ['mistake,'], ['please'], ['notify'], ['sender'], ['mail'], ['message'], ['select'], ['following'], ['link'], ['view'], ['disclaimer'], ['alternate'], ['language'], ['aorthyme'], ['rnsuipbk'], ['sent'], ['thursday'], ['july'], ['nizholae'], ['bjnqikym'], ['subject'], ['access'], ['netweaver'], ['hello'], ['stepfhryhan'], ['take'], ['little'], ['time'], ['collect'], ['ticket'], ['warm']] k: 8183 len: <class 'list'> Data: ['unable', 'select', 'course', 'select', 'language', 'error', 'unable', 'go', 'unable', 'select', 'course', 'select', 'language', 'error', 'unable', 'go'] processed_text: ['unable', 'select', 'course', 'select', 'language', 'error', 'unable', 'go', 'unable', 'select', 'course', 'select', 'language', 'error', 'unable', 'go'] list_processed_text: [['unable'], ['select'], ['course'], ['select'], ['language'], ['error'], ['unable'], ['go'], ['unable'], ['select'], ['course'], ['select'], ['language'], ['error'], ['unable'], ['go']] k: 8184 len: <class 'list'> Data: ['data', 'backup', 'und', 'restore', 'ahlqgjwx', 'wbsfavhg', 'data', 'backup', 'und', 'restore', 'ahlqgjwx', 'wbsfavhg'] processed_text: ['data', 'backup', 'und', 'restore', 'ahlqgjwx', 'wbsfavhg', 'data', 'backup', 'und', 'restore', 'ahlqgjwx', 'wbsfavhg'] list_processed_text: [['data'], ['backup'], ['und'], ['restore'], ['ahlqgjwx'], ['wbsfavhg'], ['data'], ['backup'], ['und'], ['restore'], ['ahlqgjwx'], ['wbsfavhg']] k: 8185 len: <class 'list'> Data: ['setup', 'new', 'w', 'aqstdryv', 'flbnyqzc', 'setup', 'new', 'w', 'aqstdryv', 'flbnyqzc'] processed_text: ['setup', 'new', 'w', 'aqstdryv', 'flbnyqzc', 'setup', 'new', 'w', 'aqstdryv', 'flbnyqzc'] list_processed_text: [['setup'], ['new'], ['w'], ['aqstdryv'], ['flbnyqzc'], ['setup'], ['new'], ['w'], ['aqstdryv'], ['flbnyqzc']] k: 8186 len: <class 'list'> Data: ['cannot', 'log', 'telephony', 'software', 'hello', 'cannot', 'log', 'telephony', 'software', 'see', 'error', 'message', 'attached', 'meantime', 'tried', 'many', 'time', 'password', 'surely', 'locked'] processed_text: ['cannot', 'log', 'telephony', 'software', 'hello', 'cannot', 'log', 'telephony', 'software', 'see', 'error', 'message', 'attached', 'meantime', 'tried', 'many', 'time', 'password', 'surely', 'locked'] list_processed_text: [['cannot'], ['log'], ['telephony'], ['software'], ['hello'], ['cannot'], ['log'], ['telephony'], ['software'], ['see'], ['error'], ['message'], ['attached'], ['meantime'], ['tried'], ['many'], ['time'], ['password'], ['surely'], ['locked']] k: 8187 len: <class 'list'> Data: ['order', 'rxoynvgi', 'ntgdsehl', 'pm', 'nwfodmhc', 'exurcwkm', 'johthryugftyson', 'hu', 'kaguhxwo', 'uoyipxqg', 'kds', 'sw', 'service', 'rad', 'fw', 'order', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'create', 'dn', 'po', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email', 'johthryugftyson', 'hu', 'pm', 'kds', 'mmaster', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'kaguhxwo', 'uoyipxqg', 'order', 'din', 'please', 'create', 'ticket', 'help', 'juhu', 'jojfufn', 'ap', 'logistics', 'manager', 'kds', 'mmaster', 'pm', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'johthryugftyson', 'hu', 'kaguhxwo', 'uoyipxqg', 'order', 'hi', 'zadnryuinudin', 'rqfhiong', 'zkwfqagb', 'team', 'create', 'sto', 'authorized', 'create', 'dn', 'plant', 'warehouse', 'person', 'create', 'dn', 'sto'] processed_text: ['order', 'rxoynvgi', 'ntgdsehl', 'pm', 'nwfodmhc', 'exurcwkm', 'johthryugftyson', 'hu', 'kaguhxwo', 'uoyipxqg', 'kds', 'sw', 'service', 'rad', 'fw', 'order', 'hi', 'team', 'kindly', 'please', 'assist', 'unable', 'create', 'dn', 'po', 'hydstheud', 'mddwwyleh', 'operation', 'supervisor', 'company', 'distribution', 'service', 'asia', 'pte', 'ltd', 'asia', 'regional', 'distribution', 'centre', 'email', 'johthryugftyson', 'hu', 'pm', 'kds', 'mmaster', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'kaguhxwo', 'uoyipxqg', 'order', 'din', 'please', 'create', 'ticket', 'help', 'juhu', 'jojfufn', 'ap', 'logistics', 'manager', 'kds', 'mmaster', 'pm', 'rxoynvgi', 'ntgdsehl', 'kds', 'sw', 'service', 'johthryugftyson', 'hu', 'kaguhxwo', 'uoyipxqg', 'order', 'hi', 'zadnryuinudin', 'rqfhiong', 'zkwfqagb', 'team', 'create', 'sto', 'authorized', 'create', 'dn', 'plant', 'warehouse', 'person', 'create', 'dn', 'sto'] list_processed_text: [['order'], ['rxoynvgi'], ['ntgdsehl'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['johthryugftyson'], ['hu'], ['kaguhxwo'], ['uoyipxqg'], ['kds'], ['sw'], ['service'], ['rad'], ['fw'], ['order'], ['hi'], ['team'], ['kindly'], ['please'], ['assist'], ['unable'], ['create'], ['dn'], ['po'], ['hydstheud'], ['mddwwyleh'], ['operation'], ['supervisor'], ['company'], ['distribution'], ['service'], ['asia'], ['pte'], ['ltd'], ['asia'], ['regional'], ['distribution'], ['centre'], ['email'], ['johthryugftyson'], ['hu'], ['pm'], ['kds'], ['mmaster'], ['rxoynvgi'], ['ntgdsehl'], ['kds'], ['sw'], ['service'], ['kaguhxwo'], ['uoyipxqg'], ['order'], ['din'], ['please'], ['create'], ['ticket'], ['help'], ['juhu'], ['jojfufn'], ['ap'], ['logistics'], ['manager'], ['kds'], ['mmaster'], ['pm'], ['rxoynvgi'], ['ntgdsehl'], ['kds'], ['sw'], ['service'], ['johthryugftyson'], ['hu'], ['kaguhxwo'], ['uoyipxqg'], ['order'], ['hi'], ['zadnryuinudin'], ['rqfhiong'], ['zkwfqagb'], ['team'], ['create'], ['sto'], ['authorized'], ['create'], ['dn'], ['plant'], ['warehouse'], ['person'], ['create'], ['dn'], ['sto']] k: 8188 len: <class 'list'> Data: ['problem', 'printer', 'uacyltoe', 'hxgayczeraum', 'reinhard', 'kr', 'ger', 'problem', 'printer', 'uacyltoe', 'hxgayczeraum', 'reinhard', 'kr', 'ger'] processed_text: ['problem', 'printer', 'uacyltoe', 'hxgayczeraum', 'reinhard', 'kr', 'ger', 'problem', 'printer', 'uacyltoe', 'hxgayczeraum', 'reinhard', 'kr', 'ger'] list_processed_text: [['problem'], ['printer'], ['uacyltoe'], ['hxgayczeraum'], ['reinhard'], ['kr'], ['ger'], ['problem'], ['printer'], ['uacyltoe'], ['hxgayczeraum'], ['reinhard'], ['kr'], ['ger']] k: 8189 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8190 len: <class 'list'> Data: ['outlook', 'taking', 'password', 'outlook', 'taking', 'password'] processed_text: ['outlook', 'taking', 'password', 'outlook', 'taking', 'password'] list_processed_text: [['outlook'], ['taking'], ['password'], ['outlook'], ['taking'], ['password']] k: 8191 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8192 len: <class 'list'> Data: ['telephone', 'rer', 'apparat', 'fertigung', 'halle', 'defect', 'einlasten', 'bei', 'plant', 'germany'] processed_text: ['telephone', 'rer', 'apparat', 'fertigung', 'halle', 'defect', 'einlasten', 'bei', 'plant', 'germany'] list_processed_text: [['telephone'], ['rer'], ['apparat'], ['fertigung'], ['halle'], ['defect'], ['einlasten'], ['bei'], ['plant'], ['germany']] k: 8193 len: <class 'list'> Data: ['fw', 'ethical', 'moment', 'office', 'ethic', 'compliance', 'link', 'opening', 'hi', 'link', 'opening', 'mail', 'pm', 'qfwijzbd', 'gmkiatjs', 'ethical', 'moment', 'office', 'ethic', 'compliance', 'dear', 'team', 'office', 'ethic', 'compliance', 'provides', 'company', 'employee', 'periodic', 'ethical', 'moment', 'remind', 'responsibility', 'practicing', 'good', 'ethical', 'habit', 'click', 'access', 'current', 'ethical', 'moment', 'sethdyr', 'hdtyr', 'office', 'ethic', 'compliance'] processed_text: ['fw', 'ethical', 'moment', 'office', 'ethic', 'compliance', 'link', 'opening', 'hi', 'link', 'opening', 'mail', 'pm', 'qfwijzbd', 'gmkiatjs', 'ethical', 'moment', 'office', 'ethic', 'compliance', 'dear', 'team', 'office', 'ethic', 'compliance', 'provides', 'company', 'employee', 'periodic', 'ethical', 'moment', 'remind', 'responsibility', 'practicing', 'good', 'ethical', 'habit', 'click', 'access', 'current', 'ethical', 'moment', 'sethdyr', 'hdtyr', 'office', 'ethic', 'compliance'] list_processed_text: [['fw'], ['ethical'], ['moment'], ['office'], ['ethic'], ['compliance'], ['link'], ['opening'], ['hi'], ['link'], ['opening'], ['mail'], ['pm'], ['qfwijzbd'], ['gmkiatjs'], ['ethical'], ['moment'], ['office'], ['ethic'], ['compliance'], ['dear'], ['team'], ['office'], ['ethic'], ['compliance'], ['provides'], ['company'], ['employee'], ['periodic'], ['ethical'], ['moment'], ['remind'], ['responsibility'], ['practicing'], ['good'], ['ethical'], ['habit'], ['click'], ['access'], ['current'], ['ethical'], ['moment'], ['sethdyr'], ['hdtyr'], ['office'], ['ethic'], ['compliance']] k: 8194 len: <class 'list'> Data: ['acces', 'internet', 'webside', 'allways', 'offline', 'fyi', 'access', 'internet', 'webside', 'allways', 'offline', 'till', 'weekend', 'located', 'rth', 'germany'] processed_text: ['acces', 'internet', 'webside', 'allways', 'offline', 'fyi', 'access', 'internet', 'webside', 'allways', 'offline', 'till', 'weekend', 'located', 'rth', 'germany'] list_processed_text: [['acces'], ['internet'], ['webside'], ['allways'], ['offline'], ['fyi'], ['access'], ['internet'], ['webside'], ['allways'], ['offline'], ['till'], ['weekend'], ['located'], ['rth'], ['germany']] k: 8195 len: <class 'list'> Data: ['link', 'ethic', 'ethical', 'moment', 'work', 'able', 'open', 'ethical', 'moment', 'link', 'either', 'mail', 'collaboration', 'platform', 'site', 'tried', 'german', 'english', 'language', 'button'] processed_text: ['link', 'ethic', 'ethical', 'moment', 'work', 'able', 'open', 'ethical', 'moment', 'link', 'either', 'mail', 'collaboration', 'platform', 'site', 'tried', 'german', 'english', 'language', 'button'] list_processed_text: [['link'], ['ethic'], ['ethical'], ['moment'], ['work'], ['able'], ['open'], ['ethical'], ['moment'], ['link'], ['either'], ['mail'], ['collaboration'], ['platform'], ['site'], ['tried'], ['german'], ['english'], ['language'], ['button']] k: 8196 len: <class 'list'> Data: ['upgrade', 'm', 'office', 'bit', 'office', 'bit', 'using', 'software', 'cutview', 'need', 'install', 'upgrade', 'bit', 'office', 'system', 'pls', 'untinstall', 'current', 'office', 'bit', 'version', 'install', 'bit', 'version'] processed_text: ['upgrade', 'm', 'office', 'bit', 'office', 'bit', 'using', 'software', 'cutview', 'need', 'install', 'upgrade', 'bit', 'office', 'system', 'pls', 'untinstall', 'current', 'office', 'bit', 'version', 'install', 'bit', 'version'] list_processed_text: [['upgrade'], ['m'], ['office'], ['bit'], ['office'], ['bit'], ['using'], ['software'], ['cutview'], ['need'], ['install'], ['upgrade'], ['bit'], ['office'], ['system'], ['pls'], ['untinstall'], ['current'], ['office'], ['bit'], ['version'], ['install'], ['bit'], ['version']] k: 8197 len: <class 'list'> Data: ['computer', 'network', 'connection', 'lost', 'computer', 'network', 'connection', 'lost'] processed_text: ['computer', 'network', 'connection', 'lost', 'computer', 'network', 'connection', 'lost'] list_processed_text: [['computer'], ['network'], ['connection'], ['lost'], ['computer'], ['network'], ['connection'], ['lost']] k: 8198 len: <class 'list'> Data: ['window', 'account', 'locked', 'reset', 'password', 'window', 'account', 'locked', 'reset', 'password'] processed_text: ['window', 'account', 'locked', 'reset', 'password', 'window', 'account', 'locked', 'reset', 'password'] list_processed_text: [['window'], ['account'], ['locked'], ['reset'], ['password'], ['window'], ['account'], ['locked'], ['reset'], ['password']] k: 8199 len: <class 'list'> Data: ['system', 'monitor', 'resolution', 'problem', 'able', 'set', 'resolution', 'x'] processed_text: ['system', 'monitor', 'resolution', 'problem', 'able', 'set', 'resolution', 'x'] list_processed_text: [['system'], ['monitor'], ['resolution'], ['problem'], ['able'], ['set'], ['resolution'], ['x']] k: 8200 len: <class 'list'> Data: ['window', 'need', 'repair', 'window', 'need', 'repair'] processed_text: ['window', 'need', 'repair', 'window', 'need', 'repair'] list_processed_text: [['window'], ['need'], ['repair'], ['window'], ['need'], ['repair']] k: 8201 len: <class 'list'> Data: ['unable', 'open', 'net', 'weaver', 'unable', 'open', 'net', 'weaver'] processed_text: ['unable', 'open', 'net', 'weaver', 'unable', 'open', 'net', 'weaver'] list_processed_text: [['unable'], ['open'], ['net'], ['weaver'], ['unable'], ['open'], ['net'], ['weaver']] k: 8202 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8203 len: <class 'list'> Data: ['calendar', 'iphone', 'showing', 'meeting', 'name', 'srinfhyath', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'calendar', 'iphone', 'showing', 'meeting'] processed_text: ['calendar', 'iphone', 'showing', 'meeting', 'name', 'srinfhyath', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'hi', 'calendar', 'iphone', 'showing', 'meeting'] list_processed_text: [['calendar'], ['iphone'], ['showing'], ['meeting'], ['name'], ['srinfhyath'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['hi'], ['calendar'], ['iphone'], ['showing'], ['meeting']] k: 8204 len: <class 'list'> Data: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] processed_text: ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'] list_processed_text: [['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked']] k: 8205 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8206 len: <class 'list'> Data: ['reset', 'password', 'sid', 'system', 'password', 'locked', 'due', 'many', 'failed', 'attempt', 'please', 'unlock', 'user', 'id', 'gortyhlia', 'password', 'pls', 'find', 'attached', 'error', 'screenshot', 'reference'] processed_text: ['reset', 'password', 'sid', 'system', 'password', 'locked', 'due', 'many', 'failed', 'attempt', 'please', 'unlock', 'user', 'id', 'gortyhlia', 'password', 'pls', 'find', 'attached', 'error', 'screenshot', 'reference'] list_processed_text: [['reset'], ['password'], ['sid'], ['system'], ['password'], ['locked'], ['due'], ['many'], ['failed'], ['attempt'], ['please'], ['unlock'], ['user'], ['id'], ['gortyhlia'], ['password'], ['pls'], ['find'], ['attached'], ['error'], ['screenshot'], ['reference']] k: 8207 len: <class 'list'> Data: ['bobj', 'repository', 'issue', 'pls', 'see', 'attachment', 'detail', 'bobj', 'repository', 'issue', 'pls', 'see', 'attachment', 'detail'] processed_text: ['bobj', 'repository', 'issue', 'pls', 'see', 'attachment', 'detail', 'bobj', 'repository', 'issue', 'pls', 'see', 'attachment', 'detail'] list_processed_text: [['bobj'], ['repository'], ['issue'], ['pls'], ['see'], ['attachment'], ['detail'], ['bobj'], ['repository'], ['issue'], ['pls'], ['see'], ['attachment'], ['detail']] k: 8208 len: <class 'list'> Data: ['received', 'help', 'crm', 'stuck', 'pls', 'help', 'solve'] processed_text: ['received', 'help', 'crm', 'stuck', 'pls', 'help', 'solve'] list_processed_text: [['received'], ['help'], ['crm'], ['stuck'], ['pls'], ['help'], ['solve']] k: 8209 len: <class 'list'> Data: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] processed_text: ['account', 'locked', 'erp', 'sid', 'account', 'locked', 'erp', 'sid'] list_processed_text: [['account'], ['locked'], ['erp'], ['sid'], ['account'], ['locked'], ['erp'], ['sid']] k: 8210 len: <class 'list'> Data: ['erp', 'sid', 'account', 'lokced', 'erp', 'sid', 'account', 'lokced'] processed_text: ['erp', 'sid', 'account', 'lokced', 'erp', 'sid', 'account', 'lokced'] list_processed_text: [['erp'], ['sid'], ['account'], ['lokced'], ['erp'], ['sid'], ['account'], ['lokced']] k: 8211 len: <class 'list'> Data: ['able', 'login', 'ethic', 'able', 'login', 'ethic'] processed_text: ['able', 'login', 'ethic', 'able', 'login', 'ethic'] list_processed_text: [['able'], ['login'], ['ethic'], ['able'], ['login'], ['ethic']] k: 8212 len: <class 'list'> Data: ['laptop', 'heating', 'left', 'side', 'usb', 'audio', 'output', 'plug', 'also', 'working', 'system', 'slow', 'laptop', 'heating', 'left', 'side', 'usb', 'audio', 'output', 'plug', 'also', 'working', 'system', 'slow'] processed_text: ['laptop', 'heating', 'left', 'side', 'usb', 'audio', 'output', 'plug', 'also', 'working', 'system', 'slow', 'laptop', 'heating', 'left', 'side', 'usb', 'audio', 'output', 'plug', 'also', 'working', 'system', 'slow'] list_processed_text: [['laptop'], ['heating'], ['left'], ['side'], ['usb'], ['audio'], ['output'], ['plug'], ['also'], ['working'], ['system'], ['slow'], ['laptop'], ['heating'], ['left'], ['side'], ['usb'], ['audio'], ['output'], ['plug'], ['also'], ['working'], ['system'], ['slow']] k: 8213 len: <class 'list'> Data: ['terminate', 'action', 'kgarnzdo', 'vkrqojyt', 'completed', 'noscwdpm', 'akiowsmp', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'kgarnzdo', 'vkrqojyt', 'completed', 'hello', 'termination', 'kgarnzdo', 'vkrqojyt', 'effective', 'approved', 'click', 'link', 'view'] processed_text: ['terminate', 'action', 'kgarnzdo', 'vkrqojyt', 'completed', 'noscwdpm', 'akiowsmp', 'mail', 'nwfodmhc', 'exurcwkm', 'rad', 'terminate', 'action', 'kgarnzdo', 'vkrqojyt', 'completed', 'hello', 'termination', 'kgarnzdo', 'vkrqojyt', 'effective', 'approved', 'click', 'link', 'view'] list_processed_text: [['terminate'], ['action'], ['kgarnzdo'], ['vkrqojyt'], ['completed'], ['noscwdpm'], ['akiowsmp'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['terminate'], ['action'], ['kgarnzdo'], ['vkrqojyt'], ['completed'], ['hello'], ['termination'], ['kgarnzdo'], ['vkrqojyt'], ['effective'], ['approved'], ['click'], ['link'], ['view']] k: 8214 len: <class 'list'> Data: ['login', 'skype', 'indicate', 'certificate', 'expired', 'skype', 'business', 'software', 'used'] processed_text: ['login', 'skype', 'indicate', 'certificate', 'expired', 'skype', 'business', 'software', 'used'] list_processed_text: [['login'], ['skype'], ['indicate'], ['certificate'], ['expired'], ['skype'], ['business'], ['software'], ['used']] k: 8215 len: <class 'list'> Data: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] processed_text: ['unable', 'login', 'engineering', 'tool', 'unable', 'login', 'engineering', 'tool'] list_processed_text: [['unable'], ['login'], ['engineering'], ['tool'], ['unable'], ['login'], ['engineering'], ['tool']] k: 8216 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 8217 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 8218 len: <class 'list'> Data: ['window', 'log', 'password', 'reset', 'nkiopevt', 'gufwhdky', 'mail', 'nwfodmhc', 'exurcwkm', 'wgpimkle', 'kijhcwur', 'eh', 'rad', 'window', 'log', 'password', 'reset', 'importance', 'high', 'hi', 'team', 'cannot', 'log', 'window', 'please', 'reset', 'window', 'password', 'reset', 'best'] processed_text: ['window', 'log', 'password', 'reset', 'nkiopevt', 'gufwhdky', 'mail', 'nwfodmhc', 'exurcwkm', 'wgpimkle', 'kijhcwur', 'eh', 'rad', 'window', 'log', 'password', 'reset', 'importance', 'high', 'hi', 'team', 'cannot', 'log', 'window', 'please', 'reset', 'window', 'password', 'reset', 'best'] list_processed_text: [['window'], ['log'], ['password'], ['reset'], ['nkiopevt'], ['gufwhdky'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['wgpimkle'], ['kijhcwur'], ['eh'], ['rad'], ['window'], ['log'], ['password'], ['reset'], ['importance'], ['high'], ['hi'], ['team'], ['cannot'], ['log'], ['window'], ['please'], ['reset'], ['window'], ['password'], ['reset'], ['best']] k: 8219 len: <class 'list'> Data: ['outlook', 'outlook'] processed_text: ['outlook', 'outlook'] list_processed_text: [['outlook'], ['outlook']] k: 8220 len: <class 'list'> Data: ['please', 'reset', 'erp', 'password', 'please', 'reset', 'erp', 'password'] processed_text: ['please', 'reset', 'erp', 'password', 'please', 'reset', 'erp', 'password'] list_processed_text: [['please'], ['reset'], ['erp'], ['password'], ['please'], ['reset'], ['erp'], ['password']] k: 8221 len: <class 'list'> Data: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] processed_text: ['login', 'issue', 'login', 'issue', 'verified', 'user', 'detail', 'employee', 'manager', 'name', 'checked', 'user', 'name', 'ad', 'reset', 'password', 'advised', 'user', 'login', 'check', 'caller', 'confirmed', 'able', 'login', 'issue', 'resolved'] list_processed_text: [['login'], ['issue'], ['login'], ['issue'], ['verified'], ['user'], ['detail'], ['employee'], ['manager'], ['name'], ['checked'], ['user'], ['name'], ['ad'], ['reset'], ['password'], ['advised'], ['user'], ['login'], ['check'], ['caller'], ['confirmed'], ['able'], ['login'], ['issue'], ['resolved']] k: 8222 len: <class 'list'> Data: ['network', 'outage', 'south', 'amerirtca', 'argentina', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'south', 'amerirtca', 'argentina', 'site', 'hard', 'since', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['south'], ['amerirtca'], ['argentina'], ['site'], ['hard'], ['since'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 8223 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8224 len: <class 'list'> Data: ['network', 'outage', 'usa', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'usa', 'site', 'hard', 'since', 'pm', 'et', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'yes', 'na', 'start', 'pm', 'et', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'yes', 'na', 'backup', 'circuit', 'active', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['usa'], ['site'], ['hard'], ['since'], ['pm'], ['et'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['yes'], ['na'], ['start'], ['pm'], ['et'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 8225 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8226 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] processed_text: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['rain'], ['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['regen']] k: 8227 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp']] k: 8228 len: <class 'list'> Data: ['lhqsm', 'kashfyujqti', 'jdcbiezx', 'disk', 'free', 'warning', 'threshold', 'lhqsm', 'kashfyujqti', 'jdcbiezx', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['lhqsm', 'kashfyujqti', 'jdcbiezx', 'disk', 'free', 'warning', 'threshold', 'lhqsm', 'kashfyujqti', 'jdcbiezx', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['lhqsm'], ['kashfyujqti'], ['jdcbiezx'], ['disk'], ['free'], ['warning'], ['threshold'], ['lhqsm'], ['kashfyujqti'], ['jdcbiezx'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 8229 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bwhrattr', 'abended', 'job', 'job', 'scheduler', 'bwhrattr'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bwhrattr', 'abended', 'job', 'job', 'scheduler', 'bwhrattr'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bwhrattr'], ['abended'], ['job'], ['job'], ['scheduler'], ['bwhrattr']] k: 8230 len: <class 'list'> Data: ['hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instan', 'hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instan', 'hostname', 'south', 'amerirtca', 'br', 'plm', 'dsc', 'file', 'production', 'dsccache', 'exe', 'wrong', 'number', 'instance', 'process', 'dsccache', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['hostname'], ['south'], ['amerirtca'], ['br'], ['plm'], ['dsc'], ['file'], ['production'], ['wrong'], ['number'], ['instance'], ['process'], ['dsccache'], ['exe'], ['expected'], ['instan'], ['hostname'], ['south'], ['amerirtca'], ['br'], ['plm'], ['dsc'], ['file'], ['production'], ['dsccache'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['dsccache'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 8231 len: <class 'list'> Data: ['hostname', 'usa', 'va', 'plm', 'web', 'file', 'cache', 'production', 'dsccache', 'exe', 'service', 'since', 'est', 'hostname', 'usa', 'va', 'plm', 'web', 'file', 'cache', 'production', 'dsccache', 'exe', 'service', 'since', 'est'] processed_text: ['hostname', 'usa', 'va', 'plm', 'web', 'file', 'cache', 'production', 'dsccache', 'exe', 'service', 'since', 'est', 'hostname', 'usa', 'va', 'plm', 'web', 'file', 'cache', 'production', 'dsccache', 'exe', 'service', 'since', 'est'] list_processed_text: [['hostname'], ['usa'], ['va'], ['plm'], ['web'], ['file'], ['cache'], ['production'], ['dsccache'], ['exe'], ['service'], ['since'], ['est'], ['hostname'], ['usa'], ['va'], ['plm'], ['web'], ['file'], ['cache'], ['production'], ['dsccache'], ['exe'], ['service'], ['since'], ['est']] k: 8232 len: <class 'list'> Data: ['hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'ex', 'hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'ex', 'hostname', 'plm', 'conversion', 'production', 'alwaysupservice', 'exe', 'wrong', 'number', 'instance', 'process', 'alwaysupservice', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['hostname'], ['plm'], ['conversion'], ['production'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe'], ['ex'], ['hostname'], ['plm'], ['conversion'], ['production'], ['alwaysupservice'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['alwaysupservice'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 8233 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] processed_text: ['abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'rain', 'abended', 'job', 'job', 'scheduler', 'snp', 'heu', 'regen'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['rain'], ['abended'], ['job'], ['job'], ['scheduler'], ['snp'], ['heu'], ['regen']] k: 8234 len: <class 'list'> Data: ['hostname', 'bobj', 'd', 'app', 'web', 'prod', 'al', 'engine', 'exe', 'service', 'hostname', 'bobj', 'd', 'app', 'web', 'prod', 'al', 'engine', 'exe', 'service', 'al', 'engine', 'exe', 'wrong', 'number', 'instance', 'process', 'al', 'engine', 'exe', 'expected', 'found'] processed_text: ['hostname', 'bobj', 'd', 'app', 'web', 'prod', 'al', 'engine', 'exe', 'service', 'hostname', 'bobj', 'd', 'app', 'web', 'prod', 'al', 'engine', 'exe', 'service', 'al', 'engine', 'exe', 'wrong', 'number', 'instance', 'process', 'al', 'engine', 'exe', 'expected', 'found'] list_processed_text: [['hostname'], ['bobj'], ['d'], ['app'], ['web'], ['prod'], ['al'], ['engine'], ['exe'], ['service'], ['hostname'], ['bobj'], ['d'], ['app'], ['web'], ['prod'], ['al'], ['engine'], ['exe'], ['service'], ['al'], ['engine'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['al'], ['engine'], ['exe'], ['expected'], ['found']] k: 8235 len: <class 'list'> Data: ['vip', 'log', 'proplems', 'vip', 'dear', 'helpdesk', 'vacation', 'briefly', 'left', 'changed', 'password', 'required', 'seems', 'main', 'window', 'log', 'still', 'old', 'password', 'outlook', 'sype', 'etc', 'already', 'new', 'password', 'also', 'company', 'main', 'log', 'right', 'usually', 'log', 'company', 'com', 'account', 'appearing', 'need', 'done', 'company', 'site', 'network', 'another', 'week'] processed_text: ['vip', 'log', 'proplems', 'vip', 'dear', 'helpdesk', 'vacation', 'briefly', 'left', 'changed', 'password', 'required', 'seems', 'main', 'window', 'log', 'still', 'old', 'password', 'outlook', 'sype', 'etc', 'already', 'new', 'password', 'also', 'company', 'main', 'log', 'right', 'usually', 'log', 'company', 'com', 'account', 'appearing', 'need', 'done', 'company', 'site', 'network', 'another', 'week'] list_processed_text: [['vip'], ['log'], ['proplems'], ['vip'], ['dear'], ['helpdesk'], ['vacation'], ['briefly'], ['left'], ['changed'], ['password'], ['required'], ['seems'], ['main'], ['window'], ['log'], ['still'], ['old'], ['password'], ['outlook'], ['sype'], ['etc'], ['already'], ['new'], ['password'], ['also'], ['company'], ['main'], ['log'], ['right'], ['usually'], ['log'], ['company'], ['com'], ['account'], ['appearing'], ['need'], ['done'], ['company'], ['site'], ['network'], ['another'], ['week']] k: 8236 len: <class 'list'> Data: ['bw', 'job', 'failing', 'server', 'issue', 'bw', 'job', 'failing', 'server', 'issue', 'could', 'please', 'check', 'confirm', 'please', 'refer', 'screen', 'shot', 'sent', 'email'] processed_text: ['bw', 'job', 'failing', 'server', 'issue', 'bw', 'job', 'failing', 'server', 'issue', 'could', 'please', 'check', 'confirm', 'please', 'refer', 'screen', 'shot', 'sent', 'email'] list_processed_text: [['bw'], ['job'], ['failing'], ['server'], ['issue'], ['bw'], ['job'], ['failing'], ['server'], ['issue'], ['could'], ['please'], ['check'], ['confirm'], ['please'], ['refer'], ['screen'], ['shot'], ['sent'], ['email']] k: 8237 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8238 len: <class 'list'> Data: ['reboot', 'tax', 'interface', 'dev', 'server', 'hostname', 'hostname', 'reboot', 'tax', 'interface', 'dev', 'server', 'hostname', 'hostname'] processed_text: ['reboot', 'tax', 'interface', 'dev', 'server', 'hostname', 'hostname', 'reboot', 'tax', 'interface', 'dev', 'server', 'hostname', 'hostname'] list_processed_text: [['reboot'], ['tax'], ['interface'], ['dev'], ['server'], ['hostname'], ['hostname'], ['reboot'], ['tax'], ['interface'], ['dev'], ['server'], ['hostname'], ['hostname']] k: 8239 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8240 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['wly'], ['dp']] k: 8241 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8242 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8243 len: <class 'list'> Data: ['abend', 'batch', 'sid', 'stat', 'job', 'name', 'sid', 'stat'] processed_text: ['abend', 'batch', 'sid', 'stat', 'job', 'name', 'sid', 'stat'] list_processed_text: [['abend'], ['batch'], ['sid'], ['stat'], ['job'], ['name'], ['sid'], ['stat']] k: 8244 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'start', 'hana', 'slt', 'abended', 'job', 'job', 'scheduler', 'sid', 'start', 'hana', 'slt'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'start', 'hana', 'slt', 'abended', 'job', 'job', 'scheduler', 'sid', 'start', 'hana', 'slt'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['start'], ['hana'], ['slt'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['start'], ['hana'], ['slt']] k: 8245 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8246 len: <class 'list'> Data: ['recall', 'chg', 'approve', 'vkezwolt', 'fgnqzeai', 'would', 'like', 'recall', 'message', 'chg', 'approve'] processed_text: ['recall', 'chg', 'approve', 'vkezwolt', 'fgnqzeai', 'would', 'like', 'recall', 'message', 'chg', 'approve'] list_processed_text: [['recall'], ['chg'], ['approve'], ['vkezwolt'], ['fgnqzeai'], ['would'], ['like'], ['recall'], ['message'], ['chg'], ['approve']] k: 8247 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'start', 'abended', 'job', 'job', 'scheduler', 'sid', 'start'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'start', 'abended', 'job', 'job', 'scheduler', 'sid', 'start'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['start'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['start']] k: 8248 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8249 len: <class 'list'> Data: ['erp', 'sid', 'available', 'connected', 'vpn', 'look', 'information', 'erp', 'connect', 'able', 'connect', 'local', 'drive', 'plant', 'department', 'drive', 'erp'] processed_text: ['erp', 'sid', 'available', 'connected', 'vpn', 'look', 'information', 'erp', 'connect', 'able', 'connect', 'local', 'drive', 'plant', 'department', 'drive', 'erp'] list_processed_text: [['erp'], ['sid'], ['available'], ['connected'], ['vpn'], ['look'], ['information'], ['erp'], ['connect'], ['able'], ['connect'], ['local'], ['drive'], ['plant'], ['department'], ['drive'], ['erp']] k: 8250 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8251 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'hot', 'abended', 'job', 'job', 'scheduler', 'sid', 'hot'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'hot', 'abended', 'job', 'job', 'scheduler', 'sid', 'hot'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hot'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['hot']] k: 8252 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8253 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8254 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'cold', 'abended', 'job', 'job', 'scheduler', 'sid', 'cold'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['cold']] k: 8255 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8256 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'abended', 'job', 'job', 'scheduler', 'sid', 'stop'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'abended', 'job', 'job', 'scheduler', 'sid', 'stop'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['stop'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['stop']] k: 8257 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8258 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'hana', 'slt', 'abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'hana', 'slt'] processed_text: ['abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'hana', 'slt', 'abended', 'job', 'job', 'scheduler', 'sid', 'stop', 'hana', 'slt'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['stop'], ['hana'], ['slt'], ['abended'], ['job'], ['job'], ['scheduler'], ['sid'], ['stop'], ['hana'], ['slt']] k: 8259 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8260 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8261 len: <class 'list'> Data: ['erp', 'locked', 'need', 'unlock', 'erp', 'locked', 'need', 'unlock'] processed_text: ['erp', 'locked', 'need', 'unlock', 'erp', 'locked', 'need', 'unlock'] list_processed_text: [['erp'], ['locked'], ['need'], ['unlock'], ['erp'], ['locked'], ['need'], ['unlock']] k: 8262 len: <class 'list'> Data: ['recently', 'created', 'variable', 'fails', 'get', 'opened', 'bobj', 'analyser', 'due', 'attached', 'error', 'message', 'recently', 'created', 'variable', 'fails', 'get', 'opened', 'bobj', 'analyser', 'due', 'attached', 'error', 'message'] processed_text: ['recently', 'created', 'variable', 'fails', 'get', 'opened', 'bobj', 'analyser', 'due', 'attached', 'error', 'message', 'recently', 'created', 'variable', 'fails', 'get', 'opened', 'bobj', 'analyser', 'due', 'attached', 'error', 'message'] list_processed_text: [['recently'], ['created'], ['variable'], ['fails'], ['get'], ['opened'], ['bobj'], ['analyser'], ['due'], ['attached'], ['error'], ['message'], ['recently'], ['created'], ['variable'], ['fails'], ['get'], ['opened'], ['bobj'], ['analyser'], ['due'], ['attached'], ['error'], ['message']] k: 8263 len: <class 'list'> Data: ['vmax', 'disk', 'failed', 'df', 'failed', 'reporting', 'tool', 'alert', 'monitor', 'disk', 'failed', 'df', 'localhost', 'outside', 'expected', 'limit', 'true', 'true'] processed_text: ['vmax', 'disk', 'failed', 'df', 'failed', 'reporting', 'tool', 'alert', 'monitor', 'disk', 'failed', 'df', 'localhost', 'outside', 'expected', 'limit', 'true', 'true'] list_processed_text: [['vmax'], ['disk'], ['failed'], ['df'], ['failed'], ['reporting'], ['tool'], ['alert'], ['monitor'], ['disk'], ['failed'], ['df'], ['localhost'], ['outside'], ['expected'], ['limit'], ['true'], ['true']] k: 8264 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc']] k: 8265 len: <class 'list'> Data: ['network', 'outage', 'sao', 'pollaurido', 'mercedes', 'benz', 'plant', 'network', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] processed_text: ['network', 'outage', 'sao', 'pollaurido', 'mercedes', 'benz', 'plant', 'network', 'since', 'et', 'backup', 'circuit', 'type', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'type', 'outage', 'top', 'cert', 'site', 'yes', 'na', 'start', 'scheduled', 'maintenance', 'power', 'yes', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'yes', 'na', 'company', 'maint', 'yes', 'provider', 'maint', 'ticket', 'site', 'backup', 'circuit', 'yes', 'na', 'backup', 'circuit', 'active', 'na', 'yes', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'na', 'remote', 'dial', 'na', 'yes', 'na', 'equipment', 'reset', 'yes', 'na', 'verified', 'site', 'working', 'backup', 'circuit', 'na', 'yes', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'yes', 'na', 'cert', 'started', 'yes', 'na', 'additional', 'diagnostics'] list_processed_text: [['network'], ['outage'], ['sao'], ['pollaurido'], ['mercedes'], ['benz'], ['plant'], ['network'], ['since'], ['et'], ['backup'], ['circuit'], ['type'], ['outage'], ['network'], ['circuit'], ['power'], ['please'], ['specify'], ['type'], ['outage'], ['top'], ['cert'], ['site'], ['yes'], ['na'], ['start'], ['scheduled'], ['maintenance'], ['power'], ['yes'], ['na'], ['company'], ['power'], ['provider'], ['power'], ['scheduled'], ['maintenance'], ['network'], ['yes'], ['na'], ['company'], ['maint'], ['yes'], ['provider'], ['maint'], ['ticket'], ['site'], ['backup'], ['circuit'], ['yes'], ['na'], ['backup'], ['circuit'], ['active'], ['na'], ['yes'], ['na'], ['site'], ['contact'], ['notified'], ['phone'], ['email'], ['yes'], ['na'], ['remote'], ['dial'], ['na'], ['yes'], ['na'], ['equipment'], ['reset'], ['yes'], ['na'], ['verified'], ['site'], ['working'], ['backup'], ['circuit'], ['na'], ['yes'], ['na'], ['vendor'], ['ticket'], ['global'], ['telecom'], ['verizon'], ['telecom'], ['vendor'], ['telecom'], ['vendor'], ['global'], ['telecom'], ['notified'], ['gsc'], ['yes'], ['na'], ['cert'], ['started'], ['yes'], ['na'], ['additional'], ['diagnostics']] k: 8266 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd'] processed_text: ['abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['apo'], ['cif'], ['pd'], ['abended'], ['job'], ['job'], ['scheduler'], ['apo'], ['cif'], ['pd']] k: 8267 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'eu', 'abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'eu'] processed_text: ['abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'eu', 'abended', 'job', 'job', 'scheduler', 'apo', 'cif', 'pd', 'eu'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['apo'], ['cif'], ['pd'], ['eu'], ['abended'], ['job'], ['job'], ['scheduler'], ['apo'], ['cif'], ['pd'], ['eu']] k: 8268 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8269 len: <class 'list'> Data: ['issue', 'downloading', 'mail', 'dear', 'sir', 'unable', 'download', 'mail', 'india', 'office', 'even', 'connected', 'internet', 'kindly', 'help', 'resolving', 'issue', 'best'] processed_text: ['issue', 'downloading', 'mail', 'dear', 'sir', 'unable', 'download', 'mail', 'india', 'office', 'even', 'connected', 'internet', 'kindly', 'help', 'resolving', 'issue', 'best'] list_processed_text: [['issue'], ['downloading'], ['mail'], ['dear'], ['sir'], ['unable'], ['download'], ['mail'], ['india'], ['office'], ['even'], ['connected'], ['internet'], ['kindly'], ['help'], ['resolving'], ['issue'], ['best']] k: 8270 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8271 len: <class 'list'> Data: ['designation', 'change', 'required', 'outlook', 'original', 'message', 'bvlcarfe', 'aztlkeifowndararajan', 'date', 'gmt', 'sridthshar', 'herytur', 'gopi', 'designation', 'change', 'required', 'outlook', 'dear', 'sir', 'recently', 'elevated', 'area', 'manager', 'sale', 'assistant', 'manager', 'sale', 'kindly', 'help', 'make', 'change', 'outlook', 'contact', 'detail', 'collaboration', 'platform', 'contact', 'detail'] processed_text: ['designation', 'change', 'required', 'outlook', 'original', 'message', 'bvlcarfe', 'aztlkeifowndararajan', 'date', 'gmt', 'sridthshar', 'herytur', 'gopi', 'designation', 'change', 'required', 'outlook', 'dear', 'sir', 'recently', 'elevated', 'area', 'manager', 'sale', 'assistant', 'manager', 'sale', 'kindly', 'help', 'make', 'change', 'outlook', 'contact', 'detail', 'collaboration', 'platform', 'contact', 'detail'] list_processed_text: [['designation'], ['change'], ['required'], ['outlook'], ['original'], ['message'], ['bvlcarfe'], ['aztlkeifowndararajan'], ['date'], ['gmt'], ['sridthshar'], ['herytur'], ['gopi'], ['designation'], ['change'], ['required'], ['outlook'], ['dear'], ['sir'], ['recently'], ['elevated'], ['area'], ['manager'], ['sale'], ['assistant'], ['manager'], ['sale'], ['kindly'], ['help'], ['make'], ['change'], ['outlook'], ['contact'], ['detail'], ['collaboration'], ['platform'], ['contact'], ['detail']] k: 8272 len: <class 'list'> Data: ['hostname', 'average', 'disk', 'free', 'total', 'size', 'gb', 'noticed', 'alarm', 'reporting', 'tool', 'warning', 'threshold', 'need', 'check'] processed_text: ['hostname', 'average', 'disk', 'free', 'total', 'size', 'gb', 'noticed', 'alarm', 'reporting', 'tool', 'warning', 'threshold', 'need', 'check'] list_processed_text: [['hostname'], ['average'], ['disk'], ['free'], ['total'], ['size'], ['gb'], ['noticed'], ['alarm'], ['reporting'], ['tool'], ['warning'], ['threshold'], ['need'], ['check']] k: 8273 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'erp', 'dly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['erp'], ['dly'], ['dp']] k: 8274 len: <class 'list'> Data: ['inquiry', 'transfer', 'contact', 'phone', 'system', 'inquiry', 'transfer', 'contact', 'phone', 'system'] processed_text: ['inquiry', 'transfer', 'contact', 'phone', 'system', 'inquiry', 'transfer', 'contact', 'phone', 'system'] list_processed_text: [['inquiry'], ['transfer'], ['contact'], ['phone'], ['system'], ['inquiry'], ['transfer'], ['contact'], ['phone'], ['system']] k: 8275 len: <class 'list'> Data: ['erp', 'password', 'reset', 'erp', 'password', 'reset'] processed_text: ['erp', 'password', 'reset', 'erp', 'password', 'reset'] list_processed_text: [['erp'], ['password'], ['reset'], ['erp'], ['password'], ['reset']] k: 8276 len: <class 'list'> Data: ['erp', 'crm', 'password', 'reset', 'erp', 'crm', 'password', 'reset'] processed_text: ['erp', 'crm', 'password', 'reset', 'erp', 'crm', 'password', 'reset'] list_processed_text: [['erp'], ['crm'], ['password'], ['reset'], ['erp'], ['crm'], ['password'], ['reset']] k: 8277 len: <class 'list'> Data: ['need', 'password', 'reset', 'need', 'password', 'reset'] processed_text: ['need', 'password', 'reset', 'need', 'password', 'reset'] list_processed_text: [['need'], ['password'], ['reset'], ['need'], ['password'], ['reset']] k: 8278 len: <class 'list'> Data: ['kirty', 'india', 'two', 'switch', 'pm', 'et', 'kirty', 'india', 'two', 'switch', 'pm', 'et'] processed_text: ['kirty', 'india', 'two', 'switch', 'pm', 'et', 'kirty', 'india', 'two', 'switch', 'pm', 'et'] list_processed_text: [['kirty'], ['india'], ['two'], ['switch'], ['pm'], ['et'], ['kirty'], ['india'], ['two'], ['switch'], ['pm'], ['et']] k: 8279 len: <class 'list'> Data: ['inquiry', 'lotus', 'note', 'inquiry', 'lotus', 'note'] processed_text: ['inquiry', 'lotus', 'note', 'inquiry', 'lotus', 'note'] list_processed_text: [['inquiry'], ['lotus'], ['note'], ['inquiry'], ['lotus'], ['note']] k: 8280 len: <class 'list'> Data: ['network', 'outage', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'sw', 'pm', 'et', 'apac', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'sw', 'pm', 'et'] processed_text: ['network', 'outage', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'sw', 'pm', 'et', 'apac', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', 'sw', 'pm', 'et'] list_processed_text: [['network'], ['outage'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['access'], ['sw'], ['sw'], ['pm'], ['et'], ['apac'], ['company'], ['ap'], ['chn'], ['apac'], ['company'], ['access'], ['sw'], ['sw'], ['pm'], ['et']] k: 8281 len: <class 'list'> Data: ['apac', 'robot', 'hostname', 'inactive', 'apac', 'robot', 'hostname', 'inactive'] processed_text: ['apac', 'robot', 'hostname', 'inactive', 'apac', 'robot', 'hostname', 'inactive'] list_processed_text: [['apac'], ['robot'], ['hostname'], ['inactive'], ['apac'], ['robot'], ['hostname'], ['inactive']] k: 8282 len: <class 'list'> Data: ['password', 'change', 'changed', 'password', 'today', 'access', 'location', 'updated', 'need', 'update', 'site'] processed_text: ['password', 'change', 'changed', 'password', 'today', 'access', 'location', 'updated', 'need', 'update', 'site'] list_processed_text: [['password'], ['change'], ['changed'], ['password'], ['today'], ['access'], ['location'], ['updated'], ['need'], ['update'], ['site']] k: 8283 len: <class 'list'> Data: ['reset', 'password', 'xuqvaobxuy', 'ntqkuocz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'change', 'new', 'password', 'alabama'] processed_text: ['reset', 'password', 'xuqvaobxuy', 'ntqkuocz', 'using', 'password', 'management', 'tool', 'password', 'reset', 'change', 'new', 'password', 'alabama'] list_processed_text: [['reset'], ['password'], ['xuqvaobxuy'], ['ntqkuocz'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['change'], ['new'], ['password'], ['alabama']] k: 8284 len: <class 'list'> Data: ['update', 'implant', 'update', 'implant'] processed_text: ['update', 'implant', 'update', 'implant'] list_processed_text: [['update'], ['implant'], ['update'], ['implant']] k: 8285 len: <class 'list'> Data: ['hello', 'please', 'see', 'highlighted', 'field', 'tax', 'code', 'field', 'auto', 'populating', 'inconsistent', 'rushethryli', 'jacfgtykson', 'mail', 'nwfodmhc', 'exurcwkm', 'po', 'tax', 'code', 'field', 'auto', 'populate', 'hello', 'please', 'see', 'highlighted', 'field', 'tax', 'code', 'field', 'auto', 'populating', 'inconsistent', 'possible', 'prevent', 'auto', 'populating', 'po', 'pull', 'information'] processed_text: ['hello', 'please', 'see', 'highlighted', 'field', 'tax', 'code', 'field', 'auto', 'populating', 'inconsistent', 'rushethryli', 'jacfgtykson', 'mail', 'nwfodmhc', 'exurcwkm', 'po', 'tax', 'code', 'field', 'auto', 'populate', 'hello', 'please', 'see', 'highlighted', 'field', 'tax', 'code', 'field', 'auto', 'populating', 'inconsistent', 'possible', 'prevent', 'auto', 'populating', 'po', 'pull', 'information'] list_processed_text: [['hello'], ['please'], ['see'], ['highlighted'], ['field'], ['tax'], ['code'], ['field'], ['auto'], ['populating'], ['inconsistent'], ['rushethryli'], ['jacfgtykson'], ['mail'], ['nwfodmhc'], ['exurcwkm'], ['po'], ['tax'], ['code'], ['field'], ['auto'], ['populate'], ['hello'], ['please'], ['see'], ['highlighted'], ['field'], ['tax'], ['code'], ['field'], ['auto'], ['populating'], ['inconsistent'], ['possible'], ['prevent'], ['auto'], ['populating'], ['po'], ['pull'], ['information']] k: 8286 len: <class 'list'> Data: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] processed_text: ['unable', 'connect', 'wireless', 'unable', 'connect', 'wireless'] list_processed_text: [['unable'], ['connect'], ['wireless'], ['unable'], ['connect'], ['wireless']] k: 8287 len: <class 'list'> Data: ['look', 'see', 'received', 'line', 'line', 'efgoawct', 'vwniefok', 'nwfodmhc', 'exurcwkm', 'smxoklny', 'hbecskgl', 'rak', 'look', 'tried', 'receive', 'line', 'received', 'kg', 'line', 'look', 'see', 'received', 'line', 'line', 'efgoawct', 'vwniefok', 'pm', 'smxoklny', 'hbecskgl', 'look', 'tried', 'receive', 'line', 'received', 'kg', 'line'] processed_text: ['look', 'see', 'received', 'line', 'line', 'efgoawct', 'vwniefok', 'nwfodmhc', 'exurcwkm', 'smxoklny', 'hbecskgl', 'rak', 'look', 'tried', 'receive', 'line', 'received', 'kg', 'line', 'look', 'see', 'received', 'line', 'line', 'efgoawct', 'vwniefok', 'pm', 'smxoklny', 'hbecskgl', 'look', 'tried', 'receive', 'line', 'received', 'kg', 'line'] list_processed_text: [['look'], ['see'], ['received'], ['line'], ['line'], ['efgoawct'], ['vwniefok'], ['nwfodmhc'], ['exurcwkm'], ['smxoklny'], ['hbecskgl'], ['rak'], ['look'], ['tried'], ['receive'], ['line'], ['received'], ['kg'], ['line'], ['look'], ['see'], ['received'], ['line'], ['line'], ['efgoawct'], ['vwniefok'], ['pm'], ['smxoklny'], ['hbecskgl'], ['look'], ['tried'], ['receive'], ['line'], ['received'], ['kg'], ['line']] k: 8288 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'gifpuwtb', 'aykegsvr', 'id', 'bigrtdfatta', 'jlzsardp', 'kumtcnwi', 'id', 'bactelephony', 'softwarea', 'sbinuxja', 'vtbegcho', 'id', 'nicolmghyu', 'rudfgbens', 'rtwjunior', 'juniowsrr', 'jgnxyahz', 'cixzwuyf', 'id', 'zigioachstyac', 'alexansxcddre', 'olovxcdeira', 'olivesadia', 'pollaurido', 'robhyertyjo', 'id', 'robsdgerp', 'note', 'changed', 'cell', 'phone', 'user', 'new', 'wifi', 'data', 'plan', 'service', 'provider', 'required', 'setup', 'email', 'mobile', 'device', 'device', 'company', 'owned', 'replacement', 'old', 'device', 'yes', 'please', 'ensure', 'company', 'data', 'removed', 'old', 'device', 'delete', 'exchange', 'setup', 'setting', 'mail', 'contact', 'calendar', 'personal', 'device', 'please', 'attach', 'approval', 'form', 'signed', 'manager', 'ticketing', 'tool', 'ticket', 'please', 'ensure', 'device', 'company', 'approved', 'email', 'setup', 'company', 'approved', 'device', 'please', 'contact', 'gsc', 'help', 'exchange', 'setup', 'personal', 'device', 'please', 'contact', 'device', 'vendor', 'also', 'refer', 'faq', 'section', 'step', 'exchange', 'setup', 'completed', 'device', 'n', 'receive', 'email', 'stating', 'device', 'quarantined', 'completed', 'step', 'need', 'completed', 'device', 'register', 'company'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'gifpuwtb', 'aykegsvr', 'id', 'bigrtdfatta', 'jlzsardp', 'kumtcnwi', 'id', 'bactelephony', 'softwarea', 'sbinuxja', 'vtbegcho', 'id', 'nicolmghyu', 'rudfgbens', 'rtwjunior', 'juniowsrr', 'jgnxyahz', 'cixzwuyf', 'id', 'zigioachstyac', 'alexansxcddre', 'olovxcdeira', 'olivesadia', 'pollaurido', 'robhyertyjo', 'id', 'robsdgerp', 'note', 'changed', 'cell', 'phone', 'user', 'new', 'wifi', 'data', 'plan', 'service', 'provider', 'required', 'setup', 'email', 'mobile', 'device', 'device', 'company', 'owned', 'replacement', 'old', 'device', 'yes', 'please', 'ensure', 'company', 'data', 'removed', 'old', 'device', 'delete', 'exchange', 'setup', 'setting', 'mail', 'contact', 'calendar', 'personal', 'device', 'please', 'attach', 'approval', 'form', 'signed', 'manager', 'ticketing', 'tool', 'ticket', 'please', 'ensure', 'device', 'company', 'approved', 'email', 'setup', 'company', 'approved', 'device', 'please', 'contact', 'gsc', 'help', 'exchange', 'setup', 'personal', 'device', 'please', 'contact', 'device', 'vendor', 'also', 'refer', 'faq', 'section', 'step', 'exchange', 'setup', 'completed', 'device', 'n', 'receive', 'email', 'stating', 'device', 'quarantined', 'completed', 'step', 'need', 'completed', 'device', 'register', 'company'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['gifpuwtb'], ['aykegsvr'], ['id'], ['bigrtdfatta'], ['jlzsardp'], ['kumtcnwi'], ['id'], ['bactelephony'], ['softwarea'], ['sbinuxja'], ['vtbegcho'], ['id'], ['nicolmghyu'], ['rudfgbens'], ['rtwjunior'], ['juniowsrr'], ['jgnxyahz'], ['cixzwuyf'], ['id'], ['zigioachstyac'], ['alexansxcddre'], ['olovxcdeira'], ['olivesadia'], ['pollaurido'], ['robhyertyjo'], ['id'], ['robsdgerp'], ['note'], ['changed'], ['cell'], ['phone'], ['user'], ['new'], ['wifi'], ['data'], ['plan'], ['service'], ['provider'], ['required'], ['setup'], ['email'], ['mobile'], ['device'], ['device'], ['company'], ['owned'], ['replacement'], ['old'], ['device'], ['yes'], ['please'], ['ensure'], ['company'], ['data'], ['removed'], ['old'], ['device'], ['delete'], ['exchange'], ['setup'], ['setting'], ['mail'], ['contact'], ['calendar'], ['personal'], ['device'], ['please'], ['attach'], ['approval'], ['form'], ['signed'], ['manager'], ['ticketing'], ['tool'], ['ticket'], ['please'], ['ensure'], ['device'], ['company'], ['approved'], ['email'], ['setup'], ['company'], ['approved'], ['device'], ['please'], ['contact'], ['gsc'], ['help'], ['exchange'], ['setup'], ['personal'], ['device'], ['please'], ['contact'], ['device'], ['vendor'], ['also'], ['refer'], ['faq'], ['section'], ['step'], ['exchange'], ['setup'], ['completed'], ['device'], ['n'], ['receive'], ['email'], ['stating'], ['device'], ['quarantined'], ['completed'], ['step'], ['need'], ['completed'], ['device'], ['register'], ['company']] k: 8289 len: <class 'list'> Data: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] processed_text: ['hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'hostname', 'average', 'sample', 'disk', 'free', 'warning', 'threshold', 'total', 'size', 'gb'] list_processed_text: [['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['hostname'], ['average'], ['sample'], ['disk'], ['free'], ['warning'], ['threshold'], ['total'], ['size'], ['gb']] k: 8290 len: <class 'list'> Data: ['help', 'ms', 'worklist', 'since', 'manager', 'left', 'company', 'qekdgaim', 'wagshrzl', 'nwfodmhc', 'exurcwkm', 'amar', 'help', 'ms', 'worklist', 'since', 'manager', 'left', 'company', 'hi', 'writing', 'behalf', 'jdlxkygf', 'wlzqaivr', 'mikhghytr', 'ramdntysey', 'jdlxkygf', 'wlzqaivr', 'davidthd', 'former', 'manager', 'expense', 'report', 'approver', 'gergrythg', 'bigleman', 'longer', 'company', 'davidthd', 'expense', 'report', 'gergrythg', 'queue', 'mikhghytr', 'ramdntysey', 'get', 'access', 'approve', 'forward', 'correct', 'manager', 'ensure', 'request', 'gergrythg', 'universal', 'worklist', 'note', 'office', 'closed', 'labor', 'day', 'holiday', 'best'] processed_text: ['help', 'ms', 'worklist', 'since', 'manager', 'left', 'company', 'qekdgaim', 'wagshrzl', 'nwfodmhc', 'exurcwkm', 'amar', 'help', 'ms', 'worklist', 'since', 'manager', 'left', 'company', 'hi', 'writing', 'behalf', 'jdlxkygf', 'wlzqaivr', 'mikhghytr', 'ramdntysey', 'jdlxkygf', 'wlzqaivr', 'davidthd', 'former', 'manager', 'expense', 'report', 'approver', 'gergrythg', 'bigleman', 'longer', 'company', 'davidthd', 'expense', 'report', 'gergrythg', 'queue', 'mikhghytr', 'ramdntysey', 'get', 'access', 'approve', 'forward', 'correct', 'manager', 'ensure', 'request', 'gergrythg', 'universal', 'worklist', 'note', 'office', 'closed', 'labor', 'day', 'holiday', 'best'] list_processed_text: [['help'], ['ms'], ['worklist'], ['since'], ['manager'], ['left'], ['company'], ['qekdgaim'], ['wagshrzl'], ['nwfodmhc'], ['exurcwkm'], ['amar'], ['help'], ['ms'], ['worklist'], ['since'], ['manager'], ['left'], ['company'], ['hi'], ['writing'], ['behalf'], ['jdlxkygf'], ['wlzqaivr'], ['mikhghytr'], ['ramdntysey'], ['jdlxkygf'], ['wlzqaivr'], ['davidthd'], ['former'], ['manager'], ['expense'], ['report'], ['approver'], ['gergrythg'], ['bigleman'], ['longer'], ['company'], ['davidthd'], ['expense'], ['report'], ['gergrythg'], ['queue'], ['mikhghytr'], ['ramdntysey'], ['get'], ['access'], ['approve'], ['forward'], ['correct'], ['manager'], ['ensure'], ['request'], ['gergrythg'], ['universal'], ['worklist'], ['note'], ['office'], ['closed'], ['labor'], ['day'], ['holiday'], ['best']] k: 8291 len: <class 'list'> Data: ['folder', 'access', 'hostname', 'kt', 'transition', 'infrastructure', 'security', 'operation', 'pragtyhusas', 'provide', 'access', 'hnynhsth', 'jsuyhwssad', 'user', 'id', 'pragtyhusas', 'network', 'folder', 'folder', 'access', 'hostname', 'kt', 'transition', 'infrastructure', 'security', 'operation'] processed_text: ['folder', 'access', 'hostname', 'kt', 'transition', 'infrastructure', 'security', 'operation', 'pragtyhusas', 'provide', 'access', 'hnynhsth', 'jsuyhwssad', 'user', 'id', 'pragtyhusas', 'network', 'folder', 'folder', 'access', 'hostname', 'kt', 'transition', 'infrastructure', 'security', 'operation'] list_processed_text: [['folder'], ['access'], ['hostname'], ['kt'], ['transition'], ['infrastructure'], ['security'], ['operation'], ['pragtyhusas'], ['provide'], ['access'], ['hnynhsth'], ['jsuyhwssad'], ['user'], ['id'], ['pragtyhusas'], ['network'], ['folder'], ['folder'], ['access'], ['hostname'], ['kt'], ['transition'], ['infrastructure'], ['security'], ['operation']] k: 8292 len: <class 'list'> Data: ['unable', 'start', 'dell', 'unable', 'start', 'dell', 'stuck', 'welcome', 'screen'] processed_text: ['unable', 'start', 'dell', 'unable', 'start', 'dell', 'stuck', 'welcome', 'screen'] list_processed_text: [['unable'], ['start'], ['dell'], ['unable'], ['start'], ['dell'], ['stuck'], ['welcome'], ['screen']] k: 8293 len: <class 'list'> Data: ['erp', 'sid', 'bex', 'password', 'erp', 'sid', 'bex', 'password'] processed_text: ['erp', 'sid', 'bex', 'password', 'erp', 'sid', 'bex', 'password'] list_processed_text: [['erp'], ['sid'], ['bex'], ['password'], ['erp'], ['sid'], ['bex'], ['password']] k: 8294 len: <class 'list'> Data: ['update', 'contact', 'number', 'ad', 'update', 'contact', 'number', 'ad'] processed_text: ['update', 'contact', 'number', 'ad', 'update', 'contact', 'number', 'ad'] list_processed_text: [['update'], ['contact'], ['number'], ['ad'], ['update'], ['contact'], ['number'], ['ad']] k: 8295 len: <class 'list'> Data: ['crm', 'configuration', 'issue', 'crm', 'configuration', 'issue'] processed_text: ['crm', 'configuration', 'issue', 'crm', 'configuration', 'issue'] list_processed_text: [['crm'], ['configuration'], ['issue'], ['crm'], ['configuration'], ['issue']] k: 8296 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] processed_text: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['blank'], ['call'], ['loud'], ['noise']] k: 8297 len: <class 'list'> Data: ['reset', 'password', 'jrigdbox', 'bgyluoqn', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reset', 'erp', 'password', 'beahleb'] processed_text: ['reset', 'password', 'jrigdbox', 'bgyluoqn', 'using', 'password', 'management', 'tool', 'password', 'reset', 'please', 'reset', 'erp', 'password', 'beahleb'] list_processed_text: [['reset'], ['password'], ['jrigdbox'], ['bgyluoqn'], ['using'], ['password'], ['management'], ['tool'], ['password'], ['reset'], ['please'], ['reset'], ['erp'], ['password'], ['beahleb']] k: 8298 len: <class 'list'> Data: ['access', 'sid', 'system', 'erp', 'machine', 'service', 'tag', 'gowzv', 'asset', 'tag', 'sid', 'model', 'working', 'machine', 'service', 'tag', 'gowzv', 'asset', 'tag', 'error', 'attached', 'need', 'produce', 'uacyltoe', 'hxgayczes', 'sid', 'enviroment'] processed_text: ['access', 'sid', 'system', 'erp', 'machine', 'service', 'tag', 'gowzv', 'asset', 'tag', 'sid', 'model', 'working', 'machine', 'service', 'tag', 'gowzv', 'asset', 'tag', 'error', 'attached', 'need', 'produce', 'uacyltoe', 'hxgayczes', 'sid', 'enviroment'] list_processed_text: [['access'], ['sid'], ['system'], ['erp'], ['machine'], ['service'], ['tag'], ['gowzv'], ['asset'], ['tag'], ['sid'], ['model'], ['working'], ['machine'], ['service'], ['tag'], ['gowzv'], ['asset'], ['tag'], ['error'], ['attached'], ['need'], ['produce'], ['uacyltoe'], ['hxgayczes'], ['sid'], ['enviroment']] k: 8299 len: <class 'list'> Data: ['updated', 'password', 'email', 'mobile', 'device', 'updated', 'password', 'email', 'mobile', 'device'] processed_text: ['updated', 'password', 'email', 'mobile', 'device', 'updated', 'password', 'email', 'mobile', 'device'] list_processed_text: [['updated'], ['password'], ['email'], ['mobile'], ['device'], ['updated'], ['password'], ['email'], ['mobile'], ['device']] k: 8300 len: <class 'list'> Data: ['password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'link', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'link'] processed_text: ['password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'link', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'link'] list_processed_text: [['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['link'], ['password'], ['management'], ['tool'], ['password'], ['manager'], ['password'], ['reset'], ['link']] k: 8301 len: <class 'list'> Data: ['bex', 'report', 'getting', 'error', 'trying', 'run', 'bex', 'report', 'allow', 'log', 'sid', 'something', 'run', 'issue', 'past', 'need', 'run', 'daily', 'report'] processed_text: ['bex', 'report', 'getting', 'error', 'trying', 'run', 'bex', 'report', 'allow', 'log', 'sid', 'something', 'run', 'issue', 'past', 'need', 'run', 'daily', 'report'] list_processed_text: [['bex'], ['report'], ['getting'], ['error'], ['trying'], ['run'], ['bex'], ['report'], ['allow'], ['log'], ['sid'], ['something'], ['run'], ['issue'], ['past'], ['need'], ['run'], ['daily'], ['report']] k: 8302 len: <class 'list'> Data: ['unable', 'login', 'ethic', 'unable', 'login', 'ethic'] processed_text: ['unable', 'login', 'ethic', 'unable', 'login', 'ethic'] list_processed_text: [['unable'], ['login'], ['ethic'], ['unable'], ['login'], ['ethic']] k: 8303 len: <class 'list'> Data: ['expense', 'account', 'post', 'cost', 'center', 'changed', 'ltm', 'ltm', 'started', 'expense', 'account', 'changed', 'cost', 'assignment', 'ltm', 'expense', 'account', 'still', 'submit', 'receive', 'error', 'message', 'whenever', 'try', 'submit', 'expense', 'account', 'cost', 'center', 'company', 'ltm', 'blocked', 'direct', 'posting'] processed_text: ['expense', 'account', 'post', 'cost', 'center', 'changed', 'ltm', 'ltm', 'started', 'expense', 'account', 'changed', 'cost', 'assignment', 'ltm', 'expense', 'account', 'still', 'submit', 'receive', 'error', 'message', 'whenever', 'try', 'submit', 'expense', 'account', 'cost', 'center', 'company', 'ltm', 'blocked', 'direct', 'posting'] list_processed_text: [['expense'], ['account'], ['post'], ['cost'], ['center'], ['changed'], ['ltm'], ['ltm'], ['started'], ['expense'], ['account'], ['changed'], ['cost'], ['assignment'], ['ltm'], ['expense'], ['account'], ['still'], ['submit'], ['receive'], ['error'], ['message'], ['whenever'], ['try'], ['submit'], ['expense'], ['account'], ['cost'], ['center'], ['company'], ['ltm'], ['blocked'], ['direct'], ['posting']] k: 8304 len: <class 'list'> Data: ['access', 'engineering', 'tool', 'name', 'gncpezhx', 'hopqcvza', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'tool', 'access', 'report'] processed_text: ['access', 'engineering', 'tool', 'name', 'gncpezhx', 'hopqcvza', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'tool', 'access', 'report'] list_processed_text: [['access'], ['engineering'], ['tool'], ['name'], ['gncpezhx'], ['hopqcvza'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['tool'], ['access'], ['report']] k: 8305 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8306 len: <class 'list'> Data: ['screensaver', 'company', 'center', 'screensaver', 'company', 'center'] processed_text: ['screensaver', 'company', 'center', 'screensaver', 'company', 'center'] list_processed_text: [['screensaver'], ['company'], ['center'], ['screensaver'], ['company'], ['center']] k: 8307 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8308 len: <class 'list'> Data: ['company', 'screen', 'saver', 'changed', 'company', 'screen', 'saver', 'company', 'screen', 'saver', 'changed', 'company', 'screen', 'saver', 'last', 'update', 'pc', 'please', 'change', 'back', 'company', 'fix', 'programdnty', 'company', 'screen', 'saver', 'get', 'changed'] processed_text: ['company', 'screen', 'saver', 'changed', 'company', 'screen', 'saver', 'company', 'screen', 'saver', 'changed', 'company', 'screen', 'saver', 'last', 'update', 'pc', 'please', 'change', 'back', 'company', 'fix', 'programdnty', 'company', 'screen', 'saver', 'get', 'changed'] list_processed_text: [['company'], ['screen'], ['saver'], ['changed'], ['company'], ['screen'], ['saver'], ['company'], ['screen'], ['saver'], ['changed'], ['company'], ['screen'], ['saver'], ['last'], ['update'], ['pc'], ['please'], ['change'], ['back'], ['company'], ['fix'], ['programdnty'], ['company'], ['screen'], ['saver'], ['get'], ['changed']] k: 8309 len: <class 'list'> Data: ['infoblox', 'chicago', 'office', 'stopped', 'issuing', 'ip', 'address', 'also', 'beeping', 'led', 'flashing'] processed_text: ['infoblox', 'chicago', 'office', 'stopped', 'issuing', 'ip', 'address', 'also', 'beeping', 'led', 'flashing'] list_processed_text: [['infoblox'], ['chicago'], ['office'], ['stopped'], ['issuing'], ['ip'], ['address'], ['also'], ['beeping'], ['led'], ['flashing']] k: 8310 len: <class 'list'> Data: ['vitalyst', 'icon', 'desktop', 'hello', 'helpdesk', 'help', 'myhzrtsi', 'rwnhqiyv', 'download', 'vitalyst', 'icon', 'desktop', 'please'] processed_text: ['vitalyst', 'icon', 'desktop', 'hello', 'helpdesk', 'help', 'myhzrtsi', 'rwnhqiyv', 'download', 'vitalyst', 'icon', 'desktop', 'please'] list_processed_text: [['vitalyst'], ['icon'], ['desktop'], ['hello'], ['helpdesk'], ['help'], ['myhzrtsi'], ['rwnhqiyv'], ['download'], ['vitalyst'], ['icon'], ['desktop'], ['please']] k: 8311 len: <class 'list'> Data: ['outlook', 'keep', 'prompting', 'password', 'outlook', 'keep', 'prompting', 'password'] processed_text: ['outlook', 'keep', 'prompting', 'password', 'outlook', 'keep', 'prompting', 'password'] list_processed_text: [['outlook'], ['keep'], ['prompting'], ['password'], ['outlook'], ['keep'], ['prompting'], ['password']] k: 8312 len: <class 'list'> Data: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] processed_text: ['unable', 'login', 'collaboration', 'platform', 'unable', 'login', 'collaboration', 'platform'] list_processed_text: [['unable'], ['login'], ['collaboration'], ['platform'], ['unable'], ['login'], ['collaboration'], ['platform']] k: 8313 len: <class 'list'> Data: ['need', 'know', 'able', 'send', 'smtp', 'via', 'please', 'could', 'someone', 'check', 'allowed', 'send', 'smtp', 'via', 'need', 'possibility', 'send', 'inwarehouse', 'tool', 'approval', 'via', 'mail', 'functionality', 'work', 'past', 'important', 'finance', 'department', 'please', 'let', 'know', 'stopped'] processed_text: ['need', 'know', 'able', 'send', 'smtp', 'via', 'please', 'could', 'someone', 'check', 'allowed', 'send', 'smtp', 'via', 'need', 'possibility', 'send', 'inwarehouse', 'tool', 'approval', 'via', 'mail', 'functionality', 'work', 'past', 'important', 'finance', 'department', 'please', 'let', 'know', 'stopped'] list_processed_text: [['need'], ['know'], ['able'], ['send'], ['smtp'], ['via'], ['please'], ['could'], ['someone'], ['check'], ['allowed'], ['send'], ['smtp'], ['via'], ['need'], ['possibility'], ['send'], ['inwarehouse'], ['tool'], ['approval'], ['via'], ['mail'], ['functionality'], ['work'], ['past'], ['important'], ['finance'], ['department'], ['please'], ['let'], ['know'], ['stopped']] k: 8314 len: <class 'list'> Data: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'urgapyzt', 'tnxiuramdnty', 'id', 'vaghyliort', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'urgapyzt', 'tnxiuramdnty', 'id', 'vaghyliort'] processed_text: ['unlock', 'account', 'email', 'cell', 'phone', 'user', 'urgapyzt', 'tnxiuramdnty', 'id', 'vaghyliort', 'hello', 'team', 'could', 'please', 'unlock', 'account', 'email', 'cell', 'phone', 'user', 'urgapyzt', 'tnxiuramdnty', 'id', 'vaghyliort'] list_processed_text: [['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['urgapyzt'], ['tnxiuramdnty'], ['id'], ['vaghyliort'], ['hello'], ['team'], ['could'], ['please'], ['unlock'], ['account'], ['email'], ['cell'], ['phone'], ['user'], ['urgapyzt'], ['tnxiuramdnty'], ['id'], ['vaghyliort']] k: 8315 len: <class 'list'> Data: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] processed_text: ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'] list_processed_text: [['blank'], ['call'], ['loud'], ['noise'], ['blank'], ['call'], ['loud'], ['noise']] k: 8316 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 8317 len: <class 'list'> Data: ['update', 'ae', 'bw', 'hana', 'wesley', 'tomlin', 'wilsfgtjl', 'verboncouer', 'markhty', 'verboma', 'current', 'manager', 'tgewaniq', 'yepifgbl', 'need', 'change', 'mapping', 'chefgtnp', 'mason', 'bengtjamin', 'masonb', 'current', 'manager', 'tgewaniq', 'yepifgbl', 'need', 'change', 'mapping', 'chefgtnp'] processed_text: ['update', 'ae', 'bw', 'hana', 'wesley', 'tomlin', 'wilsfgtjl', 'verboncouer', 'markhty', 'verboma', 'current', 'manager', 'tgewaniq', 'yepifgbl', 'need', 'change', 'mapping', 'chefgtnp', 'mason', 'bengtjamin', 'masonb', 'current', 'manager', 'tgewaniq', 'yepifgbl', 'need', 'change', 'mapping', 'chefgtnp'] list_processed_text: [['update'], ['ae'], ['bw'], ['hana'], ['wesley'], ['tomlin'], ['wilsfgtjl'], ['verboncouer'], ['markhty'], ['verboma'], ['current'], ['manager'], ['tgewaniq'], ['yepifgbl'], ['need'], ['change'], ['mapping'], ['chefgtnp'], ['mason'], ['bengtjamin'], ['masonb'], ['current'], ['manager'], ['tgewaniq'], ['yepifgbl'], ['need'], ['change'], ['mapping'], ['chefgtnp']] k: 8318 len: <class 'list'> Data: ['update', 'ae', 'bw', 'hana', 'mys', 'ptmjvysi', 'vkrepcybwa', 'please', 'confirm', 'change', 'itslpwra', 'vybdkuoa', 'wilsfgtjl', 'mikhghytr', 'rushethryli', 'wilsfgtjl', 'talryhtir', 'michghytuael', 'tayloml', 'current', 'manager', 'andrdgrtew', 'mohnrysu', 'need', 'change', 'mapping', 'mondhrbaz'] processed_text: ['update', 'ae', 'bw', 'hana', 'mys', 'ptmjvysi', 'vkrepcybwa', 'please', 'confirm', 'change', 'itslpwra', 'vybdkuoa', 'wilsfgtjl', 'mikhghytr', 'rushethryli', 'wilsfgtjl', 'talryhtir', 'michghytuael', 'tayloml', 'current', 'manager', 'andrdgrtew', 'mohnrysu', 'need', 'change', 'mapping', 'mondhrbaz'] list_processed_text: [['update'], ['ae'], ['bw'], ['hana'], ['mys'], ['ptmjvysi'], ['vkrepcybwa'], ['please'], ['confirm'], ['change'], ['itslpwra'], ['vybdkuoa'], ['wilsfgtjl'], ['mikhghytr'], ['rushethryli'], ['wilsfgtjl'], ['talryhtir'], ['michghytuael'], ['tayloml'], ['current'], ['manager'], ['andrdgrtew'], ['mohnrysu'], ['need'], ['change'], ['mapping'], ['mondhrbaz']] k: 8319 len: <class 'list'> Data: ['update', 'ae', 'bw', 'hana', 'wiksufty', 'jimdghty', 'manager', 'believe', 'user', 'id', 'need', 'change', 'zazrtulds', 'carmer', 'craigfgh', 'cardfrmeca', 'please', 'confirm', 'change', 'itslpwra', 'vybdkuoa', 'wilsfgtjl', 'povich', 'trtgoy', 'mgr', 'povictcfgt', 'current', 'manager', 'andrdgrtew', 'mohnrysu', 'need', 'change', 'mapping', 'mondhrbaz', 'mohnrysu', 'andrdgrtew', 'current', 'manager', 'johthryu', 'marftgytin', 'need', 'change', 'mapping', 'magtyrtijc'] processed_text: ['update', 'ae', 'bw', 'hana', 'wiksufty', 'jimdghty', 'manager', 'believe', 'user', 'id', 'need', 'change', 'zazrtulds', 'carmer', 'craigfgh', 'cardfrmeca', 'please', 'confirm', 'change', 'itslpwra', 'vybdkuoa', 'wilsfgtjl', 'povich', 'trtgoy', 'mgr', 'povictcfgt', 'current', 'manager', 'andrdgrtew', 'mohnrysu', 'need', 'change', 'mapping', 'mondhrbaz', 'mohnrysu', 'andrdgrtew', 'current', 'manager', 'johthryu', 'marftgytin', 'need', 'change', 'mapping', 'magtyrtijc'] list_processed_text: [['update'], ['ae'], ['bw'], ['hana'], ['wiksufty'], ['jimdghty'], ['manager'], ['believe'], ['user'], ['id'], ['need'], ['change'], ['zazrtulds'], ['carmer'], ['craigfgh'], ['cardfrmeca'], ['please'], ['confirm'], ['change'], ['itslpwra'], ['vybdkuoa'], ['wilsfgtjl'], ['povich'], ['trtgoy'], ['mgr'], ['povictcfgt'], ['current'], ['manager'], ['andrdgrtew'], ['mohnrysu'], ['need'], ['change'], ['mapping'], ['mondhrbaz'], ['mohnrysu'], ['andrdgrtew'], ['current'], ['manager'], ['johthryu'], ['marftgytin'], ['need'], ['change'], ['mapping'], ['magtyrtijc']] k: 8320 len: <class 'list'> Data: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'santrhyat', 'last', 'name', 'jagthyin', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] processed_text: ['request', 'reset', 'microsoft', 'online', 'service', 'password', 'microsoft', 'behalf', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'tiyhum', 'kuyiomar', 'amar', 'request', 'reset', 'microsoft', 'online', 'service', 'password', 'importance', 'high', 'request', 'reset', 'user', 'password', 'following', 'user', 'organization', 'requested', 'password', 'reset', 'performed', 'account', 'first', 'name', 'santrhyat', 'last', 'name', 'jagthyin', 'consider', 'contacting', 'user', 'validate', 'request', 'authentic', 'continuing', 'determined', 'valid', 'request', 'use', 'service', 'admin', 'portal', 'office', 'window', 'intune', 'window', 'azure', 'etc', 'reset', 'password', 'user', 'want', 'let', 'user', 'reset', 'password', 'check', 'enable', 'password', 'reset', 'user', 'organization', 'click', 'sincerely', 'company', 'inc', 'message', 'sent', 'unmonitored', 'email', 'address', 'please', 'reply', 'message'] list_processed_text: [['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['microsoft'], ['behalf'], ['company'], ['inc'], ['mail'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['tiyhum'], ['kuyiomar'], ['amar'], ['request'], ['reset'], ['microsoft'], ['online'], ['service'], ['password'], ['importance'], ['high'], ['request'], ['reset'], ['user'], ['password'], ['following'], ['user'], ['organization'], ['requested'], ['password'], ['reset'], ['performed'], ['account'], ['first'], ['name'], ['santrhyat'], ['last'], ['name'], ['jagthyin'], ['consider'], ['contacting'], ['user'], ['validate'], ['request'], ['authentic'], ['continuing'], ['determined'], ['valid'], ['request'], ['use'], ['service'], ['admin'], ['portal'], ['office'], ['window'], ['intune'], ['window'], ['azure'], ['etc'], ['reset'], ['password'], ['user'], ['want'], ['let'], ['user'], ['reset'], ['password'], ['check'], ['enable'], ['password'], ['reset'], ['user'], ['organization'], ['click'], ['sincerely'], ['company'], ['inc'], ['message'], ['sent'], ['unmonitored'], ['email'], ['address'], ['please'], ['reply'], ['message']] k: 8321 len: <class 'list'> Data: ['xwlcqfsr', 'lbcqfnie', 'able', 'open', 'purchasing', 'xwlcqfsr', 'lbcqfnie', 'phone', 'problem', 'purchasing', 'access', 'email', 'attached', 'addressing', 'issue', 'please', 'contract', 'keith', 'resolve'] processed_text: ['xwlcqfsr', 'lbcqfnie', 'able', 'open', 'purchasing', 'xwlcqfsr', 'lbcqfnie', 'phone', 'problem', 'purchasing', 'access', 'email', 'attached', 'addressing', 'issue', 'please', 'contract', 'keith', 'resolve'] list_processed_text: [['xwlcqfsr'], ['lbcqfnie'], ['able'], ['open'], ['purchasing'], ['xwlcqfsr'], ['lbcqfnie'], ['phone'], ['problem'], ['purchasing'], ['access'], ['email'], ['attached'], ['addressing'], ['issue'], ['please'], ['contract'], ['keith'], ['resolve']] k: 8322 len: <class 'list'> Data: ['locked', 'caas', 'application', 'locked', 'caas', 'application'] processed_text: ['locked', 'caas', 'application', 'locked', 'caas', 'application'] list_processed_text: [['locked'], ['caas'], ['application'], ['locked'], ['caas'], ['application']] k: 8323 len: <class 'list'> Data: ['insert', 'option', 'wrking', 'excel', 'insert', 'option', 'working', 'excel'] processed_text: ['insert', 'option', 'wrking', 'excel', 'insert', 'option', 'working', 'excel'] list_processed_text: [['insert'], ['option'], ['wrking'], ['excel'], ['insert'], ['option'], ['working'], ['excel']] k: 8324 len: <class 'list'> Data: ['vlinspectkiosk', 'qlhmawgi', 'sgwipoxn', 'locked', 'vlinspectkiosk', 'qlhmawgi', 'sgwipoxn', 'locked'] processed_text: ['vlinspectkiosk', 'qlhmawgi', 'sgwipoxn', 'locked', 'vlinspectkiosk', 'qlhmawgi', 'sgwipoxn', 'locked'] list_processed_text: [['vlinspectkiosk'], ['qlhmawgi'], ['sgwipoxn'], ['locked'], ['vlinspectkiosk'], ['qlhmawgi'], ['sgwipoxn'], ['locked']] k: 8325 len: <class 'list'> Data: ['cant', 'access', 'network', 'drive', 'cant', 'access', 'network', 'drive'] processed_text: ['cant', 'access', 'network', 'drive', 'cant', 'access', 'network', 'drive'] list_processed_text: [['cant'], ['access'], ['network'], ['drive'], ['cant'], ['access'], ['network'], ['drive']] k: 8326 len: <class 'list'> Data: ['please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe', 'please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe'] processed_text: ['please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe', 'please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe'] list_processed_text: [['please'], ['turn'], ['eligibility'], ['ethic'], ['user'], ['wqinjkxs'], ['azoyklqe'], ['please'], ['turn'], ['eligibility'], ['ethic'], ['user'], ['wqinjkxs'], ['azoyklqe']] k: 8327 len: <class 'list'> Data: ['ecc', 'qa', 'peer', 'certificate', 'rejected', 'chainverifier', 'found', 'eccqa', 'certificate', 'valid', 'error', 'got', 'talking', 'one', 'apis', 'ecc', 'qa', 'build', 'http', 'worker', 'exception', 'error', 'message', 'error', 'silently', 'connecting', 'org', 'wc', 'www', 'protocol', 'http', 'httpexception', 'peer', 'certificate', 'rejected', 'chainverifier', 'detailed', 'error', 'message', 'error', 'silently', 'connecting', 'org', 'wc', 'www', 'protocol', 'http', 'httpexception', 'peer', 'certificate', 'rejected', 'chainverifier', 'web', 'service', 'input', 'paramdntys', 'property', 'class', 'value', 'class', 'com', 'company', 'connect', 'bb', 'dataconnectors', 'io', 'customer', 'customersearchinputtype', 'property', 'commoninput', 'value', 'commoninputs', 'brand', 'kd', 'distchannel', 'division', 'language', 'maxrows', 'salesorg', 'soldto', 'property', 'customerattributes', 'value', 'customerattributes', 'attributecode', 'attributetext', 'attributetype', 'property', 'customersearch', 'value', 'customersearch', 'customeraddress', 'customeraddress', 'city', 'country', 'countrylong', 'district', 'email', 'fax', 'houseno', 'name', 'name', 'name', 'state', 'statelong', 'street', 'street', 'telephone', 'zipcode', 'customername', 'customername', 'customerno', 'customertype', 'property', 'partnerrole', 'value', 'webserviceclient', 'execute', 'generirtc', 'exception', 'please', 'get', 'fixed', 'soon', 'lot', 'uacyltoe', 'hxgayczeing', 'going', 'qa', 'need', 'qa', 'system', 'back', 'line', 'soon', 'vendor', 'also', 'demo', 'new', 'project', 'completed', 'company', 'business', 'since', 'certificate', 'issue', 'postpone', 'hence', 'please', 'treat', 'urgent', 'fix', 'soon', 'possible'] processed_text: ['ecc', 'qa', 'peer', 'certificate', 'rejected', 'chainverifier', 'found', 'eccqa', 'certificate', 'valid', 'error', 'got', 'talking', 'one', 'apis', 'ecc', 'qa', 'build', 'http', 'worker', 'exception', 'error', 'message', 'error', 'silently', 'connecting', 'org', 'wc', 'www', 'protocol', 'http', 'httpexception', 'peer', 'certificate', 'rejected', 'chainverifier', 'detailed', 'error', 'message', 'error', 'silently', 'connecting', 'org', 'wc', 'www', 'protocol', 'http', 'httpexception', 'peer', 'certificate', 'rejected', 'chainverifier', 'web', 'service', 'input', 'paramdntys', 'property', 'class', 'value', 'class', 'com', 'company', 'connect', 'bb', 'dataconnectors', 'io', 'customer', 'customersearchinputtype', 'property', 'commoninput', 'value', 'commoninputs', 'brand', 'kd', 'distchannel', 'division', 'language', 'maxrows', 'salesorg', 'soldto', 'property', 'customerattributes', 'value', 'customerattributes', 'attributecode', 'attributetext', 'attributetype', 'property', 'customersearch', 'value', 'customersearch', 'customeraddress', 'customeraddress', 'city', 'country', 'countrylong', 'district', 'email', 'fax', 'houseno', 'name', 'name', 'name', 'state', 'statelong', 'street', 'street', 'telephone', 'zipcode', 'customername', 'customername', 'customerno', 'customertype', 'property', 'partnerrole', 'value', 'webserviceclient', 'execute', 'generirtc', 'exception', 'please', 'get', 'fixed', 'soon', 'lot', 'uacyltoe', 'hxgayczeing', 'going', 'qa', 'need', 'qa', 'system', 'back', 'line', 'soon', 'vendor', 'also', 'demo', 'new', 'project', 'completed', 'company', 'business', 'since', 'certificate', 'issue', 'postpone', 'hence', 'please', 'treat', 'urgent', 'fix', 'soon', 'possible'] list_processed_text: [['ecc'], ['qa'], ['peer'], ['certificate'], ['rejected'], ['chainverifier'], ['found'], ['eccqa'], ['certificate'], ['valid'], ['error'], ['got'], ['talking'], ['one'], ['apis'], ['ecc'], ['qa'], ['build'], ['http'], ['worker'], ['exception'], ['error'], ['message'], ['error'], ['silently'], ['connecting'], ['org'], ['wc'], ['www'], ['protocol'], ['http'], ['httpexception'], ['peer'], ['certificate'], ['rejected'], ['chainverifier'], ['detailed'], ['error'], ['message'], ['error'], ['silently'], ['connecting'], ['org'], ['wc'], ['www'], ['protocol'], ['http'], ['httpexception'], ['peer'], ['certificate'], ['rejected'], ['chainverifier'], ['web'], ['service'], ['input'], ['paramdntys'], ['property'], ['class'], ['value'], ['class'], ['com'], ['company'], ['connect'], ['bb'], ['dataconnectors'], ['io'], ['customer'], ['customersearchinputtype'], ['property'], ['commoninput'], ['value'], ['commoninputs'], ['brand'], ['kd'], ['distchannel'], ['division'], ['language'], ['maxrows'], ['salesorg'], ['soldto'], ['property'], ['customerattributes'], ['value'], ['customerattributes'], ['attributecode'], ['attributetext'], ['attributetype'], ['property'], ['customersearch'], ['value'], ['customersearch'], ['customeraddress'], ['customeraddress'], ['city'], ['country'], ['countrylong'], ['district'], ['email'], ['fax'], ['houseno'], ['name'], ['name'], ['name'], ['state'], ['statelong'], ['street'], ['street'], ['telephone'], ['zipcode'], ['customername'], ['customername'], ['customerno'], ['customertype'], ['property'], ['partnerrole'], ['value'], ['webserviceclient'], ['execute'], ['generirtc'], ['exception'], ['please'], ['get'], ['fixed'], ['soon'], ['lot'], ['uacyltoe'], ['hxgayczeing'], ['going'], ['qa'], ['need'], ['qa'], ['system'], ['back'], ['line'], ['soon'], ['vendor'], ['also'], ['demo'], ['new'], ['project'], ['completed'], ['company'], ['business'], ['since'], ['certificate'], ['issue'], ['postpone'], ['hence'], ['please'], ['treat'], ['urgent'], ['fix'], ['soon'], ['possible']] k: 8328 len: <class 'list'> Data: ['please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza', 'please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza'] processed_text: ['please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza', 'please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza'] list_processed_text: [['please'], ['change'], ['email'], ['address'], ['user'], ['gncpezhx'], ['hopqcvza'], ['please'], ['change'], ['email'], ['address'], ['user'], ['gncpezhx'], ['hopqcvza']] k: 8329 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'o', 'dly', 'dp'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'o', 'dly', 'dp', 'abended', 'job', 'job', 'scheduler', 'bk', 'hana', 'sid', 'o', 'dly', 'dp'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp'], ['abended'], ['job'], ['job'], ['scheduler'], ['bk'], ['hana'], ['sid'], ['o'], ['dly'], ['dp']] k: 8330 len: <class 'list'> Data: ['ethic', 'issue', 'inc', 'please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe', 'inc', 'please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza'] processed_text: ['ethic', 'issue', 'inc', 'please', 'turn', 'eligibility', 'ethic', 'user', 'wqinjkxs', 'azoyklqe', 'inc', 'please', 'change', 'email', 'address', 'user', 'gncpezhx', 'hopqcvza'] list_processed_text: [['ethic'], ['issue'], ['inc'], ['please'], ['turn'], ['eligibility'], ['ethic'], ['user'], ['wqinjkxs'], ['azoyklqe'], ['inc'], ['please'], ['change'], ['email'], ['address'], ['user'], ['gncpezhx'], ['hopqcvza']] k: 8331 len: <class 'list'> Data: ['mdm', 'tool', 'working', 'via', 'citrix', 'system', 'hello', 'team', 'could', 'please', 'support', 'mdm', 'issue', 'via', 'citrix', 'application', 'mdm', 'data', 'manager', 'mdm', 'import', 'manager', 'work', 'trying', 'upload', 'catalog', 'find', 'error', 'print', 'screen', 'attached'] processed_text: ['mdm', 'tool', 'working', 'via', 'citrix', 'system', 'hello', 'team', 'could', 'please', 'support', 'mdm', 'issue', 'via', 'citrix', 'application', 'mdm', 'data', 'manager', 'mdm', 'import', 'manager', 'work', 'trying', 'upload', 'catalog', 'find', 'error', 'print', 'screen', 'attached'] list_processed_text: [['mdm'], ['tool'], ['working'], ['via'], ['citrix'], ['system'], ['hello'], ['team'], ['could'], ['please'], ['support'], ['mdm'], ['issue'], ['via'], ['citrix'], ['application'], ['mdm'], ['data'], ['manager'], ['mdm'], ['import'], ['manager'], ['work'], ['trying'], ['upload'], ['catalog'], ['find'], ['error'], ['print'], ['screen'], ['attached']] k: 8332 len: <class 'list'> Data: ['benefit', 'issue', 'benefit', 'issue'] processed_text: ['benefit', 'issue', 'benefit', 'issue'] list_processed_text: [['benefit'], ['issue'], ['benefit'], ['issue']] k: 8333 len: <class 'list'> Data: ['unable', 'login', 'skype', 'certificate', 'error', 'unable', 'login', 'skype', 'certificate', 'error'] processed_text: ['unable', 'login', 'skype', 'certificate', 'error', 'unable', 'login', 'skype', 'certificate', 'error'] list_processed_text: [['unable'], ['login'], ['skype'], ['certificate'], ['error'], ['unable'], ['login'], ['skype'], ['certificate'], ['error']] k: 8334 len: <class 'list'> Data: ['xerox', 'copier', 'prtqx', 'scan', 'email', 'xerox', 'copier', 'prtqx', 'scan', 'email'] processed_text: ['xerox', 'copier', 'prtqx', 'scan', 'email', 'xerox', 'copier', 'prtqx', 'scan', 'email'] list_processed_text: [['xerox'], ['copier'], ['prtqx'], ['scan'], ['email'], ['xerox'], ['copier'], ['prtqx'], ['scan'], ['email']] k: 8335 len: <class 'list'> Data: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] processed_text: ['ticket', 'update', 'inplant', 'ticket', 'update', 'inplant'] list_processed_text: [['ticket'], ['update'], ['inplant'], ['ticket'], ['update'], ['inplant']] k: 8336 len: <class 'list'> Data: ['ticket', 'ticket', 'update', 'anftgup', 'nftgyair', 'ticket', 'ticket', 'update', 'anftgup', 'nftgyair'] processed_text: ['ticket', 'ticket', 'update', 'anftgup', 'nftgyair', 'ticket', 'ticket', 'update', 'anftgup', 'nftgyair'] list_processed_text: [['ticket'], ['ticket'], ['update'], ['anftgup'], ['nftgyair'], ['ticket'], ['ticket'], ['update'], ['anftgup'], ['nftgyair']] k: 8337 len: <class 'list'> Data: ['outlook', 'issue', 'crm', 'giving', 'error', 'message', 'outlook', 'issue', 'crm', 'giving', 'error', 'message'] processed_text: ['outlook', 'issue', 'crm', 'giving', 'error', 'message', 'outlook', 'issue', 'crm', 'giving', 'error', 'message'] list_processed_text: [['outlook'], ['issue'], ['crm'], ['giving'], ['error'], ['message'], ['outlook'], ['issue'], ['crm'], ['giving'], ['error'], ['message']] k: 8338 len: <class 'list'> Data: ['outlook', 'open', 'stuck', 'screen', 'showing', 'processing', 'outlook', 'open', 'stuck', 'screen', 'showing', 'processing'] processed_text: ['outlook', 'open', 'stuck', 'screen', 'showing', 'processing', 'outlook', 'open', 'stuck', 'screen', 'showing', 'processing'] list_processed_text: [['outlook'], ['open'], ['stuck'], ['screen'], ['showing'], ['processing'], ['outlook'], ['open'], ['stuck'], ['screen'], ['showing'], ['processing']] k: 8339 len: <class 'list'> Data: ['mobile', 'broad', 'band', 'issue', 'mobile', 'broad', 'band', 'issue'] processed_text: ['mobile', 'broad', 'band', 'issue', 'mobile', 'broad', 'band', 'issue'] list_processed_text: [['mobile'], ['broad'], ['band'], ['issue'], ['mobile'], ['broad'], ['band'], ['issue']] k: 8340 len: <class 'list'> Data: ['ap', 'usa', 'training', 'room', 'disassociated', 'controller', 'controller', 'name', 'company', 'wlc', 'alarm', 'ap', 'usa', 'training', 'room', 'disassociated', 'controller', 'controller', 'name', 'company', 'wlc', 'timestamp', 'edt', 'device', 'usa', 'training', 'room', 'e', 'severity', 'critical'] processed_text: ['ap', 'usa', 'training', 'room', 'disassociated', 'controller', 'controller', 'name', 'company', 'wlc', 'alarm', 'ap', 'usa', 'training', 'room', 'disassociated', 'controller', 'controller', 'name', 'company', 'wlc', 'timestamp', 'edt', 'device', 'usa', 'training', 'room', 'e', 'severity', 'critical'] list_processed_text: [['ap'], ['usa'], ['training'], ['room'], ['disassociated'], ['controller'], ['controller'], ['name'], ['company'], ['wlc'], ['alarm'], ['ap'], ['usa'], ['training'], ['room'], ['disassociated'], ['controller'], ['controller'], ['name'], ['company'], ['wlc'], ['timestamp'], ['edt'], ['device'], ['usa'], ['training'], ['room'], ['e'], ['severity'], ['critical']] k: 8341 len: <class 'list'> Data: ['reset', 'password', 'nvawmlch', 'ubyjolnc', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'find', 'log', 'hour', 'time', 'period', 'reset', 'pas', 'word', 'wi', 'fi'] processed_text: ['reset', 'password', 'nvawmlch', 'ubyjolnc', 'erp', 'production', 'erp', 'please', 'reset', 'password', 'find', 'log', 'hour', 'time', 'period', 'reset', 'pas', 'word', 'wi', 'fi'] list_processed_text: [['reset'], ['password'], ['nvawmlch'], ['ubyjolnc'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['password'], ['find'], ['log'], ['hour'], ['time'], ['period'], ['reset'], ['pas'], ['word'], ['wi'], ['fi']] k: 8342 len: <class 'list'> Data: ['password', 'change', 'locked', 'password', 'management', 'tool', 'password', 'change', 'many', 'attempt', 'password', 'work', 'could', 'please', 'set'] processed_text: ['password', 'change', 'locked', 'password', 'management', 'tool', 'password', 'change', 'many', 'attempt', 'password', 'work', 'could', 'please', 'set'] list_processed_text: [['password'], ['change'], ['locked'], ['password'], ['management'], ['tool'], ['password'], ['change'], ['many'], ['attempt'], ['password'], ['work'], ['could'], ['please'], ['set']] k: 8343 len: <class 'list'> Data: ['spoof', 'email', 'issue', 'ugyothfz', 'ugrmkdhx', 'pm', 'ed', 'pasgryowski', 'rxuobtjg', 'grcmqa', 'tiyhum', 'kuyiomar', 'hqbxstoy', 'mdjftxli', 'dfupksnr', 'drnqjzph', 'epilwzux', 'qjhitbcr', 'zarlgjes', 'nxjvzcta', 'kzishqfu', 'bmdawzoi', 'sad'] processed_text: ['spoof', 'email', 'issue', 'ugyothfz', 'ugrmkdhx', 'pm', 'ed', 'pasgryowski', 'rxuobtjg', 'grcmqa', 'tiyhum', 'kuyiomar', 'hqbxstoy', 'mdjftxli', 'dfupksnr', 'drnqjzph', 'epilwzux', 'qjhitbcr', 'zarlgjes', 'nxjvzcta', 'kzishqfu', 'bmdawzoi', 'sad'] list_processed_text: [['spoof'], ['email'], ['issue'], ['ugyothfz'], ['ugrmkdhx'], ['pm'], ['ed'], ['pasgryowski'], ['rxuobtjg'], ['grcmqa'], ['tiyhum'], ['kuyiomar'], ['hqbxstoy'], ['mdjftxli'], ['dfupksnr'], ['drnqjzph'], ['epilwzux'], ['qjhitbcr'], ['zarlgjes'], ['nxjvzcta'], ['kzishqfu'], ['bmdawzoi'], ['sad']] k: 8344 len: <class 'list'> Data: ['server', 'hostname', 'responding', 'attempting', 'login', 'tax', 'interface', 'software', 'apply', 'update', 'server', 'hostname', 'responding', 'second', 'time', 'within', 'two', 'week', 'issue', 'server', 'please', 'advise', 'issue', 'corrected'] processed_text: ['server', 'hostname', 'responding', 'attempting', 'login', 'tax', 'interface', 'software', 'apply', 'update', 'server', 'hostname', 'responding', 'second', 'time', 'within', 'two', 'week', 'issue', 'server', 'please', 'advise', 'issue', 'corrected'] list_processed_text: [['server'], ['hostname'], ['responding'], ['attempting'], ['login'], ['tax'], ['interface'], ['software'], ['apply'], ['update'], ['server'], ['hostname'], ['responding'], ['second'], ['time'], ['within'], ['two'], ['week'], ['issue'], ['server'], ['please'], ['advise'], ['issue'], ['corrected']] k: 8345 len: <class 'list'> Data: ['micro', 'format', 'micro', 'format'] processed_text: ['micro', 'format', 'micro', 'format'] list_processed_text: [['micro'], ['format'], ['micro'], ['format']] k: 8346 len: <class 'list'> Data: ['security', 'error', 'travel', 'expense', 'accounting', 'programdnty', 'security', 'error', 'travel', 'expense', 'accounting', 'programdnty'] processed_text: ['security', 'error', 'travel', 'expense', 'accounting', 'programdnty', 'security', 'error', 'travel', 'expense', 'accounting', 'programdnty'] list_processed_text: [['security'], ['error'], ['travel'], ['expense'], ['accounting'], ['programdnty'], ['security'], ['error'], ['travel'], ['expense'], ['accounting'], ['programdnty']] k: 8347 len: <class 'list'> Data: ['folder', 'access', 'hello', 'please', 'give', 'full', 'access', 'hmovlkyq', 'kinawsdv', 'iechuoxb', 'zcejmwsq', 'following', 'folder', 'hostname', 'team', 'finance', 'global', 'bank', 'bals', 'fy', 'file', 'hostname', 'team', 'finance', 'global', 'bank', 'bals', 'fy', 'kind'] processed_text: ['folder', 'access', 'hello', 'please', 'give', 'full', 'access', 'hmovlkyq', 'kinawsdv', 'iechuoxb', 'zcejmwsq', 'following', 'folder', 'hostname', 'team', 'finance', 'global', 'bank', 'bals', 'fy', 'file', 'hostname', 'team', 'finance', 'global', 'bank', 'bals', 'fy', 'kind'] list_processed_text: [['folder'], ['access'], ['hello'], ['please'], ['give'], ['full'], ['access'], ['hmovlkyq'], ['kinawsdv'], ['iechuoxb'], ['zcejmwsq'], ['following'], ['folder'], ['hostname'], ['team'], ['finance'], ['global'], ['bank'], ['bals'], ['fy'], ['file'], ['hostname'], ['team'], ['finance'], ['global'], ['bank'], ['bals'], ['fy'], ['kind']] k: 8348 len: <class 'list'> Data: ['supply', 'chain', 'software', 'hello', 'unable', 'access', 'supply', 'chain', 'software', 'recognize', 'password'] processed_text: ['supply', 'chain', 'software', 'hello', 'unable', 'access', 'supply', 'chain', 'software', 'recognize', 'password'] list_processed_text: [['supply'], ['chain'], ['software'], ['hello'], ['unable'], ['access'], ['supply'], ['chain'], ['software'], ['recognize'], ['password']] k: 8349 len: <class 'list'> Data: ['hostname', 'memory', 'usage', 'internal', 'error', 'unable', 'find', 'process', 'probe', 'process', 'failed', 'start', 'command', 'process', 'exe', 'error', 'insufficient', 'system', 'resource', 'exist', 'complete', 'requested', 'service'] processed_text: ['hostname', 'memory', 'usage', 'internal', 'error', 'unable', 'find', 'process', 'probe', 'process', 'failed', 'start', 'command', 'process', 'exe', 'error', 'insufficient', 'system', 'resource', 'exist', 'complete', 'requested', 'service'] list_processed_text: [['hostname'], ['memory'], ['usage'], ['internal'], ['error'], ['unable'], ['find'], ['process'], ['probe'], ['process'], ['failed'], ['start'], ['command'], ['process'], ['exe'], ['error'], ['insufficient'], ['system'], ['resource'], ['exist'], ['complete'], ['requested'], ['service']] k: 8350 len: <class 'list'> Data: ['company', 'screensaver', 'company', 'screensaver'] processed_text: ['company', 'screensaver', 'company', 'screensaver'] list_processed_text: [['company'], ['screensaver'], ['company'], ['screensaver']] k: 8351 len: <class 'list'> Data: ['unable', 'unlock', 'user', 'account', 'password', 'management', 'tool', 'id', 'password', 'manager', 'password', 'management', 'tool', 'problem', 'look', 'unlock', 'account', 'log', 'happens', 'every', 'user'] processed_text: ['unable', 'unlock', 'user', 'account', 'password', 'management', 'tool', 'id', 'password', 'manager', 'password', 'management', 'tool', 'problem', 'look', 'unlock', 'account', 'log', 'happens', 'every', 'user'] list_processed_text: [['unable'], ['unlock'], ['user'], ['account'], ['password'], ['management'], ['tool'], ['id'], ['password'], ['manager'], ['password'], ['management'], ['tool'], ['problem'], ['look'], ['unlock'], ['account'], ['log'], ['happens'], ['every'], ['user']] k: 8352 len: <class 'list'> Data: ['welcome', 'screen', 'germany', 'lobby', 'working', 'please', 'check', 'welcome', 'screen', 'germany', 'lobby', 'working', 'please', 'check'] processed_text: ['welcome', 'screen', 'germany', 'lobby', 'working', 'please', 'check', 'welcome', 'screen', 'germany', 'lobby', 'working', 'please', 'check'] list_processed_text: [['welcome'], ['screen'], ['germany'], ['lobby'], ['working'], ['please'], ['check'], ['welcome'], ['screen'], ['germany'], ['lobby'], ['working'], ['please'], ['check']] k: 8353 len: <class 'list'> Data: ['skype', 'looking', 'pathryu', 'etasthon', 'skype', 'type', 'name', 'search', 'bar', 'picture', 'show', 'robdyhr', 'hhnght', 'name', 'beside', 'nvamcrpq', 'gkrlmxne', 'show', 'robdyhr', 'hhnght', 'longer', 'company', 'perhaps', 'communication', 'intended', 'sent', 'robdyhr', 'hhnght', 'forwarded', 'pat', 'setting', 'incorrect', 'event', 'someone', 'look', 'correct'] processed_text: ['skype', 'looking', 'pathryu', 'etasthon', 'skype', 'type', 'name', 'search', 'bar', 'picture', 'show', 'robdyhr', 'hhnght', 'name', 'beside', 'nvamcrpq', 'gkrlmxne', 'show', 'robdyhr', 'hhnght', 'longer', 'company', 'perhaps', 'communication', 'intended', 'sent', 'robdyhr', 'hhnght', 'forwarded', 'pat', 'setting', 'incorrect', 'event', 'someone', 'look', 'correct'] list_processed_text: [['skype'], ['looking'], ['pathryu'], ['etasthon'], ['skype'], ['type'], ['name'], ['search'], ['bar'], ['picture'], ['show'], ['robdyhr'], ['hhnght'], ['name'], ['beside'], ['nvamcrpq'], ['gkrlmxne'], ['show'], ['robdyhr'], ['hhnght'], ['longer'], ['company'], ['perhaps'], ['communication'], ['intended'], ['sent'], ['robdyhr'], ['hhnght'], ['forwarded'], ['pat'], ['setting'], ['incorrect'], ['event'], ['someone'], ['look'], ['correct']] k: 8354 len: <class 'list'> Data: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] processed_text: ['unable', 'launch', 'outlook', 'unable', 'launch', 'outlook'] list_processed_text: [['unable'], ['launch'], ['outlook'], ['unable'], ['launch'], ['outlook']] k: 8355 len: <class 'list'> Data: ['m', 'crm', 'dynamic', 'outlook', 'm', 'crm', 'dynamic', 'outlook', 'error', 'error', 'occurred', 'prompting', 'item', 'm', 'dynamic', 'crm'] processed_text: ['m', 'crm', 'dynamic', 'outlook', 'm', 'crm', 'dynamic', 'outlook', 'error', 'error', 'occurred', 'prompting', 'item', 'm', 'dynamic', 'crm'] list_processed_text: [['m'], ['crm'], ['dynamic'], ['outlook'], ['m'], ['crm'], ['dynamic'], ['outlook'], ['error'], ['error'], ['occurred'], ['prompting'], ['item'], ['m'], ['dynamic'], ['crm']] k: 8356 len: <class 'list'> Data: ['new', 'employee', 'access', 'hr', 'tool', 'benefit', 'ethic', 'drive', 'c', 'x', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] processed_text: ['new', 'employee', 'access', 'hr', 'tool', 'benefit', 'ethic', 'drive', 'c', 'x', 'welcome', 'company', 'business', 'ethic', 'conduct', 'center', 'ethic', 'training', 'site', 'record', 'indicate', 'log', 'credential', 'used', 'access', 'site', 'company', 'collaboration', 'platform', 'match', 'record', 'file', 'within', 'active', 'directory', 'please', 'submit', 'ticket', 'global', 'support', 'center', 'ensure', 'network', 'log', 'id', 'correctly', 'entered', 'erp'] list_processed_text: [['new'], ['employee'], ['access'], ['hr'], ['tool'], ['benefit'], ['ethic'], ['drive'], ['c'], ['x'], ['welcome'], ['company'], ['business'], ['ethic'], ['conduct'], ['center'], ['ethic'], ['training'], ['site'], ['record'], ['indicate'], ['log'], ['credential'], ['used'], ['access'], ['site'], ['company'], ['collaboration'], ['platform'], ['match'], ['record'], ['file'], ['within'], ['active'], ['directory'], ['please'], ['submit'], ['ticket'], ['global'], ['support'], ['center'], ['ensure'], ['network'], ['log'], ['id'], ['correctly'], ['entered'], ['erp']] k: 8357 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 8358 len: <class 'list'> Data: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset'] processed_text: ['supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'password', 'reset'] list_processed_text: [['supply'], ['chain'], ['software'], ['password'], ['reset'], ['supply'], ['chain'], ['software'], ['password'], ['reset']] k: 8359 len: <class 'list'> Data: ['chat', 'disconnected', 'chat', 'disconnected'] processed_text: ['chat', 'disconnected', 'chat', 'disconnected'] list_processed_text: [['chat'], ['disconnected'], ['chat'], ['disconnected']] k: 8360 len: <class 'list'> Data: ['password', 'reset', 'supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'user', 'id', 'ludwidjfft'] processed_text: ['password', 'reset', 'supply', 'chain', 'software', 'password', 'reset', 'supply', 'chain', 'software', 'user', 'id', 'ludwidjfft'] list_processed_text: [['password'], ['reset'], ['supply'], ['chain'], ['software'], ['password'], ['reset'], ['supply'], ['chain'], ['software'], ['user'], ['id'], ['ludwidjfft']] k: 8361 len: <class 'list'> Data: ['supply', 'chain', 'software', 'login', 'good', 'morning', 'unable', 'log', 'supply', 'chain', 'software', 'please', 'reset', 'password', 'ryafbthn', 'mijhmijhmiles', 'leader', 'sale', 'msc'] processed_text: ['supply', 'chain', 'software', 'login', 'good', 'morning', 'unable', 'log', 'supply', 'chain', 'software', 'please', 'reset', 'password', 'ryafbthn', 'mijhmijhmiles', 'leader', 'sale', 'msc'] list_processed_text: [['supply'], ['chain'], ['software'], ['login'], ['good'], ['morning'], ['unable'], ['log'], ['supply'], ['chain'], ['software'], ['please'], ['reset'], ['password'], ['ryafbthn'], ['mijhmijhmiles'], ['leader'], ['sale'], ['msc']] k: 8362 len: <class 'list'> Data: ['pobleme', 'mit', 'combi', 'jionmpsf', 'wnkpzcmv', 'pobleme', 'mit', 'combi', 'jionmpsf', 'wnkpzcmv'] processed_text: ['pobleme', 'mit', 'combi', 'jionmpsf', 'wnkpzcmv', 'pobleme', 'mit', 'combi', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['pobleme'], ['mit'], ['combi'], ['jionmpsf'], ['wnkpzcmv'], ['pobleme'], ['mit'], ['combi'], ['jionmpsf'], ['wnkpzcmv']] k: 8363 len: <class 'list'> Data: ['slow', 'computer', 'review', 'niptbwdq', 'csenjruz', 'slow', 'computer', 'review', 'niptbwdq', 'csenjruz'] processed_text: ['slow', 'computer', 'review', 'niptbwdq', 'csenjruz', 'slow', 'computer', 'review', 'niptbwdq', 'csenjruz'] list_processed_text: [['slow'], ['computer'], ['review'], ['niptbwdq'], ['csenjruz'], ['slow'], ['computer'], ['review'], ['niptbwdq'], ['csenjruz']] k: 8364 len: <class 'list'> Data: ['attendance', 'tool', 'loading', 'internet', 'explorer', 'missing', 'adobe', 'flash', 'player', 'attendance', 'tool', 'loading', 'internet', 'explorer', 'missing', 'adobe', 'flash', 'player'] processed_text: ['attendance', 'tool', 'loading', 'internet', 'explorer', 'missing', 'adobe', 'flash', 'player', 'attendance', 'tool', 'loading', 'internet', 'explorer', 'missing', 'adobe', 'flash', 'player'] list_processed_text: [['attendance'], ['tool'], ['loading'], ['internet'], ['explorer'], ['missing'], ['adobe'], ['flash'], ['player'], ['attendance'], ['tool'], ['loading'], ['internet'], ['explorer'], ['missing'], ['adobe'], ['flash'], ['player']] k: 8365 len: <class 'list'> Data: ['setup', 'new', 'w', 'kebogxzp', 'difnjlkp', 'setup', 'new', 'w', 'kebogxzp', 'difnjlkp'] processed_text: ['setup', 'new', 'w', 'kebogxzp', 'difnjlkp', 'setup', 'new', 'w', 'kebogxzp', 'difnjlkp'] list_processed_text: [['setup'], ['new'], ['w'], ['kebogxzp'], ['difnjlkp'], ['setup'], ['new'], ['w'], ['kebogxzp'], ['difnjlkp']] k: 8366 len: <class 'list'> Data: ['bluetooth', 'keybankrd', 'defective', 'dardabthyr', 'bluetooth', 'keybankrd', 'defective', 'dardabthyr'] processed_text: ['bluetooth', 'keybankrd', 'defective', 'dardabthyr', 'bluetooth', 'keybankrd', 'defective', 'dardabthyr'] list_processed_text: [['bluetooth'], ['keybankrd'], ['defective'], ['dardabthyr'], ['bluetooth'], ['keybankrd'], ['defective'], ['dardabthyr']] k: 8367 len: <class 'list'> Data: ['erp', 'login', 'good', 'morning', 'please', 'reset', 'erp', 'login', 'tell', 'password', 'incorrect'] processed_text: ['erp', 'login', 'good', 'morning', 'please', 'reset', 'erp', 'login', 'tell', 'password', 'incorrect'] list_processed_text: [['erp'], ['login'], ['good'], ['morning'], ['please'], ['reset'], ['erp'], ['login'], ['tell'], ['password'], ['incorrect']] k: 8368 len: <class 'list'> Data: ['problem', 'screensaver', 'jionmpsf', 'wnkpzcmv', 'problem', 'screensaver', 'jionmpsf', 'wnkpzcmv'] processed_text: ['problem', 'screensaver', 'jionmpsf', 'wnkpzcmv', 'problem', 'screensaver', 'jionmpsf', 'wnkpzcmv'] list_processed_text: [['problem'], ['screensaver'], ['jionmpsf'], ['wnkpzcmv'], ['problem'], ['screensaver'], ['jionmpsf'], ['wnkpzcmv']] k: 8369 len: <class 'list'> Data: ['defective', 'mobile', 'phone', 'mobile', 'phone', 'gigaset', 'professional', 'extension', 'battery', 'defective', 'lt', 'longer', 'like', 'tag', 'display', 'hardly', 'see', 'anything', 'clip', 'defective'] processed_text: ['defective', 'mobile', 'phone', 'mobile', 'phone', 'gigaset', 'professional', 'extension', 'battery', 'defective', 'lt', 'longer', 'like', 'tag', 'display', 'hardly', 'see', 'anything', 'clip', 'defective'] list_processed_text: [['defective'], ['mobile'], ['phone'], ['mobile'], ['phone'], ['gigaset'], ['professional'], ['extension'], ['battery'], ['defective'], ['lt'], ['longer'], ['like'], ['tag'], ['display'], ['hardly'], ['see'], ['anything'], ['clip'], ['defective']] k: 8370 len: <class 'list'> Data: ['scm', 'software', 'able', 'login', 'account', 'must', 'wrong', 'password', 'matghyuthdw', 'username', 'dan', 'welcome', 'sandop', 'created', 'user', 'account', 'please', 'use', 'following', 'logn', 'credential', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] processed_text: ['scm', 'software', 'able', 'login', 'account', 'must', 'wrong', 'password', 'matghyuthdw', 'username', 'dan', 'welcome', 'sandop', 'created', 'user', 'account', 'please', 'use', 'following', 'logn', 'credential', 'dthyan', 'matheywtyuews', 'sale', 'manager', 'gl'] list_processed_text: [['scm'], ['software'], ['able'], ['login'], ['account'], ['must'], ['wrong'], ['password'], ['matghyuthdw'], ['username'], ['dan'], ['welcome'], ['sandop'], ['created'], ['user'], ['account'], ['please'], ['use'], ['following'], ['logn'], ['credential'], ['dthyan'], ['matheywtyuews'], ['sale'], ['manager'], ['gl']] k: 8371 len: <class 'list'> Data: ['driver', 'update', 'hello', 'team', 'please', 'update', 'drive', 'graphic', 'card', 'laptop', 'dell', 'let', 'know', 'required', 'detail'] processed_text: ['driver', 'update', 'hello', 'team', 'please', 'update', 'drive', 'graphic', 'card', 'laptop', 'dell', 'let', 'know', 'required', 'detail'] list_processed_text: [['driver'], ['update'], ['hello'], ['team'], ['please'], ['update'], ['drive'], ['graphic'], ['card'], ['laptop'], ['dell'], ['let'], ['know'], ['required'], ['detail']] k: 8372 len: <class 'list'> Data: ['erp', 'business', 'object', 'analysis', 'excel', 'error', 'message', 'add', 'registered', 'correctly', 'summary', 'need', 'acces', 'run', 'bex', 'report', 'showing', 'margin', 'access', 'qkmgtnla', 'buraxcij', 'pqkthilr', 'uitfqsen', 'also', 'also', 'erp', 'business', 'object', 'loaded', 'onto', 'machine', 'however', 'work', 'get', 'following', 'message', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly'] processed_text: ['erp', 'business', 'object', 'analysis', 'excel', 'error', 'message', 'add', 'registered', 'correctly', 'summary', 'need', 'acces', 'run', 'bex', 'report', 'showing', 'margin', 'access', 'qkmgtnla', 'buraxcij', 'pqkthilr', 'uitfqsen', 'also', 'also', 'erp', 'business', 'object', 'loaded', 'onto', 'machine', 'however', 'work', 'get', 'following', 'message', 'launcher', 'exited', 'error', 'see', 'log', 'file', 'detail', 'analysis', 'add', 'registered', 'correctly'] list_processed_text: [['erp'], ['business'], ['object'], ['analysis'], ['excel'], ['error'], ['message'], ['add'], ['registered'], ['correctly'], ['summary'], ['need'], ['acces'], ['run'], ['bex'], ['report'], ['showing'], ['margin'], ['access'], ['qkmgtnla'], ['buraxcij'], ['pqkthilr'], ['uitfqsen'], ['also'], ['also'], ['erp'], ['business'], ['object'], ['loaded'], ['onto'], ['machine'], ['however'], ['work'], ['get'], ['following'], ['message'], ['launcher'], ['exited'], ['error'], ['see'], ['log'], ['file'], ['detail'], ['analysis'], ['add'], ['registered'], ['correctly']] k: 8373 len: <class 'list'> Data: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] processed_text: ['window', 'account', 'lockout', 'window', 'account', 'lockout'] list_processed_text: [['window'], ['account'], ['lockout'], ['window'], ['account'], ['lockout']] k: 8374 len: <class 'list'> Data: ['cannot', 'reset', 'erp', 'password', 'longer', 'know', 'erp', 'password', 'entered', 'unsuccessful', 'attempt', 'please', 'reset'] processed_text: ['cannot', 'reset', 'erp', 'password', 'longer', 'know', 'erp', 'password', 'entered', 'unsuccessful', 'attempt', 'please', 'reset'] list_processed_text: [['cannot'], ['reset'], ['erp'], ['password'], ['longer'], ['know'], ['erp'], ['password'], ['entered'], ['unsuccessful'], ['attempt'], ['please'], ['reset']] k: 8375 len: <class 'list'> Data: ['vmware', 'tool', 'running', 'server', 'hostname', 'resided', 'host', 'hostname', 'vmware', 'tool', 'running', 'server', 'hostname', 'resided', 'host', 'hostname', 'backup', 'job', 'failing'] processed_text: ['vmware', 'tool', 'running', 'server', 'hostname', 'resided', 'host', 'hostname', 'vmware', 'tool', 'running', 'server', 'hostname', 'resided', 'host', 'hostname', 'backup', 'job', 'failing'] list_processed_text: [['vmware'], ['tool'], ['running'], ['server'], ['hostname'], ['resided'], ['host'], ['hostname'], ['vmware'], ['tool'], ['running'], ['server'], ['hostname'], ['resided'], ['host'], ['hostname'], ['backup'], ['job'], ['failing']] k: 8376 len: <class 'list'> Data: ['new', 'employee', 'able', 'login', 'system', 'vvrtgwildj', 'user', 'id', 'vvrtgwildj', 'name', 'johghajknnes', 'wildschuetz', 'user', 'logging', 'first', 'time', 'getting', 'error', 'die', 'sicherheisdatenbank', 'auf', 'dem', 'server', 'enth', 'lt', 'kein', 'computerkonto', 'r', 'diese', 'arbeitsstationsvertrauensstellung', 'error', 'security', 'database', 'server', 'contain', 'computer', 'account', 'workstation', 'trust', 'relationship', 'computer', 'name', 'efdl', 'contact'] processed_text: ['new', 'employee', 'able', 'login', 'system', 'vvrtgwildj', 'user', 'id', 'vvrtgwildj', 'name', 'johghajknnes', 'wildschuetz', 'user', 'logging', 'first', 'time', 'getting', 'error', 'die', 'sicherheisdatenbank', 'auf', 'dem', 'server', 'enth', 'lt', 'kein', 'computerkonto', 'r', 'diese', 'arbeitsstationsvertrauensstellung', 'error', 'security', 'database', 'server', 'contain', 'computer', 'account', 'workstation', 'trust', 'relationship', 'computer', 'name', 'efdl', 'contact'] list_processed_text: [['new'], ['employee'], ['able'], ['login'], ['system'], ['vvrtgwildj'], ['user'], ['id'], ['vvrtgwildj'], ['name'], ['johghajknnes'], ['wildschuetz'], ['user'], ['logging'], ['first'], ['time'], ['getting'], ['error'], ['die'], ['sicherheisdatenbank'], ['auf'], ['dem'], ['server'], ['enth'], ['lt'], ['kein'], ['computerkonto'], ['r'], ['diese'], ['arbeitsstationsvertrauensstellung'], ['error'], ['security'], ['database'], ['server'], ['contain'], ['computer'], ['account'], ['workstation'], ['trust'], ['relationship'], ['computer'], ['name'], ['efdl'], ['contact']] k: 8377 len: <class 'list'> Data: ['lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'expected', 'instance', 'gte', 'found'] processed_text: ['lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'lhqsm', 'fim', 'production', 'miiserver', 'exe', 'wrong', 'number', 'instance', 'process', 'miiserver', 'exe', 'expected', 'instance', 'gte', 'found'] list_processed_text: [['lhqsm'], ['fim'], ['production'], ['miiserver'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['miiserver'], ['exe'], ['lhqsm'], ['fim'], ['production'], ['miiserver'], ['exe'], ['wrong'], ['number'], ['instance'], ['process'], ['miiserver'], ['exe'], ['expected'], ['instance'], ['gte'], ['found']] k: 8378 len: <class 'list'> Data: ['new', 'email', 'problem', 'new', 'email', 'problem'] processed_text: ['new', 'email', 'problem', 'new', 'email', 'problem'] list_processed_text: [['new'], ['email'], ['problem'], ['new'], ['email'], ['problem']] k: 8379 len: <class 'list'> Data: ['zlxcsqdg', 'ckpojwir', 'cannot', 'see', 'customer', 'account', 'msd', 'crm', 'wilfert', 'find', 'three', 'customer', 'included', 'sale', 'plan', 'm', 'crm', 'active', 'account', 'view', 'also', 'think', 'list', 'belong', 'attached', 'email', 'ticket'] processed_text: ['zlxcsqdg', 'ckpojwir', 'cannot', 'see', 'customer', 'account', 'msd', 'crm', 'wilfert', 'find', 'three', 'customer', 'included', 'sale', 'plan', 'm', 'crm', 'active', 'account', 'view', 'also', 'think', 'list', 'belong', 'attached', 'email', 'ticket'] list_processed_text: [['zlxcsqdg'], ['ckpojwir'], ['cannot'], ['see'], ['customer'], ['account'], ['msd'], ['crm'], ['wilfert'], ['find'], ['three'], ['customer'], ['included'], ['sale'], ['plan'], ['m'], ['crm'], ['active'], ['account'], ['view'], ['also'], ['think'], ['list'], ['belong'], ['attached'], ['email'], ['ticket']] k: 8380 len: <class 'list'> Data: ['laptop', 'key', 'bankrd', 'working', 'dear', 'sir', 'keybankrd', 'laptop', 'working', 'please', 'need', 'full', 'laptop', 'detail', 'dell', 'latitude', 'win', 'bit', 'service', 'tag', 'computer', 'name', 'ainl', 'india', 'branch', 'best'] processed_text: ['laptop', 'key', 'bankrd', 'working', 'dear', 'sir', 'keybankrd', 'laptop', 'working', 'please', 'need', 'full', 'laptop', 'detail', 'dell', 'latitude', 'win', 'bit', 'service', 'tag', 'computer', 'name', 'ainl', 'india', 'branch', 'best'] list_processed_text: [['laptop'], ['key'], ['bankrd'], ['working'], ['dear'], ['sir'], ['keybankrd'], ['laptop'], ['working'], ['please'], ['need'], ['full'], ['laptop'], ['detail'], ['dell'], ['latitude'], ['win'], ['bit'], ['service'], ['tag'], ['computer'], ['name'], ['ainl'], ['india'], ['branch'], ['best']] k: 8381 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8382 len: <class 'list'> Data: ['telephony', 'software', 'status', 'update', 'telephony', 'software', 'automated', 'status', 'update', 'user', 'zjcsqtdn', 'jikyworg', 'activated', 'screen', 'saver', 'pressing', 'window', 'gabryltkla', 'maier', 'germany', 'warehouse', 'calling', 'phone', 'ringing', 'christgryta', 'status', 'changed', 'acd', 'agent', 'answering', 'automatically', 'loging', 'status', 'remaining', 'acd', 'agent', 'answering', 'call', 'id', 'facing', 'gap', 'occationally', 'would', 'please', 'let', 'u', 'know', 'could', 'status', 'changing', 'back', 'available', 'automatically'] processed_text: ['telephony', 'software', 'status', 'update', 'telephony', 'software', 'automated', 'status', 'update', 'user', 'zjcsqtdn', 'jikyworg', 'activated', 'screen', 'saver', 'pressing', 'window', 'gabryltkla', 'maier', 'germany', 'warehouse', 'calling', 'phone', 'ringing', 'christgryta', 'status', 'changed', 'acd', 'agent', 'answering', 'automatically', 'loging', 'status', 'remaining', 'acd', 'agent', 'answering', 'call', 'id', 'facing', 'gap', 'occationally', 'would', 'please', 'let', 'u', 'know', 'could', 'status', 'changing', 'back', 'available', 'automatically'] list_processed_text: [['telephony'], ['software'], ['status'], ['update'], ['telephony'], ['software'], ['automated'], ['status'], ['update'], ['user'], ['zjcsqtdn'], ['jikyworg'], ['activated'], ['screen'], ['saver'], ['pressing'], ['window'], ['gabryltkla'], ['maier'], ['germany'], ['warehouse'], ['calling'], ['phone'], ['ringing'], ['christgryta'], ['status'], ['changed'], ['acd'], ['agent'], ['answering'], ['automatically'], ['loging'], ['status'], ['remaining'], ['acd'], ['agent'], ['answering'], ['call'], ['id'], ['facing'], ['gap'], ['occationally'], ['would'], ['please'], ['let'], ['u'], ['know'], ['could'], ['status'], ['changing'], ['back'], ['available'], ['automatically']] k: 8383 len: <class 'list'> Data: ['distributor', 'tool', 'laoding', 'distributor', 'tool', 'loading'] processed_text: ['distributor', 'tool', 'laoding', 'distributor', 'tool', 'loading'] list_processed_text: [['distributor'], ['tool'], ['laoding'], ['distributor'], ['tool'], ['loading']] k: 8384 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8385 len: <class 'list'> Data: ['bls', 'beschichtungsleitstand', 'germany', 'workflow', 'error', 'pvd', 'error', 'message', 'laufzeitfehler', 'ung', 'ltige', 'verwendung', 'von', 'null', 'prompted', 'step', 'auftragsausgang', 'von', 'revision', 'freigegeben', 'pressing', 'okay', 'result', 'programdnty', 'crash', 'error', 'occured', 'first', 'time', 'morning', 'cet', 'one', 'batch', 'step', 'von', 'revision', 'freigegeben', 'moment', 'batch', 'stage', 'workflow', 'processed', 'usual', 'however', 'workflow', 'interrupted', 'batch', 'directly', 'critical', 'stage', 'processed', 'happens', 'pvd', 'cvd', 'running', 'without', 'issue'] processed_text: ['bls', 'beschichtungsleitstand', 'germany', 'workflow', 'error', 'pvd', 'error', 'message', 'laufzeitfehler', 'ung', 'ltige', 'verwendung', 'von', 'null', 'prompted', 'step', 'auftragsausgang', 'von', 'revision', 'freigegeben', 'pressing', 'okay', 'result', 'programdnty', 'crash', 'error', 'occured', 'first', 'time', 'morning', 'cet', 'one', 'batch', 'step', 'von', 'revision', 'freigegeben', 'moment', 'batch', 'stage', 'workflow', 'processed', 'usual', 'however', 'workflow', 'interrupted', 'batch', 'directly', 'critical', 'stage', 'processed', 'happens', 'pvd', 'cvd', 'running', 'without', 'issue'] list_processed_text: [['bls'], ['beschichtungsleitstand'], ['germany'], ['workflow'], ['error'], ['pvd'], ['error'], ['message'], ['laufzeitfehler'], ['ung'], ['ltige'], ['verwendung'], ['von'], ['null'], ['prompted'], ['step'], ['auftragsausgang'], ['von'], ['revision'], ['freigegeben'], ['pressing'], ['okay'], ['result'], ['programdnty'], ['crash'], ['error'], ['occured'], ['first'], ['time'], ['morning'], ['cet'], ['one'], ['batch'], ['step'], ['von'], ['revision'], ['freigegeben'], ['moment'], ['batch'], ['stage'], ['workflow'], ['processed'], ['usual'], ['however'], ['workflow'], ['interrupted'], ['batch'], ['directly'], ['critical'], ['stage'], ['processed'], ['happens'], ['pvd'], ['cvd'], ['running'], ['without'], ['issue']] k: 8386 len: <class 'list'> Data: ['erp', 'crm', 'sid', 'web', 'sold', 'account', 'saved', 'without', 'division', 'urgent', 'sold', 'account', 'extended', 'null', 'empty', 'division', 'happened', 'sold', 'account', 'saved', 'without', 'mandatory', 'field', 'big', 'issue', 'issue', 'generating', 'failed', 'queue', 'item', 'crm', 'msd', 'please', 'investigate', 'system', 'allowed', 'user', 'save'] processed_text: ['erp', 'crm', 'sid', 'web', 'sold', 'account', 'saved', 'without', 'division', 'urgent', 'sold', 'account', 'extended', 'null', 'empty', 'division', 'happened', 'sold', 'account', 'saved', 'without', 'mandatory', 'field', 'big', 'issue', 'issue', 'generating', 'failed', 'queue', 'item', 'crm', 'msd', 'please', 'investigate', 'system', 'allowed', 'user', 'save'] list_processed_text: [['erp'], ['crm'], ['sid'], ['web'], ['sold'], ['account'], ['saved'], ['without'], ['division'], ['urgent'], ['sold'], ['account'], ['extended'], ['null'], ['empty'], ['division'], ['happened'], ['sold'], ['account'], ['saved'], ['without'], ['mandatory'], ['field'], ['big'], ['issue'], ['issue'], ['generating'], ['failed'], ['queue'], ['item'], ['crm'], ['msd'], ['please'], ['investigate'], ['system'], ['allowed'], ['user'], ['save']] k: 8387 len: <class 'list'> Data: ['zmcp', 'working', 'plant', 'personnel', 'review', 'su', 'created', 'instead', 'ticket', 'ticket', 'qwsjptlo', 'hnlasbed', 'erp', 'sid', 'printed', 'jc', 'spool', 'userid', 'lynerwjgthy', 'plant', 'code', 'set', 'plant', 'label', 'print', 'successful', 'plant', 'code', 'set', 'plant', 'error', 'message', 'output'] processed_text: ['zmcp', 'working', 'plant', 'personnel', 'review', 'su', 'created', 'instead', 'ticket', 'ticket', 'qwsjptlo', 'hnlasbed', 'erp', 'sid', 'printed', 'jc', 'spool', 'userid', 'lynerwjgthy', 'plant', 'code', 'set', 'plant', 'label', 'print', 'successful', 'plant', 'code', 'set', 'plant', 'error', 'message', 'output'] list_processed_text: [['zmcp'], ['working'], ['plant'], ['personnel'], ['review'], ['su'], ['created'], ['instead'], ['ticket'], ['ticket'], ['qwsjptlo'], ['hnlasbed'], ['erp'], ['sid'], ['printed'], ['jc'], ['spool'], ['userid'], ['lynerwjgthy'], ['plant'], ['code'], ['set'], ['plant'], ['label'], ['print'], ['successful'], ['plant'], ['code'], ['set'], ['plant'], ['error'], ['message'], ['output']] k: 8388 len: <class 'list'> Data: ['printer', 'r', 'die', 'ups', 'lapel', 'print', 'correctly', 'printer', 'wckrxovs', "aunsgzmd's", 'place'] processed_text: ['printer', 'r', 'die', 'ups', 'lapel', 'print', 'correctly', 'printer', 'wckrxovs', "aunsgzmd's", 'place'] list_processed_text: [['printer'], ['r'], ['die'], ['ups'], ['lapel'], ['print'], ['correctly'], ['printer'], ['wckrxovs'], ["aunsgzmd's"], ['place']] k: 8389 len: <class 'list'> Data: ['dock', 'station', 'dock', 'station', 'working'] processed_text: ['dock', 'station', 'dock', 'station', 'working'] list_processed_text: [['dock'], ['station'], ['dock'], ['station'], ['working']] k: 8390 len: <class 'list'> Data: ['password', 'reset', 'request', 'password', 'management', 'tool', 'password', 'password', 'reset', 'request', 'password', 'management', 'tool', 'password'] processed_text: ['password', 'reset', 'request', 'password', 'management', 'tool', 'password', 'password', 'reset', 'request', 'password', 'management', 'tool', 'password'] list_processed_text: [['password'], ['reset'], ['request'], ['password'], ['management'], ['tool'], ['password'], ['password'], ['reset'], ['request'], ['password'], ['management'], ['tool'], ['password']] k: 8391 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8392 len: <class 'list'> Data: ['cursor', 'moving', 'typing', 'got', 'new', 'laptop', 'recently', 'cursor', 'jump', 'move', 'automatically', 'randomly', 'typing', 'window', 'laptop'] processed_text: ['cursor', 'moving', 'typing', 'got', 'new', 'laptop', 'recently', 'cursor', 'jump', 'move', 'automatically', 'randomly', 'typing', 'window', 'laptop'] list_processed_text: [['cursor'], ['moving'], ['typing'], ['got'], ['new'], ['laptop'], ['recently'], ['cursor'], ['jump'], ['move'], ['automatically'], ['randomly'], ['typing'], ['window'], ['laptop']] k: 8393 len: <class 'list'> Data: ['unable', 'login', 'impact', 'award', 'login', 'screen', 'unable', 'login', 'url'] processed_text: ['unable', 'login', 'impact', 'award', 'login', 'screen', 'unable', 'login', 'url'] list_processed_text: [['unable'], ['login'], ['impact'], ['award'], ['login'], ['screen'], ['unable'], ['login'], ['url']] k: 8394 len: <class 'list'> Data: ['turn', 'telephony', 'software', 'turkey', 'local', 'time', 'turn', 'telephony', 'software', 'turkey', 'local', 'time', 'due', 'meeting', 'approved', 'djpwfxzt', 'cfkwxlmq'] processed_text: ['turn', 'telephony', 'software', 'turkey', 'local', 'time', 'turn', 'telephony', 'software', 'turkey', 'local', 'time', 'due', 'meeting', 'approved', 'djpwfxzt', 'cfkwxlmq'] list_processed_text: [['turn'], ['telephony'], ['software'], ['turkey'], ['local'], ['time'], ['turn'], ['telephony'], ['software'], ['turkey'], ['local'], ['time'], ['due'], ['meeting'], ['approved'], ['djpwfxzt'], ['cfkwxlmq']] k: 8395 len: <class 'list'> Data: ['configair', 'server', 'production', 'responding', 'internal', 'server', 'error', 'config', 'air', 'server', 'run', 'internal', 'server', 'error', 'message', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'error', 'happens', 'csscdrill', 'model', 'mill', 'model', 'model', 'configair', 'coming', 'model', 'working', 'directly', 'business', 'impact', 'quotation'] processed_text: ['configair', 'server', 'production', 'responding', 'internal', 'server', 'error', 'config', 'air', 'server', 'run', 'internal', 'server', 'error', 'message', 'error', 'trying', 'invoke', 'method', 'java', 'util', 'list', 'iterator', 'null', 'object', 'loaded', 'local', 'variable', 'locallist', 'error', 'happens', 'csscdrill', 'model', 'mill', 'model', 'model', 'configair', 'coming', 'model', 'working', 'directly', 'business', 'impact', 'quotation'] list_processed_text: [['configair'], ['server'], ['production'], ['responding'], ['internal'], ['server'], ['error'], ['config'], ['air'], ['server'], ['run'], ['internal'], ['server'], ['error'], ['message'], ['error'], ['trying'], ['invoke'], ['method'], ['java'], ['util'], ['list'], ['iterator'], ['null'], ['object'], ['loaded'], ['local'], ['variable'], ['locallist'], ['error'], ['happens'], ['csscdrill'], ['model'], ['mill'], ['model'], ['model'], ['configair'], ['coming'], ['model'], ['working'], ['directly'], ['business'], ['impact'], ['quotation']] k: 8396 len: <class 'list'> Data: ['reset', 'password', 'obvyknzx', 'gzvjtish', 'erp', 'production', 'erp', 'please', 'reset', 'erp', 'password', 'sid'] processed_text: ['reset', 'password', 'obvyknzx', 'gzvjtish', 'erp', 'production', 'erp', 'please', 'reset', 'erp', 'password', 'sid'] list_processed_text: [['reset'], ['password'], ['obvyknzx'], ['gzvjtish'], ['erp'], ['production'], ['erp'], ['please'], ['reset'], ['erp'], ['password'], ['sid']] k: 8397 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['xd'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8398 len: <class 'list'> Data: ['please', 'reset', 'password', 'user', 'catgyhilp', 'es', 'kiosk', 'user', 'please', 'reset', 'password', 'user', 'catgyhilp', 'es', 'kiosk', 'user', 'please', 'email', 'change', 'information', 'coatea', 'whatlgp'] processed_text: ['please', 'reset', 'password', 'user', 'catgyhilp', 'es', 'kiosk', 'user', 'please', 'reset', 'password', 'user', 'catgyhilp', 'es', 'kiosk', 'user', 'please', 'email', 'change', 'information', 'coatea', 'whatlgp'] list_processed_text: [['please'], ['reset'], ['password'], ['user'], ['catgyhilp'], ['es'], ['kiosk'], ['user'], ['please'], ['reset'], ['password'], ['user'], ['catgyhilp'], ['es'], ['kiosk'], ['user'], ['please'], ['email'], ['change'], ['information'], ['coatea'], ['whatlgp']] k: 8399 len: <class 'list'> Data: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] processed_text: ['unable', 'connect', 'wifi', 'unable', 'connect', 'wifi'] list_processed_text: [['unable'], ['connect'], ['wifi'], ['unable'], ['connect'], ['wifi']] k: 8400 len: <class 'list'> Data: ['password', 'reset', 'erp', 'sid', 'password', 'reset', 'erp', 'sid'] processed_text: ['password', 'reset', 'erp', 'sid', 'password', 'reset', 'erp', 'sid'] list_processed_text: [['password'], ['reset'], ['erp'], ['sid'], ['password'], ['reset'], ['erp'], ['sid']] k: 8401 len: <class 'list'> Data: ['r', 'finished', 'start', 'sandop', 'process', 'xd', 'xd', 'xd', 'hello', 'xd', 'unable', 'sign', 'java', 'update', 'see', 'message', 'xd', 'xd', 'xd', 'best'] processed_text: ['r', 'finished', 'start', 'sandop', 'process', 'xd', 'xd', 'xd', 'hello', 'xd', 'unable', 'sign', 'java', 'update', 'see', 'message', 'xd', 'xd', 'xd', 'best'] list_processed_text: [['r'], ['finished'], ['start'], ['sandop'], ['process'], ['xd'], ['xd'], ['xd'], ['hello'], ['xd'], ['unable'], ['sign'], ['java'], ['update'], ['see'], ['message'], ['xd'], ['xd'], ['xd'], ['best']] k: 8402 len: <class 'list'> Data: ['aw', 'sid', 'erp', 'xd', 'xd', 'xd', 'hello', 'sandrgru', 'xd', 'xd', 'please', 'check', 'gui', 'setting', 'sid', 'xd', 'xd', 'xd'] processed_text: ['aw', 'sid', 'erp', 'xd', 'xd', 'xd', 'hello', 'sandrgru', 'xd', 'xd', 'please', 'check', 'gui', 'setting', 'sid', 'xd', 'xd', 'xd'] list_processed_text: [['aw'], ['sid'], ['erp'], ['xd'], ['xd'], ['xd'], ['hello'], ['sandrgru'], ['xd'], ['xd'], ['please'], ['check'], ['gui'], ['setting'], ['sid'], ['xd'], ['xd'], ['xd']] k: 8403 len: <class 'list'> Data: ['erp', 'business', 'client', 'password', 'blocked', 'asfgthok', 'topefd', 'nwfodmhc', 'exurcwkm', 'rad', 'fw', 'erp', 'business', 'client', 'password', 'blocked', 'importance', 'high', 'hello', 'facing', 'issue', 'opening', 'erp', 'password', 'blocked', 'let', 'u', 'needful', 'best'] processed_text: ['erp', 'business', 'client', 'password', 'blocked', 'asfgthok', 'topefd', 'nwfodmhc', 'exurcwkm', 'rad', 'fw', 'erp', 'business', 'client', 'password', 'blocked', 'importance', 'high', 'hello', 'facing', 'issue', 'opening', 'erp', 'password', 'blocked', 'let', 'u', 'needful', 'best'] list_processed_text: [['erp'], ['business'], ['client'], ['password'], ['blocked'], ['asfgthok'], ['topefd'], ['nwfodmhc'], ['exurcwkm'], ['rad'], ['fw'], ['erp'], ['business'], ['client'], ['password'], ['blocked'], ['importance'], ['high'], ['hello'], ['facing'], ['issue'], ['opening'], ['erp'], ['password'], ['blocked'], ['let'], ['u'], ['needful'], ['best']] k: 8404 len: <class 'list'> Data: ['need', 'teamviewer', 'full', 'version', 'visio', 'application', 'need', 'teamviewer', 'full', 'version', 'visio', 'application'] processed_text: ['need', 'teamviewer', 'full', 'version', 'visio', 'application', 'need', 'teamviewer', 'full', 'version', 'visio', 'application'] list_processed_text: [['need'], ['teamviewer'], ['full'], ['version'], ['visio'], ['application'], ['need'], ['teamviewer'], ['full'], ['version'], ['visio'], ['application']] k: 8405 len: <class 'list'> Data: ['calculation', 'claim', 'amount', 'make', 'mistake', 'uxndyfrs', 'vahxnfgl', 'mail', 'xd', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'rad', 'fw', 'calculation', 'claim', 'amount', 'make', 'mistake', 'xd', 'xd', 'hi', 'xd', 'xd', 'calculation', 'claim', 'amount', 'make', 'mistake', 'xd', 'please', 'fix', 'xd', 'xd', 'total', 'amount', 'money', 'usd', 'xd', 'xd', 'best'] processed_text: ['calculation', 'claim', 'amount', 'make', 'mistake', 'uxndyfrs', 'vahxnfgl', 'mail', 'xd', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'rad', 'fw', 'calculation', 'claim', 'amount', 'make', 'mistake', 'xd', 'xd', 'hi', 'xd', 'xd', 'calculation', 'claim', 'amount', 'make', 'mistake', 'xd', 'please', 'fix', 'xd', 'xd', 'total', 'amount', 'money', 'usd', 'xd', 'xd', 'best'] list_processed_text: [['calculation'], ['claim'], ['amount'], ['make'], ['mistake'], ['uxndyfrs'], ['vahxnfgl'], ['mail'], ['xd'], ['xd'], ['nwfodmhc'], ['exurcwkm'], ['xd'], ['rad'], ['fw'], ['calculation'], ['claim'], ['amount'], ['make'], ['mistake'], ['xd'], ['xd'], ['hi'], ['xd'], ['xd'], ['calculation'], ['claim'], ['amount'], ['make'], ['mistake'], ['xd'], ['please'], ['fix'], ['xd'], ['xd'], ['total'], ['amount'], ['money'], ['usd'], ['xd'], ['xd'], ['best']] k: 8406 len: <class 'list'> Data: ['hr', 'tool', 'java'] processed_text: ['hr', 'tool', 'java'] list_processed_text: [['hr'], ['tool'], ['java']] k: 8407 len: <class 'list'> Data: ['window', 'account', 'locked', 'window', 'account', 'locked'] processed_text: ['window', 'account', 'locked', 'window', 'account', 'locked'] list_processed_text: [['window'], ['account'], ['locked'], ['window'], ['account'], ['locked']] k: 8408 len: <class 'list'> Data: ['erp', 'crm', 'complaint', 'assigned', 'generating', 'duplicate', 'email', 'update', 'complaint', 'assigned', 'status', 'employee', 'responsible', 'system', 'sending', 'duplicate', 'email', 'sale', 'employee', 'employee', 'responsible'] processed_text: ['erp', 'crm', 'complaint', 'assigned', 'generating', 'duplicate', 'email', 'update', 'complaint', 'assigned', 'status', 'employee', 'responsible', 'system', 'sending', 'duplicate', 'email', 'sale', 'employee', 'employee', 'responsible'] list_processed_text: [['erp'], ['crm'], ['complaint'], ['assigned'], ['generating'], ['duplicate'], ['email'], ['update'], ['complaint'], ['assigned'], ['status'], ['employee'], ['responsible'], ['system'], ['sending'], ['duplicate'], ['email'], ['sale'], ['employee'], ['employee'], ['responsible']] k: 8409 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['xd'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8410 len: <class 'list'> Data: ['reboot', 'lhqsm', 'patent', 'web', 'uacyltoe', 'hxgaycze', 'server', 'server', 'pm', 'et', 'reboot', 'lhqsm', 'patent', 'web', 'uacyltoe', 'hxgaycze', 'server', 'server', 'pm', 'et'] processed_text: ['reboot', 'lhqsm', 'patent', 'web', 'uacyltoe', 'hxgaycze', 'server', 'server', 'pm', 'et', 'reboot', 'lhqsm', 'patent', 'web', 'uacyltoe', 'hxgaycze', 'server', 'server', 'pm', 'et'] list_processed_text: [['reboot'], ['lhqsm'], ['patent'], ['web'], ['uacyltoe'], ['hxgaycze'], ['server'], ['server'], ['pm'], ['et'], ['reboot'], ['lhqsm'], ['patent'], ['web'], ['uacyltoe'], ['hxgaycze'], ['server'], ['server'], ['pm'], ['et']] k: 8411 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] processed_text: ['abended', 'job', 'job', 'scheduler', 'job', 'xd', 'abended', 'job', 'job', 'scheduler', 'job'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['job'], ['xd'], ['abended'], ['job'], ['job'], ['scheduler'], ['job']] k: 8412 len: <class 'list'> Data: ['kindly', 'refer', 'mail', 'renew', 'account', 'visfgthal', 'vvjodav', 'goptijdtnsya', 'vsbhyrt', 'hello', 'snhdfihytu', 'kindly', 'refer', 'mail', 'renew', 'account', 'visfgthal', 'vvjodav', 'goptijdtnsya', 'vsbhyrt', 'extn', 'jayhrt', 'bhatyr'] processed_text: ['kindly', 'refer', 'mail', 'renew', 'account', 'visfgthal', 'vvjodav', 'goptijdtnsya', 'vsbhyrt', 'hello', 'snhdfihytu', 'kindly', 'refer', 'mail', 'renew', 'account', 'visfgthal', 'vvjodav', 'goptijdtnsya', 'vsbhyrt', 'extn', 'jayhrt', 'bhatyr'] list_processed_text: [['kindly'], ['refer'], ['mail'], ['renew'], ['account'], ['visfgthal'], ['vvjodav'], ['goptijdtnsya'], ['vsbhyrt'], ['hello'], ['snhdfihytu'], ['kindly'], ['refer'], ['mail'], ['renew'], ['account'], ['visfgthal'], ['vvjodav'], ['goptijdtnsya'], ['vsbhyrt'], ['extn'], ['jayhrt'], ['bhatyr']] k: 8413 len: <class 'list'> Data: ['log', 'issue', 'xd', 'xd', 'xd', 'could', 'log', 'system', 'uacyltoe', 'hxgaycze', 'warm', 'xd', 'xd', 'xd', 'xd'] processed_text: ['log', 'issue', 'xd', 'xd', 'xd', 'could', 'log', 'system', 'uacyltoe', 'hxgaycze', 'warm', 'xd', 'xd', 'xd', 'xd'] list_processed_text: [['log'], ['issue'], ['xd'], ['xd'], ['xd'], ['could'], ['log'], ['system'], ['uacyltoe'], ['hxgaycze'], ['warm'], ['xd'], ['xd'], ['xd'], ['xd']] k: 8414 len: <class 'list'> Data: ['vpn', 'vpn'] processed_text: ['vpn', 'vpn'] list_processed_text: [['vpn'], ['vpn']] k: 8415 len: <class 'list'> Data: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'xd', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] processed_text: ['abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc', 'xd', 'abended', 'job', 'job', 'scheduler', 'bkwin', 'hostname', 'inc'] list_processed_text: [['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc'], ['xd'], ['abended'], ['job'], ['job'], ['scheduler'], ['bkwin'], ['hostname'], ['inc']] k: 8416 len: <class 'list'> Data: ['hi', 'help', 'team', 'please', 'unblock', 'new', 'company', 'device', 'ntydihzo', 'aeptfbgs', 'xd', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'xd', 'importance', 'high', 'xd', 'xd', 'hi', 'help', 'team', 'xd', 'xd', 'please', 'unblock', 'new', 'company', 'device', 'xd', 'xd'] processed_text: ['hi', 'help', 'team', 'please', 'unblock', 'new', 'company', 'device', 'ntydihzo', 'aeptfbgs', 'xd', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'wg', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bi', 'der', 'zugriff', 'vom', 'administrator', 'gew', 'hrt', 'wird', 'xd', 'importance', 'high', 'xd', 'xd', 'hi', 'help', 'team', 'xd', 'xd', 'please', 'unblock', 'new', 'company', 'device', 'xd', 'xd'] list_processed_text: [['hi'], ['help'], ['team'], ['please'], ['unblock'], ['new'], ['company'], ['device'], ['ntydihzo'], ['aeptfbgs'], ['xd'], ['xd'], ['nwfodmhc'], ['exurcwkm'], ['xd'], ['wg'], ['die'], ['synchronisierung'], ['mit'], ['exchange'], ['activesync'], ['ist'], ['auf'], ['ihrem'], ['ger'], ['vor'], ['bergehend'], ['blockiert'], ['bi'], ['der'], ['zugriff'], ['vom'], ['administrator'], ['gew'], ['hrt'], ['wird'], ['xd'], ['importance'], ['high'], ['xd'], ['xd'], ['hi'], ['help'], ['team'], ['xd'], ['xd'], ['please'], ['unblock'], ['new'], ['company'], ['device'], ['xd'], ['xd']] k: 8417 len: <class 'list'> Data: ['unblock', 'account', 'use', 'outlook', 'app', 'nwfodmhc', 'exurcwkm', 'prishry', 'budhtya', 'rak', 'mobile', 'device', 'denied', 'access', 'server', 'via', 'exchange', 'activesync', 'server', 'policy', 'dear', 'prishry'] processed_text: ['unblock', 'account', 'use', 'outlook', 'app', 'nwfodmhc', 'exurcwkm', 'prishry', 'budhtya', 'rak', 'mobile', 'device', 'denied', 'access', 'server', 'via', 'exchange', 'activesync', 'server', 'policy', 'dear', 'prishry'] list_processed_text: [['unblock'], ['account'], ['use'], ['outlook'], ['app'], ['nwfodmhc'], ['exurcwkm'], ['prishry'], ['budhtya'], ['rak'], ['mobile'], ['device'], ['denied'], ['access'], ['server'], ['via'], ['exchange'], ['activesync'], ['server'], ['policy'], ['dear'], ['prishry']] k: 8418 len: <class 'list'> Data: ['plant', 'value', 'added', 'service', 'one', 'day', 'pick', 'route', 'project', 'request', 'phase', 'additional', 'va', 'customer', 'file', 'attached', 'customer', 'account', 'xd', 'add', 'pick', 'day', 'supply', 'chain', 'customer', 'attached', 'list', 'plant'] processed_text: ['plant', 'value', 'added', 'service', 'one', 'day', 'pick', 'route', 'project', 'request', 'phase', 'additional', 'va', 'customer', 'file', 'attached', 'customer', 'account', 'xd', 'add', 'pick', 'day', 'supply', 'chain', 'customer', 'attached', 'list', 'plant'] list_processed_text: [['plant'], ['value'], ['added'], ['service'], ['one'], ['day'], ['pick'], ['route'], ['project'], ['request'], ['phase'], ['additional'], ['va'], ['customer'], ['file'], ['attached'], ['customer'], ['account'], ['xd'], ['add'], ['pick'], ['day'], ['supply'], ['chain'], ['customer'], ['attached'], ['list'], ['plant']] k: 8419 len: <class 'list'> Data: ['please', 'review', 'recent', 'ticketing', 'tool', 'ticket', 'let', 'know', 'modified', 'ethic', 'collaboration', 'platform', 'site', 'mikhghytr', 'wafglhdrhjop', 'pm', 'nwfodmhc', 'exurcwkm', 'rak', 'fw', 'ethic', 'collaboration', 'platform', 'site', 'please', 'review', 'recent', 'ticketing', 'tool', 'ticket', 'let', 'know', 'modified', 'ethic', 'collaboration', 'platform', 'site', 'week', 'ago', 'requested', 'change', 'placed', 'third', 'column', 'selection', 'sure', 'undone', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys', 'kzbuhixt', 'zjdmoahr', 'mikhghytr', 'wafglhdrhjop', 'ethic', 'collaboration', 'platform', 'site', 'oh', 'sethdyr', 'hdtyr', 'assistant', 'general', 'counsel', 'compliance', 'real', 'estate', 'global', 'director', 'ethic', 'compliance', 'ccep'] processed_text: ['please', 'review', 'recent', 'ticketing', 'tool', 'ticket', 'let', 'know', 'modified', 'ethic', 'collaboration', 'platform', 'site', 'mikhghytr', 'wafglhdrhjop', 'pm', 'nwfodmhc', 'exurcwkm', 'rak', 'fw', 'ethic', 'collaboration', 'platform', 'site', 'please', 'review', 'recent', 'ticketing', 'tool', 'ticket', 'let', 'know', 'modified', 'ethic', 'collaboration', 'platform', 'site', 'week', 'ago', 'requested', 'change', 'placed', 'third', 'column', 'selection', 'sure', 'undone', 'mikhghytr', 'wafglhdrhjop', 'sr', 'manager', 'global', 'ethic', 'compliance', 'programdntys', 'kzbuhixt', 'zjdmoahr', 'mikhghytr', 'wafglhdrhjop', 'ethic', 'collaboration', 'platform', 'site', 'oh', 'sethdyr', 'hdtyr', 'assistant', 'general', 'counsel', 'compliance', 'real', 'estate', 'global', 'director', 'ethic', 'compliance', 'ccep'] list_processed_text: [['please'], ['review'], ['recent'], ['ticketing'], ['tool'], ['ticket'], ['let'], ['know'], ['modified'], ['ethic'], ['collaboration'], ['platform'], ['site'], ['mikhghytr'], ['wafglhdrhjop'], ['pm'], ['nwfodmhc'], ['exurcwkm'], ['rak'], ['fw'], ['ethic'], ['collaboration'], ['platform'], ['site'], ['please'], ['review'], ['recent'], ['ticketing'], ['tool'], ['ticket'], ['let'], ['know'], ['modified'], ['ethic'], ['collaboration'], ['platform'], ['site'], ['week'], ['ago'], ['requested'], ['change'], ['placed'], ['third'], ['column'], ['selection'], ['sure'], ['undone'], ['mikhghytr'], ['wafglhdrhjop'], ['sr'], ['manager'], ['global'], ['ethic'], ['compliance'], ['programdntys'], ['kzbuhixt'], ['zjdmoahr'], ['mikhghytr'], ['wafglhdrhjop'], ['ethic'], ['collaboration'], ['platform'], ['site'], ['oh'], ['sethdyr'], ['hdtyr'], ['assistant'], ['general'], ['counsel'], ['compliance'], ['real'], ['estate'], ['global'], ['director'], ['ethic'], ['compliance'], ['ccep']] k: 8420 len: <class 'list'> Data: ['ticket', 'update', 'rakthyesh', 'ramdntythanjesh', 'xd', 'xd', 'ugyothfz', 'ugrmkdhx', 'xd', 'mikhghytr', 'rhoades', 'xd', 'ticket', 'acces', 'paystub', 'etime', 'xd', 'xd', 'good', 'morning', 'safrgyynjit', 'xd', 'xd', 'user', 'called', 'service', 'desk', 'requested', 'expedite', 'case', 'requesting', 'issue', 'priority', 'assist', 'user', 'xd', 'xd', 'xd', 'xd', 'kind'] processed_text: ['ticket', 'update', 'rakthyesh', 'ramdntythanjesh', 'xd', 'xd', 'ugyothfz', 'ugrmkdhx', 'xd', 'mikhghytr', 'rhoades', 'xd', 'ticket', 'acces', 'paystub', 'etime', 'xd', 'xd', 'good', 'morning', 'safrgyynjit', 'xd', 'xd', 'user', 'called', 'service', 'desk', 'requested', 'expedite', 'case', 'requesting', 'issue', 'priority', 'assist', 'user', 'xd', 'xd', 'xd', 'xd', 'kind'] list_processed_text: [['ticket'], ['update'], ['rakthyesh'], ['ramdntythanjesh'], ['xd'], ['xd'], ['ugyothfz'], ['ugrmkdhx'], ['xd'], ['mikhghytr'], ['rhoades'], ['xd'], ['ticket'], ['acces'], ['paystub'], ['etime'], ['xd'], ['xd'], ['good'], ['morning'], ['safrgyynjit'], ['xd'], ['xd'], ['user'], ['called'], ['service'], ['desk'], ['requested'], ['expedite'], ['case'], ['requesting'], ['issue'], ['priority'], ['assist'], ['user'], ['xd'], ['xd'], ['xd'], ['xd'], ['kind']] k: 8421 len: <class 'list'> Data: ['outlook', 'freezing', 'crm', 'addin', 'outlook', 'freezing', 'crm', 'addin'] processed_text: ['outlook', 'freezing', 'crm', 'addin', 'outlook', 'freezing', 'crm', 'addin'] list_processed_text: [['outlook'], ['freezing'], ['crm'], ['addin'], ['outlook'], ['freezing'], ['crm'], ['addin']] k: 8422 len: <class 'list'> Data: ['inquiry', 'employee', 'shesyhur', 'posrt', 'inquiry', 'employee', 'shesyhur', 'posrt'] processed_text: ['inquiry', 'employee', 'shesyhur', 'posrt', 'inquiry', 'employee', 'shesyhur', 'posrt'] list_processed_text: [['inquiry'], ['employee'], ['shesyhur'], ['posrt'], ['inquiry'], ['employee'], ['shesyhur'], ['posrt']] k: 8423 len: <class 'list'> Data: ['etime', 'time', 'card', 'update', 'information', 'etime', 'time', 'card', 'update', 'information'] processed_text: ['etime', 'time', 'card', 'update', 'information', 'etime', 'time', 'card', 'update', 'information'] list_processed_text: [['etime'], ['time'], ['card'], ['update'], ['information'], ['etime'], ['time'], ['card'], ['update'], ['information']] k: 8424 len: <class 'list'> Data: ['supply', 'chain', 'software', 'account', 'unlock', 'password', 'reset', 'supply', 'chain', 'software', 'account', 'unlock', 'password', 'reset'] processed_text: ['supply', 'chain', 'software', 'account', 'unlock', 'password', 'reset', 'supply', 'chain', 'software', 'account', 'unlock', 'password', 'reset'] list_processed_text: [['supply'], ['chain'], ['software'], ['account'], ['unlock'], ['password'], ['reset'], ['supply'], ['chain'], ['software'], ['account'], ['unlock'], ['password'], ['reset']] k: 8425 len: <class 'list'> Data: ['login', 'bex', 'analyzer', 'vpn', 'urgent', 'xd', 'xd', 'xd', 'xd', 'best'] processed_text: ['login', 'bex', 'analyzer', 'vpn', 'urgent', 'xd', 'xd', 'xd', 'xd', 'best'] list_processed_text: [['login'], ['bex'], ['analyzer'], ['vpn'], ['urgent'], ['xd'], ['xd'], ['xd'], ['xd'], ['best']] k: 8426 len: <class 'list'> Data: ['beenefits', 'access', 'oneteam', 'yesterday', 'helped', 'access', 'additional', 'information', 'oneteam', 'still', 'link', 'showing', 'benefit', 'tried', 'search', 'nothing', 'pull', 'tgbtyim', 'dgtalone', 'key', 'account', 'manager'] processed_text: ['beenefits', 'access', 'oneteam', 'yesterday', 'helped', 'access', 'additional', 'information', 'oneteam', 'still', 'link', 'showing', 'benefit', 'tried', 'search', 'nothing', 'pull', 'tgbtyim', 'dgtalone', 'key', 'account', 'manager'] list_processed_text: [['beenefits'], ['access'], ['oneteam'], ['yesterday'], ['helped'], ['access'], ['additional'], ['information'], ['oneteam'], ['still'], ['link'], ['showing'], ['benefit'], ['tried'], ['search'], ['nothing'], ['pull'], ['tgbtyim'], ['dgtalone'], ['key'], ['account'], ['manager']] k: 8427 len: <class 'list'> Data: ['unable', 'connect', 'hostname', 'stehdgty', 'jfhying', 'called', 'issue', 'supervisor', 'able', 'connect', 'network', 'drive', 'hostname', 'third', 'shift', 'per', 'stehdgty', 'two', 'working', 'another', 'hour', 'would', 'people', 'coming'] processed_text: ['unable', 'connect', 'hostname', 'stehdgty', 'jfhying', 'called', 'issue', 'supervisor', 'able', 'connect', 'network', 'drive', 'hostname', 'third', 'shift', 'per', 'stehdgty', 'two', 'working', 'another', 'hour', 'would', 'people', 'coming'] list_processed_text: [['unable'], ['connect'], ['hostname'], ['stehdgty'], ['jfhying'], ['called'], ['issue'], ['supervisor'], ['able'], ['connect'], ['network'], ['drive'], ['hostname'], ['third'], ['shift'], ['per'], ['stehdgty'], ['two'], ['working'], ['another'], ['hour'], ['would'], ['people'], ['coming']] k: 8428 len: <class 'list'> Data: ['customer', 'group', 'enhanced', 'field', 'xd', 'xd', 'xd', 'hello', 'xd', 'xd', 'business', 'decision', 'recently', 'made', 'view', 'mfg', 'tooltion', 'customer', 'classification', 'ik', 'indirect', 'sale', 'going', 'forward', 'currently', 'bex', 'system', 'classified', 'direct', 'xd', 'xd', 'please', 'modify', 'cust', 'grp', 'enhanced', 'field', 'cust', 'sale', 'zcustgrp', 'show', 'mfg', 'tooltion', 'customer', 'classification', 'ik', 'customer', 'indirect', 'xd', 'xd', 'field', 'used', 'several', 'bex', 'hana', 'report', 'sale', 'plan', 'product', 'management', 'otc', 'billing', 'etc', 'let', 'know', 'question', 'xd', 'xd', 'best'] processed_text: ['customer', 'group', 'enhanced', 'field', 'xd', 'xd', 'xd', 'hello', 'xd', 'xd', 'business', 'decision', 'recently', 'made', 'view', 'mfg', 'tooltion', 'customer', 'classification', 'ik', 'indirect', 'sale', 'going', 'forward', 'currently', 'bex', 'system', 'classified', 'direct', 'xd', 'xd', 'please', 'modify', 'cust', 'grp', 'enhanced', 'field', 'cust', 'sale', 'zcustgrp', 'show', 'mfg', 'tooltion', 'customer', 'classification', 'ik', 'customer', 'indirect', 'xd', 'xd', 'field', 'used', 'several', 'bex', 'hana', 'report', 'sale', 'plan', 'product', 'management', 'otc', 'billing', 'etc', 'let', 'know', 'question', 'xd', 'xd', 'best'] list_processed_text: [['customer'], ['group'], ['enhanced'], ['field'], ['xd'], ['xd'], ['xd'], ['hello'], ['xd'], ['xd'], ['business'], ['decision'], ['recently'], ['made'], ['view'], ['mfg'], ['tooltion'], ['customer'], ['classification'], ['ik'], ['indirect'], ['sale'], ['going'], ['forward'], ['currently'], ['bex'], ['system'], ['classified'], ['direct'], ['xd'], ['xd'], ['please'], ['modify'], ['cust'], ['grp'], ['enhanced'], ['field'], ['cust'], ['sale'], ['zcustgrp'], ['show'], ['mfg'], ['tooltion'], ['customer'], ['classification'], ['ik'], ['customer'], ['indirect'], ['xd'], ['xd'], ['field'], ['used'], ['several'], ['bex'], ['hana'], ['report'], ['sale'], ['plan'], ['product'], ['management'], ['otc'], ['billing'], ['etc'], ['let'], ['know'], ['question'], ['xd'], ['xd'], ['best']] k: 8429 len: <class 'list'> Data: ['es', 'portal', 'hi', 'team', 'going', 'es', 'file', 'checking', 'thing', 'ytd', 'screen', 'show', 'report', 'tab', 'logged', 'vpn', 'please', 'assist', 'getting', 'english', 'eagvusbr', 'nguqityl', 'sale', 'engineer'] processed_text: ['es', 'portal', 'hi', 'team', 'going', 'es', 'file', 'checking', 'thing', 'ytd', 'screen', 'show', 'report', 'tab', 'logged', 'vpn', 'please', 'assist', 'getting', 'english', 'eagvusbr', 'nguqityl', 'sale', 'engineer'] list_processed_text: [['es'], ['portal'], ['hi'], ['team'], ['going'], ['es'], ['file'], ['checking'], ['thing'], ['ytd'], ['screen'], ['show'], ['report'], ['tab'], ['logged'], ['vpn'], ['please'], ['assist'], ['getting'], ['english'], ['eagvusbr'], ['nguqityl'], ['sale'], ['engineer']] k: 8430 len: <class 'list'> Data: ['robot', 'hostname', 'inactive', 'robot', 'hostname', 'inactive'] processed_text: ['robot', 'hostname', 'inactive', 'robot', 'hostname', 'inactive'] list_processed_text: [['robot'], ['hostname'], ['inactive'], ['robot'], ['hostname'], ['inactive']] k: 8431 len: <class 'list'> Data: ['fw', 'case', 'id', 'ref', 'case', 'ref', 'others', 'pacvbetl', 'yptglhoe', 'xd', 'pm', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'amar', 'fw', 'case', 'id', 'ref', 'case', 'ref', 'others', 'xd', 'xd', 'please', 'see', 'forwarded', 'email', 'look', 'suspicious', 'sort', 'phishing', 'spamming', 'email', 'please', 'review', 'let', 'know', 'look', 'legitimate', 'legitimate', 'individual', 'company', 'open', 'view', 'attachment', 'xd', 'xd', 'idea', 'account', 'payable', 'would', 'sending', 'email', 'xd', 'xd', 'best'] processed_text: ['fw', 'case', 'id', 'ref', 'case', 'ref', 'others', 'pacvbetl', 'yptglhoe', 'xd', 'pm', 'xd', 'nwfodmhc', 'exurcwkm', 'xd', 'amar', 'fw', 'case', 'id', 'ref', 'case', 'ref', 'others', 'xd', 'xd', 'please', 'see', 'forwarded', 'email', 'look', 'suspicious', 'sort', 'phishing', 'spamming', 'email', 'please', 'review', 'let', 'know', 'look', 'legitimate', 'legitimate', 'individual', 'company', 'open', 'view', 'attachment', 'xd', 'xd', 'idea', 'account', 'payable', 'would', 'sending', 'email', 'xd', 'xd', 'best'] list_processed_text: [['fw'], ['case'], ['id'], ['ref'], ['case'], ['ref'], ['others'], ['pacvbetl'], ['yptglhoe'], ['xd'], ['pm'], ['xd'], ['nwfodmhc'], ['exurcwkm'], ['xd'], ['amar'], ['fw'], ['case'], ['id'], ['ref'], ['case'], ['ref'], ['others'], ['xd'], ['xd'], ['please'], ['see'], ['forwarded'], ['email'], ['look'], ['suspicious'], ['sort'], ['phishing'], ['spamming'], ['email'], ['please'], ['review'], ['let'], ['know'], ['look'], ['legitimate'], ['legitimate'], ['individual'], ['company'], ['open'], ['view'], ['attachment'], ['xd'], ['xd'], ['idea'], ['account'], ['payable'], ['would'], ['sending'], ['email'], ['xd'], ['xd'], ['best']] k: 8432 len: <class 'list'> Data: ['please', 'remove', 'user', 'hugcadrn', 'ixhlwdgt', 'ralfteimp', 'palo', 'alto', 'quarantine', 'please', 'remove', 'user', 'hugcadrn', 'ixhlwdgt', 'ralfteimp', 'palo', 'alto', 'quarantine', 'user', 'pc', 'replaced'] processed_text: ['please', 'remove', 'user', 'hugcadrn', 'ixhlwdgt', 'ralfteimp', 'palo', 'alto', 'quarantine', 'please', 'remove', 'user', 'hugcadrn', 'ixhlwdgt', 'ralfteimp', 'palo', 'alto', 'quarantine', 'user', 'pc', 'replaced'] list_processed_text: [['please'], ['remove'], ['user'], ['hugcadrn'], ['ixhlwdgt'], ['ralfteimp'], ['palo'], ['alto'], ['quarantine'], ['please'], ['remove'], ['user'], ['hugcadrn'], ['ixhlwdgt'], ['ralfteimp'], ['palo'], ['alto'], ['quarantine'], ['user'], ['pc'], ['replaced']] k: 8433 len: <class 'list'> Data: ['ticket', 'update', 'inc', 'user', 'hbmwlprq', 'ilfvyodx', 'ticket', 'update', 'inc', 'user', 'hbmwlprq', 'ilfvyodx'] processed_text: ['ticket', 'update', 'inc', 'user', 'hbmwlprq', 'ilfvyodx', 'ticket', 'update', 'inc', 'user', 'hbmwlprq', 'ilfvyodx'] list_processed_text: [['ticket'], ['update'], ['inc'], ['user'], ['hbmwlprq'], ['ilfvyodx'], ['ticket'], ['update'], ['inc'], ['user'], ['hbmwlprq'], ['ilfvyodx']] k: 8434 len: <class 'list'> Data: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] processed_text: ['ticket', 'update', 'ticket', 'ticket', 'update', 'ticket'] list_processed_text: [['ticket'], ['update'], ['ticket'], ['ticket'], ['update'], ['ticket']] k: 8435 len: <class 'list'> Data: ['telephony', 'software', 'missing', 'pc', 'pc', 'received', 'multiple', 'window', 'security', 'update', 'earlier', 'telephony', 'software', 'software', 'missing', 'screen', 'xd', 'ran', 'requirement', 'check', 'software', 'see', 'dotnet', 'framdntyework', 'installed', 'pc', 'xd', 'telephony', 'software', 'fails', 'install', 'absence', 'dotnet', 'xd', 'used', 'dotnet', 'uninstaller', 'remove', 'version', 'restarted', 'pc', 'dotnet', 'still', 'fails', 'install', 'xd', 'ran', 'repair', 'tool', 'see', 'pc', 'still', 'dot', 'net', 'installed', 'xd', 'xd', 'need', 'help', 'setup', 'compatible', 'version', 'dotnet', 'pc', 'help', 'install', 'telephony', 'software', 'xd', 'xd', 'checked', 'previous', 'case', 'ticket', 'log', 'cptl', 'xd', 'contact', 'number', 'xd', 'pc', 'name', 'lmsl', 'xd', 'o', 'version', 'window', 'bit', 'xd', 'sop', 'exists', 'n', 'xd', 'step', 'followed', 'na', 'xd', 'next', 'assignment', 'amerirtcas', 'pc', 'service', 'xd', 'reason', 'reassignment', 'need', 'downgrade', 'dot', 'net', 'install', 'crm', 'client', 'xd', 'cost', 'center', 'na', 'xd'] processed_text: ['telephony', 'software', 'missing', 'pc', 'pc', 'received', 'multiple', 'window', 'security', 'update', 'earlier', 'telephony', 'software', 'software', 'missing', 'screen', 'xd', 'ran', 'requirement', 'check', 'software', 'see', 'dotnet', 'framdntyework', 'installed', 'pc', 'xd', 'telephony', 'software', 'fails', 'install', 'absence', 'dotnet', 'xd', 'used', 'dotnet', 'uninstaller', 'remove', 'version', 'restarted', 'pc', 'dotnet', 'still', 'fails', 'install', 'xd', 'ran', 'repair', 'tool', 'see', 'pc', 'still', 'dot', 'net', 'installed', 'xd', 'xd', 'need', 'help', 'setup', 'compatible', 'version', 'dotnet', 'pc', 'help', 'install', 'telephony', 'software', 'xd', 'xd', 'checked', 'previous', 'case', 'ticket', 'log', 'cptl', 'xd', 'contact', 'number', 'xd', 'pc', 'name', 'lmsl', 'xd', 'o', 'version', 'window', 'bit', 'xd', 'sop', 'exists', 'n', 'xd', 'step', 'followed', 'na', 'xd', 'next', 'assignment', 'amerirtcas', 'pc', 'service', 'xd', 'reason', 'reassignment', 'need', 'downgrade', 'dot', 'net', 'install', 'crm', 'client', 'xd', 'cost', 'center', 'na', 'xd'] list_processed_text: [['telephony'], ['software'], ['missing'], ['pc'], ['pc'], ['received'], ['multiple'], ['window'], ['security'], ['update'], ['earlier'], ['telephony'], ['software'], ['software'], ['missing'], ['screen'], ['xd'], ['ran'], ['requirement'], ['check'], ['software'], ['see'], ['dotnet'], ['framdntyework'], ['installed'], ['pc'], ['xd'], ['telephony'], ['software'], ['fails'], ['install'], ['absence'], ['dotnet'], ['xd'], ['used'], ['dotnet'], ['uninstaller'], ['remove'], ['version'], ['restarted'], ['pc'], ['dotnet'], ['still'], ['fails'], ['install'], ['xd'], ['ran'], ['repair'], ['tool'], ['see'], ['pc'], ['still'], ['dot'], ['net'], ['installed'], ['xd'], ['xd'], ['need'], ['help'], ['setup'], ['compatible'], ['version'], ['dotnet'], ['pc'], ['help'], ['install'], ['telephony'], ['software'], ['xd'], ['xd'], ['checked'], ['previous'], ['case'], ['ticket'], ['log'], ['cptl'], ['xd'], ['contact'], ['number'], ['xd'], ['pc'], ['name'], ['lmsl'], ['xd'], ['o'], ['version'], ['window'], ['bit'], ['xd'], ['sop'], ['exists'], ['n'], ['xd'], ['step'], ['followed'], ['na'], ['xd'], ['next'], ['assignment'], ['amerirtcas'], ['pc'], ['service'], ['xd'], ['reason'], ['reassignment'], ['need'], ['downgrade'], ['dot'], ['net'], ['install'], ['crm'], ['client'], ['xd'], ['cost'], ['center'], ['na'], ['xd']] k: 8436 len: <class 'list'> Data: ['erp', 'account', 'unlock', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unlock', 'erp', 'account', 'gadbpfrz', 'unvdyask', 'user', 'name', 'boivin'] processed_text: ['erp', 'account', 'unlock', 'name', 'mfeyouli', 'ndobtzpw', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unlock', 'erp', 'account', 'gadbpfrz', 'unvdyask', 'user', 'name', 'boivin'] list_processed_text: [['erp'], ['account'], ['unlock'], ['name'], ['mfeyouli'], ['ndobtzpw'], ['language'], ['browser'], ['microsoft'], ['internet'], ['explorer'], ['customer'], ['number'], ['telephone'], ['summary'], ['unlock'], ['erp'], ['account'], ['gadbpfrz'], ['unvdyask'], ['user'], ['name'], ['boivin']] k: 8437 len: <class 'list'> Data: ['account', 'locked', 'account', 'locked'] processed_text: ['account', 'locked', 'account', 'locked'] list_processed_text: [['account'], ['locked'], ['account'], ['locked']] k: 8438 len: <class 'list'> Data: ['check', 'status', 'purchasing', 'please', 'contact', 'ed', 'pasgryowski', 'pasgryo', 'purchasing', 'check', 'status', 'time', 'try', 'view', 'cart', 'view', 'change', 'see', 'cart', 'told', 'click', 'change', 'query', 'show', 'team', 'cart', 'box', 'seems', 'reset', 'time'] processed_text: ['check', 'status', 'purchasing', 'please', 'contact', 'ed', 'pasgryowski', 'pasgryo', 'purchasing', 'check', 'status', 'time', 'try', 'view', 'cart', 'view', 'change', 'see', 'cart', 'told', 'click', 'change', 'query', 'show', 'team', 'cart', 'box', 'seems', 'reset', 'time'] list_processed_text: [['check'], ['status'], ['purchasing'], ['please'], ['contact'], ['ed'], ['pasgryowski'], ['pasgryo'], ['purchasing'], ['check'], ['status'], ['time'], ['try'], ['view'], ['cart'], ['view'], ['change'], ['see'], ['cart'], ['told'], ['click'], ['change'], ['query'], ['show'], ['team'], ['cart'], ['box'], ['seems'], ['reset'], ['time']] k: 8439 len: <class 'list'> Data: ['vpn', 'laptop', 'need', 'vpn', 'new', 'laptop', 'name', 'llv', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company'] processed_text: ['vpn', 'laptop', 'need', 'vpn', 'new', 'laptop', 'name', 'llv', 'knethyen', 'grechduy', 'engineer', 'product', 'engineering', 'company'] list_processed_text: [['vpn'], ['laptop'], ['need'], ['vpn'], ['new'], ['laptop'], ['name'], ['llv'], ['knethyen'], ['grechduy'], ['engineer'], ['product'], ['engineering'], ['company']] k: 8440 len: <class 'list'> Data: ['hr', 'tool', 'etime', 'option', 'visitble', 'hr', 'tool', 'etime', 'option', 'visitble'] processed_text: ['hr', 'tool', 'etime', 'option', 'visitble', 'hr', 'tool', 'etime', 'option', 'visitble'] list_processed_text: [['hr'], ['tool'], ['etime'], ['option'], ['visitble'], ['hr'], ['tool'], ['etime'], ['option'], ['visitble']] k: 8441 len: <class 'list'> Data: ['erp', 'fi', 'ob', 'two', 'account', 'added', 'sorry', 'another', 'two', 'account', 'need', 'added', 'please', 'copy', 'problem', 'error', 'come', 'someone', 'try', 'clear', 'open', 'item', 'account', 'xd', 'xd', 'incident', 'created', 'ticket'] processed_text: ['erp', 'fi', 'ob', 'two', 'account', 'added', 'sorry', 'another', 'two', 'account', 'need', 'added', 'please', 'copy', 'problem', 'error', 'come', 'someone', 'try', 'clear', 'open', 'item', 'account', 'xd', 'xd', 'incident', 'created', 'ticket'] list_processed_text: [['erp'], ['fi'], ['ob'], ['two'], ['account'], ['added'], ['sorry'], ['another'], ['two'], ['account'], ['need'], ['added'], ['please'], ['copy'], ['problem'], ['error'], ['come'], ['someone'], ['try'], ['clear'], ['open'], ['item'], ['account'], ['xd'], ['xd'], ['incident'], ['created'], ['ticket']] k: 8442 len: <class 'list'> Data: ['tablet', 'need', 'reimaged', 'due', 'multiple', 'issue', 'crm', 'wifi', 'etc', 'tablet', 'need', 'reimaged', 'due', 'multiple', 'issue', 'crm', 'wifi', 'etc'] processed_text: ['tablet', 'need', 'reimaged', 'due', 'multiple', 'issue', 'crm', 'wifi', 'etc', 'tablet', 'need', 'reimaged', 'due', 'multiple', 'issue', 'crm', 'wifi', 'etc'] list_processed_text: [['tablet'], ['need'], ['reimaged'], ['due'], ['multiple'], ['issue'], ['crm'], ['wifi'], ['etc'], ['tablet'], ['need'], ['reimaged'], ['due'], ['multiple'], ['issue'], ['crm'], ['wifi'], ['etc']] k: 8443 len: <class 'list'> Data: ['email', 'coming', 'zz', 'mail', 'xd', 'xd', 'xd', 'good', 'afternoon', 'xd', 'receiving', 'email', 'sent', 'zz', 'mail', 'xd', 'please', 'advise', 'xd', 'xd'] processed_text: ['email', 'coming', 'zz', 'mail', 'xd', 'xd', 'xd', 'good', 'afternoon', 'xd', 'receiving', 'email', 'sent', 'zz', 'mail', 'xd', 'please', 'advise', 'xd', 'xd'] list_processed_text: [['email'], ['coming'], ['zz'], ['mail'], ['xd'], ['xd'], ['xd'], ['good'], ['afternoon'], ['xd'], ['receiving'], ['email'], ['sent'], ['zz'], ['mail'], ['xd'], ['please'], ['advise'], ['xd'], ['xd']] k: 8444 len: <class 'list'> Data: ['telephony', 'software', 'issue', 'telephony', 'software', 'issue'] processed_text: ['telephony', 'software', 'issue', 'telephony', 'software', 'issue'] list_processed_text: [['telephony'], ['software'], ['issue'], ['telephony'], ['software'], ['issue']] k: 8445 len: <class 'list'> Data: ['vip', 'window', 'password', 'reset', 'tifpdchb', 'pedxruyf', 'vip', 'window', 'password', 'reset', 'tifpdchb', 'pedxruyf'] processed_text: ['vip', 'window', 'password', 'reset', 'tifpdchb', 'pedxruyf', 'vip', 'window', 'password', 'reset', 'tifpdchb', 'pedxruyf'] list_processed_text: [['vip'], ['window'], ['password'], ['reset'], ['tifpdchb'], ['pedxruyf'], ['vip'], ['window'], ['password'], ['reset'], ['tifpdchb'], ['pedxruyf']] k: 8446 len: <class 'list'> Data: ['machine', 'est', 'funcionando', 'unable', 'access', 'machine', 'utility', 'finish', 'drawer', 'adjustment', 'setting', 'xd', 'network'] processed_text: ['machine', 'est', 'funcionando', 'unable', 'access', 'machine', 'utility', 'finish', 'drawer', 'adjustment', 'setting', 'xd', 'network'] list_processed_text: [['machine'], ['est'], ['funcionando'], ['unable'], ['access'], ['machine'], ['utility'], ['finish'], ['drawer'], ['adjustment'], ['setting'], ['xd'], ['network']] k: 8447 len: <class 'list'> Data: ['different', 'program', 'cannot', 'opened', 'several', 'pc', 'different', 'program', 'type', 'cannot', 'opened', 'one', 'pc.', 'cnc', 'area'] processed_text: ['different', 'program', 'cannot', 'opened', 'several', 'pc', 'different', 'program', 'type', 'cannot', 'opened', 'one', 'pc.', 'cnc', 'area'] list_processed_text: [['different'], ['program'], ['cannot'], ['opened'], ['several'], ['pc'], ['different'], ['program'], ['type'], ['cannot'], ['opened'], ['one'], ['pc.'], ['cnc'], ['area']]
from glove import Corpus, Glove
# creating a corpus object
corpus_glv = Corpus()
Datafinal['word_vec']=''
for i in range(len(Datafinal['list_processed_text'])):
print("i:",i)
#training the corpus to generate the co occurence matrix which is used in GloVe
corpus_glv.fit(Datafinal.iloc[i]['list_processed_text'], window=10)
#creating a Glove object which will use the matrix created in the above lines to create embeddings
#We can set the learning rate as it uses Gradient Descent and number of components
glove = Glove(no_components=5, learning_rate=0.05)
glove.fit(corpus_glv.matrix, epochs=30, no_threads=4, verbose=True)
glove.add_dictionary(corpus_glv.dictionary)
Datafinal['word_vec'][i]=glove.word_vectors
i: 0 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 9 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 10 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 11 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 12 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 13 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 14 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 15 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 16 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 17 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 18 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 19 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 20 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 21 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 22 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 23 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 24 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 25 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 26 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 27 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 28 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 29 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 30 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 31 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 32 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 33 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 34 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 35 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 36 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 37 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 38 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 39 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 40 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 41 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 42 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 43 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 44 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 45 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 46 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 47 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 48 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 49 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 50 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 51 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 52 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 53 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 54 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 55 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 56 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 57 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 58 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 59 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 60 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 61 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 62 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 63 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 64 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 65 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 66 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 67 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 68 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 69 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 70 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 71 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 72 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 73 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 74 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 75 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 76 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 77 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 78 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 79 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 80 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 81 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 82 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 83 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 84 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 85 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 86 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 87 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 88 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 89 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 90 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 91 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 92 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 93 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 94 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 95 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 96 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 97 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 98 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 99 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 1999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 2999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 3999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 4999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 5999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 6999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7448 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7449 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7450 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7451 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7452 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7453 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7454 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7455 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7456 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7457 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7458 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7459 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7460 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7461 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7462 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7463 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7464 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7465 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7466 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7467 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7468 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7469 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7470 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7471 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7472 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7473 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7474 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7475 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7476 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7477 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7478 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7479 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7480 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7481 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7482 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7483 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7484 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7485 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7486 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7487 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7488 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7489 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7490 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7491 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7492 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7493 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7494 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7495 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7496 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7497 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7498 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7499 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7500 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7501 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7502 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7503 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7504 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7505 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7506 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7507 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7508 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7509 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7510 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7511 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7512 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7513 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7514 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7515 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7516 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7517 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7518 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7519 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7520 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7521 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7522 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7523 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7524 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7525 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7526 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7527 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7528 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7529 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7530 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7531 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7532 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7533 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7534 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7535 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7536 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7537 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7538 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7539 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7540 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7541 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7542 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7543 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7544 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7545 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7546 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7547 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7548 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7549 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7550 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7551 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7552 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7553 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7554 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7555 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7556 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7557 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7558 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7559 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7560 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7561 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7562 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7563 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7564 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7565 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7566 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7567 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7568 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7569 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7570 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7571 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7572 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7573 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7574 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7575 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7576 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7577 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7578 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7579 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7580 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7581 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7582 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7583 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7584 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7585 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7586 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7587 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7588 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7589 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7590 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7591 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7592 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7593 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7594 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7595 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7596 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7597 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7598 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7599 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7600 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7601 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7602 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7603 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7604 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7605 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7606 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7607 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7608 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7609 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7610 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7611 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7612 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7613 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7614 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7615 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7616 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7617 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7618 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7619 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7620 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7621 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7622 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7623 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7624 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7625 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7626 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7627 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7628 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7629 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7630 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7631 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7632 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7633 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7634 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7635 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7636 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7637 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7638 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7639 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7640 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7641 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7642 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7643 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7644 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7645 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7646 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7647 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7648 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7649 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7650 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7651 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7652 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7653 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7654 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7655 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7656 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7657 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7658 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7659 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7660 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7661 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7662 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7663 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7664 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7665 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7666 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7667 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7668 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7669 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7670 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7671 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7672 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7673 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7674 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7675 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7676 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7677 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7678 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7679 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7680 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7681 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7682 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7683 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7684 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7685 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7686 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7687 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7688 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7689 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7690 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7691 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7692 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7693 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7694 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7695 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7696 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7697 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7698 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7699 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7700 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7701 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7702 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7703 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7704 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7705 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7706 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7707 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7708 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7709 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7710 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7711 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7712 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7713 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7714 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7715 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7716 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7717 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7718 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7719 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7720 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7721 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7722 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7723 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7724 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7725 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7726 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7727 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7728 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7729 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7730 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7731 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7732 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7733 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7734 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7735 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7736 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7737 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7738 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7739 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7740 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7741 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7742 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7743 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7744 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7745 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7746 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7747 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7748 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7749 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7750 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7751 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7752 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7753 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7754 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7755 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7756 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7757 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7758 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7759 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7760 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7761 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7762 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7763 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7764 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7765 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7766 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7767 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7768 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7769 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7770 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7771 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7772 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7773 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7774 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7775 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7776 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7777 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7778 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7779 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7780 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7781 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7782 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7783 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7784 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7785 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7786 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7787 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7788 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7789 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7790 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7791 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7792 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7793 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7794 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7795 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7796 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7797 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7798 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7799 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7800 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7801 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7802 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7803 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7804 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7805 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7806 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7807 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7808 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7809 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7810 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7811 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7812 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7813 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7814 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7815 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7816 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7817 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7818 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7819 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7820 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7821 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7822 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7823 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7824 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7825 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7826 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7827 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7828 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7829 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7830 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7831 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7832 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7833 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7834 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7835 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7836 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7837 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7838 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7839 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7840 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7841 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7842 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7843 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7844 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7845 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7846 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7847 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7848 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7849 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7850 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7851 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7852 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7853 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7854 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7855 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7856 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7857 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7858 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7859 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7860 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7861 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7862 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7863 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7864 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7865 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7866 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7867 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7868 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7869 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7870 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7871 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7872 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7873 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7874 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7875 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7876 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7877 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7878 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7879 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7880 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7881 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7882 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7883 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7884 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7885 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7886 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7887 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7888 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7889 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7890 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7891 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7892 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7893 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7894 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7895 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7896 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7897 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7898 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7899 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7900 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7901 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7902 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7903 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7904 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7905 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7906 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7907 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7908 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7909 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7910 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7911 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7912 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7913 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7914 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7915 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7916 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7917 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7918 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7919 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7920 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7921 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7922 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7923 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7924 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7925 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7926 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7927 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7928 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7929 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7930 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7931 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7932 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7933 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7934 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7935 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7936 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7937 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7938 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7939 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7940 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7941 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7942 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7943 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7944 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7945 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7946 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7947 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7948 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7949 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7950 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7951 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7952 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7953 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7954 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7955 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7956 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7957 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7958 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7959 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7960 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7961 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7962 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7963 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7964 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7965 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7966 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7967 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7968 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7969 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7970 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7971 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7972 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7973 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7974 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7975 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7976 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7977 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7978 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7979 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7980 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7981 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7982 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7983 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7984 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7985 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7986 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7987 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7988 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7989 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7990 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7991 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7992 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7993 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7994 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7995 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7996 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7997 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7998 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 7999 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8000 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8001 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8002 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8003 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8004 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8005 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8006 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8007 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8008 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8009 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8010 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8011 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8012 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8013 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8014 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8015 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8016 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8017 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8018 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8019 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8020 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8021 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8022 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8023 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8024 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8025 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8026 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8027 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8028 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8029 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8030 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8031 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8032 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8033 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8034 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8035 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8036 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8037 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8038 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8039 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8040 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8041 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8042 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8043 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8044 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8045 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8046 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8047 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8048 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8049 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8050 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8051 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8052 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8053 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8054 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8055 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8056 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8057 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8058 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8059 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8060 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8061 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8062 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8063 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8064 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8065 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8066 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8067 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8068 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8069 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8070 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8071 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8072 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8073 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8074 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8075 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8076 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8077 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8078 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8079 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8080 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8081 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8082 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8083 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8084 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8085 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8086 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8087 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8088 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8089 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8090 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8091 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8092 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8093 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8094 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8095 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8096 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8097 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8098 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8099 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8100 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8101 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8102 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8103 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8104 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8105 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8106 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8107 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8108 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8109 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8110 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8111 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8112 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8113 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8114 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8115 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8116 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8117 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8118 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8119 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8120 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8121 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8122 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8123 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8124 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8125 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8126 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8127 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8128 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8129 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8130 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8131 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8132 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8133 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8134 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8135 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8136 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8137 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8138 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8139 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8140 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8141 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8142 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8143 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8144 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8145 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8146 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8147 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8148 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8149 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8150 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8151 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8152 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8153 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8154 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8155 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8156 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8157 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8158 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8159 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8160 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8161 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8162 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8163 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8164 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8165 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8166 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8167 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8168 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8169 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8170 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8171 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8172 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8173 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8174 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8175 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8176 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8177 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8178 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8179 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8180 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8181 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8182 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8183 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8184 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8185 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8186 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8187 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8188 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8189 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8190 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8191 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8192 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8193 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8194 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8195 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8196 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8197 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8198 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8199 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8200 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8201 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8202 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8203 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8204 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8205 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8206 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8207 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8208 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8209 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8210 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8211 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8212 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8213 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8214 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8215 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8216 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8217 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8218 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8219 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8220 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8221 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8222 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8223 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8224 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8225 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8226 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8227 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8228 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8229 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8230 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8231 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8232 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8233 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8234 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8235 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8236 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8237 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8238 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8239 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8240 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8241 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8242 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8243 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8244 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8245 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8246 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8247 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8248 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8249 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8250 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8251 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8252 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8253 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8254 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8255 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8256 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8257 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8258 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8259 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8260 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8261 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8262 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8263 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8264 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8265 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8266 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8267 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8268 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8269 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8270 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8271 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8272 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8273 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8274 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8275 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8276 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8277 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8278 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8279 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8280 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8281 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8282 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8283 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8284 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8285 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8286 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8287 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8288 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8289 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8290 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8291 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8292 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8293 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8294 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8295 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8296 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8297 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8298 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8299 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8300 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8301 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8302 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8303 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8304 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8305 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8306 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8307 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8308 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8309 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8310 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8311 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8312 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8313 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8314 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8315 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8316 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8317 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8318 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8319 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8320 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8321 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8322 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8323 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8324 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8325 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8326 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8327 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8328 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8329 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8330 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8331 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8332 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8333 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8334 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8335 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8336 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8337 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8338 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8339 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8340 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8341 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8342 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8343 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8344 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8345 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8346 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8347 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8348 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8349 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8350 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8351 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8352 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8353 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8354 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8355 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8356 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8357 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8358 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8359 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8360 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8361 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8362 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8363 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8364 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8365 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8366 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8367 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8368 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8369 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8370 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8371 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8372 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8373 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8374 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8375 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8376 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8377 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8378 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8379 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8380 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8381 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8382 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8383 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8384 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8385 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8386 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8387 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8388 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8389 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8390 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8391 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8392 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8393 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8394 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8395 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8396 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8397 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8398 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8399 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8400 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8401 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8402 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8403 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8404 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8405 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8406 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8407 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8408 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8409 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8410 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8411 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8412 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8413 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8414 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8415 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8416 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8417 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8418 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8419 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8420 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8421 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8422 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8423 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8424 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8425 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8426 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8427 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8428 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8429 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8430 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8431 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8432 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8433 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8434 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8435 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8436 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8437 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8438 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8439 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8440 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8441 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8442 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8443 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8444 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8445 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8446 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29 i: 8447 Performing 30 training epochs with 4 threads Epoch 0 Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Epoch 8 Epoch 9 Epoch 10 Epoch 11 Epoch 12 Epoch 13 Epoch 14 Epoch 15 Epoch 16 Epoch 17 Epoch 18 Epoch 19 Epoch 20 Epoch 21 Epoch 22 Epoch 23 Epoch 24 Epoch 25 Epoch 26 Epoch 27 Epoch 28 Epoch 29
Datafinal.tail()
| Short description | Description | Assignment group | merged | word_count | processed_text | list_processed_text | word_vec | |
|---|---|---|---|---|---|---|---|---|
| 8443 | emails not coming in from zz mail | xd xd xd good afternoon xd am not receiving th... | GRP_29 | emails not coming in from zz mail xd xd xd goo... | 28 | [email, coming, zz, mail, xd, xd, xd, good, af... | [[email], [coming], [zz], [mail], [xd], [xd], ... | [[-0.03458795031317685, -0.07116646942174046, ... |
| 8444 | telephony software issue | telephony software issue | GRP_0 | telephony software issue telephony software issue | 6 | [telephony, software, issue, telephony, softwa... | [[telephony], [software], [issue], [telephony]... | [[-0.025529385958330562, -0.06839717876210043,... |
| 8445 | vip windows password reset for tifpdchb pedxruyf | vip windows password reset for tifpdchb pedxruyf | GRP_0 | vip windows password reset for tifpdchb pedxru... | 14 | [vip, window, password, reset, tifpdchb, pedxr... | [[vip], [window], [password], [reset], [tifpdc... | [[-0.059252774711951874, 0.0406000708840385, -... |
| 8446 | machine o est funcionando | i am unable to access the machine utilities to... | GRP_62 | machine o est funcionando i am unable to acces... | 22 | [machine, est, funcionando, unable, access, ma... | [[machine], [est], [funcionando], [unable], [a... | [[-0.05634223027315519, 0.02646564335606232, 0... |
| 8447 | Different programs cannot be opened on several... | Different program types cannot be opened on mo... | GRP_49 | Different programs cannot be opened on several... | 21 | [different, program, cannot, opened, several, ... | [[different], [program], [cannot], [opened], [... | [[-0.04628437802839156, 0.09360408251656997, 0... |
sentences = [line.split(' ') for line in Datafinal['merged']]
#word2vec = Word2Vec(sentences=sentences,min_count=1)
#word2vec.wv.save_word2vec_format(project_path+ '\word2vec_vector.txt')
Datafinal.shape
(8448, 8)
len(sentences)
8448
sentences
[['login', 'issue', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'reset', 'the', 'password', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['outlook', 'hello', 'team', '', '', 'my', 'meetings', 'skype', 'meetings', 'etc', 'are', 'not', 'appearing', 'in', 'my', 'outlook', 'calendar', 'can', 'somebody', 'please', 'advise', 'how', 'to', 'correct', 'this', '', '', 'kind'], ['cant', 'log', 'in', 'to', 'a', 'vpn', 'hi', 'ne', 'can', 'log', 'on', 'to', 'a', 'vpn', '', '', 'best'], ['unable', 'to', 'access', 'hr', 'tool', 'page', 'unable', 'to', 'access', 'hr', 'tool', 'page'], ['skype', 'error', 'skype', 'error'], ['unable', 'to', 'log', 'in', 'to', 'engineering', 'tool', 'and', 'skype', 'unable', 'to', 'log', 'in', 'to', 'engineering', 'tool', 'and', 'skype'], ['event', 'critical', 'hostname', 'company', 'com', 'the', 'value', 'of', 'mountpoint', 'threshold', 'for', 'oracle', 'sid', 'erpdata', 'event', 'critical', 'hostname', 'company', 'com', 'the', 'value', 'of', 'mountpoint', 'threshold', 'for', 'oracle', 'sid', 'erpdata', 'srpsad', 'srpsad', 'data', 'perpsrpsad', 'is'], ['ticket', 'no', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name', 'ticket', 'no', 'employment', 'status', 'new', 'non', 'employee', 'enter', 'user', 'name'], ['unable', 'to', 'disable', 'add', 'ins', 'on', 'outlook', 'unable', 'to', 'disable', 'add', 'ins', 'on', 'outlook'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['engineering', 'tool', 'says', 'not', 'connected', 'and', 'unable', 'to', 'submit', 'reports', 'engineering', 'tool', 'says', 'not', 'connected', 'and', 'unable', 'to', 'submit', 'reports'], ['hr', 'tool', 'site', 'not', 'loading', 'page', 'correctly', 'hr', 'tool', 'site', 'not', 'loading', 'page', 'correctly'], ['unable', 'to', 'login', 'to', 'hr', 'tool', 'to', 'sgxqsuojr', 'xwbesorf', 'cards', 'unable', 'to', 'login', 'to', 'hr', 'tool', 'to', 'sgxqsuojr', 'xwbesorf', 'cards'], ['user', 'wants', 'to', 'reset', 'the', 'password', 'user', 'wants', 'to', 'reset', 'the', 'password'], ['unable', 'to', 'open', 'payslips', 'unable', 'to', 'open', 'payslips'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['unable', 'to', 'login', 'to', 'company', 'vpn', 'hi', 'am', 'unable', 'to', 'login', 'to', 'company', 'vpn', 'website', 'trying', 'to', 'open', 'new', 'session', 'using', 'the', 'below', 'link', 'but', 'not', 'able', 'to', 'get', 'through', 'pls', 'help', 'urgently', 'as', 'we', 'are', 'working', 'from', 'home', 'tomorrow', 'due', 'to', 'month', 'end', 'closing'], ['when', 'undocking', 'pc', 'screen', 'will', 'not', 'come', 'back', 'when', 'undocking', 'pc', 'screen', 'will', 'not', 'come', 'back'], ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'], ['unable', 'to', 'sign', 'into', 'vpn', 'unable', 'to', 'sign', 'into', 'vpn'], ['unable', 'to', 'check', 'payslips', 'unable', 'to', 'check', 'payslips'], ['vpn', 'issue', 'hello', 'helpdesk', '', '', 'am', 'not', 'able', 'to', 'connect', 'vpn', 'from', 'home', 'office', 'couple', 'hours', 'ago', 'was', 'connected', 'now', 'it', 'is', 'not', 'working', 'anymore', 'getting', 'message', 'that', 'my', 'session', 'expired', 'but', 'if', 'click', 'on', 'the', 'link', 'nothing', 'happens', '', '', '', '', '', 'need', 'help', 'with', 'your', 'dynamics', 'crm', '', 'click', 'here', '', '', 'chat', 'with', 'live', 'agent', 'regarding', 'your', 'dynamics', 'crm', 'questions', 'now', 'click', 'here', '', '', 'best'], ['unable', 'to', 'connect', 'to', 'vpn', 'unable', 'to', 'connect', 'to', 'vpn'], ['user', 'called', 'for', 'vendor', 'phone', 'number', 'user', 'called', 'for', 'vendor', 'phone', 'number'], ['vpn', 'not', 'working', 'hello', 'm', 'not', 'being', 'able', 'to', 'connect', 'to', 'company', 'network', 'through', 'the', 'vpn', 'pls', 'check', 'sir', 'am', 'not', 'being', 'able', 'to', 'upload', 'as', 'result', 'of', 'no', 'company', 'network'], ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'], ['unable', 'to', 'login', 'to', 'hr', 'tool', 'to', 'check', 'payslips', 'unable', 'to', 'login', 'to', 'hr', 'tool', 'to', 'check', 'payslips'], ['account', 'locked', 'out', 'account', 'locked', 'out'], ['unable', 'to', 'login', 'to', 'hr', 'tool', 'unable', 'to', 'login', 'to', 'hr', 'tool'], ['unable', 'to', 'log', 'in', 'to', 'erp', 'sid', 'unable', 'to', 'log', 'in', 'to', 'erp', 'sid'], ['password', 'reset', 'for', 'collaboration', 'platform', 'password', 'reset', 'for', 'collaboration', 'platform'], ['reset', 'users', 'hi', 'please', 'reset', 'users', 'password', 'client', 'id', 'username', 'xyz'], ['duplication', 'of', 'network', 'address', 'gentles', 'have', 'two', 'devices', 'that', 'are', 'trying', 'to', 'share', 'an', 'ip', 'address', 'they', 'are', 'trying', 'to', 'share', 'one', 'is', 'printer', 'with', 'the', 'hostname', 'of', 'prtjc', 'and', 'the', 'other', 'is', 'new', 'display', 'for', 'erp', 'the', 'display', 'is', 'using', 'dhcp', 'to', 'get', 'its', 'address', 'assigned', 'and', 'the', 'printer', 'is', 'hard', 'coded', 'my', 'guess', 'is', 'that', 'the', 'address', 'did', 'not', 'get', 'set', 'to', 'static', 'address', 'in', 'dhcp', 'need', 'this', 'corrected', 'so', 'the', 'display', 'will', 'pick', 'up', 'another', 'address'], ['ess', 'password', 'reset', 'ess', 'password', 'reset'], ['unable', 'to', 'install', 'flash', 'player', 'unable', 'to', 'install', 'flash', 'player'], ['ticket', 'no', 'employment', 'status', 'new', 'non', 'employee', 'ticket', 'no', 'employment', 'status', 'new', 'non', 'employee'], ['erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset'], ['unable', 'to', 'resolve', 'ticket', 'no', 'assigned', 'to', 'self', 'the', 'status', 'button', 'is', 'dierppearing', 'after', 'few', 'seconds'], ['installing', 'engineering', 'tool', 'need', 'to', 'install', 'engineering', 'tool', 'on', 'the', 'pc'], ['call', 'for', 'ecwtrjnq', 'jpecxuty', 'call', 'for', 'ecwtrjnq', 'jpecxuty'], ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'], ['tablet', 'sound', 'not', 'working', 'tablet', 'sound', 'not', 'working'], ['unable', 'to', 'login', 'to', 'system', 'unable', 'to', 'login', 'to', 'system'], ['please', 'reroute', 'jobs', 'on', 'printer', 'to', 'printer', 'issue', 'needs', 'to', 'be', 'resolved', 'today', 'hi', 'the', 'printer', 'printer', 'is', 'not', 'working', 'and', 'needs', 'part', 'replaced', 'can', 'you', 'reroute', 'the', 'jobs', 'in', 'queue', 'to', 'printer', 'printer', 'wihuyjdo', 'qpogfwkb', 'has', 'indicated', 'that', 'prqos', 'needs', 'new', 'part', 'and', 'it', 'not', 'deliver', 'for', 'few', 'days', 'so', 'the', 'inwarehouse', 'tools', 'will', 'need', 'to', 'print', 'on', 'printer', 'for', 'now', 'this', 'needs', 'to', 'be', 'taken', 'care', 'of', 'today', 'since', 'the', 'inwarehouse', 'tools', 'are', 'printed', 'and', 'are', 'picked', 'up', 'by', 'an', 'outside', 'vendor', 'at', 'pm', 'in', 'usa', 'on', 'daily', 'basis', 'please', 'contact', 'dkmcfreg', 'anwmfvlgenkataramdntyana', 'if', 'you', 'have', 'questions', 'about', 'the', 'jobs', 'in', 'queue', 'for', 'today'], ['unable', 'to', 'login', 'to', 'hr', 'tool', 'etime', 'unable', 'to', 'login', 'to', 'hr', 'tool', 'etime'], ['can', 'not', 'log', 'into', 'hr', 'tool', 'etime', 'through', 'single', 'sign', 'on', 'portal', 'can', 'not', 'log', 'into', 'hr', 'tool', 'etime', 'through', 'single', 'sign', 'on', 'portal'], ['password', 'changed', 'in', 'password', 'management', 'tool', 'but', 'didnt', 'update', 'for', 'erp', 'account', 'password', 'changed', 'in', 'password', 'management', 'tool', 'but', 'didnt', 'update', 'for', 'erp', 'account'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['windows', 'password', 'change', 'via', 'password', 'management', 'tool', 'windows', 'password', 'change', 'via', 'password', 'management', 'tool'], ['status', 'does', 'not', 'change', 'on', 'telephony', 'software', 'when', 'closing', 'call', 'the', 'agent', 'keeps', 'on', 'the', 'on', 'acd', 'call', 'status'], ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'in', 'job', 'scheduler', 'at'], ['call', 'for', 'ecwtrjnq', 'jpecxuty', 'call', 'for', 'ecwtrjnq', 'jpecxuty'], ['vip', 'need', 'my', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset', 'i', 'need', 'my', 'password', 'management', 'tool', 'password', 'manager', 'password', 'reset'], ['reset', 'scm', 'software', 'password', 'hello', 'please', 'reset', 'my', 'scm', 'software', 'password', 'cdbaoqts', 'wqbsodni', 'global', 'product', 'manager', 'markhtyeting', 'initiatives'], ['account', 'locked', 'out', 'while', 'in', 'office', 'account', 'kept', 'locking', 'out', '', 'possible', 'reasons', '', '', 'companysecure', 'or', 'mobile', 'device', 'email', 'setup', 'has', 'an', 'incorrect', 'password', 'stored', '', 'windows', 'and', 'network', 'passwords', 'do', 'not', 'match'], ['skype', 'meeting', 'good', 'morning', '', '', 'had', 'to', 'reset', 'my', 'password', 'again', 'and', 've', 'lost', 'my', 'option', 'for', 'setting', 'up', 'skype', 'meeting', 'again', 'can', 'you', 'please', 'help', 'me', 'can', 'recall', 'how', 'you', 'were', 'able', 'to', 'bring', 'it', 'back', 'the', 'last', 'time'], ['enquiry', 'on', 'impact', 'rewards', 'enquiry', 'on', 'impact', 'rewards', 'how', 'to', 'get', 'password', 'reset'], ['need', 'dn', 'for', 'material', 'plant', 'plant', 'pcs', 'thanks', 'need', 'dn', 'for', 'material', 'plant', 'plant', 'pcs'], ['unlock', 'logon', 'password', 'hello', '', 'please', 'help', 'to', 'unlock', 'my', 'company', 'net', 'log', 'on', 'password', 'urgent'], ['job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'mm', 'zscr', 'dly', 'merktc', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['password', 'changed', 'required', 'for', 'user', 'abc', 'password', 'changed', 'required', 'for', 'user', 'abc'], ['issues', 'with', 'outlook', 'best'], ['urgent', 'create', 'dlv', 'please', 'help', 'try', 'to', 'create', 'dlv', 'for', 'this', 'mm', '', 'sto', '', 'sto', '', '', 'sto', 'from', 'plant', 'to', 'plant'], ['apac', 'company', 'two', 'switches', 'are', 'down', 'since', 'am', 'et', 'on', 'apac', 'company', 'two', 'switches', 'are', 'down', 'since', 'am', 'et', 'on', '', '', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw', '', 'company', 'ap', 'chn', 'apac', 'company', 'access', 'sw'], ['error', 'login', 'on', 'to', 'the', 'sid', 'system', 'error', 'login', 'on', 'to', 'the', 'sid', 'system', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'user', 'has', 'tried', 'the', 'password', 'management', 'tool', 'pwd', 'manager', '', 'unlocked', 'the', 'erp', 'id', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['delivery', 'note', 'can', 'do', 'post', 'goods', 'issue', 'd', 'and', '', 'plant', 'plant', 'to', 'plant', '', 'the', 'issue', 'display', '', 'ekpo', 'sobkz', 'ekpo', 'umsok', 'ekpo', 'kzbws', 'ekpo', 'kzvbr', 'note', 'not', 'supported', 'check', 'your', 'entry'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['user', 'locked', 'user', 'xyz', 'it', 'team', 'please', 'kindly', 'release', 'locked', 'computer', 'for', 'user', 'xyz', 'user', 'name', 'fbmugzrl', 'ahyiuqev'], ['dell', 'my', 'laptop', 'speakers', 'is', 'not', 'working', 'again', 'and', 'requires', 'your', 'urgent', 'help', 'my', 'laptop', 'speakers', 'is', 'not', 'working', 'again', 'and', 'requires', 'your', 'urgent', 'help'], ['user', 'needs', 'help', 'to', 'connect', 'to', 'the', 'wireless', 'connection', 'at', 'home', 'user', 'needs', 'help', 'to', 'connect', 'to', 'the', 'wireless', 'connection', 'at', 'home', 'had', 'the', 'user', 'connect', 'to', 'the', 'lan', 'at', 'home', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', 'checked', 'the', 'network', 'settings', 'help', 'the', 'user', 'login', 'to', 'the', 'home', 'wireless', 'disconnected', 'the', 'home', 'lan', 'user', 'confirmed', 'that', 'he', 'is', 'able', 'to', 'login', 'to', 'the', 'home', 'wireless', 'issue', 'resolved'], ['inc', 'ticket', 'update', 'inc', 'ticket', 'update'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['power', 'outage', 'uk', 'al', 'and', 'ave', 'sites', 'hard', 'down', 'since', 'at', 'pm', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'yno', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['power', 'outage', 'germany', 'mx', 'site', 'is', 'hard', 'down', 'since', 'am', 'et', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'], ['user', 'yhmwxsqj', 'ugnthxky', 'having', 'issues', 'logging', 'to', 'outlook', 'user', 'yhmwxsqj', 'ugnthxky', 'having', 'issues', 'logging', 'to', 'outlook', 'rgtry', 'will', 'be', 'available', 'tomorrow', 'around', 'am', 'he', 'works', 'out', 'of', 'company', 'campus', 'request', 'you', 'to', 'reach', 'out', 'to', 'him', 'and', 'fix', 'the', 'issue'], ['job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at'], ['engineering', 'tool', 'drawing', 'originals', 'in', 'pdf', 'format', 'are', 'not', 'shown', 'hello', 'it', 'service', '', 'need', 'to', 'monitor', 'the', 'manufacturing', 'drawings', 'to', 'approve', 'manufacturing', '', 'the', 'engineering', 'tool', 'stopped', 'showing', 'pdf', 'originals', '', '', 'process', '', '', '', 'erp', 'production', 'order', 'interface', 'vendor', 'bas', 'cr', 'rfc', 'destination', 'production', 'order', 'interface', 'vendor', 'views', 'not', 'accessible', 'file', 'cannot', 'be', 'stamped', 'now', '', '', 'bapireturnederrorexception', '', 'stack', 'trace', '', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructureorreturntableline', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', '', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'handlereturnstructure', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', '', 'cadagent', 'erp', 'conn', 'jco', 'tm', 'jcoerpmanager', 'generirtcfunction', 'jcoerpmanager', 'java', 'id', 'jcoerpmanager', 'java', 'wt', '', 'cadagent', 'objmod', 'plmfile', 'checkoutview', 'plmfile', 'java', 'id', 'plmfile', 'java', 'aju', '', 'plm', 'omf', 'omforiginalsexport', 'checkoutbapi', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', '', 'plm', 'omf', 'omforiginalsexport', 'downloaddocumentoriginals', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', '', 'plm', 'omf', 'omforiginalsexport', 'actionperformed', 'omforiginalsexport', 'java', 'id', 'omforiginalsexport', 'java', 'rb', '', 'cadagent', 'gui', 'obr', 'obrfunctioneventqueue', 'run', 'obrfunctioneventqueue', 'java', 'id', 'obrfunctioneventqueue', 'java', 'bda', '', '', 'api', 'bapi', 'document', 'checkoutview', '', '', '', '', '', '', 'is', 'this', 'known', 'problem', 'when', 'it', 'will', 'be', 'fixed'], ['job', 'apo', 'bop', 'plant', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'apo', 'bop', 'plant', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'mm', 'zscr', 'wkly', 'rollfgyuej', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'open', 'ie', 'unable', 'to', 'open', 'ie'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['amssm', 'label', 'sys', 'amssm', 'ef', 'on', 'server', 'is', 'over', 'space', 'consumed', 'space', 'available', 'g', 'amssm', 'label', 'sys', 'amssm', 'ef', 'on', 'server', 'is', 'over', 'space', 'consumed', 'space', 'available', 'g'], ['unable', 'to', 'view', 'payslips', 'from', 'hr', 'tool', 'time', 'unable', 'to', 'view', 'payslips', 'from', 'hr', 'tool', 'time'], ['password', 'expiry', 'tomorrow', 'my', 'system', 'says', 'my', 'password', 'expires', 'tomorrow', 'but', 'when', 'want', 'to', 'change', 'to', 'new', 'password', 'it', 'does', 'not', 'allow', 'the', 'new', 'password', 'is', 'not', 'accepting', 'it', 'says', 'server', 'does', 'not', 'authorize', 'kindly', 'check', 'and', 'do', 'the', 'needful', 'as', 'the', 'password', 'is', 'expiring', 'tomorrow'], ['re', 'ess', 'portal', 'access', 'issue', 'hello', 'he', 'is', 'an', 'kiosk', 'user', 'please', 'reset', 'the', 'password', 'and', 'confirm', 'noscwdpm', 'akiowsmp', 'ihkolepb', 'ozhnjyef', 'ess', 'portal', 'access', 'issue', 'hi', 'below', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'with', 'user', 'id', 'sv', 'is', 'not', 'able', 'to', 'login', 'to', 'ess', 'portal', 'to', 'access', 'his', 'pay', 'slips', 'and', 'related', 'contents', 'he', 'is', 'attendance', 'tool', 'user', 'please', 'reset', 'his', 'user', 'id', 'and', 'password', 'and', 'revert', 'back'], ['ess', 'portal', 'access', 'issue', 'hi', 'below', 'mentioned', 'employee', 'krlszbqo', 'spimolgz', 'with', 'user', 'id', 'sv', 'is', 'not', 'able', 'to', 'login', 'to', 'ess', 'portal', 'to', 'access', 'his', 'pay', 'slips', 'and', 'related', 'contents', 'he', 'is', 'attendance', 'tool', 'user', 'please', 'reset', 'his', 'user', 'id', 'and', 'password', 'and', 'revert', 'back'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['attendance', 'tool', 'system', 'log', 'on', 'error', 'hello', 'good', 'morning', 'am', 'experiencing', 'issues', 'with', 'attendance', 'tool', 'log', 'on', 'every', 'time', 'try', 'to', 'log', 'on', 'through', 'single', 'sign', 'portal', 'the', 'following', 'screen', 'gets', 'displayed', 'and', 'it', 'stays', 'there', 'appreciate', 'your', 'support', 'to', 'fix', 'this', 'issue'], ['excel', 'freezing', 'issue', 'excel', 'freezing', 'issue'], ['unable', 'to', 'sync', 'file', 'in', 'collaboration', 'platform', 'unable', 'to', 'sync', 'file', 'in', 'collaboration', 'platform'], ['unable', 'to', 'update', 'password', 'on', 'the', 'password', 'management', 'tool', 'password', 'manager', 'unable', 'to', 'update', 'password', 'on', 'the', 'password', 'management', 'tool', 'password', 'manager'], ['vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query', 'vitalyst', 'transfer', 'reporting', 'tool', 'access', 'query'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['user', 'said', 'he', 'will', 'callback', 'user', 'said', 'he', 'will', 'callback'], ['unable', 'update', 'passwords', 'on', 'password', 'management', 'tool', 'unable', 'update', 'passwords', 'on', 'password', 'management', 'tool'], ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'is', 'locked', 'erp', 'sid', 'erp', 'production', 'password', 'reset', 'account', 'is', 'locked'], ['server', 'issues', 'hello', '', '', 'have', 'been', 'trying', 'to', 'gain', 'access', 'to', 'my', 'pay', 'roll', 'information', 'on', 'the', 'hub', 'specifically', 'the', 'hr', 'tool', 'etime', 'portal', 'the', 'other', 'information', 'on', 'the', 'portal', 'come', 'up', 'without', 'problems', 'but', 'the', 'pay', 'stub', 'does', 'not', 'it', 'continuously', 'shows', 'the', 'search', 'ring'], ['ticket', 'update', 'on', 'ticket', 'no', 'ticket', 'update', 'on', 'ticket', 'no'], ['unable', 'to', 'display', 'expense', 'report', 'unable', 'to', 'display', 'expense', 'report'], ['password', 'reset', 'for', 'upitdmhz', 'owupktcg', 'cruzjc', 'password', 'reset', 'for', 'upitdmhz', 'owupktcg', 'cruzjc'], ['unable', 'to', 'login', 'in', 'benefits', 'tab', 'unable', 'to', 'login', 'in', 'benefits', 'tab'], ['hello', 'm', 'having', 'an', 'issue', 'with', 'my', 'outlook', 'view', 'can', 'you', 'call', 'me', 'and', 'let', 'me', 'share', 'my', 'screen', 'hello', 'm', 'having', 'an', 'issue', 'with', 'my', 'outlook', 'view', 'can', 'you', 'call', 'me', 'and', 'let', 'me', 'share', 'my', 'screen'], ['unable', 'to', 'access', 'mails', 'unable', 'to', 'access', 'mails'], ['unable', 'to', 'display', 'expense', 'report', 'unable', 'to', 'display', 'expense', 'report'], ['mobile', 'device', 'activation', 'tvcdfqgp', 'nrbcqwgj', 'pm', 'nwfodmhc', 'exurcwkm', 'se', 'ha', 'bloqueado', 'en', 'forma', 'temporal', 'la', 'sincronizaci', 'de', 'su', 'dispositivo', 'vil', 'mediante', 'exchange', 'activesync', 'hasta', 'que', 'su', 'administrador', 'autorice', 'el', 'acceso', 'hi', 'received', 'this', 'message', 'and', 'our', 'local', 'it', 'expert', 'has', 'told', 'me', 'to', 'open', 'ticket'], ['internal', 'keybankrd', 'will', 'not', 'work', 'after', 'cs', 'nor', 'will', 'an', 'external', 'usb', 'keybankrd', 'internal', 'keybankrd', 'will', 'not', 'work', 'after', 'cs', 'nor', 'will', 'an', 'external', 'usb', 'keybankrd'], ['blank', 'call', 'gso', 'blank', 'call', 'gso'], ['update', 'on', 'inplant', 'update', 'on', 'inplant'], ['password', 'change', 'thru', 'password', 'management', 'tool', 'password', 'manager', 'hello', 'sir', '', '', 'tried', 'to', 'change', 'my', 'password', 'thru', 'above', 'got', 'below', 'error', 'pl', 'help', 'know', 'what', 'action', 'to', 'be', 'taken', 'further', 'to', 'ensure', 'all', 'passwords', 'are', 'same', 'everywhere', 'since', 'belo', 'wmsg', 'says', 'all', 'passwords', 'were', 'not', 'changed'], ['unlock', 'personal', 'number', 'in', 'ess', 'unlock', 'personal', 'number', 'in', 'ess'], ['intermittent', 'service', 'on', 'configair', 'server', 'in', 'sid', 'requires', 'probably', 'restart', 'on', 'production', 'server', 'intermittent', 'service', 'on', 'configair', 'server', 'in', 'sid', 'requires', 'probably', 'restart', 'on', 'production', 'server', 'the', 'error', 'occurs', 'in', 'production', 'and', 'shows', 'internal', 'serrver', 'error', 'error', 'while', 'trying', 'to', 'invoke', 'the', 'method', 'java', 'util', 'list', 'iterator', 'of', 'null', 'object', 'loaded', 'from', 'local', 'variable', 'local', 'list', 'the', 'issue', 'can', 'be', 'reproduced', 'in', 'production', 'g', 'company', 'customer', 'g', 'and', 'base', 'material', 'mm', 'hss', 'pm', 'finishing', 'company', 'customer', 'g', 'and', 'starting', 'from', 'scratch', 'can', 'select', 'product', 'platform', 'g', 'hp', 'hss', 'pm', 'roughing', 'but', 'the', 'screen', 'freezes', 'log', 'on', 'language', 'different', 'en', 'g', 'de', 'company', 'customer', 'g', 'base', 'material', 'g', 'we', 'had', 'this', 'issues', 'already', 'several', 'times', 'before', 'and', 'it', 'needed', 'always', 'restart', 'of', 'the', 'server', 'thryeu', 'is', 'good', 'contact', 'person', 'for', 'this', 'issue', 'as', 'he', 'was', 'already', 'working', 'on', 'the', 'root', 'cause', 'with', 'our', 'external', 'vendor', 'configair'], ['unable', 'to', 'access', 'vpn', 'unable', 'to', 'access', 'vpn'], ['unable', 'to', 'open', 'outlook', 'unable', 'to', 'open', 'outlook'], ['install', 'driver', 'in', 'printer', 'hr', 'in', 'hostname', 'install', 'driver', 'in', 'printer', 'hr', 'in', 'hostname'], ['unable', 'to', 'send', 'emails', 'from', 'outbox', 'unable', 'to', 'send', 'emails', 'from', 'outbox'], ['access', 'to', 'business', 'client', 'drawings', 'name', 'xvgftyr', 'tryfuh', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'cannot', 'seem', 'to', 'access', 'the', 'drawings', 'from', 'the', 'netweaver', 'application', 'that', 'is', 'installed', 'on', 'my', 'computer', 'it', 'doesn', 'take', 'me', 'to', 'the', 'same', 'page', 'that', 'my', 'colleagues', 'have'], ['taking', 'off', 'email', 'permissions', 'from', 'personal', 'phone', 'name', 'vdhfy', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'have', 'scrapped', 'the', 'old', 'phone', 'my', 'mail', 'was', 'configured', 'in', 'it', 'can', 'you', 'take', 'off', 'the', 'permissions', 'set', 'to', 'view', 'mails', 'on', 'that', 'phone'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'view', 'payslips', 'in', 'ie', 'unable', 'to', 'view', 'payslips', 'in', 'ie'], ['prtgghjk', 'password', 'reset', 'please', 'reset', 'hr', 'tool', 'gv', 'password', 'reset'], ['channel', 'partner', 'receiving', 'multiple', 'emails', 'from', 'erp', 'urgent', 'hi', 'our', 'channel', 'partner', 'with', 'the', 'email', 'address', 'received', 'emails', 'regarding', 'the', 'pos', 'error', 'in', 'matheywter', 'of', 'milliseconds', 'he', 'is', 'very', 'angry', 'this', 'needs', 'to', 'be', 'fixed', 'aerp', 'attached', 'is', 'file', 'extracted', 'from', 'erp', 'documenting', 'the', 'emails'], ['usa', 'company', 'interface', 'fastethernet', 'and', 'gigabitethernet', 'is', 'down', 'since', 'pm', 'et', 'on', 'usa', 'company', 'interface', 'fastethernet', 'and', 'gigabitethernet', 'is', 'down', 'since', 'pm', 'et', 'on'], ['password', 'reset', 'good', 'morning', 'have', 'forgotten', 'my', 'password', 'for', 'erp', 'sid', 'have', 'made', 'attempts', 'and', 'failed', 'could', 'you', 'please', 'reset', 'my', 'user', 'id', 'is', 'dgrtrkjs'], ['ess', 'login', 'issue', 'ess', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'reset', 'the', 'password', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['unable', 'to', 'start', 'dell', 'in', 'device', 'qifzkoej', 'etbmgjvo', 'is', 'unable', 'to', 'start', 'his', 'dell', 'in', 'tablet', 'device'], ['erp', 'print', 'tool', 'install', 'erp', 'print', 'tool', 'install'], ['good', 'morning', 'am', 'having', 'trouble', 'getting', 'into', 'my', 'vpn', 'name', 'wvngzrca', 'sfmrzdth', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'good', 'morning', 'am', 'having', 'trouble', 'getting', 'into', 'my', 'vpn', 'can', 'you', 'assist'], ['install', 'standard', 'acrobat', 'install', 'standard', 'acrobat'], ['password', 'reset', 'from', 'ad', 'password', 'reset', 'from', 'ad'], ['reset', 'the', 'password', 'for', 'wseacnvi', 'azvixyqg', 'on', 'erp', 'qa', 'erp', 'please', 'reset', 'my', 'password', 'to', 'sid', 'it', 'blocked', 'login', 'jdhdw'], ['i', 'used', 'to', 'have', 'acces', 'to', 'this', 'location', 'on', 'collaboration', 'platform', 'now', 'do', 'not', 'need', 'access', 'bwfhtumx', 'japznrvb', 'regional', 'controller'], ['crm', 'add', 'in', 'is', 'getting', 'disabled', 'from', 'outlook', 'crm', 'add', 'in', 'is', 'getting', 'disabled', 'from', 'outlook'], ['outlook', 'hangs', 'outlook', 'hangs'], ['vpn', 'not', 'working', 'vpn', 'not', 'working'], ['reset', 'passwords', 'for', 'hckvpary', 'emxbpkwy', 'using', 'password', 'management', 'tool', 'password', 'reset', 'employee', 'is', 'getting', 'an', 'error', 'user', 'authentication', 'failed', 'when', 'trying', 'to', 'log', 'into', 'the', 'ess', 'portal', 'she', 'is', 'able', 'to', 'access', 'erp', 'and', 'is', 'able', 'to', 'access', 'the', 'hub', 'tried', 'to', 'reset', 'and', 'change', 'her', 'password', 'through', 'password', 'management', 'tool', 'password', 'manager', 'but', 'got', 'an', 'error', 'cannot', 'find', 'account', 'woodscf', 'on', 'target', 'active', 'directory', 'her', 'user', 'id', 'is', 'hdjdkt'], ['job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['ess', 'password', 'reset', 'ess', 'password', 'reset'], ['wy', 'printer', 'please', 'note', 'some', 'continuous', 'erp', 'printing', 'is', 'happening', 'in', 'printer', 'wy', 'the', 'print', 'is', 'not', 'given', 'locally', 'please', 'arrange', 'to', 'cancel', 'the', 'same', 'immediately', 'as', 'lot', 'of', 'paper', 'is', 'getting', 'wasted'], ['update', 'java', 'viewer', 'dear', 'all', '', '', 'java', 'viewer', 'is', 'not', 'working', 'any', 'more', 'need', 'access', 'to', 'view', 'scanned', 'inwarehouse', 'tools', 'in', 'erp', '', '', 'assume', 'java', 'update', 'is', 'required', '', '', '', '', 'best'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'we', 'are', 'observing', 'below', 'alert', 'in', 'monitoring', 'tool', '', '', 'hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'], ['access', 'to', 'bex', 'hello', '', '', 'till', 'last', 'week', 'was', 'accessing', 'bex', 'reports', 'using', 'mms', 'portal', 'and', 'there', 'were', 'no', 'issues', '', '', 'starting', 'this', 'week', 'the', 'system', 'is', 'incredibly', 'slow', 'when', 'log', 'in', 'and', 'finally', 'does', 'not', 'allow', 'me', 'to', 'access', 'any', 'reports', '', '', 'can', 'it', 'be', 'the', 'issue', 'with', 'any', 'maintenance', 'or', 'my', 'access', 'rights', 'or', 'rather', 'should', 'try', 'to', 'access', 'bex', 'using', 'different', 'way', '', '', 'below', 'the', 'print', 'screen', 'from', 'what', 'see', 'after', 'log', 'in', '', '', 'am', 'also', 'able', 'to', 'get', 'to', 'finance', 'reports', 'see', 'below', 'however', 'when', 'click', 'profitability', 'analysis', 'as', 'was', 'always', 'doing', 'separate', 'window', 'is', 'open', 'however', 'apart', 'rom', 'that', 'the', 'screen', 'is', 'blank', '', '', '', 'appreciate', 'your', 'support', '', '', 'have', 'great', 'day', '', '', 'robhyertyj', '', '', '', 'yfqoaepn', 'xnezhsit', '', 'managing', 'director', '', 'finance', 'manager', 'cee', '', 'tel', '', 'mob', '', '', 'company', 'polska', 'sp', 'o', 'ul', 'krzywoustego', 'pozna', 'www', 'company', 'com', '', '', 'company', 'polska', 'sp', 'o', 'z', 'siedzib', 'polandiu', 'pozna', 'ul', 'krzywoustego', '', 'sp', 'ka', 'zarejestrowana', 's', 'dzie', 'rejonowym', 'pozna', 'nowe', 'miasto', 'wilda', 'polandiu', 'wydzia', 'viii', 'gospodarczy', 'krs', 'pod', 'numerem', '', 'kapita', 'zak', 'adowy', 'pln', 'nip'], ['windows', 'account', 'lockout', 'windows', 'account', 'lockout'], ['ticket', 'no', 'comments', 'added', 'windy', 'shi', 'ticket', 'no', 'comments', 'added', 'select', 'the', 'following', 'link', 'to', 'view', 'the', 'disclaimer', 'in', 'an', 'alternate', 'language'], ['account', 'locked', 'in', 'erp', 'sid', 'account', 'locked', 'in', 'erp', 'sid'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['user', 'needs', 'training', 'to', 'use', 'engineering', 'tool', 'to', 'view', 'drawings', 'user', 'needs', 'training', 'to', 'use', 'engineering', 'tool', 'to', 'view', 'drawings', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'help', 'and', 'educated', 'the', 'user', 'on', 'how', 'login', 'to', 'business', 'client', 'and', 'view', 'drawings', '', 'issue', 'resolved'], ['skype', 'not', 'working', 'hello', '', '', 'am', 'unable', 'to', 'access', 'the', 'skype', 'the', 'password', 'is', 'showing', 'error'], ['account', 'unlock', 'request', 'account', 'unlock', 'request'], ['urgent', 'delivery', 'note', 'creation', 'request', 'hello', 'it', 'team', 'could', 'you', 'please', 'generate', 'delivery', 'note', 'for', 'below', 'order', 'we', 'cannot', 'issue', 'dn', 'for', 'so', 'despite', 'of', 'enough', 'stock', 'for', 'all', 'of', 'items', 'at', 'shipping', 'plant', 'sales', 'org', 'delivery', 'plant', 'plant', 'shipping', 'point', 'tys', 'so', 'mm', 'pc', 'mm', 'pcs', 'mm', 'pcs'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['error', 'login', 'on', 'to', 'the', 'sid', 'system', 'error', 'login', 'on', 'to', 'the', 'sid', 'system'], ['unable', 'to', 'take', 'print', 'out', 'from', 'wy', 'unable', 'to', 'take', 'print', 'out', 'from', 'wy'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['unlock', 'supply', 'chain', 'software', 'account', 'hi', 'there', '', '', 'would', 'you', 'please', 'help', 'me', 'unlock', 'my', 'supply', 'chain', 'software', 'account', 'and', 'reset', 'my', 'supply', 'chain', 'software', 'password'], ['unable', 'to', 'access', 'password', 'management', 'tool', 'id', 'password', 'manager', 'ijeqpkrz', 'nwtehsyx', 'grauw', 'i', 'try', 'to', 'change', 'now', 'my', 'password', 'acc', 'to', 'attached', 'mail', 'but', 'this', 'don', 'work', 'was', 'out', 'of', 'office', 'for', 'vacation', 'time', 'until', 'now', 'but', '', 'password', 'management', 'tool', 'link', 'don', 'work', 'please', 'help', '', '', '', '', 'your', 'password', 'expires', 'in', 'day', '', '', 'the', 'requirement', 'to', 'change', 'your', 'password', 'every', 'days', 'enhances', 'data', 'security', 'within', 'company', '', '', 'please', 'login', 'to', '', 'step', 'by', 'step', 'guide', 'on', 'using', 'the', 'self', 'service', 'tool', 'is', 'available', 'here', '', '', 'please', 'do', 'not', 'reply', 'to', 'this', 'email', 'if', 'you', 'require', 'assistance', 'please', 'submit', 'ticket', 'to', 'the', 'global', 'support', 'center', 'via', 'any', 'of', 'these', 'modes', '', '', 'ticketing', 'tool', '', 'email', '', '', 'kind'], ['job', 'hostname', 'fail', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hostname', 'fail', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'login', 'to', 'erp', 'sid', 'unable', 'to', 'login', 'to', 'erp', 'sid'], ['crm', 'license', 'for', 'user', 'dfgry', 'vwitpm', 'zscxqdhoalaramdntyan', 'am', 'xyculgav', 'cuqptoah', 'fw', 'crm', 'license', 'for', 'dfgry', 'hello', 'crm', 'is', 'not', 'installed', 'in', 'my', 'laptop', 'please', 'support', 'me', 'on', 'this'], ['unable', 'to', 'connect', 'to', 'vpn', 'unable', 'to', 'connect', 'to', 'vpn'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['windows', 'account', 'locked', 'windows', 'account', 'locked'], ['apply', 'for', 'mobile', 'phone', 'access', 'to', 'mail', 'box', 'apply', 'for', 'mobile', 'phone', 'access', 'to', 'mail', 'box'], ['data', 'not', 'correctly', 'pulled', 'for', 'all', 'the', 'employees', 'in', 'the', 'travel', 'tool', 'attendee', 'interface', 'data', 'not', 'correctly', 'pulled', 'for', 'all', 'the', 'employees', 'in', 'the', 'travel', 'tool', 'attendee', 'interface'], ['shipment', 'notification', 'am', 'nwfodmhc', 'exurcwkm', 're', 'shipment', 'notification', 'dear', 'pls', 'help', 'to', 'update', 'customer', 'shipment', 'notification', 'email', 'address', 'b'], ['to', 'recover', 'folder', 'that', 'by', 'mistake', 'copied', 'to', 'drive', 'i', 'want', 'recover', 'folder'], ['job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['network', 'outage', 'india', 'site', 'hard', 'down', 'since', 'at', 'pm', 'et', 'on', 'no', 'backup', 'circuit', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'na', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['password', 'reset', 'request', 'password', 'reset', 'request'], ['user', 'is', 'not', 'able', 'to', 'see', 'all', 'text', 'in', 'mails', 'on', 'his', 'iphone', 'user', 'is', 'not', 'able', 'to', 'see', 'all', 'text', 'in', 'mails', 'on', 'his', 'iphone'], ['password', 'reset', 'password', 'reset'], ['unable', 'to', 'sync', 'all', 'mails', 'in', 'outlook', 'on', 'wifi', 'unable', 'to', 'sync', 'all', 'mails', 'in', 'outlook', 'on', 'wifi'], ['crm', 'tab', 'does', 'not', 'appear', 'on', 'outlook', 'crm', 'tab', 'does', 'not', 'appear', 'on', 'outlook'], ['unable', 'to', 'submit', 'expense', 'report', 'as', 'it', 'is', 'locked', 'by', 'user', 'unable', 'to', 'submit', 'expense', 'report', 'as', 'it', 'is', 'locked', 'by', 'user'], ['titcket', 'update', 'on', 'inplant', 'titcket', 'update', 'on', 'inplant'], ['i', 'need', 'to', 'approve', 'the', 'new', 'product', 'requests', 'below', 'i', 'need', 'to', 'approve', 'the', 'new', 'product', 'requests', 'below'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['changed', 'desktop', 'wallpaper', 'changed', 'desktop', 'wallpaper'], ['unable', 'to', 'open', 'website', 'name', 'xbdht', 'yrjhd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'benefit', 'advisor', 'will', 'not', 'run', 'in', 'my', 'browser'], ['msd', 'crm', 'assign', 'crm', 'and', 'license', 'to', 'nyrjkctu', 'tbhkenlo', 'use', 'profile', 'like', 'qmglkaru', 'qiwhfkdv'], ['sound', 'good', 'afternoon', '', '', 'am', 'having', 'issues', 'again', 'with', 'my', 'notebook', 'in', 'that', 'cannot', 'get', 'any', 'sound', 'and', 'cannot', 'participate', 'in', 'skype', 'calls'], ['need', 'the', 'username', 'to', 'submit', 'the', 'insurance', 'need', 'the', 'username', 'to', 'submit', 'the', 'insurance'], ['query', 'on', 'external', 'browser', 'query', 'on', 'external', 'browser'], ['unable', 'to', 'access', 'benefits', 'and', 'other', 'apps', 'in', 'hr', 'tool', 'one', 'time', 'unable', 'to', 'access', 'benefits', 'and', 'other', 'apps', 'in', 'hr', 'tool', 'one', 'time', 'access', 'denied'], ['unable', 'to', 'see', 'the', 'current', 'course', 'in', 'ethics', 'unable', 'to', 'see', 'the', 'current', 'course', 'in', 'ethics', 'user', 'id', 'bdtryh'], ['user', 'clicked', 'on', 'driver', 'update', 'manually', 'and', 'then', 'after', 'restarting', 'the', 'machine', 'he', 'receivng', 'error', 'user', 'clicked', 'on', 'driver', 'update', 'manually', 'and', 'then', 'after', 'restarting', 'the', 'machine', 'he', 'received', 'an', 'error', 'stating', 'pnp', 'detected', 'fatal', 'error'], ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'], ['windows', 'password', 'reset', 'windows', 'password', 'reset'], ['telephone', 'number', 'update', 'telephone', 'number', 'update'], ['insurance', 'information', 'insurance', 'information'], ['please', 'give', 'chrtyad', 'access', 'to', 'reporting', 'tool', 'ltaballotcsalesemp', 'and', 'map', 'him', 'to', 'thrdy', 'tgyu', 'team', 'as', 'an', 'ae', 'in', 'the', 'virtual', 'table', 'please', 'give', 'chrtyad', 'access', 'to', 'reporting', 'tool', 'ltaballotcsalesemp', 'and', 'map', 'him', 'to', 'thrdy', 'tgyu', 'team', 'as', 'an', 'ae', 'in', 'the', 'virtual', 'table'], ['loud', 'noise', 'gso', 'loud', 'noise', 'gso'], ['ess', 'kiosk', 'user', 'password', 'reset', 'ess', 'kiosk', 'user', 'password', 'reset'], ['network', 'outage', 'warehouse', 'node', 'company', 'ups', 'vpn', 'rtr', 'is', 'down', 'am', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['aw', 'ticket', 'no', 'comments', 'added', 'hi', 'have', 'uacyltoe', 'hxgayczeed', 'in', 'sid', 'and', 'it', 'works', 'now', 'correctly', 'the', 'accounting', 'documents', 'were', 'generated', 'automatically', 'without', 'any', 'errors', 'am', 'approving', 'the', 'change', 'best'], ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'], ['export', 'shipment', 'of', 'grinding', 'mahcine', 'to', 'khdgd', 'apac', 'advance', 'information', 'hdytrkfiu', 'pm', 'xjzcbgnp', 'vfkwscao', 'export', 'shipment', 'of', 'grinding', 'mahcine', 'to', 'khdgd', 'apac', 'advance', 'information', 'we', 'are', 'pushixepyfbga', 'wtqdyoin', 'for', 'dispatching', 'an', 'grinding', 'machine', 'to', 'khdgd', 'apac', 'tomorrow', 'this', 'is', 'just', 'for', 'your', 'advance', 'information', 'once', 'everything', 'is', 'in', 'place', 'we', 'will', 'seek', 'your', 'support', 'in', 'your', 'areas', 'to', 'help', 'us', 'in', 'clearing', 'this', 'consignment', 'tomorrow'], ['please', 'add', 'my', 'work', 'phone', 'number', 'to', 'my', 'profile', 'contact', 'phone'], ['adding', 'members', 'to', 'dl', 'adding', 'members', 'to', 'dl'], ['java', 'issue', 'on', 'uacyltoe', 'hxgaycze', 'laptop', 'java', 'issue', 'on', 'uacyltoe', 'hxgaycze', 'laptop'], ['support', 'r', 'fa', 'gstry', 'arexjftu', 'ohwngl', 'support', 'r', 'fa', 'konnica', 'arexjftu', 'ohwngl'], ['problems', 'with', 'bluescreen', 'hello', 'it', 'happened', 'again', 'the', 'pc', 'hung', 'itself', 'up', 'again', 'and', 'again', 'and', 'just', 'presented', 'me', 'with', 'a', 'blue', 'screen', 'with', 'white', 'writing', 'what', 'we', 'can', 'do', 'there'], ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at'], ['eu', 'tool', 'crashes', 'when', 'confirmations', 'are', 'deleted', 'not', 'able', 'to', 'remove', 'scrap', 'confirmations', 'that', 'have', 'been', 'rectified', 'in', 'erp', 'eu', 'tool', 'crashes', 'when', 'confirmations', 'are', 'deleted', 'not', 'able', 'to', 'remove', 'scrap', 'confirmations', 'that', 'have', 'been', 'rectified', 'in', 'erp'], ['enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enable', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'name', 'fdgrty', 'summary', 'need', 'bgdxitwu', 'dhcopwxa', 'active', 'directory', 'account', 'enabled'], ['sync', 'emails', 'issue', 'sync', 'emails', 'issue'], ['internet', 'explorer', 'issues', 'user', 'is', 'having', 'issues', 'with', 'his', 'internet', 'explorer', 'the', 'page', 'keeps', 'refreshing', 'and', 'ends', 'up', 'with', 'dll', 'error'], ['call', 'for', 'ecwtrjnq', 'jpecxuty', 'call', 'for', 'ecwtrjnq', 'jpecxuty'], ['blank', 'call', 'blank', 'call'], ['unable', 'to', 'view', 'payslips', 'unable', 'to', 'view', 'payslips'], ['customer', 'not', 'getting', 'order', 'acknowledgements', 'automatically', 'two', 'customer', 'accounts', 'have', 'not', 'been', 'getting', 'the', 'order', 'acknowledgements', 'automatically', 'like', 'they', 'have', 'been', 'for', 'the', 'past', 'years', 'both', 'are', 'under', 'the', 'same', 'top', 'parent', 'accts', 'and', 'should', 'automatically', 'be', 'sending', 'acknowledgements', 'to', 'since', 'they', 'have', 'not', 'been', 'getting', 'them', 'can', 'someone', 'look', 'into', 'this', 'this', 'is', 'affecting', 'the', 'customer', 'paying', 'the', 'bills', 'as', 'they', 'use', 'this', 'acknowledgement', 'as', 'receiver', 'so', 'they', 'can', 'pay', 'the', 'bill', 'senior', 'sales', 'engineer', 'company', 'inc'], ['production', 'order', 'locked', 'production', 'order', 'is', 'locked', 'by', 'user', 'gtxuamif', 'pamxszek', 'no', 'one', 'has', 'been', 'able', 'to', 'unlock', 'can', 'this', 'order', 'be', 'unlocked', 'inspection', 'lot', 'is', 'being', 'processed', 'by', 'gtxuamif', 'pamxszek'], ['i', 'need', 'access', 'to', 'finance', 'section', 'of', 'hub', 'i', 'could', 'always', 'get', 'into', 'the', 'finance', 'section', 'and', 'now', 'can', 'i', 'need', 'access', 'please', 'bwfhtumx', 'japznrvb', 'regional', 'controller'], ['erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset'], ['i', 've', 'received', 'the', 'message', 'below', 'can', 'you', 'tell', 'me', 'from', 'whom', 'the', 'email', 'mentioned', 'was', 'sent', 'i', 've', 'received', 'the', 'message', 'below', 'can', 'you', 'tell', 'me', 'from', 'whom', 'the', 'email', 'mentioned', 'was', 'sent'], ['email', 'address', 'confirmation', 'email', 'address', 'confirmation'], ['erp', 'pi', 'and', 'msd', 'crm', 'connectivity', 'issue', 'serirtce', 'certificate', 'renewal', 'hi', 'all', 'we', 'have', 'connectivity', 'issue', 'between', 'erp', 'pi', 'and', 'msd', 'crm', 'due', 'to', 'certificate', 'renewal', 'on', 'azure', 'websites', 'and', 'that', 'certificate', 'is', 'not', 'yet', 'updated', 'on', 'erp', 'pi', 'side', 'issue', 'changes', 'to', 'data', 'records', 'accounts', 'sales', 'area', 'data', 'partner', 'functions', 'contacts', 'leads', 'are', 'not', 'being', 'processed', 'from', 'erp', 'pi', 'to', 'worked', 'with', 'it', 'msd', 'crm', 'and', 'vice', 'versa', 'in', 'all', 'environments', 'prod', 'qa', 'and', 'dev', 'issue', 'start', 'time', 'pm', 'troubleshooting', 'steps', 'when', 'tryhdty', 'from', 'customer', 'master', 'team', 'reported', 'the', 'issue', 'that', 'prospect', 'account', 'created', 'in', 'erp', 'didn', 'come', 'into', 'msd', 'yet', 'erp', 'pi', 'team', 'observed', 'that', 'the', 'records', 'are', 'in', 'still', 'awaiting', 'acknowledgement', 'status', 'which', 'basically', 'means', 'they', 'are', 'not', 'yet', 'delivered', 'received', 'by', 'the', 'target', 'system', 'upon', 'some', 'log', 'analysis', 'and', 'trying', 'to', 'identify', 'the', 'root', 'cause', 'between', 'erp', 'pi', 'basis', 'and', 'msd', 'teams', 'it', 'been', 'observed', 'that', 'the', 'issue', 'has', 'started', 'in', 'production', 'environment', 'since', 'around', 'est', 'on', 'we', 'observed', 'the', 'same', 'behavior', 'with', 'azure', 'mfg', 'tool', 'and', 'erp', 'pi', 'logs', 'of', 'other', 'non', 'production', 'environments', 'as', 'well', 'you', 'can', 'find', 'error', 'screenshots', 'from', 'erp', 'pi', 'system', 'in', 'the', 'mail', 'chain', 'root', 'cause', 'it', 'appears', 'that', 'the', 'certificate', 'for', 'azure', 'webapps', 'have', 'been', 'updated', 'on', 'as', 'it', 'is', 'nearing', 'the', 'expiration', 'date', 'th', 'but', 'the', 'new', 'certificate', 'is', 'not', 'updated', 'on', 'erp', 'pi', 'they', 'are', 'not', 'even', 'aware', 'of', 'this', 'change', 'so', 'when', 'the', 'production', 'azure', 'webapp', 'company', 'crm', 'sp', 'mfg', 'toolt', 'azurewebsites', 'net', 'got', 'restarted', 'on', 'around', 'this', 'connectivity', 'appears', 'to', 'have', 'been', 'broken', 'next', 'steps', 'we', 'need', 'the', 'azure', 'webapp', 'certificate', 'chain', 'to', 'be', 'sent', 'to', 'erp', 'basis', 'team', 'so', 'that', 'they', 'can', 'update', 'it', 'on', 'erp', 'pi', 'system', 'whom', 'can', 'reach', 'out', 'to', 'for', 'receiving', 'the', 'certificate', 'details', 'do', 'we', 'have', 'an', 'azure', 'admin', 'in', 'house', 'or', 'do', 'you', 'want', 'me', 'to', 'open', 'case', 'with', 'microsoft', 'once', 'certificate', 'is', 'received', 'maybe', 'we', 'can', 'first', 'do', 'this', 'on', 'qa', 'system', 'and', 'then', 'upon', 'confirmation', 'that', 'it', 'works', 'we', 'can', 'apply', 'it', 'to', 'production', 'and', 'other', 'environments'], ['printer', 'problem', 'issue', 'information', 'please', 'complete', 'all', 'required', 'questions', 'below', 'if', 'not', 'it', 'will', 'be', 'returned', 'back', 'to', 'the', 'gsc', 'requester', 'to', 'provide', 'required', 'information', 'gsc', 'to', 'review', 'ticket', 'if', 'not', 'able', 'to', 'resolve', 'then', 'please', 'assign', 'to', 'appropriate', 'group', 'per', 'your', 'printer', 'problem', 'assignment', 'flowchart', 'printer', 'name', 'make', 'model', 'ex', 'hq', 'wy', 'hp', 'kd', 'detailed', 'description', 'of', 'the', 'problem', 'error', 'says', 'need', 'to', 'download', 'and', 'install', 'software', 'driver', 'from', 'the', 'hostname', 'computer', 'to', 'print', 'to', 'kd', 'type', 'of', 'documents', 'not', 'printing', 'email', 'excel', 'word', 'etc', 'word', 'inwarehouse', 'tool', 'delivery', 'note', 'production', 'order', 'etc', 'what', 'system', 'or', 'application', 'being', 'used', 'at', 'time', 'of', 'the', 'problem', 'ex', 'windows', 'erp', 'windows', 'if', 'not', 'printing', 'at', 'all', 'does', 'it', 'respond', 'to', 'ping', 'command', 'on', 'the', 'network', 'and', 'has', 'power', 'cycle', 'of', 'the', 'printer', 'been', 'completed', 'not', 'sure', 'what', 'this', 'means', 'if', 'erp', 'system', 'which', 'system', 'ex', 'sid', 'sid', 'hrp', 'plm', 'not', 'erp', 'if', 'it', 'an', 'erp', 'printer', 'problem', 'can', 'the', 'erp', 'output', 'be', 'rerouted', 'to', 'another', 'erp', 'printer', 'temporarily', 'not', 'erp', 'what', 'printer', 'can', 'it', 'be', 'rerouted', 'too', 'if', 'document', 'is', 'not', 'printing', 'correctly', 'please', 'scan', 'copy', 'of', 'the', 'document', 'and', 'attach', 'to', 'the', 'ticketing', 'tool', 'ticket'], ['power', 'outage', 'australia', 'australia', 'site', 'hard', 'down', 'since', 'at', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', 'when', 'did', 'it', 'start', 'am', 'et', 'on', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'no', 'na', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', 'equipment', 'reset', 'na', 'yes', 'no', 'na', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'global', 'telecom', 'notified', 'gsc', 'na', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', 'additional', 'diagnostics'], ['unable', 'to', 'log', 'into', 'erp', 'hello', 'team', '', '', 'am', 'unable', 'to', 'log', 'into', 'my', 'erp', 'account', 'even', 'the', 'correct', 'password', 'id', 'not', 'accepted', '', '', 'need', 'resolution', 'on', 'very', 'urgent', 'basis'], ['windows', 'password', 'reset', 'windows', 'password', 'reset'], ['activate', 'iphone', 'iygsxftl', 'hysrbgad', 'set', 'up', 'spare', 'company', 'owned', 'iphone', 'cause', 'the', 'old', 'one', 'was', 'broken', '', 'agreement', 'and', 'supervisors', 'appoval', 'is', 'attached', '', 'now', 'his', 'account', 'is', 'quarantined', '', 'could', 'you', 'please', 'activate', 'his', 'new', 'device'], ['login', 'issue', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'reset', 'the', 'password', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['unable', 'to', 'print', 'to', 'printer', 'welcome', 'our', 'next', 'available', 'agent', 'will', 'be', 'with', 'you', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'has', 'joined', 'the', 'conversation', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['outlook', 'crashing', 'welcome', 'our', 'next', 'available', 'agent', 'will', 'be', 'with', 'you', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'has', 'joined', 'the', 'conversation', 'ayrhcfxi', 'zartupsw', 'hello', 'gstdy', 'yrada', 'hi', 'ayrhcfxi', 'zartupsw', 'hello'], ['need', 'file', 'restored', 'on', 'drive', 'welcome', 'our', 'next', 'available', 'agent', 'will', 'be', 'with', 'you', 'shortly', '', 'interaction', 'alerting', 'agent', '', 'website', 'visitor', 'has', 'joined', 'the', 'conversation', '', 'ayrhcfxi', 'zartupsw', 'hello'], ['sid', 'logon', 'balancing', 'error', 'welcome', 'our', 'next', 'available', 'agent', 'will', 'be', 'with', 'you', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'has', 'joined', 'the', 'conversation', 'tyss', 'ashdtyf', 'greetings', 'ayrhcfxi', 'zartupsw', 'hi', 'ayrhcfxi', 'zartupsw'], ['unable', 'to', 'login', 'to', 'sfb', 'name', 'obanjrhg', 'rnafleys', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'hello', 'problem', 'signing', 'in', 'to', 'skype'], ['reset', 'the', 'password', 'for', 'fygrwuna', 'gomcekzi', 'on', 'mail', 'please', 'password', 'r', 'fygrwuna', 'gomcekzi', 'mail', 'to', 'reset', 'please', 'new', 'password', 'to', 'manager'], ['password', 'resetfor', 'sid', 'hello', '', '', 'please', 'unlock', 'and', 'reset', 'my', 'password', 'for', 'sid', 'system'], ['babiluntr', 'client', 'license', 'expired', 'and', 'client', 'is', 'now', 'in', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel', 'babiluntr', 'client', 'license', 'expired', 'and', 'client', 'is', 'now', 'in', 'uacyltoe', 'hxgaycze', 'mode', 'eagl', 'tel'], ['outbound', 'calls', 'not', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'calls', 'are', 'working', 'fine', 'please', 'check', 'outbound', 'calls', 'not', 'possible', 'via', 'germany', 'pbx', 'system', 'inbound', 'calls', 'are', 'working', 'fine', 'please', 'check'], ['problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx', 'problem', 'mit', 'laufwerk', 'laeusvjo', 'fvaihgpx'], ['pls', 'also', 'extend', 'mm', 'and', 'to', 'my', 'purchasing', 'user', 'account', 'need', 'to', 'create', 'prs', 'for', 'both', 'mm', 'pls', 'also', 'extend', 'mm', 'and', 'to', 'my', 'purchasing', 'user', 'account', 'need', 'to', 'create', 'prs', 'for', 'both', 'mm'], ['the', 'o', 'can', 'not', 'be', 'generated', 'for', 'dn', 'dear', 'it', '', '', 'would', 'you', 'pls', 'help', 'to', 'check', 'dn', 'o', 'can', 'not', 'be', 'generated', 'for', 'this', 'dn'], ['itry', 'to', 'open', 'excel', 'file', 'with', 'microsoft', 'online', 'but', 'not', 'work', 'name', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'itry', 'to', 'open', 'excel', 'file', 'with', 'microsoft', 'online', 'but', 'not', 'work'], ['unable', 'to', 'login', 'to', 'hr', 'tool', 'unable', 'to', 'login', 'to', 'hr', 'tool'], ['vip', 'have', 'been', 'unable', 'to', 'access', 'my', 'payandtaxes', 'tab', 'for', 'several', 'days', 'hangs', 'on', 'time', 'clock', 'what', 'do', 'need', 'to', 'do', 'to', 'reso', 'gstdy', 'tehdy', 'am', 'vkjdgtxb', 'pkinmjqs', 're', 'fw', 'access', 'to', 'time', 'dear'], ['business', 'client', 'not', 'working', 'business', 'client', 'not', 'working'], ['reporting', 'tool', 'erp', 'hana', 'error', 'hi', '', '', 'everytime', 'want', 'to', 'set', 'filter', 'in', 'reporting', 'tool', 'with', 'data', 'source', '', '', 'pk', 'publish', 'pk', 'otc', 'billing', 'otc', 'billing', '', '', 'am', 'getting', 'below', 'error', 'message'], ['job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at'], ['please', 'reset', 'my', 'erp', 'and', 'bex', 'password', 'seem', 'to', 'by', 'not', 'synchronized', 'thanks', 'fmzdkyqv', 'dbrslnhe', 'director', 'finance', 'business', 'company'], ['netweaver', 'no', 'longer', 'works', 'hello', '', '', 'netweaver', 'no', 'longer', 'works', 'or', 'i', 'can', 'no', 'longer', 'open', 'it', '', '', '', '', '', '', '', '', '', '', '', 'best', 'regards'], ['a', 'ndigung', 'for', 'fgxprnub', 'hlanwgqj', 'effective', 'has', 'been', 'approved', 'a', 'ndigung', 'for', 'fgxprnub', 'hlanwgqj', 'effective', 'has', 'been', 'approved'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['outlook', 'setting', 'is', 'changed', 'outlook', 'setting', 'is', 'changed'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'new', 'password', 'r', 'account', 'name', 'tgryhu', 'hgygrtui', 'password', 'r', 'this', 'account', 'no', 'longer', 'works', 'employee', 'is', 'present', 'in', 'kw', 'and', 'early', 'shift'], ['check', 'status', 'tab', 'is', 'not', 'appearing', 'in', 'purchasing', 'screen', 'check', 'status', 'button', 'is', 'not', 'seen', 'in', 'my', 'purchasing', 'screen'], ['printer', 'problem', 'issue', 'information', 'printer', 'scanner', 'em', 'scanner', 'can', 'no', 'longer', 'find', 'path'], ['unable', 'to', 'open', 'erp', 'sid', 'while', 'in', 'office', 'without', 'logging', 'in', 'to', 'vpn', 'remote', 'am', 'unable', 'to', 'login', 'to', 'erp', 'it', 'throws', 'balancing', 'error'], ['windows', 'account', 'locked', 'windows', 'account', 'locked'], ['skype', 'meeting', 'hello', '', '', 'provide', 'me', 'immediately', 'the', 'skype', 'meeting', 'options', 'presently', 'it', 'is', 'not', 'enabled', '', '', '', '', '', '', '', '', 'best'], ['outlook', 'folder', 'folder', 'office', 'outlook', 'folder', 'folder', 'office'], ['can', 'not', 'login', 'skype', 'dear', 'it', '', '', 'can', 'not', 'login', 'the', 'skype', 'would', 'you', 'pls', 'help', 'to', 'check', 'it'], ['sn', 'os', 'has', 'been', 'identified', 'as', 'unavailable', 'via', 'esrs', 'monitoring', 'services', 'and', 'you', 'have', 'no', 'esrs', 'connectivity', 'sn', 'os', 'has', 'been', 'identified', 'as', 'unavailable', 'via', 'esrs', 'monitoring', 'services', 'and', 'you', 'have', 'no', 'esrs', 'connectivity'], ['unable', 'to', 'create', 'delivery', 'mm', 'can', 'print', 'n', 'but', 'can', 'post', 'detail', 'information', 'see', 'attachment', 'please', 'provide', 'the', 'following', '', '', 'what', 'order', 'number', '', '', 'what', 'material', 'or', 'item', 'number', 'mm', '', '', 'what', 'warehouse', 'location', 'plant', '', '', 'issue', 'description', 'error', 'message', 'see', 'attachment'], ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'], ['unable', 'to', 'down', 'load', 'ethics', 'module', 'brdhdd', 'dhwduw', 'am', 'nwfodmhc', 'exurcwkm', 'fwd', 'unable', 'to', 'down', 'load', 'ethics', 'module', 'begin', 'forwarded', 'message', 'unable', 'to', 'down', 'load', 'ethics', 'module', 'hi', 'trust', 'doing', 'well', 'am', 'unable', 'to', 'down', 'load', 'and', 'getting', 'below', 'msg', 'did', 'reset', 'resolution', 'however', 'still', 'same', 'issue', 'persist', 'please', 'help', 'director', 'of', 'sales', 'company', 'indirect', 'channels', 'asia', 'and'], ['company', 'email', 'to', 'private', 'phone', 'hprdlbxf', 'nozjtgwi', 'all', '', '', 'please', 'help', 'to', 'set', 'up', 'the', 'email', 'access', 'to', 'my', 'private', 'own', 'cell', 'phone', '', '', '', 'best'], ['network', 'outage', 'india', 'site', 'hard', 'down', 'since', 'at', 'pm', 'et', 'at', 'no', 'backup', 'circuit', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'et', 'at', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'na', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['unable', 'to', 'log', 'in', 'to', 'ess', 'unable', 'to', 'log', 'in', 'to', 'ess'], ['skype', 'error', 'while', 'logging', 'in', 'skype', 'error', 'while', 'logging', 'in'], ['vitalyst', 'transfer', 'crm', 'installation', 'vitalyst', 'transfer', 'crm', 'installation'], ['unable', 'to', 'access', 'benefits', 'tab', 'unable', 'to', 'access', 'benefits', 'tab'], ['laptop', 'is', 'very', 'slow', 'any', 'dialog', 'bog', 'open', 'is', 'choppy', 'and', 'flickers', 'delayed', 'laptop', 'is', 'very', 'slow', 'any', 'dialog', 'bog', 'open', 'is', 'choppy', 'and', 'flickers', 'delayed'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['running', 'full', 'production', 'and', 'need', 'erp', 'update', 'pushed', 'out', 'for', 'several', 'hours', 'summary', 'for', 'th', 'we', 'will', 'be', 'running', 'full', 'production', 'and', 'need', 'erp', 'update', 'pushed', 'out', 'for', 'several', 'hours'], ['india', 'access', 'sw', 'and', 'sw', 'went', 'down', 'at', 'pm', 'et', 'on', 'india', 'access', 'sw', 'and', 'sw', 'went', 'down', 'at', 'pm', 'et', 'on'], ['need', 'password', 'reset', 'need', 'password', 'reset'], ['issues', 'with', 'pdf', 'viewer', 'on', 'iphone', 'for', 'davidthd', 'issues', 'with', 'pdf', 'viewer', 'on', 'iphone', 'for', 'davidthd'], ['engineering', 'tools', 'not', 'connected', 'to', 'network', 'even', 'though', 'vpn', 'is', 'connected', 'engineering', 'tools', 'not', 'connected', 'to', 'network', 'even', 'though', 'vpn', 'is', 'connected'], ['outlook', 'crm', 'are', 'having', 'issue', 'with', 'outlook', 'and', 'crm', 'on', 'our', 'phone', 'and', 'computers', '', '', 'sent', 'from', 'my', 'iphone', '', 'best'], ['need', 'erp', 'password', 'reset', 'for', 'need', 'erp', 'password', 'reset', 'for'], ['i', 'need', 'security', 'for', 'the', 'uacyltoe', 'hxgaycze', 'and', 'dev', 'copies', 'of', 'crm', 'to', 'do', 'some', 'general', 'uacyltoe', 'hxgayczeing', 'and', 'training', 'will', 'need', 'access', 'to', 'the', 'training', 'and', 'development', 'application', 'for', 'microsoft', 'dynamics', '', '', 'mikhghytr', 'wafglhdrhjop', '', 'sr', 'manager', 'global', 'ethics', 'and', 'compliance', 'programdntys', '', 'm', '', '', 'company', 'inc', 'technology', 'way', 'usa', 'pa'], ['internal', 'users', 'are', 'unable', 'to', 'download', 'discount', 'price', 'file', 'on', 'distributor', 'tool', 'company', 'center', 'internal', 'users', 'are', 'unable', 'to', 'download', 'discount', 'price', 'file', 'on', 'distributor', 'tool', 'company', 'center', 'the', 'issue', 'is', 'probably', 'related', 'to', 'the', 'change', 'made', 'for', 'ftp', 'download', 'we', 'need', 'to', 'fix', 'issues', 'aerp', 'as', 'this', 'is', 'causing', 'lost', 'sales', 'external', 'users', 'works', 'fine', 'all', 'zsdrshstrud', 'is', 'the', 'price', 'maintenance', 'abap', 'report', 'for', 'the', 'pricing', 'team', 'to', 'maintain', 'price', 'data', 'in', 'erp', 'erp', 'and', 'it', 'is', 'going', 'to', 'be', 'limited', 'to', 'pricing', 'functions', 'for', 'all', 'price', 'related', 'uploads', 'into', 'erp', 'however', 'the', 'function', 'distributor', 'discount', 'report', 'from', 'that', 'report', 'don', 'see', 'problem', 'to', 'usa', 'access', 'also', 'for', 'internal', 'users', 'especially', 'as', 'the', 'external', 'users', 'seem', 'to', 'have', 'already', 'access', 'to', 'it', 'best'], ['unable', 'to', 'login', 'to', 'collaboration', 'platform', 'unable', 'to', 'login', 'to', 'collaboration', 'platform'], ['unable', 'to', 'receive', 'emails', 'on', 'company', 'provided', 'iphone', 'unable', 'to', 'receive', 'emails', 'on', 'company', 'provided', 'iphone'], ['windows', 'password', 'reset', 'windows', 'password', 'reset'], ['eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv', 'eu', 'tool', 'ist', 'sehr', 'langsadgtym', 'ywqgrbnx', 'jwnsyzbv', 'jionmpsf', 'wnkpzcmv'], ['request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for', 'request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for'], ['pick', 'up', 'old', 'eq', 'wrcktgbd', 'wzrgyunp', 'pick', 'up', 'old', 'eq', 'wrcktgbd', 'wzrgyunp'], ['probleme', 'shore', 'an', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp', 'probleme', 'shore', 'an', 'tgeyd', 'web', 'wu', 'wrcktgbd', 'wzrgyunp'], ['support', 'r', 'we', 'zlqfptjx', 'xnklbfua', 'support', 'r', 'we', 'zlqfptjx', 'xnklbfua'], ['username', 'locked', 'hello', 'username', 'gdthryd', 'mgvpoyqd', 'tnlshpwb', 'is', 'locked', 'out', 'of', 'his', 'computer', 'am', 'sending', 'this', 'message', 'on', 'his', 'behalf', 'please', 'help', 'inhekdol', 'anvqzdif', 'quality', 'technologist'], ['unable', 'to', 'connect', 'to', 'lan', 'internet', 'unable', 'to', 'connect', 'to', 'lan', 'internet'], ['install', 'collaboration', 'platform', 'install', 'collaboration', 'platform'], ['request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for', 'request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for'], ['ticket', 'update', 'ticket', 'update'], ['erp', 'sid', 'account', 'unlock', 'erp', 'sid', 'account', 'unlock'], ['cannot', 'access', 'guest', 'wifi', 'sponsor', 'portal', 'receive', 'sponsor', 'portal', 'internal', 'error', 'when', 'attempting', 'to', 'issue', 'guest', 'wifi', 'access', '', 'this', 'is', 'the', 'link', 'was', 'given', 'to', 'use', '', 'createknownaccountssummary'], ['user', 'needs', 'help', 'to', 'login', 'to', 'the', 'company', 'vpn', 'user', 'needs', 'help', 'to', 'login', 'to', 'the', 'company', 'vpn', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'help', 'the', 'user', 'login', 'to', 'the', 'company', 'vpn', '', 'user', 'confirmed', 'he', 'is', 'now', 'abl', 'eto', 'login', 'to', 'the', 'erp', 'sid', '', 'issue', 'resolved'], ['need', 'to', 'map', 'mailboxes', 'of', 'colleagues', 'need', 'to', 'map', 'mailboxes', 'of', 'colleagues'], ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'], ['new', 'team', 'details', 'not', 'updated', 'on', 'bobj', 'reports', 'from', 'ess', 'new', 'team', 'and', 'manager', 'details', 'not', 'updated', 'on', 'bobj', 'reports', 'from', 'ess', 'on', 'opening', 'the', 'bex', 'reports', 'from', 'ess', 'refer', 'screenshot', 'the', 'reports', 'still', 'shows', 'the', 'old', 'team', 'data', 'need', 'to', 'reflect', 'the', 'new', 'team', 'data', '', '', 'new', 'manager', 'details', 'are', 'already', 'updated', 'on', 'erp', '', '', 'phone', 'sartlgeo', 'lhqksbdx'], ['email', 'font', 'showing', 'very', 'small', 'when', 'replying', 'to', 'emails', 'email', 'font', 'showing', 'very', 'small', 'when', 'replying', 'to', 'emails', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'corrected', 'the', 'font', 'size', '', 'advised', 'the', 'user', 'to', 'check', 'now', '', 'user', 'confirmed', 'all', 'is', 'fine', 'now', '', 'issue', 'resolved'], ['reset', 'passwords', 'for', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'passwords', 'for', 'hdthy', 'hstdd', 'using', 'password', 'management', 'tool', 'password', 'reset'], ['computer', 'in', 'the', 'maintenance', 'dept', 'is', 'down', 'please', 'fix', 'computer', 'in', 'the', 'maintenance', 'dept', 'is', 'down', 'please', 'fix'], ['computer', 'is', 'down', 'in', 'the', 'old', 'cnc', 'area', 'please', 'fix', 'for', 'erp', 'computer', 'is', 'down', 'in', 'the', 'old', 'cnc', 'area', 'please', 'fix', 'for', 'erp'], ['user', 'needs', 'new', 'telephony', 'software', 'password', 'user', 'needs', 'new', 'telephony', 'software', 'password'], ['vip', 'printer', 'connection', 'request', 'to', 'ag', 'hello', 'want', 'to', 'connect', 'my', 'workstation', 'to', 'printer', 'ag', 'in', 'germany', 'the', 'following', 'screen', 'shot', 'says', 'need', 'permission', 'to', 'connect', 'to', 'this', 'printer', 'from', 'the', 'system', 'administrator', 'many'], ['i', 'cannot', 'get', 'onto', 'the', 'network', 'on', 'my', 'pc', 'i', 'cannot', 'get', 'onto', 'the', 'network', 'on', 'my', 'pc'], ['vip', 'login', 'issue', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'unlocked', 'the', 'account', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'she', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['misplaced', 'password', 'for', 'the', 'hub', 'unable', 'to', 'login', 'to', 'the', 'hub'], ['please', 'reset', 'my', 'sid', 'password', 'user', 'id', 'gdthrujt'], ['need', 'to', 'setup', 'guest', 'wi', 'fi', 'access', 'need', 'to', 'setup', 'guest', 'wi', 'fi', 'access'], ['trouble', 'viewing', 'and', 'printing', 'commerirtcal', 'inwarehouse', 'tools', 'good', 'day', '', '', 'please', 'assist', 'with', 'issue', 'below', '', '', '', '', 'when', 'clicking', 'to', 'view', 'the', 'commercial', 'inwarehouse', 'tool', 'this', 'appears', 'blank', '', '', 'please', 'help', '', '', 'kind'], ['outlook', 'won', 'open', 'outlook', 'won', 'open'], ['engineering', 'tool', 'takes', 'long', 'time', 'to', 'load', 'issue', 'is', 'severe', 'especially', 'after', 'pm', 'everyday', '', 'wants', 'to', 'talk', 'to', 'engineering', 'tool', 'administration', 'team', 'to', 'check', 'on', 'account'], ['folders', 'list', 'in', 'outlook', 'dierppeared', 'cannot', 'see', 'any', 'of', 'the', 'folders', 'in', 'outlook', 'emails', 'appeared', 'in', 'the', 'view'], ['windows', 'password', 'reset', 'windows', 'password', 'reset'], ['cannot', 'connect', 'to', 'network', 'resources', 'in', 'hq', 'cannot', 'access', 'erp', 'hq', 'network', 'drives', 'internal', 'network', 'drive', 'access', 'is', 'working', 'fine', 'performed', 'flush', 'dns', 'winsock', 'reset', 'still', 'nogo', 'multiple', 'users', 'affected', 'ip'], ['urgent', 'training', 'room', 'intercom', 'does', 'not', 'work', 'classroom', 'intercom', 'not', 'working'], ['data', 'backup', 'for', 'germany', 'data', 'backup', 'for', 'germany'], ['server', 'ekpsm', 'located', 'at', 'germany', 'location', 'is', 'down', 'since', 'on', 'server', 'ekpsm', 'located', 'at', 'germany', 'location', 'is', 'down', 'since', 'on'], ['germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'am', 'et', 'on', 'germany', 'company', 'pbx', 'trunk', 'card', 'andpbx', 'since', 'am', 'et', 'on'], ['account', 'locked', 'account', 'locked'], ['unable', 'to', 'sign', 'in', 'to', 'the', 'vpn', 'i', 'am', 'not', 'able', 'to', 'sign', 'onto', 'vpn', 'with', 'my', 'user', 'name', 'and', 'password', 'it', 'says', 'incorrect', 'password', 'but', 'it', 'is', 'the', 'one', 'always', 'use'], ['security', 'incidents', 'in', 'ipbl', 'no', 'entry', 'beshryulisted', 'ip', 'lmsl', 'source', 'ip', 'system', 'name', 'lmsl', 'user', 'name', 'trhdyd', 'mffbsf', 'location', 'usa', 'sms', 'status', 'no', 'updates', 'field', 'sales', 'user', 'yes', 'no', 'yes', 'dsw', 'event', 'log', 'see', 'below'], ['shortcut', 'opening', 'multiple', 'folders', 'shortcut', 'opening', 'multiple', 'folders'], ['system', 'updation', 'for', 'govt', 'tender', 'procurement', 'dear', 'sir', 'we', 'required', 'system', 'updating', 'for', 'govt', 'tender', 'uploading', 'in', 'portal', 'on', 'the', 'following', 'computer', 'computer', 'name', 'aiuw', 'service', 'tag', 'no', 'jnjxbq', 'model', 'details', 'optiplex', 'please', 'do', 'the', 'needful', 'and', 'confirm', 'on', 'urgent', 'basis', 'with', 'kind'], ['unable', 'to', 'login', 'to', 'pc', 'account', 'locked', 'out'], ['urgent', 'access', 'to', 'rtnzvplq', 'erhmuncq', 'disconnected', 'hi', 'could', 'you', 'please', 'help', 'after', 'an', 'error', 'message', 'server', 'disconnected', 'cannot', 'make', 'any', 'edits', 'to', 'trgdyyufs', 'calendar', 'no', 'invitations', 'from', 'his', 'calendar', 'no', 'calendar', 'entries', 'possible', 'very', 'urgent'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'pp', 'eu', 'tool', 'conf', 'ap', 'failed', 'in', 'job', 'scheduler', 'at'], ['expense', 'report', 'receipt', 'entry', 'screen', 'keeps', 'locking', 'up', 'expense', 'report', 'receipt', 'entry', 'screen', 'keeps', 'locking', 'up', '', 'this', 'is', 'causing', 'delays', 'with', 'entering', 'expense', 'reports', 'especially', 'wherein', 'multiple', 'entries', 'are', 'required'], ['install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx', 'install', 'eu', 'tool', 'laeusvjo', 'fvaihgpx'], ['access', 'to', 'live', 'mw', 'live', 'hostname', 'please', 'provide', 'access', 'to', 'below', 'drive', 'to', 'view', 'the', 'drawings', '', 'live', 'mw', 'live'], ['network', 'outage', 'germany', 'site', 'is', 'down', 'since', 'amet', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'amet', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['entire', 'location', 'at', 'germany', 'network', 'is', 'down', 'germany', 'entire', 'location', 'at', 'germany', 'network', 'is', 'down', 'user', 'mention', 'all', 'the', 'applications', 'are', 'down', 'erp', 'outlook', 'internet', 'intranet'], ['hostname', 'volume', 'disk', 'consumed', 'is', 'hostname', 'volume', 'disk', 'consumed', 'is'], ['let', 'talk', 'not', 'playing', 'hello', '', '', 'refer', 'the', 'below', 'screen', 'shot', '', '', '', '', 'warm'], ['hostname', 'bobj', 'cpu', 'load', 'on', 'server', 'is', 'high', 'currently', 'utilization', 'is', 'since', 'on', 'hostname', 'bobj', 'cpu', 'load', 'on', 'server', 'is', 'high', 'currently', 'utilization', 'is', 'since', 'on'], ['purchasing', 'can', 'not', 'working', 'purchasing', 'input', 'the', 'related', 'the', 'information', 'also', 'generated', 'the', 'ordered', 'number', 'but', 'check', 'the', 'erp', 'mea', 'no', 'data', 'can', 'check', 'pls', 'help'], ['eu', 'tool', 'does', 'not', 'update', 'every', 'minute', 'eu', 'tool', 'does', 'not', 'update', 'every', 'minute'], ['kindly', 'copy', 'the', 'desktop', 'files', 'of', 'user', 'id', 'vvgtyrhds', 'to', 'vvkuhtdppg', 'local', 'folder', 'kindly', 'copy', 'the', 'desktop', 'files', 'of', 'user', 'id', 'vvgtyrhds', 'to', 'vvkuhtdppg', 'local', 'folder'], ['problems', 'with', 'nikulatrhdy', 'hello', 'the', 'account', 'nikulatrhdy', 'is', 'currently', 'locked', 'out', 'the', 'user', 'cannot', 'log', 'on', 'the', 'system', 'please', 'help', 'koahsriq', 'wdugqatr', 'administrative', 'assistant'], ['circuit', 'outage', 'india', 'carrier', 'company', 'ap', 'ind', 'carrier', 'dmvpn', 'rtr', 'is', 'down', 'since', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['purchasing', 'catalog', 'de', 'kroschke', 'does', 'not', 'work', 'error', 'message', 'when', 'try', 'to', 'open', 'the', 'shop', '', 'shop', 'failure', '', 'you', 'cannot', 'enter', 'the', 'selected', 'shop', '', 'reason', '', 'authentication', 'data', 'is', 'missing', 'or', 'cookie', 'was', 'not', 'accepted', 'by', 'client', '', '', 'catalogue', 'has', 'moved', 'to', 'another', 'url', 'see', 'attached', 'mail', 'with', 'the', 'details'], ['calendar', 'entry', 'ge', 'qdxyifhj', 'zbwtunpy', 'hello', 'please', 'take', 'a', 'look', 'thank', 'you'], ['need', 'wireless', 'mouse', 'for', 'my', 'laptop', 'need', 'wireless', 'mouse', 'for', 'my', 'laptop'], ['label', 'printer', 'wk', 'no', 'longer', 'prints', 'label', 'printer', 'wk', 'no', 'longer', 'prints'], ['job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bwhrattr', 'failed', 'in', 'job', 'scheduler', 'at'], ['windows', 'locked', 'hi', 'following', 'user', 'id', 'winows', 'is', 'locked', 'pl', 'help', 'user', 'id', 'thrydufg'], ['data', 'cannot', 'be', 'downloaded', 'data', 'cannot', 'be', 'downloaded', 'the', 'machine', 'is', 'at', 'a', 'standstill', 'machine', 'name', 'wam', 'files', 'are', 'sent', 'from', 'udo', 'files', 'are', 'stored', 'in', 'zip', 'and', 'exe', 'format'], ['unable', 'to', 'login', 'to', 'erp', 'sid', 'unable', 'to', 'login', 'to', 'erp', 'sid'], ['erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', 'erp', 'schulung', 'raum', 'kann', 'beamer', 'nicht', 'verbinden', '', '', 'reopened', 'as', 'user', 'called', 'in', 'again', 'please', 'refer', 'to', 'tkt', 'inplant'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'scan', 'after', 'resetting', 'password', 'on', 'password', 'management', 'tool', 'unable', 'to', 'scan', 'after', 'resetting', 'password', 'on', 'password', 'management', 'tool', 'contact', 'number', 'scan', 'documents', 'are', 'not', 'landing', 'in', 'the', 'scan', 'folder', 'please', 'check'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['printer', 'issue', 'your', 'file', 'could', 'not', 'be', 'printed', 'due', 'to', 'an', 'error', 'on', 'hostname', 'tc', 'on', 'e'], ['engineering', 'record', 'issue', 'eng', 'records', 'for', 'engineering', 'tool', 'can', 'used', 'see', 'attachment', 'for', 'detailed'], ['business', 'client', 'not', 'working', 'hello', '', '', 'business', 'client', 'soft', 'ware', 'not', 'working', 'in', 'my', 'computer', '', '', 'with', 'kind'], ['new', 'password', 'not', 'working', 'in', 'vpn', 'hello', '', '', 'can', 'you', 'please', 'help', 'me', 'to', 'put', 'new', 'password', 'to', 'my', 'account', '', '', 'yesterday', 'have', 'changed', 'my', 'password', 'which', 'worked', 'some', 'hors', 'or', 'so', '', 'then', 'since', 'that', 'it', 'does', 'not', 'work', '', '', 'my', 'suspision', 'is', 'that', 'the', 'new', 'password', 'was', 'the', 'same', 'like', 'in', 'the', 'past', 'year', 'ago', 'or', 'so', '', '', 'want', 'to', 'log', 'into', 'password', 'management', 'tool', 'password', 'manager', 'but', 'without', 'any', 'success', '', '', '', '', 'pofgtzdravem', 'kind'], ['pls', 'extend', 'mm', 'and', 'to', 'my', 'user', 'name', 'thnak', 'you', 'need', 'to', 'create', 'prs', 'for', 'those', 'mm', 'pls', 'extend', 'mm', 'and', 'to', 'my', 'user', 'name', 'thnak', 'you', 'need', 'to', 'create', 'prs', 'for', 'those', 'mm'], ['setting', 'up', 'my', 'hand', 'set', 'for', 'emails', 'hi', 'it', 'experts', '', '', 'd', 'like', 'to', 'continue', 'receive', 'your', 'support', 'for', 'setting', 'up', 'my', 'hand', 'set', 'for', 'emails', '', '', '', 'pls', 'find', 'my', 'below', 'reply', '', '', 'wifi', 'and', 'data', 'plan', 'from', 'your', 'service', 'provider', 'is', 'required', 'to', 'setup', 'email', 'on', 'your', 'mobile', 'device', 'will', 'use', 'wifi', '', '', 'is', 'this', 'device', 'company', 'owned', 'n', '', '', 'is', 'this', 'replacement', 'of', 'your', 'old', 'device', 'n', '', '', 'if', 'yes', 'please', 'ensure', 'company', 'data', 'has', 'been', 'removed', 'from', 'the', 'old', 'device', 'delete', 'exchange', 'setup', 'from', 'settings', 'mail', 'contacts', 'calendar', 'ok', '', '', 'for', 'personal', 'device', 'please', 'attach', 'approval', 'form', 'signed', 'by', 'manager', 'to', 'the', 'ticketing', 'tool', 'ticket', 'enclsoed', '', '', 'please', 'ensure', 'the', 'device', 'is', 'company', 'approved', 'for', 'email', 'setup', '', '', 'if', 'it', 'is', 'not', 'company', 'approved', 'device', 'please', 'contact', 'the', 'gsc', '', '', 'for', 'help', 'with', 'exchange', 'setup', 'on', 'personal', 'device', 'please', 'contact', 'the', 'device', 'vendor', 'you', 'also', 'refer', 'to', 'the', 'faq', 'section', 'for', 'steps', '', '', 'has', 'the', 'exchange', 'setup', 'been', 'completed', 'on', 'your', 'device', 'n', 'seems', '', '', '', 'best'], ['unable', 'to', 'login', 'to', 'erp', 'sid', 'unable', 'to', 'login', 'to', 'erp', 'sid'], ['close', 'cost', 'center', 'dear', 'all', 'can', 'you', 'help', 'to', 'close', 'the', 'cost', 'center', 'of', 'cnn', 'for'], ['unable', 'to', 'login', 'to', 'windows', 'unable', 'to', 'login', 'to', 'windows'], ['credit', 'memo', 'request', 'approva', 'hello', '', '', 'have', 'messages', 'to', 'process', 'documents', 'in', 'my', 'erp', 'workflow', 'but', 'find', 'none', '', 'please', 'advise'], ['engineering', 'tool', 'upload', 'issue', 'ufgkybsh', 'ijswtdve', 'pm', 'nwfodmhc', 'exurcwkm', 'tgryds', 'fw', 'engineering', 'tool', 'upload', 'issue', 'dear', 'sir', 'mam', 'please', 'find', 'below', 'the', 'screenshot', 'of', 'engineering', 'tool', 'issue', 'faced', 'during', 'upload', 'please', 'help', 'me', 'to', 'resolve', 'the', 'same'], ['unable', 'to', 'log', 'in', 'to', 'collaboration', 'platform', 'unable', 'to', 'log', 'in', 'to', 'collaboration', 'platform'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['unable', 'to', 'pull', 'up', 'reports', 'on', 'sales', 'and', 'markhtyeting', 'tab', 'unable', 'to', 'pull', 'up', 'reports', 'on', 'sales', 'and', 'markhtyeting', 'tab', 'in', 'ess'], ['reset', 'users', 'password', 'reset', 'users', 'password'], ['query', 'regarding', 'logging', 'in', 'to', 'benefits', 'portal', 'query', 'regarding', 'logging', 'in', 'to', 'benefits', 'portal'], ['inquiry', 'on', 'erp', 'sid', 'bex', 'analysis', 'inquiry', 'on', 'erp', 'sid', 'bex', 'analysis'], ['password', 'reset', 'request', 'password', 'reset', 'request'], ['interface', 'fastethernet', 'on', 'usa', 'plant', 'mpls', 'is', 'down', 'since', 'pm', 'interface', 'fastethernet', 'on', 'usa', 'plant', 'mpls', 'is', 'down', 'since', 'pm', '', 'cc', 'communications', 'mbps', 'circuit', 'id', 'is', 'cccethxakm'], ['password', 'reset', 'password', 'reset'], ['please', 'assist', 'thrys', 'hsdbdtt', 'in', 'logging', 'into', 'reporting', 'tool', 'from', 'crm', 'see', 'attached', 'screen', 'shot', 'he', 'was', 'unable', 'to', 'access', 'using', 'his', 'windows', 'credentials', 'please', 'assist', 'thrys', 'hsdbdtt', 'in', 'logging', 'into', 'reporting', 'tool', 'from', 'crm', 'see', 'attached', 'screen', 'shot', 'he', 'was', 'unable', 'to', 'access', 'using', 'his', 'windows', 'credentials'], ['outlook', 'freezing', 'on', 'mobile', 'broadband', 'outlook', 'freezing', 'on', 'mobile', 'broadband'], ['configure', 'calendar', 'on', 'phone', 'sync', 'with', 'outlook', 'configure', 'calendar', 'on', 'phone', 'sync', 'with', 'outlook'], ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'], ['unable', 'to', 'find', 'shortcut', 'on', 'erp', 'unable', 'to', 'find', 'shortcut', 'on', 'erp'], ['hr', 'tool', 'not', 'working', 'the', 'hr', 'tool', 'app', 'on', 'the', 'sso', 'page', 'opens', 'to', 'beshryu', 'screen', 'when', 'open', 'the', 'pay', 'and', 'taxes', 'tab', 'and', 'does', 'nothing', 'can', 'not', 'view', 'any', 'pay', 'records'], ['outlook', 'will', 'not', 'open', 'i', 'am', 'unable', 'to', 'open', 'outlook', 'am', 'getting', 'the', 'error', 'message', '', 'new', 'guard', 'page', 'for', 'the', 'stack', 'cannot', 'be', 'created', '', '', 'have', 'tried', 'restarting', 'the', 'computer', '', 'have', 'tried', 'starting', 'outlook', 'in', 'safe', 'mode', '', 'have', 'tried', 'using', 'the', 'repair', 'function', 'for', 'outlook', '', '', 'please', 'advise'], ['need', 'access', 'to', 'erp', 'kp', 'need', 'access', 'to', 'kp', 'to', 'enter', 'forecast', 'for', 'it', 'cost', 'centers', 'had', 'requested', 'and', 'received', 'this', 'access', 'at', 'the', 'end', 'of', 'access', 'appears', 'to', 'be', 'gone', 'again', 'need', 'by'], ['password', 'reset', 'for', 'yscgjexz', 'hxlbvjgf', 'password', 'reset', 'for', 'yscgjexz', 'hxlbvjgf'], ['node', 'lhqsv', 'located', 'at', 'usa', 'is', 'down', 'since', 'pm', 'node', 'lhqsv', 'located', 'at', 'usa', 'is', 'down', 'since', 'pm', 'interface', 'fc', 'lhqsv', 'on', 'sandplant', 'and', 'sandir', 'is', 'down', 'since', 'pm'], ['account', 'lock', 'and', 'need', 'to', 'unlock', 'account', 'lock', 'and', 'need', 'to', 'unlock'], ['followup', 'on', 'ticket', 'no', 'followup', 'on', 'ticket', 'no'], ['hr', 'tool', 'payroll', 'sign', 'in', 'hr', 'tool', 'etime', 'unable', 'to', 'see', 'payroll', 'statements', 'try', 'to', 'access', 'and', 'receive', 'screen', 'below', 'it', 'will', 'not', 'move', 'out', 'of', 'this', 'view', '', '', '', '', '', '', '', 'best'], ['vpn', 'password', 'not', 'working', 'pl', 'support', 'to', 'resolve', 'this', 'problem'], ['not', 'able', 'to', 'enter', 'project', 'in', 'the', 'lean', 'tracker', 'in', 'collaboration', 'platform', 'not', 'able', 'to', 'enter', 'project', 'in', 'the', 'lean', 'tracker', 'in', 'collaboration', 'platform', 'see', 'attached', 'errors'], ['urgent', 'email', 'delegation', 'hi', 'had', 'an', 'associate', 'leave', 'on', 'the', 'vsp', 'at', 'the', 'end', 'of', 'had', 'his', 'outlook', 'in', 'my', 'outlook', 'but', 'now', 'it', 'gone', 'had', 'received', 'an', 'email', 'that', 'it', 'was', 'now', 'stored', 'on', 'collaboration', 'platform', 'but', 'don', 'see', 'anything', 'when', 'click', 'on', 'the', 'link', 'can', 'have', 'his', 'email', 'restored', 'through'], ['access', 'to', 'retired', 'employee', 'collaboration', 'platform', 'myhrt', 'sthry', 'retired', 'as', 'plant', 'manager', 'in', 'usa', 'have', 'replaced', 'him', 'request', 'access', 'to', 'his', 'collaboration', 'platform', 'to', 'copy', 'relevant', 'documents', 'before', 'it', 'is', 'being', 'deleted', 'as', 'per', 'mail', 'below', 'mqjdyizg', 'amhywoqg', 'am', 'fw', 'myhrt', 'sthry', 'collaboration', 'platform', 'for', 'business', 'contents', 'will', 'be', 'preserved', 'for', 'days', 'danie', 'you', 'should', 'follow', 'up', 'on', 'this', 'to', 'see', 'if', 'there', 'are', 'any', 'files', 'you', 'need', 'utejhdyd', 'vice', 'president', 'and', 'general', 'manager', 'mail', 'am', 'mqjdyizg', 'amhywoqg', 'myhrt', 'sthry', 'collaboration', 'platform', 'for', 'business', 'contents', 'will', 'be', 'preserved', 'for', 'days', 'myhrt', 'sthry', 'account', 'has', 'been', 'deleted', 'from', 'the', 'active', 'directory', 'their', 'collaboration', 'platform', 'for', 'business', 'will', 'be', 'preserved', 'for', 'days', 'you', 're', 'the', 'temporary', 'owner', 'of', 'all', 'documents', 'saved', 'to', 'their', 'collaboration', 'platform', 'for', 'business', 'if', 'you', 'would', 'like', 'to', 'save', 'content', 'beyond', 'the', 'day', 'retention', 'period', 'you', 'can', 'copy', 'important', 'documents', 'to', 'another', 'location', 'you', 'can', 'also', 'contact', 'your', 'administrator', 'to', 'reassign', 'ownership', 'to', 'another', 'collaboration', 'platform', 'for', 'business', 'owner', 'after', 'days', 'myhrt', 'sthry', 'collaboration', 'platform', 'for', 'business', 'will', 'be', 'permanently', 'deleted', 'go', 'to', 'myhrt', 'sthry', 'collaboration', 'platform', 'for', 'business', 'at'], ['cannot', 'open', 'excel', 'files', 'from', 'hostname', 'departments', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'and', 'bkzcfmse', 'naslrwdb', 'can', 'cannot', 'open', 'excel', 'files', 'from', 'hostname', 'departments', 'hrm', 'pricing', 'current', 'pricing', 'fy', 'and', 'bkzcfmse', 'naslrwdb', 'can', 'files', 'are', 'slow', 'to', 'open', 'or', 'will', 'freeze'], ['cannot', 'print', 'to', 'prtqx', 'under', 'my', 'profile', 'on', 'rqxw', 'cannot', 'print', 'to', 'prtqx', 'under', 'my', 'profile', 'on', 'rqxw'], ['cannot', 'print', 'from', 'windows', 'with', 'new', 'pc', 'was', 'just', 'given', 'cannot', 'print', 'from', 'windows', 'with', 'new', 'pc', 'was', 'just', 'given'], ['intermittent', 'wireless', 'issue', 'on', 'intermittent', 'wireless', 'issue', 'on'], ['reset', 'passwords', 'for', 'prgewfly', 'ndtfvple', 'using', 'password', 'management', 'tool', 'password', 'reset', 'complete'], ['reset', 'the', 'password', 'for', 'prgewfly', 'ndtfvple', 'on', 'erp', 'development', 'erp', 'completed'], ['outlook', 'is', 'slow', 'outlook', 'is', 'slow'], ['does', 'the', 'vpn', 'meter', 'the', 'amount', 'of', 'data', 'that', 'can', 'be', 'transferred', 'does', 'the', 'vpn', 'meter', 'the', 'amount', 'of', 'data', 'that', 'can', 'be', 'transferred'], ['recall', 'incident', 'ticket', 'no', 'has', 'been', 'assigned', 'to', 'oncidblt', 'ucewizyd', 'trhsys', 'hrydjs', 'would', 'like', 'to', 'recall', 'the', 'message', 'incident', 'ticket', 'no', 'has', 'been', 'assigned', 'to', 'oncidblt', 'ucewizyd'], ['password', 'reset', 'password', 'reset'], ['account', 'gets', 'locked', 'out', 'account', 'gets', 'locked', 'out', '', 'id', 'changed', 'from', 'company', 'to', 'company'], ['password', 'reset', 'password', 'reset'], ['account', 'locked', 'account', 'locked'], ['query', 'what', 'license', 'does', 'knlrgsiv', 'cqvuexjz', 'has', 'knlrgsiv', 'cqvuexjz', 'has', 'license'], ['unable', 'to', 'login', 'to', 'engineering', 'tool', 'unable', 'to', 'login', 'to', 'engineering', 'tool'], ['password', 'change', 'request', 'password', 'change', 'request'], ['uacyltoe', 'hxgayczeing', 'pl', 'ignore', 'uacyltoe', 'hxgayczeing', 'pl', 'ignore'], ['reset', 'the', 'password', 'for', 'xoukpfvr', 'oxvakgcl', 'on', 'erp', 'production', 'hcm', 'i', 'unable', 'to', 'login', 'erp', 'system', 'engineering', 'tool', 'sid'], ['misplaced', 'login', 'information', 'for', 'ess', 'misplaced', 'login', 'information', 'for', 'ess'], ['reset', 'erp', 'sid', 'password', 'for', 'vvtgryhud', 'reset', 'erp', 'sid', 'password', 'for', 'vvtgryhud'], ['unable', 'to', 'login', 'to', 'the', 'hub', 'misplaced', 'username', 'password'], ['reset', 'passwords', 'for', 'xoukpfvr', 'oxvakgcl', 'using', 'password', 'management', 'tool', 'password', 'reset', 'as', 'per', 'system', 'instruction', 'now', 'have', 'reset', 'the', 'password', 'but', 'm', 'unable', 'to', 'login', 'erp', 'system', 'sid'], ['misplaced', 'username', 'password', 'unable', 'to', 'login', 'to', 'the', 'hub'], ['password', 'reset', 'for', 'axhkewnv', 'zpumhlic', 'in', 'citrix', 'password', 'reset', 'for', 'axhkewnv', 'zpumhlic', 'in', 'citrix'], ['unable', 'to', 'use', 'jabra', 'head', 'phone', 'for', 'skype', 'calls', 'unable', 'to', 'use', 'jabra', 'head', 'phone', 'for', 'skype', 'calls'], ['removing', 'mail', 'reminders', 'from', 'workflow', 'systems', 'of', 'requisition', 'approval', 'removing', 'mail', 'reminders', 'from', 'workflow', 'systems', 'of', 'requisition', 'approval', 'get', 'repeated', 'mail', 'reminders', 'for', 'purchase', 'approval', 'from', 'workflow', 'tasks', 'but', 'they', 'have', 'been', 'completed', 'long', 'ago'], ['collaboration', 'platform', 'deleted', 'information', 'hello', 'the', 'user', 'tgrsyduf', 'accidentally', 'deleted', 'information', 'from', 'collaboration', 'platform', 'yesterday', 'is', 'possible', 'recover', 'this', 'information'], ['collaboration', 'platform', 'site', 'request', 'hello', 'can', 'you', 'add', 'the', 'users', 'below', 'to', 'as', 'team', 'members', 'to', 'the', 'cybersecurity', 'website', 'should', 'have', 'ownership', 'users', 'below', 'can', 'have', 'edit', 'access', 'qasouhlc', 'xkhsirtd', 'gzhapcld', 'fdigznbk', 'ugyothfz', 'ugrmkdhx', 'raosetuv', 'hmgwrkzb', 'mfyivqes', 'cpihaxbs', 'thrdyd', 'dhdtwdd', 'thrdyakdj', 'yhtdush', 'jqeczxtn', 'gfjcronyudhakar', 'akisjtzm', 'uvbmysgcbenezer', 'qfrntose', 'ivnhumzjalakrisyuhnyrtn', 'thtudb', 'ghtysui'], ['reset', 'the', 'password', 'for', 'dnlhsgyo', 'newducsl', 'on', 'erp', 'production', 'erp', 'after', 'setting', 'new', 'overall', 'password', 'couldn', 'access', 'erp', 'too', 'many', 'fails', 'sorry', 'for', 'that'], ['workplanning', 'from', 'germany', 'plant', 'plant', 'need', 'in', 'bbo', 'the', 'same', 'erp', 'possibilites', 'hello', 'all', 'my', 'collegue', 'thryduf', 'and', 'hddwtra', 'need', 'for', 'the', 'future', 'fully', 'erp', 'acceptance', 'for', 'plant', 'plant', 'too'], ['problems', 'with', 'portal', 'knlrgsiv', 'cqvuexjz', 'problems', 'with', 'portal', 'knlrgsiv', 'cqvuexjz'], ['unable', 'to', 'login', 'to', 'erp', 'ppt', 'password', 'reset', 'needed'], ['unable', 'to', 'login', 'to', 'pc', 'misplaced', 'username', 'password'], ['unable', 'to', 'join', 'and', 'setup', 'skype', 'meeting', 'unable', 'to', 'join', 'and', 'setup', 'skype', 'meeting'], ['rma', 'workflow', 'in', 'error', 'status', 'rma', 'workflow', 'in', 'error', 'status', 'please', 'advise', 'reason', 'for', 'error', 'and', 'restart', 'workflow'], ['setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni', 'setup', 'rechner', 'ewel', 'r', 'hr', 'thrydad', 'thrydad', 'consulting', 'puxsvfwr', 'cwkjruni'], ['employee', 'accounts', 'reactivation', 'etdh', 'thsydaas', 's', 'etdh', 'thsydaas', 's', 'employee', 'computer', 'access', 'is', 'terminated', 'please', 'usa', 'him', 'access', 'back', 'aerp', 'his', 'last', 'day', 'with', 'company', 'is'], ['recurrent', 'network', 'outage', 'every', 'minutes', 'in', 'penn', 'recurrent', 'network', 'outage', 'every', 'minutes', 'intranet', 'and', 'internet', 'both', 'are', 'affected', 'contact'], ['engineering', 'tool', 'shows', 'message', 'to', 'all', 'users', 'of', 'south', 'amerirtca', 'after', 'the', 'logon', 'since', 'engineering', 'tool', 'users', 'of', 'south', 'amerirtca', 'reported', 'that', 'engineering', 'tool', 'shows', 'message', 'after', 'the', 'logon', 'related', 'to', 'the', 'server', 'hostname', 'plm', 'server', '', 'please', 'see', 'attached', 'message'], ['please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'is', 'active', 'please', 'um', 'kkruf', 'please', 'reactivate', 'laptop', 'r', 'a', 'hr', 'pr', 'fer', 'account', 'r', 'trhfyd', 'sugajadd', 'is', 'active', 'please', 'ckruf', 'fyi', 'by', 'mfyivqes', 'cpihaxbs', 'sent', 'tuesday', 'october', 'to', 'ughzilfm', 'cfibdamq', 'regarding', 're', 'please', 'account', 'ewel', 'reactivate', 'laptop', 'r', 'ein', 'hr', 'pr', 'fer', 'account', 'rtrhfyd', 'sugajadk', 'is', 'active', 'please', 'co', 'please', 'tick', 'and', 'help', 'open', 'the', 'nnen', 'that', 'make', 'gr', 'e'], ['sales', 'manager', 'views', 'in', 'business', 'objects', 'explorer', 'the', 'following', 'sales', 'managers', 'cannot', 'see', 'the', 'sales', 'manager', 'views', 'in', 'business', 'objects', 'explorer', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'athrdyau', 'vksfrhdx', 'njhaqket', 'please', 'check', 'their', 'security', 'and', 'settings', 'with', 'respect', 'to', 'bobj'], ['reset', 'passwords', 'for', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'passwords', 'for', 'qnxfegjw', 'rljdhmwb', 'using', 'password', 'management', 'tool', 'password', 'reset'], ['problems', 'with', 'erpgui', 'tmqfjard', 'qzhgdoua', 'problems', 'with', 'erpgui', 'tmqfjard', 'qzhgdoua'], ['support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx', 'support', 'r', 'fa', 'thrydsss', 'funke', 'laeusvjo', 'fvaihgpx'], ['illustrated', 'book', 'exchange', 'printer', 'we', 'vepgot', 'poezmwny', 'illustrated', 'book', 'exchange', 'printer', 'we', 'vepgot', 'poezmwny'], ['primary', 'telephone', 'flow', 'down', 'company', 'eu', 'eu', 'plant', 'hello', 'writes', 'from', 'company', 'eu', 'plant', 'this', 'mail', 'for', 'inform', 'that', 'we', 'have', 'primary', 'telephone', 'flow', 'down', 'all', 'incomig', 'calls', 'and', 'external', 'calls', 'are', 'not', 'running', 'opened', 'tck', 'to', 'telecom', 'for', 'investigate', 'and', 'for', 'solving', 'the', 'problem', 'tck', 'no'], ['bobj', 'access', 'not', 'working', 'hello', 'can', 'now', 'enter', 'bobj', 'but', 'not', 'able', 'to', 'look', 'into', 'any', 'spaces', 'see', 'below', 'screenshot', 'error', 'when', 'entering', 'any', 'space', 'sales', 'manager', 'company', 'western', 'europe'], ['bobj', 'access', 'for', 'sales', 'managers', 'team', 'my', 'sales', 'managers', 'are', 'not', 'seeing', 'their', 'team', 'view', 'in', 'bobj', 'anymore', 'global', 'access', 'they', 'need', 'it', 'to', 'pull', 'data', 'analysis', 'can', 'you', 'please', 'reinstall', 'global', 'access', 'for', 'tcflirwg', 'ojflyruq', 'bmudkpie', 'qolrvbip', 'thryd', 'adwjfpbreu', 'vksfrhdx', 'njhaqket'], ['skpe', 'addon', 'gone', 'skpe', 'addon', 'gone', 'ic', 'welcome', 'our', 'next', 'available', 'agent', 'will', 'be', 'with', 'you', 'shortly', 'interaction', 'alerting', 'agent', 'website', 'visitor', 'has', 'joined', 'the', 'conversation', 'maaryuyten', 'hello', 'need', 'your', 'help', 'my', 'skype', 'botton', 'in', 'outlook', 'is', 'gone', 'hello', 'need', 'your', 'help', 'my', 'skype', 'botton', 'in', 'outlook', 'is', 'gone', 'dwfiykeo', 'argtxmvcumar', 'hello'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['hpqc', 'delivers', 'error', 'message', 'user', 'is', 'not', 'maintained', 'in', 'the', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin', 'my', 'user', 'id', 'thrydksd', 'm', 'involved', 'in', 'uat', 'uacyltoe', 'hxgayczeing', 'for', 'ec', 'ecc', 'and', 'was', 'asked', 'to', 're', 'install', 'hpqc', 'client', 'installation', 'kit', 'what', 've', 'already', 'done', 'with', 'below', 'links', 'when', 'start', 'hpqc', 'and', 'enter', 'my', 'windows', 'user', 'name', 'and', 'windows', 'password', 'receive', 'following', 'error', 'message', 'user', 'is', 'not', 'maintained', 'in', 'the', 'project', 'fy', 'release', 'please', 'contact', 'hpqc', 'admin'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['telephone', 'gigaset', 'ex', 'professional', 'tel', 'd', 'no', 'longer', 'connection', 'defective', 'telephone', 'gigaset', 'ex', 'professional', 'tel', 'd', 'no', 'longer', 'connection', 'defective'], ['please', 'setup', 'user', 'trhdaa', 'back', 'to', 'startpassword', 'at', 'erp', 'please', 'setup', 'user', 'trhdaa', 'back', 'to', 'startpassword', 'at', 'erp'], ['erp', 'change', 'of', 'new', 'costs', 'not', 'working', 'in', 'cockpit', 'field', 'mvgr', 'hello', 'following', 'problem', '', 'due', 'to', 'necessary', 'changes', 'on', 'tool', 'for', 'an', 'received', 'order', 'tried', 'to', 'update', 'the', 'costs', 'in', 'cockpit', 'but', 'when', 'saving', 'the', 'quote', 'it', 'does', 'not', 'work', 'error', 'message', 'field', 'mvgr', 'cannot', 'be', 'changed', 'vbapkom', 'ready', 'for', 'input', 'any', 'hints', 'how', 'to', 'solve', 'that', 'did', 'that', 'on', 'other', 's', 'before', 'and', 'it', 'worked', 'only', 'new', 'thing', 'is', 'that', 'we', 'have', 'an', 'order', 'running', '', 'erp', 'data', 'in', 'case', 'it', 'is', 'necessary', 'order', 'concerning', 'items', 'as', 'above'], ['user', 'wk', 'ksem', 'blocked', 'user', 'wk', 'ksem', 'blocked'], ['timerecording', 'terminals', 'in', 'plant', 'germany', 'no', 'communication', 'to', 'the', 'server', 'in', 'rth', 'bcom', 'server', 'in', 'rth', 'timerecording', 'terminals', 'in', 'plant', 'germany', 'no', 'communication', 'to', 'the', 'server', 'in', 'rth', 'they', 'are', 'sending', 'the', 'message'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['ie', 'crm', 'crm', 'ie', 'crm', 'crm'], ['access', 'to', 'drive', 'hello', '', '', 'kindly', 'request', 'to', 'give', 'access', 'to', 'drive', '', '', 'globalengservices'], ['kindly', 'add', 'user', 'id', 'trhsydsff', 'to', 'erp', 'business', 'analytics', 'team', 'in', 'ticketing', 'tool', 'tool', 'kindly', 'add', 'user', 'id', 'trhsydsff', 'to', 'erp', 'business', 'analytics', 'team', 'in', 'ticketing', 'tool', 'tool'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['desktop', 'item', 'missing', 'when', 'save', 'attachment', 'desktop', 'item', 'missing', 'when', 'save', 'attachment'], ['hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'], ['mass', 'upload', 'programdnty', 'changes', 'to', 'condition', 'table', 'in', 'crm', 'mass', 'upload', 'programdnty', 'changes', 'to', 'condition', 'table', 'in', 'crm'], ['server', 'lnbdm', 'active', 'directory', 'located', 'in', 'philadelph', 'ia', 'is', 'down', 'since', 'am', 'et', 'on', 'server', 'lnbdm', 'active', 'directory', 'located', 'in', 'philadelph', 'ia', 'is', 'down', 'since', 'am', 'et', 'on'], ['is', 'blocked', 'now', 'as', 'the', 'user', 'said', 'is', 'blocked', 'now', 'as', 'the', 'user', 'said'], ['access', 'to', 'hostname', 'departments', 'backorderreports', 'please', 'give', 'full', 'access', 'to', 'user', 'trhadg', 'for', 'folder', 'mentioned', 'in', 'the', 'subject'], ['the', 'user', 'account', 'is', 'blocked', 'now', 'name', 'dbwkxalj', 'cnhgysju', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'the', 'user', 'account', 'is', 'blocked', 'now'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['time', 'data', 'for', 'germany', 'steel', 'are', 'missing', 'all', 'time', 'data', 'has', 'been', 'missing', 'since', 'yesterday', 'around', "o'clock", 'data', 'is', 'urgently', 'needed', 'for', 'the', 'same', 'performance', 'level', 'evaluations'], ['network', 'outage', 'poncacity', 'germany', 'dmvpn', 'router', 'is', 'down', 'since', 'am', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['i', 'am', 'unable', 'to', 'open', 'the', 'collaboration', 'platform', 'link', 'shared', 'by', 'my', 'europe', 'counterpart', 'name', 'theajdlkadyt', 'hrtgsd', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'am', 'unable', 'to', 'open', 'the', 'collaboration', 'platform', 'link', 'shared', 'by', 'my', 'europe', 'counterpart', 'eagl', 'users', 'schetrhsdlw', 'collaboration', 'platform', 'company', 'inc', 'k'], ['can', 'not', 'reach', 'to', 'password', 'management', 'tool', 'password', 'manager', 'to', 'change', 'my', 'password', 'name', 'mitgckqf', 'ewourgcx', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'summary', 'can', 'not', 'reach', 'to', 'password', 'management', 'tool', 'password', 'manager', 'to', 'change', 'my', 'password'], ['k', 'bngell', 'cgdaytshqsd', 'hello', 'pl', 'add', 'my', 'name', 'in', 'to', 'this', 'team', 'also', 'need', 'administrative', 'control', 'of', 'this', 'since', 'have', 'heading', 'this', 'team', 'after', 'ndthwedwys', 'rao', 'left', 'company', 'with', 'kind'], ['job', 'sid', 'filesys', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'filesys', 'failed', 'in', 'job', 'scheduler', 'at'], ['msd', 'office', 'outlook', 'please', 'provide', 'details', 'of', 'the', 'issue', 'melhduty', 'gqchtedl', 'hi', 'melhduty', 'gqchtedl', 'obuwfnkm', 'ufpwmybi', 'melhduty', 'gqchtedl', 'id'], ['a', 'hostname', 'teams', 'business', 'sahtym', 'wanthryg', 'a', 'hostname', 'teams', 'business', 'sahtym', 'wanthryg'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['login', 'issue', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'unlocked', 'the', 'account', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['cyber', 'security', 'month', 'ransomware', 'cyber', 'security', 'month', 'ransomware'], ['ms', 'outlook', 'stopped', 'updating', 'cant', 'receive', 'or', 'send', 'mails', 'since', 'fr', 'please', 'check', 'lfal', 'looks', 'like', 'bothms', 'office', 'and', 'installed', 'ii', 'have', 'an', 'access', 'database', 'that', 'won', 'work', 'with', 'pacific'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['logon', 'balancing', 'error', 'on', 'erp', 'sid', 'logon', 'balancing', 'error', 'on', 'erp', 'sid', 'user', 'brandtrhee', 'pjdhfitman', 'called', 'on', 'behalf', 'of', 'user'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['windows', 'account', 'locked', 'windows', 'account', 'locked'], ['backup', 'on', 'company', 'provided', 'mobile', 'phone', 'backup', 'on', 'company', 'provided', 'mobile', 'phone'], ['purchasingupstreamsso', 'and', 'ad', 'for', 'qpixeudn', 'rjlziysd', 'please', 'create', 'an', 'purchasingupstreamsso', 'and', 'ad', 'for', 'qpixeudn', 'rjlziysd', 'bachsdadgtadw', 'the', 'samaccountname', 'in', 'ad', 'is', 'to', 'be', 'all', 'lowercase'], ['badges', 'for', 'msc', 'training', 'please', 'activate', 'the', 'badge', 'numbers', 'below', 'for', 'the', 'msc', 'training', 'they', 'need', 'to', 'be', 'active', 'from', 'st', 'at', 'am', 'cst', 'to', 'at', 'pm', 'cst'], ['cannot', 'get', 'into', 'crm', 'missing', 'the', 'sales', 'and', 'markhtyeting', 'tab', 'from', 'the', 'enterprise', 'portal', 'which', 'gives', 'access', 'to', 'crm', 'so', 'don', 'have', 'access', 'to', 'crm'], ['please', 'provide', 'access', 'i', 'need', 'access', 'to', 'the', 'following', 'path', 'please', 'see', 'pmgzjikq', 'potmrkxy', 'for', 'approval', 'tbvpkjoh', 'wnxzhqoa', 'company', 'usa', 'plant', 'controller'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['unable', 'to', 'login', 'to', 'collaboration', 'platform', 'password', 'reset', 'unable', 'to', 'login', 'to', 'collaboration', 'platform', 'password', 'reset'], ['all', 'my', 'calls', 'to', 'my', 'ip', 'phone', 'are', 'going', 'to', 'warehouse', 'toolmail', 'it', 'is', 'not', 'even', 'ringing', 'all', 'my', 'calls', 'to', 'my', 'ip', 'phone', 'are', 'going', 'to', 'warehouse', 'toolmail', 'it', 'is', 'not', 'even', 'ringing'], ['sales', 'area', 'selection', 'on', 'opportunities', 'not', 'filtering', 'to', 'those', 'in', 'which', 'the', 'account', 'is', 'extended', 'instead', 'it', 'shows', 'all', 'sales', 'area', 'selection', 'on', 'opportunities', 'not', 'filtering', 'to', 'those', 'in', 'which', 'the', 'account', 'is', 'extended', 'see', 'attached', 'email', 'communication', 'including', 'example', 'for', 'account'], ['pc', 'not', 'detecting', 'docking', 'station', 'pc', 'not', 'detecting', 'docking', 'station'], ['having', 'trouble', 'connecting', 'to', 'companysecure', 'jeftryhf', 'is', 'having', 'trouble', 'connecting', 'to', 'companysecure', 'at', 'remote', 'sites', 'and', 'usa'], ['i', 'cannot', 'log', 'into', 'erp', 'i', 'tried', 'rebooting', 'the', 'computer', 'and', 'tried', 'logging', 'into', 'another', 'computer', 'and', 'get', 'blank', 'screen'], ['request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for', 'microsoft', 'on', 'behalf', 'of', 'company', 'inc', 'mail', 'pm', 'nwfodmhc', 'exurcwkm', 'shadakjsdd', 'request', 'to', 'reset', 'microsoft', 'online', 'services', 'password', 'for', 'importance', 'high', 'request', 'to', 'reset', 'user', 'password', 'the', 'following', 'user', 'in', 'your', 'organization', 'has', 'requested', 'password', 'reset', 'be', 'performed', 'for', 'their', 'account', 'first', 'name', 'twejhda', 'last', 'name', 'asjadjs', 'consider', 'contacting', 'this', 'user', 'to', 'validate', 'this', 'request', 'is', 'authentic', 'before', 'continuing', 'if', 'you', 'have', 'determined', 'that', 'this', 'is', 'valid', 'request', 'use', 'your', 'service', 'admin', 'portal', 'office', 'windows', 'intune', 'windows', 'azure', 'etc', 'to', 'reset', 'the', 'password', 'for', 'this', 'user', 'want', 'to', 'let', 'you', 'users', 'reset', 'their', 'own', 'passwords', 'check', 'out', 'how', 'you', 'can', 'enable', 'password', 'reset', 'for', 'users', 'in', 'your', 'organization', 'with', 'just', 'few', 'clicks', 'sincerely', 'company', 'inc', 'this', 'message', 'was', 'sent', 'from', 'an', 'unmonitored', 'email', 'address', 'please', 'do', 'not', 'reply', 'to', 'this', 'message'], ['usa', 'file', 'server', 'hostname', 'has', 'failed', 'hard', 'drive', 'usa', 'file', 'server', 'hostname', 'has', 'failed', 'hard', 'drive'], ['unable', 'to', 'display', 'the', 'expense', 'report', 'unable', 'to', 'display', 'the', 'expense', 'report'], ['blank', 'call', 'gso', 'blank', 'call', 'gso'], ['unlock', 'account', 'the', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'hi', 'team', 'could', 'you', 'please', 'unlock', 'account', 'the', 'user', 'aeftjxos', 'lhnyofad', 'id', 'vvsardkajdjtf', 'case', 'this', 'account', 'was', 'expired', 'please', 'extend', 'the', 'access', 'for', 'the', 'account', 'the', 'manager', 'this', 'user', 'is', 'zuyimtsf', 'qjtimdsp', 'please', 'contact', 'majsdtnrio', 'or', 'if', 'you', 'have', 'more', 'doubts', 'please', 'return', 'me'], ['unable', 'to', 'login', 'to', 'outlook', 'rjsulvat', 'uanigkqc', 'pm', 'nwfodmhc', 'exurcwkm', 'thadasgg', 'fwd', 'problem', 'with', 'outlook', 'it', 'is', 'again', 'iphone', 'rjsulvat', 'uanigkqc', 'nwfodmhc', 'exurcwkm', 'problem', 'with', 'outlook', 'hello', 'cannot', 'start', 'outlook', 'iphone'], ['logon', 'balancing', 'error', 'in', 'erp', 'logon', 'balancing', 'error', 'in', 'erp'], ['outlook', 'freezing', 'issue', 'outlook', 'freezing', 'issue'], ['the', 'username', 'ccghksdm', 'will', 'be', 'used', 'to', 'login', 'to', 'company', 'via', 'citrix', 'hello', 'the', 'username', 'ccghksdm', 'will', 'be', 'used', 'to', 'login', 'to', 'company', 'via', 'citrix', 'assume', 'that', 'we', 'need', 'to', 'delete', 'this', 'user', 'profile', 'on', 'the', 'citrix', 'servers', 'so', 'please', 'send', 'ticket', 'to', 'the', 'citrix', 'team', 'because', 'his', 'account', 'in', 'active', 'directory', 'is', 'not', 'locked', 'oinqckds', 'qieswrfu', 'manager', 'gesendet', 'dienstag', 'oktober', 'an', 'oinqckds', 'qieswrfu', 'betreff', 'password', 'hi', 'can', 'you', 'please', 'reset', 'my', 'account', 'so', 'can', 'login', 'again', 'my', 'user', 'is', 'ccghksdm', 'my', 'last', 'password', 'was', 'prbsddqd', 'it', 'doesnt', 'work', 'so', 'cant', 'login', 'at', 'the', 'moment'], ['prtgghjk', 'access', 'locked', 'jgdydqqd', 'locked', 'me', 'out', 'tried', 'going', 'onto', 'password', 'management', 'tool', 'to', 'reset', 'my', 'password', 'but', 'jgdydqqd', 'isn', 'listed', 'can', 'you', 'please', 'unlock', 'my', 'account', 'aerp'], ['unable', 'to', 'connect', 'to', 'the', 'home', 'internet', 'internet', 'connection', 'does', 'not', 'appear', 'to', 'be', 'working', 'wireless'], ['unable', 'to', 'sign', 'in', 'reporting', 'tool', 'hello', 'am', 'unable', 'to', 'sign', 'into', 'reporting', 'tool', 'can', 'someone', 'please', 'assist', 'me', 'with', 'my', 'correct', 'user', 'name', 'and', 'password', 'have', 'never', 'signed', 'into', 'it', 'before'], ['vitalyst', 'transfer', 'crm', 'calendar', 'not', 'showing', 'on', 'outlook', 'vitalyst', 'transfer', 'crm', 'calendar', 'not', 'showing', 'on', 'outlook'], ['unable', 'to', 'access', 'erp', 'through', 'my', 'vpn', 'connection', 'working', 'from', 'home', 'started', 'vpn', 'cannot', 'access', 'erp', 'keep', 'getting', 'logon', 'balancing', 'error', 'suggest', 'submitting', 'to', 'it', 'team', 'at', 'usa'], ['mobile', 'device', 'activation', 'hello', 'colleagues', 'would', 'you', 'please', 'be', 'so', 'kind', 'and', 'activate', 'the', 'new', 'iphone', 'of', 'hybegvwo', 'dbgrtqhs', 'company', 'kstdaddaad', 'details', 'please', 'see', 'mail', 'below', 'many'], ['a', 'ndigung', 'for', 'eluvxqhw', 'gpbfkqeu', 'effective', 'has', 'been', 'approved', 'hello', '', '', 'k', 'ndigung', 'for', 'eluvxqhw', 'gpbfkqeu', 'effective', 'has', 'been', 'approved'], ['password', 'reset', 'nwfodmhc', 'exurcwkm', 'pm', 'uzpycdho', 'hdswinlo', 'ustvaifg', 'hmzfewks', 'uzpycdho', 'hdswinlo', 'your', 'windows', 'password', 'is', 'expiring', 'soon', 'hi', 'unfortunately', 'it', 'is', 'an', 'automatic', 'process', 'we', 'cannot', 'extend', 'the', 'time', 'period', 'once', 'you', 'come', 'back', 'from', 'vacation', 'please', 'give', 'us', 'call', 'back', 'we', 'will', 'reset', 'the', 'password', 'for', 'you'], ['password', 'reset', 'password', 'reset'], ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'], ['erp', 'name', 'fievgddtrr', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'bloqued', 'too', 'many', 'failes', 'attempts', 'tanks'], ['skype', 'online', 'meeting', 'freezing', 'unable', 'to', 'join', 'skype', 'meeting', '', 'skype', 'keeps', 'freezing'], ['unable', 'to', 'connect', 'to', 'company', 'center', 'sales', 'org', 'not', 'working', 'unable', 'to', 'connect', 'to', 'company', 'center', 'sales', 'org', 'not', 'working'], ['blank', 'call', 'blank', 'call'], ['unable', 'to', 'connect', 'to', 'global', 'telecom', 'broadband', 'name', 'joetrhud', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'unable', 'to', 'connect', 'to', 'internet', 'using', 'broadband', 'service'], ['password', 'has', 'expired', 'garthyhtuy', 'was', 'out', 'of', 'office', 'for', 'long', 'time', 'and', 'needs', 'assistance', 'with', 'logging', 'back', 'in', 'to', 'the', 'pc', 'now', 'he', 'is', 'in', 'office', 'at', 'the', 'moment'], ['summary', 'attendance', 'tool', 'password', 'forgot', 'name', 'kirathrydan', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'attendance', 'tool', 'password', 'forgot'], ['erp', 'zqt', 'pntp', 'and', 'zntc', 'price', 'not', 'calculating', 'on', 'quote', 'erp', 'quote', 'pntp', 'net', 'price', 'and', 'zntc', 'unit', 'price', 'are', 'but', 'all', 'costs', 'are', 'loaded', 'see', 'screenshots', 'in', 'email', 'attached', 'need', 'quote', 'to', 'send', 'to', 'customer', 'for', 'ordering'], ['could', 'not', 'use', 'bobjee', 'application', 'search', 'and', 'explorer', 'analytics', 'erp', 'netweaver', 'portal', 'error', 'message', 'it', 'was', 'not', 'possible', 'to', 'retrieve', 'the', 'facets', 'and', 'their', 'values', '', 'can', 'start', 'exploring', 'the', 'information', 'space', 'as', 'it', 'doesn', 'contain', 'any', 'data'], ['us', 'time', 'change', 'hi', 'team', 'below', 'is', 'the', 'hub', 'posting', 'to', 'be', 'published', 'for', 'us', 'time', 'change', 'aerp', 'revert', 'if', 'you', 'have', 'any', 'questions', 'planned', 'service', 'disruption', 'what', 'is', 'the', 'event', 'daylight', 'savings', 'time', 'ends', 'in', 's', 'when', 'does', 'it', 'begin', 'pm', 'edt', 'th', 'november', 'when', 'does', 'it', 'end', 'following', 'time', 'change', 'am', 'est', 'november', 'who', 'and', 'what', 'will', 'be', 'affected', 'all', 'erp', 'users', 'all', 'erp', 'systems', 'including', 'erp', 'plm', 'bw', 'crm', 'supply', 'chain', 'hcm', 'what', 'is', 'the', 'reason', 'all', 'erp', 'systems', 'must', 'be', 'stopped', 'during', 'time', 'change', 'to', 'prevent', 'data', 'inconsistency', 'questions', 'corporate', 'datacenter', 'xabkyoug', 'wdkyiqfx', 'nvyjtmca', 'xjhpznds', 'and', 'network', 'operations', 'best'], ['job', 'hostname', 'idb', 'daily', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hostname', 'idb', 'daily', 'failed', 'in', 'job', 'scheduler', 'at'], ['in', 'has', 'cracked', 'screen', 'but', 'turned', 'off', 'touch', 'screen', 'so', 'no', 'longer', 'jumps', 'curser', 'around', 'in', 'has', 'cracked', 'screen', 'but', 'turned', 'off', 'touch', 'screen', 'so', 'no', 'longer', 'jumps', 'curser', 'around', 'phone', 'pc', 'name', 'lmsltrys'], ['password', 'reset', 'for', 'uacyltoe', 'hxgayczemii', 'name', 'dctvfjrn', 'oypnxftq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'reset', 'the', 'password', 'for', 'aolhgbps', 'pbxqtcek', 'uacyltoe', 'hxgayczemii'], ['unable', 'to', 'login', 'to', 'skype', 'unable', 'to', 'login', 'to', 'skype'], ['laptop', 'issues', 'hallo', 'my', 'outlook', 'collapsed', 'two', 'times', 'tried', 'to', 'restart', 'my', 'laptop', 'but', 'it', 'doesn', 'startup', 'anymore', 'restarting', 'is', 'on', 'my', 'screen', 'for', 'already', 'half', 'an', 'hour', 'image', 'jpg', 'met', 'vriendelijke', 'groet', 'lwizucan', 'zvnxlobq', 'directeur', 'company'], ['receiving', 'collaboration', 'platform', 'deletion', 'emails', 'in', 'not', 'in', 'english', 'why', 'are', 'these', 'coming', 'in', 'spanish', 'have', 'already', 'told', 'lothryra', 'what', 'they', 'mean', 'but', 'they', 'should', 'be', 'in', 'english', 'please', 'enter', 'ticket', 'for', 'collaboration'], ['unable', 'to', 'open', 'outlook', 'unable', 'to', 'open', 'outlook'], ['ip', 'address', 'conflict', 'carthygyrol', 'is', 'back', 'in', 'the', 'office', 'after', 'few', 'weeks', 'off', 'she', 'saw', 'an', 'ip', 'address', 'conflict', 'message', 'requested', 'to', 'restart', 'and', 'she', 'did', 'not', 'see', 'the', 'message', 'again'], ['scan', 'doesn', 'work', 'in', 'the', 'home', 'printer', 'scan', 'doesn', 'work', 'in', 'the', 'home', 'printer'], ['erp', 'sid', 'account', 'lock', 'out', 'erp', 'sid', 'account', 'lock', 'out'], ['skype', 'meeting', 'add', 'in', 'getting', 'disabled', 'from', 'outlook', 'skype', 'meeting', 'add', 'in', 'getting', 'disabled', 'from', 'outlook'], ['i', 'can', 'connect', 'my', 'note', 'book', 'to', 'the', 'vpn', 'i', 'can', 'connect', 'my', 'note', 'book', 'to', 'the', 'vpn', '', 'page', 'csn', 'not', 'be', 'shown'], ['the', 'password', 'for', 'infosthryda', 'has', 'expired', 'south', 'amerirtca', 'erp', 'not', 'working', 'today', 'the', 'erp', 'is', 'not', 'working', 'while', 'attempting', 'to', 'use', 'the', 'erp', 'client', 'it', 'shows', 'message', 'attached', 'microsoft', 'odbc', 'vmsliazh', 'ltksxmyv', 'driver', 'login', 'failed', 'for', 'user', 'infosthryda', 'reason', 'the', 'password', 'of', 'the', 'account', 'has', 'expired', 'we', 'have', 'contacted', 'the', 'vendor', 'that', 'said', 'the', 'password', 'is', 'expired', 'due', 'to', 'settings', 'configured', 'by', 'company', 'dba', 'team', 'dba', 'team', 'should', 'unlock', 'account', 'cahnge', 'password', 'and', 'setup', 'the', 'erp', 'with', 'the', 'new', 'password'], ['reset', 'passwords', 'for', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'passwords', 'for', 'mgvpoyqd', 'tnlshpwb', 'using', 'password', 'management', 'tool', 'password', 'reset'], ['speaker', 'not', 'working', 'in', 'skype', 'hello', '', 'am', 'facing', 'the', 'issue', 'of', 'no', 'sound', 'during', 'skype', 'meeting', 'kindly', 'do', 'needful', '', '', 'best'], ['problem', 'of', 'ticket', 'no', 'which', 'was', 'fixed', 'with', 'chg', 'has', 'back', 'regarding', 'ticket', 'no', 'which', 'was', 'fixed', 'with', 'chg', 'key', 'user', 'reported', 'in', 'the', 'attached', 'email', 'that', 'the', 'application', 'is', 'showing', 'the', 'problem', 'again', 'today', '', 'we', 'have', 'contacted', 'the', 'vendor', 'and', 'they', 'told', 'us', 'they', 'will', 'verify', 'but', 'have', 'recommended', 'to', 'run', 'the', 'command', 'again', 'while', 'they', 'are', 'investigating', 'also', 'they', 'have', 'suggested', 'us', 'to', 'involve', 'the', 'dba', 'team', 'to', 'also', 'verify', 'it', 'seems', 'the', 'db', 'is', 'missing', 'information'], ['ts', 'printer', 'isn', 'printing', 'name', 'gqhfieys', 'pkwcdbrv', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'ts', 'printer', 'still', 'not', 'working', 'after', 'system', 'restart'], ['problems', 'with', 'the', 'fuser', 'unit', 'we', 'qvncizuf', 'ueiybanz', 'problems', 'with', 'the', 'fuser', 'unit', 'we', 'qvncizuf', 'ueiybanz'], ['efrjkspc', 'sfhbunrp', 'your', 'windows', 'password', 'is', 'expiring', 'soon', 'efrjkspc', 'sfhbunrp', 'am', 'nwfodmhc', 'exurcwkm', 'aw', 'efrjkspc', 'sfhbunrp', 'your', 'windows', 'password', 'is', 'expiring', 'soon', 'importance', 'high', 'hello', 'have', 'changed', 'my', 'password', 'few', 'day', 'days', 'ago', 'why', 'get', 'this', 'reminder', 'please', 'inform', 'me', 'if', 'have', 'change', 'again'], ['aw', 'teams', 'drive', 'folder', 'retention', 'deletion', 'please', 'review', 'and', 'respond', 'hello', 'it', 'support', '', '', 'could', 'you', 'please', 'give', 'mr', 'vxpcnrtw', 'xelhoicd', 'the', 'permission', 'to', 'read', 'and', 'write', 'load', 'and', 'upload', 'files', 'from', 'the', 'global', 'teams', 'drive', 'for', 'the', 'folder', 'gm', 'sge', 'programdnty', '', 'many'], ['usa', 'or', 'deletion', 'all', 'groups', 'qlhmawgi', 'sgwipoxns', 'and', 'ou', 'for', 'usatdhdal', 'can', 'be', 'deleted', 'usatdhdal', 'ou', 'can', 'also', 'be', 'deleted'], ['uacyltoe', 'hxgaycze', 'name', 'tqnbkjgu', 'xyedbsnm', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'uacyltoe', 'hxgaycze'], ['billing', 'block', 'not', 'removed', 'automatically', 'hello', 'it', '', '', 'please', 'check', 'why', 'billing', 'block', 'was', 'not', 'removed', 'automatically'], ['need', 'to', 'create', 'the', 'delivery', 'note', 'for', 'sto', 'but', 'it', 'won', 'work', 'need', 'to', 'create', 'the', 'delivery', 'note', 'for', 'sto', 'but', 'it', 'won', 'work'], ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'name', 'chtrhysdrystal', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'good', 'morning', 'can', 'you', 'please', 'reset', 'my', 'erp', 'password'], ['need', 'to', 'install', 'ts', 'printer', 'need', 'to', 'install', 'ts', 'printer'], ['urgent', 'users', 'in', 'germany', 'are', 'reporting', 'that', 'they', 'cannot', 'reach', 'gso', 'using', 'the', 'chat', 'feature', 'tqnbkjgu', 'xyedbsnm', 'reported', 'that', 'he', 'and', 'his', 'colleagues', 'are', 'unable', 'to', 'reach', 'gso', 'using', 'the', 'chat', '', 'when', 'they', 'fill', 'out', 'the', 'form', 'the', 'next', 'page', 'comes', 'up', 'only', 'with', 'the', 'company', 'logo'], ['new', 'iphone', 'activation', 'die', 'synchronisierung', 'mit', 'exchange', 'activesync', 'ist', 'auf', 'ihrem', 'ger', 'vor', 'bergehend', 'blockiert', 'bis', 'd', 'hello', 'colleagues', 'would', 'you', 'please', 'be', 'so', 'kind', 'and', 'activate', 'the', 'new', 'iphone', 'of', 'hybegvwo', 'dbgrtqhs', 'company', 'sdjdskjdkyr', 'details', 'please', 'see', 'mail', 'below', 'many'], ['folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'folder', 'access', 'hostname', 'departements', 'aese', 'thryad', 'read', 'and', 'write', 'access', 'needed'], ['in', 'outlook', 'and', 'all', 'other', 'microsoft', 'applications', 'message', 'appears', 'saying', 'product', 'deactivated', 'in', 'outlook', 'and', 'all', 'other', 'microsoft', 'applications', 'message', 'appears', 'saying', 'product', 'deactivated'], ['laptop', 'bettery', 'issue', 'facing', 'charging', 'issue', 'computer', 'name', 'aidle', 'service', 'tag', 'dcdhzhd'], ['reset', 'passwords', 'for', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset', 'reset', 'passwords', 'for', 'bfnvjg', 'trqmnpvu', 'using', 'password', 'management', 'tool', 'password', 'reset'], ['printer', 'malfunction', 'hello', '', '', 'the', 'printer', 'em', 'does', 'not', 'scan', 'any', 'documents', '', '', 'error', 'message', 'check', 'access', 'r', 'the', 'following', 'destinations', 'failed', '', '', 'hostname', 'kmscan', 'em', 'file', 'hostname', 'kmscan', 'em', 'the', 'path', 'cannot', 'be', 'found', '', '', 'the', 'error', 'can', 'also', 'be', 'caused', 'by', 'switching', 'the', 'device', 'on', 'and', 'off', 'several', 'times', 'not', 'fix', '', '', 'yours', 'best'], ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'], ['erp', 'locked', 'failed', 'attempts', 'password', 'locked', 'please', 'activate', 'erp', 'failed', 'attempts'], ['password', 'is', 'not', 'synchronized', 'password', 'is', 'not', 'synchronized'], ['machine', 'pc', 'defective', 'the', "machine's", 'pc', 'no', 'longer', 'starts', 'up'], ['pc', 'awywx', 'in', 'rddept', 'qlhmawgi', 'sgwipoxn', 'is', 'not', 'getting', 'network', 'connection', 'pc', 'awywx', 'in', 'rddept', 'qlhmawgi', 'sgwipoxn', 'is', 'not', 'getting', 'network', 'connection'], ['call', 'from', 'salesforce', 'for', 'hathryrtmut', 'caller', 'named', 'benjamtrhdyin', 'from', 'salesforce', 'wanted', 'to', 'talk', 'to', 'hathryrtmut'], ['bug', 'in', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'is', 'appearing', 'blank', 'bug', 'in', 'employee', 'extract', 'programdnty', 'reportncqulao', 'qauighdpnager', 'is', 'appearing', 'blank'], ['eu', 'tool', 'in', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht', 'eu', 'tool', 'in', 'germany', 'steel', 'ohne', 'funktion', 'ckmelden', 'geht', 'nicht'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'], ['msd', 'crm', 'error', 'opening', 'outlook', 'hello', '', 'when', 'open', 'outlook', 'crm', 'goes', 'on', 'erro', 'with', 'net', 'and', 'if', 'press', 'continue', 'can', 'work', 'with', 'outlook', 'but', 'not', 'with', 'crm', 'plug', 'in', '', 'otherwise', 'outlook', 'crash'], ['wk', 'qdxyifhj', 'zbwtunpy', 'hello', 'can', 'you', 'see', 'where', 'the', 'mail', 'button', 'is', 'on', 'the', 'printer', "it's", 'gone', 'thanks', 'uwe'], ['hi', 'few', 'users', 'are', 'not', 'able', 'to', 'logon', 'to', 'crm', 'website', 'link', 'users', 'ottyhddok', 'thielpwiie', 'lobodeidd', 'loksdkdjwda', 'please', 'get', 'in', 'touch', 'with', 'them'], ['erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset'], ['activation', 'of', 'outlook', 'email', 'access', 'on', 'samsung', 'edge', 'device', 'for', 'nzuofeam', 'exszgtwd', 'hi', 'please', 'usa', 'email', 'access', 'on', 'new', 'samsung', 'device', 'for', 'nzuofeam', 'exszgtwd', 'md', 'apac', 'and', 'vp', 'cpmmecial', 'please', 'find', 'information', 'as', 'follow', 'email', 'manager', 'name', 'chucashadqc', 'wsljdqqds', 'is', 'this', 'replacement', 'of', 'your', 'old', 'device', 'yes', 'as', 'the', 'existing', 'old', 'samsung', 'phone', 'is', 'no', 'longer', 'in', 'use', 'please', 'remove', 'access', 'on', 'the', 'old', 'samsung', 'device'], ['problems', 'with', 'bluescreen', 'hello,', 'the', 'computer', 'at', 'my', 'workplace', 'has', 'just', 'got', 'out', 'of', 'the', 'car', 'again', 'and', 'only', 'has', 'a', 'blue', 'screen', 'with', 'white', 'letters.', 'please', 'take', 'a', 'look', 'at', 'it', 'on', 'site'], ['login', 'issue', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'unlocked', 'the', 'account', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['no', 'display', 'on', 'desk', 'phone', 'no', 'display', 'on', 'desk', 'phone'], ['problems', 'with', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx', 'problems', 'with', 'lan', 'r', 'computer', 'erosion', 'machine', 'dtlmbcrx', 'mwuateyx'], ['network', 'outage', 'south', 'amerirtca', 'rrc', 'network', 'company', 'sa', 'south', 'amerirtca', 'dmvpn', 'router', 'is', 'down', 'since', 'on', 'no', 'backup', 'circuit', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['eu', 'tool', 'is', 'hanging', 'and', 'slow', 'at', 'the', 'loaction', 'eu', 'tool', 'is', 'hanging', 'and', 'slow', 'at', 'the', 'loaction'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['german', 'workflow', 'objects', 'from', 'all', 'folders', 'are', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'german', 'workflow', 'objects', 'from', 'all', 'folders', 'are', 'gone', 'de', 'industrial', 'gen', 'ing', 'transportation', 'ici', 'in', 'the', 'morning', 'there', 'were', 'approximately', 'objects', 'please', 'check', 'also', 'the', 'uk', 'folder'], ['problem', 'with', 'outlook', 'can', 'access', 'not', 'start', 'outlook'], ['network', 'drives', 'on', 'quattro', 'quattro', 'quattro', 'not', 'connected', 'since', 'sunday', 'network', 'drives', 'on', 'quattro', 'quattro', 'quattro', 'not', 'connected', 'since', 'sunday'], ['password', 'reset', 'vvjotsgssea', 'password', 'reset', 'vvjotsgssea'], ['uacyltoe', 'hxgaycze', 'chat', 'uacyltoe', 'hxgaycze', 'chat'], ['mount', 'request', 'on', 'lib', 'prod', 'weekly', 'for', 'job', 'backup', 'tool', 'hostname', 'weekly', 'mount', 'request', 'on', 'lib', 'prod', 'weekly', 'for', 'job', 'backup', 'tool', 'hostname', 'weekly'], ['help', 'to', 'change', 'the', 'windows', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'to', 'change', 'the', 'windows', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'help', 'the', 'user', 'login', 'to', 'the', 'password', 'manager', 'tool', 'password', 'tool', 'and', 'change', 'the', 'passwords', '', 'help', 'the', 'user', 'to', 'sync', 'the', 'psswords', 'to', 'the', 'company', 'network', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['employee', 'owned', 'mobility', 'agreement', 'employee', 'owned', 'mobility', 'agreement'], ['chat', 'feature', 'for', 'german', 'language', 'is', 'not', 'working', 'please', 'check', 'if', 'this', 'is', 'related', 'to', 'the', 'change', 'in', 'name', 'of', 'the', 'telephony', 'software', 'queues', 'from', 'fdrf', 'to', 'germany', '', 'please', 'check', 'the', 'attached', 'error', '', 'chat', 'url', '', 'english', 'language', 'chat', 'works', 'normally'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['material', 'type', 'nd', 'doesn', 'create', 'any', 'requirement', 'for', 'the', 'zlz', 'agreements', 'orders', 'yours', 'sincerely'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['passwort', 'change', 'failed', 'dear', 'sir', 'or', 'madam', '', '', 'while', 'changing', 'my', 'password', 'through', 'the', 'password', 'management', 'tool', 'password', 'manager', 'following', 'issue', 'occured', '', '', '', 'for', 'the', 'erp', 'hcm', 'production', 'target', 'it', 'was', 'not', 'able', 'to', 'change', 'the', 'password', 'details', 'say', 'please', 'contact', 'your', 'helpdesk', '', '', 'many'], ['labels', 'printer', 'in', 'area', 'end', 'control', 'germany', 'defective', 'functional', 'size'], ['on', 'ly', 'for', 'uacyltoe', 'hxgayczeing', 'sn', 'on', 'ly', 'for', 'uacyltoe', 'hxgayczeing', 'sn'], ['printer', 'wk', 'hello', 'help', 'printer', 'wk', 'is', 'no', 'longer', 'working', 'properly', 'labels', 'are', 'shifting', 'please', 'inform', 'mr', 'himghtmelreich', 'many', 'thanks', 'best'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['area', 'code', 'routing', 'check', 'for', 'machine', 'line', 'the', 'following', 'area', 'codes', 'below', 'are', 'being', 'routed', 'from', 'our', 'line', 'to', 'tyuhfljp', 'zyjfpgtk', 'when', 'someone', 'calls', 'the', 'help', 'desk', 'line', 'they', 'should', 'be', 'routed', 'to', 'lewbzysd', 'gqdaikbv', 'can', 'you', 'please', 'check', 'the', 'routing', 'area', 'codes', 'group', 'dnis'], ['engineering', 'tool', 'login', 'issue', 'engineering', 'tool', 'login', 'issue', '', 'help', 'to', 'change', 'the', 'windows', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'help', 'the', 'user', 'login', 'to', 'the', 'password', 'manager', 'tool', 'password', 'tool', 'and', 'change', 'the', 'passwords', '', 'help', 'the', 'user', 'to', 'sync', 'the', 'psswords', 'to', 'the', 'company', 'network', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['network', 'outage', 'india', 'since', 'oct', 'rd', 'telecom', 'vendor', 'sr', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'oct', 'rd', '', '', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['uacyltoe', 'hxgaycze', 'ticket', 'uacyltoe', 'hxgaycze', 'ticket'], ['login', 'not', 'possible', 'for', 'trail', 'employee', 'thsaqsh', 'hello', 'following', 'trail', 'employee', 'working', 'in', 'pthyu', 'is', 'unable', 'to', 'login', 'his', 'company', 'hub', 'mail', 'id', 'to', 'view', 'salary', 'slip', 'request', 'to', 'rectify', 'the', 'same', 'aerp', 'name', 'thsaqsh', 'number', 'mail', 'id', 'user', 'id', 'wshqqhdqh', 'password', 'vasanqi'], ['outlook', 'outlook', 'outlook', 'ost'], ['circuit', 'outage', 'india', 'plant', 'primary', 'telecom', 'vendor', 'circuit', 'is', 'down', 'since', 'am', 'on', 'et', 'site', 'up', 'on', 'secondary', 'telecom', 'vendor', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'on', 'et', '', '', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'telecom', 'vendor', 'sr', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['issue', 'in', 'wi', 'fi', 'and', 'erp', 'login', 'hi', '', '', 'we', 'are', 'facing', 'issue', 'in', 'wifi', 'connectivity', 'and', 'erp', 'login', '', '', '', 'best'], ['uacyltoe', 'hxgaycze', 'ignore', 'uacyltoe', 'hxgaycze'], ['we', 'are', 'unable', 'to', 'update', 'the', 'status', 'in', 'ticketing', 'tool', 'tickets', 'hello', 'please', 'help', 'us', 'on', 'this', 'issue', 'issue', 'we', 'are', 'unable', 'to', 'update', 'the', 'status', 'for', 'tickets', 'in', 'ticketing', 'tool', 'tool', 'below', 'are', 'the', 'example', 'tickets', 'for', 'your', 'info'], ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'pls', 'ignore'], ['uacyltoe', 'hxgayczeing', 'please', 'ignore', 'uacyltoe', 'hxgayczeing', 'please', 'ignore'], ['excel', 'database', 'problem', 'to', 'run', 'an', 'automation', 'hello', 'have', 'developed', 'one', 'application', 'which', 'access', 'database', 'internally', 'have', 'already', 'checked', 'with', 'few', 'of', 'my', 'collogues', 'and', 'it', 'working', 'fine', 'the', 'app', 'is', 'made', 'for', 'putyrh', 'press', 'tool', 'team', 'in', 'their', 'machine', 'it', 'not', 'working', 'have', 'checked', 'their', 'system', 'configuration', 'as', 'well', 'which', 'is', 'same', 'as', 'my', 'system', 'system', 'names', 'awywkwdx', 'awylw', 'awywkjswx', 'configuration', 'office', 'bit', 'this', 'is', 'the', 'error', 'what', 'get', 'in', 'their', 'system'], ['production', 'order', 'number', 'issue', 'gso', 'currently', 'erp', 'system', 'production', 'order', 'number', 'cannot', 'be', 'found', 'after', 'order', 'number', 'was', 'identify', 'enter', 'in', 'shopfloor', 'everything', 'is', 'fine', 'before', 'erp', 'routine', 'maintenance', 'please', 'open', 'ticket', 'for', 'escalate', 'the', 'responsible', 'team', 'that', 'very', 'urgent', 'best'], ['error', 'login', 'on', 'to', 'the', 'sid', 'system', 'error', 'login', 'on', 'to', 'the', 'sid', 'system', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'user', 'has', 'tried', 'the', 'password', 'management', 'tool', 'pwd', 'manager', '', 'unlocked', 'and', 'reset', 'the', 'erp', 'id', 'to', 'daypay', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['office', 'excel', 'powerpoint', 'office', 'excel', 'powerpoint'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'hr', 'payroll', 'na', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'access', 'outlook', 'hi', 'it', 'team', 'kindly', 'please', 'assist', 'as', 'user', 'tahamt', 'unable', 'to', 'access', 'outlook', 'after', 'he', 'change', 'his', 'password', 'thry', 'ldikdowdfm', 'operation', 'supervisor', 'company', 'distribution', 'services', 'of', 'asia', 'pte', 'ltd', 'email'], ['please', 'delete', 'following', 'these', 'session', 'created', 'by', 'tomyhoen', 'please', 'delete', 'following', 'these', 'session', 'created', 'by', 'tomyhoen'], ['when', 'you', 'look', 'up', 'price', 'and', 'availability', 'local', 'availability', 'is', 'zero', 'and', 'you', 'can', 'not', 'see', 'the', 'global', 'availability', 'see', 'attachment'], ['inquiry', 'on', 'impact', 'awards', 'wauhocsk', 'vxuikqaf', 'pm', 'nwfodmhc', 'exurcwkm', 'lxrponic', 'lyszwcxg', 'ranlpbmw', 'djwkylif', 'fw', 'impact', 'awards', 'dear', 'sirs', 'please', 'be', 'so', 'kind', 'and', 'help', 'have', 'been', 'asking', 'hr', 'but', 'they', 'told', 'me', 'that', 'you', 'are', 'the', 'right', 'people', 'to', 'talk', 'to', 'there', 'have', 'been', 'done', 'change', 'on', 'the', 'position', 'of', 'director', 'sales', 'theeadjjd', 'and', 'we', 'when', 'sales', 'managers', 'from', 'theeadjjd', 'direct', 'side', 'are', 'plugging', 'in', 'impact', 'award', 'points', 'the', 'approver', 'is', 'still', 'ranlpbmw', 'djwkylif', 'should', 'be', 'wauhocsk', 'vxuikqaf', 'and', 'guess', 'same', 'issue', 'might', 'be', 'with', 'we', 'wester', 'europe', 'there', 'was', 'change', 'of', 'sales', 'director', 'as', 'well', 'we', 'original', 'sd', 'crohuani', 'dtjvhyob', 'we', 'new', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'original', 'sd', 'ranlpbmw', 'djwkylif', 'eseer', 'new', 'sd', 'wauhocsk', 'vxuikqaf', 'would', 'you', 'be', 'so', 'kind', 'and', 'help', 'us', 'please', 'in', 'case', 'you', 'need', 'more', 'info', 'let', 'me', 'know'], ['please', 'provide', 'access', 'for', 'mails', 'in', 'my', 'mobile', 'phone', 'fdbgoamk', 'hygxzklauthuchidambaramdnty', '', 'pm', '', 'nwfodmhc', 'exurcwkm', '', 'fw', 'your', 'mobile', 'device', 'is', 'temporarily', 'blocked', 'from', 'synchronizing', 'using', 'exchange', 'activesync', 'until', 'your', 'administrator', 'usas', 'it', 'access', '', '', 'please', 'provide', 'access', 'for', 'mails', 'in', 'my', 'mobile', 'phone'], ['job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'csqe', 'dev', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'hostname', 'prod', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['interface', 'gigabitethernet', 'usa', 'access', 'sw', 'on', 'usa', 'core', 'sw', 'is', 'down', 'since', 'pm', 'interface', 'gigabitethernet', 'usa', 'access', 'sw', 'on', 'usa', 'core', 'sw', 'is', 'down', 'since', 'pm'], ['outlook', 'my', 'outlook', 'is', 'not', 'working', 'please', 'see', 'if', 'you', 'can', 'fix', 'thsadyu', 'dwwlhews', 'sales', 'manager', 'gl'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'germany', 'server', 'is', 'down', 'since', 'am', 'et', 'on', 'hostname', 'germany', 'server', 'is', 'down', 'since', 'am', 'et', 'on'], ['call', 'came', 'and', 'there', 'was', 'only', 'music', 'and', 'nothing', 'else', 'call', 'came', 'and', 'there', 'was', 'only', 'music', 'and', 'nothing', 'else'], ['blank', 'call', 'loud', 'noise', 'blank', 'call', 'loud', 'noise'], ['erp', 'password', 'reset', 'hi', 'require', 'to', 'reset', 'erp', 'password', 'login', 'id', 'anantadth', 'with', 'warm'], ['call', 'came', 'and', 'got', 'disconnected', 'call', 'came', 'and', 'got', 'disconnected'], ['job', 'bwhrerattr', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bwhrerattr', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'does', 'not', 'come', 'up', 'after', 'weekly', 'reboot', 'hostname', 'does', 'not', 'come', 'up', 'after', 'weekly', 'reboot', 'note', 'that', 'recently', 'there', 'was', 'hdd', 'and', 'power', 'supply', 'replaced', 'on', 'this', 'server', 'users', 'karashsnnsb', 'ping', 'hostname', 'pinging', 'hostname', 'company', 'company', 'com', 'with', 'bytes', 'of', 'data', 'request', 'timed', 'out', 'request', 'timed', 'out', 'request', 'timed', 'out', 'request', 'timed', 'out', 'ping', 'statistics', 'for', 'packets', 'sent', 'received', 'lost', 'loss', 'users', 'karashsnnsb'], ['job', 'bk', 'hana', 'sid', 'os', 'wly', 'dp', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bk', 'hana', 'sid', 'os', 'wly', 'dp', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'cold', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['erp', 'sid', 'account', 'locked', 'erp', 'sid', 'account', 'locked'], ['job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bk', 'hana', 'sid', 'erp', 'wly', 'dp', 'failed', 'in', 'job', 'scheduler', 'at'], ['switch', 'down', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'at', 'apac', 'is', 'down', 'since', 'pm', 'switch', 'down', 'apac', 'company', 'rpmwh', 'access', 'sw', 'located', 'at', 'apac', 'is', 'down', 'since', 'pm'], ['inquiry', 'on', 'expense', 'report', 'erp', 'inquiry', 'on', 'expense', 'report', 'erp'], ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'powder', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'sql', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkbackup', 'tool', 'primary', 'prod', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'disk', 'volume', 'is', 'over', 'space', 'consumed', 'hostname', 'disk', 'volume', 'is', 'over', 'space', 'consumed', 'space', 'available', 'g'], ['job', 'bwdpmbkp', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bwdpmbkp', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'server', 'is', 'offline', 'we', 'are', 'experiencing', 'an', 'interruption', 'in', 'our', 'systems', 'involved', 'with', 'server', 'hostname', '', 'most', 'of', 'the', 'network', 'printers', 'are', 'not', 'operational', 'due', 'to', 'this', 'problem', '', '', 'please', 'advise', '', '', '', 'best'], ['network', 'outage', 'south', 'amerirtca', 'ktthasb', 'site', 'is', 'hard', 'dwon', 'since', 'am', 'on', 'et', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'on', 'et', '', '', 'scheduled', 'maintenance', 'power', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['account', 'unlock', 'account', 'unlock'], ['the', 'terminate', 'action', 'for', 'kmzucxgq', 'vjzfocgt', 'has', 'completed', 'pm', 'nwfodmhc', 'exurcwkm', 'the', 'terminate', 'action', 'for', 'kmzucxgq', 'vjzfocgt', 'has', 'completed', 'hello', 'termination', 'for', 'kmzucxgq', 'vjzfocgt', 'effective', 'has', 'been', 'approved'], ['problems', 'with', 'the', 'data', 'model', 'in', 'excel', 'i', 'cannot', 'get', 'the', 'data', 'model', 'to', 'work', 'in', 'my', 'excel', 'bwfhtumx', 'japznrvb', 'regional', 'controller'], ['password', 'reset', 'password', 'reset'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['power', 'outage', 'engineering', 'toolkuznetsk', 'warehouse', 'russia', 'company', 'network', 'is', 'down', 'since', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'no', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['job', 'bkwin', 'infonet', 'full', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkwin', 'infonet', 'full', 'failed', 'in', 'job', 'scheduler', 'at'], ['outlook', 'not', 'working', 'hello', '', '', 'my', 'outlook', 'app', 'on', 'my', 'laptop', 'isn', 'opening'], ['hostname', 'server', 'beeping', 'sound', 'in', 'the', 'server', 'hostname', 'server', 'beeping', 'sound', 'in', 'the', 'server'], ['ticket', 'update', 'on', 'ticket', 'no', 'ticket', 'update', 'on', 'ticket', 'no'], ['usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'down', 'at', 'pm', 'et', 'on', 'usa', 'company', 'company', 'na', 'usa', 'usa', 'core', 'sw', 'went', 'down', 'at', 'pm', 'et', 'on', '', 'gigabitethernet', 'interface', 'down', 'on', 'company', 'na', 'usa', 'usa', 'core', 'sw', '', 'company', 'na', 'usa', 'usa', 'access', 'sw', 'went', 'down', 'at', 'pm', 'et', 'on', 'gigabitethernet', 'interface', 'down'], ['circuit', 'outage', 'usa', 'pa', 'company', 'ctc', 'dr', 'vpn', 'rtr', 'company', 'com', 'went', 'down', 'at', 'pm', 'et', 'on', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['after', 'my', 'bios', 'was', 'update', 'can', 'no', 'longer', 'log', 'in', 'to', 'erp', 'i', 'get', 'an', 'error', 'every', 'time', 'that', 'try', 'to', 'log', 'into', 'erp', 'get', 'log', 'balancing', 'error', 'could', 'not', 'connect', 'to', 'message', 'server'], ['unable', 'to', 'connect', 'to', 'erp', 'unable', 'to', 'connect', 'to', 'erp'], ['unable', 'to', 'access', 'etime', 'through', 'ie', 'password', 'prompt', 'resulting', 'in', 'an', 'unauthorized', 'access', 'error'], ['hostname', 'has', 'drive', 'that', 'is', 'flashing', 'yellow', 'message', 'display', 'is', 'also', 'flashing', 'on', 'and', 'off', 'although', 'it', 'has', 'no', 'error', 'please', 'check', 'hostname', 'shop', 'floor', 'app', 'server', 'drive', 'for', 'possible', 'problems', 'one', 'of', 'the', 'drives', 'is', 'flashing', 'yellow'], ['usa', 'and', 'usa', 'perhaps', 'other', 'sites', 'as', 'well', 'outlook', 'refusing', 'to', 'send', 'reply', 'emails', 'usa', 'and', 'usa', 'perhaps', 'other', 'sites', 'as', 'well', 'many', 'users', 'outlook', 'refusing', 'to', 'send', 'reply', 'emails', 'new', 'email', 'will', 'send', 'but', 'reply', 'will', 'stall', 'and', 'outlook', 'freezes', 'with', 'not', 'reponding', 'error', 'this', 'appears', 'to', 'be', 'happening', 'only', 'with', 'office', 'personally', 'am', 'using', 'office', 'got', 'many', 'complaints', 'from', 'usa', 'and', 'complaints', 'from', 'usa', 'mi', 'as', 'well', 'suspect', 'systemic', 'problem', 'company', 'wide'], ['access', 'denied', 'access', 'denied', 'collaboration', 'platform', 'check', 'screenshots', 'in', 'email', 'attachment', 'could', 'you', 'please', 'reviewing', 'the', 'alejayhsdtffndro', 'profile', 'on', 'collaboration', 'platform', 'in', 'the', 'functions', 'menu', 'alejayhsdtffndro', 'chose', 'the', 'finance', 'option', 'but', 'receive', 'the', 'message', 'access', 'denied', 'alejayhsdtffndro', 'is', 'controller', 'in', 'mexico', 'please', 'see', 'the', 'screenshots', 'below'], ['jpg', 'files', 'encrypted', 'jpg', 'files', 'encrypted'], ['reset', 'password', 'hello', 'locked', 'myself', 'out', 'of', 'erp', 'can', 'you', 'reset', 'my', 'password', 'thesdf', 'sdlwfkvach', 'production', 'supervisor'], ['terminated', 'employees', 'there', 'is', 'an', 'employee', 'that', 'has', 'been', 'terminated', 'who', 'still', 'has', 'access', 'to', 'company', 'email', 'on', 'his', 'personal', 'device', 'aylrbosw', 'gaeycbwd', 'tsicojkp', 'kghaozew', 'commodity', 'manager'], ['outlook', 'not', 'working', 'outlook', 'not', 'working'], ['unlocked', 'and', 'reset', 'erp', 'sid', 'unlocked', 'and', 'reset', 'erp', 'sid'], ['company', 'center', 'not', 'pulling', 'replacement', 'item', 'company', 'center', 'is', 'not', 'pulling', 'replacement', 'items', 'when', 'they', 'are', 'available', '', 'material', 'in', 'company', 'center', 'is', 'pre', 'obsolete', 'with', 'replacement', 'the', 'diaolog', 'box', 'is', 'not', 'displaying', 'the', 'replacement', 'vb', 'is', 'populated', 'mm'], ['vip', 'erp', 'account', 'locked', 'for', 'user', 'janhduh', 'keehadfvkgaalen', 'vip', 'erp', 'account', 'locked', 'for', 'user', 'janhduh', 'keehadfvkgaalen'], ['outlook', 'freezing', 'for', 'all', 'users', 'outlook', 'freezing', 'for', 'all', 'users'], ['outlook', 'crm', 'plug', 'in', 'issue', 'hello', 'crm', 'plug', 'in', 'buttons', 'are', 'not', 'staying', 'checked', 'when', 'close', 'outlook', 'lose', 'the', 'crm', 'function', 'in', 'my', 'outlook', 'when', 'close', 'the', 'programdnty', 'please', 'see', 'attached', 'screen', 'shot', 'tskvmwag', 'awkrdqzb', 'sr', 'sales', 'engineer', 'nc', 'north', 'central', 'region'], ['prtqx', 'won', 'printer', 'print', 'for', 'anyone', 'in', 'our', 'office', ''], ['password', 'error', 'in', 'erp', 'dear', 'sir', 'please', 'help', 'me', 'in', 'erp', 'login', 'user', 'id', 'dwivethn', 'with', 'best'], ['business', 'partner', 'id', 'bertsckaadyd', 'hello', 'team', 'can', 'you', 'please', 'create', 'business', 'partner', 'id', 'for', 'bertsckaadyd', 'in', 'solution', 'manager', 'inxsupmy', 'zhwmifvx', 'team', 'lead', 'sourcing', 'and', 'logistics', 'global', 'it'], ['missed', 'call', 'missed', 'call'], ['id', 'id', 'printer', 'have', 'paper', 'stuck', 'up', 'issue'], ['ms', 'outlook', 'network', 'error', 'messages', 'when', 'searching', 'in', 'inbox', 'the', 'following', 'message', 'is', 'received', 'due', 'to', 'current', 'network', 'conditions', 'some', 'results', 'not', 'be', 'included', 'in', 'your', 'search'], ['skype', 'error', 'while', 'logging', 'in', 'skype', 'error', 'while', 'logging', 'in'], ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'other', 'sid', 'enter', 'user', 'id', 'of', 'user', 'having', 'the', 'issue', 'moranm', 'transaction', 'code', 'the', 'user', 'needs', 'or', 'was', 'working', 'with', 'cvn', 'describe', 'the', 'issue', 'csr', 'mdwydindy', 'mwdlkloran', 'currently', 'does', 'not', 'have', 'access', 'to', 'view', 'drawings', 'please', 'upgrade', 'her', 'access', 'as', 'this', 'is', 'necessary', 'requirement', 'for', 'all', 'csrs', 'on', 'the', 'company', 'team', 'provide', 'access', 'the', 'same', 'as', 'this', 'other', 'user', 'yrlsguzk', 'fasyiokl'], ['unable', 'to', 'open', 'xml', 'files', 'on', 'the', 'computer', 'unable', 'to', 'open', 'xml', 'files', 'on', 'the', 'computer'], ['skype', 'problem', 'yesterday', 'had', 'some', 'problems', 'with', 'outlook', 'after', 'password', 'change', 'the', 'problem', 'was', 'crm', 'new', 'version', 'was', 'loaded', 'and', 'thought', 'my', 'troubles', 'were', 'over', 'now', 'my', 'skype', 'for', 'business', 'is', 'not', 'working', 'and', 'could', 'not', 'join', 'an', 'important', 'meeting', 'this', 'morning', 'copy', 'of', 'the', 'skype', 'screen', 'is', 'below', 'is', 'the', 'sign', 'in', 'address', 'correct', 'if', 'not', 'what', 'should', 'it', 'be', 'have', 'emailed', 'this', 'because', 'the', 'telephone', 'help', 'line', 'hangs', 'up', 'on', 'you', 'as', 'soon', 'as', 'you', 'select', 'number', 'to', 'direct', 'the', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sales', 'engineer', 'team'], ['help', 'line', 'phone', 'problem', 'please', 'note', 'when', 'dialing', 'into', 'the', 'help', 'line', 'as', 'soon', 'as', 'you', 'make', 'selection', 'or', 'it', 'hangs', 'up', 'on', 'you', 'terminating', 'the', 'call', 'tjwdhwdw', 'tdlwdkunis', 'senior', 'sales', 'engineer'], ['skype', 'hello', '', 'am', 'having', 'trouble', 'accessing', 'skype', 'keep', 'getting', 'cut', 'off', 'when', 'select', 'from', 'the', 'phone', 'menu', 'hope', 'this', 'gets', 'through'], ['my', 'pc', 'don', 'work', 'with', 'wifi', 'have', 'wifi', 'but', 'my', 'computer', 'does', 'not', 'work', 'with', 'wifi', 'only', 'works', 'with', 'telecom', 'vendor', 'telecom', 'vendor', 'it', 'is', 'gsm', 'suplier', 'with', 'g'], ['blank', 'call', 'blank', 'call'], ['information', 'on', 'previous', 'tickets', 'name', 'slrgconp', 'onukdesq', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'opened', 'ticket', 'this', 'morning', 'who', 'is', 'it', 'assigned', 'to'], ['email', 'address', 'in', 'purchasing', 'dpuifqeo', 'eglwsfkn', 'pm', 'nwfodmhc', 'exurcwkm', 'shkdwd', 'dlwdwd', 'dfetvmzq', 'brxavtzp', 're', 'purchasing', 'dfetvmzq', 'brxavtzp', 'the', 'email', 'address', 'on', 'this', 'profile', 'is', 'incorrect', 'please', 'change', 'to', 'also', 'need', 'to', 'add', 'the', 'company', 'catalog', 'to', 'her', 'profile'], ['reset', 'the', 'password', 'for', 'jgxmafwk', 'mlroijfp', 'on', 'erp', 'production', 'hcm', 'i', 'am', 'new', 'to', 'erp', 'and', 'have', 'had', 'no', 'training', 'at', 'all', '', 'would', 'you', 'please', 'call', 'me', 'and', 'walk', 'me', 'through', 'login', 'or', 'at', 'least', 'verify', 'my', 'login', 'name', 'and', 'password', 'please', 'and'], ['blank', 'call', 'blank', 'call'], ['outlook', 'indexing', 'error', 'hello', 'team', '', 'used', 'to', 'be', 'able', 'to', 'see', 'what', 'search', 'in', 'outlook', 'within', 'pdf', 'attachments', 'but', 'after', 'the', 'upgrade', 'cannot', 'search', 'within', 'pdf', 'attachment', 'in', 'my', 'mailbox', '', 'can', 'you', 'please', 'advise'], ['erp', 'sid', 'erp', 'production', 'password', 'reset', 'erp', 'sid', 'erp', 'production', 'password', 'reset'], ['ethics', 'login', 'error', 'when', 'try', 'to', 'login', 'to', 'ethics', 'training', 'click', 'on', 'the', 'log', 'in', 'from', 'the', 'collaboration', 'platform', 'site', 'it', 'takes', 'me', 'to', 'the', 'page', 'to', 'select', 'language', 'click', 'on', 'engilsh', 'then', 'get', 'an', 'error', 'that', 'says', 'the', 'page', 'failed', 'to', 'load'], ['old', 'ticket', 'no', 'inc', 'usa', 'access', 'for', 'configuring', 'outlook', 'exchange', 'on', 'windows', 'phone', 'usa', 'access', 'for', 'configuring', 'outlook', 'exchange', 'on', 'windows', 'phone', 'approval', 'is', 'attached', 'with', 'this', 'ticket'], ['interface', 'gigabitethernet', 'shopfloor', 'schuette', 'on', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'is', 'down', 'gigabitethernet', 'shopfloor', 'schuette', 'on', 'company', 'eu', 'deu', 'germany', 'emsw', 'access', 'sw', 'is', 'down', 'since'], ['reset', 'passwords', 'for', 'qkgnwxto', 'dwtivjrp', 'using', 'password', 'management', 'tool', 'password', 'reset', 'cannot', 'log', 'into', 'hiatchi', 'password', 'manager', 'to', 'change', 'to', 'new', 'password'], ['password', 'reset', 'request', 'password', 'reset', 'request'], ['my', 'external', 'monitor', 'will', 'not', 'come', 'on', 'this', 'morning', 'my', 'external', 'monitor', 'will', 'not', 'come', 'on', 'this', 'morning'], ['delivery', 'issue', 'good', 'morning', '', '', 'we', 'have', 'urgent', 'need', 'for', 'assistance', 'as', 'customer', 'is', 'awaiting', 'parts', 'for', 'mm', 'please', 'give', 'this', 'matheywter', 'high', 'priority', '', '', 'however', '', '', 'we', 'have', 'experienced', 'glitch', 'in', 'creating', 'delivery', 'for', 'sales', 'order', 'the', 'delivery', 'created', 'for', 'pcs', 'there', 'is', 'balance', 'due', 'of', 'pcs', 'but', 'we', 'can', 'not', 'change', 'delivery', 'quantity', 'nor', 'can', 'we', 'delete', 'delivery', 'we', 'did', 'not', 'pgi', 'the', 'delivery', 'when', 'created', 'and', 'the', 'delivery', 'is', 'still', 'showing', 'in', 'md', 'but', 'when', 'we', 'try', 'to', 'make', 'changes', 'there', 'is', 'an', 'error', 'that', 'the', 'delivery', 'has', 'been', 'posted', 'we', 'have', 'tried', 'to', 'unpost', 'vl', 'delivery', 'but', 'we', 'are', 'getting', 'message', 'stating', 'that', 'delivery', 'has', 'already', 'been', 'inwarehouse', 'toold', 'but', 'in', 'all', 'reality', 'the', 'delivery', 'is', 'frozen', 'in', 'erp', 'and', 'no', 'changes', 'can', 'be', 'made'], ['company', 'com', 'not', 'working', 'dns', 'issue', 'company', 'com', 'not', 'working', 'dns', 'issue'], ['customer', 'catalogue', 'and', 'collaboration', 'tool', 'is', 'not', 'working', 'customer', 'catalogue', 'and', 'collaboration', 'tool', 'is', 'not', 'working'], ['unable', 'to', 'call', 'in', 'fyi', '', '', 'tried', 'calling', 'in', 'this', 'morning', 'no', 'matheywter', 'which', 'option', 'select', 'm', 'immediately', 'disconnected'], ['access', 'to', 'netweaver', 'good', 'morning', 'please', 'give', 'yhrdw', 'hdldgeman', 'access', 'to', 'netweaver', 'questions', 'thanx', 'jwbsdd', 'ddmefoche', 'sr', 'applications', 'engineer'], ['lean', 'tracker', 'issues', 'hello', 'am', 'getting', 'error', 'when', 'trying', 'to', 'create', 'new', 'lean', 'tracker', 'number', 'attached', 'the', 'screenshot', 'of', 'the', 'error', 'need', 'your', 'help', 'to', 'resolve', 'it'], ['shared', 'mailbox', 'not', 'updating', 'activities', 'shared', 'mailbox', 'not', 'updating', 'activities'], ['i', 'cannot', 'get', 'into', 'my', 'computer', 'get', 'an', 'error', 'no', 'ip', 'address', 'i', 'cannot', 'get', 'into', 'my', 'computer', 'get', 'an', 'error', 'no', 'ip', 'address'], ['account', 'locked', 'in', 'erp', 'sid', 'account', 'locked', 'in', 'erp', 'sid'], ['would', 'you', 'please', 'reset', 'my', 'erp', 'hcm', 'password', 'm', 'locked', 'out', 'of', 'it', 'thanks', 'would', 'you', 'please', 'reset', 'my', 'erp', 'hcm', 'password', 'm', 'locked', 'out', 'of', 'it'], ['outlook', 'and', 'skype', 'not', 'responding', 'outlook', 'and', 'skype', 'not', 'responding'], ['printer', 'in', 'we', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx', 'printer', 'in', 'we', 'uacyltoe', 'hxgayczeraum', 'knicrhtyt', 'paper', 'dtlmbcrx', 'mwuateyx'], ['need', 'access', 'to', 'shift', 'planner', 'please', 'set', 'up', 'access', 'to', 'the', 'following', 'path', 'departments', 'hostname', 'programdntyme', 'shift', 'planner', 'user', 'freybtrhsdl'], ['hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical', 'hostname', 'plm', 'plot', 'view', 'production', 'order', 'interface', 'app', 'rfcserver', 'exe', 'process', 'count', 'critical'], ['password', 'no', 'more', 'valid', 'new', 'password', 'to', 'access', 'to', 'erp', 'sid', 'erp', 'production', 'password', 'no', 'more', 'valid', 'new', 'password', 'to', 'access', 'to', 'erp', 'sid', 'erp', 'production'], ['reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr', 'reinstall', 'hardcopy', 'und', 'eu', 'tool', 'lndypaqg', 'dhqwtcsr'], ['help', 'to', 'install', 'erp', 'in', 'computer', 'lpawhdt', 'hi', 'team', 'could', 'you', 'please', 'help', 'me', 'to', 'reinstall', 'erp', 'in', 'computer', 'the', 'an', 'user', 'computer', 'lpawhdt', 'please', 'contatc', 'me', 'if', 'you', 'have', 'more', 'doubt', 'tnks'], ['expedite', 'mm', 'mm', 'hi', 'team', 'pls', 'help', 'to', 'run', 'out', 'dn', 'against', 'sto', 'pcs', 'customer', 'need', 'them', 'urgently', 'thx', 'lot', 'rgds', 'wswdd', 'djdwol', 'company', 'hardpoint', 'apacc'], ['we', 'only', 'output', 'an', 'error', 'message', 'we', 'only', 'output', 'an', 'error', 'message', '', 'registering', 'in', 'the', 'network', '', 'registering', 'the', 'network', 'settings', '', 'not', 'all', 'operations', 'are', 'completed', '', 'wait', 'a', 'moment', 'vzqomdgt', 'jwoqbuml'], ['pc', 'slow', 'my', 'pc', 'is', 'responding', 'slow', 'can', 'the', 'pc', 'team', 'please', 'check', 'to', 'speed', 'it', 'up', 'further', '', 'am', 'looking', 'for', 'disk', 'fragmentation', 'or', 'similar', 'type', 'of', 'activity', 'which', 'will', 'help', 'pc', 'perform', 'its', 'activitiess', 'faster'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['trigger', 'loads', 'for', 'bw', 'fill', 'rate', 'recovery', 'kba', 'for', 'trigger', 'loads', 'for', 'bw', 'fill', 'rate', 'recovery', 'kba', 'for'], ['lable', 'printer', 'does', 'not', 'work', 'lable', 'printer', 'in', 'the', 'final', 'inspection', 'defense', 'does', 'not', 'issue', 'any', 'labels'], ['job', 'bk', 'biaprod', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bk', 'biaprod', 'failed', 'in', 'job', 'scheduler', 'at'], ['computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl', 'computer', 'r', 'ngenmessmaschine', 'uacyltoe', 'hxgayczeen', 'xosdfhbu', 'gtbfkisl'], ['pc', 'name', 'hello', 'we', 'need', 'new', 'pc', 'name', 'service', 'tag', 'of', 'the', 'pc', 'is', 'fynkssc', 'koahsriq', 'wdugqatr', 'administrative', 'assistant', 'company', 'ooo', 'vavilova', 'corp', 'russia', 'russia', 'www', 'company', 'com'], ['delivery', 'unable', 'to', 'ship', 'out', 'delivery', 'please', 'provide', 'the', 'following', 'what', 'order', 'number', 'customer', 'order', 'nor', 'what', 'material', 'or', 'item', 'number', 'item', 'mm', 'what', 'warehouse', 'location', 'plant', 'issue', 'description', 'error', 'message', 'the', 'delivery', 'quantety', 'is', 'the', 'picked', 'quantety', 'is', 'delivery', 'note', 'is', 'booked', 'but', 'system', 'says', 'delivery', 'is', 'not', 'picked', 'yet', 'can', 'not', 'cancel', 'please', 'help'], ['pw', 'reset', 'for', 'erp', 'user', 'name', 'pihddltzr', 'erp', 'sid', 'account', 'has', 'been', 'not', 'unlocked', 'successfully', 'pw', 'reset', 'for', 'erp', 'user', 'name', 'pihddltzr', 'hi', 'unlocked', 'the', 'erp', 'sid', 'account', 'please', 'login', 'with', 'same', 'password', 'not', 'working'], ['cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan', 'cable', 'lan', 'liefern', 'gogtyekhan', 'merdivan'], ['netweaver', 'cannot', 'use', 'it', 'because', 'of', 'missing', 'plugin'], ['erp', 'sid', 'response', 'time', 'too', 'slow', 'transactions', 'are', 'being', 'interrupted', 'and', 'erp', 'connection', 'is', 'broken', 'constantly', 'transactions', 'are', 'interrupted', 'and', 'erp', 'connection', 'is', 'broken', 'constantly'], ['please', 'release', 'access', 'to', 'hostname', 'teams', 'werkleitunggermany', 'yours', 'sincerely'], ['pls', 'release', 'access', 'to', 'hostname', 'lean', 'yours', 'sincerely'], ['reminder', 'email', 'notification', 'keeps', 'on', 'sending', 'for', 'the', 'approved', 'pr', 'hi', 'it', 'team', '', '', 'have', 'still', 'received', 'the', 'email', 'notification', 'reminder', 'to', 'approve', 'prs', 'daily', 'for', 'the', 'ones', 'which', 'have', 'already', 'approved', 'and', 'there', 'are', 'no', 'any', 'pending', 'prs', 'left', 'to', 'approve', 'in', 'me', 'also', 'pos', 'have', 'been', 'raised', 'by', 'purchasing', 'team', '', '', 'kindly', 'review', 'the', 'system', 'and', 'fix', 'for', 'me'], ['slow', 'erp', 'help', 'erp', 'is', 'very', 'slow', 'with', 'disconnections', 'please', 'resolve', 'at', 'the', 'earliest'], ['erp', 'slow', 'down', 'few', 'locations', 'impacted', 'at', 'least', 'eu', 'erp', 'slow', 'down', 'few', 'locations', 'impacted', 'at', 'least', 'eu'], ['backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg', 'backup', 'r', 'computer', 'lasplant', 'pfjwinbg', 'ljtzbdqg'], ['blank', 'call', 'blank', 'call'], ['log', 'in', 'for', 'erp', 'is', 'out', 'of', 'order', 'log', 'in', 'for', 'erp', 'is', 'out', 'of', 'order'], ['pls', 'help', 'to', 'run', 'out', 'dn', 'against', 'sto', 'pcs', 'customer', 'need', 'them', 'urgently', 'pls', 'help', 'to', 'run', 'out', 'dn', 'against', 'sto', 'pcs', 'customer', 'need', 'them', 'urgently'], ['eu', 'tool', 'no', 'longer', 'works', 'eu', 'tool', 'is', 'not', 'working', 'eu', 'tool', 'no', 'longer', 'works'], ['urgent', 'please', 'reactive', 'user', 'id', 'dudyhuyv', 'hello', 'all', 'dudyhuyv', 'is', 'not', 'active', 'in', 'password', 'management', 'tool', 'and', 'australia', 'can', 'access', 'to', 'windows', 'please', 'can', 'you', 'check', 'and', 'do', 'what', 'is', 'necessary', 'thx', 'sinc', 'res', 'salutations', 'best'], ['unable', 'to', 'open', 'eps', 'files', 'unable', 'to', 'open', 'eps', 'files'], ['netpath', 'running', 'from', 'hostname', 'is', 'having', 'an', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', 'received', 'solarwind', 'alert', 'am', 'on', 'et', '', '', 'netpath', 'running', 'from', 'hostname', 'is', 'having', 'an', 'issue', 'reaching', 'portal', 'microsoftonline', 'com', '', '', 'attached', 'is', 'the', 'screen', 'shot'], ['pw', 'reset', 'for', 'erp', 'user', 'name', 'piltzrnj', 'thank', 'you', 'dv', 'note', 'with', 'kind', 'regards', 'with', 'best'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['collaboration', 'platform', 'not', 'available', 'no', 'internet', 'access', 'collaboration', 'platform', 'not', 'available', 'no', 'internet', 'access'], ['request', 'authorization', 'hello', '', '', 'requesting', 'you', 'to', 'provide', 'me', 'an', 'authorization', 'for', 'the', 'below', 'mentioned', 'programdnty', '', '', '', '', 'best'], ['bex', 'error', 'wgpimkle', 'kijhcwur', 'mail', '', 'am', '', 'nwfodmhc', 'exurcwkm', '', 'rad', 'bex', 'error', '', '', 'help', 'desk', '', '', '', 'got', 'below', 'error', 'message', 'when', 'ran', 'rrmx', 'through', 'sid', '', 'please', 'fix', 'the', 'issue'], ['eu', 'tool', 'does', 'not', 'work', 'eu', 'tool', 'does', 'not', 'work'], ['job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkwin', 'search', 'server', 'prod', 'daily', 'failed', 'in', 'job', 'scheduler', 'at'], ['reincker', 'wzs', 'department', 'kentip', 'pc', 'doesn’t', 'start', 'up', 'after', 'restarting', 'or', 'it', 'stops', 'during', 'the', 'start-up', 'sequence,', 'please', 'check,', 'thank', 'you'], ['erp', 'is', 'too', 'slow', 'name', 'zheqafyo', 'bqirpxag', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'erp', 'is', 'too', 'slow'], ['users', 'from', 'various', 'department', 'are', 'complaining', 'slow', 'response', 'in', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'users', 'from', 'various', 'department', 'are', 'complaining', 'slow', 'response', 'in', 'erp', 'engineering', 'tool', 'engineering', 'tool', 'etc', 'and', 'unable', 'to', 'work'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['circuit', 'outage', 'usa', 'plant', 'company', 'secondary', 'vpn', 'is', 'down', 'since', 'pm', 'on', 'et', 'site', 'up', 'on', 'primary', 'global', 'telecom', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'on', 'et', '', '', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'na', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['erp', 'sid', 'system', 'down', 'hi', 'plant', 'encounter', 'erp', 'sid', 'system', 'down', 'due', 'to', 'this', 'issue', 'we', 'or', 'not', 'able', 'to', 'fulfill', 'local', 'orders', 'for', 'today', 'it', 'depend', 'on', 'how', 'fast', 'the', 'system', 'will', 'be', 'up', 'have', 'raise', 'it', 'ticket', 'inc', 'nsdwd', 'mwdddlleh', 'operation', 'supervisor', 'company', 'distribution', 'services', 'of', 'asia', 'pte', 'ltd', 'email'], ['unable', 'to', 'check', 'pay', 'slip', 'in', 'hr', 'tool', 'unable', 'to', 'check', 'pay', 'slip', 'in', 'hr', 'tool'], ['erp', 'id', 'fenthgh', 'erp', 'password', 'was', 'forgotten', 'it', 'erp', 'id', 'fenthgh', 'erp', 'password', 'was', 'forgotten', 'and', 'self', 'service', 'system', 'password', 'was', 'forgotten', 'too', 'even', 'worse', 'all', 'systems', 'were', 'locked', 'do', 'me', 'fever', 'to', 'unlock', 'them'], ['erp', 'runs', 'very', 'slow', 'in', 'apac', 'agents', 'have', 'to', 'wait', 'minutes', 'for', 'each', 'operation', 'of', 'erp'], ['erp', 'response', 'time', 'is', 'very', 'slow', 'as', 'we', 'found', 'that', 'the', 'erp', 'response', 'time', 'speed', 'is', 'very', 'slow', 'this', 'morning', 'please', 'help', 'chek', 'and', 'fix', 'this', 'issue', 'aerp'], ['plant', 'erp', 'sid', 'system', 'slow', 'hi', 'it', 'team', '', '', 'kindly', 'please', 'assist', 'to', 'check', 'plant', 'encounter', 'erp', 'sid', 'system', 'slow', 'between', 'to', 'daily'], ['pls', 'help', 'to', 'check', 'erp', 'due', 'to', 'slow', 'response', 'thx', 'pls', 'help', 'to', 'check', 'erp', 'due', 'to', 'slow', 'response', 'thx'], ['job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['hostname', 'and', 'fence', 'hostname', 'and', 'fence', 'are', 'at', 'instead', 'of'], ['a', 'termination', 'for', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'has', 'been', 'approved', 'a', 'termination', 'for', 'hwddwwd', 'wdflefrong', 'wdnwe', 'effective', 'has', 'been', 'approved'], ['job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'bkwin', 'hostname', 'inc', 'failed', 'in', 'job', 'scheduler', 'at'], ['terminate', 'action', 'for', 'svfuhlnx', 'aqrzskpg', 'has', 'completed', 'termination', 'for', 'svfuhlnx', 'aqrzskpg', 'effective', 'has', 'been', 'approved'], ['old', 'emails', 'how', 'do', 'access', 'my', 'earlier', 'work', 'emails', '', 'dell', 'desktop', 'doesn', 'pull', 'up', 'mails', 'older', 'than'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'backup', 'statistics', '', '', 'session', 'queuing', 'time', 'hours', '', '', 'completed', 'disk', 'agents', '', 'failed', 'disk', 'agents', '', 'aborted', 'disk', 'agents', '', '', 'disk', 'agents', 'total', '', '', 'completed', 'media', 'agents', '', 'failed', 'media', 'agents', '', 'aborted', 'media', 'agents', '', '', 'media', 'agents', 'total', '', '', 'mbytes', 'total', 'mb', '', 'used', 'media', 'total', '', 'disk', 'agent', 'errors', 'total', '', '', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'hot', 'failed', 'in', 'job', 'scheduler', 'at', 'major', 'lib', 'drive', 'time', 'pm', '', 'dev', 'rmt', '', 'cannot', 'write', 'to', 'device', 'o', 'error', '', '', 'job', 'sid', 'hot', 'failed', 'in', 'job', 'scheduler', 'at'], ['job', 'sid', 'hot', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hot', 'failed', 'in', 'job', 'scheduler', 'at'], ['windows', 'password', 'reset', 'request', 'windows', 'password', 'reset', 'request'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'log', 'in', 'to', 'ethics', 'unable', 'to', 'log', 'in', 'to', 'ethics'], ['query', 'to', 'send', 'skype', 'meeting', 'query', 'to', 'send', 'skype', 'meeting'], ['unable', 'to', 'connect', 'to', 'home', 'printer', 'unable', 'to', 'connect', 'to', 'home', 'printer'], ['folder', 'access', 'required', 'dear', 'it', 'team', 'please', 'usa', 'read', 'and', 'write', 'access', 'on', 'the', 'following', 'two', 'folders', 'to', 'me', 'dnqdqld', 'hostname', 'departments', 'personal', 'file', 'hostname', 'departments', 'personal', 'hostname', 'departments', 'pesonal', 'file', 'hostname', 'departments', 'pesonal'], ['ticket', 'update', 'implant', 'ticket', 'update', 'implant'], ['outlook', 'issue', 'ms', 'crm', 'dynamics', 'outlook', 'issue', 'ms', 'crm', 'dynamics'], ['please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'to', 'printer', 'cl', 'ps', 'per', 'lpoebzsc', 'grknswyo', 'please', 'usa', 'sasqkjqh', 'lwddkqddq', 'access', 'to', 'printer', 'cl', 'ps', 'per', 'lpoebzsc', 'grknswyo'], ['password', 'update', 'query', 'password', 'update', 'query'], ['vpn', 'query', 'for', 'user', 'vvtdfettc', 'vpn', 'query', 'for', 'user', 'vvtdfettc'], ['collaboration', 'platform', 'industrial', 'good', 'afternoon', '', 'can', 'you', 'please', 'add', 'new', 'library', 'heading', 'talent', 'review', 'to', 'the', 'library', 'area', 'can', 'you', 'also', 'remove', 'kristina', 'cope', 'as', 'the', 'owner', 'of', 'this', 'portion', 'of', 'this', 'page', 'please', 'use', 'myself', 'mtdyuhki', 'fdnrxaci', 'and', 'ifblxjmc', 'dyrgfwbm', 'to', 'this', 'page'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['erp', 'station', 'in', 'castings', 'is', 'not', 'working', 'erp', 'station', 'in', 'castings', 'is', 'not', 'working'], ['dalmdwppi', 'pc', 'in', 'castings', 'is', 'not', 'working', 'dalmdwppi', 'pc', 'in', 'castings', 'is', 'not', 'working'], ['no', 'boot', 'no', 'boot'], ['my', 'outlook', 'doesn', 'work', 'in', 'last', 'fourth', 'weeks', 'have', 'same', 'problem', 'start', 'outlook', 'outlook', 'is', 'opening', 'but', 'it', 'doesn', 'open', 'it', 'was', 'times', 'fixed', 'by', 'our', 'it', 'service', 'technician', 'but', 'it', 'help', 'always', 'for', 'one', 'week', 'and', 'than', 'it', 'appeares', 'again', 'please', 'help', 'me', 'to', 'fix', 'it', 'my', 'phone', 'number', 'is', 'will', 'be', 'at', 'home', 'tomorrow', 'afternoon', 'from'], ['erp', 'sid', 'account', 'lock', 'out', 'erp', 'sid', 'account', 'lock', 'out'], ['not', 'able', 'to', 'get', 'delivery', 'to', 'create', 'for', 'mm', 'i', 'believe', 'apo', 'is', 'out', 'of', 'synch', 'and', 'cif', 'programdnty', 'need', 'to', 'be', 'run', 'the', 'sto', 'was', 'created', 'inventory', 'received', 'at', 'this', 'afternoon', 'next', 'bop', 'job', 'is', 'not', 'scheduled', 'until', 'after', 'pm', 'this', 'sto', 'needs', 'to', 'ship', 'before', 'then'], ['ticket', 'update', 'on', 'inplant', 'ticket', 'update', 'on', 'inplant'], ['quoting', 'engine', 'error', 'quoting', 'engine', 'error'], ['password', 'reset', 'reset', 'outlook', 'password', 'for', 'theecanse', 'wdleell', 'his', 'windows', 'logon', 'password', 'is', 'different', 'since', 'he', 'doesn', 'log', 'on', 'to', 'company'], ['guest', 'internet', 'access', 'i', 'am', 'having', 'trouble', 'with', 'getting', 'internet', 'guest', 'access', 'for', 'the', 'person', 'below', 'skads', 'wdlmdwwck', 'technician', 'engineering', 'usa', 'plant'], ['files', 'on', 'servers', 'not', 'available', 'files', 'cannot', 'be', 'opened', 'hostname', 'details', 'provided', 'when', 'trying', 'to', 'open', 'file', 'only', 'states', 'the', 'file', 'is', 'corrupt', 'and', 'cannot', 'be', 'opened', 'multiple', 'files', 'noticed', 'since', 'at', 'plant', 'have', 'become', 'unavailable', 'confirmation', 'of', 'unavailable', 'files', 'from', 'different', 'departments', 'no', 'mail', 'of', 'notice', 'regarding', 'any', 'possible', 'server', 'changes'], ['modem', 'in', 'the', 'idg', 'area', 'is', 'down', 'at', 'the', 'usa', 'plant', 'contact', 'summary', 'modem', 'in', 'the', 'idg', 'area', 'is', 'down', 'at', 'the', 'usa', 'plant'], ['interface', 'serial', 'and', 'serial', 'connection', 'to', 'usa', 'plant', 'is', 'down', 'since', 'pm', 'et', 'on', 'interface', 'serial', 'and', 'serial', 'connection', 'to', 'usa', 'plant', 'is', 'down', 'since', 'pm', 'et', 'on'], ['ad', 'account', 'locked', 'out', 'ad', 'account', 'locked', 'out'], ['multiple', 'location', 'across', 'europe', 'went', 'down', 'at', 'et', 'on', 'please', 'find', 'the', 'attached', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', 'on', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'yes', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'no', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['citrix', 'access', 'i', 'am', 'getting', 'certificate', 'error', 'trying', 'to', 'access', 'hfyujqti', 'jdcbiezxs', 'see', 'attached', 'hddwdw', 'lwdwdwdr'], ['erp', 'sid', 'password', 'reset', 'request', 'erp', 'sid', 'password', 'reset', 'request'], ['symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'and', 'deleted', 'cookies', 'symantec', 'pop', 'query', 'ran', 'quick', 'scan', 'and', 'deleted', 'cookies'], ['access', 'to', 'http', 'bddjwwwdw', 'for', 'axcbfuqo', 'yiagubvh', 'axcbfuqo', 'yiagubvh', 'no', 'longer', 'has', 'access', 'to', 'http', 'bddjwwwdw', 'he', 'needs', 'access', 'please', 'see', 'the', 'attached', 'email', 'from', 'gilles', 'good', 'morning', 'there', 'is', 'very', 'long', 'time', 'that', 'did', 'not', 'contacted', 'the', 'team', 'and', 'you', 'am', 'in', 'india', 'for', 'weeks', 'and', 'work', 'with', 'the', 'team', 'using', 'the', 'new', 'equipment', 'need', 'your', 'help', 'because', 'am', 'not', 'anymore', 'able', 'to', 'be', 'connected', 'application', 'where', 'was', 'able', 'to', 'make', 'consultation', 'received', 'this', 'following', 'message', 'can', 'you', 'help', 'to', 'have', 'this', 'connection', 'working', 'again', 'have', 'also', 'the', 'competitive', 'databse', 'but', 'this', 'is', 'still', 'working', 'well'], ['unable', 'to', 'connect', 'to', 'outlook', 'unable', 'to', 'connect', 'to', 'outlook'], ['error', 'with', 'customization', 'engineering', 'tool', 'erp', 'plam', 'and', 'company', 'tools', 'hi', 'team', 'need', 'your', 'help', 'with', 'two', 'error', 'the', 'customization', 'the', 'engineering', 'tool', 'the', 'two', 'errors', 'attachment', 'in', 'ticket', 'erro', 'computer', 'lpawty', 'diwhdd', 'jwddkwor', 'and', 'lpawty', 'gsotqxfi', 'lidunfjg', 'if', 'you', 'have', 'more', 'doubts', 'please', 'contatc', 'me'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['mobile', 'device', 'activation', 'company', 'owned', 'summary', 'need', 'phone', 'to', 'connect', 'to', 'outlook'], ['outlook', 'outage', 'hello', 'is', 'outlook', 'down', 'can', 'seem', 'to', 'connect', 'on', 'laptop', 'remotely', 'please', 'advise', 'sent', 'from', 'my', 'iphone', 'dxwuovgs', 'lmuxizht', 'sr', 'sales', 'engineer'], ['urgent', 'please', 'create', 'tax', 'code', 'in', 'ccyks', 'please', 'create', 'tax', 'code', 'in', 'ccyks', 'this', 'is', 'really', 'urgent', 'as', 'we', 'have', 'to', 'post', 'vat', 'inwarehouse', 'tool', 'by', 'the', 'end', 'of', 'the', 'week', 'background', 'there', 'was', 'an', 'export', 'of', 'goods', 'from', 'this', 'location', 'to', 'germany', 'from', 'plant', 'to', 'plant', 'delivery', 'sto', 'vat', 'inwarehouse', 'tool', 'is', 'not', 'posted', 'in', 'finance'], ['crm', 'access', 'issue', 'hi', 'poland', 'cannot', 'log', 'into', 'crm', 'all', 'users', 'in', 'poland'], ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at'], ['email', 'license', 'to', 'check', 'on', 'email', 'to', 'angen', 'license', 'for', 'production', 'leads', 'dwwkd', 'wdjwd', 'usa', 'wdnwk', 'wdwmd', 'wdkfww', 'usa', 'usa', 'wdkwdwd', 'whwdiuw', 'wdnwwl', 'kwfwdw'], ['can', 'not', 'sign', 'into', 'crm', 'or', 'single', 'sign', 'on', 'portal', 'on', 'the', 'hub', 'can', 'not', 'sign', 'into', 'crm', 'or', 'single', 'sign', 'on', 'portal', 'on', 'the', 'hub', 'it', 'states', 'my', 'password', 'is', 'not', 'correct', 'this', 'is', 'the', 'password', 'use', 'for', 'all', 'other', 'access', 'points', 'in', 'company'], ['password', 'reset', 'password', 'reset'], ['calibration', 'system', 'printer', 'printer', 'dymo', 'labelwriter', 'turbo', 'is', 'not', 'working', 'can', 'print', 'calibration', 'label', 'for', 'our', 'gages'], ['unable', 'to', 'change', 'password', 'unable', 'to', 'change', 'password'], ['not', 'able', 'to', 'login', 'to', 'sso', 'one', 'team', 'it', 'never', 'worked', 'not', 'able', 'to', 'login', 'to', 'sso', 'one', 'team', 'it', 'never', 'worked', '', 'refer', 'ticket', 'ticket', 'no'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['pc', 'rqxw', 'setup', 'for', 'remote', 'company', 'use', 'cannot', 'be', 'logged', 'in', 'to', 'it', 'appears', 'the', 'domain', 'membership', 'is', 'broken', 'pc', 'rqxw', 'setup', 'for', 'remote', 'company', 'use', 'cannot', 'be', 'logged', 'in', 'to', 'it', 'appears', 'the', 'domain', 'membership', 'is', 'broken'], ['bdwdwarbara', 'needs', 'the', 'permissions', 'to', 'save', 'to', 'the', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation', 'bdwdwarbara', 'needs', 'the', 'permissions', 'to', 'save', 'to', 'the', 'folder', 'srvlavstorage', 'toolroom', 'tooling', 'documentation'], ['needs', 'access', 'to', 'server', 'hostname', 'drafting', 'itar', 'to', 'the', 'user', 'wdwddw', 'wwdyuan', 'yqddquanw', 'read', 'only', 'access', 'the', 'name', 'of', 'the', 'employee', 'who', 'needs', 'access', 'is', 'wdwddw', 'wwdyuan', 'yqddquanw', 'employee', 'number', 'the', 'file', 'is', 'located', 'on', 'our', 'operations', 'drive', 'drive', 'then', 'sub', 'file', 'drafting', 'then', 'sub', 'file', 'itar', 'this', 'was', 'set', 'up', 'by', 'our', 'own', 'it', 'guy', 'before', 'he', 'was', 'laid', 'off'], ['need', 'access', 'to', 'ess', 'need', 'access', 'to', 'ess'], ['engineering', 'tool', 'installation', 'engineering', 'tool', 'installation'], ['eu', 'tool', 'for', 'plant', 'plant', 'is', 'working', 'very', 'slowly', 'please', 'help', 'here', 'immediately', 'thanks', 'eu', 'tool', 'for', 'plant', 'plant', 'is', 'working', 'very', 'slowly', 'please', 'help', 'here', 'immediately'], ['crm', 'issue', 'ms', 'ouutlook', 'issue', 'crm', 'issue', 'ms', 'outlook', 'issue'], ['user', 'needs', 'help', 'to', 'login', 'to', 'the', 'mii', 'user', 'needs', 'help', 'to', 'login', 'to', 'the', 'mii'], ['eu', 'tool', 'pdv', 'batch', 'management', 'does', 'not', 'work', 'working', 'with', 'the', 'systems', 'is', 'almost', 'impossible', 'the', 'processing', 'of', 'orders', 'is', 'no', 'longer', 'possible', 'at', 'the', 'moment', '', 'das', 'arbeiten', 'mit', 'den', 'systemen', 'ist', 'fast', 'nicht', 'glich', 'das', 'abarbeiten', 'von', 'auftr', 'gen', 'ist', 'zur', 'zeit', 'nicht', 'mehr', 'glich'], ['xvwchsdg', 'pladjmxt', 'employee', 'termination', 'pn', 'assume', 'that', 'mr', 'aurwddwacher', 'will', 'leave', 'the', 'company', 'or', 'retire', 'at', 'the', 'end', 'of', 'october,', 'will', 'retire', 'in', 'the', 'process', 'of', 'closing', 'the', 'accounts', 'ticketing', 'tool', 'template', 'employee', 'status', 'termination,', 'a', 'so-called', 'delegation', 'can', 'be', 'specified', 'under', 'special', 'instuctrion', 'so', 'that', 'the', 'person', 'to', 'whom', 'the', 'post', 'office', 'box', 'was', 'delegated', 'has', 'access', 'for', 'a', 'certain', 'period', 'of', 'time,', 'the', 'submission', 'is', 'usually', 'filled', 'out', 'by', 'the', 'superior', 'or', 'the', 'responsible', 'hr', 'department', 'and', 'should', 'be', 'discussed', 'with', 'both', 'of', 'them'], ['please', 'reset', 'my', 'sid', 'password', 'userid', 'waldjrrm'], ['user', 'needs', 'help', 'to', 'login', 'to', 'the', 'collaboration', 'platform', 'site', 'user', 'needs', 'help', 'to', 'login', 'to', 'the', 'collaboration', 'platform', 'site', '', 'provided', 'the', 'user', 'the', 'email', 'id', 'and', 'password', 'after', 'verifying', 'the', 'user', 'details', '', 'advised', 'the', 'user', 'to', 'try', 'and', 'login', 'to', 'the', 'collaboration', 'platform', '', 'user', 'confirmed', 'he', 'is', 'now', 'able', 'to', 'login', 'to', 'the', 'collaboration', 'platform', '', 'issue', 'resolved'], ['account', 'lockout', 'account', 'lockout'], ['outlook', 'table', 'view', 'incorrect', 'outlook', 'table', 'view', 'incorrect'], ['computer', 'problem', 'dear', 'was', 'not', 'able', 'to', 'go', 'on', 'internet', 'since', 'this', 'morning', 'an', 'itbof', 'germany', 'was', 'not', 'able', 'to', 'log', 'in', 'we', 'have', 'tried', 'so', 'much', 'that', 'the', 'pasword', 'is', 'locked', 'have', 'the', 'message', 'your', 'password', 'has', 'expired', 'and', 'must', 'be', 'changed', 'please', 'forward', 'me', 'the', 'new', 'password'], ['design', 'pane', 'not', 'showing', 'up', 'in', 'analysis', 'for', 'ms', 'excel', 'hello', '', '', 'when', 'use', 'analysis', 'for', 'ms', 'excel', 'now', 'can', 'see', 'the', 'design', 'pane', 'even', 'when', 'option', 'is', 'turned', 'on', 'refer', 'to', 'screenshot', 'was', 'able', 'to', 'see', 'design', 'pane', 'earlier', 'without', 'problem', 'the', 'only', 'major', 'change', 'on', 'my', 'pc', 'is', 'recently', 'upgraded', 'to', 'office', 'suite', 'can', 'you', 'please', 'help', 'bring', 'my', 'design', 'pane', 'back'], ['browser', 'issue', 'flash', 'player', 'and', 'addins', 'issue', 'browser', 'issue', 'flash', 'player', 'and', 'addins', 'issue'], ['not', 'able', 'to', 'do', 'pgi', 'del', 'customer', 'vale', 'co', 'account', 'assignments', 'have', 'different', 'profit', 'centers', 'not', 'able', 'to', 'do', 'pgi', 'for', 'delivery', 'customer', 'vale', 'td', 'order', '', 'itens', 'pieces', 'pieces', 'pieces', 'pieces', '', 'urgente', 'uacyltoe', 'hxgaycze', 'for', 'customer', '', '', 'error', '', 'co', 'account', 'assignments', 'have', 'different', 'profit', 'centers', '', 'message', 'no', 'bk', '', '', 'diagnosis', '', 'you', 'entered', 'multiple', 'co', 'account', 'assignments', 'objects', 'assigned', 'to', 'different', 'profit', 'centers', 'in', 'document', 'item', 'however', 'all', 'co', 'account', 'assignments', 'objects', 'with', 'profit', 'center', 'assignments', 'must', 'be', 'assigned', 'to', 'the', 'same', 'profit', 'center', '', '', 'procedure', '', 'if', 'the', 'message', 'is', 'an', 'error', 'message', 'check', 'and', 'change', 'the', 'co', 'account', 'assignments', 'objects', 'so', 'that', 'all', 'objects', 'with', 'profit', 'center', 'assignments', 'are', 'assigned', 'to', 'the', 'same', 'profit', 'center', '', '', 'in', 'customizing', 'you', 'can', 'change', 'this', 'message', 'from', 'an', 'error', 'message', 'to', 'warning', 'message', 'notification', 'or', 'you', 'can', 'deactivate', 'it', 'completely', 'to', 'do', 'so', 'see', 'the', 'implementation', 'guide', 'img', 'step', 'under', 'controlling', 'general', 'change', 'message', 'control', 'message', 'class', 'bk', 'message'], ['erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset'], ['bex', 'analyzer', 'report', 'not', 'working', 'i', 'open', 'bex', 'analyzer', 'and', 'connect', 'to', 'sid', '', 'try', 'to', 'open', 'report', 'xhlg', 'pmm', 'atm', 'product', 'management', 'master', 'at', '', 'the', 'window', 'to', 'select', 'values', 'for', 'variables', 'appears', 'no', 'available', 'variants', 'data', 'provider', 'is', 'set', 'to', 'for', 'finance', '', 'click', 'ok', 'the', 'system', 'sits', 'and', 'does', 'nothing', 'eventually', 'get', 'microsoft', 'excel', 'not', 'responding', 'error', '', '', 'is', 'there', 'something', 'wrong', 'with', 'the', 'system', 'is', 'there', 'something', 'wrong', 'with', 'my', 'settings', '', '', 'need', 'to', 'pull', 'reports', 'for', 'an', 'external', 'auditor', 'so', 'it', 'is', 'rather', 'urgent', 'that', 'get', 'this', 'fixed', 'quickly'], ['cannot', 'print', 'on', 'usa', 'printer', 'prtqx', 'any', 'longer', 'please', 'fix', 'cannot', 'print', 'on', 'usa', 'printer', 'prtqx', 'any', 'longer', 'please', 'fix'], ['unable', 'to', 'print', 'from', 'the', 'printer', 'qc', 'unable', 'to', 'print', 'from', 'the', 'printer', 'qc'], ['i', 'need', 'to', 'have', 'rckf', 'grind', 'added', 'to', 'my', 'microsoft', 'email', 'no', 'one', 'has', 'helped', 'me', 'with', 'this', 'am', 'not', 'sure', 'why', 'this', 'was', 'closed', 'out', 'when', 'had', 'received', 'no', 'help'], ['user', 'unable', 'to', 'connect', 'at', 'the', 'companysecure', 'at', 'office', 'user', 'unable', 'to', 'connect', 'at', 'the', 'companysecure', 'at', 'office', 'checked', 'the', 'network', 'connection', 'settings', 'enabled', 'the', 'network', 'connections', 'updated', 'the', 'network', 'drivers', 'updated', 'the', 'bios', 'on', 'the', 'pc', 'restarted', 'the', 'pc', 'user', 'iformed', 'he', 'is', 'ina', 'meeting', 'and', 'will', 'call', 'tomorrow'], ['barcode', 'over', 'word', 'label', 'printing', 'i', 'want', 'to', 'print', 'a', 'number', 'letter', 'in', 'the', 'label', 'printing', 'as', 'a', 'barcode', 'over', 'word', 'label', 'printing', 'with', 'the', 'font', 'cosid', 'this', 'is', 'not', 'possible', 'that', 'i', 'can', 'read', 'it', 'with', 'a', 'scan', 'gun', 'phone'], ['job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'hotf', 'failed', 'in', 'job', 'scheduler', 'at'], ['folder', 'access', 'required', 'dear', 'it', 'team', 'please', 'usa', 'read', 'and', 'write', 'access', 'on', 'the', 'following', 'two', 'folders', 'to', 'me', 'webrgers', 'hostname', 'departments', 'personal', 'file', 'hostname', 'departments', 'personal', 'hostname', 'departments', 'pesonal', 'file', 'hostname', 'departments', 'pesonal'], ['erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset', 'erp', 'sid', 'account', 'unlock', 'and', 'password', 'reset'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'after', 'login', 'all', 'network', 'drives', 'are', 'missing', 'please', 'set', 'user', 'gogtyektdgwo', 'correctly', 'after', 'login', 'all', 'network', 'drives', 'are', 'missing'], ['called', 'in', 'to', 'get', 'in', 'touch', 'with', 'ecwtrjnq', 'jpecxuty', 'called', 'in', 'to', 'get', 'in', 'touch', 'with', 'ecwtrjnq', 'jpecxuty'], ['vip', 'account', 'unlock', 'vip', 'account', 'unlock'], ['support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr', 'support', 'r', 'roboworker', 'sandstrahlen', 'xwirzvda', 'okhyipgr'], ['setup', 'new', 'ws', 'lndypaqg', 'dhqwtcsr', 'setup', 'new', 'ws', 'lndypaqg', 'dhqwtcsr'], ['ticket', 'update', 'for', 'ticket', 'no', 'ticket', 'update', 'for', 'ticket', 'no'], ['circuit', 'outage', 'india', 'admin', 'core', 'sw', 'is', 'down', 'at', 'am', 'et', 'on', 'circuit', 'outage', 'india', 'admin', 'core', 'sw', 'is', 'down', 'at', 'am', 'et', 'on'], ['circuit', 'outage', 'company', 'ap', 'ind', 'telecom', 'vendor', 'dmvpn', 'rtr', 'is', 'down', 'since', 'am', 'et', 'site', 'is', 'up', 'telecom', 'vendor', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'yes', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'am', 'et', '', '', 'scheduled', 'maintenance', 'power', 'no', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'no', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'yes', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'yes', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'yes', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', '', '', 'notified', 'gsc', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['login', 'issue', 'login', 'issue', '', 'verified', 'user', 'details', 'employee', 'and', 'manager', 'name', '', 'checked', 'the', 'user', 'name', 'in', 'ad', 'and', 'unlocked', 'the', 'account', '', 'advised', 'the', 'user', 'to', 'login', 'and', 'check', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['telephone', 'in', 'the', 'meeting', 'room', 'telephone', 'number', 'in', 'germany', 'the', 'ringtone', 'does', 'not', 'work', 'if', 'someone', 'calls', 'from', 'outside', 'then', 'the', 'phone', 'doesn’t', 'ring,', 'please', 'take', 'a', 'look,', 'thank', 'you'], ['unable', 'to', 'launch', 'outlook', 'unable', 'to', 'launch', 'outlook'], ['erp', 'access', 'issue', 'system', 'sid', 'sid', 'sid', 'sid', 'hrp', 'other', 'pm', '', '', 'enter', 'user', 'id', 'of', 'user', 'having', 'the', 'issue', 'mathes', '', '', 'transaction', 'code', 'the', 'user', 'needs', 'or', 'was', 'working', 'with', '', '', 'describe', 'the', 'issue', 'please', 'reset', 'the', 'password', 'if', 'required', 'please', 'unlock', 'the', 'id', '', '', 'if', 'you', 'are', 'getting', 'not', 'authorized', 'message', 'recreate', 'the', 'condition', 'then', 'do', 'nsu', 'and', 'attach', 'result', 'to', 'the', 'ticketing', 'tool', 'ticket', '', '', 'provide', 'access', 'the', 'same', 'as', 'this', 'other', 'user'], ['erp', 'account', 'locked', 'dear', 'team', '', '', 'my', 'erp', 'account', 'got', 'locked', 'because', 'of', 'wrong', 'password', 'attempt', '', '', 'please', 'support', 'to', 'get', 'unlock', 'the', 'same'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['erp', 'printing', 'production', 'order', 'printer', 'mp', 'replacement', 'production', 'order', 'printer', 'mp', 'is', 'being', 'replaced', 'remove', 'rerouting', 'from', 'mp', 'to', 'mp', 'on', 'erp', 'systems', 'printer', 'replacement', 'you', 'will', 'need', 'to', 'have', 'power', 'network', 'connectivity', 'and', 'the', 'printer', 'installed', 'ready', 'before', 'ticketing', 'tool', 'ticket', 'can', 'be', 'opened', 'do', 'you', 'have', 'all', 'requirements', 'above', 'satisfied', 'yes', 'no', 'yes', 'replacing', 'erp', 'printer', 'name', 'g', 'hq', 'id', 'wy', 'mp', 'name', 'stays', 'the', 'same', 'ip', 'address', 'if', 'known', 'ip', 'stays', 'the', 'same', 'make', 'model', 'of', 'the', 'replacement', 'erp', 'printer', 'hp', 'laserjet', 'mf', 'what', 'erp', 'printer', 'do', 'you', 'currently', 'use', 'g', 'hq', 'id', 'wy', 'list', 'the', 'erp', 'system', 'the', 'printer', 'needs', 'to', 'be', 'defined', 'erp', 'sid', 'sid', 'sid', 'sid', 'sid', 'sid', 'hrp', 'plm', 'etc', 'hrp', 'sid', 'plm', 'same', 'as', 'old', 'mp', 'what', 'is', 'currently', 'printed', 'on', 'these', 'printers', 'from', 'erp', 'g', 'inwarehouse', 'tools', 'delivery', 'notes', 'etc', 'same', 'as', 'old', 'mp', 'location', 'of', 'install', 'country', 'city', 'building', 'floor', 'cubicle', 'same', 'as', 'old', 'mp', 'local', 'it', 'site', 'contact', 'name', 'xvwchsdg', 'pladjmxt', 'optional', 'printer', 'serial', 'number', 'printer', 'mac', 'address', 'serial', 'cnctft'], ['hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate', 'hostname', 'is', 'currently', 'experiencing', 'high', 'cpu', 'utilization', 'please', 'investigate'], ['hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query', 'hedjdbwlmut', 'nwwiebler', 'called', 'regarding', 'folder', 'access', 'query'], ['folder', 'read', 'and', 'write', 'access', 'needed', 'dear', 'colleagues', '', '', 'please', 'usa', 'access', 'to', 'this', 'path', 'for', 'me', 'for', 'read', 'and', 'write', 'access', '', '', 'corpbusinessdev', 'monthly', 'financial', 'review'], ['activation', 'of', 'outlook', 'email', 'access', 'on', 'iphone', 'device', 'for', 'awddmwdol', 'mwddwansuke', 'hi', 'please', 'usa', 'email', 'access', 'on', 'new', 'iphone', 'device', 'for', 'our', 'indirect', 'channel', 'manager', 'information', 'as', 'follow', 'email', 'manager', 'name', 'sqqqd', 'zlkmlwdwdade', 'and', 'nidqknwjktin', 'dewkiodshpande', 'is', 'this', 'device', 'company', 'owned', 'yes', 'is', 'this', 'replacement', 'of', 'your', 'old', 'device', 'yes', 'as', 'the', 'existing', 'old', 'samsung', 'phone', 'is', 'faulty'], ['access', 'issue', 'to', 'ess', 'hello', 'one', 'of', 'the', 'temperory', 'workmen', 'nxcfastp', 'xnwtyebg', 'whose', 'user', 'id', 'is', 'vvandwkjis', 'is', 'not', 'able', 'to', 'login', 'to', 'ess', 'as', 'his', 'user', 'id', 'locked', 'he', 'is', 'kiosk', 'user', 'please', 're', 'set', 'his', 'password', 'and', 'confirm'], ['probleme', 'mit', 'barcode', 'labels', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml', 'obleme', 'mit', 'barcode', 'labels', 'volume', 'format', 'zu', 'gro', 'vzqomdgt', 'jwoqbuml'], ['setup', 'new', 'ws', 'in', 'br', 'usalikfj', 'lfmpxbcn', 'setup', 'new', 'ws', 'in', 'br', 'usalikfj', 'lfmpxbcn'], ['the', 'monitor', 'on', 'our', 'measuring', 'machine', 'is', 'defective', 'good', 'morning', 'hkydrfdw', 'the', 'monitor', 'on', 'our', 'measuring', 'machine', 'is', 'defective', 'please', 'provide', 'a', 'replacement', 'monitor', 'at', 'short', 'notice', 'thank', 'you'], ['release', 'r', 'folder', 'applications', 'was', 'cut', 'please', 'release', 'again'], ['reinstall', 'eagl', 'from', 'scratch', 'device', 'chrashes', 'when', 'entering', 'stand', 'by', 'mode', 'reinstall', 'eagl', 'from', 'scratch', 'device', 'chrashes', 'when', 'entering', 'stand', 'by', 'mode'], ['restore', 'please', 'restore', 'the', 'complete', 'file', 'hostname', 'hr', 'fd', 'mitarbeiter', 'azubis', 'including', 'all', 'files', 'under', 'azubis', 'danke', 'viele', 'gr', 'trgqbeax', 'hfyzudql'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['printer', 'not', 'working', 'hi', 'it', '', '', 'please', 'help', 'to', 'resolve', 'our', 'sg', 'printer', 'problem', 'the', 'printer', 'is', 'fine', 'after', 'printer', 'technician', 'check', 'it', 'is', 'to', 'do', 'with', 'our', 'cable', 'and', 'server', 'ports', 'in', 'the', 'server', 'room', '', '', 'we', 'admin', 'have', 'no', 'knowledge', 'and', 'capability', 'to', 'handle', 'that', 'please', 'have', 'someone', 'to', 'help', 'aerp', '', '', '', 'best'], ['eu', 'tool', 'pls', 'and', 'wqw', 'are', 'working', 'very', 'slow', 'eu', 'tool', 'pls', 'and', 'wqw', 'are', 'working', 'very', 'slow'], ['write', 'rights', 'r', 'ksdvp', 'ce', 'head', 'write', 'rights', 'r', 'ksdvp', 'ce', 'head'], ['on', 'the', 'english', 'forms', 'we', 'are', 'printing', 'german', 'instead', 'of', 'english', 'there', 'was', 'change', 'in', 'bank', 'details', 'made', 'with', 'ticket', 'no', 'this', 'is', 'not', 'correctly', 'printing', 'on', 'the', 'english', 'forms', 'it', 'is', 'showing', 'the', 'correct', 'data', 'but', 'the', 'descriptions', 'are', 'in', 'german', 'example', 'bankverbindung', 'instead', 'of', 'bank', 'address', 'konto', 'nummer', 'instead', 'of', 'account', 'number', 'also', 'see', 'that', 'there', 'is', 'an', 'extra', 'text', 'being', 'printed', 'for', 'the', 'customers', 'bitte', 'beachten', 'sie', 'unsere', 'neue', 'bankverbindung', 'please', 'note', 'our', 'new', 'bank', 'account', 'details', 'only', 'the', 'english', 'version', 'should', 'print', 'on', 'the', 'english', 'documents', 'not', 'both', 'german', 'and', 'english'], ['eu', 'tool', 'jobs', 'again', 'not', 'running', 'please', 'help', 'immediately', 'released', 'orders', 'do', 'not', 'make', 'it', 'into', 'the', 'to', 'do', 'list', 'please', 'check', 'the', 'status', 'and', 'restart', 'the', 'system'], ['is', 'skype', 'down', 'i', 'am', 'not', 'able', 'to', 'get', 'into', 'skype', 'right', 'now', 'is', 'there', 'an', 'outage'], ['whenever', 'fill', 'in', 'any', 'amount', 'money', 'into', 'erp', 'it', 'show', 'me', 'only', 'rmb', 'finally', 'in', 'the', 'system', 'whenever', 'fill', 'in', 'any', 'amount', 'money', 'into', 'erp', 'it', 'show', 'me', 'only', 'rmb', 'finally', 'in', 'the', 'system', 'please', 'contact', 'withn', 'me', 'aerp', 'my', 'phone'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['sid', 'configair', 'server', 'responds', 'with', 'internal', 'server', 'error', 'in', 'case', 'of', 'any', 'other', 'logon', 'language', 'than', 'en', 'configair', 'server', 'responds', 'with', 'internal', 'server', 'error', 'in', 'case', 'of', 'any', 'other', 'logon', 'language', 'then', 'en', 'and', 'the', 'model', 'csewdwdwdndmill', 'is', 'used', 'the', 'issue', 'exists', 'in', 'erp', 'erp', 'system', 'sid', 'as', 'well', 'as', 'on', 'uacyltoe', 'hxgayczedistributor', 'tool', 'uacyltoe', 'hxgayczecompany', 'center', 'quality', 'environment', 'further', 'error', 'message', 'text', 'is', 'error', 'while', 'trying', 'to', 'invoke', 'the', 'method', 'java', 'util', 'list', 'iterator', 'of', 'null', 'object', 'loaded', 'from', 'local', 'variable', 'locallist', 'logon', 'language', 'en', 'is', 'ok', 'if', 'our', 'csscdddwsawdrill', 'model', 'is', 'used', 'all', 'language', 'seem', 'to', 'be', 'working', 'fine', 'but', 'once', 'the', 'user', 'changes', 'to', 'any', 'other', 'language', 'g', 'de', 'or', 'it', 'and', 'uses', 'the', 'model', 'csewdwdwdndmill', 'the', 'configig', 'air', 'system', 'responses', 'with', 'the', 'error', 'message', 'during', 'starting', 'process', 'of', 'configair', 'configurator'], ['job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'pp', 'eu', 'tool', 'netch', 'ap', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'create', 'delivery', 'urgent', 'plant', 'have', 'pcs', 'cannot', 'created', 'n', 'for', 'mm', 'our', 'customer', 'is', 'very', 'urgent', 'this', 'goods', '', 'would', 'you', 'please', 'help', 'sloved'], ['backup', 'data', 'dear', 'sir', '', 'by', 'mistake', 'one', 'of', 'the', 'folder', 'in', 'hostname', 'rk', 'has', 'been', 'deleted', '', 'requesting', 'you', 'to', 'retrieve', 'the', 'same', '', '', 'with', 'best'], ['sid', 'purchase', 'requisition', 'approval', 'issue', 'hi', 'it', 'team', '', '', 'cannot', 'approve', 'pr', 'via', 'the', 'link', 'provided', 'only', 'enable', 'to', 'approve', 'directly', 'in', 'erp', 'via', 'me', '', '', 'kindly', 'fix', 'for', 'me'], ['since', 'mesz', 'server', 'problems', 'qmsoft', 'not', 'applicable', 'since', 'mesz', 'server', 'problems', 'qmsoft', 'not', 'applicable'], ['ibm', 'pmrskr', 'problem', 'report', 'from', 'pwrhmc', 'hq', 'company', 'com', 'pm', 'problem', 'report', 'from', 'pwrhmc', 'hq', 'company', 'com', 'reporting', 'system', 'pwrhmc', 'machine', 'type', 'model', 'serial', 'ev', 'problem', 'number', 'error', 'description', 'management', 'console', 'to', 'fsp', 'bpa', 'or', 'bpc', 'failure', 'detected', 'last', 'occurred', 'pm', 'current', 'status', 'pmr', 'number', 'a', 'details'], ['reset', 'the', 'password', 'for', 'arsbtkvd', 'qieagkos', 'on', 'erp', 'production', 'erp', 'good', 'day', '', 'could', 'you', 'please', 'reset', 'password', 'for', 'erp'], ['not', 'able', 'to', 'add', 'lean', 'project', 'into', 'collaboration', 'platform', 'jkddwkwd', 'ngtr', 'assistant', 'manager', 'manufacturing', 'company', 'india', 'limited'], ['prints', 'business', 'client', 'request', 'access', 'to', 'get', 'prints', 'my', 'id', 'is'], ['can', 'log', 'in', 'ticketing', 'tool', 'gso', 'user', 'qzkyugce', 'etsmnuba', 'dondwdgj', 'can', 'log', 'on', 'the', 'ticketing', 'tool', 'the', 'system', 'display', 'the', 'user', 'and', 'password', 'invalid', 'could', 'you', 'work', 'on', 'this'], ['network', 'outage', 'cantabria', 'mecftgobusa', 'kenci', 'hard', 'down', 'since', 'pm', 'on', 'et', 'site', 'has', 'no', 'backup', 'circuit', 'what', 'type', 'of', 'outage', 'network', 'circuit', 'power', 'please', 'specify', 'what', 'type', 'of', 'outage', '', '', 'top', 'cert', 'site', 'no', 'yes', 'no', 'na', '', '', 'when', 'did', 'it', 'start', 'pm', 'on', 'et', '', '', 'scheduled', 'maintenance', 'power', 'na', 'yes', 'no', 'na', 'company', 'power', 'provider', 'power', '', '', 'scheduled', 'maintenance', 'network', 'na', 'yes', 'no', 'na', 'company', 'maint', 'yes', 'no', 'provider', 'maint', 'ticket', '', '', 'does', 'site', 'have', 'backup', 'circuit', 'no', 'yes', 'no', 'na', '', '', 'backup', 'circuit', 'active', 'na', 'yes', 'no', 'na', '', '', 'site', 'contact', 'notified', 'phone', 'email', 'na', 'yes', 'no', 'na', '', '', 'remote', 'dial', 'in', 'na', 'yes', 'no', 'na', '', '', 'equipment', 'reset', 'na', 'yes', 'no', 'na', '', '', 'verified', 'site', 'working', 'on', 'backup', 'circuit', 'na', 'yes', 'no', 'na', '', '', 'vendor', 'ticket', 'global', 'telecom', 'verizon', 'telecom', 'vendor', 'telecom', 'vendor', 'na', '', '', 'notified', 'gsc', 'na', 'yes', 'no', 'na', 'cert', 'started', 'yes', 'no', 'na', '', '', 'additional', 'diagnostics'], ['job', 'sid', 'stat', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'sid', 'stat', 'failed', 'in', 'job', 'scheduler', 'at'], ['mm', 'iak', 'urgent', 'kwddwdw', 'hudfefwe', 'am', 'nwfodmhc', 'exurcwkm', 'rxoynvgi', 'ntgdsehl', 'gzawrocy', 'shbgwxeparamdnty', 'fw', 'mm', 'iak', 'urgent', 'it', 'help', 'please', 'help', 'check', 'it', 'urgent', 'din', 'in', 'future', 'please', 'raise', 'such', 'issue', 'to', 'our', 'it', 'as', 'well', 'ap', 'logistics', 'manager', 'rxoynvgi', 'ntgdsehl', 'am', 'gzawrocy', 'shbgwxeparamdnty', 'johthryugftyson', 'hu', 'kmvwti', 'uaoyhcep', 're', 'mm', 'iak', 'hi', 'morning', 'this', 'issue', 'still', 'not', 'solve', 'yet', 'still', 'encounter', 'same', 'issue', 'the', 'net', 'weight', 'higher', 'than', 'gross', 'weight', 'net', 'weight', 'kgs', 'and', 'physical', 'gross', 'weight', 'kgs', 'but', 'in', 'erp', 'sid', 'vln', 'shown', 'it', 'is', 'correct', 'attached', 'for', 'your', 'reference', 'hi', 'morning', 'need', 'your', 'advice', 'on', 'this', 'issue', 'this', 'is', 'issue', 'happen', 'since', 'last', 'still', 'not', 'solve', 'yet', 'attached', 'email', 'flow', 'for', 'your', 'reference', 'ksjfye', 'fekfeealleh', 'operation', 'supervisor', 'email', 'pm', 'gzawrocy', 'shbgwxeparamdnty', 'kmvwti', 'uaoyhcep', 'rxoynvgi', 'ntgdsehl', 'aw', 'mm', 'iak', 'hello', 'it', 'done', 'have', 'nice', 'day', 'mit', 'freundlichen', 'gr', 'en', 'best'], ['the', 'note', 'which', 'was', 'always', 'printed', 'at', 'bottom', 'of', 'the', 'quotation', 'was', 'missing', 'please', 'help', 'to', 'put', 'it', 'back', 'please', 'see', 'attachment'], ['erp', 'locked', 'hello', 'my', 'user', 'id', 'yandfgs', 'please', 'help', 'to', 'unlock', 'it'], ['error', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'cannot', 'run', 'the', 'erp', 'sid', 'sa', 'zsd', 'mexico', 'inwarehouse', 'tool', 'extract', 'shows', 'an', 'error', '', 'best'], ['collaboration', 'platform', 'access', 'issue', 'first', 'name', 'trtgoywdd', 'last', 'name', 'povirttch', 'customer', 'job', 'title', 'sales', 'engineer', 'contact', 'email', 'address', 'vitalyst', 'reference', 'number', 'bbfa', 'was', 'bomsdgar', 'used', 'yes', 'description', 'of', 'problem', 'unable', 'to', 'access', 'collaboration', 'platform', 'site', 'if', 'this', 'problem', 'persists', 'contact', 'your', 'support', 'team', 'and', 'include', 'these', 'technical', 'details', 'correlation', 'id', 'sid', 'afd', 'ace', 'cfce', 'date', 'and', 'time', 'pm', 'user', 'issue', 'type', 'user', 'does', 'not', 'have', 'permissions', 'steps', 'taken', 'so', 'far', 'goes', 'to', 'the', 'hub', 'search', 'lagp', 'lagp', 'request', 'goes', 'to', 'form', 'click', 'on', 'blue', 'circle', 'access', 'denied', 'message', 'previously', 'had', 'access', 'to', 'this', 'site'], ['access', 'to', 'sid', 'i', 'need', 'access', 'to', 'sid', 'uacyltoe', 'hxgaycze', 'system', 'username', 'owenssdcl', 'supervisor', 'phjencfg', 'kwtcyazx', 'manager', 'vnhaycfo', 'smkpfjzv', 'wsjkbw', 'owwddwens', 'accounting', 'specialist'], ['no', 'authorization', 'in', 'apps', 'no', 'authorization', 'in', 'apps'], ['unable', 'to', 'log', 'in', 'to', 'erp', 'sid', 'unable', 'to', 'log', 'in', 'to', 'erp', 'sid'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['access', 'to', 'erp', 'sid', 'for', 'user', 'rgpvdhcm', 'mgvpabsj', 'access', 'to', 'erp', 'sid', 'for', 'user', 'rgpvdhcm', 'mgvpabsj'], ['folder', 'access', 'requested', 'for', 'hostname', 'zugriff', 'auf', 'verzeichnis', 'angefragt', '', 'folder', 'access', 'requested', 'hostname', '', '', 'benutzer', 'id', '', 'user', 'id', '', '', 'benutzer', 'die', 'position', 'titel', '', 'user', 'position', 'title', '', '', 'verzeichnis', '', 'folder', 'corpbusinessdev', 'monthly', 'financial', 'review', 'fy', 'october', '', '', 'art', 'des', 'zugriffs', '', 'type', 'of', 'access', 'read', 'only', 'or', 'full', 'control'], ['folder', 'access', 'request', 'summary', 'need', 'access', 'to', 'the', 'following', 'folder', 'for', 'our', 'financial', 'review', 'corpbusinessdev', 'monthly', 'financial', 'review', 'need', 'to', 'get', 'read', 'write', 'need', 'to', 'save', 'files', 'here', 'and', 'be', 'able', 'to', 'open', 'them'], ['unlocked', 'account', 'unlocked', 'account'], ['pricing', 'and', 'availability', 'look', 'up', 'in', 'dynamics', 'crm', 'not', 'working', 'the', 'attached', 'screenshot', 'is', 'from', 'ptljghyk', 'qhtvlrxe', 'she', 'looked', 'up', 'product', 'that', 'she', 'knows', 'we', 'have', 'the', 'screen', 'shows'], ['engineering', 'tool', 'not', 'able', 'to', 'update', 'new', 'customer', 'engineering', 'tool', 'not', 'able', 'to', 'update', 'new', 'customer'], ['unable', 'to', 'access', 'collaboration', 'platform', 'unable', 'to', 'access', 'collaboration', 'platform'], ['unable', 'to', 'open', 'engineering', 'tool', 'unable', 'to', 'open', 'engineering', 'tool'], ['permission', 'to', 'create', 'cost', 'centers', 'in', 'sid', 'erp', 'transaction', 'ks', 'i', 'no', 'longer', 'have', 'access', 'to', 'create', 'cost', 'centers', 'in', 'sid', 'only', 'sid', 'please', 'update', 'access', 'for', 'cost', 'center', 'creation', 'in', 'the', 'uacyltoe', 'hxgayczeing', 'system', 'sid', 'transaction', 'ks'], ['collaboration', 'platform', 'issue', 'summary', 'having', 'issues', 'with', 'collaboration', 'platform', 'unable', 'to', 'access', 'we', 'have', 'meetings', 'that', 'people', 'have', 'to', 'post', 'documents', 'to', 'the', 'library', 'and', 'are', 'not', 'able', 'to', 'access', 'when', 'will', 'it', 'be', 'fixed'], ['static', 'ip', 'address', 'it', 'has', 'been', 'requested', 'by', 'our', 'temporary', 'service', 'to', 'provide', 'them', 'with', 'static', 'ip', 'address', 'for', 'time', 'clock', 'that', 'will', 'be', 'hard', 'wired', 'in', 'can', 'you', 'provide', 'contact', 'summary', 'do', 'gear', 'the', 'request', 'for', 'static', 'ip', 'address', 'to', 'this', 'box', 'for', 'assistance'], ['collaboration', 'platform', 'system', 'not', 'working', 'the', 'collaboration', 'platform', 'system', 'is', 'not', 'working', 'multiple', 'users', 'report', 'getting', 'an', 'error', 'trying', 'to', 'open', 'any', 'company', 'collaboration', 'platform', 'com', 'website', 'this', 'greatly', 'affects', 'the', 'discount', 'process', 'as', 'we', 'cannot', 'access', 'any', 'request', 'or', 'update', 'approved', 'ones', 'the', 'error', 'message', 'which', 'pops', 'up', 'is', 'attached', 'this', 'affects', 'pozna', 'and', 'usa'], ['cannot', 'get', 'my', 'usb', 'wifi', 'adapter', 'to', 'work', 'on', 'my', 'laptop', 'cannot', 'get', 'my', 'usb', 'wifi', 'adapter', 'to', 'work', 'on', 'my', 'laptop'], ['unable', 'to', 'access', 'collaboration', 'platform', 'unable', 'to', 'access', 'collaboration', 'platform'], ['collaboration', 'platform', 'issue', 'summary', 'was', 'thrown', 'off', 'of', 'vpn', 'and', 'tried', 'several', 'times', 'to', 'get', 'back', 'in', 'am', 'now', 'back', 'into', 'vpn', 'but', 'cannot', 'sign', 'on', 'to', 'crm'], ['collaboration', 'platform', 'issue', 'collaboration', 'platform', 'issue'], ['collaboration', 'platform', 'down', 'collaboration', 'platform', 'down'], ['skype', 'for', 'business', 'is', 'not', 'connected', 'to', 'the', 'exchange', 'ihuogcqd', 'ihusvgcw', 'phone', 'my', 'skype', 'for', 'business', 'can', 'connect', 'to', 'exchange', 'this', 'has', 'been', 'going', 'on', 'all', 'week', 'have', 'rebooted', 'and', 'logged', 'back', 'into', 'skype', 'but', 'it', 'will', 'not', 'connect', 'and', 'keep', 'getting', 'this', 'error'], ['the', 'company', 'collaboration', 'platform', 'is', 'reporting', 'down', 'status', 'since', 'pm', 'the', 'company', 'collaboration', 'platform', 'is', 'reporting', 'down', 'status', 'since', 'pm'], ['vip', 'collaboration', 'platform', 'page', 'access', 'issue', 'vip', 'collaboration', 'platform', 'page', 'access', 'issue'], ['when', 'running', 'sa', 'report', 'zsdr', 'open', 'order', 'report', 'the', 'report', 'is', 'not', 'pulling', 'usa', 'scheduling', 'agreements', 'when', 'running', 'the', 'report', 'example', 'would', 'be', 'mm', 'for', 'location', 'plant', 'as', 'the', 'source', 'location', 'and', 'making', 'sure', 'on', 'the', 'outputs', 'tab', 'that', 'scheduling', 'agreements', 'are', 'included', 'this', 'report', 'is', 'not', 'picking', 'up', 'this', 'scheduling', 'agreement'], ['no', 'boot', 'service', 'tag', 'lkzddens', 'windows', 'running', 'into', 'problem', 'goes', 'to', 'start', 'up', 'repair', 'page', 'loading', 'fine', 'in', 'safe', 'mode', 'with', 'networking', 'user', 'was', 'able', 'to', 'log', 'in', 'using', 'admin', 'account', 'but', 'dint', 'dint', 'have', 'access', 'to', 'it', 'tried', 'shutting', 'down', 'pc', 'and', 'trying', 'booting', 'up', 'no', 'go', 'flea', 'power', 'no', 'go', 'it', 'was', 'going', 'to', 'repair', 'screen', 'again', 'and', 'again', 'st', 'lkzddens', 'contact', 'details', 'can', 'be', 'contacted', 'during'], ['hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'is', 'over', 'space', 'consumed', 'space', 'available', 'g', 'hostname', 'volume', 'label', 'sys', 'hostname', 'aa', 'is', 'over', 'space', 'consumed', 'space', 'available'], ['i', 'need', 'my', 'address', 'added', 'to', 'xerox', 'prtqx', 'i', 'need', 'my', 'address', 'added', 'to', 'xerox', 'prtqx'], ['personal', 'number', 'locked', 'expense', 'report', 'personal', 'number', 'locked', 'expense', 'report'], ['erp', 'sid', 'password', 'reset', 'erp', 'sid', 'password', 'reset'], ['it', 'password', 'hello', 'ask', 'to', 'reset', 'all', 'my', 'passwords', 'because', 'locked', 'crm', 'erp', 'vpn', 'hello', 'all', 'my', 'passwords', 'are', 'locked', 'crm', 'erp', 'vpn', 'best', 'regards'], ['skype', 'and', 'outlook', 'synch', 'issue', 'meeting', 'are', 'not', 'showing', 'up', 'in', 'skype', 'skype', 'and', 'outlook', 'synch', 'issue', 'meeting', 'are', 'not', 'showing', 'up', 'in', 'skype', '', 'error', 'message', 'attached', '', '', 'error', 'message', 'skype', 'for', 'business', 'and', 'exchange', 'aren', 'making', 'connection'], ['outlook', 'hang', 'unable', 'to', 'open', 'the', 'outlook', 'its', 'hang', 'at', 'process', 'stage'], ['this', 'message', 'was', 'sent', 'to', 'the', 'company', 'quarantine', 'database', 'please', 'contact', 'company', 'it', 'help', 'desk', 'for', 'more', 'information', 'ncasrpvx', 'fijwprtv', 'pm', 'nwfodmhc', 'exurcwkm', 'tr', 'notification', 're', 'po', 'no', 'dsfdb', 'hello', 'could', 'you', 'check', 'this', 'message'], ['companyguest', 'account', 'for', 'days', 'mechmet', 'hswddwk', 'company', 'sllwdw', 'tel', 'email', 'period', 'from', 'now', 'til', 'tomorrow', 'at', 'mp'], ['unable', 'to', 'print', 'driver', 'not', 'found', 'unable', 'to', 'print', 'driver', 'not', 'found'], ['unable', 'to', 'open', 'outlook', 'unable', 'to', 'open', 'outlook'], ['no', 'access', 'to', 'ethics', 'see', 'below', 'failure', 'message', 'welcome', 'to', 'the', 'company', 'business', 'ethics', 'and', 'conduct', 'center', 'ethics', 'training', 'site', 'our', 'records', 'indicate', 'that', 'the', 'log', 'in', 'credentials', 'you', 'used', 'to', 'access', 'this', 'site', 'from', 'the', 'company', 'collaboration', 'platform', 'do', 'not', 'match', 'the', 'records', 'we', 'have', 'on', 'file', 'within', 'the', 'active', 'directory', 'please', 'submit', 'ticket', 'to', 'the', 'global', 'support', 'center', 'to', 'ensure', 'that', 'your', 'network', 'log', 'in', 'id', 'is', 'correctly', 'entered', 'into', 'erp'], ['needs', 'to', 'change', 'password', 'needs', 'to', 'change', 'password'], ['fails', 'to', 'log', 'in', 'to', 'erp', 'and', 'engineering', 'tool', 'i', 'changed', 'my', 'password', 'using', 'the', 'password', 'manager', 'and', 'now', 'am', 'locked', 'out', 'of', 'erp', 'used', 'the', 'password', 'manager', 'to', 'unlock', 'but', 'still', 'fails', 'to', 'log', 'in', 'to', 'erp', 'and', 'engineering', 'tool'], ['job', 'job', 'failed', 'in', 'job', 'scheduler', 'at', 'job', 'job', 'failed', 'in', 'job', 'scheduler', 'at'], ['unable', 'to', 'open', 'netweaver', 'unable', 'to', 'open', 'netweaver'], ['skype', 'is', 'not', 'functioning', 'trying', 'to', 'use', 'skype', 'is', 'not', 'responding', 'was', 'working', 'earlier'], ['vip', 'user', 'unable', 'to', 'login', 'to', 'the', 'pc', 'vip', 'user', 'unable', 'to', 'login', 'to', 'the', 'pc', '', 'advised', 'the', 'user', 'to', 'restart', 'the', 'pc', 'and', 'try', 'to', 'login', 'with', 'the', 'new', 'password', 'no', 'go', '', 'reset', 'and', 'help', 'the', 'user', 'login', 'to', 'the', 'pc', '', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', '', 'help', 'the', 'user', 'login', 'to', 'the', 'password', 'manager', 'tool', 'password', 'tool', 'and', 'change', 'the', 'passwords', '', 'help', 'the', 'user', 'to', 'sync', 'the', 'psswords', 'to', 'the', 'company', 'network', '', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', '', 'issue', 'resolved'], ['employment', 'status', 'new', 'non', 'employee', 'ycgkinov', 'czoparqg', 'us', 'temp', 'page', 'down', 'to', 'ensure', 'that', 'all', 'required', 'data', 'fields', 'are', 'complete', 'before', 'submitting', 'use', 'this', 'template', 'for', 'consultants', 'temps', 'interns', 'vendors', 'etc', 'please', 'complete', 'all', 'entries', 'id', 'first', 'name', 'johddnthay', 'last', 'name', 'welwsswbtwe', 'location', 'usa', 'us', 'manager', 'sponsor', 'keddsdn', 'wethrybb', 'cost', 'center', 'bdm', 'external', 'company', 'name', 'kellkwdy', 'what', 'systems', 'do', 'they', 'need', 'access', 'on', 'mii', 'mii', 'yes', 'if', 'yes', 'is', 'user', 'operator', 'admin', 'or', 'supervisor', 'operator', 'need', 'username', 'and', 'word', 'security', 'note', 'for', 'mii', 'add', 'im', 'shopfloor', 'user', 'to', 'user', 'sid', 'account', 'is', 'company', 'email', 'required', 'for', 'this', 'person', 'if', 'yes', 'by', 'default', 'k', 'license', 'will', 'be', 'assigned', 'for', 'use', 'of', 'owa', 'and', 'collaboration', 'platform', 'only', 'not', 'outlook', 'client', 'or', 'skype', 'if', 'outlook', 'client', 'or', 'skype', 'are', 'required', 'more', 'costly', 'license', 'must', 'be', 'assigned', 'and', 'can', 'be', 'used', 'only', 'on', 'company', 'computer', 'assign', 'k', 'or', 'license', 'access', 'like', 'who', 'required', 'this', 'is', 'to', 'review', 'copy', 'from', 'person', 'access', 'for', 'approvals', 'requires', 'access', 'until', 'date', 'is', 'the', 'computer', 'owned', 'by', 'company', 'if', 'yes', 'is', 'it', 'laptop', 'or', 'desktop', 'computer', 'name', 'is', 'remote', 'access', 'vpn', 'required', 'if', 'yes', 'please', 'provide', 'to', 'which', 'all', 'applications', 'erp', 'systems', 'network', 'servers', 'the', 'user', 'needs', 'access', 'via', 'vpn', 'start', 'date'], ['business', 'client', 'hello', 'business', 'client', 'business', 'client', 'vpn', 'ktghvuwr', 'uwtakcmj', 'sr', 'application', 'engineer', 'optimization', 'team'], ['company', 'guest', 'account', 'set', 'up', 'company', 'guest', 'account', 'set', 'up'], ['in', 'our', 'west', 'coast', 'email', 'box', 'we', 'can', 'grab', 'an', 'email', 'and', 'color', 'code', 'it', 'but', 'it', 'is', 'not', 'undating', 'not', 'updating', 'so', 'that', 'the', 'other', 'people', 'working', 'the', 'email', 'box', 'can', 'see', 'who', 'has', 'each', 'email', 'so', 'we', 'are', 'duplicating', 'work'], ['query', 'regarding', 'unread', 'sync', 'failure', 'emails', 'query', 'regarding', 'unread', 'sync', 'failure', 'emails'], ['unable', 'to', 'login', 'to', 'mii', 'system', 'yrhackgt', 'sfhxckgq', 'unable', 'to', 'login', 'to', 'mii', 'system', 'yrhackgt', 'sfhxckgq', '', '', 'checked', 'account', 'and', 'found', 'that', 'it', 'was', 'not', 'locked', 'out', '', 'suggested', 'user', 'to', 'unlock', 'account', 'from', 'password', 'management', 'tool', 'and', 'try', 'logging', 'in', 'again', 'some', 'time'], ['unable', 'to', 'launch', 'ethics', 'flash', 'player', 'issue', 'unable', 'to', 'launch', 'ethics', 'flash', 'player', 'issue'], ['unable', 'to', 'access', 'time', 'unable', 'to', 'access', 'time'], ['pls', 'reset', 'me', 'the', 'sid', 'crm', 'production', 'access', 'name', 'francestrhuco', 'language', 'browser', 'microsoft', 'internet', 'explorer', 'customer', 'number', 'telephone', 'summary', 'pls', 'reset', 'me', 'the', 'sid', 'crm', 'production', 'access', 'thx'], ['cannot', 'get', 'thru', 'to', 'customer', 'application', 'support', 'something', 'wrong', 'with', 'the', 'phone', 'you', 'get', 'mesaage', 'their', 'number', 'is'], ['microsoft', 'outlook', 'not', 'responding', 'cannot', 'open', 'krthdelly', 'sthytachnik', 'phone', 'usa', 'location', 'login'], ['called', 'to', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr', 'called', 'to', 'unlock', 'nvyjtmca', 'xjhpznds', 'account', 'user', 'id', 'datacntr'], ['please', 'set', 'scanner', 'r', 'we', 'printer', 'was', 'reset', 'to', 'factory', 'setting', 'konica', 'please', 'set', 'scanner', 'r', 'we', 'printer', 'was', 'reset', 'to', 'factory', 'setting', 'konica'], ['help', 'to', 'change', 'the', 'windows', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'help', 'to', 'change', 'the', 'windows', 'password', 'using', 'password', 'management', 'tool', 'password', 'tool', 'connected', 'to', 'the', 'user', 'system', 'using', 'teamviewer', 'help', 'the', 'user', 'login', 'to', 'the', 'password', 'management', 'tool', 'password', 'tool', 'and', 'change', 'the', 'passwords', 'help', 'the', 'user', 'to', 'sync', 'the', 'psswords', 'to', 'the', 'company', 'network', 'caller', 'confirmed', 'that', 'he', 'was', 'able', 'to', 'login', 'issue', 'resolved'], ['bei', 'herrn', 'potthryzler', 'benutzerkennung', 'potsffwzlo', 'geht', 'eu', 'tool', 'am', 'rechner', 'empwa', 'nicht', 'fehlermeldung', 'systemfehler', 'andh', 'with', 'mr', 'potthryzler', 'user', 'identification', 'potzlow', 'eu', 'tool', 'does', 'not', 'go', 'to', 'the', 'computer', 'empwa', 'error', 'message', 'system', 'error', 'and', 'h'], ['account', 'unlock', 'account', 'unlock'], ['problems', 'mit', 'login', 'in', 'br', 'usalikfj', 'lfmpxbcn', 'problems', 'mit', 'login', 'in', 'br', 'usalikfj', 'lfmpxbcn'], ['erp', 'good', 'morning', 'am', 'unable', 'to', 'log', 'into', 'my', 'erp', 'as', 'normal', 'after', 'review', 'with', 'doyhtuug', 'endlkglfeghart', 'it', 'was', 'determined', 'this', 'was', 'from', 'the', 'switchover', 'of', 'servers', 'can', 'you', 'please', 'correct', 'so', 'can', 'log', 'in', 'as', 'normal'], ['unable', 'to', 'login', 'to', 'sid', 'unable', 'to', 'login', 'to', 'sid'], ...]
from keras.preprocessing.text import Tokenizer
t = Tokenizer()
t.fit_on_texts(sentences)
vocab_size = len(t.word_index) + 1
# integer encode the documents
encoded_docs = t.texts_to_sequences(sentences)
print(encoded_docs)
[[46, 31, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [41, 55, 101, 1, 1, 33, 964, 87, 964, 449, 42, 8, 1180, 4, 33, 41, 672, 39, 4956, 14, 386, 288, 2, 391, 23, 1, 1, 450], [1031, 95, 4, 2, 175, 76, 111, 4041, 39, 95, 10, 2, 175, 76, 1, 1, 135], [27, 2, 29, 162, 20, 347, 27, 2, 29, 162, 20, 347], [87, 37, 87, 37], [27, 2, 95, 4, 2, 82, 20, 7, 87, 27, 2, 95, 4, 2, 82, 20, 7, 87], [93, 804, 40, 24, 144, 3, 763, 18, 4957, 617, 11, 1181, 26, 3400, 93, 804, 40, 24, 144, 3, 763, 18, 4957, 617, 11, 1181, 26, 3400, 4958, 4958, 131, 7669, 6], [34, 9, 2104, 233, 73, 933, 223, 322, 28, 56, 34, 9, 2104, 233, 73, 933, 223, 322, 28, 56], [27, 2, 1796, 206, 4042, 10, 41, 27, 2, 1796, 206, 4042, 10, 41], [34, 70, 10, 258, 34, 70, 10, 258], [82, 20, 530, 8, 267, 7, 27, 2, 436, 440, 82, 20, 530, 8, 267, 7, 27, 2, 436, 440], [162, 20, 48, 8, 590, 347, 546, 162, 20, 48, 8, 590, 347, 546], [27, 2, 46, 2, 162, 20, 2, 4959, 4960, 2475, 27, 2, 46, 2, 162, 20, 2, 4959, 4960, 2475], [28, 1007, 2, 25, 3, 13, 28, 1007, 2, 25, 3, 13], [27, 2, 100, 1657, 27, 2, 100, 1657], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 46, 2, 24, 76, 111, 49, 27, 2, 46, 2, 24, 76, 580, 250, 2, 100, 73, 908, 137, 3, 96, 229, 67, 8, 84, 2, 118, 294, 363, 50, 1008, 53, 47, 42, 45, 36, 490, 1059, 311, 2, 713, 591, 1797], [51, 4961, 115, 167, 99, 8, 884, 251, 51, 4961, 115, 167, 99, 8, 884, 251], [15, 26, 32, 64, 15, 26, 32, 64], [27, 2, 392, 158, 76, 27, 2, 392, 158, 76], [27, 2, 114, 1657, 27, 2, 114, 1657], [76, 31, 55, 1730, 1, 1, 49, 8, 84, 2, 122, 76, 36, 490, 174, 1731, 655, 1311, 63, 267, 172, 21, 6, 8, 45, 849, 164, 71, 44, 33, 908, 562, 67, 68, 413, 10, 3, 229, 680, 1147, 1, 1, 1, 1, 1, 54, 50, 30, 104, 690, 88, 1, 413, 581, 1, 1, 1413, 30, 1798, 296, 704, 104, 690, 88, 498, 172, 413, 581, 1, 1, 135], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [28, 486, 11, 69, 86, 107, 28, 486, 11, 69, 86, 107], [76, 8, 45, 55, 356, 8, 357, 84, 2, 122, 2, 24, 58, 294, 3, 76, 363, 114, 491, 49, 8, 357, 84, 2, 909, 53, 764, 18, 9, 24, 58], [15, 26, 13, 25, 15, 26, 13, 25], [27, 2, 46, 2, 162, 20, 2, 114, 1657, 27, 2, 46, 2, 162, 20, 2, 114, 1657], [32, 64, 77, 32, 64, 77], [27, 2, 46, 2, 162, 20, 27, 2, 46, 2, 162, 20], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [13, 25, 11, 128, 126, 13, 25, 11, 128, 126], [25, 195, 111, 14, 25, 195, 13, 217, 59, 691, 4043], [2476, 18, 58, 196, 7670, 38, 451, 817, 44, 42, 250, 2, 818, 72, 138, 196, 284, 42, 250, 2, 818, 197, 6, 74, 30, 3, 40, 18, 7671, 7, 3, 165, 6, 73, 452, 11, 15, 3, 452, 6, 137, 3401, 2, 118, 558, 196, 625, 7, 3, 74, 6, 531, 4962, 33, 4044, 6, 44, 3, 196, 187, 8, 118, 236, 2, 1586, 196, 4, 3401, 54, 23, 1524, 207, 3, 452, 99, 1202, 98, 517, 196], [338, 13, 25, 338, 13, 25], [27, 2, 211, 1114, 1115, 27, 2, 211, 1114, 1115], [34, 9, 2104, 233, 73, 933, 223, 34, 9, 2104, 233, 73, 933, 223], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [27, 2, 353, 34, 9, 625, 2, 1587, 3, 233, 864, 6, 4963, 169, 532, 2477], [1658, 82, 20, 54, 2, 211, 82, 20, 10, 3, 115], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [34, 70, 965, 34, 70, 965], [910, 726, 8, 45, 910, 726, 8, 45], [27, 2, 46, 2, 52, 27, 2, 46, 2, 52], [14, 2705, 777, 10, 74, 2, 74, 31, 219, 2, 43, 321, 310, 111, 3, 74, 74, 6, 8, 45, 7, 219, 934, 1312, 39, 35, 2705, 3, 777, 4, 1732, 2, 74, 74, 7672, 7673, 65, 4964, 44, 7674, 219, 73, 934, 7, 21, 8, 2105, 11, 532, 540, 207, 3, 225, 418, 99, 54, 2, 176, 10, 74, 11, 172, 23, 219, 2, 43, 1271, 3402, 18, 310, 112, 3, 225, 418, 42, 727, 7, 42, 2258, 98, 66, 72, 240, 69, 12, 124, 4, 90, 10, 636, 935, 14, 129, 7675, 7676, 68, 35, 38, 498, 393, 3, 777, 4, 1732, 11, 310], [27, 2, 46, 2, 162, 20, 705, 27, 2, 46, 2, 162, 20, 705], [39, 8, 95, 158, 162, 20, 705, 294, 966, 392, 10, 212, 39, 8, 95, 158, 162, 20, 705, 294, 966, 392, 10, 212], [13, 274, 4, 13, 125, 20, 67, 4045, 70, 11, 15, 32, 13, 274, 4, 13, 125, 20, 67, 4045, 70, 11, 15, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 13, 119, 192, 13, 125, 20, 79, 13, 119, 192, 13, 125, 20], [233, 89, 8, 119, 10, 279, 140, 51, 1797, 121, 3, 296, 790, 10, 3, 10, 4046, 121, 233], [5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12, 5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [378, 54, 33, 13, 125, 20, 13, 120, 13, 25, 110, 54, 33, 13, 125, 20, 13, 120, 13, 25], [25, 2706, 140, 13, 55, 14, 25, 33, 2706, 140, 13, 7677, 7678, 188, 462, 120, 1148, 4965], [32, 64, 77, 329, 4, 174, 32, 3031, 2259, 77, 1, 285, 2478, 1, 1, 1060, 62, 235, 108, 57, 280, 65, 72, 626, 13, 2106, 1, 79, 7, 58, 224, 106, 8, 1471], [87, 381, 365, 334, 1, 1, 330, 2, 25, 33, 13, 257, 7, 742, 805, 33, 765, 11, 1009, 98, 87, 381, 257, 39, 35, 14, 50, 80, 39, 1203, 288, 35, 428, 84, 2, 2107, 21, 251, 3, 372, 116], [3032, 10, 518, 4966, 3032, 10, 518, 4966, 288, 2, 118, 13, 25], [54, 472, 11, 349, 113, 113, 673, 1116, 54, 472, 11, 349, 113, 113, 673], [132, 397, 13, 55, 1, 14, 50, 2, 132, 33, 24, 441, 95, 10, 13, 307], [5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12, 5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 274, 275, 11, 28, 2260, 13, 274, 275, 11, 28, 2260], [210, 30, 41, 135], [307, 189, 4967, 14, 50, 335, 2, 189, 4967, 11, 23, 249, 1, 473, 1, 473, 1, 1, 473, 36, 113, 2, 113], [358, 24, 451, 2108, 42, 75, 112, 49, 105, 10, 358, 24, 451, 2108, 42, 75, 112, 49, 105, 10, 1, 1, 24, 262, 1204, 358, 24, 29, 277, 1, 24, 262, 1204, 358, 24, 29, 277], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [186, 263, 39, 106, 644, 981, 31, 259, 7, 1, 113, 113, 2, 113, 1, 3, 31, 452, 1, 3404, 7679, 3404, 7680, 3404, 7681, 3404, 7682, 263, 8, 2261, 114, 104, 982], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 64, 28, 4043, 21, 101, 14, 308, 743, 64, 142, 11, 28, 4043, 28, 56, 4968, 4969], [382, 33, 148, 1588, 6, 8, 45, 257, 7, 1416, 104, 307, 50, 33, 148, 1588, 6, 8, 45, 257, 7, 1416, 104, 307, 50], [28, 219, 50, 2, 122, 2, 3, 519, 133, 12, 490, 28, 219, 50, 2, 122, 2, 3, 519, 133, 12, 490, 330, 3, 28, 122, 2, 3, 728, 12, 490, 267, 2, 3, 28, 52, 137, 487, 425, 3, 58, 609, 50, 3, 28, 46, 2, 3, 490, 519, 659, 3, 490, 728, 28, 328, 44, 180, 6, 84, 2, 46, 2, 3, 490, 519, 31, 321], [203, 34, 70, 203, 34, 70], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [61, 94, 2479, 2480, 7, 7683, 1589, 531, 75, 112, 12, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 7684, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [61, 94, 190, 3033, 48, 6, 531, 75, 112, 49, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [28, 4047, 4048, 290, 210, 637, 2, 41, 28, 4047, 4048, 290, 210, 637, 2, 41, 7685, 99, 43, 178, 1059, 1272, 49, 180, 507, 77, 18, 24, 3034, 102, 35, 2, 1273, 77, 2, 911, 7, 398, 3, 31], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [82, 20, 791, 2262, 4, 492, 1149, 42, 8, 806, 55, 21, 200, 1, 54, 2, 317, 3, 1358, 610, 2, 766, 1358, 1, 3, 82, 20, 706, 323, 492, 2262, 1, 1, 312, 1, 1, 1, 15, 160, 127, 238, 69, 4970, 7686, 2263, 301, 160, 127, 238, 69, 1881, 8, 3035, 173, 97, 43, 7687, 172, 1, 1, 7688, 1, 1117, 3036, 1, 3037, 15, 4049, 3405, 2481, 2109, 7689, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 15, 4049, 3405, 2481, 2109, 7690, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 15, 4049, 3405, 2481, 2109, 7691, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 7692, 4051, 4971, 4051, 566, 59, 4051, 566, 7693, 1, 474, 4052, 2110, 7694, 2110, 566, 59, 2110, 566, 4053, 1, 474, 4052, 2110, 7695, 2110, 566, 59, 2110, 566, 4053, 1, 474, 4052, 2110, 7696, 2110, 566, 59, 2110, 566, 4053, 1, 3037, 1313, 7697, 4054, 373, 4054, 566, 59, 4054, 566, 4972, 1, 1, 4055, 4056, 367, 4971, 1, 1, 1, 1, 1, 1, 6, 23, 1150, 123, 51, 21, 99, 43, 833], [5, 983, 4057, 113, 22, 4, 5, 19, 12, 5, 983, 4057, 113, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [27, 2, 100, 419, 27, 2, 100, 419], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [1661, 370, 1010, 1661, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387, 1661, 370, 1010, 1661, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387], [27, 2, 239, 1657, 36, 162, 20, 116, 27, 2, 239, 1657, 36, 162, 20, 116], [13, 3406, 1059, 33, 52, 530, 33, 13, 2264, 1059, 67, 51, 479, 2, 119, 2, 73, 13, 21, 89, 8, 729, 3, 73, 13, 6, 8, 1733, 21, 530, 78, 89, 8, 4973, 308, 114, 7, 106, 3, 807, 53, 3, 13, 6, 2482, 1059], [243, 338, 212, 29, 31, 55, 180, 6, 72, 1734, 28, 14, 25, 3, 13, 7, 778, 4058, 4059, 4974, 4975, 338, 212, 29, 31, 111, 96, 779, 223, 4976, 4977, 30, 28, 59, 1989, 6, 8, 84, 2, 46, 2, 338, 212, 2, 29, 283, 1418, 3407, 7, 442, 2483, 180, 6, 692, 20, 28, 14, 25, 283, 28, 59, 7, 13, 7, 1662, 251], [338, 212, 29, 31, 111, 96, 779, 223, 4976, 4977, 30, 28, 59, 1989, 6, 8, 84, 2, 46, 2, 338, 212, 2, 29, 283, 1418, 3407, 7, 442, 2483, 180, 6, 692, 20, 28, 14, 25, 283, 28, 59, 7, 13, 7, 1662, 251], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [692, 20, 52, 95, 10, 37, 55, 365, 334, 49, 1085, 210, 30, 692, 20, 95, 10, 541, 116, 335, 2, 95, 10, 294, 966, 392, 212, 3, 177, 167, 1061, 1086, 7, 21, 2484, 151, 1663, 104, 295, 2, 398, 23, 31], [333, 984, 31, 333, 984, 31], [27, 2, 500, 173, 4, 128, 126, 27, 2, 500, 173, 4, 128, 126], [27, 2, 70, 13, 10, 3, 13, 125, 20, 13, 120, 27, 2, 70, 13, 10, 3, 13, 125, 20, 13, 120], [1205, 660, 260, 20, 29, 403, 1205, 660, 260, 20, 29, 403], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 1359, 180, 99, 4978, 28, 1359, 180, 99, 4978], [27, 70, 224, 10, 13, 125, 20, 27, 70, 224, 10, 13, 125, 20], [15, 26, 15, 160, 13, 25, 32, 6, 64, 15, 26, 15, 160, 13, 25, 32, 6, 64], [78, 210, 55, 1, 1, 38, 141, 250, 2, 3408, 29, 2, 33, 1418, 4979, 136, 10, 3, 459, 2485, 3, 162, 20, 705, 212, 3, 165, 136, 10, 3, 212, 884, 98, 573, 193, 67, 3, 1418, 7698, 89, 8, 21, 2111, 429, 3, 412, 4980], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 452, 324, 171, 27, 2, 452, 324, 171], [13, 25, 11, 4981, 4982, 4983, 13, 25, 11, 4981, 4982, 4983], [27, 2, 46, 4, 1590, 681, 27, 2, 46, 4, 1590, 681], [55, 356, 290, 72, 31, 30, 33, 41, 239, 39, 35, 121, 80, 7, 270, 80, 818, 33, 167, 55, 356, 290, 72, 31, 30, 33, 41, 239, 39, 35, 121, 80, 7, 270, 80, 818, 33, 167], [27, 2, 29, 475, 27, 2, 29, 475], [27, 2, 452, 324, 171, 27, 2, 452, 324, 171], [235, 108, 453, 4984, 4985, 124, 291, 292, 3038, 2707, 7699, 714, 7700, 7701, 7702, 7703, 592, 2708, 7704, 7705, 7706, 480, 1032, 7707, 4986, 2708, 4987, 7708, 4988, 7709, 111, 268, 23, 71, 7, 161, 437, 21, 7710, 65, 1591, 80, 2, 100, 34], [318, 1087, 99, 8, 134, 169, 2486, 1664, 99, 72, 415, 1062, 1087, 318, 1087, 99, 8, 134, 169, 2486, 1664, 99, 72, 415, 1062, 1087], [339, 121, 533, 339, 121, 533], [70, 10, 258, 70, 10, 258], [13, 119, 1799, 13, 125, 20, 13, 120, 55, 491, 1, 1, 248, 2, 119, 33, 13, 1799, 693, 351, 96, 37, 611, 50, 253, 85, 354, 2, 43, 1271, 582, 2, 1088, 83, 224, 42, 179, 7711, 112, 7712, 7713, 530, 83, 224, 428, 8, 274], [132, 508, 107, 4, 338, 132, 508, 107, 4, 338], [1526, 200, 10, 1274, 78, 4, 26, 1416, 1800, 715, 10, 160, 78, 1526, 200, 10, 1274, 78, 4, 26, 1416, 1800, 715, 10, 160, 78, 3, 37, 1990, 4, 160, 7, 429, 318, 7714, 37, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 437, 302, 3, 31, 39, 43, 7715, 4, 160, 387, 24, 117, 387, 7, 1885, 349, 249, 4989, 124, 4060, 24, 117, 387, 7, 937, 36, 2709, 39, 493, 462, 126, 387, 682, 4989, 124, 7716, 67, 3, 167, 1527, 95, 10, 182, 661, 714, 387, 592, 24, 117, 387, 1885, 349, 387, 47, 330, 23, 210, 534, 567, 420, 389, 7, 21, 524, 820, 715, 18, 3, 78, 7717, 6, 365, 129, 568, 11, 23, 31, 53, 180, 63, 534, 45, 10, 3, 1886, 1206, 30, 161, 415, 69, 1274], [27, 2, 29, 76, 27, 2, 29, 76], [27, 2, 100, 41, 27, 2, 100, 41], [211, 407, 4, 74, 162, 4, 40, 211, 407, 4, 74, 162, 4, 40], [27, 2, 320, 245, 36, 2710, 27, 2, 320, 245, 36, 2710], [29, 2, 191, 217, 610, 56, 7718, 7719, 182, 213, 130, 155, 204, 117, 107, 146, 97, 1089, 2, 29, 3, 610, 36, 3, 535, 220, 44, 6, 430, 10, 33, 142, 21, 542, 509, 80, 2, 3, 179, 347, 44, 33, 1033, 38], [1360, 489, 57, 1183, 36, 508, 86, 56, 7720, 182, 213, 130, 155, 204, 117, 107, 146, 38, 7721, 3, 376, 86, 33, 181, 63, 1593, 4, 21, 39, 35, 509, 489, 3, 1183, 236, 2, 239, 475, 10, 44, 86], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 239, 1657, 4, 419, 27, 2, 239, 1657, 4, 419], [1528, 13, 25, 14, 25, 162, 20, 7722, 13, 25], [1529, 674, 496, 443, 245, 36, 15, 307, 111, 161, 1529, 674, 30, 3, 57, 196, 268, 245, 704, 3, 1207, 37, 4, 1314, 18, 7723, 180, 6, 343, 7724, 23, 219, 2, 43, 833, 510, 163, 6, 173, 4061, 36, 15, 7725, 3, 245], [90, 24, 238, 1034, 7, 1011, 6, 75, 112, 124, 105, 10, 90, 24, 238, 1034, 7, 1011, 6, 75, 112, 124, 105, 10], [13, 25, 365, 334, 38, 1991, 33, 13, 11, 15, 26, 38, 912, 985, 7, 22, 185, 35, 14, 25, 33, 28, 59, 6, 7726], [338, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [27, 2, 170, 382, 4, 108, 7727, 7728, 6, 27, 2, 170, 283, 382, 4, 910, 108], [15, 176, 20, 211, 15, 176, 20, 211], [365, 334, 49, 290, 1237, 164, 158, 33, 76, 56, 3039, 3040, 182, 213, 130, 155, 204, 117, 107, 146, 365, 334, 49, 290, 1237, 164, 158, 33, 76, 39, 35, 525], [211, 1238, 2487, 211, 1238, 2487], [13, 25, 36, 226, 13, 25, 36, 226], [25, 3, 13, 11, 7729, 7730, 10, 15, 865, 15, 14, 25, 33, 13, 2, 26, 21, 230, 46, 7731], [110, 304, 2, 38, 1735, 2, 23, 271, 10, 128, 126, 172, 106, 8, 54, 29, 2711, 2712, 1530, 1064], [88, 206, 4, 6, 164, 808, 36, 41, 88, 206, 4, 6, 164, 808, 36, 41], [41, 1315, 41, 1315], [76, 8, 45, 76, 8, 45], [25, 224, 11, 7732, 7733, 137, 13, 125, 20, 13, 25, 223, 6, 164, 72, 37, 28, 1472, 22, 51, 250, 2, 95, 158, 3, 338, 212, 390, 6, 84, 2, 29, 15, 7, 6, 84, 2, 29, 3, 459, 248, 2, 25, 7, 119, 408, 13, 294, 13, 125, 20, 13, 120, 67, 351, 72, 37, 97, 326, 32, 7734, 10, 1594, 202, 675, 408, 28, 59, 6, 7735], [5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12], [338, 13, 25, 338, 13, 25], [913, 74, 14, 263, 241, 4990, 15, 303, 6, 1361, 4, 74, 913, 3, 176, 6, 8, 1118, 4991, 14, 1419, 2, 1420, 3, 179, 662, 53, 1239, 18, 1208, 6, 164, 7736], [70, 566, 1151, 208, 83, 1, 1, 566, 1151, 6, 8, 45, 143, 316, 54, 29, 2, 239, 2488, 225, 418, 4, 15, 1, 1, 2489, 566, 70, 6, 275, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 47, 42, 1887, 96, 559, 4, 850, 20, 1, 1, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [29, 2, 547, 55, 1, 1, 1362, 372, 593, 63, 1090, 547, 440, 137, 3041, 212, 7, 151, 428, 9, 210, 1, 1, 937, 23, 593, 3, 52, 6, 4992, 278, 51, 95, 4, 7, 1888, 89, 8, 729, 80, 2, 29, 143, 440, 1, 1, 39, 21, 43, 3, 31, 30, 143, 145, 62, 33, 29, 1473, 62, 2490, 264, 335, 2, 29, 547, 137, 661, 986, 1, 1, 96, 3, 176, 167, 36, 85, 91, 169, 95, 4, 1, 1, 49, 183, 84, 2, 118, 2, 501, 440, 91, 96, 716, 51, 413, 4993, 548, 53, 63, 820, 987, 1992, 835, 6, 100, 716, 4062, 7737, 44, 3, 167, 6, 339, 1, 1, 1, 1663, 104, 295, 1, 1, 38, 2112, 483, 1, 1, 2113, 1, 1, 1, 7738, 7739, 1, 1363, 988, 1, 501, 120, 7740, 1, 1240, 1, 4994, 1, 1, 24, 4995, 1421, 646, 4996, 4997, 3042, 730, 24, 144, 1, 1, 24, 4995, 1421, 646, 2491, 7741, 4998, 3042, 4996, 4997, 1, 1421, 7742, 7743, 851, 7744, 7745, 3042, 7746, 7747, 7748, 4998, 7749, 7750, 7751, 7752, 7753, 7754, 1, 7755, 7756, 7757, 7758, 7759], [79, 32, 707, 79, 32, 707], [34, 9, 1119, 543, 7760, 3409, 34, 9, 1119, 543, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 219, 520, 2, 199, 82, 20, 2, 239, 610, 28, 219, 520, 2, 199, 82, 20, 2, 239, 610, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 7, 3410, 3, 28, 10, 288, 46, 2, 191, 217, 7, 239, 610, 1, 31, 321], [87, 8, 45, 55, 1, 1, 49, 27, 2, 29, 3, 87, 3, 13, 6, 323, 37], [32, 132, 102, 32, 132, 102], [307, 186, 263, 1665, 102, 55, 21, 101, 185, 35, 14, 1241, 186, 263, 11, 96, 127, 47, 97, 31, 472, 11, 207, 2265, 18, 2266, 536, 11, 83, 18, 627, 12, 731, 113, 149, 676, 186, 113, 113, 731, 852, 7761, 207, 249, 115, 249, 673, 249, 673], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52], [27, 2, 509, 176, 77, 36, 913, 27, 2, 509, 176, 77, 36, 913], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [132, 431, 549, 140, 32, 111, 151, 1, 1, 246, 35, 14, 50, 80, 132, 33, 431, 549, 140, 32, 7, 25, 33, 431, 549, 140, 13], [27, 2, 29, 13, 125, 20, 59, 13, 120, 7762, 7763, 7764, 110, 335, 2, 119, 172, 33, 13, 3411, 2, 163, 181, 67, 23, 526, 134, 63, 77, 18, 174, 11, 1316, 116, 599, 172, 67, 1, 13, 125, 20, 229, 526, 134, 14, 50, 1, 1, 1, 1, 104, 13, 2264, 4, 483, 1, 1, 3, 1595, 2, 119, 104, 13, 541, 540, 7765, 131, 299, 745, 24, 1, 1, 14, 46, 2, 1, 1012, 66, 1012, 3412, 10, 137, 3, 1587, 200, 20, 6, 178, 581, 1, 1, 14, 106, 8, 853, 2, 23, 57, 68, 35, 1474, 967, 14, 436, 34, 2, 3, 188, 295, 314, 192, 143, 18, 261, 7766, 1, 1, 404, 20, 1, 57, 1, 1, 450], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [88, 683, 11, 28, 4999, 7767, 7768, 49, 7769, 7770, 550, 88, 683, 11, 4999, 55, 88, 6, 8, 430, 4, 33, 148, 14, 295, 80, 10, 23], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [2114, 11, 235, 86, 29, 2, 181, 767, 2114, 11, 235, 86, 29, 2, 181, 767], [131, 8, 546, 3413, 11, 83, 3, 694, 4, 3, 914, 20, 5000, 238, 131, 8, 546, 3413, 11, 83, 3, 694, 4, 3, 914, 20, 5000, 238], [968, 319, 49, 291, 292, 243, 968, 319, 208, 363, 50, 2, 70, 117, 968, 319, 57, 196, 476], [2, 2713, 218, 44, 66, 1531, 2714, 2, 254, 110, 479, 2713, 218], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [58, 94, 361, 48, 531, 75, 112, 12, 124, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [13, 25, 102, 13, 25, 102], [28, 6, 8, 84, 2, 91, 83, 1065, 4, 475, 10, 283, 383, 28, 6, 8, 84, 2, 91, 83, 1065, 4, 475, 10, 283, 383], [13, 25, 13, 25], [27, 2, 500, 83, 475, 4, 41, 10, 340, 27, 2, 500, 83, 475, 4, 41, 10, 340], [88, 681, 89, 8, 1242, 10, 41, 88, 681, 89, 8, 1242, 10, 41], [27, 2, 436, 324, 171, 53, 21, 6, 64, 66, 28, 27, 2, 436, 324, 171, 53, 21, 6, 64, 66, 28], [5001, 70, 10, 258, 5001, 70, 10, 258], [110, 54, 2, 766, 3, 73, 462, 1152, 96, 110, 54, 2, 766, 3, 73, 462, 1152, 96], [34, 70, 10, 258, 34, 70, 10, 258], [274, 527, 3414, 274, 527, 3414], [27, 2, 100, 580, 56, 7771, 7772, 182, 213, 130, 155, 204, 117, 107, 146, 3415, 7773, 99, 8, 373, 4, 33, 213], [939, 88, 574, 88, 7, 683, 2, 4063, 4064, 199, 809, 265, 3416, 3417], [726, 365, 1364, 1, 1, 49, 290, 210, 257, 30, 33, 2267, 4, 44, 97, 118, 143, 726, 7, 97, 4065, 4, 87, 497], [54, 3, 691, 2, 436, 3, 2492, 54, 3, 691, 2, 436, 3, 2492], [403, 10, 415, 213, 403, 10, 415, 213], [27, 2, 29, 1590, 7, 165, 1666, 4, 162, 20, 197, 116, 27, 2, 29, 1590, 7, 165, 1666, 4, 162, 20, 197, 116, 29, 502], [27, 2, 91, 3, 628, 1013, 4, 309, 27, 2, 91, 3, 628, 1013, 4, 309, 28, 59, 7774], [28, 2268, 10, 407, 70, 866, 7, 276, 169, 1801, 3, 348, 180, 7775, 37, 28, 2268, 10, 407, 70, 866, 7, 276, 169, 1801, 3, 348, 180, 268, 72, 37, 1736, 7776, 940, 7777, 37], [15, 26, 32, 132, 15, 26, 32, 132], [79, 13, 25, 79, 13, 25], [214, 107, 70, 214, 107, 70], [2492, 136, 2492, 136], [14, 583, 5002, 29, 2, 260, 20, 4066, 7, 1422, 911, 2, 5003, 5004, 101, 53, 72, 1317, 4, 3, 1889, 1318, 14, 583, 5002, 29, 2, 260, 20, 4066, 7, 1422, 911, 2, 5003, 5004, 101, 53, 72, 1317, 4, 3, 1889, 1318], [1120, 941, 533, 1120, 941, 533], [338, 1734, 28, 13, 25, 338, 1734, 28, 13, 25], [58, 94, 432, 768, 24, 1532, 76, 618, 6, 75, 49, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1533, 34, 9, 1119, 543, 111, 38, 205, 2715, 4, 26, 7, 21, 507, 172, 546, 3, 1275, 481, 428, 1014, 456, 573, 143, 684, 49, 7778, 3, 119, 135], [15, 26, 32, 132, 15, 26, 32, 132], [1475, 968, 18, 1802, 5005, 2, 4067, 358, 1596, 136, 7779, 124, 7780, 7781, 1475, 968, 18, 1802, 5005, 2, 4067, 358, 1596, 136, 47, 42, 7782, 4068, 11, 7783, 72, 1802, 348, 2, 4067, 358, 1059, 23, 6, 355, 11, 104, 1596, 136, 746, 1319, 6, 4, 1209, 47, 99, 3418, 104, 295, 4, 104, 3043, 2, 50, 166, 4, 5006, 23, 2493, 1059], [14, 206, 33, 134, 86, 107, 2, 33, 809, 129, 86], [1365, 1066, 2, 4069, 1365, 1066, 2, 4069], [566, 31, 10, 205, 242, 148, 566, 31, 10, 205, 242, 148], [295, 255, 1476, 7784, 5007, 5008, 295, 255, 1476, 7785, 5007, 5008], [193, 30, 2716, 55, 21, 942, 257, 3, 115, 7786, 1737, 98, 257, 7, 257, 7, 355, 4070, 80, 30, 175, 886, 167, 30, 1993, 3044, 85, 47, 39, 106, 151], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [168, 20, 1803, 51, 1804, 42, 584, 8, 84, 2, 647, 2115, 1804, 44, 38, 141, 4071, 4, 15, 168, 20, 1803, 51, 1804, 42, 584, 8, 84, 2, 647, 2115, 1804, 44, 38, 141, 4071, 4, 15], [747, 4072, 4073, 202, 675, 32, 747, 4072, 4073, 202, 675, 32, 56, 7787, 146, 54, 4072, 4073, 202, 675, 32, 1805], [500, 245, 31, 500, 245, 31], [155, 204, 210, 28, 6, 290, 210, 30, 283, 155, 204, 3, 347, 790, 2269, 7, 3045, 98, 30, 4074, 37], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [339, 121, 339, 121], [27, 2, 239, 1657, 27, 2, 239, 1657], [117, 8, 164, 127, 4075, 456, 451, 117, 460, 38, 8, 141, 164, 3, 127, 4075, 456, 265, 284, 38, 141, 11, 3, 887, 2717, 600, 42, 426, 3, 179, 266, 3046, 7788, 7, 264, 456, 43, 867, 4075, 2, 112, 284, 38, 8, 141, 164, 444, 39, 612, 366, 158, 23, 23, 6, 4076, 3, 117, 5009, 3, 4077, 53, 284, 199, 23, 3047, 53, 7789, 207, 284, 39, 1418, 3, 1597, 1276, 149, 685, 24, 203], [160, 127, 64, 160, 127, 6, 64, 66, 28, 5010, 5011, 9, 197, 65, 141, 84, 2, 132, 39, 23, 127, 43, 499, 2270, 1239, 6, 357, 1320, 66, 5010, 5011], [110, 54, 29, 2, 501, 1738, 18, 459, 110, 185, 820, 118, 158, 3, 501, 1738, 7, 172, 39, 110, 54, 29, 14, 2711, 2712, 1530, 1064], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [110, 742, 268, 3, 71, 96, 39, 35, 1667, 80, 36, 1739, 3, 57, 779, 63, 331, 110, 742, 268, 3, 71, 96, 39, 35, 1667, 80, 36, 1739, 3, 57, 779, 63, 331], [57, 196, 1036, 57, 196, 1036], [15, 1423, 7, 939, 88, 1121, 31, 7790, 484, 5012, 111, 83, 47, 38, 1121, 31, 748, 15, 1423, 7, 939, 88, 311, 2, 484, 5012, 10, 1122, 3419, 7, 44, 484, 6, 8, 989, 399, 10, 15, 1423, 943, 31, 521, 2, 131, 915, 460, 149, 594, 131, 674, 2271, 1091, 3048, 42, 8, 357, 1320, 36, 15, 1423, 2, 1067, 30, 21, 939, 88, 7, 2718, 7791, 4, 83, 3049, 409, 865, 7, 686, 31, 170, 116, 124, 2719, 1477, 51, 7792, 36, 117, 916, 101, 1092, 3, 31, 44, 2494, 32, 350, 4, 15, 1093, 884, 158, 939, 989, 15, 1423, 101, 1890, 44, 3, 915, 42, 4, 273, 4078, 3047, 233, 184, 5013, 2720, 284, 42, 8, 989, 3050, 268, 66, 3, 1594, 52, 2116, 241, 95, 548, 7, 250, 2, 1740, 3, 1886, 1206, 748, 15, 1423, 935, 7, 939, 749, 21, 141, 1890, 44, 3, 31, 65, 244, 4, 160, 1037, 112, 1272, 990, 10, 47, 1890, 3, 179, 2272, 30, 1122, 944, 20, 7, 15, 1423, 1994, 18, 165, 933, 160, 3049, 53, 613, 35, 39, 326, 37, 1210, 36, 15, 1423, 52, 4, 3, 181, 549, 1886, 1206, 21, 664, 44, 3, 484, 11, 1122, 7793, 38, 141, 399, 10, 53, 21, 6, 5014, 3, 5015, 341, 2117, 67, 3, 73, 484, 6, 8, 399, 10, 15, 1423, 284, 42, 8, 516, 1995, 18, 23, 119, 207, 51, 3, 160, 1122, 5016, 24, 88, 1421, 944, 7794, 3051, 441, 351, 991, 10, 1272, 23, 1121, 664, 2, 38, 141, 1478, 569, 1477, 47, 54, 3, 1122, 5016, 484, 549, 2, 43, 331, 2, 15, 935, 101, 207, 44, 284, 39, 70, 21, 10, 15, 1423, 52, 1739, 39, 1273, 77, 2, 11, 496, 3, 484, 222, 106, 47, 38, 72, 1122, 522, 4, 3420, 62, 106, 35, 479, 80, 2, 100, 732, 30, 130, 746, 484, 6, 268, 2118, 47, 39, 648, 106, 23, 10, 865, 52, 7, 276, 2116, 1036, 44, 21, 507, 47, 39, 2114, 21, 2, 160, 7, 165, 3049], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 74, 56, 410, 416, 512, 1153, 913, 682, 2721, 1154, 665, 18, 3, 123, 37, 530, 54, 2, 528, 7, 211, 140, 407, 36, 3, 40, 142, 2, 176, 2, 2721, 103, 18, 481, 8, 303, 57, 333, 695, 449, 695, 225, 20, 186, 263, 160, 127, 449, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 79, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 8, 614, 85, 23, 2720, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 8, 15, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 8, 15, 85, 74, 39, 21, 43, 945, 454, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [61, 94, 1668, 1668, 48, 531, 75, 112, 12, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 266, 152, 48, 9, 16, 9, 17, 51, 187, 21, 170, 49, 105, 10, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 89, 48, 38, 81, 60, 16, 16, 9, 17, 81, 60, 202, 9, 16, 9, 17, 48, 129, 156, 86, 57, 17, 16, 9, 17, 194, 281, 4, 17, 16, 9, 17, 282, 25, 17, 16, 9, 17, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 256, 298], [27, 2, 95, 158, 15, 55, 101, 1, 1, 49, 27, 2, 95, 158, 33, 15, 32, 516, 3, 391, 13, 59, 8, 2495, 1, 1, 54, 1480, 10, 343, 307, 935], [79, 13, 25, 79, 13, 25], [1040, 383, 7795, 7796, 236, 98, 5017, 24, 868, 383, 1206, 3, 376, 197, 63, 1478, 1, 1367, 7, 4079, 7797, 6, 163, 1, 172, 283, 32, 6, 2119, 1, 185, 35, 14, 1040, 283, 73, 108], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [27, 2, 176, 2, 74, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2273, 2274, 111, 2273, 2274], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 1806, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2273, 2274, 55, 5018, 7798, 111, 2273, 2274, 55], [54, 173, 1368, 10, 254, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 2273, 2274, 55], [26, 397, 792, 37, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 7799, 7800, 3052, 2273, 2274, 111, 2273, 2274], [27, 2, 46, 2, 2496, 56, 4080, 4081, 182, 213, 130, 155, 204, 117, 107, 146, 55, 123, 2722, 4, 2, 87], [25, 3, 13, 11, 3053, 3054, 10, 181, 14, 13, 255, 3053, 3054, 181, 2, 25, 14, 73, 13, 2, 120], [13, 7801, 26, 55, 1, 1, 14, 132, 7, 25, 33, 13, 11, 26, 52], [2497, 217, 683, 562, 7, 217, 6, 172, 4, 205, 242, 1042, 2498, 1240, 2497, 217, 683, 562, 7, 217, 6, 172, 4, 205, 242, 1042, 2498, 1240], [619, 497, 8, 285, 192, 190, 1669, 52, 560, 497, 42, 45, 494, 14, 114, 619, 497, 8, 285, 192, 190, 1669, 52, 560, 497, 42, 45, 494, 14, 114], [123, 342, 5019, 2723, 2724, 123, 342, 5019, 2723, 2724], [363, 183, 946, 249, 7, 2, 33, 457, 28, 32, 54, 2, 189, 2725, 11, 600, 249, 363, 183, 946, 249, 7, 2, 33, 457, 28, 32, 54, 2, 189, 2725, 11, 600, 249], [3, 646, 39, 8, 43, 1014, 11, 472, 208, 21, 1, 1, 246, 35, 363, 50, 2, 114, 472, 646, 39, 8, 43, 1014, 11, 23, 472], [5020, 2, 100, 333, 173, 30, 130, 445, 67, 8, 134, 56, 182, 213, 130, 155, 204, 117, 107, 146, 5020, 2, 100, 333, 173, 30, 130, 445, 67, 8, 134], [27, 2, 46, 2, 162, 20, 27, 2, 46, 2, 162, 20], [378, 38, 141, 27, 2, 29, 33, 7802, 681, 11, 567, 540, 1315, 10, 116, 1425, 85, 106, 54, 2, 106, 2, 7803, 5018, 7804, 49, 7805, 7806, 243, 550, 29, 2, 116, 208], [191, 217, 8, 45, 191, 217, 8, 45], [260, 20, 15, 374, 37, 111, 1, 1, 2726, 479, 2, 236, 2499, 4, 260, 20, 30, 131, 221, 1, 1, 3421, 5021, 3421, 2727, 888, 2727, 888, 1, 1, 49, 164, 96, 37, 71], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [14, 25, 33, 15, 7, 547, 13, 1089, 2, 66, 8, 1996, 1116, 5022, 5023, 988, 501, 191, 24], [535, 9, 345, 507, 55, 1, 1, 535, 9, 345, 507, 62, 110, 39, 9, 345, 100, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135, 750], [175, 1891, 11, 5024, 5025, 821, 65, 141, 495, 175, 1891, 11, 5024, 5025, 821, 65, 141, 495], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 1009, 6, 274, 41, 1009, 6, 274], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [73, 13, 255, 32, 56, 5026, 5027, 73, 13, 255, 32, 56, 5026, 5027, 13, 255, 23, 32, 9, 345, 507, 223, 6, 1997, 4, 5028, 7, 4082, 1481], [114, 233, 681, 6, 8, 1180, 4, 457, 167, 114, 233, 864, 6, 8, 1534, 4, 33, 457, 167], [74, 123, 31, 136, 74, 751, 947, 751, 39, 9, 345, 326, 993], [27, 2, 100, 15, 26, 329, 4, 174, 573, 637, 4, 2, 76, 194, 49, 27, 2, 46, 2, 15, 21, 3422, 792, 37], [79, 32, 64, 79, 32, 64], [87, 381, 55, 1, 1, 269, 80, 662, 3, 87, 381, 615, 5029, 21, 6, 8, 1805, 1, 1, 1, 1, 1, 1, 1, 1, 135], [41, 218, 218, 174, 41, 218, 218, 174], [39, 8, 46, 87, 208, 21, 1, 1, 39, 8, 46, 3, 87, 246, 35, 363, 50, 2, 114, 21], [2728, 948, 65, 141, 2500, 53, 1321, 192, 3423, 850, 368, 7, 35, 38, 9, 3423, 1121, 2728, 948, 65, 141, 2500, 53, 1321, 192, 3423, 850, 368, 7, 35, 38, 9, 3423, 1121], [27, 2, 189, 186, 249, 39, 176, 917, 67, 39, 644, 537, 136, 91, 377, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 249, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 91, 377], [15, 26, 32, 64, 15, 26, 32, 64], [27, 2, 75, 463, 309, 1670, 7807, 7808, 49, 291, 292, 2729, 27, 2, 75, 463, 309, 1670, 3055, 1998, 71, 27, 2, 75, 463, 309, 1670, 111, 1999, 987, 613, 49, 27, 2, 75, 463, 7, 164, 96, 1535, 187, 25, 1480, 716, 273, 179, 31, 7809, 14, 50, 988, 18, 149, 24, 2501, 7810, 1322, 7], [24, 57, 2, 1599, 86, 7811, 7812, 83, 1, 1, 14, 50, 2, 236, 98, 3, 57, 29, 2, 33, 1599, 918, 793, 86, 1, 1, 1, 135], [58, 94, 361, 48, 531, 75, 112, 12, 124, 105, 12, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 12, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 95, 4, 2, 338, 27, 2, 95, 4, 2, 338], [87, 37, 329, 637, 4, 87, 37, 329, 637, 4], [1205, 660, 88, 400, 1205, 660, 88, 400], [27, 2, 29, 1590, 681, 27, 2, 29, 1590, 681], [148, 6, 343, 278, 143, 2275, 5030, 100, 6, 5031, 7, 4083, 3424, 148, 6, 343, 278, 143, 2275, 5030, 100, 6, 5031, 7, 4083, 3424], [34, 70, 10, 258, 34, 70, 10, 258], [327, 315, 160, 7, 54, 15, 70, 3425, 77, 11, 567, 655, 146, 11, 2117, 47, 99, 43, 327, 315, 160, 7, 54, 15, 70, 3425, 77, 11, 567, 655], [361, 29, 277, 7, 277, 696, 75, 12, 124, 105, 10, 361, 29, 277, 7, 277, 696, 75, 12, 124, 105, 10], [54, 13, 25, 54, 13, 25], [210, 30, 492, 1151, 10, 383, 11, 1741, 210, 30, 492, 1151, 10, 383, 11, 1741], [82, 418, 8, 267, 2, 58, 516, 1243, 76, 6, 267, 82, 418, 8, 267, 2, 58, 516, 1243, 76, 6, 267], [41, 88, 42, 290, 31, 30, 41, 7, 88, 10, 161, 86, 7, 1742, 1, 1, 331, 36, 33, 383, 1, 135], [54, 15, 13, 25, 11, 54, 15, 13, 25, 11], [110, 54, 299, 11, 3, 205, 242, 7, 686, 3426, 18, 88, 2, 106, 241, 949, 205, 869, 7, 520, 99, 54, 29, 2, 3, 520, 7, 2502, 220, 11, 130, 690, 1, 1, 1017, 2276, 1, 854, 120, 188, 309, 7, 1600, 1671, 1, 356, 1, 1, 24, 203, 1807, 986, 90, 1277], [318, 195, 42, 27, 2, 528, 822, 503, 173, 10, 417, 20, 24, 314, 318, 195, 42, 27, 2, 528, 822, 503, 173, 10, 417, 20, 24, 314, 3, 31, 6, 1800, 442, 2, 3, 119, 912, 11, 2503, 528, 47, 54, 2, 398, 210, 510, 53, 23, 6, 1278, 805, 149, 415, 195, 507, 494, 83, 7813, 6, 3, 503, 145, 2000, 171, 11, 3, 780, 101, 2, 2730, 503, 131, 4, 15, 15, 7, 21, 6, 601, 2, 43, 1601, 2, 780, 2271, 11, 83, 503, 442, 7814, 158, 15, 716, 3, 733, 417, 822, 171, 36, 44, 171, 526, 91, 123, 2, 90, 29, 183, 11, 318, 195, 1892, 53, 3, 415, 195, 1089, 2, 38, 534, 29, 2, 21, 135], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [27, 2, 384, 245, 10, 24, 794, 383, 27, 2, 384, 245, 10, 24, 794, 383], [79, 13, 25, 79, 13, 25], [168, 20, 1244, 5032, 5033, 5034, 5035, 950, 951, 168, 20, 1244, 5032, 5033, 5034, 5035, 950, 951], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [1202, 98, 376, 5036, 1369, 1602, 1202, 98, 376, 5036, 1369, 1602], [620, 5037, 72, 5038, 422, 823, 1369, 1602, 620, 5037, 72, 5038, 422, 823, 1369, 1602], [295, 255, 47, 2277, 2278, 295, 255, 47, 2277, 2278], [691, 64, 55, 691, 7815, 4084, 4085, 6, 64, 77, 18, 283, 142, 49, 867, 23, 71, 10, 283, 1155, 14, 50, 5039, 5040, 994, 7816], [27, 2, 122, 2, 728, 155, 27, 2, 122, 2, 728, 155], [211, 128, 126, 211, 128, 126], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [34, 70, 34, 70], [15, 26, 32, 132, 15, 26, 32, 132], [97, 29, 621, 340, 2001, 212, 384, 2001, 212, 318, 37, 51, 1426, 2, 31, 621, 340, 29, 1, 23, 6, 3, 229, 63, 1118, 2, 199, 1, 7817], [28, 219, 50, 2, 46, 2, 3, 24, 76, 28, 219, 50, 2, 46, 2, 3, 24, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 1, 28, 328, 180, 6, 172, 5041, 5042, 46, 2, 3, 15, 26, 1, 31, 321], [54, 2, 1422, 2279, 18, 1033, 54, 2, 1422, 2279, 18, 1033], [15, 26, 13, 25, 15, 26, 13, 25], [73, 101, 222, 8, 399, 10, 553, 440, 36, 338, 73, 101, 7, 120, 222, 8, 399, 10, 553, 440, 36, 338, 10, 405, 3, 547, 440, 36, 338, 622, 464, 3, 440, 273, 429, 3, 376, 101, 131, 54, 2, 4086, 3, 73, 101, 131, 1, 1, 73, 120, 222, 42, 534, 399, 10, 15, 1, 1, 86, 630, 656], [57, 2120, 323, 343, 3056, 51, 5043, 2, 245, 57, 2120, 323, 343, 3056, 51, 5043, 2, 245, 1, 267, 2, 3, 28, 52, 137, 487, 1, 1524, 3, 2120, 889, 1, 635, 3, 28, 2, 114, 172, 1, 28, 328, 83, 6, 494, 172, 1, 31, 321], [25, 224, 11, 5044, 5045, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5044, 5045, 137, 13, 125, 20, 13, 25], [142, 4, 3, 145, 2002, 6, 75, 14, 398, 142, 4, 3, 145, 2002, 6, 75, 14, 398], [142, 6, 75, 4, 3, 376, 3057, 594, 14, 398, 11, 15, 142, 6, 75, 4, 3, 376, 3057, 594, 14, 398, 11, 15], [28, 219, 73, 279, 140, 13, 28, 219, 73, 279, 140, 13], [378, 74, 133, 102, 2, 1743, 55, 479, 2, 122, 33, 1427, 2, 74, 1743, 4, 190, 3, 177, 167, 554, 530, 54, 1279, 2, 122, 2, 23, 74, 36, 3, 52, 718, 458], [110, 97, 118, 1186, 3, 58, 10, 33, 115, 110, 97, 118, 1186, 3, 58, 10, 33, 115], [378, 46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [1808, 13, 11, 3, 459, 27, 2, 46, 2, 3, 459], [14, 25, 33, 26, 13, 28, 59, 7818], [54, 2, 280, 621, 1280, 1068, 29, 54, 2, 280, 621, 1280, 1068, 29], [1237, 3058, 7, 303, 7819, 225, 418, 365, 483, 1, 1, 14, 525, 30, 31, 96, 1, 1, 1, 1, 51, 1603, 2, 239, 3, 5046, 225, 20, 23, 664, 339, 1, 1, 14, 50, 1, 1, 450], [41, 855, 100, 41, 855, 100], [82, 20, 1428, 836, 116, 2, 463, 31, 6, 5047, 1892, 169, 124, 5048, 1, 1007, 2, 1809, 2, 82, 20, 1893, 101, 2, 114, 10, 32], [1069, 302, 4, 41, 2280, 97, 91, 143, 18, 3, 1069, 4, 41, 245, 3427, 4, 3, 239], [79, 13, 25, 79, 13, 25], [97, 122, 2, 58, 1123, 4, 1153, 97, 29, 15, 1153, 58, 824, 318, 58, 254, 29, 6, 45, 494, 1124, 7820, 890, 7821, 25, 273, 5049, 443, 195, 952, 138], [307, 520, 719, 5050, 89, 8, 134, 5051, 5050, 8, 45], [131, 81, 11, 190, 131, 81, 11, 190], [78, 5052, 651, 12, 190, 271, 6, 75, 112, 10, 78, 5052, 651, 12, 190, 271, 6, 75, 112, 10], [190, 24, 1669, 3428, 734, 5053, 112, 49, 105, 10, 190, 24, 1669, 3428, 734, 5053, 112, 49, 105, 10], [32, 64, 32, 64], [27, 2, 392, 4, 2, 3, 76, 110, 49, 8, 84, 2, 392, 1186, 76, 30, 33, 28, 56, 7, 13, 21, 530, 626, 13, 67, 21, 6, 3, 197, 820, 199], [299, 523, 4, 3059, 9, 982, 1894, 138, 3060, 221, 138, 52, 56, 3060, 28, 56, 7822, 7823, 271, 90, 953, 233, 9, 1094, 469, 149, 28, 16, 9, 16, 595, 93, 95, 91, 96], [2731, 405, 443, 1069, 2731, 405, 443, 1069], [52, 3061, 11, 4087, 5054, 7824, 208, 491, 47, 275, 52, 638, 11, 4087, 5054, 1810, 4, 212, 10, 3, 177, 142, 142, 56, 5055, 200, 1018, 9, 7825, 416, 222, 2121, 14, 106, 3, 807, 7, 778, 10, 307, 935, 30, 450], [27, 2, 46, 2, 115, 32, 64, 77], [307, 29, 2, 5056, 5057, 659, 111, 185, 35, 14, 50, 169, 72, 37, 71, 78, 659, 97, 410, 143, 5058, 2, 7826, 672, 9, 5059, 36, 283, 672, 9, 672, 1482, 285, 343, 307], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 1895, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 1895, 262, 22, 4, 5, 19, 12], [324, 171, 1211, 982, 167, 790, 2259, 98, 324, 171, 1211, 982, 167, 790, 2259, 98, 1, 23, 6, 1278, 4088, 30, 1125, 324, 440, 1892, 4089, 443, 1482, 42, 275], [211, 168, 20, 2723, 2724, 211, 168, 20, 2723, 2724], [29, 2, 1798, 3429, 1798, 40, 14, 269, 29, 2, 96, 254, 2, 239, 3, 610, 1, 1798, 3429, 1798], [58, 94, 190, 48, 6, 75, 112, 5060, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 5060, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2281, 271, 12, 190, 58, 6, 75, 190, 2281, 271, 12, 190, 58, 6, 75, 28, 3062, 83, 3, 529, 42, 75, 15, 41, 155, 2504], [40, 369, 286, 375, 6, 40, 369, 286, 375, 6], [270, 1809, 8, 2122, 55, 1, 1, 622, 3, 96, 167, 554, 1, 1, 1, 1, 1156], [40, 553, 1184, 463, 10, 78, 6, 313, 511, 1035, 6, 112, 10, 40, 553, 1184, 463, 10, 78, 6, 313, 511, 1035, 6, 112, 10], [457, 39, 8, 45, 457, 1019, 3, 442, 3, 136, 183, 1014, 3, 3430, 107, 67, 114, 3, 15, 7827, 9, 131, 39, 114, 363, 50], [168, 20, 89, 8, 70, 541, 2123, 168, 20, 89, 8, 70, 541, 2123], [308, 586, 3, 527, 287, 18, 28, 59, 5061, 2, 5062, 437, 218, 308, 586, 3, 527, 287, 18, 28, 59, 5061, 2, 5062, 437, 218], [193, 30, 5063, 55, 3, 32, 5063, 6, 511, 64, 77, 3, 28, 97, 95, 10, 3, 52, 14, 50, 3431, 3432, 2282, 1604], [60, 94, 361, 1212, 24, 262, 1187, 1212, 856, 618, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [457, 1536, 592, 7828, 89, 8, 134, 37, 71, 51, 335, 2, 100, 3, 652, 1, 652, 639, 1, 35, 97, 322, 3, 1605, 652, 1, 709, 1, 1472, 131, 6, 346, 62, 1213, 63, 8, 2495, 66, 217, 1, 1, 2505, 65, 1095, 2, 517, 919, 91, 163, 181, 30, 3, 222], [672, 982, 4090, 3063, 3064, 55, 14, 509, 175, 366, 781, 35], [54, 519, 870, 11, 33, 148, 54, 519, 870, 11, 33, 148], [370, 74, 1811, 9, 345, 1370, 370, 74, 1811, 9, 345, 1370], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [79, 64, 111, 177, 28, 59, 5064, 6, 64, 611, 50, 28, 59, 7829], [131, 97, 43, 1606, 131, 97, 43, 1606, 3, 348, 6, 12, 175, 4091, 348, 56, 7830, 287, 42, 331, 36, 7831, 287, 42, 2106, 4, 1607, 7, 362, 1149], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [15, 5065, 5066, 3065, 4092, 1043, 5067, 15, 5065, 5066, 3065, 4092, 1043, 5067, 1, 1, 5068, 53, 28, 486, 4, 257, 14, 622, 2, 7832, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 513, 169, 1483, 13, 10, 13, 125, 20, 27, 2, 513, 169, 1483, 13, 10, 13, 125, 20, 129, 107, 513, 481, 42, 8, 5069, 4, 3, 513, 218, 14, 114], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [74, 31, 104, 173, 185, 8, 43, 727, 311, 2, 72, 37, 10, 40, 1020, 10, 227], [82, 1323, 31, 1371, 915, 11, 82, 20, 39, 304, 91, 377, 11, 1154], [191, 217, 8, 45, 55, 1, 1, 191, 217, 3066, 4093, 8, 45, 4, 33, 142, 1, 1, 30, 450], [73, 13, 8, 45, 4, 76, 55, 1, 1, 39, 35, 14, 50, 80, 2, 995, 73, 13, 2, 33, 32, 1, 1, 576, 38, 274, 33, 13, 184, 1067, 241, 7833, 62, 207, 1, 276, 112, 44, 21, 89, 8, 134, 1, 1, 33, 7834, 6, 44, 3, 73, 13, 63, 3, 179, 265, 4, 3, 887, 1324, 1311, 62, 207, 1, 1, 479, 2, 95, 158, 13, 125, 20, 13, 120, 67, 573, 143, 2732, 1, 1, 1, 1, 5070, 450], [363, 946, 249, 7, 2, 33, 28, 56, 5071, 35, 54, 2, 189, 2725, 11, 1325, 249, 363, 946, 249, 7, 2, 33, 28, 56, 5071, 35, 54, 2, 189, 2725, 11, 1325, 249], [1009, 98, 33, 1608, 236, 11, 245, 111, 21, 4094, 1, 1, 259, 265, 2, 1372, 384, 104, 295, 11, 1009, 98, 33, 1608, 236, 11, 245, 1, 1, 1, 363, 326, 33, 96, 853, 1, 1, 340, 7, 131, 1214, 36, 104, 200, 153, 6, 275, 2, 280, 57, 10, 104, 235, 108, 99, 199, 340, 1, 1, 6, 23, 108, 24, 868, 917, 1, 1, 6, 23, 857, 18, 104, 376, 108, 917, 1, 1, 68, 16, 14, 1088, 24, 131, 65, 141, 1157, 36, 3, 376, 108, 544, 480, 280, 36, 609, 181, 1091, 672, 837, 1, 1, 11, 508, 108, 14, 552, 631, 455, 1281, 66, 120, 2, 3, 404, 20, 34, 7835, 1, 1, 14, 1088, 3, 108, 6, 24, 495, 11, 57, 280, 1, 1, 68, 21, 6, 8, 24, 495, 108, 14, 129, 3, 237, 1, 1, 11, 50, 30, 480, 280, 10, 508, 108, 14, 129, 3, 108, 69, 35, 183, 622, 2, 3, 5072, 1738, 11, 1477, 1, 1, 65, 3, 480, 280, 141, 402, 10, 104, 108, 917, 649, 1, 1, 1, 135], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [735, 570, 314, 208, 83, 39, 35, 50, 2, 735, 3, 570, 314, 18, 4095, 11], [27, 2, 46, 2, 79, 27, 2, 46, 2, 79], [1215, 2506, 102, 7836, 55, 1, 1, 38, 891, 2, 312, 481, 4, 33, 15, 623, 67, 326, 972, 1, 14, 386], [82, 20, 909, 31, 7837, 7838, 124, 291, 292, 7839, 550, 82, 20, 909, 31, 208, 491, 3067, 14, 326, 96, 3, 464, 18, 82, 20, 31, 2733, 514, 909, 14, 50, 80, 2, 353, 3, 179], [27, 2, 95, 4, 2, 128, 126, 27, 2, 95, 4, 2, 128, 126], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 1216, 98, 440, 10, 149, 7, 1148, 681, 27, 2, 1216, 98, 440, 10, 149, 7, 1148, 681, 4, 338], [25, 195, 13, 25, 195, 13], [403, 704, 637, 4, 2, 1590, 212, 403, 704, 637, 4, 2, 1590, 212], [1070, 10, 15, 26, 547, 548, 1070, 10, 15, 26, 547, 548], [13, 25, 102, 13, 25, 102], [238, 1034, 10, 90, 113, 892, 6, 75, 112, 124, 238, 1034, 10, 90, 113, 892, 6, 75, 112, 124, 1, 954, 3433, 2507, 60, 59, 6, 7840], [13, 25, 13, 25], [14, 525, 5073, 5074, 4, 637, 158, 260, 20, 36, 88, 91, 163, 167, 554, 180, 63, 27, 2, 29, 137, 283, 79, 871, 14, 525, 5073, 5074, 4, 637, 158, 260, 20, 36, 88, 91, 163, 167, 554, 180, 63, 27, 2, 29, 137, 283, 79, 871], [41, 984, 10, 235, 1484, 41, 984, 10, 235, 1484], [893, 672, 10, 86, 500, 30, 41, 893, 672, 10, 86, 500, 30, 41], [41, 984, 31, 41, 984, 31], [27, 2, 326, 2731, 10, 15, 27, 2, 326, 2731, 10, 15], [162, 20, 8, 45, 3, 162, 20, 297, 10, 3, 1812, 347, 3068, 2, 1896, 167, 51, 100, 3, 1418, 7, 7841, 681, 7, 89, 680, 39, 8, 239, 143, 1418, 915], [41, 99, 8, 100, 110, 49, 27, 2, 100, 41, 49, 164, 3, 37, 71, 1, 73, 2508, 347, 11, 3, 1117, 97, 43, 350, 1, 1, 38, 248, 1801, 3, 142, 1, 38, 248, 937, 41, 4, 2003, 1042, 1, 38, 248, 137, 3, 736, 733, 11, 41, 1, 1, 14, 386], [54, 29, 2, 15, 5075, 54, 29, 2, 5075, 2, 322, 1537, 11, 21, 570, 1672, 330, 653, 7, 268, 23, 29, 12, 3, 591, 18, 29, 664, 2, 43, 1326, 257, 54, 66], [13, 25, 11, 5076, 5077, 13, 25, 11, 5076, 5077], [768, 4096, 651, 12, 90, 6, 75, 112, 124, 768, 4096, 651, 12, 90, 6, 75, 112, 124, 238, 1609, 4096, 10, 3069, 7, 4097, 6, 75, 112, 124], [32, 602, 7, 54, 2, 132, 32, 602, 7, 54, 2, 132], [5078, 10, 34, 9, 5078, 10, 34, 9], [162, 20, 414, 392, 4, 162, 20, 705, 27, 2, 91, 414, 2734, 335, 2, 29, 7, 384, 167, 96, 21, 99, 8, 1044, 77, 18, 23, 239, 1, 1, 1, 1, 1, 1, 1, 135], [76, 13, 8, 45, 611, 295, 2, 353, 23, 123], [8, 84, 2, 322, 632, 4, 3, 555, 810, 4, 128, 126, 8, 84, 2, 322, 632, 4, 3, 555, 810, 4, 128, 126, 91, 163, 684], [307, 57, 1813, 111, 330, 72, 7842, 2509, 10, 3, 3434, 12, 3, 591, 18, 330, 283, 41, 4, 33, 41, 67, 172, 21, 1326, 330, 268, 72, 57, 44, 21, 63, 172, 2106, 10, 128, 126, 67, 526, 91, 1096, 51, 413, 10, 3, 229, 39, 38, 283, 57, 1368, 294], [29, 2, 5079, 223, 128, 126, 2735, 2736, 5079, 53, 113, 120, 4, 90, 38, 1312, 911, 102, 29, 2, 283, 128, 126, 2, 586, 1673, 481, 389, 21, 6, 357, 584, 53, 332, 181, 96, 3070, 3071, 49, 550, 2735, 2736, 128, 126, 11, 191, 2483, 99, 43, 4098, 11, 540, 7843, 35, 264, 1674, 98, 10, 23, 2, 91, 68, 151, 42, 143, 287, 35, 54, 7844, 2718, 2737, 7, 949, 120, 181, 49, 3070, 3071, 2735, 2736, 128, 126, 11, 191, 2483, 99, 43, 4098, 11, 540, 2735, 2736, 32, 65, 141, 584, 36, 3, 202, 675, 423, 128, 126, 11, 191, 99, 43, 4098, 11, 540, 35, 243, 3, 2510, 1097, 18, 83, 481, 1071, 2, 423, 128, 126, 11, 191, 68, 35, 246, 265, 2, 504, 505, 2511, 3, 483, 5080, 1538, 35, 39, 586, 1429, 481, 2, 517, 271, 35, 39, 183, 129, 104, 718, 2, 3072, 3435, 2, 517, 128, 126, 11, 191, 1097, 169, 540, 2735, 2736, 128, 126, 11, 191, 99, 43, 2124, 584, 465, 2, 2735, 2736, 128, 126, 11, 191, 12], [97, 100, 333, 287, 36, 40, 838, 5081, 780, 628, 780, 839, 7, 5082, 5083, 39, 97, 100, 333, 287, 36, 40, 838, 5081, 780, 628, 780, 839, 7, 5082, 5083, 39, 287, 42, 278, 2, 100, 62, 99, 7845], [97, 176, 2, 1610, 426, 33, 809, 10, 1814, 97, 176, 2, 1610, 426, 33, 809, 10, 1814], [97, 176, 36, 79, 30, 73, 115, 63, 355, 1118, 97, 176, 36, 79, 30, 73, 115, 63, 355, 1118], [1526, 519, 31, 10, 1526, 519, 31, 10], [25, 224, 11, 4099, 4100, 137, 13, 125, 20, 13, 25, 421], [25, 3, 13, 11, 4099, 4100, 10, 15, 2502, 15, 402], [41, 6, 278, 41, 6, 278], [89, 3, 76, 5084, 3, 973, 18, 131, 44, 39, 43, 1675, 89, 3, 76, 5084, 3, 973, 18, 131, 44, 39, 43, 1675], [1203, 439, 34, 9, 65, 141, 625, 2, 5085, 5086, 7846, 7847, 246, 265, 2, 1203, 3, 71, 439, 34, 9, 65, 141, 625, 2, 5085, 5086], [13, 25, 13, 25], [32, 1061, 64, 77, 32, 1061, 64, 77, 1, 59, 274, 36, 24, 2, 24], [13, 25, 13, 25], [32, 64, 32, 64], [403, 85, 683, 89, 3436, 3437, 65, 3436, 3437, 65, 683], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [13, 119, 102, 13, 119, 102], [205, 869, 611, 2125, 205, 869, 611, 2125], [25, 3, 13, 11, 5087, 5088, 10, 15, 160, 1245, 110, 27, 2, 46, 15, 52, 82, 20, 26], [1808, 46, 136, 11, 338, 1808, 46, 136, 11, 338], [25, 15, 26, 13, 11, 5089, 25, 15, 26, 13, 11, 5089], [27, 2, 46, 2, 3, 459, 1808, 691, 13], [25, 224, 11, 5087, 5088, 137, 13, 125, 20, 13, 25, 53, 332, 52, 2512, 172, 38, 25, 3, 13, 67, 356, 27, 2, 46, 15, 52, 26], [1808, 691, 13, 27, 2, 46, 2, 3, 459], [13, 25, 11, 5090, 5091, 4, 1045, 13, 25, 11, 5090, 5091, 4, 1045], [27, 2, 199, 3438, 2004, 86, 11, 87, 497, 27, 2, 199, 3438, 2004, 86, 11, 87, 497], [2513, 181, 2514, 36, 623, 571, 18, 1815, 631, 2513, 181, 2514, 36, 623, 571, 18, 1815, 631, 118, 1676, 181, 2514, 11, 1430, 631, 36, 623, 1744, 67, 284, 38, 141, 402, 836, 1311], [128, 126, 584, 136, 55, 3, 28, 7848, 2283, 584, 136, 36, 128, 126, 576, 6, 285, 2713, 23, 136], [128, 126, 48, 102, 55, 39, 35, 206, 3, 195, 96, 2, 53, 101, 1066, 2, 3, 7849, 580, 264, 38, 3435, 195, 96, 39, 38, 1158, 29, 7850, 7851, 3073, 3074, 1897, 1898, 7852, 7853, 4101, 4102, 7854, 7855, 7856, 7857, 7858, 7859, 5092, 5093, 4103, 4104, 7860, 7861], [25, 3, 13, 11, 7862, 7863, 10, 15, 160, 15, 169, 1009, 73, 3439, 13, 1431, 29, 15, 454, 458, 1373, 1282, 11, 44], [7864, 36, 190, 113, 113, 54, 4, 7865, 3, 179, 15, 7866, 55, 83, 33, 7867, 7868, 7, 7869, 54, 11, 3, 710, 4105, 15, 3440, 11, 113, 113, 454], [193, 30, 212, 3436, 3437, 193, 30, 212, 3436, 3437], [27, 2, 46, 2, 15, 2515, 13, 25, 524], [27, 2, 46, 2, 115, 1808, 691, 13], [27, 2, 1539, 7, 280, 87, 381, 27, 2, 1539, 7, 280, 87, 381], [1327, 623, 4, 37, 233, 1327, 623, 4, 37, 233, 14, 386, 709, 11, 37, 7, 715, 623], [280, 2126, 2005, 255, 162, 3441, 3441, 5094, 2516, 2517, 280, 2126, 2005, 255, 162, 3441, 3441, 5094, 2516, 2517], [223, 460, 7870, 5095, 5096, 851, 5095, 5096, 851, 223, 142, 29, 6, 2006, 14, 90, 911, 29, 251, 510, 283, 372, 483, 30, 24, 6], [5097, 58, 94, 541, 858, 4, 7871, 5097, 58, 94, 541, 858, 2504, 7, 155, 600, 42, 952, 129], [82, 20, 429, 71, 2, 83, 195, 18, 596, 687, 169, 3, 397, 112, 82, 20, 195, 18, 596, 687, 1092, 44, 82, 20, 429, 71, 169, 3, 397, 442, 2, 3, 78, 40, 474, 78, 1, 14, 91, 163, 71], [14, 32, 2005, 1540, 148, 255, 4106, 162, 840, 4107, 32, 255, 5098, 5099, 6, 202, 14, 2518, 7872, 14, 1540, 148, 255, 175, 162, 840, 4107, 32, 255, 5098, 5099, 6, 202, 14, 7873, 1611, 66, 4101, 4102, 331, 2738, 3075, 2, 1485, 1486, 704, 243, 14, 32, 2005, 1540, 148, 255, 4106, 162, 840, 4107, 32, 7874, 7875, 6, 202, 14, 616, 14, 7876, 7, 50, 100, 3, 7877, 44, 410, 556, 227], [149, 120, 1881, 4, 191, 1541, 204, 3, 177, 149, 2519, 97, 91, 3, 149, 120, 1881, 4, 191, 1541, 204, 5100, 5101, 5102, 5103, 5104, 7878, 3442, 3443, 14, 114, 423, 299, 7, 609, 30, 3076, 2, 553], [25, 224, 11, 5105, 5106, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5105, 5106, 137, 13, 125, 20, 13, 25], [193, 30, 1432, 1542, 1543, 193, 30, 1432, 1542, 1543], [295, 255, 1476, 5107, 5108, 2723, 2724, 295, 255, 1476, 5107, 5108, 2723, 2724], [5109, 1433, 480, 74, 47, 5110, 5111, 5109, 1433, 480, 74, 47, 5110, 5111], [640, 214, 2127, 75, 24, 168, 168, 113, 55, 3444, 36, 24, 168, 113, 23, 181, 11, 1544, 44, 47, 38, 640, 214, 2127, 75, 83, 7879, 497, 7, 415, 497, 42, 8, 327, 825, 5112, 2, 92, 11, 663, 7, 11, 7880, 3, 123, 5112, 9], [553, 29, 8, 45, 55, 39, 172, 322, 553, 67, 8, 84, 2, 366, 158, 143, 2739, 91, 96, 464, 37, 51, 1125, 143, 198, 149, 120, 24, 7881, 1487], [553, 29, 11, 149, 2519, 101, 33, 149, 2519, 42, 8, 697, 423, 101, 239, 4, 553, 849, 188, 29, 284, 54, 21, 2, 1216, 131, 548, 39, 35, 14, 920, 188, 29, 11, 5100, 5101, 5102, 5103, 5104, 7882, 3442, 3443], [4108, 5113, 1326, 4108, 5113, 1326, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2520, 55, 54, 104, 50, 33, 87, 5114, 4, 41, 6, 1326, 55, 54, 104, 50, 33, 87, 5114, 4, 41, 6, 1326, 921, 922, 55], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1545, 5115, 37, 71, 28, 6, 8, 3077, 4, 3, 632, 839, 743, 14, 129, 1545, 522, 33, 28, 59, 7883, 356, 3078, 4, 5116, 205, 869, 11, 1328, 1374, 7, 63, 1098, 2, 243, 211, 1545, 217, 400, 4109, 85, 742, 534, 588, 30, 96, 2128, 51, 170, 1545, 7, 322, 33, 79, 28, 56, 7, 79, 13, 384, 177, 37, 71, 28, 6, 8, 3077, 4, 3, 632, 839, 743, 14, 129, 1545, 522], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [214, 2521, 512, 1434, 1240, 259, 9, 345, 133, 406, 214, 2521, 512, 1434, 1240, 259, 9, 345, 133, 406], [14, 280, 28, 5117, 251, 2, 5118, 12, 15, 14, 280, 28, 5117, 251, 2, 5118, 12, 15], [15, 119, 18, 73, 2007, 8, 45, 4, 3445, 469, 5119, 55, 177, 123, 1, 311, 2, 1099, 521, 10, 20, 11, 72, 268, 127, 248, 2, 70, 3, 2007, 4, 3445, 67, 51, 2129, 3, 666, 21, 89, 8, 134, 37, 71, 469, 5119, 97, 43, 274, 7884, 2284, 11, 1019, 143, 5120, 288, 2, 795, 44, 187, 44, 10, 165, 851, 389, 7, 21, 1067, 201, 73, 1677, 6, 44, 47, 38, 72, 127, 327, 1, 15, 131, 4, 732, 21, 6, 1099, 127, 3446, 627, 53, 693], [28, 1811, 3447, 230, 28, 1811, 3447, 230], [5121, 5122, 4, 113, 190, 9, 446, 2, 3, 78, 4, 1046, 7885, 78, 4, 1046, 5121, 5122, 4, 113, 190, 9, 446, 2, 3, 78, 4, 1046, 284, 42, 867, 3, 71], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [419, 88, 88, 419, 88, 88], [29, 2, 254, 55, 1, 1, 308, 102, 2, 583, 29, 2, 254, 1, 1, 3448], [308, 206, 28, 59, 5123, 2, 15, 191, 1899, 101, 4, 404, 20, 20, 308, 206, 28, 59, 5123, 2, 15, 191, 1899, 101, 4, 404, 20, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [527, 438, 346, 51, 504, 377, 527, 438, 346, 51, 504, 377], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [2130, 909, 447, 521, 2, 677, 1318, 4, 88, 2130, 909, 447, 521, 2, 677, 1318, 4, 88], [78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 49, 105, 10, 78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 49, 105, 10], [6, 230, 172, 53, 3, 28, 1359, 6, 230, 172, 53, 3, 28, 1359], [29, 2, 40, 838, 7886, 14, 583, 315, 29, 2, 28, 7887, 11, 218, 779, 4, 3, 1488], [3, 28, 32, 6, 230, 172, 56, 4110, 4111, 182, 213, 130, 155, 204, 117, 107, 146, 3, 28, 32, 6, 230, 172], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [116, 131, 11, 190, 2285, 42, 346, 83, 116, 131, 65, 141, 346, 112, 576, 1272, 5124, 131, 6, 1008, 524, 11, 3, 179, 894, 1329, 7888], [58, 94, 3451, 190, 856, 1159, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [110, 49, 27, 2, 100, 3, 128, 126, 229, 667, 66, 33, 1487, 5125, 56, 7889, 7890, 182, 213, 130, 155, 204, 117, 107, 146, 49, 27, 2, 100, 3, 128, 126, 229, 667, 66, 33, 1487, 5125, 2498, 195, 7891, 128, 126, 24, 203, 841], [39, 8, 1273, 2, 13, 125, 20, 13, 120, 2, 119, 33, 13, 56, 5126, 5127, 182, 213, 130, 155, 204, 117, 107, 146, 39, 8, 1273, 2, 13, 125, 20, 13, 120, 2, 119, 33, 13], [841, 7892, 7893, 55, 611, 206, 33, 56, 4, 2, 23, 101, 183, 54, 2282, 753, 18, 23, 112, 38, 4112, 23, 101, 169, 7894, 5128, 1126, 24, 30, 450], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [939, 174, 41, 14, 269, 222, 18, 3, 31, 4113, 4114, 111, 4113, 4114, 4115, 4116, 4113, 4114, 59], [175, 40, 749, 191, 5129, 5130, 175, 40, 749, 191, 5129, 5130], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [2131, 299, 713, 1678, 2131, 299, 713, 1678], [209, 41, 706, 638, 1031, 384, 62, 320, 475, 112, 2741, 14, 114, 7895, 1100, 265, 7896, 174, 7, 430, 4117, 38, 72, 29, 603, 44, 855, 134, 30, 5131], [34, 70, 10, 258, 34, 70, 10, 258], [397, 792, 37, 10, 15, 26, 397, 792, 37, 10, 15, 26, 28, 7897, 7898, 486, 10, 1155, 18, 28], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [81, 10, 24, 794, 235, 86, 81, 10, 24, 794, 235, 86], [2522, 7, 226, 11, 3452, 3453, 14, 189, 72, 2522, 7, 226, 11, 3452, 3453, 7899, 3, 3079, 4, 226, 6, 2, 43, 83, 3454], [7900, 11, 2132, 520, 14, 1040, 3, 4118, 923, 96, 11, 3, 2132, 520, 284, 54, 2, 43, 202, 36, 1047, 12, 49, 5132, 2, 12, 124, 5132], [97, 118, 158, 88, 346, 3, 149, 7, 1148, 681, 36, 3, 1489, 212, 184, 1435, 29, 2, 88, 207, 526, 38, 29, 2, 88], [14, 269, 29, 110, 54, 29, 2, 3, 177, 993, 14, 91, 7901, 7902, 11, 631, 7903, 7904, 24, 90, 113, 1064], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 46, 2, 128, 126, 13, 25, 27, 2, 46, 2, 128, 126, 13, 25], [83, 33, 497, 2, 33, 138, 86, 42, 601, 2, 432, 1330, 21, 6, 8, 516, 3455, 83, 33, 497, 2, 33, 138, 86, 42, 601, 2, 432, 1330, 21, 6, 8, 516, 3455], [149, 594, 2008, 10, 1246, 8, 3080, 2, 1325, 4, 184, 3, 32, 6, 1160, 924, 21, 429, 83, 149, 594, 2008, 10, 1246, 8, 3080, 2, 1325, 4, 184, 3, 32, 6, 1160, 91, 163, 57, 446, 1161, 698, 11, 32], [115, 8, 1679, 1375, 859, 115, 8, 1679, 1375, 859], [290, 1237, 699, 2, 1060, 7905, 6, 290, 1237, 699, 2, 1060, 12, 194, 1589, 7, 90], [110, 97, 95, 158, 15, 110, 248, 3456, 3, 142, 7, 248, 637, 158, 517, 142, 7, 118, 339, 167], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 7906, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 7907, 372, 56, 7908, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [90, 173, 78, 40, 65, 22, 531, 254, 90, 173, 78, 40, 65, 22, 531, 254], [27, 2, 452, 3, 324, 171, 27, 2, 452, 3, 324, 171], [339, 121, 533, 339, 121, 533], [132, 32, 3, 28, 5133, 5134, 59, 5135, 111, 101, 185, 35, 14, 132, 32, 3, 28, 5133, 5134, 59, 5135, 732, 23, 32, 63, 562, 14, 946, 3, 29, 11, 3, 32, 3, 120, 23, 28, 6, 7909, 7910, 14, 129, 7911, 62, 68, 35, 38, 316, 2523, 14, 955, 80], [27, 2, 46, 2, 41, 5136, 5137, 124, 291, 292, 7912, 2729, 123, 30, 41, 21, 6, 257, 383, 5136, 5137, 291, 292, 123, 30, 41, 55, 97, 170, 41, 383], [397, 792, 37, 4, 15, 397, 792, 37, 4, 15], [41, 984, 31, 41, 984, 31], [3, 691, 4119, 99, 43, 304, 2, 46, 2, 24, 192, 1045, 55, 3, 691, 4119, 99, 43, 304, 2, 46, 2, 24, 192, 1045, 2489, 44, 47, 54, 2, 544, 23, 28, 809, 10, 3, 1045, 605, 207, 14, 320, 34, 2, 3, 1045, 101, 411, 283, 32, 4, 202, 675, 6, 8, 64, 3081, 3082, 120, 2133, 5138, 5139, 72, 3081, 3082, 2286, 13, 111, 39, 35, 14, 25, 33, 32, 207, 39, 46, 257, 33, 28, 6, 4119, 33, 372, 13, 63, 7913, 21, 2134, 134, 207, 1031, 46, 12, 3, 1127], [1528, 29, 64, 5140, 64, 80, 77, 248, 601, 1186, 13, 125, 20, 2, 25, 33, 13, 67, 5140, 1219, 1332, 39, 35, 14, 132, 33, 32, 510], [27, 2, 122, 2, 3, 490, 155, 155, 133, 89, 8, 1242, 2, 43, 45, 519], [27, 2, 392, 4, 260, 20, 55, 49, 27, 2, 392, 158, 260, 20, 39, 612, 14, 525, 80, 30, 33, 391, 28, 56, 7, 13, 38, 1493, 1281, 158, 21, 389], [1205, 660, 88, 672, 8, 323, 10, 41, 1205, 660, 88, 672, 8, 323, 10, 41], [27, 2, 29, 15, 294, 33, 76, 133, 45, 36, 490, 244, 76, 97, 29, 15, 737, 164, 397, 792, 37, 4120, 2287, 2, 21, 101, 12, 90], [235, 108, 453, 55, 1033, 246, 35, 14, 43, 207, 450, 7, 1040, 3, 73, 383, 18, 2742, 2743, 24, 7914, 222, 14, 91, 181, 96, 458], [175, 1891, 11, 4121, 4122, 821, 65, 141, 495, 55, 1, 1, 841, 1891, 11, 4121, 4122, 821, 65, 141, 495], [13, 25, 291, 292, 124, 5141, 5142, 7915, 7916, 5141, 5142, 104, 79, 13, 6, 2482, 754, 111, 1680, 21, 6, 72, 1437, 312, 47, 97, 946, 3, 116, 1538, 746, 35, 884, 251, 36, 1316, 14, 583, 166, 121, 251, 47, 99, 25, 3, 13, 11, 35], [13, 25, 13, 25], [15, 26, 13, 25, 15, 26, 13, 25], [15, 56, 7917, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 7918, 454, 458, 7919, 985, 7920], [87, 445, 381, 984, 27, 2, 1539, 87, 381, 1, 87, 790, 984], [27, 2, 122, 2, 24, 314, 149, 676, 8, 45, 27, 2, 122, 2, 24, 314, 149, 676, 8, 45], [339, 121, 339, 121], [27, 2, 122, 2, 188, 92, 1484, 56, 7921, 182, 213, 130, 155, 204, 117, 107, 214, 146, 27, 2, 122, 2, 155, 137, 1484, 200], [13, 65, 562, 7922, 63, 77, 18, 174, 11, 836, 116, 7, 219, 967, 30, 637, 251, 4, 2, 3, 115, 172, 180, 6, 4, 174, 12, 3, 1127], [146, 692, 20, 13, 1220, 56, 7923, 182, 213, 130, 155, 204, 117, 107, 214, 146, 692, 20, 13, 1220], [15, 5143, 5144, 7, 5145, 503, 8, 3457, 10, 666, 15, 666, 5144, 441, 503, 7, 5145, 1248, 503, 42, 67, 83, 2007, 42, 1063, 91, 1210, 4, 57, 163, 54, 666, 2, 320, 2, 117, 11, 3083], [185, 8, 199, 7924, 220, 412, 7, 204, 1899, 15, 535, 212, 37, 71, 21, 63, 8, 285, 2, 2009, 3, 7925, 7, 423, 1494, 1, 39, 170, 7926, 3, 136, 198, 53, 21, 542, 1048, 143, 131], [166, 116, 119, 111, 101, 96, 6, 3, 459, 1816, 2, 43, 4123, 11, 166, 116, 119, 510, 1662, 68, 35, 38, 143, 498, 1021, 200, 5146, 85, 6, 3, 93, 4124, 5147, 116, 3045, 4, 851, 51, 89, 21, 3055, 124, 1547, 2117, 4125, 51, 89, 21, 591, 177, 116, 119, 49, 990, 4125, 448, 7, 85, 99, 43, 952, 83, 15, 195, 83, 15, 571, 1161, 15, 474, 872, 88, 431, 549, 1245, 85, 6, 3, 709, 83, 15, 571, 755, 43, 706, 514, 116, 119, 2, 2288, 131, 7927, 498, 1495, 1438, 5148, 5149, 1817, 1818, 7, 58, 1249, 135], [5, 40, 5150, 636, 22, 4, 5, 19, 12, 5, 40, 5150, 636, 22, 4, 5, 19, 12], [4, 65, 3458, 167, 67, 1548, 489, 2135, 167, 207, 9, 345, 3459, 5151, 1272, 4, 65, 3458, 167, 67, 1548, 489, 2135, 167, 207, 9, 345, 3459, 5151, 1272, 86, 115, 56, 7928], [13, 25, 11, 205, 5152, 56, 5153, 5154, 182, 213, 130, 155, 204, 117, 107, 214, 146, 25, 3, 13, 11, 3460, 3461, 205, 5152], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [148, 210, 2136, 33, 41, 7929, 451, 420, 248, 2, 715, 33, 148, 67, 21, 542, 1900, 849, 1801, 6, 10, 33, 167, 11, 534, 2524, 72, 1901, 925, 1549, 2744, 5155, 5156, 5157, 5158, 5159, 24], [496, 128, 126, 2137, 245, 4, 8, 4, 895, 424, 42, 261, 770, 4, 7930, 38, 534, 1591, 7931, 85, 284, 5160, 67, 284, 264, 43, 4, 895, 14, 322, 34, 11, 128], [27, 2, 100, 41, 27, 2, 100, 41], [138, 196, 5161, 7932, 6, 251, 4, 3, 174, 169, 532, 1162, 489, 390, 2289, 72, 138, 196, 5161, 71, 653, 2, 715, 7, 390, 187, 8, 91, 3, 71, 257], [513, 542, 134, 4, 3, 490, 74, 513, 542, 134, 4, 3, 490, 74], [15, 26, 32, 602, 77, 15, 26, 32, 602, 77], [87, 381, 206, 4, 164, 808, 36, 41, 87, 381, 206, 4, 164, 808, 36, 41], [110, 39, 122, 33, 263, 1433, 2, 3, 76, 110, 39, 122, 33, 263, 1433, 2, 3, 76, 1, 347, 7933, 8, 43, 806], [3, 13, 11, 5162, 65, 562, 596, 687, 15, 8, 45, 310, 3, 15, 6, 8, 45, 329, 1426, 2, 199, 3, 15, 217, 21, 429, 71, 163, 130, 2290, 2010, 2011, 407, 46, 22, 11, 28, 5162, 709, 3, 13, 18, 3, 32, 65, 562, 47, 38, 1376, 3, 69, 44, 1359, 3, 13, 6, 562, 311, 2, 609, 1593, 66, 24, 1902, 101, 1902, 101, 264, 132, 32, 7934, 13, 7, 280, 3, 15, 30, 3, 73, 13], [25, 224, 11, 4084, 4085, 137, 13, 125, 20, 13, 25, 25, 224, 11, 4084, 4085, 137, 13, 125, 20, 13, 25], [1745, 8, 45, 4, 87, 55, 1, 49, 843, 3, 31, 18, 9, 726, 514, 87, 381, 308, 106, 807, 1, 1, 135], [123, 18, 34, 9, 184, 63, 833, 30, 1550, 65, 251, 704, 34, 9, 184, 63, 833, 30, 1550, 926, 28, 1092, 4, 3, 163, 57, 44, 3, 220, 6, 323, 3, 123, 257, 310, 1, 47, 38, 1376, 3, 69, 7, 284, 1591, 166, 284, 99, 1377, 67, 38, 3084, 2, 373, 3, 1039, 257, 329, 284, 42, 3462, 183, 284, 38, 2291, 166, 2, 5163, 3, 1902, 101, 2, 183, 1377, 21, 649, 3, 1333, 6, 346, 136], [1746, 74, 1219, 303, 56, 7935, 7936, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1746, 74, 273, 8, 45, 169, 52, 715], [193, 30, 3, 5164, 1248, 47, 2745, 2746, 193, 30, 3, 5164, 1248, 47, 2745, 2746], [4126, 4127, 104, 79, 13, 6, 2482, 754, 4126, 4127, 49, 291, 292, 1533, 4126, 4127, 104, 79, 13, 6, 2482, 754, 720, 313, 55, 38, 274, 33, 13, 532, 483, 540, 1311, 424, 118, 23, 2012, 14, 1544, 80, 68, 38, 119, 257], [1533, 749, 254, 218, 5080, 2137, 14, 485, 7, 1185, 55, 21, 295, 1, 1, 185, 35, 14, 583, 711, 7937, 7938, 3, 1279, 2, 633, 7, 721, 463, 7, 909, 287, 36, 3, 188, 749, 254, 11, 3, 218, 7939, 7940, 447, 1, 458], [90, 62, 2137, 83, 1681, 1283, 7941, 7, 3463, 11, 5165, 39, 43, 584, 5165, 3463, 39, 183, 43, 584], [205, 242, 56, 5166, 5167, 182, 213, 130, 155, 204, 117, 107, 214, 146, 205, 242], [888, 996, 8, 1157, 456, 55, 21, 1, 1, 14, 114, 424, 888, 996, 63, 8, 1157, 456], [54, 2, 189, 3, 186, 263, 11, 473, 67, 21, 855, 134, 54, 2, 189, 3, 186, 263, 11, 473, 67, 21, 855, 134], [15, 26, 15, 160, 13, 25, 56, 7942, 182, 213, 130, 155, 204, 117, 107, 214, 146, 365, 334, 39, 35, 14, 25, 33, 15, 13], [54, 2, 211, 1746, 74, 54, 2, 211, 1746, 74], [307, 195, 4, 190, 42, 260, 44, 284, 97, 1273, 533, 137, 3, 1413, 3085, 5166, 5167, 1092, 44, 180, 7, 283, 1033, 42, 27, 2, 1273, 533, 137, 3, 1413, 1, 51, 284, 1682, 77, 3, 455, 3, 569, 347, 1101, 98, 201, 30, 3, 24, 1819], [73, 383, 453, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 259, 55, 1033, 246, 35, 14, 43, 207, 450, 7, 1040, 3, 73, 383, 18, 2742, 2743, 24, 7943, 222, 14, 91, 181, 96, 458], [218, 29, 40, 5168, 3464, 5169, 218, 29, 40, 5168, 3464, 5169, 633, 7, 721, 29, 524], [4, 41, 7, 83, 165, 130, 529, 71, 664, 1612, 462, 2747, 4, 41, 7, 83, 165, 130, 529, 71, 664, 1612, 462, 2747], [148, 7944, 31, 843, 1613, 31, 142, 56, 7945, 200, 1018, 7946], [25, 224, 11, 5170, 5171, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5170, 5171, 137, 13, 125, 20, 13, 25], [74, 3465, 55, 1, 1, 3, 74, 947, 89, 8, 513, 143, 481, 1, 1, 37, 71, 114, 29, 255, 3, 177, 7947, 22, 1, 1, 40, 5172, 947, 173, 40, 5172, 947, 3, 993, 97, 43, 336, 1, 1, 3, 37, 39, 183, 43, 1821, 66, 4128, 3, 108, 10, 7, 489, 567, 420, 8, 398, 1, 1, 1284, 135], [15, 26, 13, 25, 15, 26, 13, 25], [15, 64, 22, 985, 13, 64, 14, 1040, 15, 22, 985], [13, 6, 8, 1996, 13, 6, 8, 1996], [348, 115, 406, 3, 7948, 115, 9, 345, 2140, 98], [115, 4129, 4, 5173, 1283, 1334, 6, 8, 164, 58, 133, 115, 4129, 4, 5173, 1283, 1334, 6, 8, 164, 58, 133], [121, 36, 5174, 11, 5175, 396, 2525, 7949, 36, 5174, 1049, 2, 1809, 2, 5175], [3086, 4, 223, 1551, 447, 4130, 4131, 6, 1180, 339, 3086, 4, 223, 1551, 447, 4130, 4131, 6, 1180, 339], [168, 20, 4, 190, 2285, 4132, 5176, 5177, 3466, 1043, 168, 20, 4, 190, 2285, 4132, 5176, 5177, 3466, 1043], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [939, 88, 37, 405, 41, 55, 1, 51, 100, 41, 88, 1128, 10, 2526, 30, 441, 7, 68, 1822, 1372, 39, 134, 30, 41, 67, 8, 30, 88, 1441, 4, 1, 3087, 41, 2293], [1811, 3063, 3064, 55, 39, 35, 91, 433, 3, 181, 864, 6, 10, 3, 74, 7950, 1326, 1116, 3088], [111, 532, 195, 42, 8, 84, 2, 397, 2, 88, 580, 229, 195, 7951, 7952, 7953, 7954, 14, 118, 4, 2135, 30, 444], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [453, 18, 41, 57, 29, 10, 1683, 7955, 108, 11, 4133, 4134, 111, 14, 90, 57, 29, 10, 73, 1683, 108, 11, 4133, 4134, 1221, 358, 7, 7956, 7957, 14, 326, 136, 53, 1674, 57, 120, 56, 7958, 7959, 6, 23, 857, 18, 104, 376, 108, 16, 53, 3, 1442, 376, 1683, 86, 6, 9, 345, 4, 199, 14, 647, 29, 10, 3, 376, 1683, 108], [193, 30, 2716, 3467, 3, 142, 12, 33, 4135, 65, 355, 351, 77, 18, 3, 7960, 257, 7, 201, 65, 175, 886, 167, 30, 1993, 7961, 14, 509, 175, 366, 12, 21, 10, 48], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [9, 452, 10, 564, 86, 9, 452, 10, 564, 86], [193, 30, 728, 255, 142, 3468, 348, 2294, 2295, 193, 30, 728, 255, 142, 3468, 348, 2294, 2295], [58, 94, 596, 687, 2748, 58, 24, 1222, 596, 687, 856, 1159, 6, 75, 112, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [168, 20, 6, 4136, 7, 278, 12, 3, 5178, 168, 20, 6, 4136, 7, 278, 12, 3, 5178], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [738, 623, 1541, 36, 83, 1069, 42, 1326, 592, 1614, 3089, 4137, 3090, 5179, 738, 623, 1541, 36, 83, 1069, 42, 1326, 592, 1614, 3089, 4137, 3090, 5179, 4, 3, 334, 151, 428, 3469, 1541, 14, 114, 183, 3, 2479, 218], [123, 30, 41, 39, 29, 8, 170, 41], [58, 824, 10, 2527, 2527, 2527, 8, 267, 112, 5180, 58, 824, 10, 2527, 2527, 2527, 8, 267, 112, 5180], [13, 25, 5181, 13, 25, 5181], [205, 242, 1413, 205, 242, 1413], [3091, 102, 10, 2296, 409, 1250, 11, 5, 81, 20, 40, 1250, 3091, 102, 10, 2296, 409, 1250, 11, 5, 81, 20, 40, 1250], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [223, 868, 1747, 1367, 223, 868, 1747, 1367], [1413, 3085, 11, 738, 182, 6, 8, 45, 14, 114, 68, 23, 6, 442, 2, 3, 119, 4, 56, 18, 3, 279, 140, 5182, 36, 7962, 2, 190, 1, 14, 114, 3, 163, 37, 1, 1413, 919, 1, 895, 182, 1413, 507, 2015], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [349, 103, 3092, 542, 189, 143, 1595, 11, 3, 3470, 2528, 359, 1284, 604], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3093, 119, 22, 208, 491, 62, 1823, 1, 1, 329, 811, 33, 13, 294, 3, 13, 125, 20, 13, 120, 177, 31, 3471, 1, 1, 1, 11, 3, 15, 1245, 160, 1594, 21, 63, 8, 84, 2, 119, 3, 13, 222, 2141, 14, 129, 104, 1730, 1, 1, 458], [1443, 74, 4, 594, 591, 753, 190, 406, 7963, 889], [10, 5183, 11, 205, 869, 2728, 10, 5183, 11, 205, 869, 2728], [74, 1811, 55, 50, 74, 1811, 6, 9, 345, 45, 861, 1443, 42, 7964, 14, 1544, 711, 2749, 458, 1116, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [594, 252, 1616, 114, 11, 348, 470, 3, 177, 594, 3094, 96, 42, 357, 2142, 36, 161, 470, 2, 7965, 7966, 51, 612, 497, 3, 50, 564, 470, 284, 264, 43, 2142, 2, 7967, 7968, 39, 35, 14, 114, 3, 1616, 594, 3094, 159, 7969], [82, 20, 46, 31, 82, 20, 46, 31, 1, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [58, 94, 361, 112, 3095, 5184, 92, 69, 854, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 3095, 5184, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [205, 242, 34, 205, 242, 34], [46, 8, 285, 11, 4138, 223, 5185, 55, 177, 4138, 223, 45, 4, 7970, 6, 27, 2, 46, 283, 24, 459, 181, 59, 2, 239, 2143, 2750, 102, 2, 2016, 3, 179, 510, 56, 5185, 107, 181, 59, 28, 59, 7971, 13, 7972], [41, 41, 41, 3096], [60, 94, 361, 113, 640, 92, 69, 60, 6, 75, 112, 49, 10, 105, 48, 98, 10, 1285, 92, 69, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 854, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [31, 4, 1280, 1068, 7, 15, 46, 111, 1, 1, 47, 42, 843, 31, 4, 340, 1121, 7, 15, 46, 1, 1, 1, 135], [205, 242, 2125, 205, 242], [47, 42, 27, 2, 70, 3, 233, 4, 404, 20, 1163, 55, 14, 50, 166, 10, 23, 31, 31, 47, 42, 27, 2, 70, 3, 233, 11, 1163, 4, 404, 20, 20, 96, 42, 3, 698, 1163, 11, 104, 957], [205, 869, 14, 2125, 205, 869, 363, 2125], [205, 869, 14, 2125, 205, 869, 14, 2125], [333, 603, 123, 2, 373, 72, 4139, 55, 38, 4140, 197, 220, 184, 29, 603, 7973, 38, 534, 425, 30, 532, 18, 33, 7974, 7, 21, 45, 494, 3, 297, 6, 912, 11, 7975, 1822, 20, 101, 4, 423, 348, 21, 8, 45, 38, 425, 423, 52, 782, 53, 613, 184, 6, 179, 53, 33, 52, 52, 1129, 7976, 7977, 7978, 782, 174, 771, 23, 6, 3, 37, 85, 118, 4, 423, 52], [160, 127, 107, 31, 533, 511, 15, 52, 160, 127, 107, 97, 43, 336, 169, 127, 107, 63, 1740, 322, 4, 2297, 1319, 6, 494, 389, 15, 5186, 145, 14, 100, 34, 11, 4141, 3, 1748, 101, 44, 343, 307, 135], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [174, 333, 1903, 174, 333, 1903], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [27, 2, 29, 41, 111, 21, 101, 308, 14, 525, 53, 28, 7979, 27, 2, 29, 41, 169, 180, 119, 283, 13, 7980, 7981, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [14, 544, 177, 261, 908, 350, 66, 5187, 14, 544, 177, 261, 908, 350, 66, 5187], [51, 35, 366, 98, 503, 7, 1552, 437, 1552, 6, 2144, 7, 35, 39, 8, 91, 3, 188, 1552, 91, 377], [1070, 10, 518, 1904, 4142, 4143, 124, 291, 292, 7982, 7983, 3472, 3473, 550, 518, 1904, 208, 5188, 14, 43, 207, 450, 7, 50, 38, 141, 783, 162, 67, 284, 1591, 80, 44, 35, 42, 3, 722, 826, 2, 1809, 2, 151, 38, 141, 588, 119, 10, 3, 2017, 18, 988, 149, 5189, 7, 47, 51, 149, 2519, 36, 5189, 1496, 943, 42, 7984, 4, 518, 1617, 3474, 3, 2529, 6, 273, 3472, 3473, 264, 43, 4142, 4143, 7, 4044, 179, 31, 1336, 43, 30, 47, 7985, 1487, 151, 63, 119, 18, 149, 988, 53, 613, 47, 1050, 1684, 7986, 7987, 47, 73, 1684, 3472, 3473, 5190, 1050, 1684, 3472, 3473, 5190, 73, 1684, 4142, 4143, 246, 35, 43, 207, 450, 7, 50, 166, 14, 4, 732, 35, 54, 316, 957, 270, 80, 253], [14, 269, 29, 11, 475, 4, 33, 235, 86, 7988, 7989, 1, 124, 1, 291, 292, 1, 550, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 1, 14, 269, 29, 11, 475, 4, 33, 235, 86], [5, 645, 20, 2530, 686, 203, 22, 4, 5, 19, 12, 5, 645, 20, 2530, 686, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [238, 1011, 90, 29, 277, 10, 90, 1337, 277, 6, 75, 112, 124, 238, 1011, 90, 29, 277, 10, 90, 1337, 277, 6, 75, 112, 124], [41, 33, 41, 6, 8, 45, 14, 91, 68, 35, 39, 398, 7990, 7991, 149, 120, 1338], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 190, 78, 6, 75, 112, 49, 105, 10, 40, 190, 78, 6, 75, 112, 49, 105, 10], [121, 997, 7, 151, 63, 201, 2752, 7, 680, 1825, 121, 997, 7, 151, 63, 201, 2752, 7, 680, 1825], [339, 121, 1120, 941, 339, 121, 1120, 941], [15, 13, 25, 111, 1474, 2, 25, 15, 13, 46, 59, 7992, 30, 1156], [121, 997, 7, 351, 659, 121, 997, 7, 351, 659], [5, 5191, 22, 4, 5, 19, 12, 5, 5191, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 89, 8, 884, 98, 169, 1250, 827, 40, 89, 8, 884, 98, 169, 1250, 827, 263, 44, 828, 151, 63, 4144, 7, 61, 431, 1312, 10, 23, 78, 195, 5192, 769, 40, 2753, 40, 24, 24, 144, 30, 2018, 18, 131, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 769, 1497, 11, 3097, 331, 268, 805, 2298, 195, 5192], [5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12], [434, 75, 358, 24, 5193, 29, 277, 651, 12, 358, 6, 75, 112, 124, 434, 75, 358, 24, 5193, 29, 277, 651, 12, 358, 6, 75, 112, 124], [1070, 10, 324, 171, 15, 1070, 10, 324, 171, 15], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 640, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 640, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 286, 369, 6, 272, 198, 375, 40, 286, 369, 6, 272, 198, 375, 198, 178, 387], [5, 2754, 22, 4, 5, 19, 12, 5, 2754, 22, 4, 5, 19, 12], [40, 78, 6, 1130, 47, 42, 1085, 72, 2531, 4, 161, 571, 3078, 30, 78, 40, 1, 1251, 18, 3, 58, 958, 42, 8, 3098, 311, 2, 23, 123, 1, 1, 14, 386, 1, 1, 1, 135], [58, 94, 596, 687, 7993, 48, 6, 531, 7994, 112, 49, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [32, 132, 32, 132], [3, 1445, 354, 11, 4145, 4146, 65, 402, 124, 291, 292, 3, 1445, 354, 11, 4145, 4146, 65, 402, 55, 974, 11, 4145, 4146, 821, 65, 141, 495], [193, 30, 3, 131, 416, 4, 333, 110, 97, 118, 3, 131, 416, 2, 134, 4, 33, 333, 2711, 2712, 1530, 1064], [13, 25, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [61, 94, 82, 1826, 432, 1252, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 551, 2299, 315, 22, 4, 5, 19, 12, 5, 551, 2299, 315, 22, 4, 5, 19, 12], [41, 8, 45, 55, 1, 1, 33, 41, 297, 10, 33, 148, 1219, 405], [40, 78, 4147, 726, 4, 3, 78, 40, 78, 4147, 726, 4, 3, 78], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [90, 24, 24, 17, 90, 90, 1337, 277, 696, 75, 12, 124, 105, 10, 90, 24, 24, 17, 90, 90, 1337, 277, 696, 75, 12, 124, 105, 10, 1, 1011, 238, 75, 10, 24, 17, 90, 90, 1337, 277, 1, 24, 17, 90, 90, 29, 277, 696, 75, 12, 124, 105, 10, 1011, 238, 75], [60, 94, 90, 1277, 24, 4148, 2019, 76, 618, 24, 144, 696, 75, 12, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [169, 33, 1749, 63, 70, 39, 9, 345, 95, 4, 2, 15, 110, 118, 72, 37, 541, 116, 44, 335, 2, 95, 158, 15, 118, 95, 792, 37, 185, 8, 122, 2, 71, 78], [27, 2, 122, 2, 15, 27, 2, 122, 2, 15], [27, 2, 29, 705, 294, 419, 13, 1553, 2755, 4, 72, 1446, 29, 37], [40, 65, 254, 44, 6, 2756, 2145, 71, 452, 6, 183, 2756, 10, 7, 489, 1905, 21, 65, 9, 37, 14, 114, 40, 652, 641, 297, 78, 254, 11, 285, 193, 197, 18, 3, 824, 6, 2756, 2145], [90, 7, 90, 3099, 165, 1589, 53, 613, 41, 5194, 2, 320, 853, 245, 90, 7, 90, 3099, 165, 1589, 53, 613, 458, 195, 41, 5194, 2, 320, 853, 245, 73, 57, 99, 320, 67, 853, 99, 4149, 7, 41, 1527, 30, 8, 7995, 37, 23, 664, 2, 43, 1361, 201, 30, 174, 1750, 49, 137, 174, 351, 458, 2757, 36, 90, 7, 2757, 36, 90, 3475, 53, 613, 2532, 7996, 123, 24, 7997], [29, 502, 29, 502, 128, 126, 114, 1210, 4, 57, 377, 185, 35, 14, 5195, 3, 4150, 809, 10, 128, 126, 4, 3, 2271, 2758, 4150, 5196, 3, 501, 765, 67, 384, 3, 71, 29, 502, 4150, 6, 1064, 4, 2300, 14, 91, 3, 1210, 96], [1549, 287, 5197, 1549, 287, 5197], [25, 13, 55, 64, 1619, 77, 18, 15, 39, 35, 25, 33, 13, 7998, 7999, 160, 739], [2006, 694, 151, 6, 72, 223, 44, 65, 141, 2006, 448, 273, 65, 29, 2, 24, 57, 10, 283, 508, 108, 8000, 8001, 4151, 4152, 5198, 120], [41, 8, 45, 41, 8, 45], [499, 7, 25, 15, 26, 499, 7, 25, 15, 26], [24, 314, 8, 1827, 857, 438, 24, 314, 6, 8, 1827, 857, 627, 51, 284, 42, 178, 1, 349, 4, 24, 314, 6, 2759, 4153, 30, 857, 3, 8002, 767, 6, 8, 2146, 3, 857, 3476, 6, 8003, 249], [378, 15, 32, 64, 11, 28, 5199, 5200, 378, 15, 32, 64, 11, 28, 5199, 5200], [41, 984, 11, 83, 195, 41, 984, 11, 83, 195], [41, 88, 1441, 4, 31, 55, 88, 1441, 4, 2760, 42, 8, 5201, 425, 51, 735, 41, 4154, 3, 88, 733, 4, 33, 41, 51, 735, 3, 447, 14, 91, 163, 167, 554, 8004, 8005, 854, 149, 685, 2301, 1620, 2761, 2302], [1610, 855, 74, 176, 11, 3477, 4, 161, 174, 1], [13, 37, 4, 15, 208, 491, 14, 50, 80, 4, 15, 46, 28, 59, 8006, 30, 135], [191, 674, 59, 5202, 55, 101, 39, 35, 14, 189, 191, 674, 59, 11, 5202, 4, 1340, 120, 2533, 2534, 101, 1287, 1051, 7, 1906, 188, 21], [2303, 121, 2303, 121], [59, 59, 74, 38, 1208, 1223, 98, 31], [209, 41, 58, 37, 891, 51, 3478, 4, 1103, 3, 177, 71, 6, 268, 311, 2, 628, 58, 2304, 241, 1164, 8, 43, 2762, 4, 104, 412], [87, 37, 329, 637, 4, 87, 37, 329, 637, 4], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 8007, 482, 252, 3, 28, 219, 62, 63, 45, 30, 3479, 896, 3, 31, 1378, 8008, 8009, 511, 89, 8, 38, 29, 2, 239, 610, 14, 606, 408, 29, 53, 23, 6, 1099, 1595, 11, 83, 3100, 10, 3, 24, 101, 269, 29, 3, 179, 53, 23, 165, 28, 8010, 8011], [27, 2, 100, 5203, 287, 10, 3, 142, 27, 2, 100, 5203, 287, 10, 3, 142], [87, 123, 576, 330, 241, 193, 30, 41, 169, 13, 119, 3, 123, 63, 88, 73, 394, 63, 1063, 7, 2535, 33, 4155, 428, 272, 172, 33, 87, 11, 191, 6, 8, 45, 7, 185, 8, 1539, 72, 1429, 381, 23, 334, 586, 18, 3, 87, 167, 6, 96, 6, 3, 392, 4, 196, 391, 68, 8, 85, 264, 21, 43, 38, 2305, 23, 411, 3, 214, 50, 470, 1315, 98, 10, 35, 53, 754, 53, 35, 493, 107, 2, 1496, 3, 121, 5204, 5205, 1276, 149, 685, 101], [50, 470, 86, 123, 14, 263, 51, 4156, 158, 3, 50, 470, 53, 754, 53, 35, 410, 2008, 62, 21, 1315, 98, 10, 35, 8012, 3, 121, 5204, 5205, 1276, 149, 685], [87, 55, 1, 49, 290, 1237, 1090, 87, 737, 164, 3101, 489, 51, 493, 36, 3, 86, 2758, 1828, 23, 1061, 294], [33, 115, 526, 134, 30, 340, 38, 340, 67, 33, 142, 89, 8, 134, 30, 340, 201, 507, 30, 92, 69, 92, 69, 21, 6, 8013, 8014, 30, 387], [339, 121, 339, 121], [136, 10, 1253, 1163, 56, 4157, 4158, 182, 213, 130, 155, 204, 117, 107, 214, 146, 825, 34, 23, 334, 448, 6, 21, 625, 2], [57, 196, 4, 457, 3480, 3481, 124, 291, 292, 8015, 8016, 5206, 5207, 243, 457, 5206, 5207, 3, 57, 196, 10, 23, 809, 6, 626, 14, 119, 2, 183, 54, 2, 206, 3, 24, 1536, 2, 408, 809], [25, 3, 13, 11, 8017, 8018, 10, 15, 160, 1245, 110, 49, 73, 2, 15, 7, 38, 330, 9, 520, 12, 83, 1, 246, 35, 14, 121, 80, 7, 8019, 80, 294, 46, 62, 12, 975, 1377, 33, 46, 56, 7, 13, 14, 7], [339, 121, 339, 121], [41, 3102, 37, 55, 101, 1, 304, 2, 43, 84, 2, 91, 85, 412, 4, 41, 745, 492, 772, 67, 169, 3, 606, 97, 412, 745, 492, 377, 4, 33, 812, 1, 39, 35, 14, 386], [15, 26, 15, 160, 13, 25, 15, 26, 15, 160, 13, 25], [309, 46, 37, 51, 335, 2, 46, 2, 309, 520, 413, 10, 3, 95, 4, 36, 3, 128, 126, 48, 21, 1428, 80, 2, 3, 347, 2, 493, 182, 413, 10, 8020, 276, 118, 72, 37, 44, 530, 3, 347, 22, 2, 463], [376, 34, 9, 203, 90, 29, 11, 3103, 41, 480, 10, 79, 86, 90, 29, 11, 3103, 41, 480, 10, 79, 86, 631, 6, 163, 30, 23, 34], [238, 1011, 2297, 5208, 10, 24, 168, 998, 190, 3104, 29, 277, 6, 75, 1011, 2297, 5208, 10, 24, 168, 998, 190, 3104, 29, 277, 6, 75, 112], [25, 224, 11, 8021, 8022, 137, 13, 125, 20, 13, 25, 97, 95, 158, 8023, 13, 120, 2, 119, 2, 73, 13], [13, 25, 102, 13, 25, 102], [33, 415, 317, 99, 8, 884, 10, 23, 334, 33, 415, 317, 99, 8, 884, 10, 23, 334], [186, 31, 365, 334, 1, 1, 47, 38, 307, 54, 11, 967, 53, 117, 6, 4078, 2147, 11, 249, 14, 583, 23, 1314, 313, 305, 1, 1, 716, 1, 1, 47, 38, 5209, 8024, 4, 897, 186, 11, 149, 127, 3, 186, 350, 11, 673, 151, 6, 1685, 311, 18, 673, 67, 47, 39, 8, 119, 186, 1224, 1664, 39, 47, 544, 186, 47, 187, 8, 1104, 3, 186, 51, 350, 7, 3, 186, 6, 273, 323, 4, 1221, 67, 51, 47, 335, 2, 410, 521, 151, 6, 72, 37, 44, 3, 186, 65, 141, 1751, 47, 38, 248, 2, 8025, 5210, 186, 67, 47, 42, 164, 71, 1736, 44, 186, 65, 534, 141, 225, 2306, 67, 4, 83, 8026, 3, 186, 6, 2536, 4, 15, 7, 9, 521, 39, 43, 912], [24, 144, 8, 45, 890, 31, 24, 144, 8, 45, 890, 31], [117, 2505, 7, 128, 20, 6, 8, 45, 117, 2505, 7, 128, 20, 6, 8, 45], [27, 2, 121, 4, 1611, 1, 1, 248, 678, 4, 23, 334, 9, 1314, 184, 765, 493, 356, 662, 659], [29, 2, 535, 365, 334, 14, 583, 8027, 8028, 29, 2, 535, 498, 8029, 8030, 8031, 854, 529, 685], [555, 810, 210, 55, 49, 164, 37, 51, 250, 2, 189, 73, 555, 810, 107, 163, 3, 464, 18, 3, 37, 54, 104, 50, 2, 353, 21], [667, 812, 8, 638, 2148, 667, 812, 8, 638, 2148], [110, 97, 118, 158, 33, 142, 118, 72, 37, 9, 138, 196, 110, 97, 118, 158, 33, 142, 118, 72, 37, 9, 138, 196], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [246, 35, 14, 25, 33, 15, 1245, 13, 356, 64, 77, 18, 21, 1116, 246, 35, 14, 25, 33, 15, 1245, 13, 356, 64, 77, 18, 21], [41, 7, 87, 8, 545, 41, 7, 87, 8, 545], [74, 4, 47, 205, 3482, 5211, 1208, 2294, 2295, 74, 4, 47, 205, 3482, 5211, 1208, 2294, 2295], [54, 29, 2, 1481, 1907, 14, 236, 98, 29, 2, 3, 177, 993, 838, 40, 2763, 1481, 1907, 28, 8032], [40, 474, 5212, 239, 160, 127, 238, 297, 3483, 362, 312, 371, 804, 40, 474, 5212, 239, 160, 127, 238, 297, 3483, 362, 312, 371, 804], [13, 9, 316, 860, 73, 13, 2, 29, 2, 15, 26, 15, 160, 13, 9, 316, 860, 73, 13, 2, 29, 2, 15, 26, 15, 160], [920, 2020, 1052, 168, 20, 2764, 2765, 920, 2020, 1052, 168, 20, 2764, 2765], [50, 2, 211, 15, 4, 142, 5213, 111, 101, 185, 35, 14, 50, 80, 2, 920, 15, 4, 142, 3, 72, 28, 142, 5213, 14, 5214, 80, 68, 35, 38, 316, 8033, 5215], [3105, 249, 249, 111, 101, 363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008, 1498, 1239, 2021, 8034, 8035, 24, 2022, 8036], [47, 201, 629, 72, 37, 71, 47, 201, 629, 72, 37, 71, 1, 4159, 4, 3, 58, 1, 4159, 3, 58, 609, 1, 8, 83, 1249, 42, 402, 1, 2766, 175, 1127, 1074, 1075], [115, 278, 33, 115, 6, 545, 278, 39, 3, 115, 101, 14, 114, 2, 1908, 21, 98, 582, 1, 49, 1909, 11, 286, 8037, 62, 2307, 103, 18, 597, 184, 99, 50, 115, 1752, 558, 8038, 3484], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4160, 4161, 11, 872, 1682, 1341, 4162, 5216, 11, 4160, 4161, 11, 872, 1682, 1341, 4162, 5216, 11], [3485, 74, 89, 8, 134, 3485, 74, 4, 3, 1621, 2270, 8039, 89, 8, 31, 143, 1443], [5, 654, 3486, 22, 4, 5, 19, 12, 5, 654, 3486, 22, 4, 5, 19, 12], [142, 255, 5217, 205, 5218, 2767, 2768, 142, 255, 5217, 205, 5218, 2767, 2768], [115, 56, 55, 47, 54, 73, 115, 56, 200, 1018, 18, 3, 115, 6, 8040, 3431, 3432, 2282, 1604, 24, 1686, 8041, 3106, 1252, 1252, 730, 24, 144], [186, 27, 2, 598, 77, 186, 14, 269, 3, 177, 85, 127, 107, 117, 127, 1664, 85, 349, 62, 438, 107, 438, 249, 85, 432, 271, 113, 31, 665, 37, 71, 3, 186, 5219, 6, 3, 2258, 5219, 6, 186, 263, 6, 3487, 67, 52, 530, 186, 6, 8, 2258, 989, 39, 8, 1420, 14, 50], [1342, 25, 11, 15, 28, 56, 5220, 15, 26, 32, 65, 141, 8, 499, 1254, 1342, 25, 11, 15, 28, 56, 5220, 111, 499, 3, 15, 26, 32, 14, 46, 30, 179, 13, 8, 45], [1255, 728, 2308, 4163, 3107, 1255, 728, 2308, 4163, 3107], [535, 97, 199, 21, 411, 18, 346, 2537], [15, 26, 466, 116, 454, 278, 999, 42, 357, 2149, 7, 15, 133, 6, 1478, 2150, 999, 42, 2149, 7, 15, 133, 6, 1478, 2150], [14, 743, 29, 2, 40, 749, 8042, 1284, 604], [363, 743, 29, 2, 40, 555, 1284, 604], [2012, 57, 319, 790, 10, 867, 11, 3, 495, 840, 111, 21, 101, 1, 1, 38, 273, 268, 3, 57, 319, 2012, 2, 766, 2725, 636, 11, 3, 2538, 184, 38, 534, 495, 7, 151, 42, 9, 143, 2023, 2725, 1126, 2, 766, 4, 80, 183, 1207, 38, 141, 2309, 66, 457, 101, 1, 1, 308, 485, 3, 52, 7, 398, 11, 80], [278, 15, 50, 15, 6, 343, 278, 30, 4164, 14, 353, 12, 3, 1131], [15, 278, 75, 532, 1499, 1447, 12, 975, 168, 15, 278, 75, 532, 1499, 1447, 12, 975, 168], [81, 255, 142, 3488, 1554, 1555, 81, 255, 142, 3488, 1554, 1555], [339, 121, 339, 121], [95, 4, 11, 15, 6, 77, 18, 127, 95, 4, 11, 15, 6, 77, 18, 127], [363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008, 363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008], [168, 20, 9, 345, 507, 168, 20, 6, 8, 45, 168, 20, 9, 345, 507], [307, 14, 8043, 28, 59, 5221, 55, 83, 5221, 6, 8, 202, 4, 13, 125, 20, 7, 1668, 39, 29, 2, 79, 14, 39, 35, 114, 7, 106, 85, 6, 1099, 1498, 4165, 2539, 4166, 135], [27, 2, 100, 3489, 287, 27, 2, 100, 3489, 287], [5222, 327, 36, 40, 6, 290, 72, 31, 1500, 212, 5223, 144, 268, 8044, 559, 49, 10, 105, 1, 1, 5222, 327, 36, 40, 6, 290, 72, 31, 1500, 212, 5223, 144, 1, 1, 163, 6, 3, 167, 554], [1342, 25, 11, 15, 28, 56, 8045, 781, 35, 1343, 263, 30, 450, 750, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [128, 126, 8, 178, 9, 155, 29, 128, 126, 8, 178, 9, 155, 29], [102, 898, 55, 1, 1, 1288, 35, 2, 269, 80, 72, 898, 11, 3, 96, 779, 447, 1, 1, 1, 1, 135], [547, 37, 3490, 3491, 181, 1, 49, 1, 291, 292, 1, 1289, 547, 37, 1, 1, 50, 564, 1, 1, 1, 351, 96, 37, 71, 51, 1448, 8046, 294, 26, 1, 14, 398, 3, 31], [168, 20, 89, 8, 134, 168, 20, 89, 8, 134], [5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12, 5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12], [8047, 3108, 1076, 3109, 115, 4167, 170, 98, 169, 1801, 62, 21, 3492, 514, 3, 8048, 8049, 14, 8050, 781, 35], [15, 6, 454, 278, 56, 3110, 3111, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 6, 454, 278], [195, 36, 1290, 1076, 42, 2769, 278, 466, 4, 15, 82, 20, 82, 20, 449, 195, 36, 1290, 1076, 42, 2769, 278, 466, 4, 15, 82, 20, 82, 20, 449, 7, 27, 2, 134], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [60, 94, 90, 113, 24, 1285, 76, 6, 75, 112, 124, 10, 105, 48, 98, 10, 640, 188, 92, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 26, 52, 75, 111, 113, 3112, 15, 26, 52, 75, 311, 2, 23, 31, 47, 62, 8, 84, 2, 5224, 437, 359, 11, 310, 21, 5225, 10, 288, 4168, 3, 52, 99, 43, 98, 38, 2151, 21, 34, 203, 8051, 8052, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [27, 2, 114, 1418, 2750, 4, 162, 20, 27, 2, 114, 1418, 2750, 4, 162, 20], [15, 59, 5226, 15, 13, 63, 1991, 21, 15, 59, 5226, 15, 13, 63, 1991, 7, 1587, 200, 52, 13, 63, 1991, 454, 516, 5227, 83, 571, 428, 64, 106, 80, 8053, 2, 132, 444], [15, 1687, 343, 278, 4, 358, 379, 38, 2, 2766, 858, 11, 669, 1072, 18, 15], [15, 466, 116, 6, 343, 278, 53, 47, 336, 44, 3, 15, 466, 116, 1908, 6, 343, 278, 23, 334, 14, 50, 4169, 7, 398, 23, 31, 510], [113, 15, 26, 52, 278, 111, 21, 101, 1, 1, 308, 14, 525, 2, 114, 113, 3112, 15, 26, 52, 278, 748, 2, 636], [363, 50, 2, 114, 15, 311, 2, 278, 466, 1498, 363, 50, 2, 114, 15, 311, 2, 278, 466, 1498], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [40, 7, 3113, 40, 7, 3113, 42, 12, 924, 18], [175, 974, 11, 5228, 5229, 5230, 821, 65, 141, 495, 175, 974, 11, 5228, 5229, 5230, 821, 65, 141, 495], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [1445, 354, 11, 5231, 5232, 65, 402, 974, 11, 5231, 5232, 821, 65, 141, 495], [376, 245, 288, 106, 29, 33, 1256, 134, 245, 1, 382, 527, 542, 1216, 98, 475, 2310, 467], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1556, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 124, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 5, 26, 1556, 22, 4, 5, 19, 12], [5, 26, 1556, 22, 4, 5, 19, 12, 5, 26, 1556, 22, 4, 5, 19, 12], [79, 13, 25, 102, 79, 13, 25, 102], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 95, 4, 2, 309, 27, 2, 95, 4, 2, 309], [403, 2, 320, 87, 381, 403, 2, 320, 87, 381], [27, 2, 122, 2, 490, 74, 27, 2, 122, 2, 490, 74], [218, 29, 275, 208, 21, 101, 14, 90, 633, 7, 721, 29, 10, 3, 177, 451, 1069, 2, 80, 8054, 40, 838, 508, 173, 40, 838, 508, 40, 838, 3493, 173, 40, 838, 3493], [34, 70, 965, 34, 70, 965], [41, 31, 209, 88, 690, 41, 31, 209, 88, 690], [14, 90, 5233, 5234, 29, 2, 74, 1165, 2152, 332, 2311, 2312, 14, 90, 5233, 5234, 29, 2, 74, 1165, 2152, 332, 2311, 2312], [13, 70, 403, 13, 70, 403], [76, 403, 11, 28, 5235, 76, 403, 11, 28, 5235], [128, 126, 1614, 365, 1364, 1, 39, 35, 14, 206, 73, 2025, 4112, 8055, 485, 2, 3, 2025, 594, 39, 35, 183, 647, 8056, 8057, 53, 3, 1097, 18, 23, 3494, 18, 23, 347, 14, 199, 1619, 8058, 8059, 7, 3495, 3496, 2, 23, 347], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [15, 859, 4, 3497, 6, 8, 45, 15, 859, 4, 3497, 6, 8, 45], [5236, 115, 4, 3497, 6, 8, 45, 5236, 115, 4, 3497, 6, 8, 45], [9, 873, 9, 873], [33, 41, 542, 134, 4, 372, 8060, 1162, 38, 179, 123, 170, 41, 41, 6, 405, 67, 21, 542, 100, 21, 63, 420, 833, 66, 161, 21, 200, 2540, 67, 21, 50, 820, 11, 197, 593, 7, 467, 21, 8061, 257, 14, 50, 80, 2, 398, 21, 33, 86, 107, 6, 99, 43, 12, 490, 1059, 1364, 36], [15, 26, 32, 602, 77, 15, 26, 32, 602, 77], [8, 84, 2, 118, 186, 2, 189, 11, 249, 110, 1688, 983, 6, 77, 18, 2313, 7, 1753, 447, 54, 2, 43, 373, 3, 473, 63, 350, 1501, 268, 12, 23, 1364, 569, 4057, 5, 6, 8, 147, 599, 169, 124, 23, 473, 219, 2, 598, 389, 276], [34, 70, 10, 258, 34, 70, 10, 258], [2314, 1257, 37, 2314, 1257, 37], [13, 25, 25, 41, 13, 11, 8062, 8063, 283, 79, 397, 13, 6, 661, 112, 180, 542, 95, 10, 2, 24], [621, 155, 29, 110, 49, 290, 1237, 30, 164, 155, 621, 29, 11, 3, 568, 96, 8064, 8065, 2540, 82, 90, 113], [287, 10, 605, 8, 178, 287, 97, 43, 825, 40, 222, 794, 51, 250, 2, 100, 173, 201, 1449, 3, 173, 6, 5237, 7, 97, 43, 825, 443, 287, 1910, 112, 12, 113, 38, 2026, 1321, 1036, 18, 1321, 287, 36, 661, 838, 9, 181, 18, 1189, 704, 143, 285, 78, 521], [4170, 4, 3, 3498, 594, 6, 75, 12, 3, 90, 113, 129, 146, 4170, 4, 3, 3498, 594, 6, 75, 12, 3, 90, 113], [238, 1911, 7, 1911, 133, 2, 90, 113, 6, 75, 112, 124, 105, 10, 238, 1911, 7, 1911, 133, 2, 90, 113, 6, 75, 112, 124, 105, 10], [226, 32, 64, 77, 226, 32, 64, 77], [443, 271, 1379, 1487, 696, 75, 12, 105, 10, 14, 326, 3, 163, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1045, 29, 110, 49, 164, 484, 37, 250, 2, 29, 4171, 8066, 91, 163, 8067, 8068], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [874, 1000, 403, 1448, 1166, 513, 7, 584, 2027, 874, 1000, 403, 1448, 1166, 513, 7, 584, 2027], [29, 2, 352, 5238, 11, 5239, 5240, 5239, 5240, 9, 345, 65, 29, 2, 352, 5238, 180, 219, 29, 14, 91, 3, 163, 57, 36, 8069, 365, 334, 151, 6, 343, 836, 116, 44, 187, 8, 1376, 3, 101, 7, 35, 49, 4, 361, 11, 1162, 7, 134, 30, 3, 101, 137, 3, 73, 282, 54, 104, 50, 411, 49, 8, 849, 84, 2, 43, 267, 220, 433, 63, 84, 2, 410, 8070, 268, 23, 177, 71, 39, 35, 50, 2, 38, 23, 133, 45, 257, 38, 183, 3, 8071, 8072, 67, 23, 6, 273, 45, 613], [27, 2, 122, 2, 41, 27, 2, 122, 2, 41], [37, 30, 5241, 82, 20, 15, 8073, 7, 24, 418, 111, 101, 54, 104, 50, 30, 451, 37, 3, 5241, 3, 82, 20, 3, 451, 684, 377, 4, 34, 2526, 142, 5242, 8074, 8075, 7, 5242, 8076, 8077, 68, 35, 38, 316, 2523, 14, 5214, 80], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [235, 108, 453, 24, 868, 146, 54, 86, 2, 122, 2, 41], [41, 94, 55, 6, 41, 75, 39, 1089, 2, 122, 10, 148, 2315, 14, 386, 331, 36, 33, 383, 8078, 8079, 854, 149, 685], [307, 14, 189, 577, 252, 4, 5243, 14, 189, 577, 252, 4, 5243, 23, 6, 1754, 307, 53, 47, 38, 2, 644, 2316, 225, 20, 66, 3, 591, 18, 3, 593, 1831, 151, 63, 72, 1475, 18, 981, 36, 23, 271, 2, 190, 36, 113, 2, 113, 186, 473, 2316, 225, 20, 6, 8, 1751, 4, 501], [88, 29, 31, 111, 1689, 97, 95, 158, 88, 83, 195, 4, 1689], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [57, 683, 2, 114, 10, 57, 2, 4172, 683, 11, 160, 3048, 8080, 8081, 90, 8082, 8083, 8084, 90, 90, 8085, 8086, 8087, 8088], [39, 8, 392, 158, 88, 62, 966, 392, 10, 212, 10, 3, 459, 39, 8, 392, 158, 88, 62, 966, 392, 10, 212, 10, 3, 459, 21, 1449, 33, 13, 6, 8, 391, 23, 6, 3, 13, 199, 11, 83, 165, 29, 3474, 4, 24], [13, 25, 13, 25], [3499, 52, 74, 74, 8089, 8090, 8091, 6, 8, 45, 39, 176, 3499, 370, 11, 161, 8092], [27, 2, 119, 13, 27, 2, 119, 13], [8, 84, 2, 46, 2, 1812, 197, 101, 21, 1493, 1067, 8, 84, 2, 46, 2, 1812, 197, 101, 21, 1493, 1067, 1, 622, 34, 34, 9], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [115, 1814, 280, 11, 194, 24, 199, 97, 43, 1105, 4, 2, 21, 664, 3, 401, 5244, 6, 1478, 115, 1814, 280, 11, 194, 24, 199, 97, 43, 1105, 4, 2, 21, 664, 3, 401, 5244, 6, 1478], [5245, 219, 3, 1183, 2, 504, 2, 3, 218, 4173, 5246, 2317, 2770, 5245, 219, 3, 1183, 2, 504, 2, 3, 218, 4173, 5246, 2317, 2770], [219, 29, 2, 78, 40, 3500, 5247, 2, 3, 28, 5248, 5249, 5250, 633, 201, 29, 3, 56, 18, 3, 223, 448, 219, 29, 6, 5248, 5249, 5250, 223, 107, 3, 173, 6, 651, 10, 161, 1249, 254, 254, 276, 3115, 173, 3500, 276, 3115, 173, 5247, 23, 63, 236, 98, 66, 161, 918, 21, 8093, 389, 180, 63, 8094, 489], [54, 29, 2, 338, 54, 29, 2, 338], [82, 20, 400, 82, 20, 400], [168, 20, 11, 113, 113, 6, 45, 343, 2153, 14, 50, 581, 662, 1116, 168, 20, 11, 113, 113, 6, 45, 343, 2153, 14, 50, 581, 662], [88, 31, 209, 8095, 31, 88, 31, 209, 41, 31], [28, 219, 50, 2, 46, 2, 3, 337, 28, 219, 50, 2, 46, 2, 3, 337], [168, 20, 4174, 700, 125, 89, 8, 134, 45, 30, 3, 571, 6, 3116, 1912, 3, 578, 18, 359, 6, 9, 345, 285, 12, 3, 1127, 1, 4175, 8096, 342, 2541, 8097, 1244, 4168, 1043, 3501, 4175, 8098, 1106, 8099, 3089, 1244, 3502, 5251, 1043, 4176, 3501], [3117, 3118, 223, 974, 4177, 2489, 44, 711, 8100, 99, 2509, 3, 24, 62, 5252, 12, 3, 591, 18, 8101, 99, 5252, 4, 3, 312, 18, 1797, 3, 460, 404, 20, 1380, 223, 233, 8102, 175, 8103, 1813, 39, 43, 1832, 426, 1833, 8104, 207, 44, 3, 568, 2, 1739, 3, 644, 174, 767, 63, 5253, 65, 29, 11, 175, 2318, 1538, 18, 4178, 3, 8105, 6, 1834, 2154, 77, 66, 3, 8106, 62, 3, 1748, 162, 1076, 7, 264, 43, 1690, 30, 600, 18, 444], [14, 25, 33, 26, 13, 1077, 8107], [28, 219, 50, 2, 46, 2, 3, 128, 126, 48, 28, 219, 50, 2, 46, 2, 3, 128, 126, 48, 1, 794, 3, 28, 3, 57, 59, 7, 13, 169, 5254, 3, 28, 222, 1, 635, 3, 28, 2, 335, 7, 46, 2, 3, 128, 126, 1, 28, 328, 180, 6, 172, 84, 2, 46, 2, 3, 128, 126, 1, 31, 321], [32, 707, 32, 707], [41, 1318, 239, 626, 41, 1318, 239, 626], [142, 123, 208, 63, 8, 84, 2, 465, 10, 155, 112, 23, 334, 72, 8108, 190, 63, 8, 84, 2, 95, 4, 47, 38, 248, 207, 1502, 44, 3, 4179, 6, 64, 38, 3, 71, 104, 13, 65, 562, 7, 755, 43, 274, 14, 844, 80, 3, 73, 13], [1913, 3503, 8, 323, 98, 4, 548, 11, 209, 333, 55, 1, 1, 51, 199, 548, 11, 209, 333, 172, 39, 91, 3, 1913, 3503, 516, 51, 765, 6, 1548, 10, 622, 2, 464, 63, 84, 2, 91, 1913, 3503, 1256, 573, 123, 3, 201, 2024, 119, 10, 33, 115, 6, 828, 1914, 2, 174, 3504, 39, 35, 14, 50, 2107, 33, 1913, 3503, 251], [213, 31, 1114, 1115, 7, 5255, 31, 213, 31, 1114, 1115, 7, 5255, 31], [8, 84, 2, 106, 1104, 3119, 117, 5256, 616, 32, 1622, 38, 661, 1623, 1672, 8, 84, 2, 106, 1104, 11, 186, 117, 5256, 4180, 127, 1, 3120, 1258, 1258, 1258, 1258, 1, 8109, 205, 242, 11, 117, 1, 1, 37, 1, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 9, 654, 1, 1, 5257, 1, 35, 670, 443, 616, 32, 1622, 1541, 625, 2, 661, 1623, 1672, 4, 367, 438, 716, 83, 616, 32, 1622, 1541, 30, 1623, 314, 1622, 755, 43, 625, 2, 3, 179, 1623, 314, 1, 1, 1107, 1, 68, 3, 71, 6, 72, 37, 71, 114, 7, 119, 3, 616, 32, 1622, 1541, 207, 44, 83, 1541, 30, 1623, 314, 1622, 42, 625, 2, 3, 179, 1623, 314, 1, 1, 4, 8110, 35, 39, 119, 23, 71, 36, 72, 37, 71, 2, 435, 71, 319, 62, 35, 39, 4181, 21, 2028, 2, 106, 207, 91, 3, 3505, 3412, 8111, 1012, 426, 2542, 949, 119, 71, 753, 71, 3121, 654, 71], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [547, 1755, 171, 8, 45, 110, 100, 547, 1755, 7, 122, 2, 26, 1, 335, 2, 100, 171, 8112, 8113, 8114, 462, 125, 916, 12, 1, 3, 835, 2, 493, 1494, 11, 8115, 664, 9, 178, 4182, 131, 153, 6, 236, 2, 11, 501, 1, 413, 837, 3, 52, 3506, 7, 89, 680, 5258, 118, 130, 333, 8, 545, 37, 1, 1, 6, 151, 829, 385, 30, 3, 52, 6, 151, 829, 385, 30, 33, 609, 1, 1, 54, 2, 1216, 440, 11, 72, 415, 2771, 207, 21, 6, 2490, 307, 44, 118, 23, 833, 2772], [97, 176, 10, 90, 74, 1610, 143, 345, 14, 398, 97, 176, 10, 90, 74, 1610, 143, 345, 14, 398], [27, 2, 176, 36, 3, 74, 3507, 27, 2, 176, 36, 3, 74, 3507], [110, 54, 2, 38, 8116, 3508, 543, 2, 33, 130, 57, 9, 197, 65, 1756, 80, 30, 23, 49, 8, 614, 424, 23, 63, 1167, 77, 51, 330, 268, 9, 50], [28, 27, 2, 122, 12, 3, 1060, 12, 174, 28, 27, 2, 122, 12, 3, 1060, 12, 174, 425, 3, 58, 133, 609, 1805, 3, 58, 1450, 399, 3, 58, 830, 399, 3, 1749, 10, 3, 115, 991, 3, 115, 28, 8117, 180, 6, 8118, 381, 7, 99, 121, 1059], [1168, 272, 695, 370, 303, 110, 479, 2, 176, 175, 107, 3509, 4, 3, 370, 303, 53, 175, 1168, 272, 695, 370, 303, 30, 3, 2120, 8119, 23, 6, 8, 285, 44, 110, 39, 633, 21, 30, 175, 513, 8120, 86], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [218, 29, 275, 208, 21, 101, 14, 90, 633, 7, 721, 29, 10, 3, 177, 451, 1069, 2, 80, 8121, 40, 838, 508, 173, 40, 838, 508, 40, 838, 3493, 173, 40, 838, 3493], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 236, 28, 5259, 546, 169, 46, 83, 58, 824, 42, 346, 14, 236, 28, 5259, 546, 169, 46, 83, 58, 824, 42, 346], [486, 4, 2, 118, 4, 2135, 30, 1414, 1415, 486, 4, 2, 118, 4, 2135, 30, 1414, 1415], [378, 32, 132, 378, 32, 132], [295, 255, 2319, 5260, 1557, 1558, 295, 255, 2319, 5260, 1557, 1558], [280, 73, 471, 2764, 2765, 280, 73, 471, 2764, 2765], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [60, 94, 361, 522, 1337, 277, 6, 75, 12, 49, 105, 10, 60, 94, 361, 522, 1337, 277, 6, 75, 12, 49, 105, 10], [60, 94, 24, 262, 1187, 92, 69, 856, 618, 6, 75, 112, 49, 105, 48, 6, 98, 92, 69, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [214, 4, 3, 381, 719, 214, 107, 4, 190, 3, 8122, 89, 8, 134, 68, 612, 497, 36, 240, 276, 3, 86, 4167, 8123, 14, 509, 175, 8124, 781, 35], [27, 2, 515, 41, 27, 2, 515, 41], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 124, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 8125, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 14, 25, 3, 13, 68, 275, 14, 132, 3, 59, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [15, 32, 64, 208, 101, 1, 1, 33, 15, 32, 351, 64, 411, 18, 385, 13, 1134, 1, 1, 14, 295, 2, 118, 132, 3, 179], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 303, 160, 127, 74, 959, 857, 160, 127, 74, 959, 6, 357, 1312, 647, 3510, 36, 959, 2, 959, 10, 15, 571, 74, 857, 35, 99, 54, 2, 38, 61, 58, 1121, 7, 3, 74, 430, 2284, 389, 404, 20, 34, 39, 43, 825, 106, 35, 38, 83, 4183, 693, 8126, 16, 9, 16, 4184, 15, 74, 56, 387, 1153, 59, 913, 959, 56, 2484, 3, 179, 138, 196, 68, 1150, 138, 2484, 3, 179, 410, 416, 18, 3, 857, 15, 74, 682, 1915, 8127, 85, 15, 74, 106, 35, 511, 199, 387, 1153, 59, 913, 302, 3, 15, 52, 3, 74, 219, 2, 43, 1916, 15, 26, 26, 26, 26, 26, 26, 585, 474, 449, 585, 26, 474, 179, 53, 376, 959, 85, 6, 511, 727, 10, 261, 958, 36, 15, 387, 225, 418, 186, 1001, 449, 179, 53, 376, 959, 271, 18, 211, 2320, 2321, 1917, 641, 4185, 179, 53, 376, 959, 437, 21, 48, 129, 56, 3117, 3118, 8128, 74, 1911, 107, 74, 1381, 196, 1911, 8129], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [5261, 5262, 486, 704, 218, 29, 403, 5261, 5262, 486, 704, 218, 29, 403], [218, 633, 7, 721, 29, 524, 208, 1033, 1, 1, 14, 90, 29, 2, 23, 993, 11, 80, 11, 633, 7, 721, 29, 1, 1, 4186, 1624, 875, 485], [453, 18, 41, 57, 29, 10, 383, 108, 11, 8130, 8131, 111, 14, 90, 57, 29, 10, 73, 383, 108, 11, 161, 2501, 1529, 120, 136, 53, 1674, 57, 120, 56, 8132, 8133, 7, 8134, 8135, 6, 23, 108, 24, 868, 16, 6, 23, 857, 18, 104, 376, 108, 16, 53, 3, 1442, 376, 1683, 86, 6, 2155], [29, 31, 2, 338, 55, 197, 18, 3, 8136, 8137, 8138, 8139, 4187, 28, 59, 6, 8140, 6, 8, 84, 2, 46, 2, 338, 53, 283, 28, 59, 64, 180, 6, 1734, 28, 14, 243, 236, 283, 13, 7, 778], [620, 342, 1168, 1443, 369, 1149, 2543, 5263, 1074, 1075, 8141, 342, 1168, 1443, 369, 1149, 2543, 5263, 1074, 1075], [280, 73, 471, 4, 1625, 3511, 3512, 280, 73, 471, 4, 1625, 3511, 3512], [3, 317, 10, 161, 1691, 348, 6, 406, 365, 334, 8142, 3, 317, 10, 161, 1691, 348, 6, 406, 14, 269, 175, 857, 317, 12, 2029, 1189, 781, 35], [743, 255, 218, 529, 63, 3101, 14, 743, 257], [920, 2498, 36, 2709, 108, 5264, 51, 1125, 3122, 66, 1042, 920, 2498, 36, 2709, 108, 5264, 51, 1125, 3122, 66, 1042], [876, 14, 876, 3, 421, 173, 40, 162, 1002, 8143, 5265, 1161, 83, 287, 426, 5265, 3513, 3514, 556, 4188, 4189], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [74, 8, 45, 111, 21, 1, 1, 14, 50, 2, 353, 161, 8144, 74, 123, 3, 74, 6, 494, 169, 74, 2540, 114, 21, 6, 2, 106, 30, 161, 1255, 7, 78, 1503, 4, 3, 78, 719, 1, 1, 47, 522, 38, 9, 1835, 7, 4190, 2, 796, 44, 14, 38, 612, 2, 50, 510, 1, 1, 1, 135], [168, 20, 363, 7, 5266, 42, 45, 343, 278, 168, 20, 363, 7, 5266, 42, 45, 343, 278], [721, 1473, 255, 5267, 960, 2004, 721, 1473, 255, 5267, 960, 2004], [10, 3, 895, 1626, 47, 42, 303, 738, 924, 18, 895, 151, 63, 119, 4, 961, 222, 912, 30, 34, 9, 23, 6, 8, 546, 303, 10, 3, 895, 1626, 21, 6, 323, 3, 391, 131, 67, 3, 8145, 42, 4, 738, 698, 5268, 924, 18, 961, 196, 2544, 5269, 924, 18, 32, 107, 183, 91, 44, 151, 6, 72, 1344, 1065, 357, 727, 11, 3, 740, 1504, 8146, 2545, 5270, 8147, 5268, 14, 263, 161, 73, 961, 32, 222, 201, 3, 895, 394, 264, 176, 10, 3, 895, 481, 8, 600, 738, 7, 895], [168, 20, 777, 257, 8, 327, 14, 50, 662, 1918, 359, 106, 8, 410, 21, 158, 3, 2, 106, 302, 14, 114, 3, 233, 7, 715, 3, 52], [6, 87, 75, 110, 49, 8, 84, 2, 118, 158, 87, 722, 172, 6, 151, 72, 94], [1259, 1682, 4, 143, 973, 3123, 158, 15, 21, 468, 80, 201, 2322, 1888, 4, 3, 52, 1259, 1682, 4, 143, 973, 3123, 158, 15, 21, 468, 80, 201, 2322, 1888, 4, 3, 52, 14, 129, 8148, 80, 510, 33, 86], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [26, 1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 467, 714, 1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 276, 714, 7, 3, 416, 5271, 6, 304, 3, 31, 1169, 4, 15, 15, 52, 26, 53, 613, 53, 10, 205, 8149, 20, 205, 8150, 314, 994, 1037, 582, 37, 71, 1065, 6, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 397, 182, 714, 6, 837, 68, 161, 8151, 416, 6, 304, 83, 182, 1089, 2, 43, 45, 494, 67, 746, 3, 28, 521, 2, 143, 165, 182, 387, 592, 62, 21, 7, 3515, 3, 416, 5271, 3, 5272, 2546, 52, 4191, 30, 3, 37, 71, 514, 937, 312, 18, 1274, 3516], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [27, 2, 189, 186, 307, 113, 38, 673, 97, 350, 917, 11, 249, 161, 117, 6, 343, 307, 23, 981, 1, 246, 35, 14, 50, 8152], [81, 131, 208, 491, 1, 66, 1531, 197, 18, 3, 218, 4, 40, 8153, 65, 141, 584, 1, 1288, 35, 2, 2009, 3, 179, 1, 1, 30, 135], [26, 1430, 1815, 631, 31, 111, 21, 101, 1, 1, 97, 766, 840, 192, 3, 229, 794, 201, 747, 2, 766, 899, 4, 15, 192, 80, 1, 1, 308, 398, 11, 80], [112, 5273, 78, 193, 5274, 8, 1135, 112, 5273, 78, 193, 5274, 8, 1135], [4192, 8154, 123, 171, 36, 2323, 1153, 24, 144, 124, 123, 171, 36, 2323, 1153, 24, 144, 260, 52, 2323, 348, 103, 416, 1911, 8155, 123, 107, 37, 665, 125, 3125, 2, 8156, 8157, 62, 8158, 639, 940, 372, 1078, 124, 628, 233, 4193, 107, 175, 222], [25, 3, 13, 11, 5275, 5276, 10, 15, 160, 15, 365, 483, 1, 185, 35, 14, 25, 13, 11, 15], [8, 84, 2, 206, 555, 632, 158, 128, 126, 8159, 8160, 1604, 120, 1358, 24, 361, 1601], [1370, 191, 217, 102, 29, 2, 118, 1370, 33, 59, 6], [39, 95, 4, 404, 20, 533, 28, 8161, 8162, 8163, 39, 95, 10, 3, 404, 20, 3, 52, 452, 3, 28, 7, 13, 2031, 185, 35, 134, 10, 23], [58, 94, 3517, 4194, 4195, 531, 75, 112, 124, 10, 105, 48, 65, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 2773, 22, 4, 5, 19, 12, 5, 26, 2773, 22, 4, 5, 19, 12], [249, 2774, 307, 8164, 8165, 49, 291, 292, 2547, 2548, 4196, 4197, 550, 249, 2774, 307, 21, 50, 14, 50, 114, 21, 307, 5277, 4, 710, 14, 2151, 1108, 31, 2, 161, 21, 53, 613, 262, 1906, 120, 2547, 2548, 49, 4196, 4197, 1757, 2549, 4198, 4199, 243, 249, 2774, 111, 334, 23, 31, 273, 8, 795, 989, 273, 3112, 179, 31, 3, 441, 1505, 2324, 467, 5278, 1505, 441, 1505, 5279, 7, 2325, 5278, 1505, 5279, 67, 4, 15, 26, 2156, 806, 21, 6, 391, 163, 11, 104, 797, 111, 334, 54, 104, 1758, 10, 23, 31, 23, 6, 31, 2326, 112, 372, 273, 8, 795, 989, 163, 57, 2127, 11, 104, 797, 8166, 8167, 1072, 739, 57, 124, 4196, 4197, 4198, 4199, 2547, 2548, 1533, 249, 2774, 55, 21, 588, 38, 5280, 483, 342, 1079, 556, 714, 135], [3, 263, 184, 63, 820, 727, 12, 1451, 18, 3, 2775, 63, 346, 14, 50, 2, 995, 21, 251, 14, 91, 377], [15, 64, 55, 33, 28, 59, 8168, 14, 50, 2, 132, 21], [37, 15, 26, 1222, 1692, 2300, 225, 20, 1551, 97, 373, 3, 15, 26, 1222, 1692, 2300, 225, 20, 1551, 429, 72, 37, 1, 135], [128, 126, 29, 31, 648, 56, 8169, 372, 56, 8170, 117, 5, 1836, 149, 685, 129, 57, 196, 1205, 797, 107, 8171, 63, 8172, 304, 16, 665, 18, 123, 27, 2, 29, 128, 126, 48, 68, 23, 123, 2327, 129, 104, 295, 101, 7, 1109, 261, 724, 222, 688, 59, 26, 8173, 8174, 8175, 341, 7, 116, 124, 28, 31, 103, 28, 89, 8, 38, 1183, 1477, 1271, 207, 2032, 1128, 2, 3, 459, 412, 2550, 2550, 102, 1128, 2, 455, 413, 10, 886, 3518, 29, 502, 71, 2033, 330, 29, 2, 23, 48], [29, 2, 26, 110, 54, 29, 2, 26, 205, 242, 52, 691, 8176, 739, 5281, 5282, 120, 4200, 4201, 8177, 8178, 1275, 2776], [9, 898, 4, 1666, 9, 898, 4, 1666], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [29, 2, 15, 26, 11, 28, 5283, 5284, 29, 2, 15, 26, 11, 28, 5283, 5284], [218, 29, 653, 11, 40, 1759, 1440, 2551, 4202, 1, 218, 29, 653, 40, 1, 1, 2777, 59, 1, 28, 59, 1, 1, 2777, 1439, 2017, 4203, 1, 28, 2017, 1836, 1, 1, 2551, 1, 218, 4186, 1624, 875, 485, 839, 3075, 1, 1, 3126, 2157, 4204, 1, 103, 18, 29, 633, 201, 62, 315, 753], [218, 29, 102, 146, 54, 29, 2, 3, 177, 218, 11, 161, 875, 485, 4186, 1624, 875, 485, 54, 2, 118, 633, 721, 54, 2, 504, 287, 581, 7, 43, 84, 2, 100, 444], [499, 32, 499, 32], [780, 7, 1552, 366, 98, 4, 690, 88, 8, 45, 3, 163, 464, 6, 36, 8179, 8180, 390, 2034, 98, 462, 44, 390, 8181, 47, 38, 3, 167, 429], [82, 20, 8, 84, 2, 70, 73, 117, 82, 20, 8, 84, 2, 70, 73, 117], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [27, 2, 100, 82, 20, 27, 2, 100, 82, 20], [1279, 2, 189, 570, 1672, 4, 26, 15, 482, 5285, 110, 9, 345, 38, 29, 2, 189, 570, 1672, 4, 26, 201, 26, 14, 70, 29, 11, 570, 314, 1665, 4, 3, 205, 869, 52, 26, 482, 5285], [128, 126, 31, 146, 290, 210, 30, 128, 126, 27, 2, 29, 47, 38, 964, 44, 826, 38, 2, 644, 481, 2, 3, 2025, 7, 42, 8, 84, 2, 29, 51, 99, 21, 43, 833], [1586, 138, 196, 21, 65, 141, 653, 66, 161, 2510, 200, 2, 269, 444, 30, 1586, 138, 196, 11, 116, 1425, 44, 99, 43, 531, 5286, 4, 39, 35, 269, 129, 146, 106, 8182, 3, 102, 11, 1586, 138, 196, 2, 23, 767, 11, 967], [128, 126, 52, 8, 45, 3, 128, 126, 52, 6, 8, 45, 443, 195, 171, 164, 72, 37, 250, 2, 100, 143, 24, 128, 126, 144, 580, 23, 3127, 4205, 3, 822, 312, 53, 47, 97, 29, 143, 102, 62, 70, 495, 2538, 3, 37, 71, 184, 2328, 98, 6, 163, 23, 4205, 3042, 7, 90], [97, 118, 33, 1062, 340, 1919, 2, 134, 10, 33, 148, 97, 118, 33, 1062, 340, 1919, 2, 134, 10, 33, 148], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [128, 126, 31, 146, 63, 3519, 489, 18, 76, 7, 248, 567, 420, 2, 118, 251, 4, 49, 172, 251, 158, 76, 67, 97, 392, 10, 2, 88], [128, 126, 31, 128, 126, 31], [128, 126, 75, 128, 126, 75], [87, 11, 191, 6, 8, 267, 2, 3, 480, 8183, 8184, 86, 33, 87, 11, 191, 39, 122, 2, 480, 23, 65, 141, 601, 10, 83, 593, 38, 1837, 7, 1105, 251, 158, 87, 67, 21, 99, 8, 122, 7, 737, 164, 23, 37], [3, 24, 128, 126, 6, 260, 75, 233, 112, 124, 3, 24, 128, 126, 6, 260, 75, 233, 112, 124], [378, 128, 126, 347, 29, 31, 378, 128, 126, 347, 29, 31], [51, 327, 1222, 171, 8185, 100, 127, 171, 3, 171, 6, 8, 1827, 90, 3128, 2528, 51, 327, 3, 171, 698, 246, 43, 249, 11, 271, 113, 53, 3, 221, 271, 7, 1693, 614, 10, 3, 3129, 681, 44, 3128, 2528, 42, 2762, 23, 171, 6, 8, 1694, 98, 23, 3128, 1367], [9, 873, 200, 1018, 5287, 79, 327, 158, 123, 1128, 2, 170, 98, 736, 347, 590, 494, 4, 2003, 1042, 30, 3520, 28, 63, 84, 2, 95, 4, 137, 522, 32, 67, 5288, 5288, 38, 29, 2, 21, 248, 2329, 75, 115, 7, 250, 1506, 98, 9, 465, 8186, 61, 9, 465, 21, 63, 601, 2, 736, 167, 257, 7, 257, 1047, 5287, 129, 222, 39, 43, 1376, 514], [40, 369, 370, 1010, 40, 2035, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 2035, 6, 272, 198, 375, 198, 178], [110, 54, 33, 196, 543, 2, 1920, 1610, 110, 54, 33, 196, 543, 2, 1920, 1610], [508, 107, 64, 324, 171, 508, 107, 64, 324, 171], [15, 26, 13, 25, 15, 26, 13, 25], [21, 13, 55, 1382, 2, 25, 83, 33, 224, 411, 64, 88, 15, 76, 55, 83, 33, 224, 42, 64, 88, 15, 76, 135, 750], [87, 7, 41, 2313, 31, 381, 42, 8, 323, 98, 4, 87, 87, 7, 41, 2313, 31, 381, 42, 8, 323, 98, 4, 87, 1, 37, 71, 163, 1, 1, 37, 71, 87, 11, 191, 7, 480, 2552, 1693, 133], [41, 3521, 27, 2, 100, 3, 41, 558, 3521, 12, 312, 3522], [23, 71, 63, 331, 2, 3, 24, 1627, 603, 14, 129, 24, 21, 50, 564, 11, 316, 136, 8187, 8188, 124, 291, 292, 2553, 319, 243, 461, 9, 8189, 55, 185, 35, 114, 23, 71], [1838, 32, 11, 540, 8190, 8191, 24, 8192, 1240, 57, 1538, 36, 172, 8193, 1059, 12, 959], [27, 2, 176, 407, 8, 336, 27, 2, 176, 407, 8, 336], [27, 2, 100, 41, 27, 2, 100, 41], [9, 29, 2, 309, 91, 96, 639, 71, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15], [219, 2, 119, 13, 219, 2, 119, 13], [1373, 2, 95, 4, 2, 15, 7, 82, 20, 110, 274, 33, 13, 137, 3, 13, 120, 7, 172, 49, 64, 77, 18, 15, 304, 3, 13, 120, 2, 132, 67, 273, 1373, 2, 95, 4, 2, 15, 7, 82, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 100, 535, 27, 2, 100, 535], [87, 6, 8, 1628, 250, 2, 199, 87, 6, 8, 545, 63, 45, 1256], [378, 28, 27, 2, 46, 2, 3, 115, 378, 28, 27, 2, 46, 2, 3, 115, 1, 635, 3, 28, 2, 715, 3, 115, 7, 335, 2, 46, 30, 3, 73, 13, 9, 465, 1, 25, 7, 50, 3, 28, 46, 2, 3, 115, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [2104, 233, 73, 933, 223, 8194, 8195, 166, 2036, 347, 75, 2, 1088, 44, 83, 275, 131, 1190, 42, 421, 389, 2287, 199, 23, 1380, 11, 3523, 5289, 5290, 1760, 449, 14, 421, 83, 1482, 59, 648, 56, 8196, 372, 56, 8197, 271, 90, 166, 120, 2001, 8198, 8199, 570, 314, 8200, 415, 24, 56, 8201, 85, 571, 106, 284, 54, 29, 10, 337, 337, 16, 68, 16, 6, 28, 1170, 522, 62, 739, 1170, 54, 691, 7, 695, 299, 263, 11, 337, 206, 1171, 2297, 28, 2, 28, 26, 32, 6, 24, 57, 275, 11, 23, 568, 68, 16, 66, 506, 841, 683, 99, 43, 625, 11, 199, 18, 1191, 7, 128, 126, 201, 8, 41, 217, 62, 87, 68, 41, 217, 62, 87, 42, 275, 316, 3524, 683, 755, 43, 625, 7, 39, 43, 304, 201, 10, 24, 142, 574, 841, 62, 683, 29, 265, 448, 275, 23, 6, 2, 485, 586, 36, 568, 29, 11, 2158, 1416, 29, 599, 341, 6, 3, 142, 868, 66, 24, 68, 16, 6, 21, 148, 62, 527, 142, 56, 6, 194, 29, 76, 275, 68, 16, 14, 269, 2, 184, 83, 529, 15, 571, 58, 605, 3, 28, 219, 29, 192, 76, 170, 341], [191, 217, 55, 191, 217, 191, 217, 76, 8202, 8203, 854, 220, 685, 8204, 101], [24, 621, 32, 236, 98, 24, 621, 32, 236, 98], [4, 161, 4206, 3525, 57, 767, 47, 39, 8205, 72, 57, 7, 2554, 252, 21, 67, 21, 6, 8, 8206, 8, 638, 207, 44, 3, 165, 826, 45, 3, 57, 767, 39, 91, 448, 65, 669, 57, 207, 47, 42, 8207, 134], [403, 704, 3526, 500, 639, 245, 403, 704, 3526, 500, 639, 245], [27, 2, 46, 2, 337, 52, 5291, 5292, 27, 2, 46, 2, 337, 52, 5291, 5292, 1, 1, 425, 32, 7, 336, 44, 21, 63, 8, 64, 77, 1, 2291, 28, 2, 132, 32, 36, 13, 125, 20, 7, 335, 637, 4, 257, 241, 116], [27, 2, 515, 309, 1114, 1115, 31, 27, 2, 515, 309, 1114, 1115, 31], [27, 2, 29, 116, 27, 2, 29, 116], [363, 25, 80, 3, 26, 88, 160, 29, 56, 8208, 182, 213, 130, 155, 204, 117, 107, 214, 146, 363, 25, 80, 3, 26, 88, 160, 29, 1498], [97, 118, 1799, 2, 117, 220, 295, 829, 385, 30, 3, 86, 35, 118, 8209, 423, 107, 6], [130, 41, 8, 545, 97, 100, 8210, 8211, 86, 90, 271, 46], [486, 2, 132, 1817, 1818, 32, 28, 59, 5293, 486, 2, 132, 1817, 1818, 32, 28, 59, 5293], [14, 236, 751, 255, 47, 74, 63, 25, 2, 2330, 1009, 5294, 14, 236, 751, 255, 47, 74, 63, 25, 2, 2330, 1009, 5294], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 267, 2, 3, 28, 52, 137, 487, 50, 3, 28, 46, 2, 3, 13, 125, 20, 13, 20, 7, 119, 3, 224, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 396, 328, 44, 180, 63, 84, 2, 46, 31, 321], [3527, 8212, 5295, 8213, 8214, 3466, 168, 20, 49, 2126, 4207, 1043, 5296, 8215, 5297, 30, 711, 5295, 28, 5298, 8216, 168, 20, 89, 8, 465, 2, 3, 142, 4207, 37, 71, 52, 37, 7, 1839], [32, 132, 32, 132], [193, 342, 46, 4, 1625, 3511, 3512, 193, 342, 46, 4, 1625, 3511, 3512], [15, 365, 334, 49, 27, 2, 95, 158, 33, 15, 53, 1695, 169, 485, 30, 8217, 8218, 21, 63, 1218, 23, 63, 36, 3, 8219, 18, 605, 39, 35, 14, 391, 207, 39, 95, 4, 53, 1695], [27, 2, 46, 2, 26, 27, 2, 46, 2, 26], [5299, 8, 45, 783, 2, 4208, 2331, 394, 2332, 562, 5299, 8, 45, 783, 2, 4208, 2331, 394, 2332, 562], [15, 5300, 4209, 54, 2, 2159, 2, 142, 5301, 14, 2159, 3, 15, 337, 5300, 1022, 2, 23, 142], [54, 29, 2, 15, 26, 265, 5302, 5303, 54, 29, 2, 15, 26, 265, 5302, 5303], [28, 219, 50, 2, 46, 2, 15, 26, 28, 219, 50, 2, 46, 2, 15, 26, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 8220, 2, 3, 15, 26, 1, 31, 321], [54, 3, 782, 18, 73, 115, 54, 3, 782, 18, 73, 115], [21, 520, 3130, 8221, 1, 1, 39, 612, 50, 80, 2, 211, 3130, 38, 241, 210], [39, 35, 14, 583, 80, 29, 2, 3, 26, 205, 242, 52, 28, 5304, 39, 35, 14, 583, 80, 29, 2, 3, 26, 205, 242, 52, 28, 5304], [1735, 2, 26, 55, 1, 311, 2, 914, 20, 205, 869, 14, 729, 80, 2, 1735, 2], [33, 128, 126, 7, 500, 790, 1761, 11, 13, 110, 274, 33, 13, 576, 2778, 112, 737, 164, 891, 2, 322, 33, 57, 7, 13, 106, 7, 680, 1147, 257, 118, 1840, 2, 322, 21, 33, 197, 263, 6, 8, 5305, 411, 18, 23, 31, 8222, 116, 134, 30, 173, 737, 164, 3, 1553], [1921, 4, 15, 52, 1223, 311, 2, 694, 2333, 3, 24, 1921, 63, 350, 66, 8223, 8224, 389, 390, 1126, 3, 24, 1291, 302, 2034, 421, 389, 390, 1126, 3, 1023, 42, 8, 3528, 243, 625, 4210, 7, 1744, 2, 80, 67, 21, 2037, 421], [243, 34, 9, 3529, 28, 3530, 13, 119, 524, 11, 195, 14, 574, 2, 8225, 8226, 55, 8227, 332, 161, 971, 4, 451, 1507, 96, 49, 27, 2, 119, 3, 224, 411, 3, 15, 52, 224, 42, 8, 25, 2, 1102, 106, 8, 253, 448, 23, 34, 264, 43, 625, 2, 350, 3, 34, 7, 21, 63, 625, 66, 612, 2, 35, 68, 21, 65, 2, 465, 2, 612, 1825, 14, 3072, 21, 2334, 5306, 15, 26, 32, 64, 46, 8, 285, 5306, 15, 26, 32, 64, 46, 8, 285], [54, 29, 2, 2160, 3464, 5307, 1841, 5308, 54, 29, 2, 2160, 3464, 5307, 1841, 5308], [218, 2137, 36, 254, 55, 83, 1, 1, 185, 35, 14, 50, 80, 5309, 3, 584, 218, 36, 254, 1, 96, 63, 3, 229, 172, 21, 8, 581, 218, 56, 1316, 1214, 1, 1316, 1214, 70, 173, 40, 749, 3448, 4211, 4212, 1316, 1214, 101, 1316, 1094, 2779, 1, 1, 14, 295], [8, 84, 2, 239, 610, 4, 191, 217, 8, 84, 2, 239, 610, 4, 191, 217], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [518, 1617, 3467, 110, 97, 95, 158, 3, 518, 1617, 2780, 62, 25, 33, 8228, 135, 750, 8229, 8230], [15, 29, 31, 25, 13, 11, 26, 11, 5310, 52, 26, 26, 26, 26, 585, 165, 322, 28, 59, 18, 28, 290, 3, 31, 482, 252, 3, 28, 219, 62, 63, 45, 30, 896, 3, 31, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28, 5310], [218, 29, 5311, 3531, 2707, 14, 91, 96, 4, 1696, 1, 1, 3514, 556, 135], [41, 8, 45, 41, 8, 45], [8, 84, 2, 29, 3131, 2537, 541, 116, 413, 10, 3, 3131, 229, 118, 3, 606, 2537, 71, 118, 3, 96, 71, 4, 73, 681, 49, 8, 357, 84, 2, 29, 3131, 2537, 10, 162, 20], [738, 396, 738, 396], [27, 2, 118, 376, 475, 4, 41, 55, 1, 1, 14, 263, 49, 27, 2, 118, 33, 376, 475, 4, 3, 1103, 3, 8231, 181, 39, 118, 6, 18, 1, 54, 33, 376, 475, 183, 53, 151, 6, 1429, 131, 442, 2, 740], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [8, 84, 2, 100, 3, 1442, 374, 171, 8, 84, 2, 100, 3, 1442, 374, 171], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [128, 126, 55, 1, 1, 174, 128, 126, 6, 8, 3532, 4, 33, 306, 1, 1, 611, 50], [175, 974, 11, 5312, 5313, 821, 65, 141, 495, 175, 974, 11, 5312, 5313, 821, 65, 141, 495, 1, 1, 32, 6, 8, 989, 808], [4213, 57, 36, 623, 52, 55, 21, 5314, 1, 828, 820, 351, 241, 57, 36, 45, 2127, 52, 2, 5315, 80, 766, 840, 7, 67, 44, 840, 534, 9, 4, 15, 39, 35, 50, 80, 114], [8, 84, 2, 509, 87, 964, 192, 2004, 86, 148, 416, 382, 3132, 356], [5316, 8232, 12, 5317, 8233, 151, 42, 5316, 8234, 678, 3, 8235, 86, 107, 18, 5317, 39, 47, 106, 829, 10, 21], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 369, 375, 77, 18, 607, 511, 607, 198, 6, 178, 40, 369, 375, 77, 18, 607, 511, 607, 198, 6, 178], [61, 94, 24, 17, 4214, 4215, 856, 618, 651, 12, 4215, 3033, 6, 531, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2555, 2556, 406, 1614, 753, 317, 1080, 1053, 2555, 2556, 406, 1614, 753, 317, 1080, 1053], [920, 671, 2038, 2039, 920, 671, 2038, 2039], [193, 30, 3533, 7, 317, 365, 334, 8236, 2, 122, 3, 3533, 2, 3, 73, 317, 47, 54, 175, 1255, 36, 3534, 2, 23, 1383, 5318, 133, 10, 3, 382, 317, 207, 12, 975, 3, 648, 3533, 6, 236, 98, 68, 151, 42, 165, 8237, 47, 42, 18, 1013, 183, 100, 2, 21], [27, 2, 189, 186, 14, 269, 3, 177, 85, 127, 107, 85, 349, 62, 438, 107, 438, 85, 432, 271, 113, 31, 665, 37, 71, 21, 6, 3133, 753, 31, 349, 63, 1160, 2, 113, 113, 66, 1345, 1508, 101, 67, 3133, 753, 159, 1219, 946, 456, 183, 21, 6, 3528, 462, 7, 11, 1689, 265, 11, 83, 168, 21, 264, 43, 236, 265, 4216, 47, 38, 3, 179, 123, 30, 83, 73, 1023, 1160, 2, 113, 113, 7, 2320, 611, 3, 179, 31, 30, 8238, 8239, 113, 7, 2557, 113, 83, 1023, 38, 2, 43, 1918, 866, 66, 1922, 1475, 2519, 4217, 4218, 4157, 4158, 8240, 8241, 3, 866, 312, 509, 1239, 420, 1475, 101, 7, 3100, 541, 483, 7, 343, 2335, 996, 2336, 7, 149, 418, 169, 8242, 5319, 8243, 3535, 349, 6, 201, 698, 7, 99, 43, 8244, 866, 66, 8245, 67, 14, 114, 3, 123, 326, 1886, 1206, 7, 795, 21], [193, 30, 3134, 142, 2161, 5320, 5321, 5322, 193, 30, 3134, 142, 2161, 5320, 5321, 5322], [54, 50, 4, 811, 13, 4, 13, 125, 20, 13, 120, 54, 50, 4, 811, 13, 4, 13, 125, 20, 13, 120], [1661, 79, 286, 198, 1035, 559, 3536, 6, 77, 18, 607, 511, 976, 6, 178, 1661, 79, 286, 198, 1035, 559, 3536, 6, 77, 18, 607, 511, 976, 6, 178], [15, 26, 15, 160, 55, 1, 1, 3, 466, 116, 6, 18, 15, 26, 15, 160, 6, 343, 278, 1, 102, 35, 2, 308, 1419, 2, 353, 21], [92, 69, 3135, 133, 31, 92, 69, 8246, 133, 31, 267, 2, 3, 28, 52, 137, 487, 2337, 7, 1923, 3, 92, 69, 3135, 297, 425, 3, 3135, 609, 635, 3, 28, 2, 335, 7, 122, 9, 465, 28, 779, 44, 3, 92, 69, 122, 118, 267, 11, 241, 116, 7, 276, 5323, 558, 1361, 112, 836, 116, 9], [2781, 734, 412, 11, 1924, 6, 8, 45, 4, 412, 66, 934, 107, 4, 417, 20, 2781, 734, 412, 11, 1924, 6, 8, 45, 4, 412, 66, 934, 107, 4, 417, 20], [25, 224, 11, 5324, 5325, 137, 13, 125, 20, 13, 25, 33, 15, 13, 89, 8, 134, 110, 49, 230], [29, 524, 55, 3537, 7, 4219, 1, 1, 1, 54, 29], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [115, 12, 168, 20, 859, 4, 190, 9, 345, 507, 115, 12, 168, 20, 859, 62, 8247, 4, 190, 9, 345, 507, 1, 452, 3444, 531, 286, 684], [133, 2, 3, 155, 78, 63, 8, 3, 179, 411, 18, 1893, 1473, 37, 71, 4, 3, 181, 23, 312, 63, 2782, 311, 2, 4220, 14, 129, 3, 52, 718, 9, 5326, 185, 43, 825], [25, 224, 11, 5324, 5325, 137, 13, 125, 20, 13, 25, 3], [15, 26, 8248, 111, 21, 101, 308, 14, 525, 2, 25, 15, 26, 13, 11, 28, 8249, 8250, 8251, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [15, 32, 5327, 8252, 15, 32, 1106, 3053, 3054, 5327], [186, 230, 233, 230, 179, 31, 30, 203, 38, 336, 517, 186, 233, 230, 627, 14, 91, 3, 163, 333, 173, 11, 349, 923, 1, 8253, 119, 233, 2, 8, 230, 3087, 47, 97, 189, 186, 263], [25, 224, 11, 3053, 3054, 137, 13, 125, 20, 13, 25, 1504, 15, 8254, 3502, 8255], [25, 224, 11, 3053, 3054, 137, 13, 125, 20, 13, 25, 3], [666, 275, 148, 5328, 7, 2558, 5329, 11, 382, 877, 208, 491, 1, 1, 14, 583, 3, 666, 11, 148, 5328, 7, 2558, 5329, 11, 33, 148, 382, 877, 1, 1, 1, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3, 133, 748, 74, 947, 7, 115, 1384, 97, 43, 2162, 3, 133, 748, 74, 947, 7, 115, 1384, 97, 43, 2162], [8256, 996, 233, 55, 21, 101, 39, 35, 14, 525, 2, 189, 472, 11, 3, 177, 207, 47, 97, 189, 186, 5330, 23, 6, 411, 186, 996, 233, 65, 141, 236, 30, 230, 54, 2, 43, 8, 230, 207, 249], [61, 431, 1248, 62, 61, 1441, 406, 115, 981, 1211, 14, 114, 3, 61, 431, 1248, 62, 1441, 10, 3, 115, 2338, 977, 981, 7, 736, 68, 1099, 1, 115, 39, 201, 43, 3538, 10, 169, 1385, 3, 1441], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [4, 459, 11, 2783, 462, 24, 218, 11, 80, 21, 6, 323, 29, 502, 4, 459, 11, 2783, 462, 24, 218, 11, 80, 21, 6, 323, 29, 502], [15, 31, 55, 1, 1, 51, 335, 2, 189, 73, 249, 107, 11, 627, 30, 2163, 271, 113, 3, 249, 107, 1061, 350, 426, 113, 516, 51, 3, 2163, 271, 6, 1832, 53, 113, 4, 3, 470, 438, 1, 611, 2016, 179], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1629, 2, 917, 9, 14, 1629, 3, 186, 263, 9, 4, 15, 1433], [1346, 8, 1014, 456, 11, 472, 208, 21, 1, 1, 246, 35, 363, 50, 2, 114, 472, 3, 646, 39, 8, 1014], [209, 174, 978, 2339, 4221, 65, 351, 3136, 14, 106, 3, 54, 315, 209, 174, 978, 2339, 4221, 65, 351, 3136, 14, 106, 3, 54, 315], [27, 2, 46, 2, 79, 32, 27, 2, 46, 2, 79, 32], [33, 235, 86, 97, 43, 199, 11, 87, 191, 5331, 183, 33, 2164, 6, 385, 3, 722, 197, 6, 8257, 8258, 8259], [974, 11, 5332, 5333, 175, 974, 11, 5332, 5333, 821, 65, 141, 495], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [27, 2, 29, 57, 111, 21, 101, 308, 14, 525, 53, 33, 2559, 4198, 4199, 27, 2, 100, 283, 57, 142, 56, 5334, 28, 8260, 8261, 8262, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [55, 974, 11, 4222, 4223, 821, 65, 141, 495, 181, 49, 291, 292, 3, 1445, 354, 11, 4222, 4223, 65, 402, 55, 974, 11, 4222, 4223, 821, 65, 141, 495, 413, 3, 229, 2, 239, 581], [1925, 208, 83, 246, 35, 14, 106, 80, 5335, 113, 6, 10, 3, 4224, 2340, 7, 47, 42, 8263, 3, 367, 3539, 2, 3, 163, 173, 137, 3540, 598, 8264, 39, 1551, 3, 1925, 923, 1192, 10, 890, 246, 35, 14, 270, 80, 253, 68, 151, 6, 143, 986, 39, 47, 8, 1551, 3, 376, 131], [55, 10, 33, 127, 96, 38, 2165, 5336, 44, 99, 8, 225, 20, 284, 117, 438, 7, 8265, 8266, 181, 124, 291, 292, 8267, 8268, 598, 99, 8, 225, 418, 55, 10, 33, 127, 96, 38, 2165, 5336, 44, 99, 8, 225, 20, 284, 117, 438, 7, 461, 7, 14, 386, 14, 70, 104, 915, 30, 33, 73, 57, 196, 8269, 8270, 109, 149, 4225], [974, 11, 4226, 4227, 974, 11, 4226, 4227, 55, 974, 11, 4226, 4227, 821, 65, 141, 495, 413, 3, 229, 2, 239], [27, 2, 500, 475, 10, 383, 27, 2, 500, 475, 10, 383], [480, 30, 86, 55, 14, 39, 35, 46, 257, 33, 86, 2, 78, 274, 33, 86, 36, 376, 383, 2, 73, 479, 122, 118, 475, 36, 480, 41, 10, 33, 383, 257, 383, 86, 107, 2560], [27, 2, 29, 15, 27, 2, 29, 15], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [974, 11, 5337, 5338, 55, 974, 11, 5337, 5338, 821, 65, 141, 495, 413, 3, 229, 2, 239, 581], [34, 70, 10, 258, 34, 70, 10, 258], [5339, 813, 181, 23, 1100, 265, 813, 2, 80, 355, 1049, 2, 410, 612, 1995], [20, 131, 48, 97, 412, 30, 77, 299, 37, 8271, 8272, 23, 6, 3, 37, 49, 164, 51, 199, 143, 412, 733, 10, 52, 5340, 3137, 18, 103, 52, 5340, 63, 3519, 12, 52, 5341, 4228, 5342, 4228, 2040, 8273, 8274, 12, 52, 5341, 4228, 5342, 12, 52, 299, 1347, 2166, 8275, 12, 52, 299, 1347, 2166, 8276, 103, 8277, 12, 52, 299, 1347, 2166, 118, 2784, 12, 52, 422, 2561, 3138, 8278, 2040, 2040, 12, 52, 422, 2561, 3138, 8279, 2040, 2040, 12, 52, 422, 2561, 3138, 4229, 8280, 302, 5343, 2341, 1607, 12, 52, 422, 2561, 3138, 4229, 52, 422, 2561, 5344, 5345, 302, 5343, 2341, 1607, 12, 52, 422, 2561, 3138, 4229, 52, 422, 2561, 5344, 5345, 2040, 2040, 5346, 8281, 8282, 8283, 2341, 1607, 12, 52, 422, 1697, 4230, 8284, 2167, 2167, 8285, 8286, 2341, 1607, 12, 52, 422, 1697, 4230, 8287, 2167, 2167, 2341, 1607, 12, 52, 422, 1697, 4230, 8288, 2167, 2167, 2341, 1607, 12, 52, 422, 1697, 2167, 8289, 302, 8290, 12, 52, 422, 1697, 2167, 8291, 12, 52, 422, 1697, 2167, 8292, 1182, 689, 5347, 12, 52, 422, 1697, 347, 8293, 5347, 12, 52, 422, 1697, 347, 8294, 2341, 8295, 2341, 8296], [13, 25, 2, 46, 459, 13, 25, 2, 46, 459], [9, 452, 10, 3, 317, 9, 452, 10, 3, 317], [572, 302, 8, 638, 572, 302, 8, 638, 1, 1157, 7, 243, 543, 21, 251, 8297, 11, 241, 116, 1, 21, 1067, 494, 1, 31, 321], [947, 93, 804, 26, 3, 763, 18, 3541, 889, 11, 5348, 1181, 26, 3400, 3542, 3542, 131, 6, 293, 40, 24, 144, 1, 1594, 103, 603, 4231, 1, 1594, 56, 26, 1, 8298, 1842, 1, 71, 3, 763, 18, 3541, 889, 11, 5348, 1181, 26, 3400, 3542, 3542, 131, 6, 1, 2168, 804, 1, 93, 1092, 116, 3095, 124, 1547, 1, 93, 103, 8299, 559, 1, 93, 56, 80, 1181, 3541, 317, 3541, 889], [97, 644, 186, 97, 644, 186, 393, 1023, 428, 828, 1095, 36, 90, 432, 2, 90, 432, 47, 42, 8, 84, 2, 644, 23, 186, 118, 37, 44, 530, 23, 349, 6, 8, 3077, 12, 113, 113, 113, 6, 90, 5349, 113, 264, 38, 680, 2, 106, 30, 23, 91, 163, 167, 1926, 49, 2562, 44, 241, 782, 6, 346, 2, 729, 113, 2, 598, 2493, 1682, 98, 359, 11, 23, 117, 20, 8300, 944, 261, 1560, 42, 201, 2, 43, 2106, 4, 90, 970, 746, 1501, 8301, 261, 99, 43, 1927, 1496, 36, 113, 113, 113, 47, 97, 5350, 200, 2, 23, 117, 14, 386], [431, 549, 140, 1342, 55, 14, 25, 33, 13, 11, 431, 549, 140, 28, 8302, 135], [574, 28, 5351, 2, 3, 226, 5352, 55, 363, 574, 28, 5351, 2, 3, 226, 5352, 511, 180, 6, 543, 2, 4066, 67, 180, 6, 149, 120, 495, 66, 80, 68, 21, 6, 2266, 53, 631], [8303, 8304, 592, 8305, 2041, 8306, 55, 1, 1, 8307, 143, 29, 2, 553, 112, 540, 14, 185, 35, 50, 80], [1003, 400, 11, 555, 93, 110, 8, 84, 2, 206, 555, 93, 294, 3, 2342, 97, 43, 1086], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 463, 41, 53, 3096, 173, 351, 3136, 27, 2, 463, 41, 53, 3096, 173, 351, 3136, 56, 5353, 8308, 182, 213, 130, 155, 204, 117, 107, 214, 146, 185, 35, 14, 509, 753, 18, 33, 167, 7, 270, 80, 253, 85, 6, 385, 30, 33, 57], [34, 70, 10, 258, 34, 70, 10, 258], [501, 212, 10, 3, 459, 24, 50, 1, 1, 63, 27, 2, 29, 3, 501, 212, 10, 3, 459, 516, 1243, 38, 588, 23, 4, 3, 887, 496, 3, 96, 71, 185, 35, 14, 114, 33, 1183, 7, 270, 80, 253, 85, 54, 2, 106, 2, 8309], [27, 2, 29, 610, 27, 2, 29, 610], [70, 10, 965, 70, 10, 965], [58, 94, 596, 687, 48, 6, 531, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [110, 526, 384, 143, 101, 2785, 849, 158, 33, 15, 1103, 1106, 8310, 8311, 2133, 5138, 5139, 72, 5354, 5355, 2286, 623, 1103, 55, 711, 8312, 1828, 35, 42, 3, 722, 568, 2, 878, 1928, 526, 8313, 143, 101, 2785, 849, 158, 33, 15, 1103, 49, 625, 2, 1841, 7, 1828, 35, 39, 8314, 23, 123], [378, 235, 108, 453, 378, 235, 108, 453], [8315, 8, 638, 146, 33, 57, 6, 8, 70, 257], [547, 6, 8, 545, 55, 1, 38, 304, 567, 420, 4, 3, 887, 67, 11, 241, 709, 310, 21, 8, 1628, 861, 118, 2, 3, 852, 433, 38, 4232, 184, 1318, 2, 463, 7, 276, 21, 1527, 7, 530, 8, 545, 1754, 54, 23, 2, 43, 45, 861, 207, 44, 39, 106, 33, 5, 14, 50], [54, 29, 2, 8316, 495, 66, 5356, 5357, 14, 326, 377, 54, 29, 2, 128, 126, 495, 66, 5356, 5357, 14, 326, 377, 28, 59, 8317, 580, 5358, 834, 1509, 773, 8318, 5359, 1348, 8319, 69, 1081, 2786, 119, 95, 5360, 506], [110, 54, 33, 13, 4, 26, 274, 1116, 1077, 8320, 8321, 8322, 188, 309, 7, 1600, 1671], [87, 111, 38, 141, 27, 2, 463, 33, 1630, 4, 87, 51, 335, 2, 1158, 21, 1428, 80, 2, 33, 32, 7, 89, 8, 463, 1, 38, 543, 4, 41, 67, 89, 8, 468, 98, 4, 87, 1, 143, 3543], [74, 31, 682, 174, 3544, 74, 1130, 8, 84, 2, 1386, 74, 1732, 1, 2563, 1732, 66, 1039, 1553, 7, 425, 1172, 205, 242, 176, 21, 1067, 494, 1, 31, 321], [205, 242, 121, 36, 5361, 5362, 205, 242, 121, 36, 5361, 5362], [324, 171, 4233, 622, 34, 258, 742, 2042, 2, 436, 23, 324, 171, 96, 11, 631, 7, 21, 89, 8, 1242, 2, 43, 1385, 10, 2, 2529, 21, 201, 3545, 3, 171, 1, 1, 23, 1147, 541, 116, 436, 72, 324, 171], [5363, 5364, 2343, 205, 242, 121, 59, 5363, 5364, 2343, 205, 242, 121, 59], [33, 57, 790, 2344, 7, 38, 8, 330, 155, 29, 12, 83, 23, 593, 5365, 5366, 124, 291, 292, 243, 57, 7, 155, 213, 720, 313, 55, 14, 50, 80, 33, 57, 790, 2344, 7, 38, 8, 330, 155, 29, 12, 83, 23, 593], [9, 29, 2, 5367, 110, 38, 9, 29, 2, 5367, 144, 21, 530, 35, 8, 989, 43, 723, 2, 322, 223, 5368, 48, 14, 129, 104, 522], [5369, 121, 30, 587, 59, 5369, 121, 30, 587, 59], [339, 121, 121, 997, 7, 351, 659, 339, 121, 121, 997, 7, 351, 659], [59, 59, 1, 1, 568, 10, 165, 943, 659], [41, 8, 638, 41, 8, 638], [123, 30, 1929, 116, 3139, 7, 116, 208, 491, 38, 451, 210, 10, 33, 1929, 33, 116, 737, 89, 8, 465, 844, 4117, 1260, 33, 116, 171, 11, 372, 593, 67, 33, 739, 89, 8, 384, 21, 7, 8323, 33, 116, 3139, 835, 201, 323, 197, 4234, 10, 33, 116, 97, 322, 73, 1316, 116, 8324, 8325, 1276, 2559, 685], [27, 2, 91, 82, 20, 27, 2, 91, 82, 20], [54, 173, 3413, 36, 3, 81, 1358, 2564, 603, 8326, 8327, 5370, 8328, 628, 173, 6, 5237, 7, 8, 45, 1, 78, 56, 900, 40], [340, 1060, 8, 45, 12, 1930, 2787, 106, 2788, 8329, 1060, 8, 45, 12, 1930, 2787, 106, 2788], [339, 121, 121, 997, 7, 351, 659, 1, 1599, 107, 63, 27, 2, 121], [339, 121, 339, 121], [32, 707, 32, 707], [8, 84, 2, 644, 186, 118, 3, 163, 37, 51, 250, 2, 644, 186], [87, 1387, 808, 56, 2789, 2790, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 8, 206, 87, 381, 229, 2, 73, 381, 1189, 3, 864, 6, 9, 345, 151, 14, 386, 288, 2, 118, 21, 251], [13, 25, 13, 25], [4235, 407, 70, 5371, 4236, 415, 140, 4235, 407, 70, 5371, 4236, 415, 140], [27, 2, 100, 41, 27, 2, 100, 41], [5372, 978, 4237, 5373, 1087, 6, 290, 5047, 210, 55, 1, 1, 14, 320, 80, 857, 5373, 1087, 11, 33, 5372, 978, 4237, 1, 1, 3, 722, 1608, 2791, 42, 8, 45, 8, 45, 861, 1, 1, 21, 2345, 137, 3, 348, 343, 5374], [805, 29, 2, 337, 1292, 56, 3546, 8330, 57, 214, 146, 451, 223, 805, 29, 2, 337, 1292, 1425, 923, 7], [2290, 37, 52, 37, 3, 1832, 1670, 63, 8, 336, 407, 8, 1063, 110, 246, 265, 2, 189, 175, 1911, 3509, 67, 97, 100, 33, 131, 221, 8331, 1, 52, 37, 110, 1382, 11, 4238, 781, 35], [27, 2, 122, 2, 155, 27, 2, 122, 2, 155], [52, 984, 52, 984], [15, 46, 31, 13, 25, 15, 46, 31, 13, 25], [60, 94, 24, 17, 90, 90, 2565, 892, 618, 651, 12, 90, 24, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 26, 32, 132, 15, 26, 32, 132], [25, 3, 13, 11, 8332, 8333, 10, 165, 518, 1617, 14, 132, 33, 13, 1220, 21], [41, 31, 8, 590, 41, 31, 8, 590], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [14, 8334, 2, 437, 21, 695, 367, 1193, 1478, 3, 177, 695, 367, 39, 9, 345, 43, 8335, 4239, 2792, 8336, 117, 1193, 3, 3547, 3459, 2150, 2, 347], [25, 224, 11, 2793, 2794, 137, 13, 125, 20, 13, 25, 3], [147, 5, 219, 2782, 151, 6, 5, 44, 330, 141, 303, 77, 541, 334, 10, 1762, 54, 21, 2043, 23, 6, 3, 197, 44, 727, 310, 68, 35, 366, 12, 1059, 341, 35, 39, 91, 151, 6, 197, 1918, 44, 99, 8337, 2711, 2712, 1530, 1064], [1609, 11, 8338, 11, 5375, 5376, 55, 14, 255, 5375, 5376, 29, 2, 3, 218, 1076, 520, 135, 750], [82, 20, 99, 8, 134, 111, 1, 1, 97, 100, 735, 62, 3548, 143, 18, 33, 1744, 10, 82, 20, 23, 2345, 21, 2044, 2, 134, 30, 161, 101, 4, 361, 14, 38, 366], [79, 13, 25, 79, 13, 25], [15, 7, 168, 20, 6, 343, 278, 168, 20, 1510, 2566, 134, 12, 83], [15, 421, 52, 343, 278, 15, 26, 52, 4, 190, 6, 8339, 278, 9, 186, 8340, 14, 50], [15, 397, 111, 1, 14, 525, 274, 13, 23, 334, 670, 376, 13, 355, 172, 14, 1040, 1, 1, 450], [79, 32, 132, 79, 32, 132], [79, 32, 707, 79, 32, 707], [25, 13, 25, 13], [15, 8341, 5377, 2153, 999, 4, 15, 509, 454, 836], [317, 255, 1136, 5378, 2308, 3549, 3550, 317, 255, 1136, 5378, 2308, 3549, 3550], [193, 342, 41, 5379, 5380, 193, 342, 41, 5379, 5380], [2126, 2121, 406, 477, 3551, 3552, 2126, 2121, 406, 477, 3551, 3552], [82, 20, 6, 8, 45, 37, 35, 42, 8, 723, 2, 239, 23, 347, 1, 35, 106, 8, 38, 1279, 2, 239, 23, 675, 62, 347, 137, 3, 871, 44, 35, 2346], [41, 89, 8, 170, 849, 169, 1603, 3, 41, 1293, 3, 170, 835, 664, 11, 858, 1, 9, 1314, 288, 836, 35, 2766, 3, 447, 89, 8, 170, 1, 183, 715, 18, 3, 142, 5381, 9, 2045], [2539, 203, 123, 30, 82, 20, 11, 933, 3553, 4240, 1611, 2795, 2796, 1388, 3554, 52, 728, 115, 592, 2795, 2796, 3555, 947, 4241, 5382, 592, 5383, 592, 5384, 8342, 8343, 8344, 8345, 682, 4242, 2539, 203, 123, 30, 82, 20, 11, 933, 3553, 4240, 111, 47, 42, 2169, 35, 356, 178, 7, 8346, 454, 1688, 44, 35, 54, 122, 4, 142, 3, 4243, 933, 24, 2, 795, 23, 123, 39, 35, 122, 4, 142, 3, 4243, 172, 62, 39, 43, 1244, 68, 35, 39, 8347, 23, 312, 1663, 411, 4243, 65, 23, 123, 66, 1162, 2795, 2796, 1388, 3554, 52, 592, 3555, 947, 4241, 5382, 592, 5383, 592, 5384, 2795, 2796, 4242, 203, 123, 30, 82, 20, 11, 933, 3553, 4240, 111, 39, 35, 14, 884, 98, 30, 104, 1552, 510, 21, 246, 43, 2112, 68, 35, 185, 3062, 3, 341, 7, 116, 1244, 14, 583, 80, 121, 68, 35, 185, 8, 1273, 77, 2, 80, 192, 87], [58, 94, 24, 1252, 1532, 76, 618, 24, 144, 651, 12, 1252, 432, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [168, 20, 6, 75, 4, 113, 190, 14, 715, 3, 168, 20, 78, 510, 207, 47, 39, 373, 160, 53, 1021], [189, 191, 674, 59, 5385, 55, 101, 39, 35, 14, 189, 191, 674, 59, 11, 5385, 4, 1340, 120, 4244, 4245], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [27, 2, 3556, 2, 338, 4246, 27, 2, 3556, 2, 338, 4246], [443, 297, 193, 28, 5386, 55, 28, 5386, 6, 1085, 447, 210, 30, 261, 4247, 82, 20, 180, 39, 29, 21, 189, 73, 171, 27, 2, 436, 3, 1742, 42, 3469, 197, 1324, 376, 264, 2490, 920, 23, 115, 924, 18, 250, 2, 398, 3, 193, 8348, 135], [280, 168, 20, 47, 823, 950, 951, 280, 168, 20, 47, 823, 950, 951], [1609, 11, 40, 2797, 470, 11, 28, 8349, 55, 14, 633, 721, 898, 255, 1080, 1053, 236, 98, 6, 1690, 30, 4248, 8350, 1511, 4249, 4250, 1076, 120, 724, 368, 120, 1363, 2798, 1137, 1138, 1082, 190, 190, 190, 901, 174, 879, 901, 174, 901, 2170, 901, 24, 674, 190, 4251, 901, 174, 901, 2170, 901, 24, 949, 674, 190, 4251, 901, 174, 901, 2170, 901, 24, 674, 190, 4251, 901, 174, 901, 2170, 901, 24, 901, 674, 901, 174, 1046, 3140, 3141, 1332, 4, 3, 2170, 5387, 1046, 66, 1080, 1053, 331, 10, 5388, 3075, 2, 950, 951, 2171, 2172, 4252, 4253, 4249, 4250, 4248, 8351, 4249, 4250, 4248, 5389, 8352, 8, 2562, 30, 8353, 8354, 1053, 5389, 8355, 30, 175, 8356], [1629, 2, 917, 9, 14, 1629, 3, 186, 263, 9, 4, 15, 1433], [15, 26, 13, 25, 15, 26, 13, 25], [1430, 127, 176, 208, 83, 23, 6, 8357, 36, 113, 47, 42, 10, 3, 2340, 7, 3, 2771, 246, 265, 2, 91, 461, 481, 531, 586, 6, 151, 143, 986, 2, 176, 461, 481, 197, 116, 68, 8358, 5390, 7, 1561, 475, 54, 2, 106, 197, 66, 197, 3, 107, 18, 1207, 6, 316, 467], [58, 94, 24, 17, 90, 90, 8359, 856, 618, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [41, 771, 2347, 11, 13, 3142, 169, 13, 25, 47, 42, 1452, 3, 1421, 11, 41, 7, 99, 91, 68, 3, 31, 6, 321, 746, 21, 6, 430], [14, 1040, 3, 383, 7, 384, 181, 55, 2348, 14, 132, 3, 383, 255, 181, 8360, 781, 35, 308, 556, 714, 5391, 5392, 1240, 308, 556, 714, 5391, 5392, 5393, 1758, 7, 149, 24, 190, 879, 4254, 5394, 3143, 325, 3144, 131, 5395, 3144, 131, 5395, 24, 190, 879, 191, 3557, 2567, 8361, 5396, 8362, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 2349, 36, 1225, 426, 1135, 1512, 572, 62, 1294, 18, 23, 446, 66, 1931, 448, 42, 8, 679, 3, 1295, 6, 1139, 2568, 68, 35, 38, 268, 23, 71, 311, 2, 175, 1531, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182, 23, 71, 6, 1562, 7, 8363, 255, 3, 199, 1218, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 23, 446, 35, 268, 21, 311, 2, 175, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [39, 35, 14, 132, 7, 25, 13, 11, 1077, 5397, 7, 270, 80, 253, 3, 2164, 13, 39, 35, 14, 132, 7, 25, 13, 11, 1077, 5397, 7, 270, 80, 253, 3, 2164, 13], [28, 219, 50, 2, 100, 2350, 173, 28, 219, 50, 2, 100, 2350, 173, 1, 267, 2, 3, 28, 52, 137, 487, 1, 430, 3, 220, 10, 3, 28, 52, 1, 28, 1631, 180, 6, 84, 2, 100, 3, 2350, 287, 172, 1, 31, 321], [538, 78, 2799, 5398, 596, 687, 596, 687, 268, 96, 57, 36, 8364, 248, 2, 769, 3, 78, 67, 21, 6, 8, 545, 124, 538, 78, 2799, 24, 203, 3, 5399, 58, 1249, 314, 8365, 65, 268, 538, 78, 2799, 559, 192, 8366, 850, 11, 3, 177, 538, 78, 47, 38, 825, 72, 439, 2, 3145, 23, 559, 7, 99, 735, 3, 439, 51, 1121, 6, 243, 2162, 2, 3, 538, 78, 14, 1377, 61, 2, 83, 817, 7, 62, 1674, 98, 30, 104, 58, 153, 11, 582, 2719, 952, 1763, 78, 2800, 271, 1455, 1449, 5400, 271, 1455, 1449, 5400, 271, 1455, 1449, 2800, 271, 1455, 1449, 2800, 271, 1455, 1449, 2800, 271, 1455, 1449, 2800, 271, 1455, 1449, 2800, 271, 1455, 1449, 256, 136, 5401, 1194, 2, 5398, 272, 2569, 18, 4255, 630, 656, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 68, 35, 38, 143, 498, 704, 23, 319, 14, 129, 161, 295, 101, 12, 3, 107, 1332, 96, 604, 5402, 3558, 5399, 101, 5402, 3558, 8367, 319, 23, 812, 6, 8, 8368, 14, 121, 295, 12, 3, 86, 107, 4, 23, 446, 11, 143, 498, 35, 38], [8, 84, 2, 29, 191, 217, 55, 1, 49, 8, 84, 2, 29, 191, 217, 14, 50], [52, 1698, 2801, 364, 4, 850, 20, 11, 596, 687, 596, 687, 605, 40, 7, 40, 52, 1698, 8369, 2036, 559, 11, 40, 1, 52, 1698, 8370, 2036, 559, 11, 8371, 1, 1, 163, 6, 3, 167, 554, 18, 79, 93, 1151, 1994], [15, 26, 13, 392, 10, 6, 5403, 14, 25, 2, 1102, 781, 35, 56, 3559, 3560, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 517, 28, 44, 39, 3146, 283, 15, 26, 13, 392, 10, 6, 5403, 14, 25, 2, 1102], [28, 5404, 5405, 5406, 64, 4256, 77, 18, 15, 26, 39, 35, 14, 25, 408, 13, 2, 1102, 781, 35, 56, 3559, 3560, 182, 213, 130, 155, 204, 117, 107, 214, 146, 28, 5404, 5405, 5406, 64, 4256, 77, 18, 15, 26, 39, 35, 14, 25, 408, 13, 2, 1102], [25, 224, 11, 8372, 8373, 137, 13, 125, 20, 13, 25, 3], [27, 2, 29, 245, 10, 41, 27, 2, 29, 245, 10, 41], [15, 187, 8, 1216, 3, 117, 934, 107, 36, 3, 5407, 438, 11, 3, 5408, 438, 55, 21, 101, 1, 1, 14, 50, 2, 114, 3, 177, 31, 15, 187, 8, 1216, 3, 117, 934, 107, 36, 3, 5407, 438, 11, 3, 5408, 438, 1905, 21, 63, 806, 10, 3, 186, 263, 14, 91, 163, 47, 428, 8, 84, 2, 176, 3, 370, 11, 438], [8, 84, 2, 46, 2, 128, 126, 8, 84, 2, 46, 2, 128, 126], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [354, 185, 8, 43, 1124, 8374, 8375, 6, 164, 3, 177, 37, 71, 51, 250, 2, 29, 457, 1, 9, 131, 336, 11, 223, 1544, 52, 1893, 1, 1, 14, 500, 408, 162, 676, 222, 2, 457], [110, 246, 265, 2, 43, 84, 2, 199, 3, 3533, 10, 33, 87, 11, 191, 497, 39, 35, 206, 23, 2, 33, 615, 68, 23, 765, 6, 511, 178, 14, 270, 80, 253], [9, 395, 10, 309, 347, 9, 395, 10, 309, 347], [1526, 395, 31, 10, 142, 1526, 395, 31, 10, 142], [41, 403, 146, 51, 637, 4, 2315, 49, 27, 2, 29, 33, 41, 1563, 151, 6, 1009, 54, 2, 119, 2, 398, 3, 31, 14, 50], [203, 34, 70, 203, 34, 70], [1545, 205, 242, 217, 46, 37, 51, 335, 2, 46, 3, 177, 71, 6, 268, 14, 386], [34, 403, 10, 34, 9, 34, 403, 10, 34, 9], [87, 49, 27, 2, 95, 158, 87, 14, 386], [317, 10, 3561, 5409, 115, 99, 8, 1933, 1548, 10, 317, 10, 3561, 5409, 115, 99, 8, 1933, 1548, 10], [5410, 3562, 65, 2570, 639, 1383, 5410, 3562, 65, 2570, 639, 1383, 308, 189, 34, 30, 3, 69], [587, 59, 1586, 726, 36, 279, 140, 1843, 59], [113, 1920, 8376, 3147, 74, 14, 386, 3, 28, 46, 2571, 30, 23, 348, 54, 2, 70, 3, 196, 1433], [54, 400, 18, 2572, 54, 400, 18, 2572, 1, 1, 28, 6, 73, 3148, 7, 390, 27, 2, 29, 2572, 53, 411, 390, 290, 683], [40, 749, 5411, 315, 753, 29, 11, 4257, 4258, 40, 749, 5411, 315, 753, 29, 11, 4257, 4258], [13, 25, 5412, 11, 26, 15, 11, 5413, 5414, 5415, 146, 54, 2, 38, 28, 59, 25, 11, 26, 15, 11, 5413, 5414, 5415, 14, 181, 408, 746, 35, 38, 25, 3, 13], [132, 13, 55, 38, 694, 44, 65, 29, 2, 513, 77, 160, 359, 10, 67, 106, 8, 38, 29, 310, 185, 35, 114, 158, 23, 123, 7, 270, 80, 253, 85, 2, 106, 8377, 8378, 7, 8379, 8380, 284, 38, 248, 2, 132, 1319, 4, 13, 125, 20, 67, 9, 5416, 8381, 8382, 160, 739], [1195, 602, 77, 31, 55, 1, 1, 39, 465, 158, 76, 1, 13, 264, 43, 8, 722, 1, 1, 14, 39, 35, 25, 33, 13, 183, 11, 76, 1, 1, 458], [3, 82, 20, 6, 8, 430, 861, 151, 42, 451, 661, 82, 418, 430, 10, 3, 4, 910, 7, 2351, 18, 444, 134, 861, 51, 413, 10, 229, 21, 1128, 158, 422, 1192, 412, 183, 51, 413, 10, 3, 82, 20, 1293, 21, 468, 72, 37, 8383, 1372, 3, 220, 6, 5417, 3563, 3, 165, 37, 44, 118, 96, 6, 72, 698, 18, 3, 422, 1192, 412, 51, 1125, 73, 82, 20, 1, 1282, 3, 347, 35, 428, 1909, 11, 89, 8, 1196, 62, 6, 8, 178, 47, 1124, 422, 412, 11, 352, 82, 131, 171, 78, 1296, 171, 1151, 4259, 171, 1151, 1296, 171, 78, 7, 581, 85, 47, 336], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [50, 30, 447, 1632, 111, 47, 54, 104, 50, 30, 447, 1632, 51, 3, 195, 8384, 8385, 7, 8386, 8387, 413, 4, 4260, 3, 1632, 735, 39, 47, 106, 410, 829, 2, 795, 23, 123], [88, 206, 4, 99, 8, 884, 98, 88, 206, 4, 99, 8, 884, 98], [548, 8, 45, 2, 373, 33, 666, 440, 21, 6, 8, 323, 4, 33, 20, 1844, 51, 335, 2, 100, 294, 15, 191, 548, 21, 1435, 37, 3, 2802, 6, 2803, 30, 37, 548, 206, 4, 6, 8, 901, 546], [13, 25, 102, 11, 15, 208, 491, 14, 25, 13, 53, 21, 6, 22, 2, 397, 53, 330, 274, 3, 13, 125, 20, 13, 311, 2, 3406, 184, 1164, 4, 23, 123, 28, 56, 5418, 1934, 59, 30, 135], [1114, 1115, 70, 31, 1114, 1115, 70, 31], [218, 29, 5412, 5419, 555, 129, 54, 633, 721, 29, 2, 218, 5419, 555, 58, 993, 40, 1349, 555, 633, 7, 721, 29], [15, 1528, 13, 25, 15, 1528, 13, 25], [219, 2, 119, 13, 219, 2, 119, 13], [79, 32, 132, 79, 32, 132], [844, 4261, 4262, 245, 2, 5420, 5421, 4261, 4262, 2803, 3, 24, 7, 47, 54, 2, 844, 4261, 4262, 245, 2, 5420, 5421, 821, 662], [4263, 65, 29, 2, 3, 693, 229, 390, 39, 1158, 67, 1259, 390, 3545, 21, 390, 89, 8, 384, 3, 57, 1036, 214, 146, 38, 402, 3149, 11, 3564, 571, 67, 49, 8, 496, 3, 2305, 466, 30, 229, 2, 3, 455, 4263, 65, 29, 2, 3, 693, 229, 390, 39, 1158, 67, 1259, 390, 3545, 21, 390, 89, 8, 384, 3, 57, 1036, 586], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4264, 32, 6, 2804, 30, 41, 54, 2, 544, 21, 4264, 32, 6, 2804, 30, 41, 54, 2, 544, 21], [15, 26, 32, 64, 77, 15, 26, 32, 64, 77], [15, 26, 13, 119, 56, 8388, 182, 213, 130, 155, 204, 117, 107, 214, 146, 5422, 64, 77, 18, 15, 248, 2, 119, 13, 7, 351, 64, 77], [73, 223, 86, 107, 524, 146, 73, 223, 86, 107, 524], [97, 122, 8389, 208, 21, 101, 1, 1, 97, 122, 96, 229, 21, 6, 836, 528, 21, 7, 53, 96, 167, 14, 50, 1, 1, 195, 39, 29, 76, 1, 1, 1, 135], [78, 40, 456, 2043, 81, 268, 3, 177, 57, 11, 3, 372, 451, 5423, 3, 5, 63, 456, 2782, 411, 21, 4265, 3, 5, 2569, 1593, 373, 116, 81, 78, 6, 40, 1, 1, 1456, 3565, 6, 511, 4266], [235, 108, 453, 235, 108, 453], [110, 97, 29, 3, 1907, 297, 4, 1191, 56, 3566, 3567, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 29, 3, 1907, 297, 4, 1191], [13, 562, 27, 2, 119, 3, 13, 13, 562, 27, 2, 119, 3, 13], [13, 25, 294, 13, 125, 20, 13, 120, 128, 126, 31, 146, 49, 290, 2805, 811, 33, 13, 11, 90, 24, 294, 3, 13, 125, 20, 59, 52, 14, 525], [27, 2, 29, 128, 126, 55, 1, 1, 246, 265, 2, 3408, 29, 2, 23, 229, 1, 1, 49, 250, 2, 421, 72, 2550, 102, 11, 197, 18, 33, 740, 23, 6, 3, 37, 356, 496], [34, 70, 965, 34, 70, 965], [5424, 48, 55, 39, 8, 100, 161, 5424, 48, 384, 177, 37, 71, 4, 155, 204, 410, 614, 3, 422, 196, 49, 10, 76, 8390, 8391, 342, 3568, 8392, 135], [164, 72, 37, 51, 250, 2, 29, 3, 8393, 1764, 440, 7, 8394, 91, 163, 8395, 8396, 39, 8, 29, 3, 2759, 121, 1764, 1738, 18, 3, 32, 1323, 180, 1061, 72, 37, 44, 6, 3, 179, 53, 3, 197, 180, 1061, 11, 283, 260, 82, 20, 10, 3, 88, 1022, 21, 833, 746, 67, 51, 825, 88, 257, 179, 31, 942], [5425, 31, 11, 349, 4, 113, 113, 111, 39, 241, 50, 80, 30, 5425, 31, 1, 1, 249, 23, 6, 934, 44, 6, 912, 12, 113, 7, 63, 1160, 2, 113, 53, 35, 39, 91, 3, 570, 12, 113, 6, 12, 7, 1457, 1262, 44, 3, 6, 626, 1, 51, 335, 2, 570, 23, 934, 21, 6, 770, 4, 12, 3, 10, 3, 8397, 7, 10, 3, 5426, 30, 72, 435, 71, 18, 4267, 4, 113, 113, 8398, 89, 8, 1471, 570, 1699, 8399, 1, 49, 8, 614, 53, 2, 85, 54, 2, 106, 2, 391, 23, 39, 35, 50, 1, 1, 113, 570, 6, 12, 1514, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135], [15, 26, 64, 15, 26, 64], [5427, 171, 10, 492, 230, 146, 97, 100, 1606, 5427, 171, 10, 492, 23, 63, 1092, 10, 567, 4268, 51, 1452, 7, 405, 23, 1765, 171], [2159, 77, 440, 208, 83, 1, 1, 355, 351, 3, 136, 44, 112, 372, 5428, 5429, 149, 685, 1093, 384, 143, 2159, 77, 440, 265, 1, 3, 100, 666, 171, 449, 1, 1, 39, 612, 14, 114, 7, 270, 166, 253, 85, 1147], [307, 437, 78, 75, 40, 37, 79, 97, 29, 40, 1696, 5430, 10, 3, 824, 4, 3, 78, 28, 65, 29, 2, 78, 21, 65, 1067, 389, 129, 21, 65, 1447, 161, 2314, 101, 1913, 101, 7, 1358, 90, 113], [27, 2, 100, 191, 217, 211, 441, 1350, 27, 2, 100, 191, 217, 211, 441, 1350], [58, 254, 8, 590, 58, 254, 8, 590], [1250, 149, 597, 440, 110, 1093, 384, 143, 149, 597, 127, 440, 36, 11, 23, 887, 593, 5431, 5432, 854, 220, 685, 949, 82, 24, 203], [87, 55, 1, 1, 356, 843, 241, 193, 2, 1539, 1110, 497, 66, 87, 1, 51, 29, 356, 3, 201, 197, 4, 3, 121], [2126, 255, 168, 20, 1047, 43, 5433, 3150, 1440, 4269, 4270, 2126, 255, 168, 20, 1047, 43, 5433, 3150, 1440, 4269, 4270], [25, 224, 11, 8400, 8401, 137, 13, 125, 20, 13, 25, 1220, 13, 11, 15, 46], [8, 84, 2, 100, 966, 392, 10, 212, 10, 459, 8, 84, 2, 100, 966, 392, 10, 212, 10, 459], [142, 255, 136, 233, 406, 193, 30, 2556, 1080, 1053, 142, 255, 136, 233, 406, 193, 30, 2556, 1080, 1053], [47, 54, 1062, 4271, 607, 255, 5434, 1324, 3569, 55, 47, 54, 1062, 4271, 607, 255, 5434, 1324, 3569], [8, 84, 2, 436, 555, 810, 4, 128, 126, 8, 84, 2, 436, 555, 810, 4, 128, 126], [41, 87, 123, 55, 101, 1, 1, 39, 8, 100, 41, 7, 87, 4, 33, 115, 21, 1435, 72, 37, 265, 23, 1, 1, 1, 2352, 43, 3570, 1845, 8402], [27, 2, 118, 2, 13, 125, 20, 2, 119, 3, 13, 27, 2, 118, 2, 13, 125, 20, 2, 119, 3, 13], [76, 6, 1928, 8, 1733, 871, 76, 6, 1928, 8, 1733, 871], [15, 26, 32, 132, 15, 26, 32, 132], [4, 124, 20, 11, 1684, 39, 8, 909, 2573, 2, 15, 14, 91, 3, 163, 1549, 173, 44, 468, 3, 71, 36, 124, 20, 11, 1684], [32, 64, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [553, 3571, 5435, 368, 42, 8, 327, 83, 3, 553, 3571, 5435, 38, 22, 272, 3, 1935, 3, 368, 42, 273, 8, 45], [2023, 840, 233, 7, 623, 222, 18, 2529, 50, 564, 151, 42, 840, 184, 42, 2023, 316, 467, 7, 540, 184, 42, 989, 2, 743, 66, 14, 326, 3, 167, 554, 11, 600, 3, 840, 53, 96, 67, 51, 21, 6, 425, 4, 134, 2127, 18, 2529, 28, 59, 8403, 680, 6, 2023, 167, 554, 6, 163, 11, 3, 179, 14, 1377, 3, 222, 11, 8, 1180, 4, 3, 134, 2127, 18, 2529, 851], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [243, 34, 9, 1119, 543, 55, 8404, 143, 70, 10, 23], [40, 5436, 78, 2325, 254, 7, 61, 431, 31, 40, 5436, 78, 2325, 254, 7, 61, 431, 31], [8, 84, 2, 100, 5437, 4, 492, 8, 84, 2, 100, 5437, 4, 492], [553, 8, 45, 208, 83, 1, 1, 83, 440, 426, 2574, 136, 2739, 265, 3, 462, 125, 171, 7, 3572, 171, 7, 1515, 42, 346, 1, 1, 35, 8405, 118, 72, 1054, 167, 165, 195, 171, 3, 179, 123, 1, 1, 39, 35, 14, 398, 3, 31], [369, 370, 1010, 1661, 834, 10, 78, 6, 272, 375, 369, 370, 1010, 1661, 834, 10, 78, 6, 272, 1, 198, 375, 198, 178, 387], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2575, 148, 190, 271, 275, 111, 21, 101, 246, 14, 54, 451, 2575, 2173, 271, 190, 36, 2117, 2117, 11, 8406, 1516, 36, 961, 448, 56, 42, 8407, 8408, 7, 8409, 8410, 3, 1516, 99, 2174, 2353, 70, 11, 161, 15, 1081, 125, 7, 5438, 20, 570, 314, 8411], [8, 84, 2, 91, 5439, 136, 2739, 553, 409, 78, 8, 84, 2, 91, 5439, 136, 2739, 553, 409, 78], [25, 3, 13, 11, 8412, 8413, 10, 15, 160, 15, 14, 132, 3, 32, 5440, 7, 25, 13, 11, 80], [236, 98, 1608, 86, 11, 57, 111, 21, 101, 1, 1, 259, 265, 2, 236, 98, 33, 1608, 236, 1683, 11, 33, 24, 41, 245, 1, 363, 4272, 967, 1, 1, 135], [1171, 8, 84, 2, 46, 2, 26, 52, 5441, 366, 158, 23, 10, 305, 33, 28, 59, 4273, 1171, 8, 84, 2, 46, 2, 26, 52, 5441, 366, 158, 23, 10, 305, 33, 28, 59, 6, 4273], [21, 21], [620, 342, 5442, 5443, 4274, 5444, 3107, 1557, 1558, 620, 342, 5442, 5443, 4274, 5444, 3107, 1557, 1558], [5445, 3151, 2038, 2039, 5445, 3151, 2038, 2039], [5446, 238, 573, 733, 5446, 238, 89, 8, 8414, 4212, 734, 6, 1800, 406], [168, 20, 89, 8, 134, 37, 71, 52, 37, 5297, 1700, 37], [33, 82, 20, 6, 8, 1360, 73, 13, 21, 6, 323, 107, 18, 22, 985, 4265, 56, 8415, 8416, 182, 213, 130, 155, 204, 117, 107, 214, 146, 274, 33, 13, 36, 13, 125, 20, 13, 499, 83, 460, 33, 82, 20, 6, 8, 1360, 73, 13, 21, 6, 323, 107, 18, 22, 985, 4265], [2574, 2354, 55, 1, 1, 2574, 2566, 134, 257, 1, 47, 38, 175, 52, 37, 1, 1, 2574, 1128, 251, 8, 516, 1, 106, 47, 38, 52, 639, 1, 1, 1, 30, 450, 750, 1, 135], [27, 2, 189, 186, 438, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 97, 373, 917, 1905, 113, 65, 673, 536], [24, 122, 24, 122], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [438, 10, 149, 127, 8, 1827, 294, 2, 1694, 2750, 365, 483, 1, 1, 14, 50, 30, 3, 177, 1, 1, 47, 38, 72, 31, 10, 3, 96, 149, 127, 1, 1, 1, 3, 648, 470, 438, 6, 8, 1827, 294, 2, 3, 1694, 2750, 1, 1, 1, 14, 525], [255, 115, 1936, 5447, 5448, 1346, 255, 115, 1936, 5447, 5448, 1346], [9, 131, 660, 18, 15, 603, 2, 8417, 74, 8418, 14, 320, 437, 21, 295, 2, 4275, 4276, 10, 48, 662, 2, 5449, 684, 421, 186, 18, 3, 507, 4, 190, 6, 178], [168, 20, 894, 6, 343, 2576, 257, 53, 4, 3, 372, 1162, 3, 168, 20, 894, 6, 8419, 2576, 4, 190, 113], [8, 84, 2, 436, 555, 810, 8, 84, 2, 436, 555, 810], [168, 20, 7, 700, 125, 89, 8, 134, 168, 20, 7, 700, 125, 89, 8, 134], [173, 1292, 123, 4, 3152, 913, 8420, 8421, 49, 291, 292, 550, 173, 1292, 123, 4, 3152, 913, 308, 102, 35, 2, 21, 1253, 23, 218, 6, 4, 254, 899, 2355, 1047, 641, 3152, 913, 7, 172, 4956, 38, 1095, 23, 2, 2355, 1047, 641, 3152, 913, 14, 391, 23, 7, 172, 8, 84, 2, 513, 3, 287, 2, 2355, 1047, 641, 3152, 913], [168, 20, 639, 4, 190, 9, 2806, 891, 7, 5450, 1937, 428, 3573], [78, 123, 5451, 3066, 5452, 5453, 78, 123, 5451, 3066, 5452, 5453], [831, 8, 1613, 51, 3, 61, 1919, 6, 267, 831, 8, 1613, 51, 3, 61, 8422, 6, 267, 51, 3, 61, 2807, 6, 8423, 3, 8424, 6, 8, 940, 52, 877, 200, 1018, 8425, 5454, 200, 252, 430, 3, 61, 52, 1749, 991, 3, 115, 7, 425, 273, 3, 179, 31, 31, 30, 3, 831, 219, 857, 129], [142, 99, 8, 878, 10, 3, 142, 8426, 200, 252, 99, 8, 878, 10, 12, 83, 248, 811, 3153, 4277, 1441, 7, 330, 9, 3574, 3, 2808, 2, 3, 142, 99, 8, 878, 10, 624, 129, 8427, 8428, 5455, 5456, 107], [25, 224, 11, 5457, 5458, 137, 13, 125, 20, 13, 25, 3], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [74, 1130, 91, 377, 74, 1130, 91, 377], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [46, 31, 15, 26, 46, 31, 15, 26, 1, 28, 164, 397, 792, 37, 1, 635, 3, 28, 2, 114, 68, 180, 6, 10, 3, 24, 58, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [472, 646, 208, 21, 1, 1, 47, 39, 8, 106, 2046, 11, 472, 363, 50, 2, 114, 21, 21, 307], [97, 485, 536, 12, 5459, 249, 208, 21, 101, 1, 1, 355, 421, 556, 11, 472, 249, 67, 151, 6, 8, 536, 178, 10, 1221, 14, 386, 411, 246, 265, 2, 598, 2, 117, 673, 310, 1, 1, 1, 135], [97, 485, 536, 12, 5459, 249, 208, 21, 101, 1, 1, 355, 421, 556, 11, 472, 249, 67, 151, 6, 8, 536, 178, 10, 1221, 14, 386, 411, 246, 265, 2, 598, 2, 117, 673, 310, 1, 1, 1, 135], [29, 2, 58, 254, 7, 74, 14, 269, 29, 2, 177, 2, 711, 8429, 28, 59, 8430, 5460, 5461, 4277, 160, 173, 5460, 5461, 4277, 160, 633, 721, 40, 4278, 4279, 173, 40, 4278, 4279, 633, 201, 74, 913], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [1203, 113, 2047, 208, 101, 47, 351, 536, 1203, 1189, 36, 113, 113, 249, 673, 54, 2, 43, 969, 2, 113, 47, 355, 350, 473, 11, 23, 102, 67, 201, 115, 472, 1014, 363, 50, 2, 373, 77, 472, 11, 3, 2577, 115, 1023, 1498, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [8431, 10, 2, 76, 67, 39, 8, 29, 374, 62, 15, 56, 2789, 2790, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1281, 10, 2, 76, 67, 39, 8, 29, 374, 62, 15], [41, 8, 1458, 41, 8, 1458, 129, 267, 2, 3, 28, 52, 137, 487, 28, 328, 180, 89, 8, 199, 209, 88, 248, 2, 736, 3, 209, 174, 991, 3, 115, 248, 2, 5462, 3, 41, 1360, 241, 116, 41, 4280, 28, 779, 44, 180, 99, 121, 166, 251, 1059, 30, 3, 34, 8432, 14, 50, 3, 28], [15, 141, 64, 14, 50, 2, 2809, 602, 7, 1667, 80, 3, 73, 13, 14, 50, 2, 132, 15, 7, 1667, 80, 3, 73, 13], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [553, 21, 1, 14, 925, 96, 38, 141, 250, 2, 118, 158, 553, 83, 483, 7, 23, 6, 83, 44, 429, 98], [32, 132, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 8433, 8434, 55, 814, 814, 111, 1741], [54, 2, 119, 13, 7, 500, 73, 13, 10, 83, 460, 54, 2, 119, 13, 7, 500, 73, 13, 10, 83, 460], [27, 2, 392, 4, 2, 87, 27, 2, 392, 4, 2, 87], [13, 25, 11, 338, 28, 5463, 13, 25, 11, 338, 28, 5463], [60, 94, 24, 17, 90, 90, 113, 3154, 865, 3575, 29, 277, 434, 6, 75, 112, 49, 105, 10, 60, 94, 24, 17, 90, 90, 113, 3154, 865, 3575, 29, 277, 434, 6, 75, 112, 49, 105, 10], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [220, 474, 1227, 78, 10, 768, 40, 6, 4, 435, 1517, 4, 850, 20, 435, 1351, 362, 312, 371], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [60, 94, 361, 24, 262, 1187, 1212, 856, 618, 6, 75, 112, 124, 105, 10, 640, 60, 6, 98, 85, 103, 18, 94, 58, 8435, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1021, 61, 94, 5464, 5465, 24, 531, 75, 112, 124, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 1, 5, 5, 22, 4, 5, 19, 12], [726, 8, 45, 8436, 57, 2578, 8437, 8438, 124, 291, 292, 8439, 8440, 550, 1070, 1430, 127, 111, 308, 114, 11, 96, 181, 6, 1828, 21, 43, 3576, 181, 1493, 3577, 143, 568, 53, 56, 429, 18, 689, 38, 248, 405, 377, 67, 27, 2, 106, 44, 2810, 23, 181, 11, 5466, 21, 50, 2, 114, 1459, 558, 201, 3576, 181, 62, 377, 4281, 8441, 1206, 210, 265, 1140, 62, 161, 24, 603, 5467, 294, 229, 14, 114, 7, 778, 135], [1070, 10, 15, 26, 145, 1070, 10, 15, 26, 145], [358, 24, 443, 2108, 696, 75, 12, 124, 105, 10, 24, 262, 1204, 358, 24, 8442, 29, 277, 1, 24, 262, 1204, 358, 24, 8443, 29, 277, 1, 24, 262, 1204, 358, 24, 3578, 29, 277], [5, 5468, 26, 22, 4, 5, 19, 12, 5, 5468, 26, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [115, 10, 4, 1939, 1940, 3, 2579, 8444, 4167, 5469, 98, 2811, 21, 190, 411, 175, 857, 115, 6, 534, 430, 7, 175, 73, 197, 65, 141, 3430], [148, 416, 877, 1588, 42, 8, 45, 56, 2812, 2813, 182, 213, 130, 155, 204, 117, 107, 214, 146, 33, 148, 416, 877, 1588, 42, 8, 45], [777, 42, 164, 708, 311, 2, 5470, 5471, 744, 37, 31, 777, 42, 164, 708, 311, 2, 5470, 5471, 744, 37, 31], [58, 94, 1564, 596, 1846, 1222, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 3579, 22, 4, 5, 19, 12, 5, 3579, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 105, 10, 78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 105, 10], [5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [356, 254, 29, 102, 111, 1, 1, 14, 269, 29, 1173, 173, 40, 838, 1173, 1822, 20, 218, 11, 177, 1742, 1, 4129, 1, 1111, 1, 1, 30, 135], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2580, 695, 25, 111, 14, 25, 3, 2580, 695, 53, 1102, 11, 96, 28, 59, 28, 59, 8445, 135], [58, 94, 82, 1826, 432, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [1564, 596, 1846, 1222, 24, 168, 2814, 1564, 29, 277, 24, 144, 6, 75, 112, 124, 105, 10, 1564, 596, 1846, 1222, 24, 168, 2814, 1564, 29, 277, 24, 144, 6, 75, 112, 124, 105, 10, 1, 238, 75, 10, 1011, 2356, 2, 24, 168, 2814, 1564, 29, 277, 10, 24, 168, 2814, 1564, 1337, 277, 24, 144], [13, 25, 102, 13, 25, 102], [27, 2, 500, 475, 62, 3155, 10, 235, 108, 27, 2, 500, 475, 62, 3155, 10, 235, 108], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 122, 2, 58, 74, 27, 2, 122, 2, 58, 74, 1, 1, 34, 70, 10, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 8, 70, 55, 101, 365, 1364, 1, 1, 33, 56, 6, 8446, 8447, 2300, 8448, 1, 1, 8449, 33, 13, 63, 562, 67, 1220, 70, 21, 172, 97, 322, 12, 3, 24, 571, 417, 20, 88, 1, 1, 310, 248, 2, 119, 3, 13, 67, 3, 422, 48, 526, 583, 80, 29, 14, 39, 35, 1359, 80, 85, 264, 106, 393, 23], [58, 74, 8, 45, 14, 114, 2, 91, 68, 74, 3147, 10, 3580, 6, 267, 2, 3, 58, 38, 331, 567, 481, 67, 284, 42, 83, 4282, 4, 1732, 3, 74, 6, 1548, 10, 7, 530, 21, 6, 2284, 67, 680, 1147], [34, 70, 10, 258, 34, 70, 10, 258], [218, 584, 4, 40, 218, 584, 4, 40, 218, 219, 2, 43, 1368, 8450, 2511, 2815, 8451], [27, 2, 95, 4, 2, 15, 535, 27, 2, 95, 4, 2, 15, 535], [79, 13, 25, 79, 13, 25], [338, 13, 25, 338, 13, 25], [102, 132, 28, 32, 5472, 55, 14, 132, 33, 28, 32, 28, 56, 5472], [79, 32, 707, 79, 32, 707], [24, 314, 460, 543, 50, 30, 584, 438, 14, 206, 2, 33, 24, 314, 460, 7, 10, 32, 5473, 584, 3, 359, 1738, 14, 876], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [97, 189, 186, 14, 398, 23, 4, 983, 2048, 2177, 90, 48, 191, 120], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [189, 279, 140, 59, 11, 3, 533, 73, 4283, 5474, 5475, 189, 279, 140, 59, 11, 3, 533, 73, 4283, 5474, 5475], [27, 2, 504, 362, 173, 55, 1, 54, 50, 2129, 72, 362, 173, 330, 72, 1388, 1426, 2, 50, 310, 7, 180, 1098, 80, 2, 995, 4, 50, 564, 34, 53, 151, 6, 123, 30, 33, 115, 3, 173, 180, 6, 1426, 2, 504, 6, 163], [378, 28, 27, 2, 1539, 87, 381, 36, 415, 69, 378, 28, 27, 2, 1539, 87, 381, 36, 415, 69], [548, 11, 174, 5476, 20, 211, 3, 548, 11, 174, 5476, 20, 10, 3, 148], [37, 9, 473, 285, 30, 261, 4284, 37, 9, 473, 285, 30, 261, 4284, 1, 1, 37, 51, 1125, 536, 660, 11, 349, 36, 113, 2, 113], [52, 1315, 7, 278, 50, 2, 1149, 7, 920, 3, 948, 10, 3, 148, 52, 6, 164, 3521, 1928, 7, 278, 327], [566, 37, 50, 2, 70, 3, 566, 4280, 10, 3, 155, 5477], [29, 31, 27, 2, 211, 3, 140, 783, 11, 718, 29], [29, 502, 10, 3, 128, 126, 501, 229, 229, 433, 28, 219, 29], [5478, 6, 8, 496, 245, 36, 5479, 5478, 6, 8, 2762, 10, 3, 5479, 57, 302, 390, 6, 8, 496, 245, 770, 36, 23, 196], [86, 31, 86, 31], [2581, 136, 2581, 136], [32, 707, 32, 707], [51, 413, 10, 3, 528, 2, 492, 526, 118, 3, 1000, 98, 184, 2582, 80, 2, 528, 2, 492, 91, 377, 51, 413, 10, 3, 528, 2, 492, 526, 118, 3, 1000, 98, 184, 2582, 80, 2, 528, 2, 492, 91, 377, 1, 111, 23, 6, 5353, 8452, 1, 330, 526, 995, 88, 690, 144, 4, 283, 2583, 3156, 7, 21, 1067, 526, 253, 68, 44, 3, 201, 1677, 180, 219, 4, 3, 1000, 98, 3156, 183, 330, 911, 995, 24, 128, 126, 144, 4, 283, 1000, 98, 3156, 411, 44, 85, 330, 4, 2049, 14, 735, 23, 34, 68, 23, 6, 83, 44, 219, 2, 43, 588], [339, 121, 339, 121], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [41, 31, 41, 31, 27, 2, 100, 73, 57, 7, 6, 601, 2, 8, 545], [203, 34, 70, 203, 34, 70], [805, 133, 2, 5480, 184, 6, 508, 254, 667, 748, 33, 527, 7, 148, 110, 805, 133, 2, 5480, 184, 6, 508, 254, 667, 748, 33, 527, 7, 148, 49, 84, 2, 29, 21, 10, 33, 527, 67, 9, 345, 10, 33, 148, 248, 2, 1422, 2, 3, 271, 257, 67, 63, 2816], [110, 1031, 91, 33, 2584, 245, 4, 41, 49, 2333, 310, 7, 8453, 8454, 99, 54, 2, 91, 1325, 2584, 245, 41], [15, 74, 3510, 56, 8455, 8456, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 2, 119, 33, 506, 74, 4, 15, 11, 999, 616, 7, 616, 2265, 811, 33, 506, 4, 2708, 284, 42, 273, 303, 2, 3, 385, 74], [238, 1034, 1941, 5481, 10, 24, 17, 90, 90, 5482, 29, 277, 24, 144, 6, 75, 238, 1034, 1941, 5481, 10, 24, 17, 90, 90, 5482, 29, 277, 24, 144, 6, 75, 112, 49, 105, 10], [27, 2, 100, 26, 7, 13, 31, 4, 26, 27, 2, 100, 26, 7, 13, 31, 4, 26], [553, 110, 49, 290, 2805, 8457, 131, 36, 553, 184, 755, 38, 23, 334, 42, 151, 143, 210, 357, 1092, 68, 8, 185, 612, 14, 121, 80], [15, 13, 64, 77, 169, 638, 224, 30, 13, 125, 20, 13, 120, 1319, 1825, 507, 355, 15, 26, 6, 64, 77], [27, 2, 46, 2, 459, 2, 114, 1418, 2734, 27, 2, 46, 2, 459, 2, 114, 1418, 2734], [40, 79, 286, 198, 1035, 559, 3536, 6, 565, 198, 178, 6, 426, 607, 40, 79, 286, 198, 1035, 559, 3536, 6, 565, 198, 178, 6, 426, 607], [123, 30, 15, 149, 957, 111, 49, 290, 1237, 164, 15, 149, 957, 151, 42, 9, 2817, 4, 3, 1190, 51, 1216, 98, 171, 1701, 1702, 1847, 854, 220, 1371, 8458, 8459, 124, 1701, 1702, 8460, 8461, 243, 15, 149, 957, 111, 8462, 35, 38, 2, 995, 72, 21, 34, 4, 2, 118, 23, 833], [27, 2, 189, 87, 964, 8463, 18, 3581, 3582, 27, 2, 189, 87, 964, 10, 1155, 18, 3581, 3582], [238, 6, 75, 10, 434, 24, 168, 998, 190, 3104, 29, 277, 112, 49, 105, 10, 238, 6, 75, 10, 434, 24, 168, 998, 190, 3104, 29, 277, 112, 49, 105, 10], [210, 3058, 610, 210, 3058, 610, 14, 91, 3, 163, 367, 30, 3, 37, 891], [175, 1891, 11, 5483, 5484, 821, 65, 141, 495, 55, 1, 1, 841, 1891, 11, 5483, 5484, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [27, 2, 91, 83, 3, 2818, 426, 338, 27, 2, 91, 83, 3, 2818, 426, 338], [270, 1809, 1136, 6, 8, 2122, 270, 1809, 1136, 6, 8, 2122], [110, 97, 29, 309, 212, 110, 38, 828, 3538, 32, 36, 24, 144, 2, 24, 144, 172, 8464, 356, 84, 2, 95, 158, 3, 459, 30, 3, 73, 871, 51, 335, 2, 95, 158, 3, 309, 212, 118, 23, 71, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15, 3566, 3567, 8465], [31, 30, 130, 174, 926, 982, 111, 21, 101, 1, 1, 581, 30, 1942, 3, 167, 554, 21, 530, 23, 586, 18, 130, 174, 1434, 6, 8, 1565, 14, 4120, 85, 2, 43, 588, 11, 926, 982, 11, 453, 23, 2583, 1101, 456, 169, 46, 2, 209, 41, 1, 1, 135], [34, 70, 11, 34, 9, 28, 486, 2, 1544, 44, 390, 63, 3157, 77, 18, 168, 194, 169, 858, 7, 172, 390, 6, 267, 2, 17, 558, 45, 494], [82, 20, 99, 8, 100, 8466, 8467, 33, 82, 20, 217, 99, 8, 100, 49, 164, 72, 37, 71, 97, 1372, 3, 220, 6, 5417, 3563, 129, 3, 220, 69, 11, 967, 38, 2337, 7, 243, 430, 567, 420], [54, 29, 2, 76, 54, 29, 2, 76, 142, 56, 8468], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 71, 250, 2, 95, 158, 457, 2, 127, 37, 71, 250, 2, 95, 158, 457, 2, 127, 28, 59, 8469, 38, 163, 3, 57, 44, 429, 3, 684, 49, 496], [13, 25, 102, 13, 25, 102], [230, 77, 36, 324, 171, 230, 77, 36, 324, 171], [241, 1025, 367, 63, 667, 10, 3, 459, 7, 1518, 330, 29, 2, 21, 241, 1025, 367, 63, 667, 10, 3, 459, 7, 1518, 330, 29, 2, 21, 229, 1017, 23, 6, 72, 31, 331, 36, 33, 383, 3055, 1998, 71, 8470, 8471, 341, 12, 49, 1547, 8472, 8473, 8474, 8475, 4285, 4286, 8476, 8477, 1025, 136, 10, 3, 459, 23, 63, 5381, 2, 33, 3583, 23, 334, 66, 8478, 8479, 68, 35, 412, 90, 777, 10, 3, 459, 23, 136, 6, 4, 3, 1164, 469, 355, 2535, 35, 83, 1336, 479, 2, 253, 100], [102, 35, 2, 25, 33, 13, 72, 15, 65, 1], [90, 81, 3584, 78, 5485, 65, 5486, 5487, 4144, 2325, 286, 90, 81, 3584, 78, 5485, 65, 5486, 5487, 4144, 2325, 286], [27, 2, 100, 41, 7, 235, 108, 453, 27, 2, 100, 41, 7, 235, 108, 453], [14, 25, 13, 4, 26, 11, 28, 59, 5488, 14, 25, 13, 4, 26, 11, 28, 59, 5488], [28, 59, 7, 13, 708, 208, 491, 197, 4287, 711, 8480, 4288, 6, 27, 2, 239, 283, 2143, 2734, 311, 2, 28, 59, 7, 13, 708, 611, 50, 2, 2713, 3, 179, 376, 59, 8481, 376, 13, 8482, 30], [86, 406, 86, 406], [2336, 37, 2336, 37], [32, 64, 4, 226, 32, 64, 4, 226], [87, 32, 46, 123, 56, 2812, 2813, 182, 213, 130, 155, 204, 117, 107, 214, 146, 87, 32, 46, 123, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 921, 922, 55, 2812, 2813, 111, 49, 843, 123, 4, 2722, 4, 87, 32, 921, 922, 14, 269, 80, 59, 7, 13, 11, 101, 1151, 2812, 2813, 59, 13, 921, 922, 45, 172, 2812, 2813, 8483], [3, 474, 368, 6, 260, 75, 233, 10, 40, 3, 474, 368, 6, 260, 75, 233, 10, 40], [317, 5489, 4252, 4253, 317, 5489, 4252, 4253], [13, 6, 8, 164, 1996, 13, 6, 8, 164, 1996], [27, 46, 309, 55, 1, 1, 356, 24, 358, 24, 271, 21, 458, 18, 161, 195, 1093, 384, 3, 57, 11, 309, 520, 18, 839, 67, 83, 18, 444, 38, 402, 309, 520, 18, 839, 110, 336, 51, 284, 95, 158, 309, 21, 99, 43, 1086, 96, 8484, 1, 1, 1, 1, 1, 14, 50, 166, 119, 3, 28, 309, 233, 251, 2, 391, 1009], [60, 94, 24, 17, 90, 90, 892, 618, 6, 75, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [211, 174, 2005, 2038, 2039, 211, 174, 2005, 2038, 2039], [666, 504, 349, 1665, 312, 11, 1593, 627, 30, 2314, 1257, 1478, 666, 504, 4, 15, 26, 1478, 11, 1593, 627, 30, 15, 5490, 2314, 1257, 21, 201, 8485, 72, 37, 71, 470, 438, 289, 8486, 1494, 201, 1, 21, 649, 2, 43, 119, 4, 15, 26, 576, 748, 7, 124, 990, 78, 116, 47, 1910, 151, 6, 3585, 4, 3, 349, 107, 3158, 83, 249, 8487, 467, 89, 8, 1169, 4, 26, 2351, 4, 26, 62, 26], [280, 73, 471, 5491, 5492, 280, 73, 471, 5491, 5492], [280, 73, 471, 5493, 5494, 280, 73, 471, 5493, 5494], [280, 73, 471, 5495, 5496, 280, 73, 471, 5495, 5496], [260, 20, 1022, 8, 1180, 4, 33, 88, 347, 55, 1243, 267, 3, 260, 82, 20, 6, 8, 806, 5497, 5498, 149, 120, 2819, 1174, 3159, 594, 596, 14, 263, 161, 73, 214, 107, 7, 24, 196, 821, 24, 1763, 879, 1848, 1943, 1849, 1137, 1138, 1052, 1082, 1141], [97, 206, 3, 555, 93, 110, 97, 515, 206, 3, 555, 93, 1293, 4, 128, 126, 102, 35, 2, 211, 130, 394, 18, 21, 1, 163, 6, 3, 37, 11, 104, 797], [876, 32, 29, 5499, 5500, 1008, 5499, 5500, 3506, 569, 2, 80, 180, 39, 9, 345, 100, 283, 32, 1, 1, 458, 556, 135], [123, 30, 148, 877, 208, 491, 38, 351, 443, 193, 30, 3, 148, 4289, 8488, 18, 3, 167, 475, 389, 713, 97, 43, 1534, 2050, 3160, 278, 4, 578, 14, 106, 3, 807, 7, 118, 80, 77, 18, 23, 8489], [25, 3, 13, 11, 8490, 8491, 10, 15, 160, 15, 14, 25, 13, 2, 1102], [175, 569, 31, 2, 553, 32, 8492, 5501, 1, 569, 31, 2, 2574, 542, 134, 10, 33, 32, 1, 1, 1, 135], [32, 64, 32, 64], [41, 1527, 169, 88, 70, 41, 1527, 169, 88, 70], [193, 30, 3, 452, 18, 100, 245, 55, 11, 241, 116, 8, 83, 100, 245, 42, 1086, 4, 33, 41, 110, 820, 38, 2, 1822, 3, 886, 2585, 469, 2, 91, 316, 5502, 67, 23, 6, 201, 285, 68, 110, 38, 175, 133, 2, 3, 480, 78, 411, 23, 6, 8, 820, 3, 732, 14, 236, 2334, 207, 44, 110, 39, 820, 633, 83, 5502, 135, 750], [279, 140, 31, 343, 1083, 994, 3, 726, 6, 8493, 117, 63, 343, 531, 2, 1563, 1098, 911, 1459, 180, 65, 23, 31, 454, 8, 10, 283, 943, 18, 3, 470, 180, 1359], [82, 20, 7, 15, 8, 45, 82, 20, 7, 15, 8, 45], [54, 50, 4, 1483, 13, 4, 13, 125, 20, 54, 50, 4, 1483, 13, 4, 13, 125, 20], [54, 1344, 3161, 586, 11, 83, 69, 111, 21, 101, 308, 14, 525, 53, 47, 54, 1344, 8494, 3161, 586, 51, 1797, 83, 968, 11, 83, 69, 5503, 11, 2340, 2357], [730, 24, 144, 7, 730, 24, 144, 42, 323, 75, 4, 850, 20, 1887, 96, 364, 4, 850, 20, 112, 49, 10, 105, 1, 1, 3, 730, 24, 144, 6, 260, 75, 233, 10, 1328, 5504, 5505, 144, 14, 663, 1, 3, 730, 24, 144, 6, 260, 75, 233, 10, 1328, 5504, 5505, 144, 14, 663], [79, 32, 64, 79, 32, 64], [5506, 148, 11, 5507, 1013, 483, 2, 208, 8495, 47, 54, 5506, 148, 12, 1939, 11, 161, 483, 5507, 1013, 264, 38, 130, 174, 1197, 2178, 7, 4290, 2, 373, 3, 468, 14, 410, 21, 2284, 310, 99, 4291, 21, 12, 334, 49, 36, 104, 2002, 2820, 35], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 45, 278, 55, 15, 45, 6, 343, 278, 112, 576, 334, 67, 9, 354, 65, 141, 1271, 989, 14, 2151, 2358, 34, 7, 1419, 2, 353, 3, 31, 662, 3162, 18, 359, 7, 2179, 117, 1004, 42, 164, 3424, 311, 2, 23, 5508, 104, 1944, 2359, 30], [191, 217, 2586, 55, 611, 269, 191, 217, 898, 11, 1703, 1452, 610, 223, 59], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [37, 473, 36, 113, 2, 113, 51, 897, 473, 2, 955, 3586, 981, 36, 113, 2, 113, 47, 336, 3, 37, 71, 53, 96, 14, 50, 2180, 23, 31, 7, 386, 251, 2, 166, 510], [207, 677, 103, 55, 21, 101, 1, 1, 47, 42, 8, 84, 2, 119, 3, 677, 103, 11, 1207, 7, 4, 207, 1, 14, 114, 7, 386, 80], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [34, 70, 10, 258, 34, 70, 10, 258], [468, 80, 3, 1065, 44, 6, 3163, 10, 3, 57, 44, 65, 141, 2119, 96, 468, 80, 3, 1065, 44, 6, 3163, 10, 3, 57, 44, 65, 141, 2119, 96, 1, 1, 5509, 5510, 1, 49, 1, 291, 292, 1, 550, 319, 2729, 524, 349, 791, 1, 1, 111, 101, 1, 1, 39, 35, 14, 468, 80, 3, 1065, 44, 6, 3163, 10, 3, 57, 44, 65, 141, 2119, 96], [27, 2, 436, 324, 171, 185, 612, 14, 121, 80, 38, 248, 2, 121, 21, 7, 21, 790, 2344], [27, 2, 211, 82, 20, 27, 2, 211, 82, 20], [127, 1927, 1532, 2821, 8496, 8497, 1, 124, 1, 291, 292, 1, 1448, 550, 3164, 2360, 11, 8498, 225, 20, 1, 1, 2047, 149, 1193, 1, 1, 127, 1927, 1532, 2821, 8499, 731, 231, 3164, 570, 4, 1228, 6, 1, 225, 20, 429, 23, 6, 626, 1, 14, 386, 424, 3, 52, 2361, 3, 1502, 2324, 626, 3164, 2360, 2, 423, 225, 20], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [34, 70, 10, 258, 34, 70, 10, 258], [25, 224, 11, 4292, 4293, 137, 13, 125, 20, 13, 25, 3], [518, 1904, 57, 8500, 8501, 124, 291, 292, 1390, 114, 550, 227], [324, 171, 8, 601, 2, 391, 120, 324, 171, 8, 601, 2, 391, 120], [27, 2, 500, 224, 10, 83, 460, 27, 2, 500, 224, 10, 83, 460], [13, 25, 13, 25], [97, 118, 1610, 2, 176, 10, 115, 1814, 830, 855, 463, 97, 118, 1610, 2, 176, 10, 115, 1814, 830, 855, 463], [1929, 31, 419, 606, 36, 2, 419, 1929, 31, 419, 606, 36, 2, 419], [1661, 369, 286, 6, 272, 198, 375, 1661, 369, 286, 6, 272, 198, 375, 198, 178, 387], [339, 121, 533, 1120, 941, 339, 121, 533, 1120, 941], [15, 13, 25, 11, 28, 5511, 5512, 5513, 14, 25, 15, 13, 18, 5511, 5512, 5513, 2, 1102], [25, 26, 13, 11, 8502, 8503, 185, 35, 14, 25, 3, 13, 11, 3, 28, 8504, 11, 26, 4, 15, 180, 6, 24, 149, 120, 7, 283, 13, 6, 8, 45, 7, 180, 219, 23, 29, 311, 3, 1529, 674, 447], [34, 70, 10, 258, 34, 70, 10, 258], [54, 2822, 18, 2362, 28, 59, 3165, 3166, 2158, 4, 457, 42, 8, 45, 861, 14, 1377, 44, 3, 2362, 3079, 4, 226, 6, 4, 3454, 11, 5514, 5515, 8505, 7, 8506, 8507, 5516], [41, 31, 41, 31], [555, 810, 8508, 8509, 7, 8510, 8511, 118, 23, 37, 51, 284, 335, 2, 100, 3, 206, 555, 93, 864, 10, 423, 673], [939, 174, 2485, 41, 41, 6, 343, 278, 2, 1185, 356, 290, 2, 866, 1229, 2, 70], [490, 218, 818, 1813, 18, 3587, 3588, 8512, 2, 2311, 2312, 8513, 378, 14, 90, 28, 29, 2, 3587, 3588, 646, 254, 315, 29, 56, 2311, 2312, 57, 214, 146, 53, 35, 253, 3587, 3588, 99, 43, 8514, 36, 24, 10, 14, 90, 80, 29, 2, 408, 254, 315, 29], [2539, 34, 9, 2181, 419, 4294, 577, 252, 4, 15, 26, 111, 83, 1, 534, 495, 23, 66, 57, 67, 526, 927, 680, 393, 1, 185, 35, 14, 1377, 3, 233, 558, 8515, 4, 596, 687], [97, 528, 62, 176, 610, 36, 15, 535, 146, 55, 97, 528, 62, 176, 610, 36, 15, 535], [41, 8, 638, 1806, 3167, 41, 8, 638, 1806, 3167], [40, 686, 26, 4295, 3, 198, 65, 141, 304, 2, 40, 686, 26, 4295, 3, 198, 65, 141, 304, 2, 1, 40, 686, 26, 4295, 3, 198, 65, 141, 304, 2], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [235, 108, 453, 8516, 8517, 124, 4296, 4297, 291, 292, 2587, 2588, 243, 1704, 383, 30, 41, 111, 8518, 16, 23, 765, 6, 178, 533, 14, 100, 34, 11, 23, 7, 766, 458], [54, 29, 2, 1604, 447, 4, 1632, 54, 29, 2, 1604, 447, 4, 1632], [27, 2, 46, 2, 128, 126, 30, 57, 196, 7, 13, 27, 2, 46, 2, 128, 126, 30, 57, 196, 7, 13], [57, 1813, 110, 246, 265, 2, 38, 5517, 8519, 57, 1998, 2, 1619, 5517, 65, 2495, 3, 3434, 7, 99, 43, 5518, 283, 4298], [79, 32, 132, 79, 32, 132], [1545, 5519, 37, 250, 2, 29, 1545, 1, 1, 37, 1, 5519, 65, 22, 2182, 104, 52, 718, 11, 222, 91, 3, 8520, 95, 173, 1, 639, 222], [1586, 31, 10, 86, 587, 59, 1586, 31, 10, 86, 587, 59], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [27, 2, 29, 262, 194, 62, 168, 194, 329, 17, 194, 6, 75, 4299, 4300, 51, 335, 2, 29, 624, 197, 384, 3, 71, 44, 23, 347, 39, 43, 1086], [82, 20, 8, 405, 82, 20, 8, 405], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [57, 453, 10, 24, 794, 108, 57, 453, 10, 24, 794, 108], [8, 84, 2, 46, 111, 491, 3589, 49, 1, 1, 622, 96, 464, 7, 50, 80, 77, 307], [174, 783, 11, 683, 926, 174, 783, 11, 683, 926], [15, 1103, 110, 49, 8, 901, 4, 3, 134, 314, 5520, 5521, 1348, 1945, 4301, 159, 623, 18, 33, 159, 255, 80, 8, 1198, 8, 670, 4, 3, 134, 314, 9, 5521, 1348, 1945, 4301, 159], [82, 20, 24, 7, 24, 8, 45, 82, 20, 24, 7, 24, 8, 45], [27, 2, 504, 3590, 10, 254, 155, 8, 45, 27, 2, 504, 3590, 10, 254, 155, 8, 45], [27, 2, 100, 333, 173, 36, 128, 126, 56, 8521, 8522, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 100, 287, 4, 128, 126, 118, 71, 44, 78, 1219, 545, 271, 18, 287], [60, 94, 24, 17, 90, 90, 8523, 618, 6, 75, 112, 12, 49, 990, 48, 6, 98, 10, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 12, 49, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2539, 34, 9, 2181, 419, 4294, 577, 252, 4, 15, 26, 111, 4302, 143, 233, 10, 23], [939, 88, 2583, 51, 335, 2, 2051, 41, 7, 41, 984, 939, 88, 2583, 51, 335, 2, 2051, 41, 7, 41, 984], [27, 2, 1158, 4, 128, 126, 56, 8524, 8525, 213, 130, 155, 204, 57, 214, 146, 97, 1158], [209, 88, 245, 8, 770, 2, 41, 209, 88, 245, 8, 770, 2, 41], [27, 2, 46, 2, 309, 27, 2, 46, 2, 309], [34, 70, 11, 258, 34, 70, 11, 258], [1705, 397, 89, 8, 134, 51, 335, 7, 8526, 1705, 397, 118, 71, 691, 62, 13, 626, 1105, 10, 1256, 23, 334, 7, 21, 1067, 494, 86], [32, 64, 77, 79, 32, 64, 77, 79], [32, 64, 32, 64], [32, 64, 32, 64], [34, 403, 704, 34, 9, 34, 403, 704, 34, 9], [27, 2, 100, 41, 27, 2, 100, 41], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [3, 73, 383, 6, 8, 164, 5522, 3, 73, 383, 6, 8, 164, 5522], [290, 210, 30, 41, 290, 210, 30, 41], [110, 54, 8527, 2, 23, 229, 55, 1, 1, 54, 8528, 2, 23, 171, 1, 1, 40, 838, 5523, 839, 173, 40, 838, 5523, 839, 1, 8529, 8530, 1, 342, 1079, 556, 714, 135], [378, 41, 984, 378, 41, 984], [32, 707, 32, 707], [14, 70, 119, 11, 28, 3566, 3567, 36, 24, 144, 2, 24, 144, 119, 11, 28, 3566, 3567, 36, 24, 144, 2, 24, 144], [279, 140, 86, 5524, 101, 65, 1083, 86, 133, 18, 8531, 497, 1239, 18, 4303, 7, 2531], [193, 30, 728, 10, 3, 142, 47, 823, 3591, 1369, 1602, 193, 30, 728, 10, 3, 142, 47, 823, 3591, 1369, 1602], [492, 287, 106, 8, 100, 492, 287, 106, 8, 100], [27, 2, 243, 176, 225, 20, 111, 21, 101, 1, 1, 308, 14, 525, 53, 47, 27, 2, 8532, 225, 20, 4, 1946, 52, 1, 1, 3, 52, 355, 468, 96, 163, 201, 573, 143, 165, 537, 1, 1, 1, 1, 1, 2363, 2364, 1, 1072, 739, 1, 24, 572, 368, 18, 1322, 1824, 1335, 1, 1322, 1530, 572, 2589, 1, 8533, 596, 8534, 1, 7, 1917, 1, 358, 1, 1, 1, 1, 57], [97, 326, 4304, 4, 279, 140, 110, 97, 326, 592, 1002, 533, 592, 53, 613, 53, 592, 1002, 533, 592, 4, 279, 140, 330, 29, 599, 8535, 372, 593, 7, 2823, 10, 454], [519, 870, 6, 346, 36, 564, 519, 870, 6, 346, 36, 564, 54, 73, 1312, 519, 870], [939, 27, 2, 500, 83, 3, 129, 136, 36, 41, 2, 88, 27, 2, 500, 83, 3, 129, 136, 36, 41, 2, 88, 3, 196, 7, 1001, 1190, 42, 8, 2824, 2, 88, 53, 151, 42, 316, 276, 1091, 558, 8, 285, 2, 995, 3, 24, 56, 11, 669, 117, 866, 129, 107], [193, 30, 212, 28, 3592, 1074, 1075, 193, 30, 212, 28, 3592, 1074, 1075], [243, 203, 637, 158, 337, 739, 1022, 1164, 4, 37, 1000, 98, 318, 78, 37, 111, 1456, 1, 1, 1947, 47, 38, 1095, 241, 521, 2, 8536, 3, 894, 1, 39, 35, 14, 114, 68, 35, 42, 273, 164, 3, 179, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [8537, 536, 8538, 429, 385, 20, 2590, 186, 341, 1194, 3, 34, 844, 2, 431, 549, 101, 14, 55, 1, 1, 47, 38, 257, 3, 123, 30, 385, 454, 2590, 8539, 350, 536, 8540, 3, 186, 341, 6, 454, 2590, 1, 54, 12, 113, 10, 429, 186, 341, 4305, 1, 3, 2147, 42, 178, 12, 113, 1, 424, 8541, 468, 3, 536, 660, 3, 385, 186, 341, 1, 1, 47, 330, 3, 179, 123, 30, 1, 3, 31, 219, 2, 1766, 851, 1230], [309, 520, 1013, 111, 1, 1, 541, 5525, 51, 3, 1013, 65, 141, 543, 21, 89, 8, 1242, 4, 33, 628, 4306, 1, 3593, 38, 2, 326, 77, 3, 1013, 56, 36, 33, 101, 8542, 7, 114, 4, 3, 1767, 765, 1, 185, 35, 14, 50, 2, 353, 23, 31, 2124, 1, 1, 135], [74, 947, 2345, 2825, 5526, 10, 3, 727, 3426, 74, 947, 2345, 2825, 5526, 10, 3, 727, 3426], [24, 168, 998, 190, 476, 73, 174, 29, 277, 61, 431, 31, 318, 61, 431, 10, 24, 168, 998, 190, 476, 73, 174, 29, 277, 6, 323, 2155, 1, 1, 1, 24, 168, 998, 190, 476, 73, 5527, 5528, 83, 1, 2808, 6, 837, 1, 2801, 6, 837, 1, 61, 6, 2155, 1, 5529, 6, 8, 1997], [142, 114, 111, 14, 114, 33, 142, 333, 1687, 2153, 8543, 8544, 1388, 1764, 7, 260, 24, 667, 368, 879, 1363, 988, 1137, 1138, 1082, 1141, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 4, 2826, 30, 1135, 2052, 3, 572, 62, 1294, 18, 23, 446, 66, 1931, 165, 467, 3, 679, 1453, 6, 1139, 1454, 68, 35, 38, 268, 23, 446, 66, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [25, 3, 13, 11, 5530, 5531, 10, 15, 3594, 15, 25, 3, 13, 11, 5530, 5531, 10, 15, 3594, 15], [123, 342, 728, 3595, 3596, 123, 342, 728, 3595, 3596], [9, 76, 133, 33, 223, 875, 56, 2827, 3168, 182, 213, 130, 155, 204, 117, 107, 214, 146, 9, 76, 133, 33, 223, 875, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 921, 922, 55, 6, 21, 3597, 875, 2827, 3168, 9, 21, 4307, 875, 921, 922, 837, 2827, 3168, 39, 35, 121, 911, 21, 307, 921, 922, 837, 99, 106, 21, 2827, 3168], [34, 9, 519, 621, 29, 162, 20, 5532, 111, 613, 268], [340, 133, 6, 1526, 164, 1352, 659, 4, 361, 340, 133, 6, 1526, 164, 1352, 659, 4, 361, 129, 2504, 6, 164, 952], [15, 2705, 160, 127, 74, 959, 2, 959, 160, 127, 74, 959, 219, 2, 43, 2142, 2, 959, 1, 1, 83, 15, 571, 1161, 610, 449, 1, 1, 27, 2, 326, 74, 959, 4, 404, 20, 226, 7, 15, 176, 20, 1, 945, 8545, 30, 56, 8546, 187, 8, 134], [58, 123, 4, 361, 174, 214, 146, 58, 123, 4, 361, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 921, 922, 55], [25, 224, 11, 90, 8547, 137, 13, 125, 20, 13, 25, 3], [346, 5533, 55, 151, 42, 5533, 77, 346, 4, 15, 11, 3, 694, 44, 5534, 1948, 1481, 310, 4, 3, 334, 271, 190, 190, 2815, 14, 50], [606, 115, 1768, 110, 2309, 34, 2, 606, 3, 52, 1768, 39, 2049, 43, 606, 2, 607, 574, 2, 3169, 3170], [34, 9, 519, 621, 29, 162, 20, 5532, 111, 14, 326, 96, 3, 871, 18, 621, 29, 11, 8548, 8549], [23, 229, 39, 8, 43, 100, 23, 229, 39, 8, 43, 100], [8550, 210, 113, 11, 8551, 3171, 8552, 36, 90, 57, 36, 4308, 4309, 2, 8553, 8554, 2, 485, 885, 1194, 2183, 36, 36, 166, 432, 7, 8555, 4, 3172, 225, 20, 65, 141, 2043, 14, 1420, 556, 53, 613, 9, 186, 263, 225, 20, 65, 141, 2043, 14, 1420, 556, 53, 613, 9, 186, 263, 225, 20, 65, 141, 2043, 14, 1420, 556, 53, 613, 9, 186, 263], [32, 230, 55, 1, 185, 35, 50, 80, 132, 33, 32, 1, 39, 8, 118, 294], [131, 660, 63, 8, 3, 179, 9, 131, 660, 36, 115, 2, 348, 265, 2330, 3598, 134, 314, 8556, 348, 115, 8557, 3599, 8558, 129, 568, 8559], [338, 212, 55, 1, 1, 49, 27, 2, 95, 4, 2, 547, 580, 294, 338, 212, 14, 50], [628, 4306, 309, 111, 1, 6, 3, 713, 433, 47, 1834, 1061, 73, 309, 520, 1013, 1, 23, 116, 1093, 384, 143, 309, 181, 7, 183, 33, 628, 4306, 6, 1054, 67, 532, 18, 33, 1033, 351, 3, 181, 2, 421, 3, 1013, 1, 6, 21, 44, 23, 116, 526, 54, 2, 421, 3, 1013], [160, 127, 97, 43, 1918, 55, 21, 1, 1, 160, 127, 97, 43, 1918, 4310, 6, 202, 3, 191, 8560, 97, 43, 5535, 77, 1, 14, 91, 163, 464, 1, 1, 14, 795, 510, 968, 65, 2, 43, 588, 310], [90, 432, 836, 4311, 200, 75, 8561, 8562, 49, 5536, 5537, 1438, 1142, 1143, 243, 836, 4311, 200, 75, 55, 1706, 151, 6, 72, 3564, 10, 197, 18, 60, 59, 8563, 12, 90, 14, 39, 35, 100, 34, 30, 188, 92, 7, 616, 8564], [32, 64, 4, 226, 32, 64, 4, 226], [1081, 819, 119, 36, 2, 11, 83, 223, 1760, 4, 7, 3600, 3601, 124, 3173, 4312, 8565, 8566, 3174, 3175, 243, 3602, 373, 111, 3173, 47, 102, 35, 2, 119, 3, 1081, 819, 53, 924, 18, 11, 83, 3, 223, 8567], [2828, 2829, 2830, 6, 8, 399, 36, 836, 116, 2828, 2829, 2830, 6, 8, 399, 36, 836, 116, 163, 3, 464], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [780, 677, 31, 4, 2831, 55, 1, 1, 4, 3, 1947, 887, 47, 42, 843, 72, 31, 18, 780, 677, 8, 164, 274, 329, 3162, 3, 127, 1, 1, 1243, 47, 8568, 3, 780, 677, 30, 3603, 3, 780, 677, 2161, 53, 5538, 201, 1, 1, 11, 698, 4, 2831, 3, 503, 63, 272, 3163, 30, 3603, 677, 30, 8569, 503, 18, 2832, 67, 273, 780, 677, 6, 806, 53, 5538, 30, 1238, 822, 1, 1, 85, 47, 38, 1890, 6, 1259, 151, 42, 3115, 186, 627, 350, 311, 2, 933, 1552, 18, 536, 23, 31, 8570, 98, 44, 454, 169, 3, 5539, 6, 350, 21, 4313, 454, 2044, 2, 410, 143, 521, 1, 1, 47, 102, 35, 2, 366, 158, 23, 662, 574, 2358, 34, 7, 353, 3, 179, 1, 1, 5508, 104, 2359, 1, 1, 30], [54, 58, 133, 11, 1263, 5540, 12, 1173, 21, 1730, 1, 1, 14, 269, 58, 133, 11, 1263, 5540, 8571, 1691, 282, 430, 4, 1173, 1, 1, 23, 6, 1099, 11, 140, 638, 7, 183, 11, 1949, 1673, 136, 30, 188, 101], [3, 74, 6, 3604, 2, 3, 90, 74, 11, 186, 1001, 54, 2, 509, 3, 506, 77, 207, 21, 4314, 2, 2048, 2177, 124, 291, 292, 814, 550, 186, 263, 11, 1850, 1851, 14, 91, 5346, 18, 245, 10, 72, 31, 44, 6, 1361, 30, 3, 660, 18, 731, 1023, 44, 304, 2, 43, 1927, 36, 90, 2, 172, 357, 1927, 36, 90, 7, 90, 3, 74, 6, 3604, 2, 3, 90, 74, 11, 186, 1001, 54, 2, 509, 3, 506, 77, 207, 21, 4314, 2, 3, 731, 113, 14, 270, 80, 253, 68, 35, 54, 316, 136, 106, 8, 253, 85, 6, 2591, 21, 2, 176, 36, 90, 74, 290, 179, 31, 4, 90, 2048, 2177, 90, 48, 191, 120, 2048, 2177, 49, 3605, 3606, 8572, 8573, 243, 186, 263, 11, 1850, 1851, 207, 3, 31, 6, 44, 11, 241, 709, 21, 6, 3604, 2, 90, 74, 11, 3, 186, 263, 85, 6, 104, 74, 107, 7, 99, 320, 21, 2, 3, 74, 11, 710, 359, 389, 35, 504, 3, 186, 465, 2, 1344, 186, 629, 1950, 7, 119, 3, 74, 4, 446, 819, 2048, 2177, 90, 48, 191, 120, 3605, 3606, 49, 2048, 2177, 243, 186, 263, 11, 1850, 1851, 438, 207, 470, 1694, 102, 186, 2048, 2177, 49, 3605, 3606, 243, 186, 263, 11, 1850, 1851, 39, 35, 583, 80, 72, 127, 107, 2048, 2177, 90, 48, 191, 120, 3605, 3606, 49, 2048, 2177, 186, 263, 11, 1850, 1851, 111, 2048, 356, 250, 2, 598, 77, 72, 127, 11, 1850, 1851, 38, 1694, 102, 67, 49, 27, 2, 176, 77, 186, 263, 6, 151, 143, 986, 35, 39, 50, 80, 30, 23, 8574, 89, 8, 253], [218, 346, 208, 491, 8575, 218, 6, 346, 4, 621, 6, 40, 8576, 8577, 1276, 120, 82], [79, 32, 1352, 164, 64, 79, 32, 1352, 164, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 551, 40, 203, 22, 4, 5, 19, 12, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 1, 5, 551, 40, 203, 22, 4, 5, 19, 12], [9, 61, 10, 3, 148, 9, 61, 10, 3, 148], [1195, 32, 707, 10, 79, 1195, 32, 707, 10, 79], [40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [82, 20, 8, 45, 82, 20, 8, 45], [54, 50, 1483, 197, 18, 33, 101, 1066, 459, 79, 13, 54, 50, 1483, 197, 18, 33, 101, 1066, 459, 79, 13], [13, 25, 2512, 146, 55, 54, 2, 25, 197, 18, 33, 101, 1066, 13, 283, 56, 6, 8578, 8579, 28, 59, 8580], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [14, 583, 3607, 633, 721, 29, 2, 83, 287, 426, 40, 5541, 1707, 1358, 1763, 14, 583, 3607, 633, 721, 29, 2, 83, 287, 426, 40, 5541, 1707, 1358, 1763, 5542, 6], [14, 583, 5543, 5544, 3607, 3, 179, 29, 2, 78, 40, 53, 80, 5545, 14, 583, 5543, 5544, 3607, 3, 179, 29, 2, 78, 40, 53, 80, 5545, 33, 86, 6], [87, 89, 8, 134, 87, 99, 11, 463, 86, 179, 123, 53, 372, 593], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 100, 245, 4, 41, 27, 2, 100, 245, 4, 41], [29, 2, 162, 20, 502, 29, 2, 162, 20, 502], [9, 29, 2, 82, 20, 91, 377, 9, 29, 2, 82, 20, 91, 377], [76, 1391, 75, 76, 1391, 75, 51, 63, 5546, 251, 4, 11, 2051, 86, 1359, 330, 8581, 1326, 11, 858, 9, 435], [41, 542, 170, 98, 10, 33, 910, 382, 877, 41, 542, 170, 98, 10, 33, 910, 382, 877], [21, 3176, 10, 3, 459, 106, 8, 2365, 10, 3, 147, 3406, 341, 21, 3176, 10, 3, 459, 106, 8, 2365, 10, 3, 147, 3406, 341, 1, 23, 1189, 264, 38, 562, 10, 67, 6, 273, 8582, 1086, 310, 1, 23, 1189, 264, 742, 562, 10, 1, 1, 14, 485, 165, 3176, 53, 613], [497, 42, 770, 2, 80, 67, 3510, 7, 323, 2303, 121, 497, 42, 770, 2, 80, 67, 3510, 7, 323, 2303, 121, 279, 140, 2184], [15, 26, 110, 49, 84, 2, 29, 26, 7, 26, 716, 39, 29, 26, 11, 241, 709, 49, 164, 72, 37, 44, 1449, 32, 29, 8, 745, 2332, 341], [220, 15, 337, 10, 768, 40, 7, 40, 6, 75, 220, 15, 337, 10, 768, 40, 7, 40, 6, 75], [209, 174, 695, 31, 209, 174, 695, 31], [29, 2, 26, 365, 1364, 1, 246, 35, 14, 114, 23, 37, 4, 26, 1, 28, 8583, 1, 15, 26, 1, 183, 54, 25, 33, 13, 4, 26, 1, 23, 6, 3, 37, 1, 135], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [27, 2, 29, 24, 13, 562, 27, 2, 29, 24, 13, 562], [3608, 3609, 113, 120, 790, 323, 98, 10, 162, 87, 964, 3608, 3609, 113, 120, 790, 323, 98, 10, 162, 87, 964], [340, 55, 1518, 151, 42, 9, 316, 340, 1450, 1086, 11, 80, 12, 490, 110, 39, 9, 345, 281, 4, 14, 11, 4238, 781, 8584, 135, 750], [217, 115, 6, 3456, 3177, 7, 183, 290, 174, 140, 210, 217, 115, 6, 3456, 3177, 7, 183, 290, 174, 140, 210], [27, 2, 91, 33, 1253, 1418, 3407, 27, 2, 91, 33, 1253, 1418, 3407], [340, 8, 45, 4, 5547, 519, 31, 12, 8585, 340, 8, 45, 4, 5547, 1, 1, 29, 852, 8, 45, 134, 8586, 31, 1, 248, 678, 3178, 1633, 2053, 432, 20, 181, 1126, 8587, 71, 1, 8588, 257, 8, 84, 2, 1273, 3178], [76, 1391, 75, 110, 63, 2180, 72, 127, 696, 2, 2833, 1566, 10, 87, 1910, 44, 87, 805, 133, 276, 1910, 3, 76, 63, 2329, 75, 1093, 91, 1000, 98, 263, 10, 76, 389, 3, 1391, 75], [76, 1121, 210, 2592, 489, 76, 133, 257, 2593, 987, 1096, 4, 1765, 355, 2054, 121], [5548, 5549, 225, 20, 207, 365, 334, 1, 1, 355, 331, 102, 67, 336, 316, 131, 207, 268, 3, 163, 57, 783, 2, 366, 158, 3, 31, 51, 366, 12, 3, 225, 20, 2594, 4, 3, 57, 2289, 3, 2055, 470, 63, 3610, 12, 570, 51, 21, 5550, 38, 141, 51, 465, 158, 3, 127, 1012, 10, 3, 2055, 470, 465, 2, 367, 2127, 91, 2028, 661, 225, 20, 107, 467, 85, 6, 2594, 3, 225, 20, 5551, 96, 6, 11, 9, 570, 53, 21, 264, 43, 1, 1, 51, 366, 12, 3, 367, 2127, 11, 3, 2281, 127, 91, 600, 225, 418, 1, 1, 14, 50, 80, 1563, 424, 3, 117, 63, 225, 2306, 1633, 11, 3, 2055, 7, 424, 3, 1708, 225, 20, 6, 12, 570, 51, 21, 264, 8, 43, 270, 80, 253, 85, 54, 2, 106, 10, 33, 591, 2, 50, 30, 23, 14, 1, 1, 11, 1323, 3, 225, 20, 331, 10, 6, 391, 1, 1, 135], [5549, 225, 20, 365, 334, 1, 1, 161, 117, 5548, 63, 225, 2306, 11, 2055, 470, 44, 63, 670, 53, 9, 2360, 2055, 4, 15, 99, 43, 3611, 1215, 2, 3, 117, 11, 3, 973, 3610, 67, 39, 35, 1667, 80, 424, 21, 63, 225, 2306, 2, 3055, 30, 1, 1, 1, 135], [76, 1391, 75, 329, 3478, 11, 1852, 4, 15, 76, 1391, 75, 1093, 91, 1000, 98, 263, 3, 648, 8589, 30, 123, 63, 44, 15, 1391, 75, 276, 2289, 44, 76, 133, 330, 1391, 75], [27, 2, 122, 2, 1060, 27, 2, 122, 2, 8590], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [378, 1607, 173, 110, 38, 2056, 1607, 173, 44, 479, 2, 528, 7, 206, 2, 218, 10, 40, 8591, 2834, 51, 8592, 3, 173, 7, 335, 2, 504, 2, 40, 21, 530, 44, 151, 6, 8, 2266, 198, 8593, 8594, 5552, 4315, 11, 138], [54, 2, 326, 376, 245, 10, 41, 54, 2, 326, 376, 245, 10, 41], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [169, 110, 825, 41, 7, 2268, 72, 8595, 175, 886, 3518, 1101, 98, 44, 8596, 7, 110, 106, 680, 14, 106, 316, 1008, 11, 50, 33, 235, 1240, 9], [1590, 297, 10, 8597, 106, 8, 38, 3, 1590, 4316, 220, 10, 33, 966, 392, 10, 212, 39, 612, 14, 525, 80, 30, 164, 23, 543], [41, 8, 45, 88, 31, 41, 8, 45, 245, 8, 405, 88, 31], [64, 77, 18, 283, 52, 64, 77, 18, 283, 52], [15, 26, 13, 25, 15, 26, 13, 25], [5553, 5554, 83, 1, 1, 1, 1, 54, 2, 118, 95, 4, 350, 11, 161, 73, 854, 160, 2776, 5553, 5554], [15, 13, 25, 26, 15, 13, 25, 26], [3179, 176, 5, 37, 3179, 176, 5, 37], [74, 74, 406, 1, 1, 1, 23, 446, 6, 679, 1562, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 2349, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 21, 6, 8, 3, 679, 1295, 6, 1139, 1454, 68, 35, 38, 268, 23, 71, 66, 1531, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 1, 24, 1226, 1, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [27, 2, 46, 2, 518, 1617, 27, 2, 46, 2, 518, 1617, 1, 248, 13, 25, 67, 63, 8, 84, 2, 3146, 299, 1566], [54, 229, 2, 29, 41, 422, 181, 54, 229, 2, 29, 41, 422, 181], [32, 64, 77, 32, 64, 77], [894, 193, 4, 661, 529, 8598, 894, 193, 30, 15, 8599, 7, 168, 20, 1, 1892, 567, 2835, 684, 4, 168, 20, 4, 3, 412, 2271, 91, 377, 272, 3, 421, 483], [1452, 62, 2595, 128, 126, 287, 2, 457, 110, 479, 2, 909, 899, 2, 457, 492, 287, 44, 42, 1071, 4, 128, 126, 173, 39, 23, 43, 588, 63, 1591, 2, 100, 34, 7, 38, 625, 2, 128, 2502, 159, 62, 87], [97, 176, 2, 1165, 2778, 112, 1947, 1427, 1044, 49, 27, 2, 176, 2, 1165, 389, 3, 1044, 727, 2, 1165, 3612, 112, 3, 1044, 143, 1134, 2, 176, 2, 1165, 2347, 80, 2, 211, 3, 407, 184, 106, 67, 3, 176, 5, 1373, 3613], [496, 462, 4, 8600, 432, 113, 700, 6, 275, 51, 137, 3614, 981, 1211, 2, 384, 462, 158, 113, 700, 136, 6, 275, 2, 312, 21, 65, 8601, 2, 2326, 316, 1352, 272, 3, 887, 713, 3, 177, 1345, 4317, 42, 1231, 53, 2, 433, 23, 65, 1078, 249, 7], [54, 2, 280, 3460, 3461, 4, 26, 7, 26, 7, 4, 202, 675, 54, 2, 189, 3, 3460, 3461, 4, 202, 675, 7, 574, 1681, 8602, 7, 8603, 270, 8604, 253, 51, 3, 3460, 3461, 6, 2284], [40, 369, 686, 26, 1951, 10, 78, 40, 6, 272, 198, 375, 198, 178, 356, 40, 369, 686, 26, 1951, 10, 78, 40, 6, 272, 198, 375, 198, 178, 356], [672, 6, 8, 1198, 66, 120, 672, 6, 8, 1198, 66, 120], [193, 30, 168, 20, 37, 51, 637, 489, 3, 127, 3615, 3616, 193, 30, 168, 20, 37, 51, 637, 489, 3, 127, 3615, 3616], [935, 10, 121, 1481, 222, 1706, 533, 1, 1, 935, 10, 121, 222, 65, 141, 2836, 7, 3, 2836, 6, 2343, 4, 3, 96, 271, 4, 3, 128, 126, 14, 70, 104, 915, 2334], [6, 3, 501, 297, 52, 273, 75, 47, 54, 23, 52, 2, 2009, 875, 136, 11, 161, 5555, 1797, 6, 3, 501, 297, 52, 273, 75, 1, 47, 54, 23, 52, 2, 2009, 875, 136, 11, 161, 5555, 1797], [148, 3180, 3181, 406, 148, 3180, 3181, 406], [338, 13, 25, 338, 13, 25], [711, 4318, 6, 273, 8, 84, 2, 100, 3, 218, 419, 2355, 632, 3182, 5556, 5557, 5558, 124, 291, 292, 3183, 3617, 5559, 4319, 550, 34, 9, 73, 933, 223, 8605, 8606, 5560, 55, 711, 4318, 6, 273, 8, 84, 2, 100, 3, 218, 419, 2355, 632, 3182, 5556, 14, 366, 158, 23, 1488, 7, 269, 29, 135], [816, 319, 209, 441, 1350, 7, 191, 217, 26, 1348, 31, 351, 72, 37, 71, 169, 858, 1, 1262, 44, 70, 65, 8, 141, 588, 546, 1, 185, 35, 14, 114, 33, 142, 1, 1, 135], [74, 193, 30, 947, 4, 190, 55, 1518, 1, 1, 3, 74, 947, 9, 345, 1370, 192, 3, 8607, 1019, 1, 14, 391, 3, 609, 1, 1, 781, 35, 4, 1596, 1, 1, 135, 750], [54, 50, 365, 334, 1, 49, 4, 1237, 30, 33, 13, 1, 274, 3, 13, 7, 38, 3, 2366, 2, 43, 267, 2, 33, 181, 7, 133, 2, 1290, 3043, 1, 67, 273, 38, 33, 376, 13, 2, 170, 33, 142, 1, 68, 102, 2, 119, 33, 13, 137, 4320, 3171, 544, 7, 119, 3, 13, 21, 6, 8, 45, 1, 39, 35, 50], [140, 2497, 89, 8, 134, 140, 2497, 89, 8, 134], [452, 229, 8, 45, 55, 33, 148, 452, 229, 6, 8, 45, 363, 50, 71, 1101, 53, 185, 8, 2596, 1062, 108, 4321, 4322, 3618, 120, 149, 24, 361, 1335, 361], [54, 452, 229, 2807, 7, 8608, 5561, 55, 1, 14, 263, 44, 33, 452, 229, 2807, 6, 8, 45, 308, 1419, 857, 1, 1, 183, 54, 73, 131, 734, 2597, 734, 5561, 11, 33, 148, 1, 1, 1, 135], [586, 18, 527, 287, 308, 586, 3, 527, 287, 18, 8609, 28, 59, 8610, 2, 4318, 5560, 437, 218, 115, 9, 1853], [279, 140, 192, 194, 107, 55, 101, 742, 351, 123, 39, 121, 329, 45, 194, 39, 35, 50], [41, 3142, 783, 11, 224, 41, 3142, 783, 11, 224], [123, 342, 168, 20, 1542, 1543, 123, 342, 168, 20, 1542, 1543], [14, 189, 175, 218, 4, 3, 101, 254, 1046, 246, 35, 14, 189, 175, 218, 4, 3, 749, 254, 1046, 56, 162, 2553, 315, 29, 5056, 5057, 8611, 8612, 1082, 1141, 8613, 8614, 8615, 8616, 4323, 3184, 5562, 458, 1116, 2, 4323, 8617, 1562, 679, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 8618, 1454, 68, 35, 268, 23, 71, 311, 2, 175, 1531, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [5, 2057, 22, 4, 5, 19, 12, 5, 2057, 22, 4, 5, 19, 12], [102, 1297, 242, 394, 41, 70, 208, 491, 1, 1, 33, 148, 511, 65, 394, 18, 130, 41, 1, 308, 50, 80, 4, 164, 3, 1297, 242, 394, 18, 3, 179, 1, 1, 30, 135], [877, 681, 8, 1679, 3, 92, 69, 1484, 2597, 877, 681, 8, 1679, 3, 92, 69, 1484, 2597, 86], [1097, 18, 3, 159, 5563, 4324, 4325, 1392, 6, 8, 178, 7, 65, 2367, 631, 1097, 18, 3, 159, 5563, 4324, 4325, 1392, 6, 8, 178, 7, 65, 2367, 631, 2, 206, 8619, 8620, 2837, 3, 631, 181, 8621, 8622, 124, 8623, 8624, 550, 203, 206, 33, 56, 2, 572, 1937, 1611, 30, 135], [533, 4326, 8, 45, 533, 4326, 8, 45, 73, 53, 613, 376, 923, 248, 28, 42, 164, 717, 71, 169, 44, 21, 6, 339, 680, 39, 43, 4327], [25, 3, 13, 11, 5564, 5565, 10, 181, 25, 3, 13, 11, 5564, 5565, 10, 181], [348, 115, 573, 733, 14, 114, 348, 115, 573, 733, 14, 114], [5566, 1106, 1430, 359, 5567, 2838, 1298, 461, 5568, 3185, 4328, 5569, 255, 3619, 5570, 5566, 1106, 1430, 359, 5567, 2838, 1298, 461, 5568, 3185, 4328, 5569, 255, 3619, 5570, 1, 8625, 36, 3, 1430, 359, 899, 36, 3, 461, 65, 141, 2816, 112, 576], [142, 255, 3468, 348, 406, 3595, 3596, 142, 255, 3468, 348, 406, 3595, 3596], [25, 3, 13, 11, 8626, 8627, 10, 165, 55, 1, 14, 201, 199, 3, 13, 255, 8628, 144, 518, 1617, 411, 3, 299, 1566, 265, 3, 648, 5571, 35, 8629, 97, 43, 5572, 546, 1, 781, 35], [73, 117, 65, 241, 8630, 110, 38, 350, 73, 117, 32, 4, 67, 21, 65, 123, 21, 8631, 117, 6, 3620, 11, 2137, 4, 3, 149, 594, 1605, 14, 50, 796, 21], [4, 41, 49, 8, 164, 475, 4, 41, 49, 8, 164, 475, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 3621, 55, 752, 580, 1041, 65, 1016, 3, 971, 921, 922, 55, 14, 413, 10, 3, 229, 373, 21, 1633, 583, 80, 3, 59, 7, 13, 3621, 532, 540, 251, 350, 218, 11, 1952, 891, 921, 922, 837, 14, 269, 80, 29, 2, 104, 52, 3621, 558, 8, 45, 2, 80, 39, 35, 320, 80, 487, 921, 922, 14, 335, 23, 229, 3621, 5573, 5573], [1460, 20, 1151, 1460, 20, 65, 141, 430, 10, 33, 115, 67, 39, 239, 772, 4, 15, 1, 185, 35, 14, 50, 80], [27, 2, 436, 555, 810, 27, 2, 436, 555, 810], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [870, 2598, 1080, 1053, 870, 2598, 1080, 1053], [620, 342, 471, 1514, 5574, 5575, 620, 342, 471, 1514, 5574, 5575], [82, 20, 307, 117, 791, 119, 1005, 18, 173, 8, 285, 2599, 896, 85, 35, 428, 250, 2, 106, 7, 3, 31, 35, 38, 3186, 1, 21, 6, 8, 285, 2, 1005, 3, 1050, 173, 53, 3, 177, 37, 891, 1990, 1, 14, 622, 2, 3, 163, 1630, 1, 14, 1109, 464, 18, 143, 37, 891], [41, 10, 148, 855, 1900, 849, 5576, 56, 4329, 4330, 182, 213, 130, 155, 204, 117, 107, 214, 146, 41, 10, 148, 855, 1900, 849, 5576, 73, 2508, 347, 11, 3, 1117, 97, 43, 350], [27, 2, 189, 473, 249, 7, 249, 47, 243, 27, 2, 189, 473, 11, 249, 332, 840, 7, 249, 332, 4331, 336, 3, 37, 71, 53, 332, 163, 14, 50, 2180, 23, 37, 7, 386, 251, 2, 166, 510], [193, 30, 87, 55, 208, 1033, 1033, 1, 1, 110, 2185, 170, 87, 23, 37, 71, 820, 1101, 98, 1, 1, 1343, 263, 30, 135, 8632], [5577, 64, 4, 226, 5577, 64, 4, 226], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [149, 1323, 5578, 4332, 124, 3174, 3175, 8633, 8634, 8635, 8636, 5579, 5580, 8637, 8638, 8639, 8640, 8641, 8642, 243, 149, 1323, 8643, 47, 479, 2, 1563, 424, 3, 570, 6, 313, 11, 249, 4, 113, 47, 493, 197, 698, 249, 23, 249, 6, 5581, 4, 113, 598, 2, 113, 149, 127, 1673, 472, 7, 1953, 888, 888, 4, 113, 968, 570, 4, 113, 2322, 47, 1093, 1563, 424, 3, 570, 4, 113, 6, 207, 313, 21, 6, 186, 10, 4, 113, 149, 570, 4, 113, 6, 2322, 23, 6, 36, 8644, 171, 4, 113, 424, 21, 6, 207, 313, 3187, 570, 4, 113, 6, 2322, 570, 4, 113, 6, 2322, 1192, 10, 1239, 889, 3, 1144, 6, 179, 53, 149, 127], [1215, 2839, 3188, 11, 24, 2317, 7, 24, 2840, 4047, 4048, 1, 49, 1, 3174, 3175, 550, 1215, 2839, 3188, 1, 1, 2600, 1, 1, 14, 366, 158, 3, 3188, 102, 18, 24, 2317, 7, 24, 1215, 2839, 18, 2840, 1, 1, 23, 6, 197, 18, 3, 2740, 852, 7, 1299, 5582, 63, 2058, 1, 1, 54, 104, 295, 2, 421, 23, 597, 207, 44, 47, 39, 1185, 2, 2740, 101, 11, 5582, 18, 23, 852, 1, 1, 135], [32, 6, 164, 64, 636, 32, 6, 164, 64, 636], [132, 33, 15, 32, 55, 1, 185, 35, 14, 50, 2, 132, 33, 15, 26, 32, 1, 33, 28, 59, 6, 8645], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [82, 20, 1929, 632, 923, 8, 4, 3, 722, 127, 55, 1, 1, 393, 3, 82, 20, 1, 3, 1929, 632, 923, 42, 3622, 8, 4, 3, 722, 127, 849], [728, 133, 4, 520, 719, 8, 5583, 183, 54, 5584, 784, 2, 2841, 1919, 728, 133, 4, 520, 719, 8, 5583, 183, 54, 5584, 784, 2, 2841, 1919], [40, 286, 198, 10, 370, 900, 40, 6, 375, 178, 198, 6, 607, 77, 18, 607, 40, 286, 198, 10, 370, 900, 40, 6, 375, 178, 198, 6, 607, 77, 18, 607], [2368, 507, 31, 51, 250, 2, 583, 176, 2368, 134, 1803, 2368, 507, 31, 51, 250, 2, 583, 176, 2368, 134, 1803, 1, 1, 91, 377, 1, 1769, 1, 1769], [41, 782, 11, 73, 235, 4333, 111, 1, 102, 104, 295, 2, 893, 609, 11, 41, 475, 10, 33, 73, 8646, 8647, 2339, 4333], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [8, 84, 2, 46, 158, 309, 208, 491, 1, 49, 8, 84, 2, 46, 4, 309, 212, 2, 421, 3, 1013, 1, 308, 106, 807, 1, 1, 37, 167, 554, 163, 11, 797, 1, 1, 1, 30, 135], [25, 224, 11, 5585, 5586, 137, 13, 125, 20, 13, 25, 3], [5, 2842, 22, 4, 5, 19, 12, 5, 2842, 22, 4, 5, 19, 12], [2843, 1904, 46, 31, 2843, 1904, 46, 31], [249, 2844, 4334, 3189, 574, 11, 28, 5587, 5588, 4335, 26, 52, 249, 2844, 4334, 3189, 574, 11, 28, 5587, 5588, 4335, 26, 52, 1, 1, 4336, 4337, 1, 124, 1, 5589, 5590, 4110, 4111, 1, 3190, 3623, 3191, 3192, 15, 457, 162, 188, 8648, 1, 243, 34, 9, 15, 256, 29, 1, 1, 23, 1519, 65, 141, 653, 7, 38, 495, 21, 4338, 420, 4, 3, 887, 1, 3, 1519, 6, 495, 1, 1, 23, 99, 273, 8, 353, 3, 31, 12, 1608, 44, 31, 99, 5591, 30, 3, 195, 2601, 7, 2823, 30, 162, 676, 131, 1, 14, 2186, 4, 3, 15, 457, 101, 7, 3, 188, 162, 131, 101, 2, 118, 23, 402, 1, 5501, 1, 4339, 8649, 1, 120, 188, 1051, 571, 1, 1, 1, 1, 1, 24, 203, 1807, 986, 90, 1277, 730, 24, 144, 1, 1, 5589, 5590, 1, 49, 1, 4336, 4337, 4110, 4111, 1, 3190, 3623, 3191, 3192, 1, 243, 34, 9, 15, 256, 29, 1, 1, 111, 5592, 1, 1, 96, 1430, 1519, 8, 625, 2, 195, 1, 1, 6, 21, 3, 31, 39, 35, 14, 114, 7, 68, 219, 2, 43, 574, 96, 1519, 2, 28, 3191, 3192, 4335, 26, 52, 14, 269, 104, 631, 11, 3, 179, 1, 1, 1519, 249, 2844, 4334, 3189], [28, 219, 50, 2, 189, 186, 208, 21, 1, 1, 246, 35, 363, 50, 2, 114], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [37, 46, 10, 2, 3, 337, 52, 37, 46, 10, 2, 3, 337, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [40, 369, 370, 900, 40, 5593, 10, 78, 40, 6, 272, 198, 375, 198, 178, 40, 369, 370, 900, 40, 5593, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387], [1661, 369, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387, 1661, 369, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387], [27, 2, 95, 4, 2, 128, 126, 27, 2, 95, 4, 2, 128, 126], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [34, 70, 10, 203, 34, 70, 10, 258], [9, 61, 10, 3, 148, 9, 61, 10, 3, 148], [15, 397, 110, 274, 33, 13, 294, 13, 125, 8650, 7, 51, 1134, 2, 397, 2, 15, 33, 13, 6, 8, 2369, 8651, 8652, 1276, 1023, 685], [41, 41], [27, 2, 70, 224, 137, 13, 125, 20, 229, 27, 2, 70, 224, 137, 13, 125, 20, 229], [90, 173, 78, 8, 545, 664, 2, 38, 2187, 90, 173, 78, 8, 545, 664, 2, 38, 2187], [34, 70, 10, 258, 34, 70, 10, 258], [97, 320, 57, 2, 23, 117, 8653, 8654, 49, 446, 50, 14, 270, 80, 253, 424, 97, 320, 57, 2, 23, 117, 135], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [14, 25, 33, 2580, 695, 11, 1854, 14, 25, 33, 2580, 695, 11, 1854], [269, 58, 29, 1473, 2, 4340, 4341, 44, 1471, 3624, 3625, 269, 58, 29, 1473, 2, 4340, 4341, 44, 1471, 3624, 3625, 55, 185, 35, 14, 269, 58, 29, 1473, 2, 4340, 4341, 44, 1471, 3624, 3625, 29, 265, 448, 568, 56, 3624, 3625, 8655, 120, 56, 28, 59, 8656, 8657, 8658, 135], [27, 2, 509, 309, 1013, 27, 2, 509, 309, 1013], [317, 6, 5594, 2145, 7, 2370, 746, 21, 5595, 98, 317, 6, 5594, 2145, 7, 2370, 746, 21, 5595, 98], [822, 455, 31, 1003, 822, 455, 31, 1003], [2845, 7, 3465, 2845, 7, 3465], [54, 176, 2, 492, 140, 54, 1197, 1434, 62, 143, 140, 44, 65, 765, 2, 176, 2, 492, 1, 142, 56, 8659], [28, 63, 27, 2, 100, 260, 20, 28, 63, 27, 2, 100, 260, 20], [3, 501, 297, 52, 6, 75, 54, 612, 4, 3, 1333, 159, 2, 1377, 44, 3, 1181, 603, 6, 98, 7, 327, 501, 297, 52, 6, 75, 54, 612, 4, 3, 603, 522, 159, 2, 1377, 44, 3, 603, 8660, 10, 78, 40, 6, 98, 7, 327], [148, 8661, 29, 1060, 62, 1838, 340, 4, 1495, 314, 1917, 110, 828, 268, 607, 82, 148, 2, 199, 11, 134, 511, 134, 4, 3, 1954, 314, 1917, 433, 600, 5286, 1634, 133, 7, 340, 24, 1705, 134, 494, 38, 141, 4, 451, 964, 310, 4, 3, 1495, 314, 1917, 433, 97, 122, 2, 143, 1705, 340, 58, 23, 65, 141, 8662, 112, 1834, 1474, 33, 148, 30, 155, 2, 241, 3626, 4, 143, 381, 14, 525], [32, 64, 77, 32, 64, 77], [2131, 299, 3627, 205, 242, 171, 2131, 299, 3627, 205, 242, 171], [97, 29, 90, 62, 90, 128, 126, 481, 51, 335, 2, 100, 481, 49, 1840, 2, 322, 33, 57, 196, 276, 13, 7, 276, 3, 312, 3628, 187, 119, 33, 13, 310, 67, 526, 253, 68, 44, 65, 1096, 2, 106, 30, 21], [110, 118, 5596, 566, 37, 10, 541, 873, 18, 33, 148, 110, 118, 5596, 566, 37, 10, 541, 873, 18, 33, 148], [57, 110, 54, 2, 38, 8663, 3508, 543, 2, 33, 130, 57], [97, 176, 10, 1208, 10, 73, 1920, 1610, 97, 176, 10, 1208, 10, 73, 1920, 1610], [13, 25, 7, 29, 2, 260, 82, 418, 13, 25, 7, 29, 2, 260, 82, 418], [87, 381, 210, 514, 87, 964, 38, 141, 27, 2, 199, 87, 497, 118, 3, 71, 44, 33, 1745, 6, 8, 45, 7, 21, 99, 8, 122, 80, 2, 395, 23, 942, 576, 11, 197, 121, 7, 276, 21, 1067, 1709, 4, 3, 483, 310, 38, 8, 141, 84, 2, 1539, 192, 87, 33, 179, 1710, 507, 494, 11, 214, 497, 207, 106, 8, 1688, 21, 6, 33, 1710], [1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 8664, 8665, 8666, 1, 124, 1, 291, 292, 1, 2602, 550, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 1, 720, 313, 1, 1, 208, 83, 1, 1, 14, 1040, 33, 73, 383, 21, 6, 24, 868, 108], [2598, 751, 74, 1955, 113, 120, 2542, 3180, 3181, 124, 291, 292, 8667, 8668, 3193, 1711, 34, 255, 1956, 55, 50, 101, 363, 322, 34, 704, 2598, 751, 74, 1955, 113, 120, 2542, 437, 21, 6, 534, 45, 10, 44, 30, 415, 3629, 355, 2, 410, 614, 83, 134, 6, 8669, 1498, 2372, 342, 1079, 556, 714, 135], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [6, 151, 152, 100, 11, 3, 90, 214, 52, 94, 5146, 21, 141, 75, 11, 836, 4311, 1251, 18, 3, 483, 1, 1, 8670], [13, 25, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 8671, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 8672, 372, 56, 8673, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [431, 549, 140, 13, 25, 3194, 3195, 49, 8674, 8675, 291, 292, 814, 243, 2054, 170, 18, 1854, 312, 50, 564, 14, 114, 1855, 32, 4, 431, 549, 140], [117, 27, 2, 927, 28, 10, 279, 140, 110, 49, 1281, 4, 2, 600, 279, 140, 7, 88, 49, 137, 3066, 86, 7, 51, 3, 86, 3630, 493, 1202, 98, 4, 88, 2, 2833, 3, 121, 7, 9, 197, 39, 927, 80, 279, 140, 1393, 107, 52, 56, 8676, 121, 251, 107], [850, 20, 6, 65, 940, 72, 93, 4, 3, 79, 93, 95, 30, 59, 10, 293, 40, 7, 40, 850, 20, 6, 65, 940, 72, 93, 4, 3, 79, 93, 95, 30, 59, 10, 293, 40, 1, 850, 20, 6, 65, 940, 72, 93, 4, 3, 79, 93, 95, 30, 59, 10, 293, 40], [86, 31, 86, 31], [79, 13, 25, 79, 13, 25], [31, 30, 162, 20, 51, 335, 2, 995, 4, 1316, 102, 4, 162, 20, 3, 1152, 106, 8, 468, 10, 3, 672, 54, 2, 1420, 241, 2188, 67, 284, 526, 468, 98, 11, 80, 2, 1420, 444, 33, 739, 97, 91, 33, 1152, 624], [395, 31, 146, 112, 41, 2187, 576, 3, 1588, 10, 108, 106, 8, 134, 372, 593, 1749, 606, 63, 373, 2, 118, 1588, 45, 257], [41, 31, 1806, 7, 8, 545, 41, 31, 1806, 7, 8, 545], [1756, 28, 30, 88, 48, 7, 1756, 28, 30, 88, 48, 7, 1, 183, 1756, 28, 30, 69, 107], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [13, 125, 20, 13, 120, 55, 1, 1, 433, 106, 326, 3, 13, 125, 20, 13, 120], [378, 79, 32, 132, 378, 79, 32, 132], [27, 2, 853, 2, 245, 27, 2, 853, 2, 245], [41, 6, 27, 2, 122, 55, 101, 33, 41, 6, 27, 2, 122, 2, 5597, 23, 942, 355, 169, 4342, 33, 224, 272, 13, 125, 20, 13, 120, 2116, 72, 57, 319, 106, 8, 38, 143, 193, 4, 699, 245, 272, 174, 422, 62, 4, 87, 191, 185, 35, 14, 509, 366, 28, 4343, 142, 5598], [110, 2846, 41, 6, 27, 2, 122, 387, 8677, 8678, 8679, 8680, 8681, 8682, 8683, 291, 292, 8684, 41, 6, 27, 2, 122, 55, 101, 33, 41, 6, 27, 2, 122, 2, 5597, 23, 942, 355, 169, 4342, 33, 224, 272, 13, 125, 20, 13, 120, 2116, 72, 57, 319, 106, 8, 38, 143, 193, 4, 699, 245, 272, 174, 422, 62, 4, 87, 191, 185, 35, 14, 509, 366, 28, 4343, 142, 5598], [13, 125, 20, 13, 120, 1004, 7, 13, 25, 13, 125, 20, 13, 120, 1004, 7, 13, 25], [14, 269, 138, 11, 161, 195, 1993, 4344, 3196, 4332, 1456, 3197, 8685, 5599, 243, 24, 8686, 8687, 1214, 111, 3196, 39, 35, 134, 30, 104, 437, 21, 101, 2, 1264, 104, 527, 138, 196, 7, 269, 21, 2, 5600, 7, 1456, 111, 5600, 1456, 3196, 6, 3553, 8688, 651, 4, 3, 358, 174, 14, 114, 44, 3, 1616, 6, 4, 1209, 36, 408, 58, 2, 122, 272, 3, 76, 2, 162, 20, 2], [27, 2, 100, 98, 245, 27, 2, 100, 98, 245], [27, 2, 410, 619, 497, 36, 90, 137, 2373, 5601, 27, 2, 410, 619, 497, 36, 90, 137, 2373, 5601], [378, 867, 57, 10, 1155, 5602, 378, 55, 49, 3631, 11, 501, 378, 57, 49, 236, 98, 2, 320, 245, 10, 1155, 18, 501, 378, 67, 51, 3, 1295, 2847, 3, 181, 21, 530, 2311, 2312, 10, 1155, 5602, 378, 85, 479, 6, 11, 21, 2, 355, 2141, 8689, 56, 265, 21, 330, 141, 331, 36, 911, 3587, 3588, 7, 4345, 4346, 600, 38, 423, 245, 236, 98, 44, 986], [41, 1527, 41, 1527], [268, 71, 51, 250, 2, 100, 580, 8690, 213, 783, 80, 2, 528, 73, 213, 2, 1372], [1855, 15, 1103, 6, 8, 638, 112, 1855, 15, 1103, 6, 8, 638, 112], [164, 1140, 1553, 36, 164, 1140, 1553, 36, 2058], [60, 94, 90, 24, 892, 1159, 6, 75, 112, 49, 105, 10, 48, 6, 98, 10, 76, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1608, 751, 10, 115, 2338, 273, 89, 8, 134, 169, 480, 1608, 751, 10, 115, 2338, 68, 21, 273, 89, 8, 134, 169, 8691, 14, 114, 7, 1005, 257, 68, 1099], [1711, 2060, 140, 102, 55, 295, 101, 1, 1, 54, 2060, 10, 33, 115, 1, 1, 39, 35, 14, 211, 21, 1, 1, 140, 102, 631, 163, 96, 1, 1, 135], [280, 47, 1957, 2374, 2375, 280, 47, 1957, 2374, 2375], [280, 47, 477, 2374, 2375, 280, 47, 477, 2374, 2375], [5603, 2598, 1080, 1053, 5603, 2598, 1080, 1053], [189, 3632, 857, 531, 254, 189, 3632, 857, 531, 254], [3633, 8692, 1171, 957, 1106, 168, 20, 4347, 14, 189, 73, 218, 2136, 1, 1, 1504, 1171, 168, 20, 4348, 4349, 5604, 3633, 8693, 4347, 1, 1, 1, 1, 4348, 518, 1617, 4106, 8694, 2551, 4347, 1, 4350, 8695, 1504, 15, 124, 8696, 1, 1, 1439, 8697, 3634, 8698, 8699, 3150, 1440, 1, 5605, 5606, 15, 124, 173, 40, 957, 5605, 5606, 15, 124, 1, 1, 1, 709, 1, 124, 8700, 8701, 1, 38, 350, 241, 4351, 4352, 11, 161, 8702, 2189, 11, 161, 73, 15, 124, 52, 11, 897, 5607, 2848, 1, 207, 284, 99, 38, 2604, 2, 366, 158, 23, 4351, 4352, 51, 284, 479, 2, 106, 143, 319, 4299, 4300, 826, 1, 411, 47, 273, 244, 30, 15, 124, 7, 161, 376, 52, 63, 934, 18, 168, 20, 1, 486, 3198, 1, 1, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [1854, 13, 50, 564, 1, 14, 114, 1456, 32, 4, 431, 549, 140], [4353, 55, 1, 1, 1680, 33, 148, 4, 3, 24, 58, 201, 8703, 8704, 10, 3, 383, 110, 118, 3, 8705, 245, 3, 123, 183, 165, 1033, 581, 12, 3, 1, 1, 1, 1, 1, 1, 30, 135, 750], [58, 94, 82, 1826, 432, 24, 58, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75, 40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75], [27, 2, 515, 1045, 27, 2, 515, 1045, 37, 71, 8706], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [88, 690, 100, 1246, 36, 5608, 5609, 208, 83, 5608, 5609, 1712, 1077, 8707, 805, 584, 66, 1531, 283, 100, 1246, 593, 1311, 39, 612, 14, 114, 68, 261, 100, 1246, 39, 43, 1368], [1168, 751, 406, 3635, 1168, 751, 406, 3635], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 15, 13, 208, 522, 102, 2, 25, 15, 13, 11, 3, 177, 28, 8708], [14, 114, 2605, 32, 4, 431, 549, 140, 50, 564, 1, 14, 114, 2605, 32, 4, 431, 549, 140], [114, 3, 609, 10, 3, 5610, 236, 3199, 3, 609, 10, 3, 8709, 5610, 236, 1691, 108, 755, 43, 425, 1958, 2, 3, 2062], [25, 3, 13, 11, 5585, 5586, 10, 15, 160, 15, 14, 25, 3, 13, 11, 3, 28, 8710, 63, 670, 2376, 567, 420, 1, 1116], [61, 94, 361, 113, 361, 92, 69, 2507, 1285, 60, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [461, 107, 65, 141, 1751, 556, 30, 626, 1338, 32, 461, 107, 65, 141, 1751, 556, 30, 626, 1338, 32], [14, 114, 5611, 32, 4, 431, 549, 140, 14, 114, 5611, 32, 4, 431, 549, 140], [15, 520, 719, 97, 122, 5612, 15, 520, 719, 97, 122, 5612], [8711, 111, 355, 248, 2, 119, 33, 13, 192, 4354, 7, 64, 80, 3200, 246, 35, 14, 43, 207, 450, 7, 132, 80, 257, 207, 44, 39, 119, 21, 257, 135, 750, 8712, 8713, 1388, 1906, 24, 667, 368, 879, 1363, 988, 1137, 1138, 1082, 1141, 23, 71, 6, 1562, 679, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 1139, 1454, 68, 35, 268, 23, 71, 66, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [238, 7, 42, 75, 10, 434, 24, 168, 998, 1265, 190, 2849, 1337, 277, 112, 105, 10, 238, 7, 42, 75, 10, 434, 24, 168, 998, 1265, 190, 2849, 1337, 277, 112, 105, 10], [60, 94, 190, 24, 168, 998, 3201, 856, 618, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [8714, 317, 406, 317, 406, 1, 11, 162, 8715, 8716, 1, 1, 73, 1917, 536], [15, 1313, 46, 809, 346, 15, 1313, 46, 809, 346, 15, 97, 46], [108, 89, 8, 861, 873, 98, 79, 52, 1315, 389, 28, 46, 108, 89, 8, 861, 873, 98, 79, 52, 1315, 389, 28, 46], [363, 50, 2, 373, 77, 472, 426, 473, 1498, 208, 101, 47, 351, 536, 1203, 8717, 11, 249, 7, 264, 955, 115, 1023, 2, 113, 276, 350, 473, 1885, 10, 23, 1203, 472, 115, 63, 355, 350, 1073, 3, 473, 363, 50, 2, 373, 77, 3, 472, 18, 2577, 115, 1498, 1239, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [939, 88, 14, 269, 222, 18, 3, 31, 1, 1, 356, 8, 84, 2, 239, 3, 377, 18, 117, 1, 576, 268, 3, 8718, 201, 5613, 10, 7, 489, 1093, 795, 3, 31, 1, 310, 3, 177, 71, 6, 2146, 10, 3, 1451, 1, 3636, 8719], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1228, 1266, 176, 208, 83, 1, 1, 23, 6, 8720, 36, 113, 1, 113, 2847, 8721, 370, 36, 15, 1259, 47, 106, 1104, 11, 1475, 1510, 1266, 74, 542, 176, 3, 370, 207, 1, 113, 1420, 3, 968, 7, 243, 106, 1104, 1, 1, 6, 151, 517, 986, 11, 166, 2, 38, 3, 370, 8, 2, 1420, 1104, 7, 243, 106, 1104], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [340, 340], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [87, 41, 87, 445, 381, 87, 41, 87, 445, 381], [41, 41, 8722, 8723, 262, 4355], [2606, 225, 20, 9, 97, 43, 806, 4, 15, 47, 2606, 461, 4, 2063, 7, 15, 2190, 9, 716, 23, 1771, 9, 89, 8, 1196, 4, 1267, 53, 377, 806, 7, 4, 5390, 2850, 97, 43, 336, 169, 1693, 556, 7, 4, 5614, 3, 482, 273, 89, 8, 1196, 201, 4, 8724, 9, 6, 806, 53, 3, 2606, 225, 20, 1, 14, 1667, 166, 353, 3, 123], [1212, 359, 8, 578, 1212, 359, 8, 578, 1443, 294, 731, 52, 4, 15, 164, 3, 177, 37, 71, 78, 6, 27, 2, 312, 3, 102], [27, 2, 122, 2, 4356, 376, 2, 412, 376, 131, 14, 574, 23, 34, 2, 2851, 3202, 3, 3637, 603, 6, 75], [149, 359, 42, 8, 638, 30, 391, 186, 2188, 23, 6, 4, 797, 2, 207, 1, 1, 23, 83, 244, 30, 23, 57, 486, 24, 7, 5615, 30, 8725, 8726, 7, 65, 328, 44, 3, 627, 42, 4, 1194, 36, 190, 7, 42, 147, 2, 118, 2, 444, 10, 7, 878, 1272, 7, 598, 2, 166, 3, 73, 186, 341, 6, 11, 390, 63, 8, 614, 424, 3, 341, 18, 6, 10, 3, 24, 314, 1, 1, 169, 3462, 23, 7, 1909, 12, 167, 1926, 794, 66, 8727, 23, 6, 85, 6, 1361, 1358, 399, 3, 136, 4, 3, 52, 7, 68, 1378, 1448, 72, 983, 1552, 114, 10, 3, 3126, 284, 185, 91, 3, 399, 341, 18, 67, 21, 187, 8, 70, 3, 186, 341, 4, 3, 127, 696, 158, 3, 127, 7, 866, 1448, 983, 536, 70, 10, 3, 127, 7, 21, 399, 3, 186, 341, 2, 68, 3, 117, 428, 2, 366, 12, 21, 172, 294, 24, 314, 284, 246, 91, 186, 341, 18, 1, 1, 51, 1358, 1094, 3, 186, 116, 11, 72, 127, 21, 65, 2, 70, 10, 83, 100, 359, 11, 44, 438, 4, 23, 732, 21, 187, 8, 47, 42, 5616, 359, 411, 18, 23, 31, 53, 21, 65, 141, 601, 10, 11, 241, 116, 172, 67, 23, 6, 3, 648, 116, 38, 8728, 167, 1926, 18, 85, 63, 601, 10, 3100, 39, 8, 373, 983, 541, 116, 341, 6, 274, 4, 15, 23, 65, 2, 43, 1635, 1096, 2191, 6, 8729], [54, 34, 23, 438, 63, 5581, 12, 113, 7, 268, 158, 113, 21, 63, 268, 158, 536, 12, 113, 10, 1, 1, 12, 44, 852, 246, 38, 1027, 3, 52, 2, 38, 456, 1095, 3, 462, 2, 113, 433, 151, 6, 4357, 536, 7, 1537, 1, 1, 39, 35, 14, 386, 68, 3, 312, 6, 45, 68, 21, 6, 45, 39, 35, 14, 386, 424, 23, 438, 187, 8, 1044, 1, 1, 1, 5617, 5618, 1, 431, 549, 1907, 1, 8730, 1051, 7, 431, 1764, 1, 1, 1, 24, 203, 1807, 986, 90, 1277, 730, 24, 144], [123, 1452, 3203, 287, 37, 484, 89, 8, 1196, 191, 217, 462, 82, 129, 8731, 8732, 27, 2, 504, 528, 3203, 287, 51, 137, 3, 191, 217, 464, 163, 37, 71, 2327, 51, 1426, 2, 528, 3, 3203, 82, 791, 20, 287, 36, 3, 191, 217, 422, 1192, 1149, 36, 993, 191, 217, 462, 82, 791, 412, 452, 367, 493, 367, 387, 917, 3203, 586, 2, 493, 675, 195, 8733, 481, 33, 610, 764, 484, 89, 8, 1196], [13, 25, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 1145, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 8734, 372, 56, 8735, 8736, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [27, 2, 509, 464, 27, 2, 509, 464], [378, 25, 3, 13, 11, 8737, 8738, 10, 165, 86, 52, 587, 527, 201, 54, 13, 2577, 11, 3, 86, 4, 33, 174], [27, 2, 100, 580, 27, 2, 100, 580], [74, 893, 771, 74, 407, 400, 10, 73, 148], [740, 8, 84, 2, 121, 158, 3, 24, 5619, 565, 107, 110, 355, 268, 121, 36, 161, 149, 568, 5620, 5621, 4, 1047, 8739, 8740, 1736, 44, 180, 248, 2, 121, 4, 10, 3, 5619, 565, 107, 116, 67, 268, 71, 44, 3, 107, 63, 8, 4, 200, 425, 3, 107, 180, 63, 4156, 7, 180, 6, 4156, 3, 391, 107, 307], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [15, 26, 13, 25, 15, 26, 13, 25], [210, 30, 41, 8, 545, 210, 30, 41, 8, 545], [15, 26, 13, 25, 15, 26, 13, 25], [41, 8, 45, 546, 41, 8, 45, 546, 7, 984], [939, 88, 41, 3492, 545, 47, 8741, 8742, 63, 4358, 7, 44, 58, 133, 63, 365, 21, 63, 1601, 8743, 67, 696, 2, 1695, 746, 5622, 659, 36, 76, 1, 425, 44, 41, 507, 1520, 4, 2003, 1042, 5623, 1130, 218, 609, 2, 1300, 36, 1300, 1, 2337, 7, 1923, 88, 690, 736, 187, 8, 50, 1, 5622, 99, 1171, 80, 68, 180, 65, 143, 210, 30, 1744, 62, 2514, 4, 88], [338, 13, 25, 338, 13, 25], [31, 30, 41, 7, 76, 31, 30, 41, 7, 76], [110, 2185, 100, 33, 76, 110, 2185, 100, 33, 76], [27, 2, 100, 915, 4, 82, 20, 82, 20, 6, 1452, 440, 4, 8744, 1149, 7, 82, 20, 1803, 10, 5624, 82, 20, 21, 6, 1806, 454], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [2592, 489, 76, 27, 2, 118, 10, 17, 194, 110, 63, 2592, 489, 76, 12, 393, 172, 49, 27, 2, 95, 251, 4, 192, 17, 194], [705, 8, 45, 56, 8745, 8746, 182, 213, 130, 155, 204, 117, 107, 214, 146, 80, 116, 99, 8, 3204, 3, 1129, 18, 33, 694], [25, 224, 11, 8747, 8748, 137, 13, 125, 20, 13, 25, 3], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 3205, 591, 346, 110, 1910, 44, 33, 15, 3205, 591, 447, 649, 2, 43, 1326, 11, 241, 709, 99, 54, 23, 969, 662, 2, 33, 527, 30, 83, 1959, 4359, 18, 29, 236, 11, 21], [27, 2, 29, 15, 27, 2, 29, 15, 28, 1376, 11, 72, 31, 433, 390, 27, 2, 29, 15, 169, 408, 59, 351, 274, 372, 425, 4, 13, 125, 20, 7, 21, 8, 323, 143, 15, 460, 426, 408, 56, 201, 429, 202, 675, 7, 605, 14, 50, 114, 30, 3, 28, 12, 3, 1131, 10, 23, 53, 390, 219, 2, 29, 15, 26, 15, 160, 376, 28, 59, 8749, 73, 28, 59, 8750], [27, 2, 818, 672, 27, 2, 818, 672], [41, 8, 1458, 41, 8, 1458], [1266, 8751, 8, 45, 56, 8752, 8753, 182, 213, 130, 155, 204, 117, 107, 214, 146, 111, 169, 72, 8754, 606, 97, 176, 10, 1266, 74, 849, 3, 37, 71, 6, 1856, 37, 103, 2852, 39, 35, 583, 80, 295], [339, 121, 1120, 941, 533, 339, 121, 1120, 941, 533], [151, 986, 2, 29, 162, 20, 116, 36, 235, 108, 56, 8755, 8756, 182, 213, 130, 155, 204, 117, 107, 214, 146, 6, 151, 986, 2, 29, 162, 20, 116, 36, 235, 108], [27, 2, 100, 580, 27, 2, 100, 580], [24, 314, 8, 1827, 136, 36, 15, 110, 38, 567, 24, 314, 460, 44, 42, 8, 1827, 136, 36, 15, 425, 2, 410, 614, 284, 428, 350, 546, 7, 284, 42, 23, 6, 5625, 1529, 3206, 2192, 2, 199, 24, 314], [76, 76, 76, 6, 45], [15, 26, 64, 77, 15, 26, 64, 77], [15, 26, 7, 15, 26, 13, 25, 15, 26, 7, 15, 26, 13, 25], [309, 1114, 1115, 31, 309, 1114, 1115, 31], [25, 224, 11, 5626, 5627, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 5626, 5627, 137, 13, 125, 20, 13, 25, 3], [14, 2, 946, 3, 28, 2193, 2, 2502, 1037, 26, 273, 42, 562, 28, 2377, 14, 2, 946, 3, 28, 2193, 2, 2502, 1037, 26, 273, 42, 562, 28, 2377], [76, 6, 8, 45, 76, 6, 8, 45], [166, 113, 113, 605, 8, 699, 113, 605, 40, 7, 3580, 42, 8, 699, 1, 1, 39, 91, 2370, 3207, 10, 3, 3205, 18, 3, 78, 67, 284, 42, 8, 2853], [74, 123, 31, 136, 1266, 370, 958, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 83, 90, 1266, 370, 958, 2064, 2378, 1, 1, 1154, 665, 18, 3, 123, 3, 1266, 176, 140, 99, 8, 122, 2, 15, 91, 163, 5628, 11, 684, 268, 1, 1, 103, 18, 481, 8, 303, 462, 1443, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 1266, 176, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 74, 6, 84, 2, 176, 79, 205, 242, 1296, 207, 21, 89, 8, 1242, 2, 43, 115, 58, 74, 31, 1, 1, 68, 15, 52, 184, 52, 26, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 9, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [25, 3, 13, 11, 5629, 5630, 10, 165, 587, 527, 25, 3, 13, 11, 5629, 5630, 10, 165, 587, 527], [646, 254, 346, 646, 254, 346], [3179, 132, 4, 15, 26, 3179, 132, 4, 15, 26], [27, 2, 1273, 3, 128, 126, 62, 88, 23, 6, 3, 37, 136, 1, 1, 68, 44, 542, 50, 129, 104, 295, 101, 7, 1109, 261, 724, 222, 1, 688, 59, 8757, 5631, 8758, 1, 341, 7, 116, 49, 1, 919, 8759, 490, 4259, 1, 28, 31, 103, 28, 8, 4, 675, 1, 1, 1, 135], [851, 851], [1283, 1334, 132, 7, 13, 25, 5632, 5632, 1283, 1334, 13, 25, 4, 15], [58, 94, 190, 190, 48, 531, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [41, 320, 384, 5633, 37, 110, 49, 27, 2, 320, 36, 161, 57, 330, 9, 193, 98, 2, 372, 593, 91, 464, 18, 37], [27, 2, 515, 41, 27, 2, 515, 41], [1266, 74, 6, 8, 45, 169, 241, 1094, 55, 51, 335, 2, 176, 10, 1266, 23, 37, 71, 8760, 1, 14, 91, 3, 167, 554, 71, 1, 21, 649, 44, 3, 123, 6, 3, 15, 133], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [193, 30, 1857, 1554, 1555, 193, 30, 1857, 1554, 1555], [193, 30, 3488, 1554, 1555, 193, 30, 3488, 1554, 1555], [1460, 20, 217, 95, 173, 208, 21, 101, 1, 1, 1460, 20, 1960, 89, 8, 100, 143, 225, 418, 1, 1, 14, 736], [113, 15, 37, 164, 23, 37, 51, 250, 2, 176, 1443, 137, 1266, 958, 4, 731, 5634, 5635, 49, 3480, 3481, 243, 8761, 16, 411, 44, 6, 15, 37, 71], [28, 8762, 230, 1045, 28, 8763, 6, 230, 11, 1045, 29, 14, 132], [255, 5636, 1298, 4360, 5637, 255, 460, 5638, 5639, 5640, 5641, 255, 5636, 1298, 4360, 5637, 255, 460, 5638, 5639, 5640, 5641], [555, 93, 39, 8, 43, 543, 555, 93, 39, 8, 43, 543], [2706, 140, 33, 431, 549, 140, 2706, 140, 13, 65, 64, 14, 25, 207, 39, 95, 4, 1636, 1637, 149, 120, 1338], [90, 382, 4361, 52, 8764, 1461, 1699, 435, 62, 804, 1517, 940, 4362, 1199, 2379, 7, 318, 61, 431, 65, 260, 241, 933, 804, 364, 185, 35, 14, 663, 7, 386], [1266, 74, 31, 370, 74, 8, 45, 37, 133, 2, 15, 185, 8, 43, 912, 1, 1, 138, 1, 1, 1, 1, 1, 1, 1, 37, 4, 377, 1, 1443, 42, 8, 164, 727], [1266, 74, 31, 370, 74, 8, 45, 37, 133, 2, 15, 185, 8, 43, 912, 1, 74, 56, 8765, 1, 1, 443, 271, 42, 952, 90, 190, 183, 290, 179, 210], [1260, 2154, 98, 82, 20, 10, 52, 110, 350, 82, 20, 7, 2154, 98, 83, 5642, 67, 51, 413, 2, 436, 864, 21, 6, 1118, 37, 71, 14, 91, 71, 537, 96], [15, 88, 4289, 2835, 28, 8766, 31, 51, 45, 30, 15, 88, 28, 8767, 4289, 8768, 14, 353, 62, 386, 288, 2, 353], [1266, 74, 31, 370, 74, 8, 45, 37, 133, 2, 15, 185, 8, 43, 912, 1, 74, 56, 3638, 3638, 1, 1, 1443, 42, 8, 164, 727], [236, 2260, 252, 15, 426, 80, 4, 88, 236, 2260, 252, 15, 426, 80, 4, 88, 4, 15, 6, 837], [110, 38, 141, 64, 77, 18, 33, 460, 14, 50, 80, 25, 33, 13, 46, 6, 8769, 13, 63, 8770], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [32, 64, 4, 226, 32, 64, 4, 226], [1437, 1568, 51, 110, 121, 41, 3, 142, 183, 1007, 2, 122, 2, 3, 128, 126, 12, 3, 179, 4178, 44, 8771, 95, 4, 30, 104, 191, 62, 5571, 32, 51, 110, 322, 33, 57, 196, 7, 13, 67, 680, 1147], [110, 97, 29, 3, 3208, 171, 63, 84, 2, 29, 23, 389, 54, 23, 171, 11, 3, 188, 5643, 110, 97, 29, 3, 3208, 171, 63, 84, 2, 29, 23, 389, 54, 23, 171, 11, 3, 188, 5643], [74, 1743, 303, 5644, 1054, 55, 295, 101, 1, 1, 3, 74, 1743, 219, 303, 5644, 1, 1, 433, 106, 118, 1208, 11, 3, 74, 1, 1, 1382, 35, 2, 295, 581], [8, 84, 2, 122, 2, 76, 8, 84, 2, 122, 2, 76], [27, 312, 3585, 2607, 473, 111, 21, 101, 308, 14, 525, 53, 47, 27, 2, 735, 3585, 2607, 473, 4, 1946, 52, 311, 2, 680, 4, 3, 52, 47, 38, 2028, 2607, 11, 113, 7, 113, 473, 4, 1946, 52, 67, 680, 806, 96, 163, 104, 797, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 1322, 1530, 572, 2589, 57], [2854, 2065, 21, 282, 1514, 471, 3092, 317, 5645, 5646, 2854, 2065, 21, 282, 1514, 471, 3092, 317, 5645, 5646], [25, 13, 365, 483, 83, 14, 525, 80, 4, 1483, 33, 15, 13, 28, 56, 8772, 450], [8773, 4, 2, 106, 302, 1170, 1022, 14, 326, 3, 377, 11, 3, 31, 537], [58, 94, 4215, 856, 618, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [168, 194, 1373, 2, 122, 17, 194, 8774, 456, 110, 250, 2, 122, 2, 168, 194, 67, 201, 118, 1, 1, 104, 908, 6, 2054, 1, 1105, 77, 1254], [15, 13, 119, 30, 13, 125, 20, 37, 13, 119, 22, 376, 13, 6, 5647, 111, 533, 1, 248, 4363, 4364, 2, 712, 33, 13, 36, 15, 30, 13, 125, 20, 13, 120, 21, 2134, 134, 1, 1, 37, 71, 1, 37, 13, 119, 22, 376, 13, 6, 5647, 14, 335, 257, 137, 661, 13, 22, 2, 1752, 1072, 25, 1, 1, 14, 25, 33, 13], [211, 2020, 477, 3639, 3640, 211, 2020, 477, 3639, 3640], [39, 8, 122, 2, 3, 374, 78, 192, 166, 76, 110, 137, 3, 166, 76, 53, 3, 1174, 197, 6, 75, 4299, 4300, 39, 1273, 3, 374, 767, 39, 122, 2, 83, 165, 2855, 10, 3, 58, 38, 163, 3, 260, 20, 639, 7, 4365, 2, 3, 767, 38, 1837, 33, 348, 7, 1484], [60, 94, 190, 3201, 856, 618, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [193, 30, 47, 3, 74, 1732, 6, 8, 511, 327, 4366, 4367, 193, 30, 47, 3, 74, 1732, 6, 8, 511, 327, 4366, 4367], [1208, 3641, 11, 1629, 74, 1208, 3641, 11, 1629, 74], [661, 193, 14, 920, 2608, 30, 628, 839, 24, 925, 606, 1768, 2, 607, 661, 193, 14, 920, 2608, 30, 628, 839, 24, 925, 606, 1768, 2, 607], [322, 7, 1158, 3, 229, 54, 2, 322, 7, 1158, 3, 229, 834, 8775, 1394, 478, 5359, 358, 495, 3137, 302, 5360, 506], [76, 8, 164, 95, 4, 56, 8776, 182, 213, 130, 155, 204, 117, 107, 214, 146, 76, 8, 164, 95, 4], [110, 1031, 38, 5648, 18, 2856, 4, 204, 355, 91, 2857, 110, 1031, 38, 5648, 18, 2856, 4, 204, 355, 91, 2857], [293, 40, 6, 659, 4, 2858, 293, 40, 6, 659, 4, 2858], [76, 133, 31, 111, 1, 97, 29, 3, 76, 51, 413, 10, 100, 73, 908, 680, 1147], [15, 13, 7, 13, 3209, 491, 33, 28, 59, 6, 8777, 7, 1118, 13, 6, 361, 67, 1171, 27, 2, 46, 2, 3, 15, 102, 35, 2, 25, 3, 13, 7, 320, 3, 179], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [361, 1669, 1111, 6, 75, 112, 105, 10, 361, 1111, 6, 75, 112, 105, 10], [206, 28, 5649, 5650, 5651, 2, 202, 675, 2859, 206, 28, 5649, 5650, 5651, 2, 202, 675, 2859, 647, 28, 8778, 8779, 8780, 36, 23, 226], [190, 190, 1011, 10, 190, 2849, 1117, 277, 696, 75, 12, 49, 105, 190, 190, 1011, 10, 190, 2849, 1117, 277, 696, 75, 12, 49, 105], [25, 13, 15, 26, 533, 14, 308, 25, 13, 11, 5652, 30, 15, 26], [5653, 13, 5653, 13], [87, 259, 10, 3, 115, 8, 87, 6, 8, 1063, 66, 3, 213, 516, 169, 175, 836, 2766], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [132, 15, 26, 533, 1, 1, 14, 132, 3, 15, 26, 11, 8781], [87, 8, 134, 208, 21, 101, 1, 1, 33, 87, 8, 134, 1, 1, 135], [9, 76, 29, 363, 50, 111, 1730, 51, 250, 2, 29, 76, 177, 71, 664, 49, 27, 2, 118, 4, 66, 1603, 413, 581, 363, 50, 411, 49, 987, 8782, 8783, 36, 240, 24, 174, 30, 33, 101, 310, 7, 54, 29, 2, 131, 36, 24, 1069, 1498, 8784, 8785, 2718, 2737, 24, 203, 730, 24, 144], [190, 39, 122, 137, 76, 2609, 86, 57, 190, 39, 122, 2, 3, 437, 58, 137, 3, 76, 133, 21, 1067, 599, 334, 47, 351, 355, 3, 167, 104, 8786, 63, 1254, 486, 3, 86, 295, 180, 833, 23, 67, 172, 169, 397, 47, 39, 1273, 15, 7, 3, 605, 4, 161, 113, 769, 22, 14, 398, 23, 161, 415, 694, 39, 8, 134], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1031, 122, 2, 3, 58, 235, 1556, 5654, 183, 8, 699, 92, 69, 387, 1031, 122, 2, 3, 58, 235, 1556, 5654, 183, 8, 699, 92, 69, 8787, 3, 58, 133, 609, 991, 3, 52, 248, 2, 122, 164, 1601, 1769], [168, 20, 700, 125, 4174, 3, 168, 20, 700, 125, 4174, 571, 373, 2860, 8788, 1, 35, 2185, 1754, 134, 30, 444, 265, 23], [78, 40, 63, 75, 306, 195, 4368, 769, 40, 24, 24, 144, 1, 1, 2753, 40, 24, 24, 144, 30, 2018, 18, 131, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 1, 769, 1497, 11, 1, 3097, 331, 268, 805, 2298], [27, 2, 1241, 473, 53, 332, 4331, 27, 2, 1241, 473, 53, 332, 4331, 14, 326, 3, 37, 71, 53, 163, 173, 14, 50, 2180, 23, 31, 510], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [76, 31, 55, 1, 1, 33, 76, 347, 6, 8, 545, 27, 2, 122], [97, 170, 41, 57, 111, 21, 101, 1, 1, 1, 112, 576, 33, 148, 63, 27, 2, 170, 41, 181, 185, 201, 199, 422, 181, 172, 1, 1, 143, 967, 2, 353, 23, 6, 2610, 1, 1, 1, 135], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [148, 97, 122, 1060, 340, 58, 148, 97, 122, 1060, 340, 58], [78, 40, 6, 8, 4369, 306, 195, 4368, 769, 40, 1, 1, 2753, 40, 24, 24, 144, 30, 2018, 18, 131, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 1, 769, 1497, 11, 1, 3097, 331, 268, 805, 2298], [14, 50, 11, 76, 133, 335, 2, 1376, 67, 39, 1346, 56, 8789, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 50, 11, 76, 133, 335, 2, 1376, 67, 39, 1346], [382, 148, 99, 8, 1933, 267, 2, 3, 155, 56, 8790, 8791, 182, 213, 130, 155, 204, 117, 107, 214, 630, 8792, 146, 111, 38, 382, 877, 184, 199, 36, 490, 174, 7, 2315, 148, 99, 8, 1933, 267, 2, 3, 155, 39, 35, 525, 14], [939, 88, 41, 14, 269, 222, 18, 3, 31, 1, 41], [15, 26, 13, 533, 1, 1, 14, 25, 13, 11, 5440], [1545, 400, 111, 1, 1, 356, 250, 2, 211, 1545, 11, 914, 20, 205, 869, 30, 33, 79, 28, 56, 7, 13, 67, 38, 3, 177, 37, 71, 1, 1, 1, 135], [76, 8, 45, 11, 8793, 8794, 49, 5655, 5656, 837, 49, 5655, 5656, 2107, 98, 8795, 408, 56, 6, 8796, 49], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [768, 40, 651, 12, 90, 6, 75, 112, 49, 768, 40, 651, 12, 90, 6, 75, 112, 49, 1, 1, 768, 75, 311, 2, 3, 61, 5657, 1, 114, 30, 3, 48, 522, 514, 3, 191, 655, 10], [40, 220, 474, 2861, 173, 10, 768, 40, 6, 3210, 40, 220, 474, 2861, 173, 10, 768, 40, 6, 3210], [40, 220, 474, 1227, 78, 10, 768, 40, 6, 435, 354, 40, 220, 474, 1227, 78, 10, 768, 40, 6, 435, 354], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1483, 18, 15, 13, 111, 1, 1, 102, 35, 2, 25, 33, 15, 13], [8797, 8798, 15, 32, 64, 14, 132, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [40, 220, 577, 238, 5658, 5659, 10, 768, 40, 6, 804, 3, 577, 238, 2342, 6, 260, 75, 233, 10, 40, 1, 220, 577, 238, 5658, 5659, 10, 768, 40, 6, 804, 1, 220, 577, 238, 409, 297, 78, 10, 768, 40, 6, 8799], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 189, 740, 4, 82, 20, 56, 8800, 8801, 57, 214, 146, 55, 38, 193, 30, 33, 82, 418, 21, 6, 1912, 2, 189, 73, 117], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [168, 20, 1772, 6, 8, 178, 1036, 6, 183, 8, 285, 3, 372, 1772, 63, 350, 10, 12, 49], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 124, 27, 2, 8802, 578, 1123, 37, 83, 81, 3642, 42, 1130, 62, 3643, 1, 1, 1, 5, 5, 22, 4, 5, 19, 12], [117, 460, 129, 302, 42, 8, 3211, 4, 88, 690, 55, 3, 31, 1091, 44, 38, 141, 5660, 2, 3145, 4, 88, 42, 8, 323, 98, 4, 88, 7, 356, 8, 614, 424, 91, 3, 167, 1926, 96, 8803, 8804, 149, 685, 3644, 101], [13, 8805, 102, 814, 1028, 49, 5661, 5662, 1142, 1143, 243, 102, 2, 25, 130, 445, 368, 13, 11, 208, 8806, 460, 233, 6, 499, 11, 28, 14, 263, 3, 177, 919, 137, 184, 35, 39, 132, 83, 460, 7, 280, 197, 966, 13, 11, 29, 1379, 83, 571, 36, 143, 165, 115, 267, 2, 3, 24, 58, 11, 1012, 66, 1012, 3412, 10, 288, 2, 199, 23, 48, 413, 10, 3, 177, 229, 270, 80, 253, 68, 35, 54, 316, 136, 62, 967, 10, 23, 1314, 450], [13, 25, 102, 13, 25, 102], [417, 20, 2862, 37, 252, 57, 167, 554, 18, 37, 8807, 1359, 3146, 697, 2307, 37, 514, 205, 869, 44, 47, 321, 184, 330, 2, 106, 30, 3, 117, 916, 1262, 21, 330, 2, 106, 30, 205, 242, 102, 7, 137, 3, 2380, 117, 2490, 467, 3, 1366, 53, 3, 2611, 117, 1, 1, 23, 2862, 6, 11, 666, 7, 8, 2611, 127], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [15, 13, 25, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 814, 1028, 1, 111, 1028, 1, 1028, 1, 111, 814, 1, 814, 1028], [40, 369, 6, 272, 198, 375, 198, 178, 387, 40, 369, 6, 272, 198, 375, 198, 178, 387], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [577, 1341, 2852, 55, 1, 1, 514, 3, 5663, 318, 2340, 5664, 66, 8808, 21, 63, 1890, 44, 4, 302, 18, 225, 418, 163, 577, 1341, 63, 661, 36, 3, 197, 399, 4, 3, 462, 3645, 1, 1, 102, 35, 2, 366, 158, 3, 709, 11, 532, 758, 7, 1740, 2478, 424, 626, 577, 1341, 63, 8809, 4, 225, 20, 577, 7, 8, 53, 332, 462, 3645, 1, 1, 183, 270, 166, 253, 1459, 21, 63, 52, 37], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [235, 108, 453, 3194, 3195, 1, 124, 1, 291, 292, 1, 1711, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 1, 1, 50, 564, 1, 14, 509, 33, 73, 383, 77, 18, 1627], [14, 25, 11, 72, 15, 65, 64, 5665, 5666, 1], [27, 2, 91, 245, 184, 42, 2310, 467, 540, 27, 2, 91, 245, 184, 42, 2310, 467, 540], [15, 26, 13, 25, 15, 26, 13, 25], [58, 94, 361, 4, 8810, 8811, 1569, 361, 1601, 48, 6, 531, 75, 112, 49, 12, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 12, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [339, 121, 533, 1120, 941, 339, 121, 533, 1120, 941], [214, 736, 1173, 652, 641, 133, 208, 491, 102, 35, 2, 5667, 214, 736, 568, 2, 1173, 652, 641, 652, 641, 133, 53, 21, 8, 45, 8812, 8813, 1604, 120, 1358], [121, 997, 7, 351, 659, 121, 997, 7, 351, 659], [431, 549, 140, 13, 25, 3194, 3195, 1, 124, 1, 8814, 8815, 291, 292, 1, 243, 33, 29, 2, 431, 549, 140, 6, 230, 1, 1, 1, 50, 564, 1, 14, 114, 3646, 32, 4, 431, 549, 140], [431, 549, 140, 13, 25, 431, 549, 140, 13, 25, 3194, 3195, 124, 5668, 3409, 291, 292, 243, 2054, 170, 18, 1854, 312, 50, 564, 14, 114, 5668, 32, 4, 431, 549, 140, 7, 525, 11, 392, 10], [15, 26, 13, 25, 15, 26, 13, 25], [90, 113, 24, 17, 90, 90, 113, 3154, 865, 3575, 29, 277, 434, 6, 75, 112, 105, 10, 90, 113, 24, 17, 90, 90, 113, 3154, 865, 3575, 29, 277, 434, 6, 75, 112, 105, 10], [25, 224, 11, 3647, 3648, 137, 13, 125, 20, 13, 25, 25, 224, 11, 3647, 3648, 137, 13, 125, 20, 13, 25], [32, 351, 64, 32, 351, 64], [320, 181, 36, 82, 20, 542, 134, 849, 112, 21, 8, 285, 2, 320, 181, 11, 3, 28, 222, 2275, 849, 181, 196, 21, 304, 2, 134, 389, 1, 44, 733, 6, 343, 5669, 11, 3, 591, 28, 2, 129, 3, 2066, 10, 210, 1566, 899, 36, 82, 20, 573, 2333, 82, 20, 1, 91, 772, 2275, 7, 37, 71], [209, 41, 14, 269, 222, 18, 3, 31, 1, 209, 41], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 106, 1228, 11, 472, 208, 21, 1, 1, 363, 50, 2, 114, 472, 47, 27, 2, 106, 1228, 11, 23, 472], [5, 645, 20, 260, 20, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 260, 20, 409, 315, 22, 4, 5, 19, 12], [15, 26, 32, 533, 14, 132, 7, 25, 13, 11, 8816, 183, 320, 13, 2, 8817, 8818], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [61, 94, 82, 1826, 432, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [32, 6, 562, 533, 3, 32, 8819, 6, 562, 185, 35, 946, 3, 32, 341, 2, 5670, 5671, 6, 2001, 6, 5670, 5671], [32, 6, 64, 32, 6, 64], [13, 125, 20, 111, 83, 14, 25, 33, 13, 11, 26, 11, 33, 1125, 37, 316, 467, 420, 28, 56, 8820, 135], [13, 25, 137, 13, 125, 20, 13, 25, 137, 13, 125, 20], [768, 90, 1669, 651, 12, 90, 6, 75, 112, 124, 105, 10, 768, 90, 1669, 651, 12, 90, 6, 75, 112, 124, 105, 10], [27, 2, 504, 333, 367, 27, 2, 504, 333, 367], [27, 2, 500, 241, 287, 4, 128, 126, 27, 2, 500, 241, 287, 4, 128, 126], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 95, 4, 2, 82, 20, 27, 2, 95, 4, 2, 82, 20], [886, 167, 10, 170, 98, 886, 167, 10, 170, 98], [27, 2, 392, 4, 2, 87, 381, 27, 2, 392, 4, 2, 87, 381], [41, 8, 405, 98, 1223, 10, 590, 167, 41, 8, 405, 98, 1223, 10, 590, 167], [76, 31, 214, 146, 97, 118, 76, 2, 122, 10, 33, 142], [82, 20, 7, 1003, 31, 8821, 8822, 486, 4, 11, 72, 31, 433, 180, 63, 27, 2, 515, 82, 20, 7, 27, 2, 1682, 98, 822, 455], [27, 2, 239, 475, 316, 467, 540, 27, 2, 239, 475, 316, 467, 540], [3438, 1710, 31, 110, 524, 1608, 1009, 98, 3438, 978, 1710, 11, 87, 497, 38, 430, 830, 355, 8, 614, 85, 1825, 219, 2, 43, 588, 129], [132, 32, 57, 4, 793, 86, 3, 28, 5672, 5673, 59, 5674, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 28, 5672, 5673, 59, 5674], [5675, 5676, 486, 53, 180, 1049, 2, 2381, 2, 1142, 1143, 5675, 5676, 486, 53, 180, 1049, 2, 2381, 2, 1142, 1143], [27, 2, 95, 4, 2, 431, 549, 140, 27, 2, 95, 4, 2, 431, 549, 140], [121, 36, 5677, 1810, 159, 18, 1091, 2, 88, 121, 36, 5677, 1810, 159, 18, 1091, 2, 88, 31, 129, 329, 1286, 1091, 36, 41, 2, 88, 558, 8, 1286, 421, 302, 18, 1091, 558, 1385, 1325, 1091, 36, 41, 7, 3139, 4, 88], [54, 23, 833, 110, 526, 38, 29, 2, 96, 8823, 35, 755, 38, 3, 1003, 3649, 217, 2, 421, 7, 436, 3, 8824, 455, 14, 129, 3, 237, 7, 100, 8825, 34, 11, 3, 115, 295, 159, 68, 35, 106, 8, 38, 3, 1003, 3649, 217, 2, 1264, 68, 35, 38, 3, 1003, 3649, 217, 413, 10, 3, 170, 864, 7, 1961, 83, 1671, 413, 10, 130, 174, 159, 35, 264, 91, 3, 130, 1003, 3649, 217, 1636, 1637, 149, 120, 1338], [27, 2, 100, 82, 20, 220, 27, 2, 100, 82, 20, 220], [82, 20, 31, 82, 20, 31], [191, 217, 441, 37, 71, 191, 217, 441, 37, 71], [27, 2, 322, 3650, 222, 48, 8, 590, 27, 2, 322, 3650, 222], [404, 20, 31, 97, 1089, 2, 189, 73, 5678, 36, 3, 404, 20, 3125, 404, 20, 31, 97, 1089, 2, 189, 73, 5678, 36, 3, 404, 20, 3125, 3, 594, 2, 189, 73, 3115, 1291, 649, 2, 43, 346, 47, 428, 1098, 2, 189, 1992, 1744, 11, 78, 8826, 7, 2351, 80, 1664, 3651, 8827, 39, 1089, 2, 189, 3115, 1291, 10, 34, 143, 316], [217, 6, 290, 210, 30, 333, 1806, 217, 6, 290, 210, 30, 333, 1806], [1545, 205, 242, 400, 146, 54, 50, 1452, 205, 242, 220, 39, 612, 509, 272, 33, 167, 7, 50, 80, 77], [5679, 5680, 24, 794, 86, 453, 5679, 5680, 24, 794, 86, 453], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 29, 5681, 1422, 239, 5682, 27, 2, 29, 5681, 1422, 239, 5682], [88, 1771, 57, 8828, 31, 51, 1426, 2, 57, 1771, 177, 3, 1238, 1107, 322, 3, 57, 196, 7, 1822, 320, 57, 7, 3, 347, 1128, 2028, 339, 276, 54, 2, 8829, 1186, 26, 7, 3, 57, 65, 8, 141, 331, 1, 1, 14, 485, 7, 391, 510], [15, 26, 32, 132, 15, 26, 32, 132], [13, 4370, 4371, 14, 1040, 33, 224, 8830, 8831, 33, 13, 8832, 135, 750], [415, 1295, 6, 27, 2, 818, 167, 30, 318, 24, 694, 514, 5683, 1110, 121, 415, 1295, 6, 27, 2, 818, 167, 30, 318, 24, 694, 514, 5683, 1110, 121, 1, 1, 37, 71, 83, 24, 195, 2289, 71, 44, 633, 829, 265, 4372, 22, 112, 3, 5684, 65, 1126, 3, 381, 516, 1243, 180, 63, 273, 4, 3, 381, 47, 3652, 2, 591, 3, 381, 746, 7, 243, 1539, 67, 3, 31, 1093, 465, 2194], [32, 132, 32, 132], [949, 403, 949, 403], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [54, 8833, 20, 1475, 492, 158, 333, 146, 55, 2289, 10, 492, 615, 44, 21, 285, 2, 1475, 492, 158, 333, 106, 35, 253, 448, 39, 129, 4, 24, 2, 118, 23, 1227, 20], [213, 31, 705, 1114, 1115, 31, 1387, 31, 213, 31, 705, 1114, 1115, 31, 1387, 31], [27, 2, 392, 4, 2, 87, 27, 2, 392, 4, 2, 87], [15, 811, 127, 1144, 31, 14, 366, 12, 2612, 127, 1378, 8834, 8835, 1918, 127, 36, 623, 7, 3, 1144, 696, 36, 115, 2, 673, 323, 1378, 274, 3, 1144, 1378, 187, 8, 119, 1144, 14, 485, 285, 31, 2118, 8836, 700, 31], [205, 242, 205, 242], [34, 70, 965, 34, 70, 965], [333, 790, 5685, 333, 790, 5685], [27, 2, 70, 3650, 222, 48, 8, 590, 27, 2, 70, 3650, 222, 48, 8, 590], [15, 26, 13, 25, 15, 26, 13, 25], [87, 964, 365, 334, 1, 1, 39, 35, 14, 525, 80, 30, 164, 3, 87, 964, 251, 98, 7, 327, 11, 80, 21, 997, 98, 389, 67, 9, 345, 38, 3, 765], [87, 31, 508, 484, 37, 87, 31, 508, 484, 37], [1207, 131, 70, 8837, 8838, 124, 5686, 5687, 8839, 8840, 8841, 8842, 8843, 8844, 3653, 3654, 5688, 5689, 1207, 8845, 111, 3212, 38, 4373, 3, 1207, 131, 748, 88, 7, 3655, 11, 7, 3, 131, 42, 4, 500, 99, 373, 3, 447, 10, 2, 70, 3, 1318, 8846, 88, 3655, 371, 18, 8847, 4374, 18, 8848, 20, 4374, 18, 2613, 4374, 18, 344, 417, 570], [27, 2, 29, 76, 27, 2, 29, 76], [162, 20, 705, 31, 162, 20, 705, 31], [37, 79, 1962, 23, 586, 18, 79, 6, 8, 4375, 37, 79, 1962, 23, 586, 18, 79, 6, 8, 4375, 11, 569, 1162, 180, 99, 43, 4, 90, 129], [395, 31, 4, 87, 395, 31, 4, 87], [14, 729, 29, 11, 137, 74, 4, 361, 174, 14, 729, 29, 11, 137, 74, 4, 361, 174, 1, 1, 14, 622, 3, 377], [14, 2, 269, 29, 2, 4376, 1037, 28, 2377, 14, 2, 269, 29, 2, 4376, 1037, 4376, 26, 160, 11, 3, 28, 2377, 1, 180, 54, 23, 29, 2, 100, 1152, 11, 8849, 8850, 7], [82, 20, 400, 82, 20, 400], [41, 8, 405, 41, 8, 405], [339, 121, 1120, 941, 533, 339, 121, 1120, 941, 533], [15, 26, 32, 132, 15, 26, 32, 132], [27, 2, 91, 623, 4, 15, 26, 27, 2, 91, 623, 4, 15, 26], [3656, 3657, 13, 125, 20, 3656, 3657, 13, 125, 20], [39, 29, 2, 162, 20, 705, 208, 50, 564, 39, 29, 2, 162, 20, 705, 91, 96, 37, 3, 347, 35, 42, 250, 2, 1273, 6, 8, 178, 72, 318, 78, 37, 63, 2309, 3658, 3659, 1276, 2559, 685], [340, 8, 45, 4377, 8, 590, 340, 8, 45, 4377, 8, 590], [2195, 4, 5690, 3, 8851, 10, 3, 3130, 86, 51, 121, 1101, 4, 558, 648, 4070, 10, 3, 142, 167, 7, 201, 532, 3213, 1709, 3, 86, 2140, 3455, 1, 3, 116, 748, 6, 1272, 3213], [28, 120, 120, 8852, 4378, 2, 3660, 3661, 1231, 1118, 3214, 440, 2, 1741, 7, 1741, 264, 43, 260, 2, 4379, 7, 8, 3651, 265, 3662, 1363, 988, 264, 43, 260, 23, 201, 942, 2, 915, 357, 399, 310, 91, 163, 1210], [121, 36, 69, 393, 88, 121, 36, 69, 393, 88], [205, 242, 205, 242], [1608, 751, 2, 115, 2338, 573, 733, 2382, 62, 1005, 1608, 751, 10, 115, 2338, 573, 733, 2382, 62, 1005, 115, 4, 1939, 12, 15, 2863], [110, 39, 118, 1105, 4, 41, 3, 123, 244, 1272, 124, 8853, 90, 87, 6, 45], [15, 29, 31, 8, 723, 11, 482, 2614, 4, 26, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 8854, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 2614, 1, 1, 896, 3, 31, 356, 8, 723, 11, 482, 2614, 4, 26, 14, 326, 163, 3, 37, 71, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28, 4308, 4309], [14, 25, 3, 13, 14, 25, 3, 13], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [115, 2615, 2864, 2615, 252, 8855, 886, 167], [88, 2760, 110, 38, 828, 1914, 161, 672, 41, 2, 3, 88, 140, 606, 106, 8, 38, 3, 3145, 7, 236, 704, 8856, 5691, 53, 1534, 4, 3, 3215, 554, 96, 207, 3, 211, 187, 8, 421, 54, 3, 78, 943, 1704, 18, 977, 245, 1524, 7, 3, 88, 220, 1183, 11, 33, 4, 68, 44, 6, 8, 391, 7, 35, 1688, 21, 2, 43, 517, 31, 270, 80, 253, 1, 1, 1, 1, 1, 23, 6, 8, 86, 31, 3663, 6, 2267, 62, 4, 31, 14, 485, 3, 3215, 1926, 331, 4, 7, 386], [58, 94, 1252, 82, 1826, 48, 6, 75, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [211, 1956, 47, 477, 4380, 4381, 211, 1956, 47, 477, 4380, 4381], [211, 74, 47, 477, 2374, 2375, 211, 74, 47, 477, 2374, 2375], [303, 182, 1222, 260, 4382, 14, 421, 83, 275, 498, 96, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 74, 56, 410, 416, 8857, 682, 1915, 8858, 1154, 665, 18, 3, 123, 385, 8859, 303, 260, 4382, 37, 71, 8860, 322, 182, 2383, 103, 18, 481, 8, 303, 1222, 260, 4382, 577, 10, 4383, 5692, 2384, 955, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 15, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 21, 1370, 67, 30, 385, 182, 3664, 68, 15, 52, 184, 52, 26, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 9, 248, 4, 517, 15, 74, 31, 8861, 3, 179, 85, 74, 39, 21, 43, 945, 454, 8, 1135, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34, 173, 163, 8862, 5693, 1275, 7, 171, 1388, 501], [308, 211, 140, 5694, 652, 7, 5695, 308, 211, 140, 5694, 652, 7, 5695], [211, 74, 47, 3549, 3550, 211, 74, 47, 3549, 3550], [54, 175, 5696, 3216, 255, 1126, 1608, 55, 54, 175, 5696, 3216, 255, 1126, 1608], [168, 20, 8863, 343, 2153, 4, 3, 190, 2330, 2806, 891, 39, 9, 345, 43, 670, 1856, 684, 511, 9, 8864, 39, 43, 670, 4, 168, 20, 684, 1856, 684], [8865, 1128, 8, 249, 55, 12, 83, 1, 1, 1244, 8, 285, 2, 189, 3, 186, 263, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [309, 8866, 46, 31, 8, 84, 46, 2, 309, 580, 14, 326, 3, 464, 11, 3, 179, 7, 308, 50, 704, 23, 31], [2865, 7, 5697, 542, 134, 8867, 2865, 7, 5697, 542, 134, 546, 624, 21, 1687, 343, 278, 62, 21, 1803, 75, 151, 42, 37, 891, 83, 3, 116, 1, 168, 20, 183, 1687, 343, 278], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1437, 131, 578, 865, 89, 8, 134, 1437, 131, 578, 89, 8, 134], [32, 64, 4, 226, 32, 64, 4, 226], [60, 94, 190, 24, 168, 998, 3201, 856, 618, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [41, 6, 8, 45, 365, 334, 1, 1, 1, 576, 244, 41, 4, 3, 334, 1, 1, 1, 53, 541, 334, 21, 244, 343, 1166, 67, 51, 8868, 2, 100, 181, 268, 1993, 167, 248, 567, 73, 142, 2140, 67, 680, 274, 1, 1, 1, 207, 5698, 2, 134, 192, 128, 126, 7, 356, 987, 23, 722, 172, 53, 613, 411, 310, 330, 3, 179, 5699, 764, 30, 41, 170, 63, 1166, 7, 44, 21, 9, 2604, 2, 633, 72, 57, 62, 721, 197, 1, 1, 1, 14, 38, 8869, 158, 23, 1314, 411, 45, 192, 128, 126, 8870, 8871, 7, 3217, 75], [1902, 101, 3, 8872, 8873, 2385, 65, 706, 257, 14, 715, 1902, 101, 3, 5, 2385, 12, 3, 1773, 220, 65, 706, 257, 14, 715, 53, 754, 53, 285, 8874, 8875], [113, 113, 168, 20, 52, 6, 327, 343, 2153, 2067, 193, 2, 322, 3, 4384, 3598, 113, 113, 168, 20, 52, 6, 327, 343, 2153, 2067, 193, 2, 322, 3, 4384, 3598], [2386, 5, 551, 302, 636, 238, 349, 5, 56, 551, 302, 636, 238, 349], [457, 445, 1536, 592, 724, 2387, 89, 8, 134, 457, 445, 1536, 592, 724, 2387, 89, 8, 134], [1616, 398, 4, 190, 14, 206, 1586, 1194, 10, 3, 728, 434, 4, 190, 2, 1088, 29, 2, 3, 652, 641, 58, 6, 8, 8876, 514, 4385, 18, 3, 76, 1159, 1, 1, 24, 168, 998, 190, 3104, 1337, 277, 1, 1895, 1, 138, 1194, 1, 3665, 1, 586, 327, 3666, 1900, 3666], [54, 29, 55, 54, 72, 29, 2, 57, 196, 2, 2388, 53, 7, 51, 275, 14, 269, 80, 3, 29, 11, 96, 779, 3667, 196, 8877, 8878, 8879, 1392, 8880, 8881, 4325, 1392, 30, 135], [15, 26, 32, 64, 15, 26, 32, 64], [1770, 1960, 777, 42, 2389, 1770, 1960, 777, 42, 2389, 30, 37, 1, 1951, 3, 32, 6, 64, 1, 8882, 122, 2, 603, 4231, 1770, 22], [5, 551, 577, 238, 686, 636, 22, 4, 5, 19, 12, 5, 551, 577, 238, 686, 636, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [34, 70, 10, 258, 34, 70, 10, 258], [110, 97, 1551, 501, 297, 131, 363, 353, 662, 8883, 8884, 1064, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [27, 2, 211, 88, 11, 41, 27, 2, 211, 88, 11, 41], [34, 70, 10, 258, 34, 70, 10, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 447, 1428, 393, 1963, 2, 463, 41, 447, 1428, 393, 1963, 2, 463], [13, 25, 2, 46, 2, 459, 13, 25, 2, 46, 2, 459], [54, 29, 2, 218, 55, 1, 1, 54, 29, 2, 994, 218, 4, 728, 254, 18, 90], [82, 20, 347, 8, 405, 82, 20, 347, 8, 405], [548, 206, 4, 790, 164, 1157, 548, 206, 4, 790, 164, 1157], [32, 64, 77, 226, 32, 64, 77, 226], [149, 127, 1014, 186, 341, 2265, 3, 127, 357, 3620, 11, 483, 2546, 424, 8885, 8886], [15, 26, 32, 132, 15, 26, 32, 132], [60, 94, 90, 856, 618, 6, 75, 112, 124, 640, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 2196, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [14, 39, 35, 132, 3, 28, 2377, 10, 3, 1037, 26, 257, 14, 39, 35, 132, 3, 28, 2377, 10, 3, 1037, 26, 257, 1, 649, 6, 273, 64, 151, 201, 4, 26, 11, 83, 165, 1319, 6, 494], [102, 101, 1151, 54, 2, 29, 115, 44, 89, 8, 38, 87], [1545, 205, 242, 400, 1545, 205, 242, 400], [119, 4, 1130, 1301, 1042, 4, 41, 2, 1300, 119, 4, 1130, 1301, 1042, 4, 41, 2, 1300], [15, 5700, 51, 405, 377, 4, 1221, 15, 5700, 51, 405, 377, 4, 1221], [457, 457, 206, 28, 2, 3, 2522, 226, 159, 51, 95, 4, 2, 457, 7, 1961, 24, 1536, 3, 835, 1493, 4161, 98], [15, 26, 13, 25, 15, 26, 13, 25], [209, 690, 8, 2804, 4, 41, 209, 690, 8, 2804, 4, 41], [31, 30, 41, 809, 7, 87, 11, 191, 1897, 1898, 8887, 110, 63, 290, 210, 405, 41, 7, 87, 11, 191, 7, 2053, 77, 2, 115, 368, 2, 663, 10, 23, 31], [27, 2, 46, 2, 15, 7, 417, 20, 27, 2, 46, 2, 15, 7, 417, 20], [34, 70, 965, 34, 70, 965], [472, 275, 66, 8888, 990, 21, 101, 1, 14, 189, 472, 11, 432, 310, 389, 284, 3101, 489, 116], [400, 18, 87, 400, 18, 87], [32, 64, 32, 64], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [3149, 245, 42, 8, 164, 331, 1768, 1262, 3, 2785, 54, 2034, 12, 10, 3, 3149, 151, 42, 567, 8889, 8, 45, 53, 263, 514, 3, 94, 10, 567, 2785, 805, 423, 609, 330, 2, 8890, 532, 44, 43, 3, 732, 30, 3, 3149], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1365, 28, 5701, 4386, 2, 572, 159, 8891, 8892, 1365, 28, 5701, 4386, 2, 572, 159, 8893, 8894], [140, 2, 633, 3, 1065, 36, 3, 2488, 1296, 140, 2, 633, 3, 1065, 36, 3, 2488, 1296], [27, 2, 239, 1488, 765, 4, 41, 27, 2, 239, 1488, 765, 4, 41], [339, 121, 339, 121], [87, 121, 1539, 3045, 98, 4, 1083, 121, 62, 5702, 77, 514, 443, 985, 87, 121, 1539, 3045, 98, 4, 1083, 121, 62, 5702, 77, 514, 443, 985], [9, 46, 615, 4, 15, 169, 535, 1658, 21, 6, 8, 285, 2, 95, 4, 2, 15, 28, 56, 8895], [13, 4370, 4371, 14, 1040, 104, 13, 7, 32, 1, 1, 1, 1284, 604], [8896, 89, 8, 134, 87, 89, 8, 95, 80, 10, 51, 878, 10, 3, 142, 86], [28, 32, 8, 4, 2332, 341, 27, 2, 46, 2, 15, 26, 37, 28, 32, 8, 4, 2332, 341], [210, 55, 21, 101, 1, 1, 11, 241, 709, 51, 465, 2, 241, 18, 3, 1069, 351, 3, 71, 8897, 97, 100, 241, 218, 21, 664, 3, 71, 96, 1, 1, 99, 1663, 104, 295], [128, 126, 1318, 11, 88, 55, 14, 206, 28, 8898, 4387, 4388, 2, 3, 128, 126, 1318, 11, 88], [32, 6, 64, 77, 226, 32, 32, 6, 64, 77, 226, 32], [8, 84, 2, 176, 36, 162, 20, 8, 84, 2, 176, 36, 162, 20], [25, 224, 11, 8899, 8900, 137, 13, 125, 20, 13, 25, 3], [548, 11, 130, 333, 6, 9, 345, 178, 548, 11, 130, 333, 6, 9, 345, 178, 1, 163, 35, 39, 326, 3, 263], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 8901, 896, 3, 31, 132, 13, 397], [76, 29, 2, 4386, 142, 56, 1111, 146, 54, 76, 8902, 2, 29, 254, 36, 51, 49, 2194, 36, 174], [3668, 3669, 8903, 341, 58, 218, 29, 110, 1493, 268, 29, 2, 8904, 8905, 568, 218, 10, 3, 58, 254, 187, 118, 29, 2, 408, 128, 126, 254, 67, 8, 408, 58, 218, 253, 408, 58, 218, 6, 433, 390, 1071, 1239, 18, 136, 1754, 54, 2, 38, 29, 2, 23, 218, 2, 29, 408, 481, 183, 356, 8, 614, 424, 3, 3433, 356, 496, 704, 408, 128, 126, 128, 126, 42, 4, 738, 1439, 5703, 5704, 8906, 2157, 128, 126, 11, 191, 1106, 3668, 3669, 1244, 4, 5705, 8907, 2545, 5706, 5707, 5708, 5251, 2518, 8908, 8909, 72, 5604, 8910, 8911, 2543, 8912, 3218, 5705, 2059, 4175, 128, 126, 11, 191, 1106, 3668, 3669, 5703, 8913, 8914, 8915, 8916, 2545, 3634, 128, 126, 11, 191, 1106, 3668, 3669, 4348], [620, 342, 144, 247, 5709, 1047, 2866, 2867, 2868, 620, 342, 144, 247, 5709, 1047, 2866, 2867, 2868], [97, 29, 623, 4, 128, 126, 2066, 110, 828, 268, 73, 348, 11, 134, 7, 1606, 128, 126, 2066, 2, 29, 33, 623, 11, 33, 462, 1044, 52, 169, 8917, 3, 48, 248, 2, 100, 3, 623, 21, 1435, 80, 72, 37, 1612, 97, 29, 715, 2066, 7, 335, 257, 38, 248, 1801, 443, 420, 14, 525], [27, 2, 818, 167, 56, 8918, 8919, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 27, 2, 818, 33, 167, 10, 87], [97, 206, 73, 117, 4, 82, 20, 220, 208, 24, 50, 1, 424, 97, 1365, 73, 117, 4, 82, 20, 220, 23, 942, 169, 1452, 73, 70, 220], [660, 780, 473, 4389, 24, 473, 6, 8, 8920, 660, 503, 6, 21, 411, 3, 349, 6, 8921, 12, 5710, 332, 115, 7, 3, 127, 6, 201, 11, 115, 264, 284, 119, 3, 127, 2, 115], [27, 2, 410, 521, 4, 324, 171, 56, 5711, 5712, 213, 130, 155, 204, 57, 214, 146, 1256, 4, 3, 593, 63, 250, 2, 995, 33, 324, 171, 4, 67, 21, 99, 8, 270, 80, 119, 3, 570, 314, 151, 63, 8922, 2, 43, 34, 67, 4, 11, 23, 7, 63, 355, 3670, 288, 44, 63, 601, 38, 8, 268, 143, 2848, 10, 23, 31], [13, 4370, 4371, 14, 1040, 33, 224, 1, 1, 1, 1284, 604], [1274, 78, 8, 178, 4, 160, 26, 37, 71, 200, 8, 178, 1274, 78, 8, 178, 4, 160, 26, 37, 71, 200, 8, 178], [82, 20, 7, 417, 20, 37, 82, 20, 7, 417, 20, 37, 27, 2, 91, 117, 222], [1195, 32, 602, 77, 3671, 1195, 32, 602, 77, 3671], [33, 279, 140, 99, 8, 729, 80, 2, 1202, 98, 121, 62, 410, 121, 33, 279, 140, 99, 8, 729, 80, 2, 1202, 98, 121, 62, 410, 121, 86], [424, 186, 1001, 428, 350, 11, 344, 673, 36, 113, 2, 113, 51, 10, 113, 47, 38, 117, 127, 55, 185, 35, 14, 114, 424, 186, 1001, 428, 350, 11, 344, 673, 36, 113, 2, 113, 51, 10, 113, 47, 38, 117, 127, 11, 673, 7, 9, 127, 10, 113, 47, 428, 2169, 11, 23, 349, 7, 746, 21, 3427, 10, 113, 536, 261, 472, 11, 24, 1487, 879, 113, 428, 350, 330, 2, 1382, 113, 101, 11, 8923, 7, 1665, 472, 11, 161, 127, 458], [909, 18, 1624, 440, 2, 26, 374, 3672, 5713, 909, 18, 1624, 440, 2, 26, 374, 3672, 5713], [403, 393, 34, 233, 34, 9, 5714, 90, 34, 9, 5714, 90], [340, 8, 45, 4, 1110, 719, 18, 90, 2869, 340, 8, 45, 4, 1110, 719, 18, 90, 2869], [571, 115, 10, 3, 5715, 5716, 3632, 89, 8, 170, 571, 115, 10, 3, 5715, 5716, 3632, 89, 8, 170], [378, 606, 2, 419, 378, 606, 2, 419], [8, 84, 2, 91, 245, 4, 3, 41, 8, 84, 2, 91, 245, 4, 3, 41], [1929, 655, 110, 38, 5717, 2616, 10, 227, 10, 4, 33, 82, 20, 67, 21, 6, 323, 201, 2616, 4, 33, 1929], [8, 84, 2, 29, 553, 192, 419, 7, 241, 2818, 42, 346, 51, 100, 4, 1858, 28, 2593, 84, 2, 29, 3, 171, 192, 419, 2069, 430, 1858, 2, 29, 3, 440, 192, 8924, 24, 144, 1, 169, 329, 3, 28, 2593, 84, 2, 100, 3, 440, 192, 1858, 53, 613, 411, 241, 2818, 2280, 1, 7, 3, 28, 6, 8, 84, 2, 122, 2, 76, 192, 1858, 1, 1, 23, 6, 8, 442, 2, 191, 1899, 1954, 101, 15, 3655, 872, 23, 6, 829, 442, 2, 3, 213, 1009], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [877, 831, 31, 877, 831, 31, 831, 1383, 6, 2150, 2853, 1696, 7, 8, 1613, 28, 65, 2, 43, 2150, 267, 2, 3, 845, 1919, 1336, 1474, 831, 857, 86], [58, 94, 596, 687, 2748, 48, 6, 531, 75, 6, 75, 112, 49, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [9, 553, 1735, 56, 2520, 182, 213, 130, 155, 204, 117, 107, 214, 146, 9, 553, 1735, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2520, 111, 39, 95, 4, 2, 553, 23, 6, 3, 37, 71, 118, 921, 922, 55, 2520, 5718, 37, 37, 921, 922, 2, 118, 4390, 4391, 18, 104, 31, 246, 265, 2, 509, 366, 12, 104, 142, 294, 487, 14, 413, 10, 2520, 59, 1342, 2520, 8925, 35, 273, 151, 921, 922, 16, 2520, 91, 3, 8926, 921, 922, 270, 80, 509, 167, 554, 18, 21, 921, 922, 99, 574, 2, 15, 872, 3655, 284, 99, 366, 158, 21], [193, 30, 3673, 18, 2143, 176, 2867, 2868, 193, 30, 3673, 18, 2143, 176, 2867, 2868], [205, 869, 3, 57, 319, 205, 869, 3, 57, 319], [620, 342, 1859, 148, 2617, 2618, 620, 342, 1859, 148, 2617, 2618], [32, 132, 47, 823, 32, 132, 47, 823], [88, 167, 2384, 326, 189, 239, 208, 83, 1, 1, 51, 493, 4, 88, 2384, 326, 3, 569, 167, 6, 8927, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3674, 42, 1095, 158, 3, 403, 21, 6, 5719, 1912, 11, 80, 2, 189, 239], [1003, 6, 8, 45, 1003, 6, 8, 45], [620, 342, 47, 823, 950, 951, 620, 342, 47, 823, 950, 951], [5720, 1755, 317, 406, 55, 39, 35, 2165, 66, 12, 161, 8928, 3, 317, 18, 3, 5720, 1755, 6, 406, 8929, 8930, 6, 3, 129, 568], [123, 329, 811, 3, 13, 55, 1, 1, 329, 250, 2, 119, 3, 13, 10], [173, 1949, 50, 275, 111, 1, 1, 54, 2, 320, 1136, 18, 348, 2, 161, 117, 10, 307, 935, 3, 173, 889, 6, 976, 308, 270, 80, 253, 288, 2, 320, 3, 179], [31, 30, 1365, 555, 810, 128, 126, 31, 50, 564, 1, 1, 310, 248, 2, 100, 206, 555, 93, 810, 229, 2, 322, 73, 632, 222, 329, 987, 207, 351, 37, 71, 167, 554, 6, 163, 11, 104, 797, 1, 1, 14, 465, 294, 3, 179, 7, 106, 3, 807, 207, 44, 39, 322, 3, 222, 4, 555, 810, 143, 3219, 14, 1662, 251], [206, 33, 56, 2, 572, 1937, 208, 491, 1823, 611, 206, 33, 56, 2, 572, 1937, 96, 1156], [205, 242, 205, 242], [363, 132, 79, 32, 18, 28, 5721, 363, 132, 79, 32, 18, 28, 5721], [87, 11, 191, 89, 8, 134, 55, 1, 1, 54, 104, 50, 1, 1, 33, 87, 11, 191, 89, 8, 134, 4, 148, 1, 176, 167, 6, 163, 1, 1, 487, 1, 59, 630, 656, 1, 13], [224, 76, 417, 20, 500, 111, 1, 1, 1089, 2, 38, 123, 30, 637, 158, 76, 417, 20, 449, 1, 1, 97, 29, 3, 119, 33, 13, 53, 54, 2, 43, 10, 76, 1, 1, 143, 1758, 246, 43, 3127, 2610], [32, 64, 4, 226, 32, 64, 4, 226], [279, 140, 95, 10, 31, 23, 6, 79, 70, 31, 28, 8931, 6, 27, 2, 95, 10, 279, 140, 11, 3, 177, 709, 1472, 22, 411, 3, 194, 2390, 65, 1167, 3, 2619, 4392, 91, 377, 53, 613], [28, 4343, 26, 205, 242, 52, 55, 101, 1, 1, 97, 46, 2, 3, 26, 205, 242, 52, 185, 35, 14, 114, 1, 1, 1, 135], [47, 54, 73, 870, 115, 1384, 3, 142, 870, 36, 3, 115, 1384, 65, 8932], [40, 1668, 1302, 1029, 277, 48, 78, 68, 1130, 21, 6, 1130, 112], [8933, 361, 1302, 1029, 277, 527, 48, 78, 6, 1130, 21, 6, 1130, 112], [27, 2, 95, 158, 87, 484, 37, 27, 2, 95, 158, 87, 484, 37], [25, 33, 26, 13, 102, 35, 2, 25, 33, 26, 13, 7, 320, 21, 1379], [47, 42, 346, 1804, 4, 15, 112, 1425, 21, 649, 44, 3, 660, 36, 168, 20, 2, 15, 6, 706, 62, 2195, 112, 1425, 738, 116, 14, 3, 377], [73, 367, 3220, 323, 4, 302, 51, 897, 73, 367, 4, 82, 20, 47, 243, 697, 1713, 8934, 44, 5722, 2033, 323, 1, 1, 65, 612, 543, 261, 828, 1, 1, 284, 243, 323, 4, 26, 26, 7, 26], [58, 94, 3451, 4393, 856, 1159, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [220, 466, 116, 165, 58, 1123, 134, 2015, 14, 269, 222, 4, 3, 1380, 96, 68, 443, 529, 42, 1447, 14, 199, 3, 1166, 34, 1380, 4, 3, 1249, 218, 1, 48, 271, 190, 1, 28, 59, 226, 1, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 1, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 83, 15, 26, 6, 343, 343, 278, 21, 1428, 2477, 2, 1962, 347, 1, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 1, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 1, 42, 165, 195, 697, 23, 1, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078], [61, 94, 190, 494, 2815, 24, 1285, 76, 60, 7, 605, 323, 75, 112, 49, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 6, 8, 45, 11, 443, 28, 15, 6, 8, 45, 11, 443, 28, 1, 78, 40, 8, 2753], [307, 168, 20, 190, 511, 8, 285, 2, 735, 359, 797, 34, 9, 241, 131, 1482, 433, 952, 8, 83, 1, 1, 268, 567, 440, 44, 21, 6, 511, 8, 285, 2, 735, 421, 359, 272, 359, 42, 511, 346], [9, 131, 4394, 748, 168, 20, 7, 15, 4, 190, 9, 131, 4394, 748, 168, 20, 7, 15, 4, 190], [9, 58, 29, 110, 201, 38, 29, 2, 3, 318, 531, 254, 10, 33, 5723, 303, 507, 67, 9, 29, 2, 3, 74, 78], [13, 25, 14, 25, 3, 13, 11, 3, 96, 28, 4, 994, 205, 242, 4, 15, 28, 8935], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [419, 1114, 1115, 31, 111, 1, 1, 49, 27, 2, 509, 309, 520, 1013, 4, 419, 53, 21, 6, 323, 3, 96, 806, 37, 14, 106, 3, 807, 1, 1, 23, 37, 429, 98, 516, 169, 638, 3, 1114, 1115], [123, 4, 555, 810, 55, 1, 1, 151, 6, 123, 329, 897, 73, 555, 810, 7, 51, 47, 413, 10, 504, 7, 606, 765, 1, 14, 353], [29, 2, 667, 181, 767, 5724, 5725, 55, 14, 90, 29, 206, 711, 8936, 8937, 2, 667, 181, 767, 5724, 5725, 308, 106, 3, 807, 30], [3, 1181, 3675, 317, 6, 260, 435, 233, 10, 40, 14, 663, 3, 1181, 3675, 317, 6, 260, 435, 233, 10, 40, 14, 663], [41, 28, 351, 88, 7, 41, 1593, 576, 1, 41, 394, 1256, 63, 376, 1, 172, 169, 3, 73, 394, 65, 141, 430, 2199, 30, 88, 1, 83, 33, 475, 118, 243, 1606, 541, 116, 1, 5726, 3, 2538, 4, 83, 1069], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [441, 1350, 6, 8, 430, 3490, 3491, 181, 1, 49, 1, 291, 292, 1, 15, 37, 130, 441, 1350, 6, 8, 430, 1, 1, 50, 564, 1, 1, 248, 2, 766, 1215, 2506, 53, 332, 163, 623, 181, 67, 3, 96, 71, 63, 806, 7, 185, 8, 100, 3, 447, 1, 14, 398, 3, 31, 510, 53, 47, 54, 2, 31, 3, 1215, 2506, 754, 1, 1, 1, 1, 1, 1, 1, 135], [15, 439, 233, 119, 23, 6, 4, 26], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [39, 118, 395, 87, 54, 21, 1008, 11, 381, 310, 56, 5727, 182, 213, 130, 155, 204, 117, 107, 214, 146, 307, 39, 118, 395, 87, 54, 21, 1008, 11, 381, 310], [40, 369, 686, 26, 131, 6, 272, 198, 375, 198, 178, 387, 40, 1, 1, 369, 686, 26, 131, 6, 272, 198, 375, 198, 178, 1, 369, 686, 26, 131, 6, 272, 198, 375, 198, 178, 387], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 100, 772, 10, 41, 27, 2, 100, 772, 10, 41], [29, 2, 78, 287, 5728, 2064, 110, 49, 3, 73, 113, 120, 12, 90, 1570, 54, 29, 2, 3, 78, 254, 5728, 2064, 600, 254, 7, 254, 3, 29, 264, 43, 2307, 2, 3, 1253, 113, 120, 8938, 8939], [27, 2, 70, 224, 27, 2, 70, 224], [768, 846, 651, 12, 90, 6, 75, 768, 846, 651, 12, 90, 6, 75, 112, 124, 105, 10], [378, 8, 84, 2, 46, 2, 79, 8, 84, 2, 46, 2, 79], [41, 6, 2536, 27, 2, 100, 997, 4, 12, 53, 18, 33, 218, 330, 8, 141, 399, 112, 2803, 77, 7, 248, 2, 118, 251, 4, 67, 21, 99, 8, 100], [52, 6, 3217, 75, 329, 578, 2183, 12, 113, 541, 3221, 748, 124, 7, 124, 52, 6, 3217, 75, 329, 578, 2183, 12, 113, 541, 3221, 748, 124, 7, 124, 1510, 21, 6, 30, 2046, 312, 7, 1510, 514, 3, 1228, 731, 20, 8940, 52, 312, 23, 65, 141, 601, 10, 11, 3, 372, 1731, 18, 1300, 3559, 3560, 6, 3, 731, 739, 514, 23, 1481, 7, 39, 43, 1376, 68, 256, 136, 6, 524, 151, 63, 34, 670, 372, 1948, 67, 63, 1167, 23, 334, 411, 3, 52, 63, 8, 278, 23, 334, 23, 201, 1147, 12, 1948], [15, 29, 31, 1077, 205, 4395, 851, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 205, 4395, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 1077, 205, 4395, 6, 524, 11, 2193, 205, 869, 4, 26, 14, 946, 23, 32, 11, 1300, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 1299, 87, 381, 765, 9, 345, 10, 41, 27, 2, 1299, 87, 381, 765, 9, 345, 10, 41], [34, 70, 10, 258, 34, 70, 10, 258], [926, 2817, 357, 1271, 77, 36, 547, 1755, 926, 2817, 357, 1271, 77, 36, 547, 1755, 1, 1, 149, 1638, 926, 2200, 44, 1061, 1157, 8941], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [497, 42, 1616, 2, 148, 7, 8, 10, 3, 279, 140, 86, 497, 42, 1616, 2, 148, 7, 8, 10, 3, 279, 140, 86, 86], [699, 2, 519, 240, 18, 24, 18, 90, 519, 377, 6, 3, 201, 1450, 178, 51, 54, 519, 14, 485, 7, 2200, 77, 424, 165, 519, 42, 8, 178, 1, 1, 63, 12, 24, 90, 7, 183, 3222, 9, 29, 178], [34, 70, 10, 258, 34, 70, 10, 258], [29, 2, 128, 126, 229, 29, 2, 128, 126, 229], [1365, 667, 812, 2, 41, 146, 3, 287, 11, 33, 667, 812, 2280, 36, 3, 1126, 943, 18, 33, 167], [8942, 1337, 287, 4, 40, 185, 35, 14, 114, 8943, 2, 206, 256, 198, 4, 40, 686, 8944, 1, 1, 5729, 872, 440, 42, 2389, 311, 2, 198, 31, 4, 3, 779, 3091, 852], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 8945, 482, 252, 3, 28, 219, 62, 63, 45, 30, 26, 896, 3, 31, 1220, 13, 2, 26, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [15, 26, 32, 132, 15, 26, 32, 132], [88, 206, 4, 6, 346, 88, 206, 4, 6, 346], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2592, 489, 76, 76, 63, 659, 514, 72, 977, 121], [87, 395, 8, 45, 87, 395, 8, 45], [209, 88, 690, 41, 31, 209, 88, 690, 41, 31], [664, 44, 1207, 173, 578, 6, 8, 45, 1666, 8946, 157, 7, 4396, 21, 664, 44, 3, 1207, 287, 357, 1260, 66, 161, 1529, 3206, 42, 8, 578, 14, 91, 3, 163, 95, 21, 664, 44, 3, 372, 116, 173, 63, 1320, 63, 10], [27, 2, 29, 143, 18, 3, 553, 204, 440, 110, 27, 2, 29, 143, 18, 3, 553, 204, 440, 356, 164, 2152, 7, 2152, 684, 14, 366, 158, 21], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [53, 754, 53, 106, 493, 875, 5730, 2717, 62, 875, 3223, 1300, 3, 24, 3439, 763, 118, 9, 131, 336, 129, 1, 146, 547, 89, 8, 468, 143, 1164, 53, 754, 53, 2839, 116, 5731, 5732, 8947, 2196, 6, 151, 257, 8948, 547, 31, 12, 3, 1127, 1, 54, 2, 189, 260, 2, 33, 4397, 125, 7, 118, 9, 149, 8949, 77, 53, 754, 53, 106, 493, 875, 5730, 2717, 62, 875, 3223, 1300, 3, 24, 3439, 763, 118, 9, 131, 336, 1, 38, 243, 8950, 547, 567, 420, 17, 1, 7, 516, 1837, 33, 115, 1, 1, 263, 31, 6, 307, 53, 38, 2, 1888, 485, 131, 1059, 334, 33, 116, 30, 4397, 125, 7, 54, 2, 1216, 4398, 18, 149, 131, 1, 1, 425, 30, 517, 2070, 454, 664, 2, 38, 179, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [620, 342, 5733, 247, 2136, 1, 1, 247, 255, 477, 5733, 247, 8951, 2621, 8952, 138, 1, 1504, 840, 4399], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 122, 2, 41, 36, 490, 58, 27, 2, 122, 2, 41, 36, 490, 58], [52, 286, 18, 78, 40, 6, 315, 257, 55, 1, 52, 286, 18, 78, 40, 6, 315, 257, 14, 114, 1, 47, 330, 3, 179, 31, 1162, 1311, 34, 203, 7, 1162, 1311, 34, 203, 1, 14, 1740, 7, 795, 3, 1206, 18, 3, 123, 7, 8, 201, 3, 518, 257, 7, 257, 1, 21, 6, 3, 1889, 314, 78], [27, 2, 100, 41, 27, 2, 100, 41], [74, 31, 186, 1001, 79, 10, 74, 3676, 3185, 7, 3676, 3185, 74, 31, 186, 1001, 79, 10, 74, 3676, 7, 3676, 1, 129, 1, 37, 71, 211, 407, 29, 6, 502, 329, 303, 79, 7, 15], [3, 171, 972, 18, 3, 3677, 2201, 2202, 42, 178, 2, 80, 110, 38, 29, 2, 3, 171, 7, 260, 20, 172, 716, 51, 465, 158, 3, 171, 972, 18, 3, 3677, 2201, 2202, 42, 178, 2, 80, 151, 42, 1190, 4, 3, 4397, 722, 4400, 44, 264, 729, 80, 2, 3548, 3, 171, 716, 284, 526, 468, 53, 178, 284, 355, 468, 339, 581, 6, 167, 554, 1, 1, 14, 622, 3, 377], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 129], [34, 1674, 98, 10, 258, 146, 38, 72, 100, 439, 102, 3678, 30, 814, 39, 47, 353, 23, 581], [5, 5734, 22, 4, 5, 19, 12, 5, 5734, 22, 4, 5, 19, 12], [8953, 381, 47, 54, 8954, 8955, 21, 190, 190, 11, 3, 4401, 18, 161, 1807, 5735, 1939, 381, 10, 3, 3679, 18, 3, 381, 6, 12, 1425], [27, 2, 29, 2, 553, 440, 27, 2, 29, 2, 553, 440], [60, 94, 76, 1159, 618, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 8956, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [57, 609, 31, 146, 2870, 3, 385, 864, 7, 4402, 98, 33, 181, 1149, 2, 544, 1096, 38, 2, 465, 158, 3, 490, 864, 7, 544, 36, 151], [28, 486, 2, 2381, 30, 5736, 5737, 1098, 28, 2, 320, 72, 57, 53, 10, 87, 180, 6, 8, 178, 28, 486, 2, 2381, 30, 5736, 5737, 1098, 28, 2, 320, 72, 57, 53, 10, 87, 180, 6, 8, 178], [79, 13, 25, 79, 13, 25], [1586, 941, 587, 59, 1586, 941, 587, 59], [142, 56, 55, 1, 47, 54, 73, 142, 56, 1, 200, 1018, 6, 8957], [32, 132, 32, 132], [1129, 210, 30, 82, 20, 52, 55, 2871, 343, 1282, 2, 2141, 489, 2590, 47, 42, 843, 5738, 18, 210, 30, 82, 20, 52, 14, 263, 3, 96, 1129, 8, 1180, 4, 8958, 127, 18, 8959, 1909, 11, 1765, 1129, 65, 2026, 8960, 135], [897, 72, 2270, 1214, 110, 38, 141, 45, 10, 897, 72, 2270, 1214, 7, 21, 542, 1089, 2, 43, 45, 350, 21, 67, 49, 8, 84, 2, 239, 3, 700, 107, 11, 23, 2270, 1214, 4, 865, 248, 2, 189, 72, 1239, 53, 613, 7, 21, 1219, 45, 624, 9, 860, 2270, 103, 11, 349, 63, 336, 62, 1605, 6, 3, 435, 39, 35, 14, 525, 80, 30, 23, 349, 6, 8961, 249, 7, 21, 219, 2, 598, 310, 129, 86, 107], [8, 84, 2, 410, 619, 497, 36, 2373, 86, 52, 8, 84, 2, 410, 619, 497, 36, 2373, 86, 52], [1811, 3063, 3064, 8962, 3, 74, 6, 1278, 193, 30, 3, 303, 14, 114, 3, 609, 1116, 3088], [2586, 611, 269, 124, 739, 1519, 2, 28, 8963, 113, 113, 52, 26, 331, 36, 33, 383], [58, 94, 48, 82, 1826, 1252, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [620, 342, 76, 2617, 2618, 620, 342, 76, 2617, 2618], [193, 30, 5739, 5740, 212, 193, 30, 5739, 5740, 212], [15, 26, 32, 132, 7, 13, 25, 11, 15, 26, 32, 132, 7, 13, 25, 11], [1252, 238, 880, 1252, 82, 20, 5741, 728, 10, 24, 168, 3680, 82, 1826, 856, 618, 24, 144, 6, 75, 1252, 238, 880, 1252, 82, 20, 5741, 728, 10, 24, 168, 3680, 82, 1826, 856, 618, 24, 144, 6, 75], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [123, 4, 41, 217, 603, 1286, 123, 4, 41, 217, 603, 1286], [130, 41, 31, 111, 101, 1, 1, 49, 27, 2, 118, 475, 3167, 514, 261, 116, 54, 2, 70, 3, 218, 2, 118, 3, 475, 1510, 21, 89, 8, 134, 265, 44, 454, 39, 35, 14, 366, 158, 23, 31], [606, 2, 174, 511, 151, 42, 451, 1200, 18, 174, 10, 33, 142, 430, 174, 4, 3, 771, 218, 7, 174, 4, 3, 771, 218, 1, 363, 544, 3, 376, 7, 736, 3, 73, 197], [15, 1953, 225, 20, 31, 473, 8964, 4344, 8965, 124, 8966, 8967, 5742, 5743, 8968, 8969, 8970, 8971, 3653, 3654, 8972, 8973, 8974, 8975, 243, 249, 917, 55, 14, 326, 3, 1297, 242, 473, 14, 43, 1631, 44, 3, 179, 1714, 123, 65, 1078, 10, 73, 968, 426, 3, 693, 917, 11, 673, 249, 426, 917, 3, 225, 20, 468, 3, 344, 973, 18, 166, 3, 2203, 763, 184, 468, 10, 3, 473, 107, 6, 11, 669, 14, 114, 3, 31, 1008, 3, 968, 6, 511, 2204, 4, 161, 432, 14, 91, 3, 96, 5744, 10, 3, 1253, 968, 36], [46, 6, 8, 285, 55, 1033, 14, 114, 424, 3, 2070, 8976, 6, 1098, 23, 1566, 413, 10, 9, 7, 276, 97, 95, 4, 1116, 2, 1511, 2352, 2020, 2352], [15, 28, 59, 7, 13, 8, 45, 208, 491, 1823, 1, 1, 611, 106, 3, 807, 704, 3, 1488, 1314, 71, 806, 6, 385, 28, 59, 7, 13, 1, 1, 1611, 7, 17, 1, 1, 1156], [185, 8, 397, 2, 15, 192, 76, 37, 71, 4, 600, 571, 26, 26, 1, 1, 674, 8, 2053, 37, 9, 133, 5745], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 189, 472, 36, 113, 2, 113, 10, 115, 18, 249, 47, 39, 8, 189, 14, 189, 472, 36, 113, 2, 113, 10, 115, 18, 249, 307, 731, 852, 890], [555, 2872, 8, 164, 331, 456, 111, 5746, 310, 350, 517, 555, 93, 67, 273, 3, 2872, 42, 8, 331, 456, 2, 3, 1295, 110, 39, 91, 3, 2872, 4, 3, 484, 302, 1738, 183, 616, 5747, 56, 6, 8, 1180, 4, 3, 484, 179, 942, 11, 3, 887, 93, 454, 102, 35, 2, 308, 398, 23, 31, 10, 305], [79, 13, 25, 79, 13, 25], [620, 342, 1263, 3218, 70, 950, 951, 620, 342, 1263, 3218, 70, 950, 951], [280, 47, 823, 950, 951, 280, 47, 823, 950, 951], [1550, 1462, 3, 2514, 55, 1, 1, 38, 268, 8977, 475, 207, 2032, 10, 631, 18, 3, 693, 34, 2055, 181, 163, 611, 509, 1944, 1477, 2, 1462, 261, 2514, 53, 38, 534, 495, 3, 34, 1, 1, 1, 1, 135], [25, 13, 208, 83, 185, 35, 14, 25, 13, 11, 8978, 8979, 8980, 662, 7, 270, 80, 253, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [31, 30, 82, 8981, 140, 55, 1, 1, 49, 8, 84, 2, 91, 765, 11, 897, 73, 117, 7, 73, 2873, 1129, 4, 3, 82, 20, 140, 14, 50, 80, 2, 353, 3, 31], [193, 30, 1090, 610, 535, 191, 5748, 208, 1033, 110, 97, 100, 3, 535, 191, 5748, 68, 110, 1822, 3, 798, 297, 192, 76, 534, 267, 276, 3, 177, 263, 1101, 14, 11, 104, 295], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 7, 88, 8, 164, 500, 41, 7, 88, 8, 164, 500], [32, 64, 4, 226, 32, 64, 4, 226], [3418, 295, 58, 442, 31, 55, 1, 1, 49, 8, 84, 2, 29, 15, 7, 165, 287, 294, 58, 1, 49, 843, 23, 123, 36, 887, 1162, 10, 636, 935, 3, 210, 42, 2071, 2, 437, 21, 101, 7, 164, 21, 321, 10, 732, 2, 732, 935, 1, 21, 6, 1278, 1239, 18, 8982, 1, 1, 3418, 8983, 2, 353, 3, 31, 1, 1, 96, 6, 3, 37, 71, 51, 248, 2, 95, 4, 11, 26, 1, 1, 1, 7, 669, 483, 51, 122, 2, 58, 49, 267, 2, 1838, 58, 54, 2, 119, 21, 2, 1060, 169, 23, 183, 49, 843, 193], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [238, 1034, 5749, 10, 5750, 5751, 6, 75, 112, 10, 238, 1034, 5749, 10, 5750, 5751, 6, 75, 112, 10], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [39, 29, 15, 66, 76, 21, 50, 39, 46, 15, 26, 36, 490, 66, 76, 30, 37, 71, 96, 39, 35, 50, 5752, 5753, 262, 1906, 120, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [5754, 1516, 6, 27, 2, 46, 2, 1045, 163, 3, 37, 464, 5754, 1516, 6, 27, 2, 46, 2, 1045, 163, 3, 37, 464, 1, 308, 106, 3, 807], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [1668, 1668, 6, 511, 1085, 343, 836, 590, 420, 11, 15, 56, 8984, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1668, 1668, 6, 511, 1085, 343, 836, 590, 420, 11, 15, 39, 35, 14, 366, 158, 23], [15, 111, 1, 1, 33, 15, 6, 327, 4992, 278, 7, 21, 1639, 2, 463, 1296, 7, 276, 8985, 80, 77, 30, 3, 96, 1, 1, 1, 450], [15, 343, 278, 1147, 541, 1948, 937, 12, 124, 56, 3559, 3560, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 343, 278, 1147, 541, 1948, 937, 12, 124], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [378, 1320, 1081, 5755, 299, 1134, 4403, 4404, 49, 291, 292, 814, 550, 1320, 1081, 5755, 299, 1134, 106, 8, 100, 91, 3, 163, 268, 1256, 310, 8986, 4403, 4404, 988, 2622, 1123, 1050, 71, 181, 124, 4403, 4404, 1320, 1081, 912, 302, 30, 3, 627, 54, 7, 39, 326, 10, 24, 144, 106, 35, 4272, 1715, 11, 2607, 359, 35, 39, 326, 33, 129, 222, 7, 3, 438, 302, 163], [835, 64, 11, 28, 59, 8987, 111, 50, 564, 101, 1, 1, 33, 835, 59, 64, 14, 525, 2, 132, 662], [34, 70, 10, 258, 34, 70, 10, 258], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [346, 8988, 8989, 4, 33, 101, 672, 347, 110, 49, 346, 197, 568, 36, 33, 1338, 101, 10, 3, 672, 347, 1636, 1637, 149, 120, 1338], [27, 2, 122, 2, 76, 329, 638, 224, 27, 2, 122, 2, 76, 329, 638, 224], [13, 562, 13, 562], [209, 88, 690, 37, 41, 1387, 209, 88, 690, 37, 41, 1387], [28, 1007, 88, 235, 297, 2, 43, 5756, 10, 235, 28, 1007, 88, 235, 297, 2, 43, 5756, 10, 235], [29, 502, 2, 128, 126, 110, 97, 29, 62, 465, 2, 5757, 4, 128, 126, 54, 2, 29, 23, 11, 529, 295, 497, 7, 475, 356, 290, 2, 660, 2, 165, 1066, 62, 995, 3, 497, 10, 2204, 329, 612, 1825, 43, 178, 2, 412, 11, 80, 1, 23, 6, 3, 71, 49, 164, 1, 1, 68, 23, 123, 2327, 129, 104, 295, 101, 7, 1109, 261, 724, 222, 1, 688, 59, 8990, 226, 1762, 8991, 1, 341, 7, 116, 124, 1, 28, 1, 31, 103, 28, 89, 8, 38, 1183], [54, 88, 543, 2, 41, 1964, 4, 130, 41, 11, 88, 944, 1303, 54, 88, 543, 2, 41, 1964, 4, 130, 41, 11, 88, 944, 1303], [61, 125, 403, 61, 125, 403], [378, 27, 2, 463, 128, 126, 48, 27, 2, 463, 128, 126, 48], [24, 490, 347, 8, 590, 135], [90, 80, 29, 2, 501, 5758, 674, 3224, 7, 961, 5759, 5760, 3224, 32, 5761, 5762, 124, 291, 292, 8992, 8993, 8994, 8995, 8996, 550, 218, 29, 34, 9, 14, 90, 80, 633, 201, 29, 2, 3, 177, 218, 501, 5758, 674, 3224, 7, 961, 5759, 5760, 3224, 32, 450], [846, 1302, 1029, 277, 409, 768, 846, 651, 12, 90, 6, 75, 112, 124, 105, 10, 846, 1302, 1029, 277, 409, 768, 846, 651, 12, 90, 6, 75, 112, 124, 105, 10], [27, 2, 463, 41, 27, 2, 463, 41], [128, 126, 8, 45, 78, 6, 2072, 1321, 128, 126, 8, 45, 78, 6, 2072, 1321], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 8997, 8998, 27, 2, 29, 88, 1799, 41], [119, 18, 1097, 10, 128, 126, 229, 119, 18, 1097, 10, 128, 126, 229], [4405, 5763, 10, 1087, 4405, 5763, 10, 1087], [39, 35, 14, 114, 2391, 5764, 1077, 5765, 1061, 3, 88, 37, 71, 51, 250, 2, 100, 3, 8999, 39, 35, 14, 114, 2391, 5764, 1077, 5765, 1061, 3, 88, 37, 71, 51, 250, 2, 100, 3, 1537, 2, 1214, 1022], [1071, 272, 333, 173, 38, 2283, 1071, 53, 72, 333, 2623, 272, 517, 173, 6, 151, 986, 2, 2713, 2, 532, 540, 1311], [403, 10, 88, 297, 403, 10, 88, 297], [74, 893, 3, 59, 74, 10, 3, 148], [64, 77, 18, 5766, 5767, 111, 151, 1, 1, 248, 811, 33, 13, 4, 3, 5766, 5767, 576, 1181, 9000, 9001, 160, 7, 169, 1125, 33, 376, 7, 73, 224, 3, 95, 4, 767, 3031, 5768, 98, 67, 187, 8, 270, 80, 95, 4, 5769, 5770, 77, 18, 21, 7, 21, 270, 80, 29, 3, 52, 1, 1, 310, 2351, 3, 376, 62, 73, 13, 99, 134, 38, 330, 23, 2326, 4, 3, 887, 7, 9002, 9003, 246, 132, 21, 11, 80, 1, 1, 39, 612, 50, 80, 118, 23, 1524], [9, 395, 10, 5771, 9, 395, 10, 5771], [79, 13, 25, 79, 13, 25], [60, 94, 596, 687, 596, 687, 76, 1159, 6, 75, 12, 124, 105, 10, 48, 6, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [210, 30, 28, 3681, 10, 40, 28, 3681, 1089, 2, 43, 4402, 98, 10, 23, 78, 7, 8, 897, 51, 250, 2, 663, 850, 20, 850, 31, 997, 1379, 3, 37, 71, 4, 3, 163, 464, 1, 1, 14, 663], [712, 318, 484, 11, 13, 125, 20, 59, 13, 120, 55, 53, 1690, 14, 525, 10, 9004, 3, 318, 484, 11, 13, 125, 20, 59, 13, 120, 20], [34, 5772, 10, 258, 34, 5772, 10, 258], [15, 26, 13, 25, 15, 26, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [307, 8, 84, 2, 818, 24, 1536, 131, 30, 415, 28, 146, 448, 39, 50, 80, 30, 128, 126, 210, 38, 667, 675, 7, 287, 10, 128, 126, 30, 72, 415, 28, 67, 21, 6, 4406, 80, 201, 35, 426, 3, 667, 30, 3225], [195, 12, 90, 42, 8, 496, 560, 415, 497, 195, 12, 90, 42, 8, 496, 560, 415, 497, 1, 1, 318, 1393, 2, 1393, 497, 42, 45, 7, 619, 497, 42, 45], [346, 57, 29, 110, 2033, 330, 29, 2, 3, 1707, 5773, 181, 767, 10, 41, 67, 21, 6, 9, 345, 178, 2, 80, 39, 23, 43, 243, 236, 98, 9005, 9006], [132, 7, 25, 13, 28, 2377, 355, 2, 1544, 35, 44, 28, 2377, 649, 65, 562, 3, 13, 4, 26, 26, 26, 1, 47, 1431, 2205, 1703, 39, 35, 183, 25, 3, 13], [41, 1223, 10, 578, 41, 1223, 10, 578], [15, 1313, 6, 346, 46, 615, 11, 2874, 2875, 15, 1313, 6, 346, 46, 615, 11, 2874, 2875], [2874, 2875, 486, 11, 15, 32, 132, 2874, 2875, 486, 11, 15, 32, 132], [79, 5774, 707, 79, 5774, 707], [70, 225, 20, 481, 36, 302, 11, 149, 676, 7, 30, 3, 190, 174, 1044, 3, 1640, 225, 20, 74, 5775, 351, 970, 3200, 584, 66, 5776, 36, 15, 2067, 2607, 18, 225, 418, 63, 534, 9007, 67, 151, 42, 888, 481, 3682, 44, 106, 8, 38, 143, 629, 989, 12, 83, 91, 1937, 163, 1, 1, 68, 72, 70, 6, 588, 10, 3, 888, 192, 2614, 3, 391, 629, 103, 1061, 456, 543, 1641, 47, 54, 2, 38, 2130, 70, 588, 355, 465, 2, 119, 1042, 7, 504, 207, 44, 3, 346, 4407, 118, 543, 7, 2190, 2, 3, 1424, 74, 2206, 30, 1442, 629, 1336, 43, 9008, 3, 302, 261, 42, 365, 7, 9, 354, 6, 275, 1, 1, 1, 1429, 1, 1, 68, 3, 2130, 70, 6, 588, 14, 526, 106, 21, 143, 143, 2392, 888, 5, 420, 7, 263, 3, 2190, 481, 36, 15, 4408, 3, 302, 18, 2206, 163, 1336, 183, 38, 481, 30, 629, 625, 2, 165, 958, 467, 5775, 261, 2206, 42, 391, 1, 1275, 1076, 716, 246, 54, 2, 38, 302, 18, 83, 2206, 433, 3, 629, 172, 246, 118, 1014, 53, 3, 117, 1336, 118, 2514, 62, 5777, 11, 3, 179, 47, 54, 2, 4409, 3036, 261, 888, 481, 30, 629, 201, 172, 1014, 11, 2340, 2478, 47, 54, 2, 118, 3, 176, 9009, 53, 754, 53, 285, 14, 50, 2, 295, 23, 102, 53, 754, 53, 285, 53, 241, 740, 118, 9010, 30, 385, 5777, 1, 1, 68, 35, 38, 498, 526, 9011, 2, 129, 80], [1521, 148, 99, 8, 878, 10, 1521, 148, 99, 8, 878, 10], [15, 26, 13, 25, 15, 26, 13, 25], [462, 125, 916, 926, 2817, 2876, 389, 2055, 1, 1, 1, 1, 1, 1229, 169, 1229, 1, 1, 1, 1, 1, 1, 135], [110, 268, 72, 37, 51, 250, 2, 95, 4, 2, 106, 33, 309, 11, 2624, 37, 268, 530, 161, 915, 701, 104, 95, 4, 871, 304, 2, 29, 3, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675], [57, 196, 65, 141, 2207, 230, 36, 867, 772, 14, 647, 3, 996, 57, 196, 65, 141, 2207, 230, 36, 867, 772, 14, 647, 3, 996], [15, 2120, 3056, 110, 742, 268, 73, 148, 877, 169, 3, 925, 400, 3, 15, 65, 343, 1716, 9012, 51, 335, 2, 397, 39, 91, 201, 343, 1716, 9013, 106, 35, 38, 241, 9014], [87, 46, 169, 811, 13, 55, 1, 1, 828, 274, 33, 24, 58, 13, 95, 4, 57, 76, 449, 7, 97, 392, 4, 2, 87, 11, 191, 849, 118, 319, 1612, 151, 63, 123, 5778, 508, 484, 1, 1, 1, 143, 967, 35, 39, 269, 246, 43, 3127, 2610], [1708, 317, 8, 45, 55, 1, 1, 33, 1708, 317, 706, 45, 97, 118, 1630, 10, 21, 39, 612, 14, 884, 7, 509, 366, 12, 21], [25, 3, 13, 11, 4410, 4411, 10, 15, 160, 15, 14, 25, 33, 13, 11, 26, 15, 160, 7, 26, 872, 160], [110, 54, 1157, 36, 33, 809, 110, 399, 33, 809, 4, 3, 73, 966, 392, 10, 7, 989, 273, 664, 21, 65, 952, 33, 107, 4, 41, 53, 613, 53, 3477, 448, 65, 80, 4, 423, 129, 302, 3, 201, 107, 44, 264, 43, 2571, 30, 33, 809, 6, 68, 35, 106, 72, 223, 412, 36, 41, 35, 99, 91, 3, 107], [13, 25, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9015, 372, 56, 9016, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [168, 20, 471, 477, 2208, 1043, 950, 951, 168, 20, 471, 477, 2208, 1043, 950, 951], [2716, 477, 1369, 1602, 55, 1, 1, 33, 115, 429, 3, 886, 943, 30, 5738, 18, 1993, 5779, 1, 115, 9, 1, 103, 2121, 1, 1, 14, 50, 1, 1, 135], [926, 2200, 4412, 307, 622, 258, 329, 638, 1442, 462, 125, 916, 926, 2817, 2876, 7, 68, 806, 4, 3683, 183, 3683, 2876, 7, 528, 6, 9017, 1, 1, 372, 713, 47, 38, 330, 3, 179, 31, 53, 4413, 912, 521, 10, 3, 462, 125, 916, 1, 3684, 9018, 1524, 21, 251, 2118, 35, 39, 5163, 408, 257, 1, 1, 47, 42, 343, 9019, 30, 713, 591, 131, 7, 662, 54, 3, 391, 609, 53, 284, 38, 141, 389, 1, 1, 2055, 389, 1229, 1, 1, 1, 1, 1, 1, 135], [87, 31, 508, 484, 37, 87, 31, 508, 484, 37], [13, 25, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9020, 372, 56, 9021, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [32, 351, 64, 32, 351, 64], [52, 1571, 836, 116, 2, 1185, 169, 13, 25, 52, 1571, 836, 116, 2, 1185, 169, 13, 25, 1, 1117, 2508, 37, 997, 98, 30, 41], [28, 2764, 2765, 3592, 65, 283, 13, 4, 15, 26, 5780, 28, 2764, 2765, 3592, 65, 283, 13, 4, 15, 26, 5780], [27, 2, 122, 2, 324, 2209, 2342, 27, 2, 122, 2, 324, 2209, 2342, 1, 347, 1373, 2, 463], [417, 20, 89, 8, 38, 302, 18, 9022, 740, 31, 1078, 169, 1947, 13, 119], [5781, 5782, 57, 2810, 5781, 5782, 1126, 24, 90, 3685, 1570, 10, 49, 5518, 1965, 9023, 11, 9024, 39, 35, 14, 236, 98, 57, 2810, 11, 143, 9025, 2, 33, 57, 196, 14, 386, 68, 151, 6, 1096, 1825, 275, 10, 33, 934, 62, 33, 120, 9026, 9027], [14, 25, 33, 13, 11, 374, 26, 26, 26, 14, 25, 33, 13, 11, 374, 26, 26, 26, 11, 1077, 9028], [15, 13, 25, 15, 26, 15, 13, 25, 15, 26], [40, 3483, 362, 312, 371, 200, 6, 75, 12, 49, 105, 10, 40, 3483, 362, 312, 371, 200, 6, 75, 12, 49, 105, 10], [3686, 312, 433, 1207, 42, 1572, 268, 6, 8, 45, 53, 4414, 2755, 4, 230, 225, 418, 3686, 312, 433, 1207, 42, 1572, 268, 6, 8, 45, 53, 4414, 2755, 4, 230, 225, 418, 2755, 4, 256, 134, 11, 3, 262, 7, 3226, 448, 97, 753, 23, 312, 14, 391, 3, 346, 981, 2210, 10, 3, 163, 173, 7, 410, 2211, 3687, 207, 44, 981, 2210, 42, 588, 4, 5783, 9029, 601, 844, 14, 106, 8, 735, 23, 34, 599, 2211, 398, 6, 205, 2715, 7, 4, 1209], [88, 297, 10, 1774, 88, 297, 10, 1774], [9030, 1375, 859, 219, 857, 564, 4185, 107, 4, 3, 117, 200, 1076, 90, 86, 107, 148, 416, 877, 1496, 133, 2, 2877, 134, 294, 1375, 859, 9, 465], [128, 126, 29, 55, 83, 3, 632, 2770, 426, 3, 128, 126, 2128, 96, 6, 9, 345, 3035, 30, 37, 71, 9031, 350, 21, 67, 180, 1126, 9032, 3099, 9033, 18, 283, 32, 185, 43, 3, 709, 3227, 14, 50, 2, 118, 29, 257, 62, 269, 2512, 2, 119, 1097], [27, 2, 392, 4, 2, 87, 27, 2, 392, 4, 2, 87], [239, 791, 4, 82, 20, 15, 1313, 7, 191, 217, 509, 53, 836, 53, 1695, 112, 1731, 540, 47, 91, 2353, 894, 210, 4, 9034, 2, 239, 610, 36, 15], [3061, 275, 4, 1114, 1115, 55, 1, 1, 14, 326, 96, 2878, 114, 164, 329, 1458, 309, 1, 1, 308, 465, 1799, 7, 106, 3, 807, 1, 1, 1, 52, 222, 6, 794, 96, 11, 104, 1166, 239], [474, 82, 20, 492, 287, 97, 43, 825, 37, 163, 55, 1, 1, 405, 492, 287, 36, 82, 20, 1428, 72, 5377, 836, 116, 9035, 1510, 23, 71, 183, 664, 573, 3, 173, 357, 825, 1, 1, 1, 30, 450, 750], [957, 103, 6, 346, 2, 508, 107, 9036, 9037, 124, 2879, 2880, 914, 324, 120, 55, 5784, 840, 542, 134, 11, 508, 107, 14, 114], [193, 30, 419, 1074, 1075, 193, 30, 419, 1074, 1075], [3688, 949, 37, 2290, 2010, 2011, 407, 403, 2835, 950, 951, 3688, 949, 37, 2290, 2010, 2011, 407, 403, 2835, 950, 951], [193, 30, 74, 47, 4366, 4367, 55, 1, 1, 161, 2212, 4, 3, 5051, 6, 183, 406, 9038, 47, 1, 1, 39, 35, 14, 38, 175, 366], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [939, 88, 307, 50, 275, 1031, 229, 72, 2881, 2, 72, 32, 38, 3, 88, 681, 10, 41, 67, 51, 322, 72, 2881, 7, 465, 2, 236, 704, 7, 995, 4, 3, 32, 680, 1101, 2, 3, 32, 11, 72, 2881], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 210, 89, 8, 1216, 320, 245, 2195, 98, 2, 1901, 46, 9039, 38, 210, 30, 33, 245, 4, 41, 310, 151, 42, 4088, 30, 1827, 245, 7, 867, 77, 49, 164, 33, 245, 30, 3116, 72, 1901, 2195, 183, 38, 210, 30, 867, 77, 33, 245, 284, 42, 4136, 4, 33, 2710, 11, 836, 116, 599, 284, 1888, 465, 77], [110, 97, 1202, 497, 98, 36, 33, 86, 4415, 89, 8, 4980, 51, 151, 6, 121], [1003, 6, 8, 45, 1003, 6, 8, 45], [32, 64, 13, 25, 102, 32, 64, 13, 25, 102], [54, 29, 2, 513, 1759, 1440, 2551, 4202, 218, 29, 653, 2777, 59, 28, 59, 9040, 2777, 1439, 2017, 4203, 28, 2017, 1836, 4416, 149, 522, 2551, 218, 513, 3126, 2157, 4204, 103, 18, 29, 633, 201, 62, 315, 753, 315, 56, 2157, 5785, 120, 56, 9041, 9042, 111, 14, 50, 2, 574, 751, 2, 33, 52, 135], [54, 104, 50, 55, 21, 564, 331, 23, 9043, 1799, 3, 422, 181, 53, 39, 8, 100, 3, 209, 174, 9044, 311, 2, 3, 37, 71, 96, 3, 37, 71, 530, 97, 189, 73, 9045, 347, 18, 1117, 53, 18, 2073, 355, 274, 33, 2580, 695, 828, 30, 2826, 2, 3, 1572, 319, 36, 52, 14, 50, 80, 2, 795, 23, 1237, 2772, 7, 170, 2, 199, 41, 11, 33, 636, 134, 33, 57, 196, 6, 59, 6, 9046, 235, 86, 6, 104, 9047, 6, 9048, 2610, 135], [340, 8, 699, 340, 8, 699], [79, 13, 25, 79, 13, 25], [88, 3228, 1537, 239, 208, 83, 1, 1, 426, 88, 3228, 3, 1537, 864, 6, 1326, 924, 47, 38, 172, 2393, 9049, 39, 612, 14, 9050, 3, 1537], [297, 193, 55, 1033, 1, 1, 4, 33, 41, 1101, 175, 469, 44, 151, 6, 72, 297, 123, 1, 1, 85, 2, 106, 1, 1, 1, 135, 750], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 9], [27, 2, 106, 309, 1013, 38, 8, 268, 181, 36, 309, 112, 343, 836, 116, 711, 9051, 65, 8, 268, 143, 181, 36, 309, 112, 836, 116, 180, 5786, 180, 264, 38, 268, 12, 975, 475, 514, 23, 1538, 44, 6, 424, 180, 6, 27, 2, 106, 3, 1013, 180, 9052, 309, 2, 366, 158, 21, 55, 1033, 110, 264, 2625, 2205, 33, 309, 110, 9053, 118, 143, 2012, 136, 62, 175, 229, 10, 288, 2, 118, 158, 3, 9054, 207, 110, 248, 2, 118, 158, 3, 212, 192, 3, 459, 1284, 604], [1195, 32, 64, 77, 1195, 32, 64, 77], [32, 64, 32, 64], [9055, 88, 1537, 2, 1214, 1022, 8, 45, 2213, 8, 336, 37, 208, 83, 1, 1, 8, 201, 3, 197, 28, 6, 952, 47, 351, 165, 149, 3689, 1775, 44, 284, 39, 100, 3, 88, 1537, 2, 1214, 1022, 7, 118, 3, 2213, 8, 336, 37], [41, 6, 8, 638, 41, 6, 8, 638], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [110, 49, 273, 27, 2, 5787, 7, 205, 242, 1124, 66, 4, 82, 20, 185, 35, 50, 80, 56, 9056, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 49, 273, 27, 2, 5787, 7, 205, 242, 1124, 66, 4, 82, 20, 185, 35, 50, 80], [8, 84, 2, 46, 2, 309, 212, 4417, 4418, 208, 491, 1, 49, 8, 84, 2, 46, 2, 309, 212, 3, 37, 167, 554, 163, 96, 1, 308, 106, 3, 54, 315, 1, 1, 1, 1, 1, 1, 30, 135], [14, 269, 29, 2, 254, 208, 21, 101, 365, 334, 14, 269, 315, 753, 29, 2, 96, 5788, 11, 3, 96, 1066, 3620, 954, 838, 40, 173, 40, 841, 3690, 361, 3691, 838, 40, 173, 40, 841, 1094, 361, 3691, 9057, 9058, 9059, 4419, 4974, 4975, 9060, 9061], [31, 30, 553, 208, 83, 1, 1, 39, 35, 14, 398, 3, 553, 123, 11, 4420, 4421, 91, 96, 37, 71], [193, 30, 340, 365, 334, 1, 1, 199, 33, 382, 877, 4, 33, 490, 174, 137, 33, 918, 340, 58, 11, 155, 29, 1, 2335, 51, 9062, 21, 98, 36, 9063, 1042, 21, 6, 273, 267, 2, 33, 437, 340, 58, 67, 53, 8, 2500, 58, 30, 9, 155, 133, 33, 1599, 868, 817, 115, 3692, 910, 273, 134, 494, 1, 38, 2, 1391, 75, 7, 715, 3, 382, 257, 2, 118, 2362, 133, 1, 1, 14, 386, 85, 2, 106, 53, 1801, 3, 382, 1731, 18, 420, 272, 3, 483, 6, 5789, 7, 116, 9064, 1, 1, 135], [3229, 29, 4, 404, 20, 110, 38, 1910, 44, 526, 38, 29, 2, 3229, 4, 33, 404, 20, 39, 38, 21, 1805], [5, 40, 2394, 22, 4, 5, 19, 12, 5, 40, 2394, 22, 4, 5, 19, 12], [1104, 11, 186, 263, 8, 285, 1104, 11, 186, 263, 8, 285, 14, 91, 1942, 71], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [32, 64, 4, 226, 32, 64, 4, 226], [39, 8, 46, 39, 8, 46], [106, 38, 2, 9065, 393, 23, 1284, 2882, 1511, 2395], [27, 2, 46, 2, 40, 2858, 217, 27, 2, 46, 2, 40, 2858, 217, 1, 3693, 9066, 78, 200, 6, 4, 706, 1517], [349, 2626, 252, 3, 349, 252, 9067, 9068, 9069, 6, 178, 4, 3, 15, 52, 67, 51, 2627, 21, 4, 82, 20, 151, 6, 72, 37, 9, 349, 252, 1169], [474, 1489, 412, 11, 82, 915, 8, 45, 55, 112, 329, 3, 474, 1489, 412, 11, 82, 915, 6, 8, 45, 10, 33, 115, 2537, 6, 346, 1958, 2, 3, 37, 891, 4, 3, 233, 1844, 91, 772], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9070, 372, 56, 9071, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1955, 4422, 190, 9072, 5790, 4090, 5791, 9073, 3527, 1956, 1955, 2621, 9074, 1298, 5790, 4090, 2838, 15, 585, 9075, 2838, 695, 333, 2208, 1, 1956, 5792, 9076, 9077, 1052, 5793, 9078, 4132, 9079, 1, 1, 1, 1, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 1, 1, 1154, 665, 18, 3, 123, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [309, 220, 8, 336, 55, 1, 1, 49, 8, 84, 2, 100, 3, 309, 520, 1013, 1, 1, 14, 91, 3, 96, 37, 464, 1, 1, 1, 30], [309, 46, 31, 111, 1, 1, 14, 91, 2585, 37, 7, 353, 21, 10, 307, 935, 1, 1, 1, 135], [27, 2, 46, 2, 309, 520, 1013, 111, 51, 356, 250, 2, 46, 2, 309, 520, 1013, 118, 3, 422, 347, 53, 9080, 28, 14, 39, 35, 50, 4, 23], [31, 2122, 5794, 119, 671, 1136, 55, 1, 1, 39, 35, 14, 50, 80, 30, 23, 71, 184, 351, 51, 248, 2, 100, 3, 1297, 242, 1136, 10, 5794, 119, 671], [27, 2, 176, 36, 913, 74, 27, 2, 176, 36, 913, 74, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 921, 922, 55, 3110, 3111, 111, 365, 9081, 9082, 185, 8, 176, 4, 913, 74, 49, 4, 361, 3110, 3111, 111, 42, 35, 151, 921, 922, 16, 3110, 3111, 23, 123, 1147, 541, 713, 921, 922, 837, 270, 80, 114, 30, 437, 21, 433, 42, 35, 722, 172, 4, 184, 9083], [211, 1297, 242, 394, 18, 1114, 1115, 55, 1, 1, 39, 35, 14, 211, 3, 1297, 242, 394, 18, 1114, 1115, 10, 33, 52, 351, 23, 71, 184, 6, 806, 96, 329, 248, 2, 421, 3, 309, 1013, 10, 161, 128, 126, 48], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [26, 13, 111, 1, 1, 14, 25, 33, 13, 11, 26, 2, 1102], [15, 9084, 23, 334, 192, 76, 190, 111, 21, 244, 72, 171, 23, 334, 7, 21, 1428, 1695, 2123, 2, 118, 3, 764, 628, 3, 171, 1244, 273, 327, 169, 858, 106, 47, 38, 894, 31, 30, 15, 33, 28, 59, 6, 9085], [128, 126, 48, 6, 8, 405, 128, 126, 48, 6, 8, 405], [521, 4, 226, 111, 151, 1, 33, 260, 470, 4, 3, 41, 668, 52, 6, 385, 38, 141, 9086, 36, 90, 2, 358, 7, 172, 171, 2, 9087, 9088, 33, 1836, 6, 854, 685, 3694, 184, 6, 8, 4423, 4, 3, 52, 454, 14, 50, 2, 391], [1114, 1115, 394, 111, 1, 1, 14, 50, 2, 525, 3, 177, 31], [110, 39, 95, 158, 3, 76, 62, 404, 20, 274, 33, 13, 23, 334, 7, 172, 21, 6, 8, 45, 9089, 9090, 181, 124, 291, 292, 814, 46, 193, 30, 76, 111, 39, 95, 158, 3, 76, 62, 404, 20, 274, 33, 13, 23, 334, 7, 172, 21, 6, 8, 45, 39, 35, 14, 25, 33, 46, 33, 691, 6, 9091, 737, 164, 23, 37, 9092, 9093, 3695, 120, 228, 9094, 1967, 2019, 90, 3685], [146, 51, 373, 5795, 302, 7, 335, 2, 106, 33, 171, 118, 373, 116, 37, 4424, 1318, 469, 56, 8, 860, 146, 51, 373, 5795, 302, 7, 335, 2, 106, 33, 171, 118, 373, 116, 37, 4424, 1318, 469, 56, 8, 860], [210, 30, 88, 690, 210, 30, 88, 690, 54, 1183, 329, 405, 915, 28, 6, 164, 37, 1323, 6, 1321, 3, 102, 1323, 63, 8, 336, 62, 35, 106, 8, 38, 3230, 1183, 2, 239, 21], [33, 32, 99, 2365, 754, 14, 50, 2, 946, 3696, 32, 11, 197, 1324, 28, 3696, 120, 56, 5796, 5797, 33, 32, 99, 2365, 754, 14, 50, 2, 946, 3696, 32, 11, 197, 1324, 28, 3696, 120, 56, 5796, 5797], [106, 8, 384, 136, 111, 101, 1, 1, 4425, 4426, 393, 23, 12, 3, 170, 18, 7, 680, 65, 141, 5798, 1, 1, 511, 106, 8, 384, 143, 57, 2848, 11, 3, 5799, 18, 309, 2396, 5800, 3697, 1, 1, 7, 172, 38, 248, 2, 95, 158, 309, 192, 128, 126, 7, 268, 3, 177, 37, 71, 1, 1, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15, 1, 1, 39, 35, 14, 525, 510, 4, 1009, 98, 261, 2848], [339, 121, 339, 121], [3157, 489, 18, 76, 110, 63, 3157, 489, 18, 76, 11, 3, 116, 310, 12, 393], [2393, 299, 31, 30, 3, 1774, 70, 2393, 299, 31, 30, 3, 1774, 70], [41, 37, 41, 37], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 55, 1, 1, 151, 6, 9, 88, 681, 4, 33, 41, 1964, 14, 386, 1, 1, 1, 1, 1, 1, 9095, 9096, 1, 854, 1529, 674, 2776, 1, 24, 203, 1, 174, 1, 1, 724, 295, 1, 730, 24, 144], [27, 2, 122, 2, 519, 28, 486, 4, 11, 72, 31, 433, 180, 63, 8, 84, 2, 122, 2, 143, 519, 58, 180, 137, 3, 382, 910, 108], [27, 2, 70, 73, 13, 10, 383, 27, 2, 70, 73, 13, 10, 383], [27, 2, 70, 224, 11, 83, 460, 27, 2, 70, 224, 11, 83, 460], [58, 94, 3517, 4194, 48, 531, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [309, 520, 55, 244, 309, 520, 21, 9097, 1223, 10, 347, 1, 14, 129, 80, 510, 1, 1, 135], [27, 2, 100, 1158, 324, 171, 11, 223, 27, 2, 100, 1158, 324, 171, 11, 223], [97, 95, 4, 9098, 9099, 691, 9100, 97, 46, 2, 142, 3231, 3232, 90, 2628, 2883], [27, 2, 2003, 377, 10, 15, 51, 335, 2, 2003, 173, 2, 149, 127, 4, 15, 268, 3, 9101, 37, 1, 72, 37, 1078, 51, 1810, 2, 15, 1835, 1, 153], [149, 1860, 8, 391, 4, 983, 784, 9102, 21, 101, 151, 664, 2, 43, 72, 31, 30, 3, 1860, 4, 983, 201, 3, 1860, 1100, 391], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [415, 48, 8, 590, 415, 48, 8, 590], [32, 132, 32, 132], [88, 4, 41, 8, 45, 5801, 88, 4, 41, 8, 45, 5801], [79, 32, 132, 79, 32, 132], [79, 32, 707, 79, 32, 707], [79, 13, 25, 79, 13, 25], [27, 2, 392, 4, 2, 87, 27, 2, 392, 4, 2, 87], [164, 2592, 489, 76, 63, 2592, 489, 76, 393, 105, 310, 7, 276, 257, 393, 105, 38, 123, 30, 357, 2592, 489, 3116, 541, 483], [83, 18, 33, 457, 5802, 4, 3, 166, 42, 3233, 53, 106, 8, 199, 33, 457, 3234, 42, 9, 345, 151, 51, 335, 7, 243, 493, 444, 83, 3, 166, 3629, 2141, 106, 8, 199], [76, 1121, 210, 33, 76, 3235, 1633, 23, 334, 7, 1633, 112, 2051], [27, 2, 322, 72, 3698, 763, 4, 1246, 4, 209, 88, 27, 2, 322, 72, 3698, 763, 4, 1246, 4, 209, 88], [27, 2, 392, 4, 2, 41, 27, 2, 392, 4, 2, 41], [25, 79, 13, 11, 83, 460, 25, 79, 13, 11, 83, 460], [27, 2, 46, 2, 15, 27, 2, 46, 2, 15], [303, 102, 102, 482, 176, 2, 661, 74, 14, 129, 5803, 5804, 11, 957, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 1861, 7, 1861, 1, 1, 1154, 665, 18, 3, 123, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 225, 20, 186, 263, 160, 127, 449, 1, 15, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 15, 79, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 26, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 511, 2884, 6, 357, 2142, 2, 2884, 1, 2884, 6, 172, 833, 7, 54, 83, 15, 777, 2, 176, 10, 2884, 8, 2884, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [13, 119, 13, 119], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [110, 38, 376, 394, 309, 520, 10, 33, 32, 14, 50, 80, 781, 35, 110, 38, 376, 394, 309, 520, 10, 33, 32, 14, 50, 80], [1422, 254, 1422, 254], [88, 8, 2397, 475, 88, 8, 2397, 475], [76, 15, 95, 77, 23, 6, 164, 9103, 357, 1105, 77, 18, 76, 456, 329, 45, 10, 15, 1031, 1089, 2, 118, 1502, 588, 68, 38, 2, 737, 637, 251, 10, 23, 219, 2, 43, 833, 5431, 5432, 854, 220, 685, 949, 82, 24, 203], [28, 4427, 2, 236, 728, 53, 648, 305, 11, 155, 28, 4427, 2, 236, 728, 53, 648, 305, 11, 155, 67, 33, 148, 2345, 519, 648, 305, 7, 2799, 36, 728, 7, 122, 2, 519, 115, 56, 9104], [415, 396, 783, 11, 3660, 3661, 57, 196, 415, 396, 783, 11, 3660, 3661, 57, 196], [27, 2, 100, 72, 580, 27, 2, 100, 72, 580], [132, 15, 26, 32, 132, 15, 26, 32], [50, 2, 211, 82, 20, 2, 165, 9105, 9, 24, 111, 101, 54, 104, 50, 47, 38, 826, 467, 1219, 223, 24, 67, 524, 211, 82, 20, 4, 142, 284, 243, 217, 24, 180, 65, 59, 9106, 2, 1735, 48, 82, 20, 67, 4, 1901, 44, 211, 664, 3, 37, 4, 377, 106, 35, 38, 2062, 2, 211, 4, 1742, 9, 24], [317, 10, 5805, 115, 6, 77, 317, 10, 5805, 115, 6, 77], [27, 2, 326, 56, 53, 149, 568, 4, 82, 20, 27, 2, 326, 56, 53, 149, 568, 4, 82, 20, 86], [79, 32, 707, 79, 32, 707], [90, 113, 83, 3, 2108, 7, 605, 42, 75, 12, 3, 48, 12, 49, 105, 10, 90, 113, 83, 3, 2108, 7, 605, 42, 75, 12, 3, 48, 12, 49, 105, 10], [155, 6, 75, 9107, 9108, 486, 4, 11, 72, 31, 433, 3, 155, 6, 2028, 75, 7, 284, 42, 27, 2, 29, 155, 15, 7, 83, 165, 529, 129, 9], [41, 672, 1949, 248, 2, 818, 33, 672, 4, 41, 30, 33, 120, 9109, 9110, 7, 351, 23, 37, 71, 9111, 9112, 1276, 149, 685, 3644, 101, 730, 24, 144], [1852, 4, 623, 5365, 5366, 1, 124, 1, 291, 292, 1, 243, 1852, 4, 623, 1, 1, 111, 1, 1, 38, 627, 4, 623, 44, 49, 27, 2, 504, 77, 21, 664, 3, 666, 63, 584, 1, 1573, 7, 1, 14, 50, 80, 118, 261, 1071, 77], [27, 2, 100, 41, 169, 811, 13, 27, 2, 100, 41, 169, 811, 13], [27, 2, 46, 2, 87, 56, 5806, 5807, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 392, 158, 87], [309, 110, 38, 912, 567, 985, 2, 29, 309, 520, 7, 21, 542, 122, 9113, 9114, 24, 203, 149, 685, 90, 793, 117, 200, 462, 295], [9, 395, 108, 9, 395, 108, 10, 3, 115, 22, 2, 2885, 205, 242, 2886], [76, 210, 55, 1346, 101, 1, 1, 33, 76, 99, 8, 979, 33, 691, 7, 13, 14, 129, 80, 12, 104, 1131, 9115, 1, 1, 135], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [378, 419, 1803, 10, 405, 337, 36, 338, 212, 378, 419, 1803, 10, 405, 337, 36, 338, 212, 86], [712, 318, 484, 11, 13, 125, 20, 59, 13, 120, 712, 318, 484, 11, 13, 125, 20, 13, 120], [227, 181, 7, 2872, 8, 601, 2, 555, 2629, 310, 350, 555, 93, 4, 161, 128, 126, 555, 810, 7, 169, 2287, 3, 93, 9, 9116, 351, 143, 181, 62, 555, 484, 555, 810, 59, 11, 3, 93, 350, 6], [27, 2, 189, 128, 126, 128, 126, 4428, 10, 460, 311, 2, 1776, 9117, 1952, 6, 27, 2, 747, 1421, 10, 72, 32, 573, 164, 72, 37, 1775, 151, 42, 2393, 9118, 3, 32, 6, 661, 467, 3, 165, 67, 89, 199, 3, 179, 57, 196, 184, 1688, 9119, 3699, 6, 1192, 489, 18, 51, 180, 985, 2, 504, 5808, 180, 118, 191, 312, 37, 363, 622, 2, 32, 53, 72, 698, 53, 613, 53, 3, 163, 167, 1926], [31, 4, 3058, 1418, 2734, 4, 162, 20, 21, 664, 44, 38, 213, 31, 4, 3058, 1418, 2734, 4, 162, 20, 91, 245, 96, 42, 35, 84, 2, 50, 80, 2, 239, 261, 1968], [188, 92, 107, 188, 92, 107], [279, 140, 13, 25, 365, 334, 54, 13, 25, 11, 279, 140, 11, 4429, 4430, 59, 9120, 1427, 5809], [74, 8, 303, 74, 8, 303], [1514, 101, 252, 5810, 39, 35, 14, 206, 9121, 1371, 166, 113], [2630, 683, 31, 97, 373, 2630, 53, 18, 4082, 49, 2630, 683, 31, 97, 373, 2630, 53, 18, 4082, 49, 2630, 3422, 683, 78, 8, 336, 37, 23, 6, 4076, 160, 4, 3, 90, 48], [162, 20, 116, 220, 23, 334, 106, 8, 38, 3, 33, 116, 3700, 2008, 10, 33, 3701, 97, 95, 4, 7, 1425, 162, 20, 116, 220, 23, 334, 106, 8, 38, 3, 33, 116, 3700, 2008, 10, 33, 3701, 97, 95, 4, 7, 1425, 4, 63, 581, 10, 116, 23, 334, 7, 97, 1425, 1619, 4, 437, 21, 1456, 3565, 534, 2034, 12, 21, 664, 151, 6, 829, 385, 30, 33, 32, 18, 3, 220, 86, 57], [88, 31, 11, 383, 111, 151, 1, 1, 49, 250, 2, 236, 98, 88, 10, 33, 383, 7, 21, 2398, 11, 3, 24, 88, 196, 85, 6, 21], [13, 25, 13, 25], [919, 8, 45, 919, 8, 45], [13, 125, 20, 13, 120, 119, 39, 612, 14, 386, 68, 47, 42, 273, 9122, 13, 125, 20, 13, 120, 1, 1, 39, 122, 2, 23, 48, 2, 106, 2130, 70, 18, 33, 73, 13, 2, 83, 460], [25, 224, 11, 4431, 4432, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 4431, 4432, 137, 13, 125, 20, 13, 25, 3], [191, 217, 31, 111, 21, 295, 1, 1, 197, 18, 161, 195, 38, 123, 30, 327, 18, 191, 217, 217, 180, 6, 273, 164, 37, 71, 44, 441, 1350, 6, 8, 430, 10, 104, 115, 248, 2, 920, 21, 67, 9, 2732, 1, 1, 6, 21, 1150, 31, 14, 39, 35, 50, 166, 288, 2, 795, 21], [1461, 438, 770, 385, 4, 9123, 4, 432, 20, 14, 119, 15, 1777, 44, 511, 5811, 1461, 627, 11, 432, 20, 2, 1109, 1345, 1508, 1146, 18, 9124, 91, 163, 57, 574, 2, 9125, 3702], [123, 405, 3, 13, 125, 20, 13, 120, 3, 464, 96, 6, 3, 71, 268, 51, 248, 2, 100, 3, 13, 125, 20, 13, 120, 48, 23, 334, 2, 25, 33, 13, 14, 386], [60, 94, 361, 1212, 24, 262, 1187, 1212, 856, 618, 6, 75, 12, 105, 10, 48, 6, 98, 10, 1285, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [224, 2, 43, 25, 11, 15, 26, 14, 25, 3, 177, 224, 4, 15, 26, 166, 113, 694, 1, 1, 5812, 5813, 1, 5665, 5666], [25, 3, 13, 11, 5814, 5815, 10, 15, 160, 1245, 25, 3, 13, 11, 5814, 5815, 10, 15, 160, 1245], [1455, 2074, 65, 193, 30, 1693, 619, 497, 1455, 2074, 65, 210, 30, 1693, 619, 497, 1, 23, 6, 10, 3, 279, 140, 53, 10, 3, 2373, 1669], [175, 28, 63, 84, 2, 206, 2631, 674, 4, 26, 7, 284, 526, 38, 299, 2, 106, 207, 14, 386, 288, 23, 39, 43, 833, 612, 4, 3, 200, 314, 63, 84, 2, 1254, 206, 2631, 674, 2, 72, 1442, 117, 916, 32, 4, 26, 1, 47, 236, 21, 98, 44, 201, 3, 195, 625, 2, 3, 1684, 3236, 9126, 674, 9127, 2631, 1519, 246, 38, 206, 1158, 544, 29, 2, 23, 674, 733, 1, 581, 6, 146, 18, 85, 942, 332, 9128, 1, 180, 5354, 5355, 63, 137, 26, 1374, 85, 6, 4433, 6, 44, 3, 52, 2367, 911, 435, 44, 180, 6, 8, 1642, 2, 206, 2631, 674, 733, 180, 185, 8, 516, 504, 521, 599, 180, 2563, 3, 2631, 469, 67, 21, 649, 3, 52, 543, 3, 2631, 674, 733, 3227, 51, 180, 1071, 3, 32, 3, 32, 63, 7, 180, 543, 2631, 674, 18], [1207, 131, 14, 269, 1207, 131, 11, 3, 713, 18], [13, 25, 291, 292, 124, 1142, 1143, 13, 25, 111, 9129, 104, 32, 63, 64, 77, 47, 499, 104, 32, 14, 335, 46, 30, 104, 1442, 13, 53, 35, 42, 338, 28, 47, 38, 8, 274, 104, 13, 14, 9130, 251, 68, 35, 38, 143, 31], [41, 299, 484, 319, 208, 491, 3067, 1, 1, 308, 622, 96, 464, 433, 23, 319, 6, 1761, 257, 7, 257, 1, 1, 1, 135], [149, 174, 3429, 6, 8, 1916, 11, 149, 594, 630, 656, 51, 47, 825, 73, 127, 47, 351, 3703, 9131, 127, 6, 2214, 1, 2612, 174, 6, 8, 9132, 51, 47, 335, 322, 722, 149, 174, 3429, 39, 206, 3, 9133, 1, 176, 167, 4, 163], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [31, 6, 8, 321, 37, 18, 484, 36, 302, 30, 5816, 2215, 213, 130, 155, 204, 117, 107, 214, 146, 15, 37, 18, 484, 36, 302, 30, 5816, 2215, 217, 1238, 3045, 4, 540], [25, 3, 13, 11, 9134, 9135, 10, 15, 160, 1245, 110, 742, 355, 274, 33, 83, 224, 411, 18, 5015, 67, 15, 89, 8, 979, 3, 73, 13, 21, 530, 44, 3, 56, 7, 13, 6, 8, 391, 14, 398, 21], [82, 20, 15, 52, 71, 175, 532, 195, 38, 1092, 3, 697, 3, 163, 37, 71, 310, 704, 484, 2332], [547, 1755, 7, 547, 2066, 6, 8, 45, 547, 1755, 7, 547, 2066, 6, 8, 45], [9136, 484, 684, 111, 38, 355, 244, 290, 96, 52, 4434, 7, 21, 2347, 541, 116, 1044, 36, 15, 5817, 2, 5817, 9137, 80, 14, 386, 85, 23, 6, 393, 7, 85, 264, 106, 10, 23, 5818, 5819, 120, 432, 7, 572, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [174, 65, 2, 43, 1914, 2, 174, 65, 2, 43, 1914, 2], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [366, 11, 3237, 3, 1886, 1206, 7, 1340, 4389, 616, 5820, 472, 65, 141, 268, 10, 67, 3, 179, 472, 249, 1144, 38, 9138, 10, 5821, 14, 50, 2399, 3, 1886, 1206, 424, 3, 5821, 472, 185, 38, 141, 1104, 112, 3, 472, 63, 534, 268, 113, 6, 8, 84, 2, 1752, 3, 556, 1073, 23, 5820, 14, 269, 3, 135, 1340, 2, 312, 3, 556], [82, 20, 8, 45, 55, 14, 295, 161, 2873, 11, 82, 20, 400, 129, 222, 96, 135], [78, 29, 1473, 11, 5822, 5823, 50, 564, 1, 1, 14, 90, 72, 29, 722, 2, 5822, 5823, 2, 177, 218, 1, 1, 40, 838, 501, 1, 1, 390, 6, 73, 2559, 11, 2565, 5824, 501, 1076, 7, 49, 408, 4130, 4131, 1, 1, 1, 1, 135], [29, 2, 254, 14, 269, 29, 2, 2355, 9139, 149, 254, 1, 1, 11, 143, 3219, 611, 121, 80, 251, 1, 1, 1, 1, 135], [104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 3515, 110, 508, 108], [9140, 9141, 235, 86, 274, 55, 1, 1, 1, 274, 33, 235, 86, 7, 96, 4435, 5825, 2, 33, 918, 508, 86, 185, 35, 269, 2, 199, 33, 73, 235, 86, 108, 11, 475], [58, 94, 1252, 1252, 432, 58, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [32, 562, 4436, 3684, 8, 84, 2, 95, 4, 9142, 4319, 49, 291, 292, 9143, 9144, 243, 28, 59, 4436, 3684, 8, 84, 2, 95, 4, 3684, 448, 6, 290, 28, 59, 4436, 8, 84, 2, 95, 4, 3, 835, 449, 39, 35, 114, 21, 1008, 308, 269, 29, 9145], [3704, 7, 3704, 42, 75, 12, 12, 90, 24, 112, 49, 10, 105, 3704, 7, 3704, 42, 75, 112, 49, 10, 105], [58, 247, 8, 45, 58, 247, 6, 8, 134, 7, 340, 58, 6, 343, 2632], [27, 2, 644, 888, 2, 32, 5826, 1224, 27, 2, 644, 888, 2, 32, 5826, 1224, 1, 1, 752, 5827, 9146, 752, 1, 752, 5827, 2216, 752], [54, 50, 4, 811, 13, 10, 13, 125, 20, 54, 50, 4, 811, 13, 10, 13, 125, 20], [369, 370, 1010, 846, 2035, 10, 78, 846, 6, 272, 369, 370, 1010, 846, 2035, 10, 78, 846, 6, 272, 198, 375, 198, 178, 387], [5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12, 5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [25, 224, 11, 4099, 4100, 137, 13, 125, 20, 13, 25, 3], [40, 369, 686, 26, 1951, 6, 272, 198, 375, 40, 369, 686, 26, 1951, 10, 78, 40, 6, 272, 198, 375, 198, 178, 356], [820, 5828, 362, 6, 8, 327, 10, 40, 820, 5828, 362, 6, 8, 327, 10, 40], [519, 94, 257, 2400, 55, 1, 1, 519, 1060, 94, 18, 2400, 1, 14, 50], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5829, 5830, 5829, 5830, 57, 6, 8, 45, 39, 118, 72, 70, 10, 23, 283, 57, 6, 273, 8, 45], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [57, 8, 45, 3, 78, 1431, 43, 1376, 71, 129, 86, 24, 57, 8, 45, 3, 78, 1431, 43, 1376, 37, 71, 1191, 183, 8, 45], [419, 213, 31, 580, 8, 590, 558, 2483, 2028, 419, 213, 31, 580, 8, 590, 558, 2483, 2028], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [1195, 32, 602, 77, 1195, 32, 602, 77, 1, 1448, 602, 77, 233, 1, 32, 63, 164, 64, 77, 36, 197, 18, 3, 340, 817, 1, 1571, 753, 18, 348, 7, 244, 2401, 120, 368, 1, 584, 4398, 18, 224, 1071, 4, 2401, 120, 1, 1098, 28, 2, 647, 24, 1705, 36, 235, 108, 7, 737, 340, 808, 11, 1731, 18, 540, 7, 39, 747, 21, 51, 12, 490, 1, 183, 9147, 142, 7, 1634, 21, 251, 248, 46, 4, 21, 1067, 1, 64, 52, 7, 499, 21, 30, 9, 2805, 1, 3139, 32, 34, 426, 5831, 1, 9148, 121, 251, 1059, 53, 99, 43, 1686], [97, 29, 181, 36, 143, 108, 137, 1191, 62, 41, 110, 805, 29, 2, 181, 10, 696, 4, 7, 425, 3, 1009, 11, 33, 32, 7, 336, 3, 37, 163, 37, 10, 33, 32, 1157, 33, 683, 7, 2361, 7, 2, 91, 68, 44, 246, 353, 3, 31, 67, 273, 39, 118, 158, 33, 57, 68, 335, 1090, 33, 32, 192, 1191, 118, 9149, 37, 1, 1, 23, 43, 72, 31, 30, 83, 5832, 284, 38, 83, 562, 97, 384, 57, 207, 99, 8, 384, 143, 9150, 62, 245, 3446, 23, 34], [2012, 11, 631, 18, 1815, 534, 495, 23, 102, 4, 15, 2012, 11, 631, 18, 1815, 534, 495, 23, 102, 4, 15], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [201, 15, 327, 278, 4, 759, 155, 6, 45, 494, 201, 15, 327, 278, 155, 6, 45, 494, 83, 999, 42, 327, 278, 129, 15, 52, 26, 83, 999, 1703, 30, 1706, 101], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 5833, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 5833, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [479, 2, 410, 614, 68, 15, 6, 4, 145, 722, 172, 56, 5834, 5835, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 122, 2, 24, 78], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5836, 22, 4, 5, 19, 12, 5, 5836, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [121, 1110, 2, 5837, 121, 1110, 2, 5837], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [3, 181, 32, 18, 5838, 5839, 65, 884, 98, 4, 33, 41, 1069, 23, 6, 3238, 5840, 18, 299, 53, 390, 6, 4, 162, 14, 391, 662], [25, 224, 11, 9151, 9152, 137, 13, 125, 20, 13, 25, 3], [51, 250, 2, 2870, 3, 197, 263, 864, 10, 1442, 88, 1246, 21, 1435, 163, 9153, 71, 209, 88, 690, 31, 128, 126, 8, 944, 9154, 30, 88, 1, 1805, 128, 126, 7, 128, 126, 944, 1303, 1071, 521, 9, 465, 1, 543, 48, 2, 2878, 1042, 25, 2563, 2027, 1301, 9, 465, 1, 28, 8, 1754, 614, 68, 23, 1067, 389, 4, 887], [2217, 111, 1, 1, 1, 1, 229, 6, 8, 45, 308, 353, 9155, 31, 10, 307, 935, 1, 1, 1, 1, 135], [25, 224, 11, 3705, 3706, 137, 13, 125, 20, 13, 25, 3], [15, 13, 25, 26, 15, 13, 25, 26], [76, 31, 146, 39, 8, 95, 158, 3, 76, 11, 17], [79, 32, 63, 64, 77, 499, 32, 79, 32, 63, 64, 77, 499, 32], [82, 20, 400, 11, 9156, 9157, 28, 59, 5841, 7, 5841, 1529, 674, 9158, 1489, 9159, 2, 57, 867, 2062, 288, 2, 211, 82, 20], [123, 51, 1603, 10, 3, 652, 229, 4, 457, 51, 137, 155, 204, 4336, 4337, 124, 9160, 9161, 9162, 9163, 9164, 9165, 2533, 2534, 9166, 9167, 5742, 5743, 9168, 9169, 9170, 9171, 291, 292, 243, 419, 210, 3186, 83, 49, 164, 23, 123, 51, 1603, 10, 3, 652, 229, 4, 457, 51, 137, 155, 204, 151, 6, 72, 37, 71, 44, 2328, 98, 264, 118, 302, 18, 3, 3234, 67, 106, 8, 21, 2633, 80, 2, 3, 96, 167, 1708, 167, 554, 8, 614, 68, 23, 6, 33, 123, 62, 316, 9172], [914, 324, 1275, 4, 15, 63, 8, 3, 179, 55, 1, 1, 914, 324, 1275, 4, 15, 1680, 8, 5842, 91, 37, 71, 96, 1, 1, 1, 1, 30, 135, 750], [61, 94, 90, 24, 48, 531, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [82, 20, 73, 117, 1665, 14, 622, 258, 111, 1, 1, 273, 49, 8, 84, 189, 73, 117, 4, 82, 20, 14, 353, 3, 210, 12, 3, 1131, 1, 1, 1, 1, 30, 1156], [38, 123, 2, 29, 15, 374, 307, 208, 21, 1, 1, 179, 31, 1676, 257, 38, 123, 2, 199, 3, 447, 1, 1, 14, 50, 2, 795, 3, 31, 510, 54, 2, 373, 7, 436, 3, 171, 10, 1, 1, 135], [57, 59, 5843, 37, 208, 491, 1823, 1, 1, 151, 6, 3687, 524, 4, 5843, 18, 33, 57, 59, 1, 1, 1442, 57, 59, 1, 57, 59, 2, 43, 274, 1, 611, 106, 3, 807], [5, 551, 2299, 315, 22, 4, 5, 19, 12, 5, 551, 2299, 315, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [58, 94, 82, 1826, 432, 48, 531, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [110, 63, 10, 87, 121, 51, 447, 64, 98, 169, 1801, 142, 567, 420, 39, 8, 95, 158, 87, 53, 21, 9173, 56, 9174, 9175, 182, 213, 130, 155, 204, 117, 107, 214, 146, 63, 10, 87, 121, 51, 447, 64, 98, 169, 1801, 142, 567, 420, 39, 8, 95, 158, 87, 53, 21, 1527, 541, 116, 183, 39, 8, 118, 1745, 10, 148, 4, 382, 108], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [148, 831, 30, 315, 2360, 1717, 162, 9176, 67, 2380, 3239, 655, 5466, 857, 1050, 831, 451, 2717, 376, 1, 416, 382, 928, 107, 1, 1, 183, 9177, 1272, 167, 6, 9178, 39, 23, 43, 1312, 9179, 62, 264, 9180, 9181], [9182, 118, 23, 71, 51, 335, 2, 95, 10, 2, 15, 137, 33, 76, 5844, 1319, 1825, 507, 2711, 2712, 1530, 1064], [110, 38, 73, 148, 7, 248, 2, 95, 158, 56, 3608, 3609, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 73, 148, 7, 248, 2, 95, 158, 322, 3, 223, 5368, 48], [82, 20, 31, 82, 20, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 3410, 3, 28, 10, 288, 2, 199, 3, 82, 20, 1, 31, 321], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [27, 2, 225, 20, 49, 27, 2, 2634, 3, 225, 20, 10, 3, 96, 183, 23, 454, 6, 3707, 349, 7, 219, 2, 225, 20, 389, 3, 591, 18, 310, 1, 14, 50], [591, 18, 713, 888, 365, 1364, 1, 1, 49, 27, 2, 2634, 3, 888, 11, 3, 96, 23, 6, 3707, 349, 7, 219, 2, 225, 20, 389, 3, 591, 18, 310, 1, 14, 50], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [188, 15, 88, 143, 2390, 119, 4, 1574, 3708, 339, 167, 2116, 2129, 7, 3, 119, 6, 8, 1071, 188, 15, 88, 143, 2390, 119, 4, 1574, 3708, 339, 167, 2116, 2129, 7, 3, 119, 6, 8, 1071, 1, 14, 663, 424, 23, 6, 1361, 7, 398, 3, 123], [209, 88, 4437, 41, 217, 31, 146, 39, 35, 50, 80, 236, 98, 88, 681, 4, 33, 41, 1964], [34, 70, 10, 258, 34, 70, 10, 258], [395, 31, 79, 395, 31, 395, 31, 79, 395, 31], [34, 70, 10, 258, 34, 70, 10, 258], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [1969, 1183, 10, 422, 88, 1969, 1183, 10, 422, 88], [24, 417, 20, 6, 4402, 98, 322, 294, 82, 20, 21, 99, 8, 269, 666, 37, 9, 598, 2, 11, 32, 670, 89, 8, 1314, 184, 32, 107, 199, 2024, 3240], [209, 88, 690, 41, 31, 146, 54, 2, 38, 3, 88, 681, 543, 2, 33, 142], [175, 1340, 6, 524, 2, 326, 2211, 398, 2, 43, 84, 2, 199, 5845, 175, 1340, 6, 524, 2, 326, 2211, 398, 2, 43, 84, 2, 199, 5845, 1, 1, 206, 9183, 9184, 144, 2, 2878, 302], [25, 3, 13, 11, 5846, 5847, 10, 15, 160, 872, 25, 3, 13, 11, 5846, 5847, 10, 15, 160, 872], [5848, 982, 37, 55, 1, 185, 35, 14, 50, 80, 10, 1125, 3, 5848, 2, 100, 15, 36, 33, 9185, 519, 1, 1, 1, 1, 1, 135], [307, 169, 13, 119, 39, 392, 4, 2, 87, 10, 382, 4, 23, 65, 942, 389, 7, 1416, 21, 2, 29, 33, 142, 7, 544, 287, 4438, 4439, 1529, 674, 149, 685, 24, 203, 730, 24, 144], [34, 70, 10, 258, 34, 70, 10, 258], [378, 501, 378, 6, 27, 2, 766, 72, 324, 171, 53, 558, 8, 323, 4, 1772, 2311, 2312, 124, 291, 292, 550, 324, 171, 65, 141, 1260, 365, 1364, 248, 1125, 72, 324, 171, 11, 9186, 961, 331, 21, 11, 501, 378, 631, 7, 21, 6, 8, 323, 98, 4, 283, 1772, 828, 9187, 5849, 501, 378, 7, 283, 101, 393, 713, 1311, 3099, 829, 219, 2, 43, 399, 4, 3, 52, 11, 80, 2, 43, 84, 322, 324, 440, 10, 423, 1155, 4, 3, 887, 51, 38, 330, 210, 30, 338, 1376, 9188, 9189, 716, 180, 6, 10, 1316, 310, 104, 967, 4, 23, 1314, 6, 3127, 2610], [251, 98, 2635, 273, 6, 8, 5850, 251, 98, 2635, 8, 9190, 310, 27, 2, 434, 77, 4440, 2033, 3538, 444, 636], [1327, 1327, 1, 1, 623, 37, 1327, 219, 2, 43, 1320, 389, 591, 18, 310], [27, 2, 29, 82, 20, 208, 491, 1, 27, 2, 29, 82, 20, 1, 177, 37, 71, 806, 1, 102, 295, 2, 353], [1205, 88, 782, 4, 41, 1205, 88, 782, 4, 41], [27, 2, 95, 4, 2, 79, 2, 70, 13, 10, 13, 125, 20, 27, 2, 95, 4, 2, 79, 2, 70, 13, 10, 13, 125, 20], [209, 88, 690, 31, 146, 38, 805, 3, 88, 1964, 4, 41], [15, 26, 13, 25, 15, 26, 13, 25], [5, 3579, 22, 4, 5, 19, 12, 5, 3579, 22, 4, 5, 19, 12], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 83, 494, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [110, 49, 27, 2, 247, 88, 690, 144, 56, 4441, 4442, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 27, 2, 247, 88, 690, 144], [27, 2, 46, 2, 417, 20, 53, 13, 562, 27, 2, 46, 2, 417, 20, 53, 13, 562], [24, 235, 108, 453, 24, 235, 108, 453], [28, 5851, 5852, 6, 8, 84, 2, 29, 15, 26, 111, 101, 1, 1, 54, 104, 50, 1, 1, 102, 35, 2, 114, 53, 28, 5851, 5852, 6, 8, 84, 2, 29, 15, 26, 4, 878, 184, 6, 1395, 911, 2, 766, 840], [395, 407, 31, 146, 55, 33, 115, 6, 3563, 66, 437, 21, 67, 151, 6, 9, 726, 1262, 395, 407, 6, 8, 430, 861, 185, 35, 50, 80], [13, 25, 102, 13, 25, 102], [26, 13, 25, 56, 9191, 9192, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 95, 158, 535], [82, 20, 29, 403, 82, 20, 29, 403], [1902, 101, 286, 198, 11, 1773, 1902, 6, 315, 39, 8, 189, 4357, 131, 4443, 143, 316, 110, 5853, 77, 44, 39, 8, 189, 143, 73, 9193, 143, 316, 23, 6, 10, 3, 160, 52, 3, 1773, 4094, 997, 251, 30, 3, 177, 31, 111, 3, 254, 433, 3, 1773, 409, 1333, 9194, 10, 6, 315, 3, 1902, 38, 2, 410, 21, 3709, 207, 21, 355, 1314, 18, 290, 2266, 286, 198, 39, 35, 270, 444, 253], [1686, 599, 3095, 40, 749, 1023, 1686, 599, 3095, 1, 1, 1, 54, 29, 2, 40, 749, 1023, 173, 40, 749, 1023, 10, 33, 142, 52], [13, 7, 82, 20, 38, 270, 33, 13, 2365, 7, 54, 50, 164, 251, 158, 161, 571], [14, 544, 3, 2619, 26, 841, 544, 3, 2619, 36, 3, 5854, 26, 841], [2000, 171, 1692, 503, 469, 70, 70, 11, 1345, 1508, 1190, 8, 45, 11, 80, 14, 263, 44, 49, 496, 72, 37, 71, 51, 250, 2, 70, 1345, 1508, 1190, 51, 137, 3, 1692, 503, 469, 70, 2000, 447, 14, 91, 1210, 18, 37, 71, 38, 183, 163, 3, 205, 242, 173, 44, 63, 1810, 49, 84, 2, 119, 3, 349, 780, 159, 294, 482, 249, 1641, 526, 1262, 44, 21, 6, 299, 123], [88, 297, 55, 250, 2, 463, 3, 235, 88, 297, 10, 383, 7, 329, 250, 2, 373, 5855, 4, 3, 47, 243, 1282, 104, 78, 6, 8, 178, 62, 89, 8, 295, 23, 220, 9195, 9196, 529, 685], [97, 29, 40, 82, 220, 36, 76, 24, 137, 9197, 203, 1167, 8, 833, 97, 29, 40, 82, 220, 36, 76, 24, 137, 4444, 203, 1167, 8, 833, 14, 106, 8, 574, 2, 9198, 142, 9199, 39, 29, 3, 40, 82, 220, 137, 165, 392, 9200, 5856, 1281, 1186, 3, 142, 7, 21, 507, 4444, 39, 392, 10, 2, 3, 142, 7, 199, 5856, 2, 392, 10, 2, 3, 76, 7, 21, 507, 21, 89, 8, 134, 51, 4444, 9201, 10, 2, 3, 76, 9202, 39, 29, 165, 605, 40, 40, 355, 97, 29, 40], [914, 20, 33, 120, 63, 274, 2, 5857, 5858, 4, 67, 33, 914, 6, 273, 601, 2, 33, 1253, 120, 9203, 9204, 248, 2, 119, 4, 914, 20, 67, 21, 6, 4445, 77, 39, 23, 43, 274, 2, 391, 120, 4441, 4442, 120, 191, 3098, 4446], [50, 30, 287, 82, 20, 37, 111, 101, 1, 1, 185, 35, 14, 50, 28, 4447, 4448, 2, 100, 287, 3, 82, 20, 82, 20, 1, 1, 180, 187, 1606, 3, 173, 4, 48, 1, 37, 3, 2822, 56, 173, 9205, 3, 173, 6, 30, 37, 1, 1, 23, 71, 664, 2, 83, 287, 3, 48, 4, 377, 356, 1161, 3, 167, 30, 37, 7, 3, 173, 1607, 1, 1, 270, 80, 253, 68, 35, 38, 316, 2523, 35, 39, 129, 30, 28], [27, 2, 46, 2, 115, 79, 32, 64, 77], [397, 792, 37, 4, 15, 397, 792, 37, 4, 15], [46, 2, 1045, 5859, 29, 15, 5860, 13, 119, 102, 36, 120, 46, 2, 1045, 5859, 29, 15, 5860, 13, 119, 102, 36, 120], [148, 8, 1506, 98, 9206, 9207, 1359, 44, 180, 9208, 241, 4405, 10, 283, 148, 576, 7, 112, 276, 3, 348, 6, 8, 1506, 98, 7, 180, 1007, 2, 118, 23, 425, 7, 1312, 68, 1099], [14, 189, 72, 1327, 11, 3, 4305, 3241, 955, 14, 91, 772], [34, 70, 34, 70], [946, 3, 32, 9209, 307, 32, 65, 562, 10, 2117, 1, 54, 2, 946, 3, 32, 599, 3, 591, 18, 3, 1324, 1, 1, 54, 23, 588, 53, 754, 53, 285, 53, 3, 223, 6, 4266, 30, 1744, 44, 42, 442, 2, 72, 223, 448, 6, 2333, 3, 24, 310, 1, 14, 3105], [209, 88, 4437, 1172, 37, 71, 329, 590, 41, 209, 88, 4437, 1172, 37, 71, 329, 590, 41], [54, 72, 70, 10, 258, 54, 72, 70, 10, 258], [1704, 95, 475, 169, 1733, 672, 2811, 1704, 95, 475, 169, 1733, 672, 2811], [1003, 400, 1003, 400], [1390, 245, 205, 242, 403, 1390, 245, 205, 242, 403], [90, 127, 8, 1385, 2, 2, 106, 302, 655, 169, 1804, 14, 91, 163, 2515, 4449, 6, 328, 67, 127, 6, 8, 323, 98, 4, 4449, 2, 106, 302, 516, 169, 655, 600, 5861, 42, 4, 179, 134, 314, 1, 33, 4391, 6, 44, 3, 1831, 5, 1687, 541, 858], [74, 407, 8, 590, 861, 90, 1762, 74, 530, 21, 219, 830, 399, 67, 5862, 1373, 2, 70, 62, 729, 303], [82, 20, 110, 49, 1085, 9210, 31, 30, 33, 15, 82, 20, 49, 8, 84, 2, 452, 1050, 287, 492, 7, 4450, 23, 6, 2024, 733, 4, 33, 1519, 7, 27, 2, 421, 143, 134, 2050, 21, 6, 321, 23, 31, 1990, 541, 116, 72, 606, 1990, 2, 15, 62, 82, 20], [813, 57, 1701, 1702, 124, 291, 292, 1145, 550, 35, 755, 1217, 104, 32, 111, 6, 23, 1643, 57, 62, 9211, 1701, 1702, 1847, 854, 220, 1371, 2131, 5863, 2002, 181, 49, 1701, 1702, 35, 755, 1217, 104, 32, 208, 181, 28, 53, 934, 18, 3, 299, 9212, 2, 1705, 83, 57, 195, 1379, 3, 2889, 83, 57, 195, 42, 9213, 2, 38, 423, 32, 222, 901, 53, 653, 66, 3, 2131, 5863, 2002, 35, 42, 581, 66, 275, 2, 1217, 104, 32, 745, 655, 207, 53, 8, 2, 38, 104, 57, 32, 9214, 7, 584, 36, 3, 2889, 57, 78, 308, 1217, 104, 57, 32, 2, 38, 104, 32, 901, 14, 413, 581], [54, 1020, 74, 236, 98, 110, 49, 250, 2, 122, 2, 58, 74, 1020, 651, 4, 3, 1954, 314, 33, 142, 6, 290, 210, 2399, 3, 391, 407, 2, 229, 2, 3, 74, 14, 525], [41, 672, 2811, 31, 9215, 672, 5864, 42, 456, 897, 443, 381, 1152, 51, 966, 381, 982, 6, 331, 1278, 210, 11, 740, 318, 7, 415, 66, 9216, 5865, 30, 443, 5864, 11, 179, 381, 7, 9217, 2811, 541, 483, 98, 2, 3, 381, 7, 1278, 9218, 14, 386, 50, 510], [142, 4, 20, 7, 3242, 6, 75, 142, 4, 20, 7, 3242, 6, 75], [95, 4, 2, 41, 63, 8, 3, 179, 95, 4, 2, 41, 112, 811, 13, 8, 2890, 2, 1240], [1365, 667, 812, 2, 41, 1365, 667, 812, 2, 41], [9219, 665, 323, 28, 3530, 31, 1092, 36, 166, 113, 14, 91, 163, 1630], [24, 314, 224, 106, 8, 134, 54, 833, 510, 111, 350, 460, 4, 24, 314, 7, 284, 2552, 45, 39, 612, 14, 121, 80, 53, 754, 53, 285, 21, 246, 43, 2112, 68, 3, 568, 448, 1091, 80, 65, 29, 2, 202, 675, 411, 1262, 23, 43, 3, 123], [32, 351, 64, 32, 351, 64], [82, 20, 211, 102, 933, 24, 115, 79, 2218, 52, 9220, 5866], [27, 2, 463, 41, 27, 2, 463, 41], [54, 2, 2009, 584, 245, 54, 2, 2009, 584, 245], [2491, 2046, 31, 3119, 55, 1, 1, 1, 47, 42, 843, 72, 31, 18, 3, 96, 167, 554, 14, 50, 166, 288, 2, 353, 23, 31, 47, 42, 343, 307, 2, 421, 23, 9221, 2194], [194, 26, 133, 100, 11, 2636, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 2891, 7, 14, 586, 3, 179, 2402, 18, 5867, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1232, 1, 1, 896, 3, 31, 14, 100, 3, 26, 133, 2, 15, 7, 269, 194, 46, 131, 2, 15, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [361, 313, 3710, 657, 2075, 92, 69, 854, 7, 361, 313, 3710, 657, 2075], [55, 14, 1008, 398, 2892, 37, 249, 135, 750, 55, 1, 1, 14, 1008, 398, 1, 1, 2892, 37, 1, 1, 249, 1, 1, 135], [193, 30, 303, 5868, 348, 255, 1047, 43, 2867, 2868, 193, 30, 303, 5868, 348, 255, 1047, 43, 2867, 2868], [295, 255, 1263, 950, 951, 295, 255, 1263, 950, 951], [37, 51, 5869, 1287, 66, 28, 5870, 9222, 622, 57, 331], [715, 3, 24, 200, 4, 40, 715, 3, 24, 200, 4, 40], [550, 35, 755, 1217, 104, 32, 208, 21, 50, 1, 1, 351, 96, 57, 85, 264, 106, 6, 21, 1495, 2512, 62, 415, 2390, 184, 9, 54, 2, 1674, 1, 1, 14, 1758, 1, 1, 135], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [738, 121, 738, 121], [54, 9223, 140, 7, 57, 609, 425, 9224, 9225, 9226, 9227, 3169, 3170, 5871, 5872, 9228, 9229, 5559, 4319, 9230, 9231, 5557, 5558, 243, 376, 148, 62, 208, 711, 49, 244, 137, 3, 73, 148, 7, 3, 177, 31, 843, 9, 1595, 123, 9232, 9233, 1670, 8, 45, 861, 1862, 82, 9234, 140, 8, 178, 9235, 9236, 140, 8, 178, 4, 181, 241, 765, 8, 45, 861, 9237, 1175, 1151, 140, 275, 14, 106, 3, 807, 135], [95, 10, 792, 37, 95, 10, 792, 37], [34, 70, 965, 34, 70, 965], [82, 20, 8, 45, 208, 491, 1, 1, 9238, 9239, 6, 8, 84, 2, 29, 283, 82, 20, 180, 65, 653, 11, 50, 183, 36, 21, 67, 1362, 341, 680, 65, 1095, 3711, 14, 50, 5873, 2, 118, 29, 2, 82, 20, 7, 211, 3, 179, 12, 1131, 1, 1, 1, 1, 135], [738, 121, 738, 121], [1956, 947, 5874, 342, 1820, 2543, 3187, 5875, 5876, 74, 39, 8, 43, 5877, 91, 377, 1956, 947, 5874, 342, 1820, 2543, 3187, 5875, 5876, 1, 2059, 1106, 115, 1384, 2838, 9240, 960, 262, 9241, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 947, 1, 1154, 665, 18, 3, 123, 74, 1428, 454, 836, 116, 2, 176, 37, 1112, 37, 878, 489, 276, 10, 3, 74, 6, 991, 1731, 18, 420, 89, 8, 50, 74, 39, 8, 43, 5877, 91, 377, 21, 1100, 265, 21, 175, 933, 1442, 74, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 131, 36, 29, 3712, 333, 1, 225, 20, 186, 263, 160, 127, 449, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 79], [957, 103, 6, 346, 2, 508, 923, 7, 3713, 3714, 49, 2879, 2880, 1533, 914, 324, 120, 55, 5784, 840, 183, 542, 134, 11, 508, 9, 7, 342, 1079, 556, 714, 3713, 3714, 447, 82, 1487, 1848, 1943, 1849, 1137, 1138, 1082, 1141, 1106, 3713, 3714, 2133, 9242, 72, 2879, 2880, 2286, 914, 324, 120, 55, 914, 324, 120, 542, 134, 342, 1079, 556, 714, 3713, 3714, 447, 82, 1487], [76, 29, 11, 5878, 5879, 5880, 55, 1, 1, 14, 236, 98, 76, 29, 11, 5878, 5879, 5880, 1, 9243, 65, 9244, 868, 148, 4451], [41, 63, 8, 1733, 13, 28, 119, 3, 13, 294, 76, 1, 28, 63, 164, 13, 1553], [2403, 2637, 1374, 872, 1692, 2, 1216, 713, 131, 7, 1662, 251, 2, 2638, 3243, 47, 42, 4, 3, 312, 18, 2269, 1860, 4, 3147, 47, 54, 2, 2388, 553, 2403, 2637, 1374, 872, 1692, 2, 1216, 713, 73, 780, 149, 131, 36, 1692, 66, 1172, 341, 3244, 47, 54, 2, 1044, 3, 521, 2, 160, 7, 1551, 3, 131, 310, 1737, 746, 3, 131, 6, 4061, 47, 99, 1662, 251, 3, 447, 2637, 1374, 872, 1692, 2, 1551, 2638, 131], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [193, 30, 87, 7, 41, 28, 2893, 193, 30, 87, 7, 41, 28, 2893], [193, 30, 87, 7, 41, 2893, 193, 30, 87, 7, 41, 2893], [39, 35, 14, 118, 1062, 5881, 607, 257, 197, 18, 166, 5882, 39, 35, 14, 118, 1062, 5881, 607, 257, 197, 18, 166, 5882], [161, 2212, 47, 682, 1915, 429, 37, 71, 660, 1248, 6, 346, 161, 2212, 47, 682, 1915, 429, 37, 71, 660, 1248, 6, 346], [15, 29, 31, 9245, 2, 2636, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 2891, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1232, 7, 14, 586, 3, 2402, 18, 28, 59, 5867, 896, 3, 31, 14, 269, 194, 46, 871, 7, 70, 4, 2636, 1705, 133, 594, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [2850, 1816, 37, 1008, 111, 101, 1, 1, 308, 189, 34, 7, 574, 21, 2, 80], [1489, 751, 6, 984, 1489, 751, 6, 984, 214], [5, 654, 3486, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 49, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 5, 654, 3486, 22, 4, 5, 19, 12], [2850, 1816, 37, 1008, 208, 21, 101, 1, 1, 308, 833, 21, 482, 37, 53, 96, 745, 2, 2639, 1778, 11, 1953, 5883, 1, 1, 1, 2850, 482, 65, 8, 141, 1751, 1, 1, 1, 1, 1, 1776, 2850, 482, 1, 1, 135], [76, 76, 4452, 4453, 2622, 1123], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 766, 640, 57, 18, 4387, 4388, 4, 209, 88, 55, 1, 14, 766, 640, 57, 18, 4387, 4388, 4, 209, 88, 409, 7, 5884, 57], [461, 8, 350, 55, 101, 1, 185, 35, 14, 114, 3, 37, 7, 50, 166, 47, 97, 189, 3, 225, 20, 11, 23, 186, 11, 1300, 411, 18, 23, 37, 7, 21, 97, 43, 1766, 1, 1, 104, 307, 295, 6, 524], [15, 6, 343, 278, 14, 353, 3, 31, 10, 307, 935, 111, 1, 1, 15, 6, 343, 278, 14, 353, 3, 31, 10, 307, 935, 1, 1, 1, 135], [110, 38, 805, 33, 29, 2, 260, 20, 4, 88, 53, 332, 1001, 96, 1636, 1637, 124, 291, 292, 2404, 550, 1704, 95, 720, 313, 38, 805, 33, 29, 2, 260, 20, 4, 88, 53, 332, 1001, 96, 1636, 1637, 149, 120, 1338, 1636, 1637, 49, 1636, 1637, 1704, 95, 720, 313, 9246, 394, 1286, 812, 1636, 1637, 1286, 3645, 1286, 437, 521, 4, 218, 672, 1810, 2, 78, 239, 455, 399, 4, 445, 218, 1286, 437, 521, 4, 218, 1103, 1810, 2, 78, 239, 455, 399, 4, 445, 218, 1452, 36, 78, 438, 274, 633, 1517, 4, 1130, 218, 1286, 437, 521, 4, 218, 1091, 1810, 2, 78, 239, 455, 399, 4, 445, 218, 1286, 437, 521, 4, 218, 1744, 1810, 2, 78, 239, 455, 399, 4, 445, 218, 1286, 78, 521, 4, 218, 4454, 1939, 672, 1452, 36, 78, 37, 1286, 218, 35, 106, 8, 38, 3230, 1279, 2, 1752, 23, 1072, 10, 23, 1182, 91, 3, 218, 129, 62, 104, 52, 718, 130, 480, 136, 3245, 11, 316, 136, 10, 23, 639, 413, 3, 919, 96, 588, 130, 480, 1130, 196, 1433, 528, 2076], [41, 8, 937, 41, 8, 937], [1195, 32, 602, 77, 28, 3671, 6, 64, 77, 541, 483], [27, 2, 46, 2, 417, 20, 9247, 6, 27, 2, 46, 2, 417, 20, 2169, 2, 91, 68, 197, 18, 3, 1253, 224, 224, 304, 4, 15, 63, 304, 329, 1483, 4, 13, 125, 20], [54, 50, 4, 811, 13, 4, 13, 125, 20, 13, 120, 54, 50, 4, 811, 13, 4, 13, 125, 20, 13, 120], [54, 5885, 452, 29, 11, 28, 205, 5886, 4, 26, 52, 54, 5885, 452, 29, 11, 28, 205, 5886, 4, 26, 52], [41, 210, 9248, 41, 210, 1, 97, 100, 36, 115, 1, 307], [31, 4, 82, 20, 208, 491, 1, 1, 63, 250, 2, 909, 82, 20, 4, 52, 169, 590, 83, 3, 222, 11, 503, 5887, 222, 82, 20, 6, 1071, 96, 6, 3, 167, 554, 184, 468, 83, 222, 2154, 1, 1, 67, 49, 250, 2, 909, 23, 82, 20, 10, 78, 2733, 72, 37, 11, 184, 167, 554, 6, 163, 611, 366, 158, 23, 611, 353, 23, 662, 1, 1, 83, 222, 2154, 11, 780, 4, 205, 242, 1589, 1, 1, 1, 167, 554, 11, 37], [25, 224, 11, 9249, 9250, 137, 13, 125, 20, 13, 25, 3], [5, 645, 20, 260, 20, 409, 203, 22, 4, 5, 19, 12, 49, 37, 9251, 9252, 1, 1, 5, 645, 20, 260, 20, 409, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12], [15, 278, 15, 52, 6, 343, 278, 4, 358, 862, 1098, 5888, 3409, 2, 205, 242, 3, 58, 180, 205, 242, 3, 58, 21, 393, 657, 2298, 51, 769, 15, 78, 7, 180, 114, 3, 131, 36, 4455, 151, 201, 229, 1035, 7, 180, 1098, 358, 113, 15, 6, 278, 454, 207, 14, 114, 3, 78, 7, 795, 3, 31], [15, 39, 95, 10, 15, 659, 7, 47, 39, 95, 10, 172, 1, 389, 3, 2219, 21, 1571, 567, 2196, 2, 1559, 143, 354, 4, 15], [820, 118, 2012, 11, 631, 18, 1815, 516, 495, 1239, 18, 420, 110, 9253, 5889, 36, 358, 113, 39, 421, 241, 840, 631, 54, 295, 1, 33, 57], [266, 307, 503, 31, 208, 101, 363, 50, 2, 2730, 3, 441, 503, 18, 249, 47, 54, 2, 189, 473, 11, 23, 349, 36, 113, 2, 113, 7, 558, 441, 503, 355, 429, 53, 363, 50, 2, 2730, 21, 851, 1230, 1206, 21, 175, 307, 732, 1498, 4, 1596, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [41, 97, 46, 11, 2267, 55, 1, 1, 14, 50, 97, 46, 41, 10, 33, 2267], [1375, 859, 8, 45, 1375, 859, 8, 45, 9, 61, 11, 148], [5890, 106, 976, 11, 461, 151, 6, 461, 4, 113, 1, 172, 47, 54, 598, 21, 77, 67, 47, 39, 106, 976, 14, 50], [361, 113, 361, 768, 24, 262, 1187, 3715, 29, 277, 24, 144, 7, 277, 6, 75, 361, 113, 361, 768, 24, 262, 1187, 3715, 29, 277, 24, 144, 6, 75, 768, 24, 262, 1187, 3715, 29, 277, 24, 144, 651, 12, 361, 1304, 6, 75, 238, 75, 10, 1011, 7, 1011, 133, 2, 24, 262, 1187, 3715, 29, 277, 10, 24, 262, 1187, 522, 1337, 277, 24, 144], [307, 249, 208, 83, 246, 35, 14, 795, 3, 31, 2, 4456, 5699, 536, 54, 2, 106, 556, 30, 3614, 866, 265, 96, 15, 1359, 2555, 32, 89, 8, 1196, 4, 24, 252, 14, 270, 80, 253, 288, 2, 796, 21, 310, 6, 3, 591, 18, 713, 207, 14, 795, 21, 510], [740, 7, 149, 42, 8, 84, 2, 189, 1852, 268, 272, 245, 7, 4338, 497, 36, 740, 7, 149, 284, 42, 8, 84, 2, 189, 1852, 261, 42, 3, 372, 532, 540, 18, 3, 5525, 7, 23, 6, 2353, 2077, 2, 4154, 149, 7, 9254, 518, 740], [110, 49, 8, 84, 2, 200, 740, 417, 20, 3716, 46, 8, 45, 3246, 29, 104, 32, 65, 141, 584, 14, 129, 50, 564, 1, 1, 79, 26, 26, 26, 13, 125, 20, 872, 374, 260, 20, 88, 690, 41, 449, 83, 42, 494], [209, 174, 949, 1566, 209, 174, 949, 1566], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [39, 35, 14, 50, 5891, 384, 4, 3, 1327, 96, 222, 18, 3, 31, 42, 96, 23, 167, 554, 356, 8, 614, 288, 1346, 39, 35, 14, 50, 5891, 384, 4, 3, 1327, 96, 222, 18, 3, 31, 42, 96, 23, 167, 554, 356, 8, 614, 288, 2, 50], [102, 2, 647, 483, 1202, 1194, 1777, 36, 431, 549, 11, 117, 4, 113, 239, 102, 2, 647, 483, 1202, 1194, 1777, 36, 431, 549, 11, 117, 4, 113, 239], [88, 50, 524, 110, 49, 8, 164, 33, 260, 82, 418, 7, 21, 530, 526, 38, 29, 2, 9255, 120, 440, 14, 398, 510, 1636, 1637, 149, 120, 1338], [87, 1128, 2, 8, 545, 1042, 87, 1128, 2, 8, 545, 1042, 86], [209, 88, 46, 31, 209, 88, 46, 31, 267, 2, 3, 28, 52, 137, 487, 28, 6, 10, 3, 24, 58, 51, 28, 1639, 2, 46, 2, 3, 209, 88, 558, 1435, 911, 37], [34, 70, 10, 2358, 34, 258, 34, 70, 10, 2358, 34, 258], [90, 24, 17, 90, 90, 652, 29, 277, 531, 75, 311, 2, 9256, 372, 1948, 47, 330, 241, 1083, 9257, 884, 294, 372, 1948, 7, 1571, 77, 434, 10, 3, 348, 58], [415, 229, 8, 45, 4, 419, 415, 229, 8, 45, 4, 419], [27, 2, 211, 235, 297, 10, 383, 27, 2, 211, 235, 297, 10, 383, 86], [1773, 134, 4457, 46, 31, 1773, 134, 4457, 46, 31], [14, 647, 666, 36, 623, 55, 1, 1, 14, 1386, 666, 36, 33, 623, 23, 666, 9, 345, 1169, 7, 264, 8, 43, 323, 98, 4, 33, 623, 91, 163, 167, 554], [79, 32, 602, 77, 31, 79, 32, 602, 77, 31], [210, 30, 374, 47, 42, 83, 290, 210, 30, 374, 10, 161, 571, 49, 10, 1316, 11, 1162, 67, 14, 134, 30, 5892, 53, 3, 1287, 11, 164, 23, 833, 47, 38, 1916, 171, 44, 2405, 374, 2, 2107, 4, 136, 21, 65, 141, 45, 494, 67, 8, 47, 1089, 2, 38, 210, 51, 47, 493, 548, 3, 1229, 83, 252, 6, 5893, 77, 51, 47, 304, 2, 43, 84, 2, 355, 465, 4, 7, 2870, 1229, 83, 7, 43, 588, 248, 5894, 3, 131, 221, 11, 666, 894, 36, 433, 23, 6, 3247, 36, 67, 51, 106, 23, 118, 51, 1229, 83, 8, 131, 521, 51, 2034, 12, 3, 452, 972, 18, 3, 3683, 7, 1831, 2894, 42, 1180, 143, 345, 5892, 14, 5895, 3, 2895, 173, 4, 3, 666, 894, 2895, 218, 3682, 5370, 53, 3, 205, 242, 197, 51, 21, 497, 35], [417, 20, 210, 11, 149, 594, 14, 43, 1995, 44, 149, 3689, 7, 117, 42, 8, 84, 3248, 102, 666, 294, 417, 20, 11, 149, 594], [74, 31, 55, 1, 1, 74, 1746, 4, 3, 457, 2002, 6, 8, 867, 3249, 2, 161, 245, 39, 612, 366, 158, 23, 14], [206, 1463, 9258, 2, 457, 226, 3165, 3166, 14, 206, 9259, 9260, 5516, 2, 2522, 7, 202, 675, 3, 3079, 4, 226, 6, 2, 43, 83, 3454], [1970, 1521, 30, 227, 1970, 1521, 30, 227], [97, 118, 158, 3, 555, 810, 2, 504, 555, 388, 555, 810, 99, 583, 80, 72, 37, 51, 250, 2, 504, 555, 93, 118, 72, 1003, 37], [54, 2, 90, 194, 29, 2, 4458, 5896, 2, 736, 5897, 52, 304, 66, 3, 90, 2330, 54, 2, 90, 194, 29, 2, 4458, 5896, 2, 736, 5897, 52, 184, 6, 934, 18, 3, 9261, 304, 66, 3, 90, 2330, 4458, 6, 72, 21, 1516, 304, 4, 3, 887, 2, 189, 2640, 2641, 7, 529, 2, 295, 3, 191, 10, 3, 160, 641, 408, 79, 59, 63, 9262, 390, 99, 1474, 76, 29, 183, 2199, 30, 408, 2282, 1473, 2, 736, 3, 744, 603, 23, 52, 65, 141, 75, 11, 655, 7, 318, 21, 1123, 12, 90, 7, 90, 38, 8, 141, 84, 2, 353], [11, 646, 37, 71, 111, 21, 1, 14, 50, 10, 23, 189, 472, 11, 461], [88, 400, 88, 400], [79, 13, 25, 79, 13, 25], [61, 94, 403, 61, 94, 403], [25, 224, 11, 9263, 9264, 137, 13, 125, 20, 13, 25, 3], [339, 121, 339, 121], [79, 13, 25, 102, 79, 13, 25, 102], [54, 2, 114, 3, 1657, 54, 2, 114, 3, 1657], [893, 88, 10, 3, 41, 893, 88, 10, 3, 41], [15, 26, 32, 64, 13, 25, 15, 26, 32, 64, 13, 25], [1003, 400, 56, 3717, 3718, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 72, 31, 2129, 555, 632, 2, 1003], [87, 123, 111, 3719, 1, 1, 351, 257, 87, 123, 67, 8, 44, 2067, 53, 3, 372, 116, 1, 1, 541, 334, 51, 170, 33, 142, 38, 2, 206, 87, 866, 4, 3, 206, 4042, 1, 1, 185, 35, 14, 398, 23, 31, 510, 99, 43, 10, 9265, 36], [3, 251, 98, 2635, 6, 8, 5850, 49, 27, 2, 434, 4440, 11, 636, 251, 1532, 38, 8, 141, 84, 2, 434, 3, 4440, 11, 23, 593], [415, 28, 486, 11, 50, 11, 672, 31, 415, 28, 486, 11, 50, 11, 672, 31], [39, 35, 14, 647, 33, 57, 36, 23, 3667, 302, 39, 35, 14, 647, 33, 57, 36, 23, 3667, 302, 5898, 5899, 124, 291, 292, 9266, 243, 9267, 9268, 9269, 55, 39, 35, 14, 647, 33, 57, 36, 23, 3667, 302], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [813, 181, 319, 813, 181, 319], [307, 50, 275, 88, 235, 297, 31, 47, 243, 1282, 1, 35, 39, 122, 2, 3, 78, 411, 21, 542, 38, 3250, 2215, 484, 129, 104, 88, 718, 11, 967], [86, 30, 3, 107, 6, 406, 5900, 190, 14, 736, 86, 30, 3, 107, 6, 406, 5900, 190, 14, 736], [1250, 827, 2012, 81, 20, 605, 40, 40, 40, 40, 181, 1, 49, 1, 1438, 1, 1250, 827, 2012, 81, 20, 605, 1, 1, 1, 1438, 1, 1, 14, 1752, 3, 1250, 827, 18, 3, 1122, 81, 78, 2896, 81, 20, 125, 78, 40, 7, 3, 81, 20, 4459, 605, 40, 40, 40, 177, 2897, 18, 3, 636, 81, 20, 81, 578, 1, 1, 2151, 3, 5, 19, 700, 3113, 10, 40, 2, 1, 1088, 151, 42, 9, 81, 777, 327, 4, 81, 20, 62, 5, 19, 10, 40, 1, 397, 2, 3, 81, 20, 125, 78, 40, 7, 1752, 715, 1, 169, 40, 6, 178, 827, 3, 4459, 605, 39, 873, 914, 9270, 1, 5901, 3, 5, 19, 700, 3113, 10, 40, 2, 177, 83, 2898, 1, 1, 35, 39, 827, 2896, 12, 9271, 1, 1, 183, 3, 382, 2019, 2163, 78, 6, 1837, 177, 3, 81, 20, 78, 2898, 23, 78, 99, 43, 1837, 66, 3, 718, 3546, 177, 2897, 18, 3, 81, 20, 2898], [620, 342, 76, 2642, 2643, 620, 342, 76, 2642, 2643], [9, 88, 681, 55, 1, 38, 9, 88, 681, 4, 33, 41, 347, 1, 63, 1591, 54, 21, 2, 398, 23, 1, 1, 135], [1117, 2508, 37, 1117, 2508, 37], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 33, 41, 89, 8, 38, 3, 88, 1964, 14, 121], [822, 455, 31, 3720, 3721, 1, 124, 1, 9272, 9273, 291, 292, 9274, 9275, 1, 9276, 9277, 1, 1145, 243, 9278, 2899, 9279, 1, 1, 1, 101, 1, 1, 14, 50, 80, 114, 9280, 128, 126, 609, 180, 6, 164, 23, 5902, 30, 3, 822, 20, 1, 1, 47, 534, 5903, 2, 9281, 9282, 7, 21, 8, 72, 31, 30, 3, 20], [57, 1813, 5904, 9283, 486, 4, 11, 72, 31, 433, 180, 524, 29, 2, 4460, 4461, 57, 53, 4460, 4461, 65, 534, 1126, 3, 24, 10, 18, 23, 713, 5904, 6, 3, 120, 7, 180, 219, 4460, 4461, 812, 2, 43, 5253, 2, 911, 11, 241, 1429, 2357, 18, 245, 442, 2, 740, 14, 106, 3, 807, 12, 3, 1131, 129, 9], [142, 369, 49, 8, 164, 143, 369, 10, 33, 142, 14, 50, 398, 54, 369, 11, 87, 1, 1, 1, 135], [395, 6, 8, 45, 395, 6, 8, 45], [3722, 3723, 9284, 2, 46, 2, 1644, 192, 1045, 28, 56, 6, 4462, 3081, 3082, 124, 291, 292, 3722, 3723, 3193, 1533, 1644, 32, 55, 39, 612, 114, 1459, 3722, 3723, 39, 46, 30, 283, 32, 4462, 192, 3, 1045, 29, 30, 23, 29, 14, 1544, 911, 7, 1619, 51, 3, 31, 6, 833, 53, 47, 38, 2, 1241, 9285, 7, 9286, 740, 3081, 3082, 120, 1644, 3531, 1913, 4139, 1106, 3722, 3723, 181, 2133, 9287, 72, 3081, 3082, 2286, 1644, 32, 55, 2113, 742, 141, 27, 2, 46, 2, 1644, 532, 1162, 172, 624, 13, 9288, 28, 56, 6, 385, 28, 56, 6, 4462, 185, 35, 14, 50, 80, 77, 9289, 9290, 9291, 135], [9292, 9293, 457, 114, 233, 7, 440, 8, 1534, 55, 101, 39, 35, 14, 189, 871, 11, 15, 26, 7, 2730, 3, 179, 4, 3, 2003, 594, 35, 39, 586, 179, 29, 265, 9294], [82, 20, 37, 2815, 2644, 706, 45, 82, 20, 37, 2815, 2644, 706, 45], [949, 31, 949, 31], [88, 297, 4445, 77, 88, 297, 4445, 77], [5905, 18, 5906, 36, 142, 5905, 18, 5906, 36, 142], [339, 121, 1120, 941, 533, 339, 121, 1120, 941, 533], [123, 30, 24, 314, 1166, 666, 111, 356, 250, 2, 322, 666, 11, 417, 4, 24, 314, 2154, 77, 3, 136, 7, 2268, 1166, 666, 21, 187, 680, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [87, 31, 508, 484, 37, 87, 31, 508, 484, 37], [24, 314, 13, 521, 110, 38, 141, 1009, 195, 98, 4, 24, 314, 7, 38, 373, 158, 72, 123, 3, 224, 236, 444, 98, 30, 526, 134, 7, 54, 2, 25, 444, 14, 118, 251, 2, 80, 53, 754, 53, 285, 411, 47, 54, 2, 118, 195, 98, 7, 327, 4, 3, 52], [168, 20, 1803, 51, 1804, 42, 584, 8, 84, 2, 647, 2115, 1804, 44, 38, 141, 4071, 4, 15, 151, 42, 172, 272, 1804, 9295, 2, 43, 584, 112, 23, 37, 63, 5811, 4, 31, 63, 2500, 2, 168, 20, 295, 184, 9, 345, 1169, 1, 1, 99, 844, 167, 2041, 2900, 2, 625, 21, 296, 2, 4390, 3724, 23, 37, 1, 1, 3251], [58, 210, 55, 1, 1, 12, 115, 9296, 38, 9297, 58, 210, 1510, 151, 6, 9, 133, 2, 3, 58, 285, 169, 715, 21, 507, 257, 4, 1251, 1507, 1, 3, 1461, 39, 1273, 425, 11, 2219, 62, 9298, 133], [32, 602, 77, 31, 112, 372, 451, 540, 32, 602, 77, 31, 112, 372, 451, 540], [3070, 3071, 210, 30, 457, 29, 14, 4141, 23, 31, 112, 3070, 3071, 6, 275, 2, 766, 149, 3252, 4, 457, 3070, 3071, 6, 290, 72, 31, 30, 1090, 457, 14, 485, 1597, 226, 7, 9299, 4, 226, 276, 129, 9300, 9301, 2, 353], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [186, 1665, 31, 1430, 127, 107, 186, 1665, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3165, 3166, 62, 87, 2182, 2025, 29, 2, 4463, 5907, 5908, 3165, 3166, 62, 87, 29, 2, 128, 126, 3133, 3153, 3725, 2182, 125, 52, 9302, 2182, 1960, 1614, 218, 2, 4463, 5907, 5908, 14, 87, 4463, 2, 134, 30, 408], [9303, 810, 8, 84, 2, 206, 73, 93, 35, 54, 50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135], [5909, 1338, 1971, 6, 346, 4, 117, 100, 627, 3253, 5909, 1338, 1971, 1597, 18, 480, 9304, 102, 6, 346, 4, 117, 100, 627, 3253], [5910, 255, 3254, 5910, 255, 3254], [2406, 111, 711, 5911, 6, 27, 2, 46, 338, 212, 14, 25, 3, 13, 1934, 9, 56, 1077, 120, 3255, 3256, 2406, 3726, 3727, 1611, 30], [5912, 219, 2, 1149, 7, 920, 5912, 219, 2, 1149, 7, 920], [920, 423, 20, 1052, 2020, 2901, 2902, 920, 423, 20, 1052, 2020, 2901, 2902], [193, 30, 1838, 2903, 2904, 193, 30, 1838, 2903, 2904], [620, 342, 682, 1956, 437, 5913, 5914, 620, 342, 682, 1956, 437, 5913, 5914], [110, 54, 50, 811, 33, 13, 7, 9305, 33, 87, 5915, 110, 54, 50, 30, 811, 33, 13, 7, 4128, 10, 33, 87, 5915, 1, 411, 110, 39, 121, 165, 826, 12, 87, 9306, 67, 284, 97, 121, 80], [1485, 1486, 1049, 222, 2, 114, 11, 24, 621, 1485, 1486, 1049, 222, 2, 114, 11, 24, 621], [15, 26, 32, 132, 15, 26, 32, 132], [456, 1014, 1804, 36, 2407, 2552, 3728, 2, 168, 20, 52, 952, 2407, 4464, 9307, 1569, 160, 52, 1, 1, 1036, 11, 312, 1012, 4465, 5916, 5917, 6, 8, 3728, 2, 168, 20, 1, 1, 2055, 359], [110, 39, 8, 189, 186, 127, 107, 3092, 37, 71, 983, 78, 8, 841, 249, 1, 127, 107], [5, 5, 22, 4, 5, 19, 12, 804, 846, 24, 24, 144, 116, 49, 1, 2220, 639, 2408, 441, 71, 2220, 721, 37, 1, 52, 37, 140, 1821, 133, 3729, 1, 3257, 1, 1, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 5, 22, 4, 5, 19, 12], [82, 20, 3465, 208, 491, 1, 576, 1914, 82, 20, 220, 7, 172, 49, 843, 96, 123, 1, 412, 7, 73, 765, 6, 8, 1180, 4, 117, 326, 206, 681, 308, 50, 2, 353, 3, 31], [457, 2505, 592, 9308, 956, 219, 9309, 2, 43, 584, 3, 24, 6, 9310], [279, 140, 123, 151, 42, 133, 193, 329, 678, 3, 854, 3, 854, 1061, 9311, 470, 329, 118, 267, 30, 3, 432, 1330, 662], [168, 20, 39, 8, 118, 3, 660, 420, 18, 161, 694, 112, 310, 14, 91, 3, 163, 57], [3730, 3731, 841, 3730, 3731, 841], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2627, 117, 110, 97, 493, 3, 117, 7, 97, 1158, 21, 91, 3, 1630, 96, 151, 6, 9, 864, 11, 73, 62, 326, 184, 47, 330, 4, 3, 1253, 1200, 7, 3, 493, 864, 6, 8, 202], [280, 73, 471, 3730, 3731, 280, 73, 471, 3730, 3731], [40, 369, 370, 900, 40, 226, 10, 78, 6, 272, 198, 375, 198, 178, 841, 369, 370, 900, 40, 226, 10, 78, 6, 272, 198, 375, 198, 178, 841], [25, 3, 13, 11, 5918, 5919, 10, 79, 25, 3, 13, 11, 5918, 5919, 10, 79], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 2566, 134, 10, 3, 142, 2338, 41, 9, 345, 507], [555, 810, 8, 405, 555, 810, 8, 405], [32, 64, 4, 226, 32, 64, 4, 226], [461, 179, 577, 31, 461, 179, 577, 31], [2388, 2637, 1374, 872, 1692, 2, 1216, 713, 149, 131, 36, 1692, 1318, 47, 42, 4, 3, 312, 18, 2269, 1860, 4, 3147, 7, 47, 54, 2, 320, 2717, 149, 131, 36, 1692, 1318, 294, 553, 2403, 2637, 1374, 872, 1692, 14, 2388, 3, 447, 2, 1216, 713, 131, 2, 36, 1692, 746, 3, 1551, 6, 421, 47, 99, 434, 21, 251, 2, 2638, 3243], [189, 621, 340, 5920, 189, 621, 340, 5920], [110, 49, 27, 2, 46, 2, 3, 692, 20, 207, 25, 33, 692, 20, 13, 25, 33, 692, 20, 13], [191, 217, 2586, 111, 611, 269, 191, 217, 898, 2, 9312, 9313, 11, 1703, 1452, 610, 9314, 611, 269, 104, 223, 59], [8, 84, 2, 46, 2, 87, 8, 84, 2, 46, 2, 87], [726, 734, 31, 4, 382, 877, 148, 726, 734, 31, 4, 382, 877, 148], [76, 9315, 9316, 1, 111, 76, 1, 104, 52, 22, 11, 1029, 114, 14, 1088, 3, 177, 6, 1175, 7, 335, 257, 62, 129, 104, 718, 104, 1029, 140, 6, 1805, 21, 6, 98, 2, 341, 1029, 603, 9, 2310, 467, 540, 35, 38, 828, 2488, 104, 52, 8, 345, 467, 540, 1311, 1, 4115, 4116], [90, 24, 238, 1034, 7, 1011, 6, 75, 112, 124, 105, 10, 238, 1034, 5921, 10, 24, 17, 90, 90, 29, 277, 6, 75, 1, 238, 1011, 5921, 10, 24, 17, 90, 90, 1337, 277, 6, 75], [5922, 39, 8, 9317, 28, 233, 4310, 6, 202, 1, 28, 233, 4310, 6, 202, 1, 39, 8, 189, 3, 160, 127, 1, 14, 50, 2, 398, 21], [39, 8, 660, 117, 4, 1925, 2, 88, 5923, 5924, 1, 49, 1, 814, 1028, 1, 88, 5923, 5924, 1, 1, 39, 8, 660, 117, 4, 1925, 2, 88, 264, 43, 84, 2, 722, 413, 7, 413, 3145, 2, 88, 89, 8, 134], [162, 20, 116, 193, 49, 250, 2, 322, 705, 10, 3, 459, 67, 201, 118, 23, 167, 21, 99, 8, 465, 5925, 36, 23, 167, 39, 23, 43, 1524, 14, 118, 4, 2135, 30, 80, 1059, 514, 174, 655, 1, 1, 1, 135], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [82, 20, 307, 110, 38, 29, 2, 82, 418, 82, 20, 67, 33, 56, 542, 468, 98, 4, 3, 2165, 75, 11, 5926, 62, 205, 242, 1124, 66, 7, 21, 1219, 2409, 80, 2, 721, 21, 4, 39, 14, 43, 543, 510, 4438, 4439, 1529, 674, 149, 685, 24, 203, 730, 24, 144, 730, 24, 144, 82, 20, 714, 490, 1863], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [25, 224, 11, 3705, 3706, 137, 13, 125, 20, 13, 25, 13, 63, 25, 67, 99, 8, 729, 25, 11, 26, 15, 160], [128, 126, 11, 191, 3732, 2, 500, 83, 3, 116, 128, 126, 6, 137, 1239, 18, 1718, 10, 33, 142, 21, 6, 250, 2, 500, 2056, 107, 18, 173, 335, 2, 3665, 21, 335, 2, 591, 3, 312, 680, 507, 246, 265, 2, 4466, 21, 68, 285, 39, 23, 43, 833, 129], [339, 121, 339, 121], [339, 121, 339, 121], [1195, 32, 707, 1195, 32, 707], [29, 2, 100, 23, 229, 29, 2, 100, 23, 229, 11, 3106, 3252, 526, 38, 29, 2, 100, 23, 229, 11, 3106, 3252, 39, 35, 14, 485, 7, 90, 80, 29, 1636, 1637, 149, 120, 1338], [235, 108, 453, 4467, 4468, 124, 291, 292, 1145, 1711, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 720, 313, 14, 90, 29, 11, 44, 24, 868, 108, 28, 59, 9318, 4467, 4468, 2820, 35, 4, 9319, 9320, 9321, 1106, 130, 41, 2133, 5927, 72, 4467, 4468, 2286, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 1298, 1759, 1106, 2013, 5928, 956, 1440, 9322, 5929, 480, 1032, 1244, 9323, 2138, 2139, 478, 2410, 4, 9324, 4041, 9325, 1244, 2545, 3258, 2621, 9326, 9327, 9328, 1298, 9329, 2059, 9330, 9331, 9332, 1298, 1759, 2371, 718, 2603, 1770, 2059, 14, 2125, 3, 693, 5930, 47, 97, 119, 21, 62, 544, 21, 1833, 263, 5931, 3, 130, 41, 297, 11, 1774, 7, 799, 1918, 576, 6, 8, 511, 495, 140, 11, 1090, 24, 181, 599, 21, 6, 205, 2715, 7, 495, 14, 1247, 137, 197, 18, 3, 165, 3, 3733, 181, 140, 4, 104, 235, 108, 3, 213, 10, 104, 235, 108, 62, 3, 130, 1191, 297, 4123, 11, 104, 235, 108, 126, 3679, 694, 30, 739, 631, 199, 1750, 868, 235, 817, 2, 29, 41, 57, 24, 6, 1385, 844, 7, 3734, 3, 1464, 462, 11, 161, 694, 2, 199, 1832, 1750, 868, 817, 2, 729, 11, 3735, 2045, 7, 747, 134, 3239, 1685, 23, 6, 72, 2645, 2, 3, 1347, 11, 24, 868, 817, 511, 495, 3736, 817, 39, 43, 336, 4, 23, 1347, 519, 1747, 724, 367, 3, 693, 1347, 99, 43, 399, 53, 165, 817, 42, 495, 11, 199, 68, 35, 918, 72, 495, 108, 7, 246, 265, 2, 509, 5932, 18, 23, 1464, 462, 35, 39, 436, 404, 20, 34, 2, 3, 21, 188, 295, 314, 237, 68, 21, 6, 1750, 868, 108, 35, 54, 2, 552, 3, 1367, 455, 336, 4, 3, 519, 1747, 1238, 1107, 23, 1367, 755, 43, 1281, 66, 35, 7, 104, 569, 1329, 739, 7, 794, 2, 3, 237, 1959, 2, 34, 357, 670, 35, 39, 552, 3, 1281, 455, 2, 3, 34, 62, 320, 3, 1281, 455, 2, 3, 237, 7, 284, 99, 552, 21, 143, 34, 573, 3, 1281, 455, 99, 43, 2043, 35, 38, 1162, 2, 312, 7, 436, 3, 455, 389, 104, 108, 99, 43, 502, 584, 36, 1627, 519, 1747, 1238, 1107, 9333, 2543, 2013, 5928, 956, 956, 5933, 2905, 956, 5934, 383, 956, 1719, 59, 9334, 956, 5935, 1774, 630, 5936, 956, 5937, 296, 3144, 2905, 956, 1719, 2560, 480, 1032, 394, 956, 3737, 2119, 5938, 255, 956, 3737, 188, 2518, 72, 2133], [391, 888, 684, 2221, 2, 391, 163, 1332, 684], [110, 187, 461, 7, 21, 268, 30, 9, 123, 335, 2, 598, 1799, 3540, 4, 15, 7, 21, 2646, 80, 3, 78, 6, 27, 2, 840, 110, 187, 461, 7, 21, 268, 30, 9, 123, 335, 2, 598, 1799, 3540, 4, 15, 7, 21, 2646, 80, 3, 78, 6, 27, 2, 312, 3, 102], [87, 210, 678, 564, 7, 1710, 1686, 33, 87, 684, 77, 51, 678, 33, 564, 86, 21, 497, 165, 923, 4, 3, 1917, 494, 51, 49, 4, 9335, 9336, 183, 87, 1710, 6, 267, 7, 10, 67, 542, 134, 38, 2, 434, 2, 115, 1588, 2, 927], [383, 88, 297, 211, 10, 383, 383, 88, 297, 211, 10, 383], [25, 224, 11, 3705, 3706, 137, 13, 125, 20, 13, 25, 13, 9337, 2, 1319, 67, 15, 9338], [33, 317, 99, 8, 452, 143, 1136, 21, 530, 9, 1967, 39, 43, 336, 33, 317, 99, 8, 452, 143, 1136, 21, 530, 9, 1967, 39, 43, 336], [25, 224, 11, 3705, 3706, 137, 13, 125, 20, 13, 25, 15, 13, 25, 524], [1280, 1068, 29, 2, 28, 5939, 5940, 1280, 1068, 29, 2, 28, 5939, 5940], [151, 6, 9, 133, 2, 3, 15, 52, 47, 38, 9, 15, 260, 20, 82, 20, 62, 1096, 44, 4469, 2, 15, 151, 6, 9, 133, 2, 3, 15, 52, 47, 38, 9, 15, 260, 20, 82, 20, 62, 1096, 44, 4469, 2, 15], [9, 197, 12, 3, 90, 1570, 39, 95, 1186, 15, 47, 384, 72, 37, 71, 4470, 792, 37, 33, 129, 136, 6, 53, 2647], [15, 133, 110, 63, 27, 2, 504, 33, 173, 4, 9339, 737, 164, 37, 7, 504, 2782, 1837, 7, 172, 39, 46, 2, 82, 20, 4471, 4472, 685, 462, 82, 24], [50, 83, 18, 161, 571, 42, 75, 15, 6, 75, 1632, 6, 75, 260, 20, 97, 122, 649, 2, 43, 83, 195, 12, 161, 48, 50, 83, 18, 161, 571, 42, 75, 15, 6, 75, 1632, 6, 75, 260, 20, 97, 122, 649, 2, 43, 83, 195, 12, 161, 48], [3, 974, 354, 11, 5941, 5942, 65, 402, 55, 1, 1, 841, 1891, 11, 5941, 5942, 821, 65, 141, 495], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1893, 418, 50, 2, 211, 3, 1893, 418, 4, 79, 948], [27, 2, 552, 72, 377, 4, 324, 171, 27, 2, 552, 72, 377, 4, 324, 171], [27, 2, 46, 191, 217, 27, 2, 46, 191, 217, 53, 151, 63, 9, 1553, 2, 46, 2, 26, 32], [189, 666, 6, 8, 45, 4, 417, 20, 189, 666, 6, 8, 45, 4, 417, 20], [132, 508, 107, 4, 338, 132, 508, 107, 4, 338], [432, 2, 42, 897, 30, 1021, 1104, 341, 1885, 10, 328, 341, 8, 117, 2411, 47, 42, 2399, 432, 2, 897, 30, 3, 1021, 1104, 341, 1192, 10, 3, 160, 328, 341, 7, 8, 3, 2411, 341, 2, 3, 117, 23, 6, 4473, 10, 359, 30, 443, 1299, 1573, 1834, 350, 66, 160, 9340, 365, 698, 6, 149, 127, 470, 30, 2, 107, 99, 43, 2837, 492, 586], [2572, 400, 2572, 400], [104, 1446, 4470, 1134, 9341, 9342, 124, 291, 292, 2602, 550, 104, 1446, 4470, 1134, 111, 49, 164, 23, 181, 2111, 36, 887, 540, 39, 35, 363, 38, 366, 158, 23], [299, 2906, 2, 239, 3242, 7, 1629, 610, 10, 161, 422, 1192, 535, 52, 299, 2906, 2, 239, 3242, 7, 1629, 610, 10, 161, 422, 1192, 535, 52, 1, 1, 55, 21, 101, 1, 1, 14, 50, 33, 101, 1066, 118, 3, 2362, 299, 2906, 2, 239, 3242, 7, 1629, 610, 10, 161, 422, 1192, 535, 52], [110, 106, 8, 118, 100, 4260, 36, 1632, 9343, 664, 3, 569, 71, 1632, 65, 5943, 45, 123, 1821, 3, 447, 1, 4260, 9344, 7, 9345, 733, 861], [83, 3, 195, 36, 90, 113, 42, 27, 2, 29, 337, 83, 3, 195, 36, 90, 113, 42, 27, 2, 29, 337, 284, 243, 164, 72, 37, 184, 1449, 44, 5944, 2342, 3, 2281, 113, 6, 952], [27, 2, 1425, 359, 4, 337, 27, 2, 1425, 359, 4, 337, 443, 28, 952, 86], [79, 13, 25, 79, 13, 25], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [39, 35, 50, 1483, 3, 162, 20, 116, 1425, 13, 3, 1425, 44, 35, 4474, 4, 104, 223, 107, 21, 65, 145, 1042, 7, 47, 1220, 3, 13, 23, 6, 588, 10, 3, 108, 7, 8, 10, 3, 115], [346, 914, 4475, 111, 38, 172, 451, 100, 914, 1864, 184, 39, 322, 158, 15, 39, 35, 35, 14, 795, 21, 510, 4476, 4477, 149, 120, 2819, 1174, 3159, 594, 1620, 24, 1763, 879, 1848, 1943, 1849, 1137, 1138, 1052, 1082, 1141, 730, 24, 144], [132, 28, 15, 2907, 10, 78, 40, 14, 50, 132, 3, 28, 15, 2907, 10, 78, 40, 12, 3, 1131], [805, 1640, 317, 452, 111, 1, 1, 33, 1640, 317, 99, 8, 878, 10, 3, 142, 65, 141, 1391, 75, 7, 991, 7, 83, 1255, 1450, 38, 141, 425, 39, 612, 509, 366, 12, 21, 39, 1372, 45, 489, 18, 3, 1285, 317, 21, 6, 355, 72, 3240], [82, 20, 217, 27, 2, 515, 706, 545, 37, 1, 443, 447, 9346, 1196, 10, 283, 527, 11, 82, 20, 7, 972, 18, 444, 134, 1, 13, 65, 562, 53, 613, 53, 3, 3738, 3739, 1856, 140, 6, 346, 36, 3, 115], [27, 2, 392, 4, 2, 41, 169, 13, 119, 27, 2, 392, 4, 2, 41, 169, 13, 119], [404, 20, 34, 110, 54, 2, 118, 88, 1063, 10, 33, 41, 356, 511, 137, 3, 422, 88, 394, 9347, 9348, 9349, 149, 685, 24, 203, 724, 295], [3419, 8, 590, 10, 24, 314, 3716, 24, 144], [1972, 63, 236, 98, 2, 118, 197, 1624, 225, 20, 67, 284, 42, 164, 443, 225, 418, 26, 32, 4478, 20, 63, 236, 98, 53, 9350, 5945, 1624, 888, 11, 7, 284, 268, 443, 225, 418, 91, 163], [100, 127, 1433, 123, 251, 127, 29, 47, 42, 290, 123, 251, 127, 171, 2412, 4, 29, 1, 100, 127, 1433], [15, 26, 13, 25, 56, 3259, 3260, 1, 182, 1, 213, 130, 155, 204, 1, 117, 107, 1, 214, 1, 146, 39, 35, 132, 3740, 15, 26, 32, 180, 649, 2, 118, 64, 77, 2726, 180, 1639, 2, 95, 4], [15, 26, 13, 64, 15, 26, 13, 64], [70, 10, 34, 9, 70, 10, 34, 9], [74, 783, 2, 70, 407, 74, 783, 2, 70, 407], [15, 26, 13, 25, 15, 26, 13, 25], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [705, 5946, 10, 162, 20, 111, 83, 330, 23, 31, 713, 1311, 7, 63, 1591, 2, 544, 33, 4479, 1860, 187, 7, 29, 63, 1368, 5947, 1386, 33, 4479, 1860, 67, 310, 97, 239, 705, 91, 163, 167, 554], [27, 2, 320, 87, 381, 4480, 27, 2, 320, 87, 381, 4480], [1485, 1486, 486, 1288, 11, 3, 1663, 459, 229, 1485, 1486, 486, 1288, 11, 3, 1663, 459, 229], [79, 32, 64, 79, 32, 64], [193, 30, 419, 1080, 1053, 193, 30, 419, 1080, 1053], [1049, 2, 253, 68, 3, 32, 18, 3646, 5948, 6, 273, 202, 1049, 2, 253, 68, 3, 32, 18, 3646, 5948, 6, 273, 202], [39, 9, 345, 176, 2, 1020, 110, 49, 9, 345, 84, 2, 176, 2, 1020, 755, 211, 407, 11, 23, 7, 49, 8, 614, 288, 304, 2, 43, 84, 2, 176, 2, 1020, 573, 72, 31, 7, 11, 241, 709, 49, 9, 345, 84, 2], [548, 206, 4, 89, 8, 468, 98, 548, 206, 4, 89, 8, 468, 98], [851, 2, 11, 2908, 2909, 851, 2, 11, 2908, 2909], [211, 422, 477, 2901, 2902, 211, 422, 477, 2901, 2902], [193, 30, 212, 2901, 2902, 193, 30, 212, 2901, 2902], [13, 25, 13, 25], [193, 30, 212, 2908, 2909, 193, 30, 212, 2908, 2909], [162, 20, 705, 8, 590, 162, 20, 705, 8, 590], [14, 544, 3, 163, 9351, 18, 964, 381, 63, 147, 66, 2413, 223, 1, 1, 9352, 3741, 9353, 1, 1, 550, 5949, 3109, 944, 1, 1, 222, 1, 1, 3741, 5950, 1, 49, 1, 3741, 5950, 9354, 9355, 9356, 9357, 9358, 9359, 9360, 9361, 9362, 9363, 9364, 9365, 2910, 2911, 9366, 9367, 9368, 9369, 9370, 9371, 9372, 9373, 9374, 9375, 4339, 9376, 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, 9391, 9392, 5951, 5952, 1, 5949, 3109, 944, 1, 51, 1990, 541, 821, 599, 36, 49, 2, 49, 929, 2414, 116, 166, 7, 2895, 1, 433, 9393], [5, 5, 1895, 22, 4, 5, 19, 12, 5, 5, 1895, 22, 4, 5, 19, 12], [1259, 115, 6, 1548, 10, 21, 429, 2716, 67, 276, 507, 1259, 115, 6, 1548, 10, 21, 429, 886, 167, 67, 276, 507, 1, 5953, 9394, 3, 1301, 6, 1278, 21], [27, 2, 326, 58, 824, 169, 13, 25, 27, 2, 326, 58, 824, 169, 13, 25], [378, 31, 30, 317, 452, 56, 4481, 4482, 1, 57, 214, 1, 146, 33, 317, 6, 9, 345, 2218, 53, 3, 452, 33, 174, 63, 243, 9395, 576, 7, 51, 1095, 3, 317, 2, 3, 722, 271, 21, 706, 2146, 3, 505, 7, 201, 429, 382, 835, 30, 1587, 205, 242, 3085, 114, 7, 1696, 2370, 886, 7, 1993, 4483, 5954, 44, 71, 1431, 1040, 294, 753, 3261], [32, 64, 32, 64], [1274, 78, 4, 26, 205, 242, 1037, 8, 45, 861, 14, 715, 3, 78, 2222, 416, 416, 4, 26, 6, 8, 45, 546, 329, 937, 3, 782, 9396, 36, 2709, 21, 89, 8, 373, 294, 3, 1030, 47, 350, 2, 506, 5810, 1494, 1192, 10, 1605, 462, 126, 1, 14, 715, 3, 78, 53, 38, 72, 1429, 520, 908, 2, 1707, 5955, 101, 12, 9397, 33, 116, 310, 184, 6, 1963, 36, 172], [13, 31, 111, 1, 1, 711, 5956, 1865, 6, 8, 84, 2, 95, 4, 311, 2, 13, 31, 1, 1, 308, 269, 73, 13, 2, 3, 568, 1, 1, 56, 711, 5956, 1865, 1, 9, 1, 28, 59, 9398, 1, 57, 9399, 1, 135], [633, 7, 721, 898, 255, 40, 160, 633, 7, 721, 898, 255, 40, 160], [2388, 666, 894, 416, 3, 416, 7, 469, 3421, 5021, 3421, 2727, 1852, 9400, 666, 894, 763, 5957, 1193, 9401, 9402, 5958, 2, 43, 3262, 91, 163, 464, 2912, 2, 1457, 11, 44, 2055, 666, 6, 67, 3, 763, 4, 9403, 6, 67, 3, 1714, 11, 3, 367, 6, 4, 1457, 207, 261, 451, 1190, 264, 1471], [27, 2, 122, 2, 24, 1705, 27, 2, 122, 2, 24, 1705], [14, 606, 3263, 7, 9404, 174, 2, 3, 5959, 14, 606, 3263, 7, 3212, 174, 2, 3, 5959], [15, 26, 13, 25, 14, 25, 33, 13, 8, 614, 424, 2049, 1172, 193], [148, 6, 164, 61, 431, 8, 3230, 435, 10, 873, 98, 51, 1634, 148, 6, 164, 61, 431, 8, 3230, 435, 10, 873, 98, 51, 1634], [3470, 2528, 526, 189, 1764, 1779, 55, 50, 1, 1, 1, 1, 3, 3470, 1367, 6, 806, 4, 1221, 53, 1779, 67, 3, 6, 9, 461, 11, 3, 160, 113, 1, 1, 3, 3470, 1367, 6, 8, 806, 53, 1779, 4, 1221, 1, 1, 2118, 21, 6, 123, 30, 3, 349, 103, 1, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [1485, 1486, 486, 4, 2, 25, 13, 11, 3742, 3743, 1485, 1486, 486, 4, 2, 25, 13, 11, 3742, 3743], [1956, 1955, 1052, 1955, 5960, 1043, 34, 1504, 72, 9405, 190, 162, 9406, 9407, 74, 56, 410, 416, 512, 1153, 913, 682, 1, 682, 1857, 3544, 1, 1154, 665, 18, 3, 123, 1, 9408, 9409, 1043, 5961, 1770, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [41, 8, 45, 41, 8, 45], [41, 8, 45, 41, 8, 45], [28, 5962, 1991, 283, 279, 140, 13, 28, 5962, 1991, 283, 279, 140, 13, 1, 4484, 9410], [236, 98, 115, 1384, 207, 44, 3, 1168, 6, 1086, 7, 39, 43, 727, 77, 236, 98, 115, 1384, 207, 44, 3, 1168, 6, 1086, 7, 35, 39, 176, 21, 1, 9411, 2579, 9412], [2406, 111, 14, 25, 3, 13, 18, 711, 3255, 3256, 1934, 9, 1, 1, 1, 1, 1, 1, 56, 2415, 120, 1, 1, 1, 1, 1, 1, 3255, 3256, 2406, 1, 1, 1, 1, 3726, 3727, 1, 1, 1, 1, 1, 1, 30, 1611], [218, 2648, 255, 3254, 7, 960, 2004, 218, 2648, 255, 3254, 7, 960, 2004], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [340, 6, 8, 45, 340, 6, 8, 45], [14, 583, 80, 1893, 1279, 11, 33, 28, 59, 5963, 14, 583, 80, 1893, 1279, 11, 33, 28, 59, 5963, 1, 47, 54, 2, 211, 161, 101, 2416, 529, 7, 140, 851], [676, 225, 20, 31, 3, 225, 20, 727, 629, 6, 8, 421, 419, 438, 9, 1224, 1248, 503, 7, 344, 973, 42, 2876, 1, 163, 9413, 263, 7, 225, 20, 42, 11, 104, 136, 1, 14, 50, 398, 23, 31, 7, 386, 251, 2, 166, 510], [676, 225, 20, 31, 622, 2, 23, 225, 20, 9, 3, 727, 225, 20, 6, 8, 421, 419, 3, 470, 438, 9, 9414, 1248, 503, 7, 9415, 973, 42, 2876, 183, 3, 344, 225, 20, 973, 6, 8, 391, 3, 163, 42, 442, 186, 263, 7, 225, 20, 53, 11, 104, 136, 14, 50, 398, 23, 31, 7, 1544, 166, 510], [14, 715, 3, 26, 78, 310, 990, 55, 101, 1, 1, 566, 521, 42, 1095, 2, 160, 67, 1680, 1333, 521, 428, 8, 1095, 207, 47, 102, 35, 14, 715, 3, 26, 78, 2, 4423, 1902, 521, 4, 160], [626, 1819, 6, 141, 1086, 10, 417, 20, 626, 1819, 6, 141, 1086, 10, 417, 20, 1, 1819, 521, 63, 653, 30, 3, 34, 34, 9, 1819, 521, 428, 588, 7, 1095, 2, 865, 112, 151, 63, 197, 173, 184, 63, 5964, 30, 165, 34, 7, 1819, 521, 173, 428, 1095, 2199, 30, 165, 34, 433, 5965, 89, 8, 479, 3, 1819, 521, 172], [1151, 11, 1012, 287, 55, 1, 1, 54, 72, 1151, 12, 33, 142, 2, 114, 1012, 287, 1, 1, 342, 1079, 556, 3258, 1, 30, 135], [280, 73, 471, 3742, 3743, 280, 73, 471, 3742, 3743], [15, 457, 29, 31, 28, 9416, 9417, 5966, 52, 26, 26, 26, 26, 585, 165, 457, 212, 5967, 24, 144, 9418, 212, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 5966, 1, 1, 1, 896, 3, 31, 354, 185, 8, 43, 1124, 3, 9419, 18, 3, 28, 42, 3744, 62, 8, 1916, 91, 482, 9420, 9421, 1, 163, 167, 554], [61, 94, 1564, 1222, 48, 531, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [74, 947, 4, 3, 186, 594, 820, 3, 179, 186, 5968, 1510, 3, 391, 197, 6, 201, 727, 77, 9422, 74, 947, 4, 3, 186, 594, 820, 3, 179, 186, 5968, 1510, 276, 3, 391, 15, 123, 6, 727, 77], [4485, 4486, 1007, 2, 818, 3, 173, 4485, 4486, 492, 30, 35, 2, 239, 4485, 4486, 492, 392, 4, 1, 1, 1, 1, 24, 1226, 1, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [363, 114, 15, 26, 32, 18, 5969, 390, 6, 8, 84, 2, 392, 10, 849, 363, 114, 15, 32, 18, 5969, 390, 6, 8, 84, 2, 392, 10, 849, 363, 91, 377], [919, 212, 8, 1628, 208, 491, 1, 1, 5967, 24, 144, 48, 8, 1628, 11, 4487, 2509, 308, 295], [40, 369, 370, 900, 40, 226, 6, 272, 198, 375, 198, 178, 356, 40, 369, 370, 900, 40, 226, 6, 272, 198, 375, 198, 178, 356], [299, 523, 4, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 221, 138, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 1, 1, 93, 537, 1, 1, 93, 59, 1, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 1396, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 3745, 539, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 9423, 1404, 5970, 671, 1405, 1, 427, 1, 2223, 2417, 362, 352, 5971, 5972, 737, 3746, 175, 175, 1, 427, 1, 1, 1, 512, 352, 1780, 2223, 2417, 362, 1, 1, 512, 352, 40, 1, 1, 299, 1, 1, 688, 131, 1, 785, 786, 10, 2, 227, 228, 227, 2913, 192, 787, 775, 788, 658, 712, 1, 1, 5973, 2223, 2417, 362, 1, 5974, 1, 5975, 2223, 2417, 362, 1, 5976, 539, 1, 1645, 1646, 1, 3747, 936, 1, 3264, 1, 1781, 1, 1782, 93, 2166, 1, 1783, 1, 1647, 1, 5977, 2223, 2417, 362, 1, 1720, 2913, 1, 1784, 1, 1648, 1, 5978, 118, 1, 3748, 301, 668, 5979, 1335, 1, 3749, 1, 108, 59, 1, 9424, 1, 93, 146, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 1396, 1, 3750, 262, 1, 1785, 1, 1720, 2913, 1, 800, 1, 4488, 2541, 9425, 3265, 1, 5980, 1, 3751, 1, 1867, 139, 1, 1868, 1, 3266, 1, 1649, 1175, 1, 9426, 1, 1869, 1, 3752, 2417, 1, 293, 1, 5981, 1, 221, 58, 103, 318, 1, 919, 2223, 2417, 362, 1, 5982, 2223, 2417, 362, 1, 5983, 1, 1721, 1, 354, 8, 230, 1, 1786, 1, 3753, 1, 5984, 352, 1, 1787, 1, 1650, 9427, 9428, 9429, 9430, 9431, 9432, 354, 8, 230, 1781, 1783, 2078, 9433, 188, 416, 1, 3748, 301, 3267, 5979, 1335, 1, 108, 58, 103, 318, 1, 4489, 227, 228, 227, 1, 1651, 1, 1870], [40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 773, 6, 272, 1, 198, 375, 198, 178, 387], [682, 682], [5985, 959, 131, 6, 626, 5985, 959, 131, 6, 626], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1566, 448, 6, 1360, 3402, 10, 171, 9434, 110, 742, 9435, 44, 8, 524, 117, 536, 9436, 42, 8, 524, 1, 3, 117, 127, 42, 534, 402, 67, 3, 536, 6, 4490, 11, 261, 359, 1, 1641, 536, 99, 5986, 151, 11, 2778, 1, 1, 246, 35, 14, 196, 2, 3, 826, 1748, 1, 44, 246, 729, 166, 2, 9437, 536, 1329], [28, 1665, 7, 2137, 10, 4491, 40, 7, 40, 189, 195, 9438, 101, 28, 30, 9439, 4475, 11, 9440, 7, 9441, 1, 78, 4491, 1, 1, 1, 1, 544, 195, 2914, 9442, 9443, 9444, 1952, 9445, 1, 78, 40, 40, 4491], [8, 84, 2, 909, 3, 82, 20, 30, 5987, 62, 3, 76, 62, 76, 1], [13, 3268, 9446, 9447, 55, 1, 1, 3268, 5988, 99, 170, 408, 134, 257, 10, 2738, 3075, 1, 1, 14, 3072, 104, 13, 1, 1, 3268, 5988, 99, 1800, 43, 178, 4, 3, 2579, 36, 599, 5124, 1, 1, 135, 750], [3269, 36, 1974, 850, 20, 1575, 482, 75, 3269, 36, 1974, 850, 20, 1575, 482, 75, 1, 1, 586, 18, 9448, 93, 95, 482, 3269, 36, 1974, 6, 75, 709, 1012, 1810, 333, 173, 1012, 22, 3270, 173, 909, 469, 63, 8, 336, 354, 63, 9449, 1254, 1, 1, 1, 111, 101, 1, 1, 47, 351, 3, 693, 559, 4, 850, 20, 425, 30, 935, 101, 7, 151, 6, 9, 210, 36, 423, 943], [600, 3, 923, 11, 533, 42, 8, 45, 600, 3, 923, 11, 533, 42, 8, 45, 1, 190, 1, 90, 62, 1, 1, 497, 42, 5069, 10, 3, 1843, 67, 396, 39, 8, 927, 1096, 1, 446, 6, 197, 986, 296, 39, 927, 67, 8, 396], [58, 94, 5989, 1277, 48, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9450, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [74, 5990, 55, 101, 1, 14, 50, 80, 2, 778, 74, 5990, 53, 47, 42, 8, 84, 2, 893, 36, 161, 943], [15, 29, 31, 3093, 3502, 2806, 5991, 52, 26, 26, 26, 26, 585, 165, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 9451, 1043, 3501, 478, 2543, 3514, 4492, 9452, 1504, 3093, 3502, 2806, 5991, 3513, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [1540, 5992, 21, 6, 161, 3754, 90, 5993, 159, 21, 6, 307, 1540, 5992, 21, 6, 161, 3754, 90, 5993, 159, 21, 6, 307], [41, 3102, 110, 38, 8, 141, 84, 2, 199, 33, 412, 4, 41, 11, 393, 593, 112, 3, 1189, 104, 4493, 42, 511, 357, 4494, 66, 41, 664, 1, 183, 1448, 33, 115, 272, 3, 1935, 30, 3, 41, 100, 67, 207, 2032, 21, 65, 820, 141, 3, 179, 1, 628, 3258, 4493, 42, 273, 4494, 1, 428, 576, 2410, 1234, 4493, 1, 110, 38, 3755, 193, 411, 110, 2185, 326, 475, 36, 175, 1324, 1311, 599, 172, 30, 3, 412, 733], [132, 15, 32, 28, 59, 5994, 14, 132, 33, 15, 32, 28, 59, 5994], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [46, 230, 55, 1, 1, 49, 8, 84, 2, 46, 2, 191, 217, 311, 2, 385, 13, 1, 611, 1975, 7, 270, 80, 253, 3, 1442, 13, 2, 25, 3, 179, 30, 73, 13], [77, 366, 6, 8, 405, 77, 366, 6, 8, 405, 323, 37, 71, 1431, 84, 2, 29, 181], [27, 2, 46, 2, 338, 9453, 27, 2, 46, 2, 338, 212], [27, 2, 46, 2, 79, 27, 2, 46, 2, 79], [25, 224, 11, 5812, 5813, 137, 13, 125, 20, 13, 25, 3], [3271, 11, 249, 31, 55, 5188, 1, 1, 47, 330, 1299, 1367, 393, 249, 673, 184, 102, 186, 116, 6, 4, 7, 3, 3535, 39, 3577, 161, 1367, 67, 4, 151, 6, 673, 350, 4, 113, 7, 276, 21, 1571, 161, 83, 628, 113, 536, 7, 201, 328, 166, 673, 53, 96, 184, 97, 3577, 3, 117, 1779, 207, 47, 479, 2, 114, 85, 6, 3, 628, 589, 393, 3, 778, 341, 424, 3, 536, 3577, 3, 251, 127, 8, 3, 1253, 127], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [1355, 74, 273, 737, 303, 241, 37, 1291, 14, 50, 47, 742, 2733, 3, 123, 419, 3, 74, 1355, 106, 737, 303, 3, 5, 184, 6, 4378, 625, 66, 241, 28, 9454, 47, 1548, 489, 3, 74, 7, 728, 66, 576, 3221, 7, 878, 10, 74, 7, 1441, 728, 23, 334, 716, 3, 74, 106, 273, 303, 1108, 777, 53, 425, 30, 437, 74, 101, 180, 2291, 2, 119, 138, 196, 12, 1355, 53, 163, 14, 50, 166, 1462, 1108, 37, 303, 7, 386, 251, 2, 166, 510], [15, 2907, 79, 226, 32, 6, 64, 15, 2907, 226, 32, 6, 64, 7, 374, 160, 777, 42, 2389, 132, 662, 7, 818, 3, 1886, 1206, 1, 14, 574, 2, 4495, 62, 101, 7, 1273, 444, 662, 10, 121], [1382, 4496, 171, 51, 9455, 3, 4496, 171, 3, 149, 127, 6, 8, 806, 117, 7, 149, 127, 53, 613, 1, 14, 114, 3, 709, 7, 270, 80, 253, 288, 2, 468, 693, 136, 4, 4496, 1, 113, 113, 1, 9456, 127], [671, 671], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5995, 3272, 1807, 2555, 24, 5143, 111, 101, 1, 1, 38, 350, 3, 163, 666, 716, 21, 6, 8, 98, 323, 546, 91, 163, 39, 35, 14, 398, 23, 53, 754, 53, 285], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [528, 31, 110, 49, 250, 2, 528, 3, 140, 2, 106, 2317, 440, 10, 33, 24, 382, 4, 7, 737, 164, 37, 891, 2489, 612, 99, 38, 2, 509, 194, 29, 18, 33, 142, 2, 91, 85, 6, 601, 10, 4438, 4439, 1529, 674, 149, 685, 24, 203, 730, 24, 144, 730, 24, 144, 82, 20, 714, 490, 1863], [110, 38, 517, 968, 44, 99, 8, 312, 5198, 222, 37, 3, 179, 53, 203, 1, 472, 1, 473, 1, 23, 2493, 6, 307, 207, 39, 21, 43, 321, 2772, 14], [97, 122, 11, 241, 709, 97, 122, 2, 3, 76, 1, 38, 248, 33, 4497, 691, 7, 13, 67, 21, 6, 8, 45], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 164, 1553, 2, 606, 566, 28, 164, 1553, 2, 606, 566, 1, 267, 2, 3, 28, 52, 137, 487, 1, 635, 3, 28, 2, 421, 3, 400, 1, 31, 321], [15, 191, 4135, 1103, 6, 8, 45, 15, 1103, 11, 9457, 6, 8, 45, 38, 350, 1831, 171, 2, 373, 7, 2105, 2, 33, 15, 1103, 67, 21, 6, 8, 3273, 38, 183, 248, 2, 189, 181, 1799, 3, 15, 1103, 7, 320, 2, 1619, 7, 118, 3, 37, 15, 28, 3178, 4478, 89, 8, 1196, 516, 1243, 468, 98, 4, 3, 9458, 482], [2640, 666, 12, 2129, 384, 37, 71, 18, 322, 1341, 1457, 1341, 103, 11, 4, 3, 52, 609, 56, 9459, 9460, 182, 213, 130, 155, 204, 117, 107, 214, 146, 2640, 666, 12, 2129, 384, 37, 71, 18, 322, 1341, 1457, 1341, 103, 11, 4, 3, 52, 609, 91, 377], [191, 217, 31, 2599, 896, 85, 35, 428, 250, 2, 106, 7, 3, 31, 35, 38, 3186, 1, 49, 250, 2, 29, 349, 610, 67, 49, 164, 72, 37, 71, 51, 95, 4, 91, 163, 1, 14, 1109, 464, 18, 143, 37, 891], [5, 5, 1895, 22, 4, 5, 19, 12, 5, 5, 1895, 22, 4, 5, 19, 12], [39, 35, 25, 33, 13, 11, 26, 56, 9461, 9462, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 35, 25, 33, 13, 11, 26], [25, 3, 13, 11, 4410, 4411, 10, 15, 160, 872, 14, 25, 33, 13], [110, 430, 3, 548, 11, 130, 333, 4, 15, 191, 3558, 7, 49, 164, 72, 37, 71, 110, 49, 84, 2, 100, 3, 548, 11, 130, 333, 67, 51, 413, 10, 95, 4, 2, 15, 191, 1541, 118, 72, 37, 71, 44, 530, 3, 2802, 6, 2803, 30, 37, 91, 95, 173, 11, 316, 222, 3, 548, 206, 4, 6, 8, 901, 546, 51, 413, 10, 9463, 218, 118, 2275, 767, 44, 5996, 79, 39, 100, 23, 173, 173, 2802, 95, 9464, 7, 1098, 80, 2, 326, 3, 447, 2, 100, 3, 173], [1529, 125, 2418, 31, 2418, 6, 495, 67, 6, 8, 323, 98, 4, 3756, 302, 39, 8, 118, 1215, 2, 1241, 183, 39, 8, 3757, 4, 127, 2, 189, 73, 2418, 350, 73, 2418, 2, 1005, 67, 38, 881, 30, 3758, 2, 312, 68, 1031, 3757, 3, 648, 14, 386, 53, 47, 9465, 3, 117, 423, 1215, 73, 2418], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 25, 13, 25], [88, 1387, 2224, 9466, 1933, 425, 533, 14, 1273, 77, 2, 9467, 2, 391, 283, 1387, 31, 169, 9468, 283, 88, 1387, 2224, 7, 1797, 41, 284, 2026, 4358, 257, 7, 3, 1387, 3494, 18, 3, 1964, 4412], [324, 171, 230, 324, 171, 230], [45, 10, 3, 1652, 1573, 4, 90, 2, 91, 68, 47, 39, 106, 444, 573, 290, 2, 127, 143, 2147, 45, 10, 3, 1652, 1573, 4, 90, 2, 91, 68, 47, 39, 106, 444, 573, 290, 2, 127, 143, 2147], [41, 8, 45, 2199, 837, 23, 334, 67, 99, 8, 270, 80, 251, 4, 172, 41, 75, 9469, 9470], [45, 10, 164, 283, 73, 148, 2284, 11, 911, 45, 10, 164, 283, 73, 148, 2284, 11, 911], [27, 2, 463, 41, 27, 2, 463, 41], [191, 1541, 548, 684, 110, 828, 274, 33, 134, 142, 36, 72, 607, 191, 416, 2, 607, 82, 416, 1352, 199, 191, 1541, 548, 11, 333, 51, 405, 287, 44, 38, 1071, 44, 199, 131, 1450, 49, 327, 158, 72, 37, 44, 2347, 80, 2, 335, 7, 9471, 3, 133, 36, 2290, 2, 352, 91, 163, 37, 411, 49, 8, 3274, 30, 23, 97, 1229, 131, 10, 376, 5997, 39, 612, 525], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5998, 24, 24, 144, 6, 8, 545, 23, 6, 161, 3499, 52, 54, 98, 510, 5998, 24, 24, 144, 6, 8, 545, 23, 6, 161, 3499, 52, 54, 98, 510], [535, 29, 55, 39, 612, 50, 80, 30, 535, 29], [25, 3, 13, 11, 4410, 4411, 10, 15, 160, 15, 110, 248, 137, 33, 79, 46, 13, 67, 21, 6, 8, 45], [87, 484, 37, 87, 484, 37], [2873, 100, 359, 42, 1180, 4, 5999, 111, 14, 2151, 21, 34, 83, 2873, 100, 359, 42, 1180, 4, 5999, 1215, 114, 516, 1243, 3, 1215, 1035, 6, 745, 3, 3759, 23, 244, 169, 811, 3, 1215, 2786, 53, 2, 83, 100, 359, 6000, 6001, 120, 501, 11, 724, 967], [217, 24, 203, 1722, 2419, 225, 20, 9472, 9473, 124, 291, 292, 1145, 550, 217, 24, 203, 1722, 2419, 225, 20, 55, 14, 114, 158, 3, 96, 2419, 173, 2, 91, 424, 21, 63, 1722, 36, 161, 52, 284, 38, 794, 3, 724, 295, 96], [840, 623, 6002, 6003, 124, 291, 292, 1145, 550, 840, 623, 55, 21, 50, 39, 35, 50, 14, 91, 3, 925, 4, 3, 57, 96, 151, 6, 623, 44, 54, 2, 312, 67, 21, 99, 8, 583, 80, 72, 766, 62, 3757, 765, 7, 99, 8, 1216, 98, 3, 222, 4, 3, 212, 49, 183, 1090, 21, 36, 240, 18, 24, 53, 49, 4498, 11, 134], [73, 148, 280, 50, 2, 189, 7, 893, 3, 28, 46, 809, 7, 41], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 239, 131, 4, 417, 20, 32, 27, 2, 239, 131, 4, 417, 20, 32], [2225, 859, 279, 140, 138, 86, 102, 11, 211, 3, 2225, 859, 7, 138, 86, 11, 3, 279, 140, 220], [3, 974, 354, 11, 6004, 6005, 65, 402, 55, 974, 11, 6004, 6005, 821, 65, 141, 495], [5, 5, 1895, 22, 4, 5, 19, 12, 5, 5, 1895, 22, 4, 5, 19, 12], [76, 1121, 6, 454, 278, 76, 1121, 6, 454, 278], [76, 2799, 76, 2799], [15, 2907, 59, 649, 2, 43, 64, 4, 374, 26, 15, 2907, 59, 649, 2, 43, 64, 4, 374, 26, 102, 11, 132], [27, 2, 515, 41, 27, 2, 515, 41], [74, 8, 303, 56, 5455, 5456, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 496, 37, 891, 51, 250, 2, 70, 33, 74, 830, 356, 27, 2, 176, 2, 3, 958, 54, 2, 5895, 2420, 7, 2420], [33, 41, 99, 8, 134, 10, 33, 142, 23, 63, 112, 33, 13, 119, 21, 507, 10, 33, 86, 67, 8, 33, 148, 9474, 9475, 793, 52, 952, 6, 382, 148, 41], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [27, 2, 122, 2, 24, 1705, 4, 90, 27, 2, 122, 2, 24, 1705, 4, 90], [70, 10, 34, 9, 56, 9476, 9477, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 47, 118, 23, 34, 34, 9, 402, 310, 54, 2, 43, 84, 2, 118, 23, 48, 98, 781, 2915], [32, 132, 32, 132], [34, 70, 10, 258, 34, 70, 10, 258], [225, 418, 42, 8, 456, 357, 331, 2, 9478, 51, 2594, 2, 3252, 117, 149, 676, 38, 225, 418, 456, 236, 2, 43, 2305, 23, 507, 11, 1238, 359, 6006, 7, 9479, 127, 3220, 67, 51, 72, 127, 6, 2594, 2, 2182, 284, 42, 8, 357, 6007, 3, 3206, 4, 3, 127, 6, 391, 67, 10, 3, 225, 20, 21, 6, 3, 179, 53, 3, 1465, 2, 2390, 14, 91, 163, 11, 1231], [34, 70, 965, 34, 70, 965], [26, 13, 14, 25, 33, 13, 4, 26, 91, 1535, 96], [55, 49, 38, 193, 327, 100, 149, 2564, 171, 131, 99, 8, 528, 887, 55, 49, 38, 193, 327, 100, 149, 2564, 171, 131, 99, 8, 528, 887], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [447, 9480, 123, 30, 4499, 8, 357, 2190, 10, 241, 460, 47, 38, 241, 460, 433, 577, 6, 8, 357, 2190, 7, 284, 42, 4962, 2, 3, 709, 252, 252, 44, 6, 934, 18, 23, 5, 38, 163, 1231], [27, 2, 236, 98, 87, 964, 27, 2, 236, 98, 87, 964], [142, 477, 2716, 1369, 1602, 142, 477, 2716, 1369, 1602], [920, 6008, 47, 823, 1369, 3760, 920, 6008, 47, 823, 1369, 3760], [193, 30, 682, 3761, 3762, 3763, 193, 30, 682, 3761, 3762, 3763], [142, 477, 343, 278, 3762, 3763, 142, 477, 343, 278, 3762, 3763], [280, 73, 471, 2916, 2917, 280, 73, 471, 2916, 2917], [27, 2, 122, 2, 1020, 7, 1020, 27, 2, 122, 2, 1020, 7, 1020], [15, 26, 13, 25, 588, 15, 26, 13, 25, 588], [32, 64, 32, 64], [13, 6, 8, 164, 1996, 13, 6, 8, 164, 1996], [25, 9481, 15, 26, 28, 6009, 111, 101, 1, 1, 185, 35, 14, 25, 4360, 3, 15, 26, 28, 6009, 9482, 9483, 201, 15, 1, 1, 5215], [27, 2, 515, 41, 169, 1483, 3, 13, 27, 2, 515, 41, 169, 1483, 3, 13], [88, 2537, 8, 545, 88, 2537, 8, 545], [307, 88, 812, 6, 8, 6010, 307, 88, 812, 6, 8, 6010, 351, 121, 36, 1205, 284, 742, 425, 3, 88, 500, 609, 7, 2141, 44, 1319, 6, 4, 127, 716, 3, 88, 812, 6, 8, 2397, 8, 1733, 3, 691, 13, 454, 1, 1, 86, 630, 656], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 162, 10, 40, 1, 1, 1154, 665, 18, 3, 123, 790, 783, 11, 407, 211, 67, 99, 8, 211, 407, 70, 1, 1, 103, 18, 481, 8, 303, 83, 248, 1, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 79, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1548, 489, 7, 10, 74, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [27, 2, 118, 3, 88, 297, 10, 41, 27, 2, 118, 3, 88, 297, 10, 41], [974, 11, 28, 6011, 6012, 974, 11, 28, 6011, 6012, 55, 841, 1891, 11, 3275, 9484, 9485, 821, 65, 141, 495, 413, 3, 229, 2, 239], [363, 25, 79, 13, 11, 28, 6013, 363, 25, 79, 13, 11, 28, 6013], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [223, 974, 6014, 6015, 6016, 55, 841, 1891, 6014, 6015, 6016, 821, 65, 141, 495, 413, 3, 229, 2, 239], [27, 2, 392, 4, 2, 76, 27, 2, 392, 4, 2, 76], [620, 3527, 1298, 9486, 9487, 1171, 128, 126, 1003, 208, 21, 1, 1, 273, 241, 210, 30, 3, 810, 516, 30, 104, 71, 4, 128, 20, 449, 1, 1, 6017, 39, 3276, 3277, 410, 34, 7, 129, 35, 62, 241, 165, 568, 1, 1, 284, 97, 322, 143, 2573, 1, 1, 14, 270, 166, 253, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [555, 810, 193, 55, 21, 1730, 1, 1, 365, 334, 1, 49, 8, 84, 2, 206, 73, 632, 158, 128, 126, 555, 810, 1331, 35, 3, 1730, 53, 332, 2512, 36, 96, 181], [203, 34, 70, 203, 34, 70], [3764, 46, 2401, 11, 73, 3148, 14, 189, 3764, 46, 2401, 11, 96, 73, 4500, 56, 9488, 9489, 28, 59, 9490], [29, 2, 749, 254, 218, 4501, 1587, 6018, 28, 9491, 54, 29, 2, 218, 4501, 1587, 6018, 11, 9492, 4501, 1152], [5, 654, 374, 26, 847, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 847, 784, 22, 4, 5, 19, 12], [1289, 162, 5182, 1223, 4, 26, 1482, 162, 223, 131, 6, 8, 2197, 351, 1223, 4, 26], [193, 30, 74, 959, 193, 30, 74, 959, 1, 1, 37, 71, 2619, 1248, 346, 62, 9493, 37, 1078, 1, 23, 6, 175, 9494, 74], [27, 2, 46, 2, 15, 1808, 13], [299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 799, 1406, 221, 138, 1, 221, 40, 799, 1406, 1, 221, 247, 1, 221, 1381, 196, 306, 228, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 789, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 799, 1406, 1, 221, 247, 1, 221, 1381, 196, 306, 228, 1, 301, 40, 9, 982, 1, 301, 247, 1, 133, 903, 318, 1, 801, 789, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 24, 1174, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1576, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 228, 799, 1406, 192, 787, 775, 788, 658, 712, 1, 1, 642, 657, 1, 9, 982, 1, 1, 643, 657, 1, 9, 982], [299, 523, 4, 318, 1306, 11, 247, 36, 1111, 221, 138, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 789, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 1111, 1, 221, 247, 1, 221, 1381, 196, 228, 773, 1, 301, 40, 1, 301, 247, 1, 133, 903, 318, 1, 801, 789, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1176, 358, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 154, 232, 789, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 688, 131, 1, 785, 786, 10, 2, 228, 773, 1111, 192, 787, 775, 788, 658, 712, 1, 1, 642, 657, 1, 1, 1, 643, 657, 851], [6019, 6020, 13, 25, 6019, 6020, 13, 25], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 189, 186, 8, 1642, 1010, 233, 6021, 1182, 3476], [235, 108, 453, 235, 108, 453], [461, 182, 6, 626, 461, 9495, 9496, 1, 49, 1, 291, 292, 1, 1289, 461, 182, 6, 626, 461, 1, 1, 55, 1, 3, 461, 182, 6, 391, 51, 176, 629, 21, 1, 1, 1, 1, 1, 1, 67, 51, 199, 1561, 475, 3, 461, 182, 6, 626, 185, 35, 14, 50, 2, 114, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 135], [25, 3, 13, 11, 6022, 6023, 10, 15, 865, 1245, 111, 83, 3, 28, 6024, 54, 423, 13, 25], [25, 224, 11, 6022, 6023, 137, 13, 125, 20, 13, 25, 111, 83, 1, 1, 14, 3, 28, 6024, 54, 423, 13, 25], [41, 8, 164, 267, 2, 480, 78, 41, 8, 164, 267, 2, 480, 78], [307, 503, 70, 37, 111, 1, 1, 38, 2, 9497, 3, 1224, 18, 3, 438, 311, 2, 1965, 968, 7, 1714, 31, 67, 329, 9498, 438, 1224, 7, 243, 3044, 2918, 11, 1714, 70, 312, 2918, 503, 6, 584, 1, 335, 2, 322, 3, 503, 257, 30, 2918, 716, 3, 52, 39, 729, 21, 7, 2107, 3, 73, 503, 30, 6025, 1, 1, 207, 185, 35, 50, 80, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9499, 9500, 9501, 135], [15, 26, 32, 64, 15, 26, 32, 64], [74, 382, 9502, 1370, 83, 1296, 30, 175, 5318, 9503, 1370, 1370, 1319, 5893, 77], [501, 297, 208, 83, 1, 1, 39, 35, 50, 80, 2, 29, 96, 1626], [13, 11, 728, 4502, 4503, 55, 33, 9504, 4502, 4503, 997, 2, 190, 190, 9505, 180, 134, 7, 219, 2, 122, 2, 728, 185, 35, 14, 320, 911, 13, 11, 621, 728, 9506, 4502, 4503, 724, 2763, 120, 4301, 7, 9507, 342, 1079, 556, 714, 135], [32, 64, 4, 226, 32, 64, 4, 226], [50, 2, 2919, 3, 1207, 184, 97, 43, 2606, 66, 15, 172, 51, 3, 1207, 42, 2606, 53, 3, 437, 577, 2052, 47, 54, 1961, 11, 444, 716, 169, 47, 1961, 53, 577, 252, 15, 429, 1696, 71, 265, 3, 772, 276, 47, 410, 577, 252, 1054, 15, 99, 1474, 2, 1209, 577, 252, 23, 410, 166, 9508, 288, 2, 2919, 23, 1207, 14, 50, 2, 2919, 444], [32, 64, 4, 431, 549, 140, 32, 64, 4, 431, 549, 140], [60, 94, 1668, 856, 618, 75, 112, 49, 10, 85, 103, 18, 94, 58, 16, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1621, 225, 20, 11, 632, 6, 8, 45, 546, 208, 21, 101, 1, 1, 38, 257, 72, 31, 30, 1621, 225, 20, 38, 3, 177, 15, 127, 1, 47, 330, 75, 1081, 18, 83, 627, 67, 1621, 968, 18, 438, 1, 627, 7, 38, 8, 141, 1927, 2069, 47, 42, 8, 1642, 2, 106, 72, 1621, 225, 20, 11, 23, 1, 207, 248, 2, 106, 1621, 225, 20, 11, 627, 67, 21, 187, 8, 134, 30, 225, 20, 3, 75, 1081, 973, 351, 9509, 1633, 1, 207, 2043, 83, 225, 418, 9510, 75, 1081, 225, 20, 7, 9511, 444, 197, 225, 20, 11, 438, 7, 517, 225, 20, 11, 438, 1, 169, 44, 248, 257, 2, 225, 20, 21, 67, 273, 3, 385, 9512, 63, 806, 54, 2, 38, 72, 225, 20, 11, 438, 30, 973, 9513, 75, 9514, 39, 35, 14, 38, 366, 7, 50, 80, 1, 23, 6, 8, 966, 31, 47, 330, 44, 534, 567, 420], [169, 811, 3, 13, 41, 6, 8, 545, 2, 3, 2207, 625, 13, 56, 9515, 182, 213, 130, 155, 204, 117, 107, 214, 146, 169, 811, 3, 13, 41, 6, 8, 545, 2, 3, 2207, 625, 13], [82, 20, 73, 117, 2645, 111, 273, 280, 37, 2327, 30, 1156], [1545, 32, 25, 13, 55, 22, 2, 46, 33, 1545, 32, 7, 351, 96, 71, 185, 35, 14, 25, 13, 11, 33, 1545, 32, 54, 21, 2, 106, 205, 242, 569, 593, 33, 28, 59, 6, 9516], [27, 2, 100, 41, 7, 191, 217, 27, 2, 100, 41, 7, 191, 217], [191, 217, 8, 45, 55, 1, 1, 49, 27, 2, 29, 191, 217, 51, 100, 191, 217, 21, 1128, 899, 158, 96, 167, 1, 308, 366, 158], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3, 474, 1227, 78, 6, 260, 435, 233, 10, 40, 14, 663, 3, 474, 1227, 78, 6, 260, 435, 233, 10, 40, 14, 663], [206, 3, 2533, 2534, 2, 1023, 125, 457, 55, 101, 39, 35, 14, 206, 2533, 2534, 2, 3, 1023, 125, 457, 159, 4, 404, 20, 2533, 2534, 101, 1287, 2215, 1051, 7, 1906, 188, 21], [15, 46, 230, 55, 1, 1, 49, 8, 84, 2, 46, 158, 15, 53, 33, 985, 9517, 3, 236, 2839, 1, 1288, 35, 2, 1975, 3, 179], [41, 6, 8, 638, 10, 33, 148, 56, 9518, 182, 213, 130, 155, 204, 117, 107, 214, 146, 41, 6, 8, 638, 10, 33, 148], [60, 94, 1212, 361, 856, 618, 6, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 26, 32, 64, 15, 26, 32, 64], [15, 26, 32, 64, 15, 26, 32, 64], [726, 52, 18, 148, 55, 1, 1, 54, 50, 3, 726, 52, 18, 33, 148, 542, 1089, 2, 43, 45, 2351, 294, 1745, 1664, 294, 4216, 86, 21, 343, 9519, 11, 87, 497, 1, 1, 14, 366, 158, 23], [15, 46, 1237, 55, 1, 1, 14, 91, 23, 37, 1, 39, 8, 95, 4, 15, 1, 14, 1667, 80, 3, 1340], [60, 94, 2226, 856, 618, 6, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [162, 6026, 705, 162, 6026, 705], [15, 52, 343, 278, 466, 358, 47, 742, 2733, 3, 123, 18, 15, 52, 184, 6, 343, 278, 466, 116, 14, 50, 114, 7, 2180, 23, 31, 2, 410, 15, 52, 316, 3484, 1908], [40, 686, 6027, 6, 272, 198, 375, 198, 178, 387, 40, 686, 6027, 6, 272, 198, 375, 198, 178, 387], [27, 2, 1767, 162, 20, 48, 27, 2, 1767, 162, 20, 48, 2421, 18, 37, 6, 163], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [88, 365, 483, 1, 1, 39, 35, 14, 386, 1459, 88, 6, 601, 294, 1094, 12, 3, 1127, 1, 1, 151, 42, 107, 18, 210, 3446, 166, 4, 1, 1, 1, 12, 3, 1127, 47, 97, 29, 88, 12, 83, 1, 1, 576, 185, 8, 322, 73, 117, 460, 53, 33, 2165, 75, 2224, 428, 8, 4105, 590, 7, 3663, 185, 201, 91, 197, 62, 451, 627, 2, 493, 36, 1, 1, 3, 101, 581, 4, 1668, 635, 44, 5844, 44, 284, 38, 330, 2, 129, 117, 916, 10, 4338, 9520, 53, 151, 42, 2318, 1482, 4, 88, 73, 117, 460, 44, 42, 8, 6028, 2, 15, 265, 1, 149, 3689, 1, 5503, 1, 449, 1, 1, 47, 428, 635, 66, 161, 501, 1076, 44, 284, 5330, 21, 428, 1995, 18, 1108, 193, 693, 1, 1, 450], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [15, 278, 358, 1976, 358, 862, 7, 24, 1033, 1359, 3, 15, 6, 343, 278, 769, 15, 196, 657, 2298], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [457, 127, 1475, 31, 55, 1, 1, 51, 1475, 3, 461, 287, 2, 492, 1149, 4, 15, 66, 1039, 1561, 475, 1510, 21, 468, 3, 165, 182, 2490, 467, 6029, 207, 288, 39, 795, 21, 1, 1, 1, 1, 30, 135], [13, 25, 192, 13, 120, 20, 13, 120, 13, 25, 192, 13, 120, 20, 13, 120], [41, 8, 45, 7, 27, 2, 384, 245, 41, 8, 45, 7, 27, 2, 384, 245], [82, 20, 73, 117, 111, 1, 1, 8, 84, 2, 206, 73, 117, 4, 82, 20, 308, 295, 2, 795, 3, 37, 1, 1, 1, 30, 1156], [939, 41, 8, 323, 3, 88, 206, 4, 939, 41, 8, 323, 3, 88, 206, 4, 1, 267, 2, 3, 28, 52, 137, 487, 1, 584, 7, 2920, 3, 28, 809, 10, 88, 1, 2921, 41, 1, 28, 328, 66, 1797, 7, 6030, 41, 1319, 6, 494, 172, 1, 31, 321], [76, 29, 233, 114, 76, 29, 233, 114], [97, 326, 2019, 2910, 2911, 4, 404, 20, 110, 248, 2, 206, 2, 3, 3765, 302, 10, 34, 67, 1431, 326, 911, 4, 404, 20, 1, 14, 202, 3766, 32, 4, 404, 20], [3251, 6031, 33, 962, 6, 21, 219, 2, 468, 426, 80, 4, 3, 875, 171, 44, 1017, 4504, 2847, 36, 2422, 1423, 4505, 4506, 124, 291, 292, 9521, 4507, 550, 6032, 1972, 720, 313, 21, 101, 14, 91, 3, 57, 549, 96, 14, 574, 23, 2, 80, 3251, 6031, 33, 962, 6, 21, 219, 2, 468, 426, 80, 4, 3, 875, 171, 44, 1017, 4504, 2847, 36, 2422, 9522, 4505, 4506, 149, 120, 9523, 1614, 3767, 3178, 875, 9524, 49, 1017, 4504, 4505, 4506, 243, 6032, 1972, 111, 1017, 44, 6, 8, 72, 32, 4, 15, 21, 6, 73, 117, 3572, 44, 63, 1063, 158, 875, 260, 332, 3, 3278, 18, 6033, 6034, 1680, 35, 99, 54, 2, 436, 72, 21, 34, 2, 38, 21, 6035, 9525], [324, 171, 31, 164, 559, 4, 324, 171, 1210, 163, 324, 171, 31, 1, 1, 14, 119, 570, 314, 11, 28], [41, 182, 6, 811, 456, 41, 182, 6, 811, 456, 1, 267, 2, 3, 28, 52, 137, 487, 1, 274, 3, 6036, 609, 53, 895, 506, 1, 991, 3, 115, 1, 635, 3, 28, 2, 114, 172, 1, 28, 328, 44, 3, 41, 182, 6, 172, 895, 1, 3410, 3, 28, 393, 3, 1477, 2, 509, 2, 119, 3, 41, 6036, 1, 31, 321], [235, 108, 453, 235, 108, 453], [463, 279, 140, 1186, 195, 115, 463, 279, 140, 1186, 195, 115], [9, 395, 329, 10, 87, 121, 9, 395, 329, 10, 87, 121], [123, 30, 15, 46, 3, 78, 302, 6, 8, 178, 123, 30, 15, 46, 3, 78, 302, 6, 8, 178], [110, 49, 8, 84, 2, 909, 82, 20, 91, 96, 167, 554, 110, 49, 8, 84, 2, 909, 82, 20, 91, 96, 167, 554], [8, 84, 2, 46, 2, 79, 8, 84, 2, 46, 2, 79], [28, 27, 2, 46, 2, 3, 279, 140, 28, 27, 2, 46, 2, 3, 279, 140, 28, 27, 2, 46, 2, 3, 587, 217, 28, 164, 9526, 37, 129], [2423, 52, 6, 346, 225, 418, 3, 2423, 52, 6, 346, 225, 418, 184, 6, 6037, 149, 2423, 440, 11, 83, 18, 1620, 687, 469, 149, 14, 574, 2, 872, 101, 7, 9527, 9528, 9529, 11, 1480], [486, 2, 200, 564, 2, 114, 233, 18, 486, 2, 200, 564, 2, 114, 233, 18, 11, 32, 453], [86, 1597, 586, 110, 102, 2, 269, 3, 9530, 18, 3, 793, 86, 1597, 11, 3, 1538, 18, 9531], [1036, 1144, 835, 8, 9532, 328, 1258, 4, 506, 1144, 469, 53, 332, 33, 4391, 337, 264, 9533, 534, 328, 1258, 36, 127, 1021, 1224, 36, 1036, 167, 1259, 28, 6, 2922, 829, 1, 11, 512, 11, 3569, 127, 68, 28, 3279, 1258, 3, 569, 28, 62, 179, 28, 569, 116, 51, 3279, 44, 1072, 3, 506, 1144, 4070, 264, 43, 67, 356, 6038, 558, 5690, 3, 1050], [6039, 6040, 63, 27, 2, 46, 2, 79, 7, 41, 6039, 6040, 63, 27, 2, 46, 2, 79, 7, 41], [1965, 1036, 957, 331, 2, 15, 67, 348, 233, 9534, 931, 90, 90, 465, 1798, 593, 31, 1092, 10, 1, 1, 127, 1, 4449, 1, 134, 314, 1, 1, 1072, 63, 4, 4508, 233, 630, 656, 124, 67, 337, 855, 729, 2, 9535, 373, 1, 2923, 274, 233, 4, 337, 36, 9536, 2, 4508, 21, 274, 233, 4, 2, 9537, 302, 67, 8, 4, 348, 146, 1, 1, 170, 312, 124, 1, 628, 116, 630, 656, 124, 1, 116, 6041, 655, 7, 44, 85, 47, 243, 697, 10, 348, 146, 1022, 4509, 337, 187, 320, 1965, 1036, 136, 2, 15, 67, 1093, 304, 3, 179, 136, 11, 348, 233, 239, 449, 1, 1, 207, 4, 146, 3, 1965, 1036, 136, 912, 21, 2, 15, 9538, 494, 67, 3, 348, 233, 79, 2593, 399, 30, 1965, 1036, 3768, 7, 9539, 53, 68, 1965, 1036, 3768, 1493, 942, 1, 1, 1, 1, 1, 1, 698, 36, 90, 1, 11, 90, 271, 7, 127, 1072, 1, 1, 337, 3769, 3, 127, 4, 3280, 233, 1909, 12, 15, 127, 63, 3281, 328, 3770, 66, 1437, 3768, 184, 337, 2924, 119, 95, 429, 83, 1482, 428, 588, 66, 3771, 21, 4510, 112, 15, 6, 323, 1027, 233, 184, 6, 794, 66, 337, 67, 337, 1737, 6, 323, 3280, 233, 184, 89, 8, 410, 4511, 260, 23, 31, 207, 101, 39, 106, 6042, 6043, 7, 884, 98, 30, 3, 1340], [27, 2, 176, 1430, 359, 36, 15, 27, 2, 176, 1430, 359, 36, 15], [670, 131, 145, 835, 137, 1577, 2401, 90, 514, 90, 465, 1798, 593, 10, 63, 84, 2, 118, 158, 131, 145, 10, 1170, 115, 137, 1170, 59, 2198, 1477, 1332, 96, 1170, 330, 1170, 1022, 100, 10, 283, 115, 180, 1098, 11, 50, 7, 9540, 9541, 113, 120, 9542, 9543, 1358, 120, 7, 706, 66, 1577, 564, 283, 1566, 275, 2, 118, 158, 131, 145, 7, 778, 829, 1050, 1566, 63, 393, 6044, 3094, 825, 73, 681, 722, 569, 2, 1170, 1022, 7, 3282, 919, 18, 131, 145, 276, 696, 158, 1170, 1022, 681, 7, 2268, 95, 77, 63, 9544, 2, 322, 33, 918, 871, 2, 118, 158, 131, 145, 67, 241, 1677, 4510, 942, 3, 1127, 3538, 2, 131, 145, 681, 6045, 63, 534, 1105, 4, 573, 1125, 33, 59, 2227, 425, 30, 3263, 7, 1741, 44, 68, 63, 2118, 9545, 7, 670, 33, 871, 67, 284, 328, 220, 1571, 80, 2, 490, 167, 18, 131, 145, 573, 783, 871], [3, 1891, 354, 11, 6046, 6047, 65, 402, 55, 841, 1891, 11, 6046, 6047, 821, 65, 141, 495], [337, 637, 4, 426, 661, 28, 31, 1092, 36, 90, 90, 7, 90, 263, 36, 9546, 47, 38, 73, 31, 310, 4, 3, 4512, 961, 3, 1577, 42, 2722, 4, 53, 4513, 7, 357, 1105, 4, 426, 165, 9547, 4, 3, 163, 167, 554, 9548, 9549, 1281, 4, 30, 408, 46, 9550, 67, 63, 1105, 4, 53, 9551, 9552, 9553, 23, 6, 73, 119, 2033, 21, 246, 95, 4, 3, 1297, 242, 568, 51, 35, 246, 100, 3, 835, 67, 172, 21, 8, 516, 2722, 4, 3, 391, 568], [419, 524, 11, 501, 297, 419, 524, 11, 501, 297, 1, 267, 2, 3, 28, 52, 137, 487, 1, 2337, 419, 7, 1923, 3, 419, 1, 28, 328, 180, 63, 84, 2, 46, 2, 3, 501, 297, 1, 31, 321], [15, 26, 13, 25, 15, 26, 13, 25], [13, 25, 13, 25], [3, 407, 63, 8, 1063, 861, 203, 146, 55, 39, 95, 4, 33, 115, 311, 2, 638, 18, 6048, 3, 407, 63, 8, 1063, 861], [674, 618, 101, 57, 4220, 246, 265, 241, 967, 10, 250, 2, 119, 3, 57, 29, 53, 495, 96, 11, 161, 674, 101, 9554, 9555, 120, 318, 2340, 9556, 9557, 181, 49, 9558, 9559, 550, 674, 618, 101, 57, 4220, 111, 2424, 106, 35, 1262, 6049, 99, 43, 84, 2, 3105, 23], [481, 218, 6, 346, 481, 218, 6, 346], [27, 2, 122, 2, 2420, 74, 27, 2, 122, 2, 2420, 74], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 176, 15, 359, 27, 2, 176, 15, 359], [27, 2, 122, 2, 340, 27, 2, 122, 2, 340], [27, 2, 927, 395, 10, 87, 27, 2, 927, 395, 10, 87], [133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 51, 3772, 1021, 359, 2, 160, 359, 7, 3773, 2, 176, 62, 355, 1426, 2, 176, 1096, 36, 15, 49, 164, 3, 177, 37, 71, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 37, 51, 405, 72, 2263, 133, 3283, 121], [87, 31, 46, 31, 87, 31, 46, 31], [162, 20, 705, 403, 162, 20, 705, 403], [25, 3, 13, 11, 4514, 4515, 10, 165, 279, 140, 25, 3, 13, 11, 4514, 4515, 10, 165, 279, 140], [27, 2, 100, 41, 27, 2, 100, 41], [136, 3425, 77, 18, 1844, 4, 348, 233, 452, 4, 348, 233, 835, 3, 202, 655, 18, 1072, 42, 1086, 4, 197, 4231, 655, 428, 3425, 77, 18, 1844, 1693, 136, 9560, 924, 18, 323, 21, 664, 53, 1365, 9561], [9562, 127, 107, 90, 47, 91, 127, 4, 337, 184, 9563, 6, 349, 107, 54, 2, 253, 288, 23, 63, 670, 53, 160, 127, 4, 1022], [134, 314, 1642, 1778, 71, 323, 98, 51, 617, 236, 2, 51, 778, 1144, 617, 6, 236, 2, 52, 9564, 435, 516, 51, 47, 778, 1021, 127, 1144, 184, 6, 6050, 18, 1021, 127, 1144], [243, 331, 36, 2425, 20, 50, 11, 134, 127], [331, 36, 2425, 20, 50, 11, 134, 9565], [27, 2, 46, 2, 338, 27, 2, 46, 2, 338], [15, 50, 51, 3772, 1021, 359, 2, 160, 359, 7, 3773, 2, 176, 49, 164, 3, 177, 37, 71], [87, 31, 508, 484, 37, 146, 49, 27, 2, 392, 158, 87, 164, 1000, 98, 71, 1612, 151, 6, 123, 30, 484, 143, 3774], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [574, 2, 474, 97, 176, 134, 359, 311, 2, 6051, 133, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520], [385, 536, 233, 3674, 1086, 4, 417, 20, 3716, 91, 163, 57, 385, 536, 233, 3674, 1086, 4, 417, 20, 3716, 91, 163, 57], [15, 29, 31, 313, 305, 9566, 9567, 6, 164, 684, 4, 15, 51, 390, 1639, 2, 189, 7, 127, 23, 6, 408, 1640, 733, 7, 390, 6, 27, 2, 2205, 897, 359, 263, 36, 6052, 2647, 356, 496, 78, 37, 51, 250, 2, 189, 160, 359, 4, 15, 3, 37, 71, 530, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 37, 51, 405, 72, 2263, 9568, 3283, 121, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 9569, 482, 252, 3, 28, 219, 62, 63, 45, 30, 616, 896, 3, 31, 91, 71, 693, 36, 6052], [4516, 6053, 37, 11, 359, 184, 38, 722, 136, 233, 4, 15, 90, 127, 1072, 1, 1170, 27, 2, 1621, 778, 3, 127, 137, 116, 93, 2923, 2034, 98, 1036, 222, 4, 15, 7, 1319, 1100, 391, 337, 6, 6054, 77, 4516, 6053, 37], [84, 2, 170, 328, 5, 4, 337, 90, 11, 127, 1072, 47, 1621, 328, 5, 4, 337, 67, 1170, 63, 84, 2, 170, 3, 5, 257, 264, 742, 8, 942, 53, 332, 1777, 47, 38, 1916], [27, 2, 118, 160, 127, 2, 176, 37, 6055, 1, 133, 2, 52, 160, 127, 238, 297, 30, 301, 1, 160, 127, 238, 69, 1724, 6, 8, 1520, 1, 37, 51, 405, 72, 2263, 133, 3283, 121], [15, 303, 31, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 15, 303, 31, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 37, 51, 405, 72, 2263, 133, 129], [15, 160, 127, 303, 31, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 15, 303, 31, 133, 2, 52, 160, 127, 238, 297, 30, 301, 160, 127, 238, 69, 1724, 6, 8, 1520, 37, 51, 405, 72, 2263, 133, 129, 2184], [29, 524, 11, 6056, 2, 404, 20, 14, 90, 4517, 4518, 6056, 29, 2, 404, 20, 2, 239, 1163, 2307, 2, 85, 9570, 6, 2426, 669, 1324, 270, 80, 253, 68, 35, 38, 143, 498], [88, 365, 334, 1, 1, 54, 50, 1977, 72, 32, 4, 88, 3, 32, 63, 625, 2, 80, 66, 517, 3038, 67, 3, 32, 65, 112, 141, 6035, 49, 27, 2, 3072, 3, 32, 112, 49, 8, 3, 640, 149], [191, 217, 46, 31, 191, 217, 46, 31], [15, 6, 8, 6057, 80, 176, 359, 71, 9, 6058, 6059, 71, 9, 6058, 6059], [57, 136, 9571, 9572, 124, 291, 292, 4257, 4258, 4441, 4442, 1145, 550, 1429, 32, 136, 111, 21, 14, 663, 68, 23, 6, 6060, 62, 813, 6, 72, 2310, 57, 196, 11, 161, 90, 117, 200, 57, 767, 21, 6, 1332, 10, 2310, 9573, 44, 6, 273, 357, 304, 66, 740, 47, 264, 737, 21, 4, 1072, 14, 778], [324, 171, 6, 230, 324, 171, 6, 230], [508, 484, 37, 87, 31, 508, 484, 37, 87, 31], [27, 2, 176, 160, 359, 10, 15, 74, 1762, 27, 2, 176, 160, 359, 10, 15, 74, 1762], [6061, 1091, 36, 41, 6061, 1091, 36, 41], [87, 6, 8, 405, 87, 6, 8, 405], [920, 168, 20, 477, 1369, 1602, 920, 168, 20, 477, 1369, 1602], [149, 1193, 273, 429, 53, 100, 4, 3, 2564, 603, 149, 1193, 273, 429, 53, 100, 4, 3, 2564, 603, 149, 1193, 65, 141, 9574, 989, 21, 273, 429, 53, 100, 4, 3, 2564, 603, 9575, 9576, 2291, 322, 34, 1958, 2, 9577, 9578, 23, 149, 1193, 273, 1100, 100], [79, 7, 15, 32, 64, 79, 7, 15, 32, 64], [339, 121, 1120, 941, 533, 339, 121, 1120, 941, 533], [87, 6, 8, 545, 51, 250, 2, 106, 72, 10, 470, 381, 167, 818, 377, 429, 87, 394, 449, 49, 8, 84, 2, 1539, 143, 87, 381, 12, 23, 116, 311, 2, 23, 123, 9579, 9580, 24, 90, 1570], [13, 25, 50, 36, 13, 125, 20, 13, 120, 13, 25, 50, 36, 13, 125, 20, 13, 120], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [27, 2, 100, 162, 82, 20, 11, 655, 1064, 29, 4519, 4520, 113, 1064, 166, 113], [13, 25, 13, 25], [2878, 239, 609, 365, 334, 1, 1, 737, 496, 23, 37, 7, 38, 2, 735, 77, 18, 155, 204, 669, 116, 51, 243, 100, 419, 3, 580, 603, 219, 2, 43, 243, 543, 2, 3, 2878, 239, 609, 347, 23, 65, 942, 2, 567, 165, 826, 4, 3, 138, 1076], [13, 25, 102, 11, 15, 1528, 7, 26, 27, 2, 46, 2, 162, 20, 15, 571], [1460, 18, 475, 55, 21, 110, 1960, 33, 475, 4, 175, 218, 9581, 1680, 110, 820, 326, 1069, 44, 1928, 9, 345, 38, 143, 505, 85, 6, 385, 581, 1511, 9582, 4521, 4522, 149, 120, 149, 190, 24, 2079, 879, 1363, 988, 2567, 2925, 1137, 1138, 1082, 9583, 23, 71, 6, 1782, 7, 1562, 679, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 35, 268, 23, 71, 66, 1932, 14, 1026, 3, 689, 7, 644, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [79, 13, 25, 79, 13, 25], [88, 445, 31, 146, 307, 50, 275, 88, 31, 88, 1964, 6, 9584, 8, 202, 179, 31, 30, 490, 681, 7, 3145, 7, 236, 704, 615], [939, 88, 51, 878, 10, 88, 21, 1101, 10, 53, 33, 56, 53, 120, 118, 83, 3, 1246, 36, 83, 272, 3, 2889, 479, 21, 2, 355, 38, 33, 88, 136, 151], [209, 333, 548, 1387, 808, 209, 333, 548, 1387, 808], [39, 8, 3204, 3, 9585, 2926, 4, 88, 51, 1009, 98, 73, 117, 91, 772, 165, 1378, 428, 290, 3, 179, 210, 10], [230, 36, 324, 171, 21, 1, 1, 63, 4, 3, 312, 18, 1125, 33, 1864, 51, 805, 155, 133, 172, 51, 250, 2, 421, 33, 1864, 384, 3, 37, 96, 14, 1975, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [729, 2, 1158, 129, 957, 7, 9586, 251, 2, 15, 729, 2, 1158, 129, 957, 7, 70, 251, 2, 15, 23, 6, 255, 2862, 632, 465, 1798], [41, 97, 122, 2, 3, 78, 41, 97, 122, 2, 3, 78], [82, 20, 1810, 31, 188, 21, 200, 102, 1, 135], [9, 395, 4, 382, 4, 910, 9, 395, 4, 382, 4, 910], [205, 242, 71, 55, 208, 1033, 1, 1, 424, 187, 110, 118, 23, 181, 1, 65, 612, 2836, 829, 4, 33, 812, 1, 1, 1343, 263, 30, 450, 750, 135], [15, 2651, 330, 141, 64, 55, 491, 1, 1, 33, 15, 2651, 330, 141, 64, 39, 35, 50, 80, 7, 335, 2, 95, 4, 13, 125, 20, 9587, 52, 2, 132, 83, 3, 2651, 183, 39, 2, 95, 4, 1, 1, 1, 1, 135], [25, 3, 13, 11, 6062, 6063, 10, 15, 160, 15, 26, 15, 160, 52, 14, 25, 33, 13, 97, 95, 4, 7, 54, 2, 1752, 3, 981, 1211, 10, 461], [54, 2, 893, 958, 54, 2, 893, 958], [25, 3, 13, 11, 9588, 9589, 10, 165, 279, 140, 587, 527, 6064, 101, 1, 1, 39, 35, 14, 25, 33, 13, 11, 3, 279, 140, 587, 527], [100, 133, 11, 15, 2636, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 15, 439, 2636, 71, 269, 29, 3, 179, 53, 23, 165, 28, 9590, 14, 100, 352, 7, 83, 1099, 1450, 11, 15, 7, 70, 4, 3, 2636, 71], [50, 55, 1, 23, 334, 430, 6048, 1094, 67, 329, 578, 23, 33, 142, 65, 230, 7, 39, 8, 170, 79, 39, 170, 21, 30, 2003, 9591, 185, 35, 14, 122, 33, 115, 30, 101, 1151, 1, 1, 1, 1, 135], [128, 126, 111, 1, 14, 386, 39, 8, 6065, 128, 126, 21, 1435, 80, 23, 71, 1, 1, 1, 450], [307, 1062, 1503, 8, 45, 257, 1062, 1503, 8, 45, 257, 169, 857, 399, 9592, 830, 31, 2327, 28, 1007, 3, 9593, 2, 43, 1312, 86], [64, 77, 257, 18, 15, 1528, 7, 26, 64, 77, 257, 18, 15, 1528, 7, 26, 23, 790, 1361, 986, 454, 2335, 214], [4523, 486, 2, 583, 233, 70, 4523, 486, 2, 583, 233, 70], [164, 37, 329, 1090, 21, 295, 485, 1626, 611, 622, 693, 377, 611, 622, 377], [496, 37, 30, 100, 127, 1433, 3284, 171, 496, 37, 30, 100, 127, 1433, 3284, 171, 14, 91, 163, 167, 554], [26, 29, 55, 101, 38, 828, 1016, 9594, 159, 53, 447, 685, 102, 35, 2, 269, 80, 29, 11, 26, 95, 4, 15, 14, 106, 3, 807], [58, 74, 913, 31, 9, 176, 77, 58, 74, 913, 31, 9, 176, 77, 1, 1, 1, 1, 1156], [37, 71, 514, 367, 743, 55, 329, 3773, 695, 173, 610, 1194, 734, 323, 37, 71, 78, 1130, 7, 367, 8, 118, 727, 275, 50, 4, 2179, 3, 31, 14, 106, 8, 176, 23, 57, 2050, 21, 6, 2860, 1099, 2927, 3775, 3285, 3776, 3777, 23, 446, 1161, 143, 3778, 481, 6, 679, 201, 11, 3, 3286, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 7, 1048, 136, 44, 6, 2928, 1025, 7, 1513, 36, 1225, 143, 3246, 2408, 3779, 572, 2476, 18, 23, 446, 66, 612, 165, 467, 3, 679, 1295, 6, 1139, 1454, 68, 104, 1211, 18, 23, 446, 6, 4, 37, 14, 1026, 3, 689, 7, 3780, 3, 1050, 446, 662], [457, 9595, 4, 2929, 9596, 8, 45, 391, 91, 163, 464], [220, 685, 603, 55, 1, 1, 47, 42, 137, 3, 220, 603, 67, 39, 29, 21, 91, 96, 1, 1, 1, 135], [340, 7, 728, 8, 45, 4, 174, 111, 1, 1, 151, 6, 123, 4, 340, 133, 112, 372, 1713, 540, 183, 1251, 18, 3, 728, 1450, 42, 183, 8, 45, 1, 1, 611, 114, 7, 353, 3, 31, 510], [2427, 484, 1722, 66, 3287, 37, 6066, 484, 6067, 484, 31, 400, 18, 6066, 484, 6067, 9597, 9598, 9599, 6, 8, 2362, 4, 26, 47, 42, 164, 2427, 484, 1722, 66, 3287, 37, 7, 8, 84, 2, 2652, 7, 205, 242, 3, 1578, 4, 686, 14, 622, 34, 9, 11, 1256, 400], [1220, 13, 1220, 13], [1599, 196, 1190, 42, 1805, 10, 223, 916, 88, 1697, 1796, 1599, 196, 1190, 73, 7, 1158, 2760, 10, 223, 916, 88, 1697], [1420, 1776, 2063, 982, 461, 208, 21, 1, 1, 14, 50, 2, 2653, 21, 3, 167, 554, 6, 53, 96, 1, 1, 1, 135], [920, 24, 1168, 255, 477, 2277, 2278, 920, 24, 1168, 255, 477, 2277, 2278], [9, 57, 268, 36, 3, 196, 680, 39, 43, 268, 62, 331, 36, 23, 196], [385, 131, 4, 88, 385, 131, 1281, 2, 129, 568, 514, 1574, 1665, 47, 38, 825, 1574, 129, 568, 6, 6068, 6069, 47, 91, 4, 88, 1281, 107, 2, 129, 568, 6068, 6069, 51, 47, 825, 23, 107, 47, 185, 91, 131, 165, 9600, 181, 7, 107, 4, 1574, 455, 42, 727, 385, 131, 14, 91, 163], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [797, 2, 34, 9, 1550, 111, 1, 1, 185, 35, 14, 243, 100, 23, 34, 273, 3, 102, 6, 8, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [403, 119, 3, 167, 2228, 403, 119, 3, 167, 2228], [134, 314, 2, 43, 399, 4, 124, 127, 1036, 167, 111, 1, 1, 124, 134, 314, 2, 43, 399, 2, 124, 127, 1249], [76, 10, 115, 9601, 39, 134, 307, 9602, 9603, 501, 7, 1893, 120, 6, 45, 30, 73, 115, 671, 8, 24, 4524, 1, 1319, 6, 45, 2654, 874, 2080, 2428, 39, 211, 21, 21, 1128, 4, 37, 1, 53, 1029, 390, 65, 79, 4525, 1, 1680, 51, 390, 373, 3, 76, 71, 1242, 7, 21, 649, 44, 390, 39, 373, 3, 76, 311, 9604, 72, 1029, 8, 399, 1, 1, 390, 99, 43, 77, 18, 174, 11, 532, 540, 23, 593, 7, 390, 1754, 219, 3, 76, 133, 1, 1, 185, 35, 14, 114, 3, 31], [87, 381, 765, 6, 8, 323, 98, 4, 672, 87, 381, 765, 6, 8, 323, 98, 4, 672], [41, 31, 49, 27, 2, 100, 3, 475, 14, 622, 3, 167, 554, 1, 1, 1, 135], [15, 26, 32, 533, 1, 1, 14, 308, 132, 7, 25, 13, 11, 15, 26, 32, 5652], [515, 1197, 2487, 56, 9605, 182, 213, 130, 155, 204, 117, 107, 214, 146, 111, 21, 101, 246, 265, 2, 100, 492, 367, 67, 351, 3, 71, 389, 3758, 35, 755, 648, 515, 1197, 2487, 7, 979, 3, 591, 28, 6070, 1367, 33, 28, 9606, 185, 35, 14, 50], [58, 94, 3451, 4393, 856, 618, 651, 12, 90, 6, 75, 112, 49, 10, 646, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [32, 132, 15, 26, 499, 32, 137, 13, 125, 20, 3490, 3491, 181, 124, 291, 292, 243, 14, 132, 72, 59, 9607, 720, 313, 1282, 257, 7, 257, 185, 132, 294, 13, 125, 20], [13, 111, 1, 1, 274, 33, 13, 372, 593, 172, 3, 148, 855, 270, 80, 4, 1, 1, 450], [193, 30, 631, 4, 2429, 134, 302, 208, 21, 14, 50, 54, 2, 766, 23, 67, 97, 3, 177, 324, 171, 65, 141, 1260, 11, 104, 631, 1712, 9, 9608, 324, 171, 9, 170, 341, 591, 341, 344, 2007, 1457, 2209, 973, 1457, 2, 485, 23, 324, 171, 4, 315, 14, 95, 158, 104, 2429, 1772, 10, 120, 1587, 200, 118, 23, 71, 342, 1079, 556, 714, 135], [555, 810, 8, 45, 555, 810, 8, 45], [27, 2, 312, 4, 1946, 111, 21, 101, 308, 14, 525, 53, 47, 27, 2, 312, 472, 4, 1946, 1946, 52, 1840, 96, 71, 111, 9609, 308, 263, 44, 47, 27, 2, 312, 472, 4, 1946, 7, 1251, 1800, 23, 127, 99, 2204, 11, 310, 731, 2023, 11, 1340, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 1322, 1530, 572, 2589, 57], [2057, 917, 845, 64, 66, 28, 2057, 917, 845, 39, 43, 825, 11, 1158, 53, 21, 649, 2, 43, 64, 4, 3, 603, 66, 9610, 2057, 6, 745, 233, 845, 83, 1640, 2262, 1089, 2, 43, 425, 4, 207, 14, 132, 4, 3, 603], [295, 255, 142, 1691, 108, 950, 951, 295, 255, 142, 1691, 108, 950, 951], [3, 457, 542, 134, 151, 6, 9, 765, 4, 457, 114, 233, 6, 2303], [142, 47, 823, 89, 8, 134, 142, 47, 823, 89, 8, 134], [142, 255, 6071, 89, 8, 134, 142, 255, 6071, 89, 8, 134], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [768, 6072, 651, 12, 90, 2930, 6, 75, 112, 124, 768, 6072, 651, 12, 90, 2930, 6, 75, 112, 124], [374, 171, 208, 83, 33, 374, 171, 39, 43, 1229, 39, 35, 50, 2, 114, 9611, 9612, 2776, 1275, 7, 260], [4455, 220, 6, 75, 4455, 220, 6, 75, 47, 42, 8, 164, 3, 6073, 7, 183, 2289, 310, 44, 3, 220, 6, 183, 75], [1100, 265, 3, 6074, 58, 32, 6, 64, 21, 219, 2, 43, 499, 510, 3, 6074, 32, 6, 304, 2, 4, 18, 3, 4209, 4, 260, 20, 23, 99, 4526, 18, 149, 694, 2519, 2798, 53, 284, 99, 8, 43, 84, 2, 29, 423, 4209], [64, 80, 77, 18, 15, 110, 248, 2, 119, 33, 13, 66, 13, 125, 20, 13, 120, 351, 72, 37, 71, 67, 3, 13, 649, 274, 67, 526, 3146, 3, 670, 252, 9613, 9614, 65, 25, 3, 79, 13, 66, 39, 322, 15, 39, 35, 14, 25, 80, 4, 13, 125, 20, 9615, 120], [31, 2, 189, 87, 381, 102, 10, 41, 51, 335, 2, 189, 87, 381, 10, 41, 151, 6, 9, 87, 381, 864, 10, 41, 207, 1431, 9616, 381, 102, 14, 398, 21], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1163, 11, 9617, 9618, 3781, 53, 90, 90, 195, 54, 861, 3781, 4, 404, 20, 533, 1, 1, 185, 35, 14, 1377, 424, 404, 20, 1163, 11, 9619, 9620, 42, 3781, 53, 90, 1163, 180, 6, 8, 90, 67, 3754, 4, 1487, 18, 24, 425, 451, 165, 195, 36, 2226, 428, 3, 71, 187, 8, 452, 53, 21, 6, 391, 2625, 2535, 3, 271, 246, 1264, 68, 195, 42, 36, 90, 62, 8, 39, 35, 386, 85, 3, 31, 30, 283, 28, 6, 21, 219, 3687], [3, 1248, 3782, 18, 127, 438, 97, 43, 4527, 47, 54, 2, 4528, 3, 9621, 11, 127, 2, 2918, 11, 83, 3, 627, 1, 274, 11, 438, 67, 97, 119, 11, 14, 114, 7, 50], [27, 2, 46, 2, 15, 26, 32, 27, 2, 46, 2, 15, 26, 32], [186, 263, 1665, 102, 55, 21, 101, 1, 1, 185, 35, 14, 189, 186, 263, 11, 96, 127, 1, 47, 351, 3, 37, 71, 2069, 47, 97, 31, 3, 186, 263, 1, 1, 207, 470, 438, 1, 249, 1, 127, 1144, 115, 1, 186, 113, 113, 1, 1, 47, 39, 91, 178, 536, 192, 1221, 167, 1, 1, 67, 47, 97, 189, 186, 263, 11, 23, 438, 47, 351, 96, 37, 71, 51, 47, 866, 248, 2, 31, 3, 472, 113], [457, 31, 840, 39, 743, 367, 107, 1, 1673, 367, 107, 840, 39, 743, 30, 37, 4, 312, 9, 537, 95, 62, 4529], [41, 2621, 9622, 41, 1, 356, 8, 84, 2, 95, 10, 2, 41, 9623, 334, 1, 991, 33, 142, 567, 420, 573, 143, 2655], [333, 6, 339, 51, 100, 333, 173, 333, 6, 339, 51, 100, 333, 173], [15, 26, 32, 64, 15, 26, 32, 64], [41, 41], [9, 1275, 481, 11, 7, 151, 42, 9, 1275, 481, 11, 2206, 7, 14, 50], [333, 6, 339, 51, 100, 3, 333, 173, 333, 6, 339, 51, 100, 3, 333, 173], [28, 9624, 41, 31, 55, 50, 9625, 41, 6, 8, 45, 12, 83, 52, 6, 343, 278, 390, 65, 1105, 489, 7, 10, 9626, 112, 334, 363, 366, 158, 3, 163, 287, 11, 3, 37, 71, 7, 353, 12, 3, 1131], [3, 127, 1084, 4, 3, 15, 535, 212, 63, 8, 1086, 4, 3, 15, 535, 212, 21, 6, 9, 345, 285, 2, 121, 98, 3, 127, 1084, 426, 3, 494, 9627, 9628, 1, 91, 163, 1210], [15, 252, 37, 111, 1, 1, 14, 326, 96, 37, 1, 1, 308, 50, 2, 353, 23, 31, 10, 307, 935, 1, 1, 1, 1, 1, 135], [15, 15], [37, 71, 514, 1194, 734, 743, 55, 329, 1194, 734, 743, 37, 71, 1180, 7, 1194, 734, 8, 118, 727, 275, 50, 4, 2179, 3, 31, 14, 106, 8, 176, 23, 57, 2050, 21, 6, 2860, 1099, 2927, 3775, 3285, 3776, 3777, 23, 446, 1161, 143, 3778, 481, 6, 679, 201, 11, 3, 3286, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 7, 1048, 136, 44, 6, 2928, 1025, 7, 1513, 36, 1225, 143, 3246, 2408, 3779, 572, 2476, 18, 23, 446, 66, 612, 165, 467, 3, 679, 1295, 6, 1139, 1454, 68, 104, 1211, 18, 23, 446, 6, 4, 37, 14, 1026, 3, 689, 7, 3780, 3, 1050, 446, 662], [58, 94, 58, 94, 27, 2, 122, 600, 728, 7, 1280, 1068, 361, 271, 129, 9], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 303, 31, 3169, 3170, 49, 9629, 295, 9630, 9631, 9632, 9633, 5871, 5872, 5688, 5689, 15, 303, 31, 111, 83, 257, 179, 123, 3628, 10, 15, 303, 11, 113, 96, 74, 37, 31, 9634, 308, 2151, 3, 102, 11, 179, 7, 3288, 101, 135], [58, 94, 90, 76, 1159, 6, 75, 112, 124, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [692, 20, 13, 8, 45, 111, 1, 1, 33, 692, 20, 13, 6, 8, 45, 308, 25, 3, 179, 7, 583, 80, 3, 73, 13], [704, 793, 86, 416, 3289, 3290, 49, 6075, 9635, 291, 292, 1289, 704, 793, 86, 416, 55, 6075, 533, 99, 50, 10, 23, 49, 2595, 2, 444, 55, 533, 14, 50, 10, 23], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [54, 2, 253, 448, 3, 2385, 6, 4530, 4531, 181, 1, 49, 1, 291, 292, 1, 1289, 54, 2, 253, 448, 3, 2385, 6, 1, 1, 55, 1, 1, 54, 2, 253, 448, 3, 2385, 1336, 43, 1, 1, 308, 114, 7, 270, 80, 253, 448, 38, 3291, 2, 766, 18, 7, 1, 1, 318, 1430, 1815, 39, 8, 43, 1918, 207, 97, 31, 461, 1, 1, 135], [25, 1342, 14, 50, 2, 25, 2580, 695, 11, 15, 26, 28, 59, 9636, 135], [519, 94, 257, 2400, 55, 1, 1, 519, 1060, 94, 18, 2400, 1, 14, 50], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 32, 602, 15, 32, 602], [21, 50, 106, 35, 38, 143, 2931, 424, 268, 23, 71, 9637, 9638, 1516, 130, 41, 124, 6076, 6077, 2656, 550, 24, 1328, 944, 1303, 4, 166, 925, 1157, 66, 689, 104, 71, 2, 1431, 43, 3050, 9639, 144, 1431, 778, 44, 104, 71, 63, 331, 36, 3250, 271, 9640, 9641, 174, 9642, 354, 275, 1295, 1978, 2193, 37, 288, 2, 398, 21, 104, 668, 57, 522, 99, 38, 2, 9643, 7, 398, 104, 401, 57, 609, 14, 844, 23, 71, 2, 104, 57, 522, 316, 957, 11, 57, 4532, 233, 252, 23, 37, 1990, 51, 689, 1347, 1350, 1978, 2193, 11, 3, 689, 401, 1373, 68, 35, 243, 3, 689, 57, 522, 410, 614, 3, 1978, 915, 11, 104, 401, 12, 104, 401, 9644, 42, 236, 98, 546, 174, 6078, 201, 197, 1978, 1323, 4533, 1323, 44, 3783, 1978, 11, 104, 401, 1109, 3, 177, 401, 56, 1978, 2428, 41, 144, 68, 35, 38, 9645, 782, 241, 2279, 4, 3, 2644, 7, 241, 2279, 10, 6079, 62, 68, 35, 243, 72, 480, 445, 2428, 9646, 117, 206, 3, 619, 138, 196, 18, 104, 10, 6079, 605, 2, 3, 4533, 1323, 11, 316, 136, 7, 2062, 393, 3103, 1978, 915, 91, 9647, 72, 1978, 1323, 2, 1217, 619, 181, 331, 36, 104, 401, 9648, 9649, 1050, 71, 222, 350, 341, 124, 689, 196, 1295, 196, 550, 24, 1328, 944, 1303, 4, 166, 37, 222, 1092, 37, 3, 71, 63, 1722, 411, 18, 689, 1347, 1350, 6080, 9650, 57, 36, 162, 20, 144, 6, 8, 2495, 311, 2, 401, 9651, 1347, 14, 129, 3, 718, 18, 162, 20, 144, 401, 68, 23, 63, 1643, 181, 14, 2932, 6081, 1014, 66, 1579, 2081, 409, 41, 144, 194, 78, 3033, 1788, 144, 71, 4255, 9652, 116, 929, 36, 2, 30, 775, 116, 124, 1579, 2081, 409, 41, 144, 1579, 2081, 409, 41, 144, 6082, 3213, 124, 1579, 2081, 409, 41, 144, 1579, 2081, 409, 41, 144, 130, 1979, 78, 394, 3784, 6083, 3784, 6084, 3785, 30, 3786, 6085, 2784, 1050, 71, 9653, 9654, 1466, 175, 3785, 2784, 6086, 6086, 24, 144, 2933, 341, 71, 59, 505, 103, 6087, 394, 9655, 9656, 9657, 9658, 9659, 9660, 268, 36, 1579, 2081, 409, 41, 144, 66, 1579, 2081, 409, 41, 144, 30, 130, 1979, 78, 394, 3784, 6083, 3784, 6084, 3785, 30, 3786, 6085, 2784, 59, 268, 36, 1579, 2081, 409, 41, 144, 66, 1579, 2081, 409, 41, 144, 30, 6082, 59, 9661, 6088, 9662, 550, 24, 1328, 944, 1303, 4, 166, 6089, 266, 24, 1328, 944, 1303, 4, 166, 6089, 2430, 9663, 9664, 689, 6076, 6077, 341, 71, 59, 1407, 4, 853, 979, 182, 714, 166, 505, 182, 714, 166, 209, 65, 552, 16, 209, 9665, 9666, 1472, 1164, 1978, 972, 689, 138, 6, 209, 480, 9667, 209, 480, 9668, 71, 844, 9669, 138, 209, 174, 3080, 688, 59, 962, 1267, 2229, 9670, 130, 480, 298, 1579, 9671, 9672, 9673, 9674, 9675, 9676, 9677, 9678, 9679, 9680, 9681, 9682, 9683, 9684, 9685, 9686, 9687, 9688, 9689, 9690, 9691, 9692, 9693, 1955, 9694, 9695, 9696, 9697, 9698, 9699, 9700, 130, 3292, 6090, 4534, 2383, 4535, 3787, 1579, 130, 3292, 6091, 480, 3292, 171, 205, 242, 6090, 480, 3292, 171, 9701, 205, 242, 4534, 2383, 4535, 3787, 1579, 4534, 2383, 4535, 3787, 1579, 6092, 6091, 4536, 6092, 3292, 171, 9702, 6093, 9703, 2057, 77, 9704, 9705, 3787, 1579, 1579, 2081, 409, 41, 144, 9706, 1978, 972, 9707, 9708, 3033, 4537, 268, 1978, 972, 2428, 41, 144, 24, 144, 89, 8, 9709, 3293, 689, 2082, 9710, 9711, 6093, 505, 103, 4538, 6094, 4539, 9712, 6087, 394, 9713, 24, 144, 209, 480, 4540, 9714, 929, 209, 480, 4540, 9715, 9716, 209, 480, 4540, 59, 9717, 1509, 9718, 209, 480, 2619, 9719, 1579], [6095, 3, 200, 299, 20, 13, 120, 6, 706, 62, 808, 62, 6, 8, 430, 10, 3, 1594, 348, 6095, 3, 200, 299, 20, 13, 120, 6, 706, 62, 808, 62, 6, 8, 430, 10, 3, 1594, 348], [32, 64, 27, 2, 46, 2, 338, 212, 32, 64, 27, 2, 46, 2, 338, 212], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [6096, 8, 303, 6096, 8, 303], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [209, 88, 782, 4, 41, 209, 88, 782, 4, 41], [726, 770, 36, 142, 329, 699, 143, 108, 62, 1385, 317, 726, 770, 36, 142, 329, 699, 143, 108, 62, 1385, 317], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [726, 31, 146, 31, 30, 3, 726, 18, 3, 148, 151, 9, 726], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [9720, 57, 53, 3576, 55, 83, 1, 288, 42, 35, 987, 1, 1, 14, 39, 35, 995, 23, 57, 4, 949, 3576, 1, 1, 21, 175, 813, 1, 1498, 1, 2923], [5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12, 5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [220, 474, 147, 1744, 317, 4, 804, 1517, 11, 3, 96, 779, 9721, 1351, 362, 11, 474, 1227, 78, 10, 40, 474, 1227, 78, 10, 40, 474, 1227, 78, 10, 40, 474, 1227, 78, 10, 40], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9722, 372, 56, 9723, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [1070, 10, 15, 233, 27, 2, 29, 338, 212, 1070, 10, 15, 233, 27, 2, 29, 338, 212], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [378, 623, 2848, 4, 2429, 1772, 378, 34, 83, 290, 6097, 23, 30, 9724, 7, 4541, 3, 123, 6, 8, 1821, 66, 3, 9725, 302, 62, 3, 4542, 623, 3, 123, 6, 411, 18, 299, 782, 433, 4543, 2847, 627, 4, 3, 2429, 1772, 67, 9, 181, 319, 47, 9726, 23, 2, 167, 9727, 433, 4, 3, 464, 163, 2, 23, 439, 35, 99, 91, 3, 181, 196, 11, 4543, 6, 2376, 14, 70, 23, 2, 208, 1823, 491, 49, 9, 345, 496, 623, 2848, 2, 33, 41, 1103, 288, 39, 876, 261, 30, 450], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [209, 9728, 816, 403, 209, 88, 690, 816, 403], [205, 242, 71, 57, 2934, 2935, 124, 3214, 3294, 203, 205, 242, 71, 55, 3214, 38, 355, 425, 23, 31, 63, 1092, 2033, 169, 3, 606, 195, 42, 164, 57, 393, 205, 869, 57, 782, 14, 43, 1995, 44, 23, 6, 201, 934, 18, 3, 606, 7, 39, 43, 9729, 584], [2223, 245, 87, 101, 1151, 8, 590, 155, 8, 45, 2223, 245, 87, 101, 1151, 8, 590, 155, 8, 45], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [205, 242, 57, 331, 36, 4544, 6098, 59, 67, 4544, 65, 8, 331, 143, 1108, 205, 242, 57, 386, 4544, 6098, 1, 124, 1, 291, 292, 1, 550, 205, 242, 71, 1, 720, 2576, 1, 1, 111, 1, 1, 268, 23, 57, 184, 429, 44, 21, 65, 141, 331, 36, 33, 59, 433, 53, 38, 8, 331, 143, 1108, 205, 242, 57, 611, 366, 158, 23, 1314, 7, 386], [726, 31, 31, 726, 31, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 95, 10, 792, 37, 76, 31, 15, 95, 10, 792, 37, 76, 31], [3, 113, 65, 330, 161, 58, 254, 584, 36, 83, 1742, 7, 47, 42, 27, 2, 134, 6, 151, 3227, 35, 39, 206, 161, 58, 824, 251, 2, 83, 1742, 62, 320, 2062, 10, 288, 2, 206, 2, 669, 142], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [363, 50, 27, 2, 122, 76, 55, 1, 14, 9730, 11, 1488, 1314, 363, 91, 96, 2421], [5, 983, 1753, 6099, 262, 22, 4, 5, 19, 12, 5, 983, 1753, 6099, 262, 22, 4, 5, 19, 12], [5, 983, 1753, 2083, 49, 22, 4, 5, 19, 12, 5, 983, 1753, 2083, 49, 22, 4, 5, 19, 12], [5, 983, 1753, 2083, 49, 22, 4, 5, 19, 12, 5, 983, 1753, 2083, 49, 22, 4, 5, 19, 12], [5, 983, 1753, 2083, 168, 22, 4, 5, 19, 12, 5, 983, 1753, 2083, 168, 22, 4, 5, 19, 12], [5, 551, 2299, 315, 22, 4, 5, 19, 12, 5, 551, 2299, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 29, 82, 20, 27, 2, 29, 82, 20, 311, 2, 76], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [8, 84, 2, 46, 2, 76, 8, 84, 2, 46, 2, 76, 1, 635, 3, 396, 2, 715, 3, 52, 7, 114, 3, 155, 133, 1, 635, 3, 396, 2, 397, 2, 3, 24, 76, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 8, 614, 424, 62, 288, 67, 23, 37, 997, 98, 567, 420, 329, 1426, 2, 206, 72, 57, 2, 88, 12, 3, 1451, 18, 23, 57, 21, 429, 21, 543, 3, 57, 2, 88, 67, 97, 326, 21, 5925, 51, 413, 10, 3, 239, 4, 88, 118, 96, 37, 424, 6, 21, 51, 413, 10, 21, 3068, 98, 73, 2056, 88, 347, 7, 429, 350, 672, 341, 67, 21, 542, 468, 4, 33, 2392, 88, 516, 169, 1797, 21, 7, 9731, 21, 23, 6, 85, 429, 4, 33, 2392, 88], [378, 116, 1009, 10, 128, 126, 49, 1085, 193, 30, 4545, 1069, 4, 128, 126, 33, 128, 126, 239, 11, 3, 4545, 964, 6, 8, 628, 7, 6, 8, 638, 53, 481, 42, 4546, 1, 1, 63, 1591, 21, 65, 2, 106, 30, 33, 116, 1009, 10, 33, 115, 2311, 2312, 248, 2, 25, 21, 67, 3, 52, 187, 8, 25, 21, 1, 1, 14, 366, 158, 21, 7, 398, 3, 123], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [209, 88, 400, 209, 88, 400, 1, 267, 2, 3, 28, 52, 137, 487, 1, 430, 3, 2230, 206, 4, 11, 41, 1, 2921, 3, 41, 1, 28, 84, 2, 91, 3, 88, 206, 4, 10, 41, 1, 31, 321], [6100, 6101, 104, 6102, 2, 3, 127, 107, 36, 6100, 6101, 104, 6102, 11, 3, 127, 9, 36, 3, 37, 32, 2, 127, 9, 36], [41, 782, 7, 76, 1121, 41, 782, 7, 76, 1121], [82, 20, 46, 31, 82, 20, 46, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 499, 3, 28, 32, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [307, 50, 275, 41, 2, 88, 944, 1303, 31, 307, 50, 275, 41, 2, 88, 944, 1303, 31, 54, 88, 681, 10, 33, 41], [382, 87, 395, 8, 45, 382, 87, 395, 8, 45, 1, 267, 2, 3, 28, 52, 137, 487, 1, 399, 3, 726, 830, 991, 3, 115, 1, 28, 84, 2, 5469, 2, 3, 395, 272, 3, 87, 497, 1, 31, 321], [295, 30, 55, 185, 35, 14, 50, 166, 2, 206, 3, 740, 96, 2, 82, 20, 140, 3788, 592, 3132, 592, 4214, 6103, 1222, 592, 4547, 6104, 175, 592, 2936, 6105, 714, 3788, 9732, 3052, 9733, 9734, 9735, 9736, 149, 4225, 23, 71, 6, 679, 11, 3, 6106, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 1261, 1048, 1025, 2928, 136, 44, 6, 1513, 36, 357, 6107, 4, 2826, 30, 3, 6108, 18, 628, 9737, 143, 6109, 572, 62, 1294, 18, 23, 71, 66, 517, 568, 165, 467, 3, 1295, 11, 1739, 21, 6, 679, 6, 1139, 1454, 68, 21, 2847, 23, 71, 4, 6110, 14, 1026, 3, 689, 544, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182, 23, 71, 6, 679, 11, 3, 6106, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 1261, 1048, 1025, 2928, 136, 44, 6, 1513, 36, 43, 6107, 4, 2826, 30, 3, 6108, 18, 628, 9738, 1346, 143, 6109, 572, 62, 1294, 18, 23, 71, 66, 612, 165, 467, 3, 679, 1295, 6, 1139, 1454, 68, 35, 384, 23, 71, 66, 1932, 14, 1026, 3, 689, 544, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [2217, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 212, 1, 31, 321], [419, 31, 419, 31], [443, 434, 24, 17, 90, 90, 6, 75, 112, 124, 105, 10, 434, 24, 17, 90, 90, 9739, 29, 277, 7, 24, 17, 90, 90, 3789, 29, 277, 651, 12, 90, 6, 75, 112, 124, 105], [110, 254, 8, 699, 110, 254, 8, 699, 1, 1, 248, 30, 138, 196, 9, 465, 1, 425, 78, 56, 9, 465, 1, 28, 779, 44, 180, 274, 283, 13, 11, 76, 7, 276, 8, 84, 2, 122, 2, 254, 1, 2577, 83, 830, 42, 45, 494, 7, 3035, 1, 1631, 28, 2, 118, 4, 2135, 30, 197, 18, 1033, 7, 118, 3, 167, 554, 18, 83, 830, 180, 65, 29, 2, 183, 2, 9740, 254, 1, 248, 1408, 254, 30, 13, 5049, 1, 1, 2169, 11, 28, 57], [295, 30, 55, 185, 35, 14, 50, 166, 2, 206, 3, 740, 96, 2, 82, 20, 140, 3788, 592, 3132, 592, 4214, 6103, 1222, 592, 4547, 6104, 175, 592, 2936, 6105, 714, 3788, 9741, 6111, 9742, 9743, 854, 149, 685], [64, 1392, 356, 250, 2, 206, 119, 438, 2, 33, 1392, 67, 118, 3, 37, 1332, 96, 1, 1, 1, 1, 4471, 4472, 1, 685, 462, 82, 1, 24, 1, 1, 1, 1, 1, 24, 203, 1807, 986, 90, 1277, 730, 24, 144], [123, 10, 6112, 55, 38, 23, 37, 329, 867, 6112, 267, 2, 76, 39, 35, 50, 80], [939, 88, 307, 50, 275, 41, 2, 88, 944, 1303, 31, 123, 537, 169, 236, 704, 672, 438, 2, 72, 32, 21, 542, 468, 4, 3, 625, 88, 32, 1323, 1769], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [87, 37, 164, 87, 484, 37, 87, 37, 164, 87, 484, 37], [397, 792, 37, 4, 15, 516, 169, 699, 2, 76, 27, 2, 122, 2, 15, 6113, 516, 169, 699, 2, 76, 397, 792, 37, 1, 21, 63, 45, 858, 251], [1003, 31, 39, 8, 436, 822, 294, 128, 126, 1, 1, 530, 29, 502, 755, 206, 2, 3295, 330, 23, 2326, 389], [27, 2, 122, 2, 235, 1484, 27, 2, 122, 2, 235, 1484], [32, 64, 32, 64], [238, 1034, 24, 1757, 2321, 262, 10, 24, 17, 90, 1757, 2321, 29, 277, 24, 144, 6, 75, 238, 1034, 24, 1757, 2321, 262, 10, 24, 17, 90, 1757, 2321, 29, 277, 24, 144, 6, 75, 112, 49, 10, 105, 1, 1, 1105, 10, 2, 434, 336, 238, 6, 75, 1, 1, 1547, 9744, 6114, 470, 801, 10, 238, 1034, 274, 1517, 2, 75, 1, 1547, 229, 6114, 238, 1034, 274, 1517, 2, 75, 1, 24, 17, 90, 1757, 2321, 29, 277], [15, 26, 32, 64, 15, 26, 32, 64], [32, 64, 32, 64], [32, 64, 32, 64], [395, 31, 4, 382, 56, 5806, 5807, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 118, 3, 369, 98, 313, 2266, 21, 63, 494, 576, 172, 8, 313, 2266, 11, 1110, 497], [13, 25, 13, 25], [894, 1908, 31, 337, 127, 1571, 858, 2, 700, 272, 36, 197, 134, 314, 4548, 2, 3, 569, 1, 1, 127, 1, 1072, 1, 1072, 1, 1, 23, 65, 942, 10, 443, 165, 359, 53, 613], [41, 37, 111, 1, 49, 8, 84, 2, 118, 158, 41, 143, 316, 737, 164, 891, 4406, 80, 558, 706, 45, 7, 106, 479, 2, 715, 4, 2003, 1042, 2, 106, 736, 38, 330, 2, 320, 23, 36, 33, 86], [54, 3, 13, 125, 20, 229, 54, 3, 13, 125, 20, 229], [27, 2, 122, 2, 1020, 27, 2, 122, 2, 1020], [90, 2930, 2937, 24, 17, 90, 2937, 519, 29, 277, 6, 75, 112, 12, 49, 105, 10, 90, 2930, 2937, 24, 17, 90, 2937, 519, 29, 277, 6, 75, 112, 12, 49, 105, 10, 1, 1011, 133, 2, 2937, 519, 434, 24, 17, 90, 2937, 29, 277], [155, 204, 31, 155, 204, 31], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [25, 3, 13, 11, 9745, 9746, 10, 79, 46, 110, 335, 2, 119, 33, 95, 4, 13, 7, 3, 52, 790, 1736, 3, 376, 13, 6, 8, 391, 7, 9747, 411, 248, 207, 458, 420, 357, 9748, 253, 3282, 4, 33, 376, 13, 546], [15, 26, 13, 25, 15, 26, 13, 25], [14, 132, 6115, 15, 374, 26, 106, 8, 25, 13, 14, 132, 6115, 15, 374, 26, 106, 8, 25, 13], [6116, 24, 24, 144, 6, 260, 75, 233, 10, 40, 14, 663, 1887, 96, 559, 4, 850, 20, 112, 49, 10, 105, 1, 6116, 24, 24, 144, 6, 260, 75, 233, 10, 40, 14, 663, 1, 1184, 463, 6, 323], [88, 4, 235, 86, 365, 334, 88, 10, 33, 235, 108, 99, 8, 134, 14, 91, 96, 167, 554, 6117, 2352, 9749, 1463, 227, 592], [27, 2, 118, 245, 2824, 10, 1683, 235, 108, 27, 2, 118, 245, 2824, 10, 1683, 235, 108], [13, 25, 226, 13, 25, 226], [195, 42, 27, 2, 122, 2, 348, 4, 652, 641, 195, 42, 27, 2, 122, 2, 348, 4, 652, 641, 348, 56, 9750, 129, 917], [124, 20, 11, 1684, 346, 1714, 1318, 4, 124, 20, 11, 1684, 409, 9751, 9752, 49, 1456, 3197, 9753, 9754, 1533, 124, 20, 11, 1684, 346, 1714, 1318, 4, 124, 20, 11, 1684, 409, 55, 1456, 143, 5633, 10, 44, 4549, 47, 42, 327, 4, 1237, 411, 47, 38, 2, 320, 77, 451, 9755, 67, 97, 411, 18, 346, 780, 135], [174, 920, 174, 920], [243, 54, 1716, 50, 14, 4550, 68, 35, 1203, 47, 330, 23, 73, 455, 4140, 51, 47, 428, 151, 11, 3, 9756, 632, 5726, 53, 332, 1850, 1851, 1595, 14, 526, 176, 23, 57, 2050, 35, 1754, 54, 2, 23, 99, 6118, 6119, 10, 4551, 4552, 3296, 3297, 3790, 3791, 72, 4553, 243, 54, 1716, 50, 14, 6120, 6, 23, 1149, 3, 197, 44, 1850, 1851, 275, 30, 423, 2433, 923, 10, 3, 186, 263, 3792, 42, 35, 1995, 18, 3, 1833, 1595, 11, 1850, 1851, 186, 1001, 1220, 393, 21, 599, 6120, 779, 23, 135], [243, 54, 1716, 50, 14, 6121, 6, 23, 1149, 3, 197, 44, 1850, 1851, 275, 30, 423, 2433, 923, 10, 3, 186, 263, 3792, 42, 35, 1995, 18, 3, 1833, 1595, 11, 1850, 1851, 186, 1001, 1220, 393, 21, 599, 6121, 779, 23, 135], [14, 1109, 1430, 159, 4, 840, 2, 461, 548, 14, 1109, 469, 2, 322, 9757, 9758, 9759], [1920, 4, 161, 174, 99, 8, 878, 10, 9, 61, 6122, 433, 21, 3793, 4, 6, 365, 1920, 4, 161, 174, 99, 8, 878, 10, 9, 61, 6122, 433, 21, 3793, 4, 6, 365], [142, 1957, 3298, 9, 29, 2, 40, 168, 20, 63, 265, 142, 1957, 3298, 9, 29, 2, 40, 168, 20, 63, 265], [74, 8, 45, 208, 491, 3, 74, 12, 1535, 1708, 641, 6123, 173, 6123, 6, 8, 45, 14, 2016, 3, 123, 662], [209, 41, 6124, 170, 55, 1, 1, 1, 53, 458, 420, 389, 169, 52, 13, 119, 209, 41, 6124, 170, 1, 163, 6125, 1, 1, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [616, 32, 1622, 38, 661, 1623, 1672, 3653, 3654, 124, 6126, 9760, 2879, 2880, 243, 2526, 95, 3209, 111, 9761, 23, 649, 2, 43, 442, 2, 616, 31, 49, 1288, 616, 568, 2, 366, 158, 23, 31, 111, 4302, 14, 50, 711, 6126, 10, 23], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 9762, 9763, 9764, 482, 252, 3, 28, 219, 62, 63, 45, 30, 6127, 896, 3, 31, 14, 647, 3, 113, 1064, 1519, 36, 83, 1713, 195, 38, 1690, 30, 6128, 6129, 180, 7, 9765, 9766, 106, 8, 54, 29, 257, 2, 6127, 9767, 9768, 219, 21, 67, 246, 9769, 68, 35, 185, 574, 3, 1519, 616, 101, 239, 11, 408, 924, 18, 113, 1064, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [211, 168, 20, 1052, 2407, 2126, 3298, 1557, 1558, 211, 168, 20, 1052, 2407, 2126, 3298, 1557, 1558], [236, 98, 721, 7, 633, 898, 10, 3, 3794, 470, 218, 55, 1, 1, 14, 721, 7, 633, 898, 255, 28, 9770, 10, 3, 218, 3794, 470, 236, 98, 1, 1, 781, 35], [9771, 9772], [957, 103, 346, 2, 508, 107, 9773, 9774, 1, 49, 1, 2879, 2880, 1, 9775, 9776, 1, 1533, 9777, 342, 2879, 2880, 1, 1, 55, 162, 4302, 1, 4554, 1098, 80, 2, 320, 35, 3, 96, 163, 167, 1926, 1, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [102, 29, 2, 26, 205, 242, 365, 483, 9778, 9779, 1276, 3226, 24, 3795, 1819], [280, 73, 471, 477, 950, 951, 280, 73, 471, 477, 950, 951], [236, 98, 2231, 47, 74, 10, 115, 4, 2792, 236, 98, 2231, 47, 74, 10, 115, 4, 2792], [41, 31, 55, 50, 1, 1, 41, 6, 8, 164, 399, 456, 7, 9780, 1, 116, 2, 116, 54, 2, 70, 320, 7, 384, 218, 23, 31, 2327, 112, 372, 2058, 1, 1, 52, 63, 1118, 2, 3, 21, 2002, 581, 10, 67, 151, 6, 9, 2045], [620, 342, 128, 126, 1003, 3276, 3277, 620, 342, 128, 126, 1003, 3276, 3277], [15, 2844, 385, 3299, 1779, 349, 55, 1, 30, 1699, 47, 91, 385, 3299, 1779, 4, 15, 770, 36, 3046, 1, 3, 4433, 1677, 6, 44, 3, 461, 2594, 6, 8, 3299, 461, 1, 47, 54, 2, 1563, 85, 601, 385, 581, 7, 54, 2, 647, 3, 626, 1779], [40, 369, 6, 272, 198, 375, 198, 178, 387, 369, 370, 900, 40, 131, 9781, 10, 78, 6, 272, 1, 198, 375, 198, 178, 387], [1191, 89, 8, 100, 1191, 89, 8, 100, 1, 37, 347, 39, 8, 43, 1086], [40, 369, 6, 272, 198, 375, 198, 178, 387, 369, 370, 1010, 40, 773, 10, 78, 6, 272, 1, 198, 375, 198, 178, 387], [28, 2938, 274, 3, 2434, 4, 1267, 2, 43, 3, 506, 1009, 11, 1518, 15, 26, 501, 1, 28, 2938, 274, 3, 2434, 4, 1267, 9782, 2, 43, 3, 506, 1009, 11, 1518, 47, 248, 2, 2200, 77, 184, 2434, 63, 3, 506, 389, 38, 4232, 15, 11, 172, 67, 526, 253, 6050, 68, 23, 1754, 63, 3, 506, 1, 23, 1147, 36, 116, 2, 116, 241, 195, 42, 8, 1995, 44, 284, 236, 506, 11, 1518], [9, 58, 133, 255, 142, 6130, 14, 6131, 58, 133, 255, 142, 6130, 1263, 1691, 719, 2486, 1939, 175], [1663, 459, 13, 55, 1, 1, 14, 25, 33, 1663, 459, 13], [32, 6132, 230, 1568, 30, 32, 6132, 89, 8, 366, 265, 72, 37, 9783, 3, 32, 2071, 6, 511, 230, 7, 97, 43, 304, 11, 1568], [25, 224, 11, 9784, 9785, 137, 13, 125, 20, 13, 25, 3], [41, 1428, 454, 1502, 116, 2, 100, 41, 1428, 454, 1502, 116, 2, 100], [27, 2, 119, 13, 294, 13, 125, 20, 27, 2, 119, 13, 294, 13, 125, 20], [32, 6133, 6134, 230, 1568, 12, 32, 6133, 6134, 8, 2890, 2, 37, 71, 3, 32, 2071, 6, 511, 230, 7, 97, 43, 304, 11, 1568], [29, 11, 74, 913, 11, 3300, 111, 14, 269, 29, 2, 913, 74, 348, 20, 191, 11, 96, 3300, 3300, 56, 9786, 9787, 46, 59, 9788, 142, 9, 1853], [37, 51, 1104, 11, 30, 2611, 186, 533, 1, 14, 100, 72, 21, 34, 11, 3, 15, 616, 159, 2, 485, 3, 31, 96, 30, 2611, 186, 433, 1104, 89, 8, 134, 411, 18, 616, 1038, 290, 661, 1623, 1672], [32, 602, 743, 102, 18, 6135, 111, 101, 14, 132, 3, 79, 32, 6135, 28, 56, 9789, 9790, 135], [13, 25, 2406, 55, 197, 18, 3, 9791, 3255, 3256, 4187, 28, 59, 6, 2406, 6, 8, 84, 2, 46, 2, 338, 53, 283, 28, 59, 64, 180, 6, 1734, 28, 14, 243, 236, 283, 13, 7, 778, 4058, 4059, 120, 162, 667, 368, 314], [1630, 4, 128, 126, 41, 87, 28, 9792, 33, 809, 429, 661, 2856, 10, 128, 126, 41, 87, 91, 163, 1210, 3, 391, 197, 264, 43, 3, 197, 806, 10, 377, 2380, 1549], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12, 1, 1, 49, 27, 2, 743, 621, 37, 22, 2, 6136, 621, 52, 58, 1042, 1, 902, 733, 121, 22, 733, 56, 6136, 1594, 348, 1, 902, 37, 3, 194, 1107, 121, 22, 1, 252], [13, 25, 208, 4268, 54, 13, 25, 11, 15, 585, 9793, 691, 6137, 1511], [39, 43, 1642, 2, 199, 4555, 9794, 101, 65, 625, 1291, 18, 9795, 21, 1416, 80, 2, 528, 158, 9796], [15, 32, 230, 15, 13, 670, 2376, 14, 1040, 15, 32], [206, 3, 4244, 4245, 2, 1023, 125, 457, 55, 101, 39, 35, 14, 206, 4244, 4245, 2, 3, 1023, 125, 457, 159, 4, 404, 20, 2533, 2534, 101, 1287, 2215, 1051, 7, 1906, 188, 21], [5, 2842, 22, 4, 5, 19, 12, 5, 2842, 22, 4, 5, 19, 12], [361, 1569, 238, 880, 10, 24, 262, 1187, 361, 1569, 856, 618, 6, 75, 112, 124, 105, 361, 1569, 238, 880, 10, 24, 262, 1187, 361, 1569, 856, 618, 6, 75, 112, 124, 105], [82, 20, 95, 4, 123, 111, 1, 1, 38, 274, 3, 13, 18, 82, 20, 540, 251, 21, 3769, 44, 21, 6, 1254, 274, 1, 273, 49, 8, 84, 2, 46, 1, 1, 14, 114, 3, 37, 71, 4, 3, 96, 925], [82, 20, 123, 55, 1, 39, 8, 206, 73, 117, 329, 1693, 73, 82, 20, 1, 670, 3, 2320, 7, 3, 2321, 1, 151, 304, 2, 43, 864, 73, 67, 8, 849], [358, 358, 9797, 1199, 2145, 10, 24, 262, 1204, 358, 29, 277, 10, 12, 124, 105, 277, 2801, 1199, 2145, 10, 24, 262, 1204, 358, 29, 277, 1, 1461, 1699, 435, 62, 804, 1517, 940], [378, 41, 8, 45, 496, 71, 44, 21, 6, 8, 3796, 462, 41, 8, 45, 496, 71, 44, 21, 6, 8, 3796, 462], [307, 73, 117, 32, 55, 1, 1, 27, 2, 2205, 30, 405, 73, 117, 32, 1, 1, 14, 386, 53, 85, 3, 31, 6], [392, 4, 13, 101, 1, 1, 63, 828, 635, 44, 33, 13, 524, 811, 1, 696, 2, 3, 13, 120, 48, 7, 274, 224, 1, 1, 83, 224, 11, 661, 2073, 274, 2654, 197, 33, 1900, 2, 95, 1186, 142, 22, 2, 119, 288, 106, 119, 23, 197], [873, 98, 31, 30, 3, 148, 873, 98, 31, 30, 3, 148, 28, 1288, 437, 21, 2, 114, 3, 148, 53, 3, 115, 6, 8, 1506, 98, 12, 83, 28, 248, 2, 1441, 4, 3, 61, 2807, 273, 9, 465, 200, 1018, 928, 1018, 1769], [33, 142, 790, 601, 489, 470, 56, 4556, 4557, 182, 213, 130, 155, 204, 117, 107, 214, 146, 33, 142, 790, 601, 489, 470], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [28, 8, 6138, 57, 10, 3, 383, 28, 8, 6138, 57, 10, 3, 383, 1, 425, 3, 28, 32, 83, 494, 1, 425, 3, 28, 9798, 10, 3, 9799, 48, 83, 494, 1, 635, 3, 28, 2, 129, 69], [378, 87, 46, 31, 56, 9800, 9801, 182, 213, 130, 155, 204, 117, 107, 214, 146, 25, 13, 310, 172, 87, 99, 8, 509, 13], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [140, 400, 56, 6139, 6140, 182, 213, 130, 155, 204, 117, 107, 214, 146, 140, 400], [27, 2, 176, 15, 777, 36, 1861, 169, 1616, 21, 36, 1861, 27, 2, 176, 15, 777, 36, 1861, 169, 1616, 21, 36, 1861], [119, 74, 36, 1861, 2, 1861, 119, 74, 36, 1861, 2, 1861], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 1145, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9802, 9803, 372, 56, 9804, 9805, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [1597, 9806, 39, 29, 610, 10, 40, 838, 82, 312, 4443, 9807, 6141, 14, 574, 1597, 3, 1099, 1183, 207, 44, 180, 39, 100, 3, 610, 91, 377], [2314, 1257, 55, 38, 1253, 1163, 11, 72, 31, 44, 49, 1085, 257, 310, 49, 8, 614, 424, 737, 290, 23, 31, 39, 612, 50, 80, 1563, 68, 21, 6, 829, 49, 987, 385, 23, 6, 829, 199, 636, 7, 54, 29, 2, 203, 203, 665, 51, 335, 2, 366, 12, 782, 11, 1345, 1508, 118, 72, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030], [462, 2933, 8, 45, 14, 663, 3, 31, 30, 3, 462, 2933, 511, 9, 131, 6, 357, 1063, 10, 3, 24, 580], [9, 452, 10, 3, 415, 317, 267, 294, 1375, 859, 9, 452, 10, 3, 415, 317, 267, 294, 1375, 859, 1, 1, 102, 35, 2, 308, 366, 158, 1136, 452, 31, 10, 33, 142, 433, 106, 8, 118, 452, 10, 3, 415, 317, 51, 1634, 2, 3, 1375, 859, 38, 248, 10, 165, 1375, 3797, 7, 38, 8, 141, 84, 2, 118, 3, 452, 10, 3, 415, 317, 742, 330, 23, 31, 11, 272, 1713, 1300, 7, 21, 63, 1526, 1256, 1, 330, 1690, 23, 30, 4558, 7, 180, 6, 1995, 18, 23, 31, 53, 47, 38, 1067, 10, 21, 2348, 1, 47, 38, 1923, 1136, 830, 67, 31, 273, 2327, 99, 2509, 3, 142, 30, 299, 1, 102, 967, 10, 3, 179], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 176, 36, 74, 211, 407, 27, 2, 176, 36, 74, 211, 407], [2230, 41, 8, 405, 2230, 41, 8, 405, 1, 267, 2, 3, 28, 52, 137, 487, 1, 2920, 3, 28, 809, 1, 2921, 41, 1, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 1, 31, 321], [41, 10, 33, 115, 855, 100, 2484, 10, 3, 100, 167, 7, 855, 421, 141, 265, 23, 11, 540, 4, 72, 489, 48, 381, 207, 8, 43, 84, 2, 2833, 86, 11, 329], [27, 2, 29, 79, 32, 27, 2, 29, 79, 32], [10, 3, 2939, 6142, 793, 1843, 6, 175, 123, 10, 3, 2939, 6142, 793, 1843, 151, 6, 175, 2435, 1, 5393, 2435, 9808, 102, 346], [307, 50, 275, 88, 235, 297, 590, 88, 235, 297, 420, 77, 7, 2436, 2, 86, 527, 389, 4559, 528], [28, 6143, 210, 30, 3, 87, 395, 28, 6143, 210, 30, 3, 87, 395, 1, 267, 2, 3, 28, 52, 137, 487, 1, 425, 3, 395, 609, 1, 2367, 205, 242, 121, 2, 3, 28, 83, 494, 1, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [128, 126, 1279, 50, 110, 912, 1531, 7, 119, 3, 1183, 106, 5013, 1319, 10, 3, 177, 347, 1049, 2, 91, 68, 151, 63, 986, 2, 876, 83, 1183, 2, 85, 284, 428, 576], [28, 1049, 50, 2, 114, 68, 57, 63, 813, 28, 1049, 50, 2, 114, 68, 57, 63, 813, 1, 267, 2, 3, 28, 52, 137, 487, 1, 625, 3, 34, 2, 3, 813, 1, 3410, 3, 28, 10, 3, 179, 1, 31, 321], [87, 123, 55, 1, 49, 290, 123, 30, 87, 49, 8, 84, 2, 326, 33, 1033], [419, 6144, 419, 6144], [27, 2, 29, 547, 1755, 27, 2, 29, 547, 1755, 53, 680, 1147, 51, 413, 115, 56, 9809, 86], [15, 46, 136, 1808, 13, 25, 524], [34, 70, 965, 34, 70, 965], [41, 783, 2, 1540, 41, 783, 2, 1540], [27, 2, 176, 36, 3, 74, 682, 2554, 1857, 4560, 2383, 1165, 27, 2, 176, 36, 3, 74, 682, 2554, 1857, 4560, 2383, 1165, 1, 267, 2, 3, 28, 52, 137, 487, 1, 3, 74, 790, 783, 2, 70, 830, 1, 248, 2, 211, 3, 830, 9, 465, 1, 129, 1, 142, 56, 2913, 1, 28, 1007, 2, 38, 437, 21, 366, 53, 151, 42, 458, 195, 9810, 2307, 31], [1062, 247, 31, 1062, 1503, 8, 507, 12, 116], [419, 606, 1914, 3, 419, 2, 10, 205, 242, 1427], [28, 1007, 2, 119, 3, 15, 74, 1789, 1861, 2, 1789, 6145, 28, 1007, 2, 119, 3, 15, 74, 1789, 1861, 2, 1789, 6145], [79, 32, 64, 79, 32, 64], [110, 49, 250, 2, 326, 72, 324, 171, 2, 766, 38, 72, 57, 44, 530, 38, 197, 2, 766, 21, 6, 8, 323, 98, 56, 9811, 9812, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 250, 2, 326, 72, 324, 171, 2, 766, 38, 72, 57, 44, 530, 38, 197, 2, 766, 21, 6, 8, 323, 98], [88, 297, 400, 88, 297, 400], [97, 122, 2, 40, 82, 220, 601, 294, 24, 76, 39, 29, 40, 40, 7, 40, 97, 122, 2, 40, 82, 220, 601, 294, 24, 76, 39, 29, 40, 40, 7, 40, 605, 294, 3, 76, 39, 29, 40, 12, 3, 174, 39, 8, 29, 2315, 294, 76, 24, 144], [27, 2, 211, 88, 297, 10, 3301, 851, 28, 65, 1683, 3301, 108, 30, 799, 53, 3, 948, 10, 21, 180, 1007, 2, 211, 7, 199, 3, 690, 88, 297, 67, 44, 297, 1416, 799, 53, 6146], [34, 70, 10, 258, 34, 70, 10, 258], [15, 5490, 1274, 220, 4, 26, 205, 242, 1037, 8, 45, 318, 78, 37, 1274, 78, 4, 205, 242, 1037, 26, 3124, 30, 318, 78, 37, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 1, 23, 1147, 51, 95, 10, 15, 30, 182, 592, 738, 21, 6, 1361, 11, 600, 2378, 2232, 7, 2222, 416, 1, 4, 732, 95, 10, 15, 4, 714, 182, 3, 2232, 416, 6, 45, 494, 67, 3, 2222, 416, 416, 1101, 98, 7, 51, 493, 462, 126, 3, 52, 1315, 98, 12], [40, 220, 474, 147, 1744, 317, 10, 768, 40, 6, 4, 804, 1517, 40, 220, 474, 147, 1744, 317, 10, 768, 40, 6, 4, 804, 1517], [13, 25, 13, 25], [168, 20, 31, 168, 20, 6, 290, 31, 112, 47, 1914, 2, 771, 790, 1612, 77, 18, 1718, 86], [54, 2, 606, 419, 185, 35, 14, 778, 68, 23, 606, 1078, 63, 77, 18, 5735, 514, 3, 593, 18, 3, 606, 7, 63, 1493, 1840, 11, 1096, 207, 2532, 44, 23, 1093, 2326, 68, 207, 3593, 54, 2, 1299, 72, 606, 11, 23, 142, 14], [1510, 598, 2, 196, 6, 274, 36, 3, 52, 1231, 1, 1, 1, 1, 1, 123, 53, 1690, 4, 926, 28, 121, 36], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [82, 20, 31, 313, 720, 1260, 567, 440, 1731, 18, 540, 1311, 7, 172, 21, 99, 8, 270, 80, 189, 73, 171, 1, 54, 23, 31, 9813], [34, 70, 10, 258, 34, 70, 10, 258], [54, 29, 2, 28, 128, 126, 54, 29, 2, 28, 128, 126, 1, 1, 1, 146, 9814, 9815, 65, 1631, 80, 44, 1456, 9816, 128, 126, 11, 191, 99, 43, 2124, 584, 4, 540, 54, 29, 2, 283, 128, 126, 2, 91, 68, 151, 6, 143, 136, 10, 423, 44, 47, 54], [15, 2844, 385, 3299, 1779, 11, 249, 55, 1, 349, 429, 1258, 1779, 4, 113, 11, 3046, 249, 184, 6147, 2, 3299, 461, 1, 3, 461, 65, 141, 1167, 534, 3, 1699, 330, 141, 1927, 2, 3, 69, 30, 1980, 7, 65, 141, 3487, 77, 30, 3, 1980, 2348, 30, 3, 1980, 11, 3, 365, 1211, 1, 424, 429, 15, 273, 1779, 18, 1258, 11, 44, 461, 1, 288, 39, 23, 385, 1779, 141, 6148], [97, 29, 128, 126, 110, 39, 29, 33, 128, 126, 21, 2398, 80, 33, 691, 7, 13, 7, 276, 1128, 158, 4561, 2186, 18, 1325, 451, 1190, 746, 670, 1493, 2625, 118, 2, 128, 126], [1205, 27, 2, 91, 117, 302, 4, 88, 1205, 27, 2, 91, 117, 302, 4, 88, 91, 163, 464, 28, 59, 9817, 129, 9], [32, 64, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 6149, 6150, 111, 9818, 4292, 4293, 55, 6149, 6150, 21, 8, 323, 53, 64, 39, 35, 1667, 80, 85, 3, 37, 35, 243, 164, 4292, 4293, 172, 39, 95, 4, 8, 614, 424, 63, 970, 27, 2, 106, 207, 83, 649, 2, 43, 837], [15, 535, 37, 55, 38, 23, 37, 51, 937, 15, 535, 39, 35, 14, 50, 2, 795, 9819, 9820, 188, 9821, 120, 2384, 1023, 6151], [13, 25, 15, 26, 25, 3, 15, 26, 13, 53, 9822, 330, 210, 637, 4, 169, 1483, 283, 13, 137, 13, 125, 20], [27, 2, 122, 2, 490, 74, 27, 2, 122, 2, 490, 74], [15, 26, 32, 132, 15, 26, 32, 132], [840, 189, 1430, 1815, 30, 457, 89, 8, 134, 143, 316, 351, 177, 37, 4434, 1, 1, 354, 185, 8, 43, 1124, 1, 9, 131, 336, 11, 223, 449, 1544, 52, 718], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 2940, 383, 221, 138, 221, 247, 221, 138, 1057, 2233, 1789, 301, 138, 301, 40, 2940, 383, 52, 56, 8, 336, 28, 56, 8, 336, 271, 90, 953, 233, 8, 336, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 93, 131, 442, 388, 93, 59, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 247, 221, 138, 1057, 2233, 1789, 301, 138, 301, 40, 2940, 383, 301, 247, 301, 1381, 196, 306, 259, 133, 903, 977, 801, 139, 352, 233, 252, 108, 136, 108, 138, 108, 56, 1006, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 9823, 1404, 9824, 671, 1405, 139, 615, 1581, 1581, 1746, 427, 299, 688, 131, 785, 786, 10, 2, 306, 259, 2940, 383, 192, 787, 775, 788, 658, 712, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 227, 9825, 9826, 175, 3302, 1509, 6152, 1230, 4562, 306, 9827, 4563, 962, 1328, 227, 917, 352, 228, 228, 1095, 4564, 478, 4565, 78, 227, 175, 2234, 341, 3798, 175, 478, 227, 1981, 3303, 227, 228, 3304, 103, 1065, 476, 1394, 557, 228, 1356, 4566, 133, 1177, 478, 228, 1267, 735, 236, 4567, 227, 419, 2235, 1394, 862, 476, 26, 4568, 4569, 592, 306, 1317, 1178, 4, 6153, 144, 845, 228, 1356, 271, 352, 1112, 227, 1463, 2941, 4055, 9828, 227, 1002, 9829, 144, 9830, 1509, 226, 9831, 465, 4570, 1269, 557, 259, 4571, 2941, 4055, 33, 1317, 774, 9832, 144, 1394, 862, 4568, 427, 643, 93, 59, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 4, 6154, 6155, 6156, 144, 221, 247, 221, 138, 1057, 2233, 1789, 301, 138, 301, 40, 2940, 383, 301, 247, 301, 1381, 196, 306, 259, 133, 903, 977, 801, 139, 352, 233, 252, 108, 136, 108, 138, 108, 56, 1006, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 9833, 1404, 9834, 671, 1405, 139, 615, 1581, 1581, 1746, 427, 299, 688, 131, 785, 786, 10, 2, 306, 259, 2940, 383, 192, 787, 775, 788, 658, 712, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 227, 9835, 2236, 306, 3799, 1269, 1509, 4572, 2936, 2354, 2657, 175, 4563, 962, 773, 227, 352, 1762, 837, 78, 227, 478, 2234, 341, 2117, 2915, 2058, 175, 259, 557, 1981, 2899, 259, 228, 6157, 103, 1065, 862, 478, 962, 557, 1863, 133, 306, 259, 1112, 735, 236, 9836, 476, 227, 9837, 2235, 259, 9838, 476, 1002, 4568, 9839, 1463, 1463, 175, 1002, 9840, 6153, 144, 478, 227, 259, 228, 505, 9841, 175, 478, 478, 1267, 1982, 4573, 427, 643, 227], [598, 2, 350, 4, 417, 20, 8, 1198, 4, 1374, 110, 38, 350, 73, 598, 2, 11, 3, 1465, 2, 192, 417, 20, 1, 23, 598, 2, 39, 43, 336, 624, 4, 1374, 1664, 4, 417, 20, 1, 35, 39, 201, 91, 44, 21, 2625, 1169, 4, 88, 1, 179, 2942, 53, 30, 598, 2, 1, 1, 83, 3, 131, 42, 421, 4, 88, 7, 3, 52, 89, 8, 468, 143, 684, 67, 11, 241, 709, 261, 598, 2, 42, 8, 1675, 158, 1374, 1, 185, 35, 14, 366, 12, 44], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 4574, 221, 138, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 4, 6154, 6155, 1, 6156, 144, 1, 221, 247, 1, 221, 138, 1057, 2233, 1789, 1, 301, 138, 1, 301, 40, 4574, 1, 301, 247, 1, 301, 1381, 196, 175, 1355, 1328, 1, 133, 903, 977, 1, 801, 139, 1, 352, 233, 252, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 9842, 1404, 9843, 671, 3800, 1405, 1, 427, 1, 1, 299, 1, 1, 688, 131, 1, 785, 786, 10, 2, 175, 1355, 1328, 4574, 192, 787, 775, 788, 658, 712, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 1476, 1328, 1, 9844, 1269, 306, 9845, 1839, 1, 1178, 6158, 228, 1839, 352, 1, 227, 1762, 837, 6159, 1, 227, 478, 4280, 2234, 341, 1, 3798, 2058, 1, 259, 1981, 1, 557, 259, 505, 103, 1, 862, 478, 962, 2184, 1863, 9846, 1, 557, 228, 9847, 735, 236, 1, 259, 1112, 175, 259, 1213, 2235, 1, 9848, 1, 476, 9849, 1, 1002, 1463, 26, 401, 198, 1, 259, 227, 1178, 557, 9850, 144, 2899, 1, 259, 228, 175, 6157, 3305, 1, 226, 1269, 1607, 1, 1, 427, 643, 227], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 1, 113, 2, 113, 1, 1, 31, 665, 37, 71, 9, 71], [149, 225, 20, 1722, 53, 3, 3801, 222, 42, 8, 727, 3, 6160, 30, 3801, 222, 65, 8, 727, 10, 225, 20, 3, 117, 65, 1722, 23, 225, 20, 599, 3, 6160, 222, 42, 1524], [27, 2, 3802, 3, 382, 1062, 1919, 27, 2, 3802, 3, 382, 1062, 1919], [361, 313, 3710, 361, 313, 3710], [548, 206, 4, 164, 808, 548, 206, 4, 164, 808], [9851, 142, 65, 805, 1121, 2, 3, 58, 3231, 3232, 90, 2628, 2883], [4575, 142, 65, 1965, 1121, 2, 58, 97, 118, 2, 83, 824, 524, 3231, 3232, 90, 2628, 2883], [6161, 3507, 142, 6, 1385, 2, 73, 271, 23, 142, 6, 1385, 2, 73, 271, 3, 73, 280, 219, 2, 43, 402, 207, 160, 6, 8, 2149, 1, 263, 3231, 3232, 62, 8, 38, 670, 34, 11, 23, 1044], [6161, 3507, 142, 97, 29, 3, 15, 652, 641, 297, 7, 667, 287, 2, 106, 283, 134, 9852, 9853, 6, 3, 1170, 4, 23, 594, 283, 134, 6, 12, 4091, 184, 183, 4205, 6162, 1249, 5014, 591, 18, 713, 3, 462, 219, 2, 1044, 7, 142, 134, 219, 2, 43, 421], [9854, 9855, 564, 6, 1385, 3306, 54, 373, 2, 73, 271, 7, 200, 219, 2, 43, 1368, 4, 73, 271, 4, 3, 569, 593, 3, 1577, 753, 564, 6, 1385, 2, 410, 719, 11, 165, 282, 23, 142, 280, 65, 1742, 18, 184, 42, 267, 2, 3, 3789, 1249, 11, 850, 66, 1577, 4, 3, 594, 3, 1318, 219, 2, 9856, 1044, 7, 3, 3306, 54, 2, 43, 243, 1565, 4, 3, 73, 271, 3, 165, 142, 4, 23, 594, 6, 267, 2, 652, 641, 297, 7, 667, 287, 11, 3, 1577, 2, 29, 423, 134, 287, 83, 18, 23, 755, 134, 4, 3, 73, 271], [3, 142, 4, 33, 174, 219, 29, 2, 3, 254, 11, 4576, 131, 23, 6, 271, 11, 3, 29, 603, 11, 161, 4576, 136, 511, 54, 2, 6044, 423, 131, 982, 2, 1551, 136, 11, 632, 183, 3, 603, 706, 3457, 3, 9857, 107, 39, 35, 398, 23, 33, 1601, 2658, 30, 29, 542, 50, 80, 398, 23, 123, 1100, 265, 3, 993, 6, 728, 4576, 129], [1480, 10, 3, 115, 1384, 167, 343, 2632, 521, 42, 8, 6163, 1480, 10, 3, 115, 1384, 167, 343, 2632, 521, 42, 8, 6163], [82, 20, 95, 4, 123, 55, 101, 14, 114, 3, 96, 37, 49, 164, 514, 637, 4, 11, 82, 20, 38, 274, 33, 148, 558, 222, 42, 53, 2647, 142, 56, 200, 1018, 416, 56, 6164, 9858, 877, 691, 6165, 1256, 63, 137, 82, 20, 30, 3, 96, 148, 7, 691, 691, 6165, 148, 56, 1111, 684, 514, 82, 20, 46, 42, 53, 779, 96, 179, 37, 118, 514, 24, 82, 20, 95, 4, 14, 106, 3, 807, 665], [25, 3, 13, 11, 4217, 4218, 10, 15, 865, 15, 14, 25, 3597, 26, 13, 53, 754, 53, 285], [148, 99, 8, 170, 98, 329, 1634, 886, 61, 1383, 10, 3, 3207, 98, 2599, 276, 1128, 489, 148, 99, 8, 170, 98, 329, 1634, 886, 61, 1383, 10, 3, 3207, 98, 2599, 276, 1128, 489], [191, 217, 37, 514, 95, 4, 55, 101, 1, 1, 14, 114, 3, 96, 37, 49, 164, 514, 637, 4, 191, 217], [2237, 1710, 89, 8, 122, 2, 115, 574, 2, 3063, 3064, 190, 2237, 1710, 89, 8, 122, 2, 115], [27, 2, 100, 41, 27, 2, 100, 41], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 1, 74, 56, 410, 416, 913, 1, 1, 1154, 665, 18, 3, 123, 913, 74, 2, 43, 543, 2, 33, 115, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449], [54, 25, 13, 15, 26, 52, 54, 25, 13, 15, 26, 52], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2, 206, 73, 223, 2, 572, 1937, 55, 14, 206, 73, 1378, 9859, 9860, 2, 177, 572, 1937, 57, 4548, 24, 1378, 4, 1689, 42, 1949, 24, 149, 101, 24, 6166, 1348, 2, 206, 9861, 9862, 2, 4548, 7, 9863, 9864, 2, 24, 6166, 1348, 135], [91, 377, 91, 377, 129, 2479], [51, 121, 3, 190, 174, 30, 279, 140, 3, 39, 927, 80, 51, 121, 3, 190, 174, 30, 279, 140, 3, 39, 927, 80, 67, 39, 927, 444, 23, 9865, 1633, 310, 372, 587, 59, 67, 183, 241, 1162, 1311, 1, 38, 9, 193, 51, 121, 165, 826, 109, 7, 240, 3, 24], [230, 225, 20, 11, 230, 225, 20, 4, 161, 52, 709, 11, 1395, 367, 65, 141, 1071, 2943, 2387, 131, 2214, 179, 53, 34, 9, 1, 169, 648, 548, 4349, 428, 178, 4, 249, 11, 2562, 1023, 47, 253, 288, 2, 398, 3, 31, 67, 389, 4559, 3, 367, 14, 269, 136, 62, 410, 582, 548, 4, 127, 2, 2639, 23, 31, 4, 3, 6167], [2238, 855, 2885, 4, 9866, 520, 111, 49, 250, 2, 509, 520, 1013, 7, 51, 170, 3, 1013, 3, 2238, 855, 2885, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [1504, 2544, 9867, 477, 2121, 9868, 9869, 9870], [27, 2, 29, 26, 111, 21, 101, 1, 1, 308, 14, 525, 53, 27, 2, 29, 26, 4, 33, 52, 1, 1, 163, 11, 104, 797], [25, 3, 13, 11, 9871, 9872, 10, 15, 865, 15, 14, 25, 33, 13, 4, 15, 26, 15, 205, 242, 52], [8, 84, 2, 46, 2, 2511, 4577, 3803, 260, 82, 20, 8, 84, 2, 46, 2, 2511, 4577, 3803, 260, 82, 20, 48, 2944, 505], [191, 217, 31, 55, 1, 1, 49, 8, 84, 2, 95, 10, 2, 191, 217, 3066, 4093, 4, 33, 148, 1, 1, 611, 106, 807, 10, 305, 1, 1, 1, 1, 30, 450], [15, 585, 1245, 32, 707, 15, 585, 1245, 32, 707], [193, 30, 1432, 950, 951, 193, 30, 1432, 950, 951], [920, 115, 2864, 920, 115, 2864], [8, 84, 2, 189, 862, 55, 50, 1, 1, 47, 42, 27, 2, 189, 186, 5539, 311, 2, 96, 37], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [59, 74, 8, 45, 12, 24, 59, 74, 8, 45, 12, 24], [32, 64, 4578, 340, 1472, 123, 32, 64, 4578, 340, 1472, 123], [29, 852, 2155, 2945, 6168, 29, 852, 2155, 2945, 6168], [193, 30, 41, 9873, 9874, 55, 1, 1, 110, 246, 265, 33, 86, 107, 2, 1242, 4, 3, 412], [123, 30, 87, 3276, 3277, 1080, 1053, 123, 30, 87, 3276, 3277, 1080, 1053], [536, 31, 55, 21, 151, 6, 673, 426, 113, 67, 39, 373, 3, 472, 11, 14, 50, 114, 21], [4579, 9875, 8, 45, 208, 491, 1, 3, 4579, 1115, 8, 45, 4, 33, 115, 308, 2016, 1, 1, 129, 107], [46, 193, 4, 87, 46, 193, 4, 87], [14, 114, 1104, 36, 186, 263, 14, 114, 1104, 36, 186, 263], [104, 32, 55, 1, 1, 356, 27, 2, 46, 10, 3, 6169, 914, 943, 53, 3, 1665, 18, 13, 22, 91, 96, 1, 1, 1511], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1689, 2658, 241, 466, 116, 2437, 257, 1689, 2658, 241, 466, 116, 2437, 257], [90, 24, 203, 1011, 238, 6, 75, 112, 12, 49, 105, 10, 90, 24, 203, 238, 1011, 2356, 2, 24, 17, 90, 90, 6170, 1337, 277, 10, 24, 17, 90, 90, 6170, 3154, 1117, 9876, 12, 49, 105, 10], [15, 26, 836, 466, 116, 836, 1856, 567, 195, 4, 1046, 1161, 80, 42, 1085, 2165, 4, 894, 112, 241, 655, 1, 405, 999, 3532, 999, 7, 9877, 131, 77, 18, 15, 1428, 9878, 345, 467, 1834, 1, 39, 35, 14, 114], [128, 126, 111, 1, 14, 386, 33, 128, 126, 6, 8, 2129, 62, 5305, 143, 287, 3, 1189, 118, 530, 500, 193], [41, 1315, 41, 1315], [168, 20, 123, 307, 55, 1, 1, 38, 123, 30, 168, 20, 39, 8, 118, 3, 660, 420, 18, 161, 694, 1, 3, 1606, 173, 6, 1054, 573, 23, 5642, 21, 6, 8, 285, 2, 3804, 3, 3735, 18, 161, 3307, 4, 190, 1, 1, 1, 1, 342, 1079, 556, 3258, 30, 450], [1195, 32, 602, 77, 55, 39, 35, 14, 106, 3, 636, 25, 18, 33, 76, 13, 33, 32, 6, 4580, 541, 1708, 116, 95, 4, 3, 13, 6, 230, 39, 14, 795, 23, 123, 10, 9879, 935, 129, 28, 4580], [14, 269, 1279, 2, 3, 287, 4, 21, 1076, 3520, 14, 269, 1279, 2, 3, 287, 4, 21, 1076, 3520], [4581, 36, 2521, 2438, 235, 86, 406, 14, 119, 86], [598, 2, 1665, 37, 112, 47, 38, 458, 195, 44, 38, 443, 1465, 1268, 625, 2, 423, 809, 6171, 944, 9880, 2840, 151, 6, 72, 31, 51, 284, 206, 73, 598, 2, 1, 189, 73, 598, 2, 442, 2, 3, 628, 1605, 1465, 2, 507, 494, 1, 119, 3, 1465, 2, 7, 189, 3, 2198, 179, 598, 2, 52, 37, 598, 2, 534, 1169, 1, 44, 6, 123, 53, 28, 97, 189, 3, 179, 1295, 196, 11, 443, 661, 1465, 1268, 3, 2476, 114, 264, 201, 43, 588, 1073, 3, 1442, 598, 1268, 18, 3, 511, 1605, 1465, 2], [315, 29, 2, 2239, 254, 1046, 55, 50, 101, 1, 1, 39, 35, 363, 1419, 315, 29, 11, 9881, 9882, 7, 9883, 9884, 2, 3, 177, 2239, 254, 10, 749, 2160, 1, 1, 1, 2160, 749, 2239, 6172, 173, 2160, 749, 2239, 6172], [14, 50, 2, 397, 15, 52, 55, 1, 1, 49, 27, 2, 397, 15, 52, 172, 207, 14, 50, 80, 2, 114, 21, 458], [61, 94, 82, 1826, 432, 24, 238, 880, 6, 75, 112, 12, 49, 105, 10, 82, 1826, 432, 24, 880, 238, 6, 75, 112, 12, 49, 105, 10], [3161, 6173, 6174, 111, 1757, 143, 70, 455, 21, 101, 53, 479, 2, 735, 23, 31], [14, 189, 175, 302, 18, 83, 6175, 7, 3308, 36, 6176, 6177, 6178, 14, 189, 175, 302, 18, 83, 6175, 7, 3308, 36, 6176, 6177, 6178], [27, 2, 189, 73, 62, 143, 9885, 171, 957, 103, 37, 28, 6, 73, 223, 7, 27, 2, 189, 324, 171, 7, 164, 37, 53, 779, 4, 464, 14, 326, 3, 377], [110, 39, 8, 95, 4, 15, 13, 397, 9, 345, 285, 454, 458, 22, 985], [90, 29, 11, 3103, 41, 480, 10, 79, 86, 90, 29, 11, 3103, 41, 480, 10, 79, 86], [25, 224, 11, 9886, 9887, 137, 13, 125, 20, 13, 25, 110, 39, 8, 95, 4, 15], [474, 466, 6, 343, 278, 55, 1, 1, 365, 483, 1, 1, 36, 334, 21, 141, 1890, 265, 474, 466, 6, 343, 278, 1, 1, 308, 509, 3, 354, 1073, 21], [195, 42, 2769, 44, 15, 466, 6, 343, 278, 7, 164, 659, 1352, 195, 42, 2769, 44, 15, 466, 6, 343, 278, 7, 164, 659, 1352], [1118, 56, 7, 9888, 56, 521, 275, 4, 79, 9889, 1118, 56, 7, 9890, 521, 275, 4, 79, 401, 14, 119, 21, 2, 1, 9891, 9892], [15, 278, 466, 15, 65, 141, 343, 278, 7, 1428, 316, 467, 2477, 2, 1653, 482, 6179, 361], [358, 24, 1034, 24, 262, 1204, 358, 652, 4582, 29, 277, 6, 75, 112, 12, 105, 10, 358, 24, 24, 262, 1204, 358, 652, 4582, 29, 277, 24, 144, 1034, 2356, 2, 24, 262, 1204, 358, 29, 277, 112, 12, 105, 10], [299, 20, 319, 13, 2822, 639, 11, 850, 20, 1122, 78, 2896, 1897, 1898, 49, 9893, 1456, 3565, 9894, 9895, 1438, 3183, 3617, 3183, 3073, 3074, 4583, 4584, 2659, 2660, 2896, 319, 13, 2822, 639, 55, 79, 78, 295, 1817, 1818, 1249, 47, 38, 268, 13, 2822, 639, 4, 299, 20, 51, 1426, 2, 122, 2, 3, 850, 20, 1122, 78, 2896, 21, 1100, 265, 23, 78, 9896, 4, 3, 24, 401, 67, 47, 42, 27, 2, 122, 2, 23, 78, 14, 326, 3, 95, 222, 4, 3, 559, 96, 7, 778, 68, 3, 78, 6, 273, 202, 62, 9897], [358, 1976, 7, 358, 113, 38, 1092, 15, 2437, 358, 1976, 7, 358, 113, 38, 1092, 15, 2437], [1972, 23, 32, 63, 1160, 2, 6180, 4, 88, 10, 67, 3, 73, 1393, 65, 8, 2197, 2, 26, 989, 14, 386, 3805, 3806, 1769], [41, 9898, 28, 486, 251, 737, 290, 2, 715, 41, 7, 33, 142], [382, 726, 31, 382, 726, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 430, 3, 726, 830, 1, 991, 3, 115, 726, 6, 45, 494, 172, 1, 31, 321], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [33, 32, 28, 9899, 6, 357, 3142, 64, 14, 373, 3036, 2, 1264, 3, 1206, 11, 3, 887, 451, 540, 33, 32, 65, 141, 3142, 64, 38, 8, 141, 1125, 3, 385, 13, 4363, 4364, 4, 4234, 10, 33, 115, 2851, 3202, 65, 499, 21, 567, 420, 2851, 65, 1098, 80, 2, 102, 3036, 2, 1264, 85, 6, 1278, 33, 32, 2, 43, 64], [41, 8, 1458, 41, 8, 1458, 267, 2, 3, 28, 52, 137, 487, 2337, 7, 1923, 2230, 991, 3, 115, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 31, 321], [623, 110, 304, 2, 43, 3, 739, 272, 90, 4, 23, 63, 274, 2, 9900, 9901, 357, 3, 739, 272, 44, 271, 1215, 2506, 7, 2436, 42, 273, 770, 2, 33, 623, 7, 38, 2, 844, 2, 444, 310, 63, 1631, 44, 9902, 9903, 6, 172, 3, 101, 1287, 272, 90, 90, 90, 7, 261, 264, 43, 331, 2, 408, 39, 35, 70, 15, 207, 261, 118, 2142, 861, 6181, 6182, 117, 200, 739], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [8, 84, 2, 46, 2, 76, 8, 84, 2, 46, 2, 76, 1, 635, 3, 396, 2, 715, 3, 52, 7, 114, 3, 155, 133, 1, 399, 3, 830, 1, 635, 3, 396, 2, 397, 2, 3, 24, 76, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [58, 193, 443, 529, 42, 327, 278, 288, 187, 35, 1264, 151, 42, 58, 193, 37, 422, 347, 8, 5944, 4, 337, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 15, 337, 1, 1, 42, 316, 467, 197, 999, 1447, 1170, 1022, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 26, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 16, 21, 942, 10, 443, 2855, 1, 1, 85, 165, 529, 42, 327, 278, 337, 6, 3, 201, 220, 178, 2, 1577, 1, 1, 39, 35, 29, 104, 131, 287, 10, 3, 78, 1, 1, 143, 165, 1119, 62, 210, 30, 165, 571, 23, 278, 466, 1147, 514, 1481, 119, 51, 1239, 18, 597, 10, 3, 52, 7], [378, 14, 206, 80, 2, 3, 1642, 689, 302, 11, 3, 3807, 101, 1066, 14, 206, 80, 2, 3, 1642, 689, 302, 11, 3, 3807, 101, 1066], [82, 20, 8, 45, 56, 1017, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1031, 463, 3, 24, 490, 347, 62, 82, 20], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [121, 997, 7, 351, 659, 121, 997, 7, 351, 659], [27, 2, 70, 224, 10, 83, 460, 27, 2, 70, 224, 10, 83, 460], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [97, 176, 2, 1610, 10, 115, 1814, 849, 1370, 4149, 4, 176, 1732, 97, 176, 2, 1610, 10, 115, 1814, 849, 1370, 4149, 4, 176, 1732], [102, 2, 647, 483, 1202, 1194, 1777, 36, 431, 549, 11, 740, 7, 4, 113, 239, 56, 9904, 9905, 182, 213, 130, 155, 204, 117, 107, 214, 146, 102, 2, 647, 483, 1202, 1194, 1777, 36, 431, 549, 11, 117, 4, 113, 239], [142, 2187, 169, 827, 142, 2187, 169, 827], [27, 2, 122, 2, 41, 56, 1017, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1031, 122, 2, 41], [34, 70, 965, 34, 70, 965], [57, 412, 765, 31, 55, 1, 1, 49, 8, 84, 2, 412, 245, 137, 36, 62, 1488, 765, 53, 201, 532, 18, 3, 1507, 884, 1, 2069, 21, 6, 4585, 343, 2044, 2, 2009, 887, 222, 184, 6, 275, 11, 458, 797, 1, 1, 2339, 3, 196, 1433, 222, 42, 183, 8, 500, 456, 1, 1, 611, 50, 4, 2180, 3, 179], [255, 34, 9, 119, 4, 171, 9906, 372, 57, 4307, 9907, 1, 1282, 67, 356, 273, 2169, 104, 1036, 44, 23, 63, 3652, 9908, 745, 501, 101, 49, 1348, 358, 4, 127, 2, 1044, 10, 1, 23, 6, 8, 72, 2727, 171, 21, 201, 304, 66, 104, 501, 101, 1, 1, 68, 356, 8, 496, 1036, 356, 1282, 67, 38, 2, 1420, 3, 34, 3593, 99, 2766, 1362, 276, 38, 2, 1420, 1, 1, 1828, 35, 9909], [32, 562, 11, 28, 6183, 6184, 32, 562, 11, 28, 6183, 6184, 28, 59, 9910], [24, 245, 10, 508, 3692, 24, 245, 10, 508, 3692], [90, 238, 75, 10, 3309, 1954, 175, 112, 12, 49, 105, 10, 238, 75, 10, 3309, 133, 2, 1954, 175, 1, 238, 75, 10, 3309, 2019, 133, 2, 266], [382, 726, 31, 30, 87, 497, 382, 726, 31, 30, 87, 497, 267, 2, 3, 28, 52, 137, 487, 1914, 3, 52, 1749, 991, 3, 115, 425, 3, 87, 395, 609, 2367, 205, 242, 121, 2, 3, 28, 294, 87, 395, 6, 172, 45, 494, 129], [236, 98, 898, 255, 218, 110, 54, 3, 177, 826, 36, 190, 3, 1118, 898, 11, 3, 218, 40, 749, 9911, 731, 9912, 9913, 898, 9914, 611, 9915, 2117, 9916, 611, 3272, 2946, 9917, 611, 1047, 160, 9918, 1989, 572, 9919, 2542, 9920, 2542], [1288, 2809, 211, 7, 243, 211, 18, 333, 110, 49, 511, 327, 158, 210, 30, 33, 9921, 2758, 184, 6, 1086, 51, 722, 413, 4, 72, 333, 367, 3, 2758, 89, 8, 1000, 98, 4, 143, 18, 33, 333, 481, 7, 1352, 199, 21, 2, 1149, 9922, 51, 45, 4, 287, 14, 525], [34, 70, 10, 258, 34, 70, 10, 258], [339, 121, 339, 121], [339, 121, 339, 121], [27, 2, 122, 2558, 208, 491, 3589, 49, 1, 1, 49, 27, 2, 122, 3, 2558, 10, 33, 52, 1, 1, 30, 135], [79, 13, 25, 79, 13, 25], [337, 13, 25, 337, 13, 25], [13, 25, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 29, 31, 26, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 9923, 482, 252, 3, 28, 219, 62, 63, 45, 30, 9924, 896, 3, 31, 91, 377, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 163, 269, 29, 3, 179, 53, 23, 165, 28], [243, 54, 1716, 50, 14, 365, 334, 16, 47, 199, 2046, 4, 90, 53, 613, 38, 365, 483, 3790, 3791, 731, 1501, 2776, 24, 203, 3296, 3297, 49, 9925, 72, 3790, 3791, 9926, 243, 54, 1716, 50, 14, 9927, 38, 328, 44, 90, 6, 137, 2046, 2, 312, 135], [127, 1560, 445, 123, 55, 1, 99, 1382, 104, 50, 68, 39, 795, 21, 30, 3, 50, 18, 33, 6185, 1059], [339, 121, 533, 1120, 941, 339, 121, 533, 1120, 941], [127, 1560, 445, 123, 55, 1, 99, 1382, 104, 50, 68, 39, 795, 21, 30, 3, 50, 18, 33, 6185, 1059], [15, 26, 32, 64, 77, 15, 26, 32, 64, 77], [243, 54, 1716, 50, 14, 4586, 38, 328, 44, 90, 6, 137, 2046, 2, 312, 135], [148, 8, 1506, 98, 148, 8, 1506, 98], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [54, 2, 114, 68, 6186, 6187, 32, 6, 64, 54, 2, 114, 68, 6186, 6187, 32, 6, 64], [486, 2, 114, 288, 2, 119, 3, 6188, 18, 174, 486, 2, 114, 288, 2, 119, 3, 6188, 18, 174], [27, 2, 70, 224, 27, 2, 70, 224], [378, 15, 26, 32, 132, 378, 15, 26, 32, 132], [88, 782, 7, 13, 25, 88, 782, 7, 13, 25], [949, 3032, 393, 82, 20, 400, 10, 79, 3310, 949, 3032, 393, 82, 20, 400, 10, 79, 3310], [58, 94, 2895, 9928, 24, 48, 6, 531, 75, 112, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 26, 32, 64, 15, 26, 32, 64], [14, 1040, 33, 73, 24, 868, 1683, 3301, 11, 174, 29, 55, 1, 1, 14, 1040, 33, 73, 24, 868, 1683, 3301, 11, 174, 29, 1, 1, 956, 5933, 1, 1, 2064, 2661, 1, 1, 956, 5934, 1, 1, 9929, 1, 1, 956, 1719, 59, 1, 1, 9930, 1, 1, 956, 5935, 1, 1, 799, 1, 1, 956, 5937, 296, 1, 1, 799, 1683, 2064, 2661, 1, 1, 956, 1719, 2560, 1, 1, 1, 1, 480, 1032, 394, 1, 1, 1, 1, 956, 3737, 1, 1, 2119, 1, 1, 5938, 255, 956, 3737, 1, 1, 188, 1, 1, 1, 35, 39, 647, 3, 1442, 1683, 3301, 108, 36, 33, 32, 67, 106, 8, 647, 143, 165, 817, 44, 38, 29, 2, 33, 32], [27, 2, 463, 41, 27, 2, 463, 41], [7, 67, 542, 134, 54, 2, 206, 451, 2279, 2, 41, 273, 45, 30, 41, 7, 67, 542, 134], [74, 1811, 406, 74, 1811, 406], [13, 25, 53, 21, 6, 562, 13, 25, 53, 21, 6, 562], [2388, 9931, 2240, 2, 3804, 315, 2947, 924, 18, 2638, 3, 628, 101, 2240, 6189, 2638, 763, 7, 2924, 21, 4, 2, 3, 1253, 1538, 2947, 149, 2, 118, 3, 315, 2947, 149, 23, 219, 2, 43, 274, 924, 18, 3457, 2638, 3, 1107, 99, 3804, 1175, 2947, 107, 66, 4487, 628, 9932, 4587, 9933, 7, 66, 9934, 83, 1496, 1638, 7, 9935, 2348], [1003, 2128, 2, 822, 1626, 106, 8, 100, 55, 1, 822, 101, 4, 3042, 6, 27, 2, 100, 822, 102, 1626, 36, 2128, 4, 161, 5865, 37, 1990, 23, 9936, 2843, 3, 101, 3735, 14, 196, 53, 754, 53, 285, 163, 42, 451, 176, 1968, 197, 30, 72, 698, 18, 1359, 2128, 197, 30, 3, 37, 44, 1990, 51, 250, 2, 100, 822, 455], [27, 2, 463, 15, 27, 2, 463, 15], [1203, 34, 9, 311, 341, 65, 141, 399, 2, 1547, 3311, 3312, 246, 265, 2, 1203, 3, 71, 34, 9, 311, 341, 65, 141, 399, 2, 1547], [122, 4, 2, 1060, 122, 4, 2, 1060], [27, 2, 118, 10, 58, 824, 27, 2, 118, 10, 58, 824], [15, 26, 13, 25, 15, 26, 13, 25], [32, 64, 32, 64], [110, 97, 269, 131, 158, 88, 110, 39, 269, 136, 4, 88, 514, 45, 10, 21, 580, 6, 4588, 33, 5, 7, 323, 44, 450, 18, 559, 184, 38, 163, 21, 1361, 36, 576, 2, 310, 541, 1708, 62, 541, 116, 51, 49, 937, 1682, 131, 23, 65, 1067, 389, 355, 244, 1361], [13, 25, 13, 25], [311, 2, 73, 1461, 90, 29, 2, 480, 32, 3, 1704, 30, 480, 1032, 6, 970, 230, 10, 104, 956, 599, 29, 6, 4589, 66, 3, 718], [2526, 3808, 3809, 14, 23, 123, 6, 442, 21, 596, 687], [2186, 251, 138, 11, 640, 1159, 12, 3201, 696, 3210, 2186, 251, 138, 11, 640, 1159, 12, 3201, 696, 3210], [32, 602, 77, 32, 602, 77], [97, 100, 73, 555, 810, 455, 55, 1, 1, 3052, 11, 3, 483, 1, 1, 14, 50, 80, 2, 100, 3, 839, 206, 555, 93, 455, 51, 248, 2, 100, 21, 351, 3, 177, 71, 21, 1359, 80, 2, 70, 33, 1003, 30, 9937, 394], [317, 4, 1047, 1047, 591, 753, 406, 317, 4, 1047, 1047, 591, 753, 406], [28, 13, 111, 101, 1, 1, 185, 35, 14, 25, 13, 36, 28, 3179, 2, 1102, 1, 3, 28, 1220, 408, 13], [3313, 2430, 11, 872, 1004, 22, 311, 2, 3313, 78, 6, 6190, 208, 101, 1, 1, 47, 42, 843, 684, 4, 3313, 3102, 18, 9938, 4, 26, 311, 2, 3313, 78, 6, 272, 1063, 37, 38, 425, 3, 2894, 11, 1325, 1004, 7, 21, 6, 201, 11, 1300, 131, 839, 1, 1, 14, 4120, 68, 83, 3, 605, 3313, 42, 8, 6190, 7, 2218, 494, 7, 102, 2, 269, 1480, 12, 72, 1131], [193, 30, 897, 1104, 4, 482, 2156, 411, 47, 39, 322, 3, 700, 193, 30, 897, 1104, 4, 482, 2156, 411, 47, 39, 322, 3, 700, 51, 47, 54, 21, 7, 541, 116, 51, 47, 54, 322, 3, 700, 47, 783, 393, 21, 161, 738, 432, 1033, 284, 6191, 166, 44, 23, 733, 42, 64, 4, 33, 15, 32, 185, 35, 50, 80, 14], [870, 406, 55, 1, 80, 7, 2662, 2663, 54, 175, 73, 6192, 870, 1, 6193, 3184, 68, 35, 2107, 21, 272, 2, 166, 12, 2029, 1189, 6194, 242], [870, 406, 55, 1, 80, 7, 2662, 2663, 54, 175, 73, 6192, 870, 1, 6193, 3184, 68, 35, 2107, 21, 272, 2, 166, 12, 2029, 1189, 6194, 242], [193, 30, 874, 1110, 719, 1047, 43, 6195, 6196, 193, 30, 874, 1110, 719, 1047, 43, 6195, 6196], [74, 406, 4, 3, 2792, 37, 71, 4590], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [76, 133, 55, 1, 1, 14, 50, 80, 2, 122, 2, 76, 49, 8, 84, 2, 1, 1314, 307], [58, 94, 361, 4, 24, 1212, 48, 6, 531, 75, 112, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [4179, 7, 133, 123, 110, 526, 1273, 4179, 120, 1296, 21, 530, 299, 123, 11, 23, 133], [25, 224, 11, 6197, 6198, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 6197, 6198, 137, 13, 125, 20, 13, 25, 3], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 90, 113, 1532, 6, 75, 12, 49, 105, 10, 40, 90, 113, 1532, 6, 75, 12, 49, 105, 10], [15, 1841, 3445, 220, 677, 70, 8, 285, 15, 1841, 3445, 220, 677, 70, 8, 285, 1, 8, 285, 2, 3247, 98, 72, 503, 1323, 3185, 1, 666, 470, 438], [338, 13, 25, 338, 13, 25], [40, 369, 686, 1951, 131, 6, 272, 198, 375, 198, 178, 387, 40, 369, 686, 1951, 131, 6, 272, 198, 375, 198, 178], [1283, 1334, 4591, 64, 1283, 1334, 4591, 64], [33, 26, 52, 6, 141, 64, 39, 35, 132, 21, 33, 26, 52, 6, 141, 64, 39, 35, 132, 21, 33, 28, 59, 6, 6199], [128, 126, 29, 8, 601, 294, 2, 3, 2562, 1, 1, 49, 27, 2, 29, 2, 3, 128, 126, 1, 14, 353, 21, 12, 3, 1131], [5055, 361, 1302, 1029, 277, 527, 78, 6, 1130, 23, 115, 6, 1130, 112], [127, 1560, 445, 123, 2664, 200, 49, 9939, 9940, 291, 292, 9941, 127, 1560, 445, 123, 55, 3, 31, 6, 44, 104, 1077, 6, 64, 4, 15, 26, 7, 4, 15, 26, 35, 54, 2, 465, 2, 3, 13, 125, 20, 13, 120, 7, 648, 493, 3, 765, 132, 460, 169, 44, 493, 3, 765, 119, 13, 746, 44, 6, 402, 1254, 35, 264, 397, 2, 417, 20, 30, 44, 73, 13, 342, 3568, 1511, 450], [72, 15, 65, 397, 792, 37, 9942, 72, 15, 65, 1, 1, 1, 1, 135, 76], [299, 523, 4, 285, 4592, 1396, 3602, 597, 4593, 20, 4594, 221, 138, 1, 221, 40, 4593, 20, 4594, 1, 301, 138, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 4592, 6200, 6201, 490, 3602, 597, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 4593, 20, 4594, 1, 221, 247, 1, 301, 138, 1, 301, 247, 1, 301, 138, 1057, 9943, 1204, 1, 133, 903, 1646, 1, 801, 139, 1, 352, 819, 118, 1, 28, 296, 1983, 2665, 2439, 79, 1582, 1989, 1, 293, 2410, 3314, 1, 315, 919, 993, 4595, 1113, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 4592, 6200, 6201, 490, 3602, 597, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 630, 656, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 9944, 1404, 9945, 671, 9946, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 4595, 1113, 1, 1, 512, 352, 40, 2410, 3314, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 1394, 1762, 476, 2236, 1, 476, 4596, 259, 845, 478, 1112, 228, 1269, 1230, 1, 306, 2229, 110, 118, 1, 227, 4595, 1113, 352, 1, 259, 227, 28, 296, 1, 1476, 306, 227, 1983, 616, 1, 306, 259, 9947, 2439, 1, 476, 228, 79, 1582, 1, 476, 478, 1989, 293, 1, 227, 227, 1463, 2410, 3314, 6202, 1, 259, 557, 1609, 834, 180, 753, 9, 1, 478, 478, 9948, 1, 427, 643, 227], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 799, 1476, 221, 138, 1, 301, 138, 1, 301, 40, 799, 2440, 1, 301, 247, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 2233, 1789, 1, 301, 138, 1, 301, 40, 799, 2440, 1, 301, 247, 1, 301, 1381, 196, 306, 1, 133, 903, 977, 1, 801, 139, 1, 352, 233, 252, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 9949, 1404, 9950, 671, 1405, 1, 139, 615, 1581, 1581, 1746, 1, 427, 1, 1, 299, 1, 1, 688, 131, 1, 785, 786, 10, 2, 306, 799, 2440, 192, 787, 775, 788, 658, 712, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 259, 227, 476, 2236, 1, 476, 1002, 3302, 954, 1509, 175, 1, 834, 9951, 9952, 1, 1762, 1762, 1356, 227, 352, 1, 228, 228, 1095, 4564, 1, 478, 4565, 78, 1, 227, 175, 2234, 341, 9953, 1, 2058, 1, 259, 478, 227, 1981, 3303, 1, 227, 228, 3304, 103, 1065, 1, 259, 1394, 557, 228, 1356, 4566, 133, 1, 1177, 478, 228, 1267, 735, 236, 4567, 1, 227, 419, 2235, 4597, 1, 6203, 1, 476, 26, 6204, 4569, 1, 592, 306, 227, 4, 3810, 166, 1, 478, 1177, 557, 271, 352, 1, 1269, 557, 227, 954, 2941, 50, 83, 1, 227, 6205, 166, 4597, 1, 6203, 1, 478, 478, 6204, 465, 1, 1112, 227, 1, 306, 227, 228, 3810, 166, 1, 9954, 1, 9955, 1, 427, 643, 227], [218, 29, 102, 40, 501, 188, 961, 4598, 839, 1, 1, 159, 9956, 1, 1097, 5761, 5762, 1, 29, 315, 753], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [106, 8, 38, 1279, 2, 338, 212, 12, 14, 1273, 77, 2, 80, 11, 316, 136, 68, 524], [249, 249, 249, 249, 111, 1, 1, 14, 91, 96, 780, 101, 1119, 7, 386, 10, 693, 779, 1023], [700, 107, 6, 8, 1180, 4, 492, 629, 18, 82, 20, 208, 6206, 23, 6, 365, 3032, 9957, 700, 107, 239, 6, 1429, 454, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [227, 116, 566, 208, 180, 116, 9958, 4452, 4453, 2622, 1123], [417, 20, 32, 5298, 123, 55, 101, 1, 1, 53, 35, 39, 91, 12, 3, 96, 9959, 33, 417, 20, 32, 187, 8, 2500, 11, 149, 4599, 207, 39, 8, 106, 1096, 12, 3, 417, 20, 1, 1, 185, 35, 14, 50, 80, 11, 23, 31], [348, 4385, 3589, 6207, 194, 145, 1099, 2570, 711, 2749, 348, 4385, 3589, 6207, 194, 145, 1099, 1240, 711, 9960, 5929], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [243, 54, 1716, 50, 14, 3792, 4550, 2666, 6, 3, 186, 629, 103, 184, 63, 4140, 11, 6208, 9961, 51, 90, 696, 1798, 10, 15, 186, 263, 629, 103, 3811, 99, 43, 543, 456, 53, 754, 53, 3, 186, 263, 6, 350, 68, 151, 6, 9, 1871, 117, 1871, 629, 103, 3077, 4, 23, 6209, 112, 47, 38, 534, 117, 1871, 629, 2666, 3077, 4, 629, 3666, 3811, 99, 43, 456, 1312, 30, 2666, 7, 21, 99, 176, 662, 4, 6210, 74, 74, 6210, 65, 141, 1916, 53, 506, 74, 11, 149, 676, 7, 117, 4600, 3, 9962, 6, 44, 47, 42, 731, 2, 117, 36, 600, 90, 7, 90, 39, 35, 14, 778, 68, 47, 42, 137, 2046, 2, 176, 3, 186, 263, 90, 4550, 47, 54, 104, 50, 2, 114, 30, 90, 101, 68, 284, 42, 137, 2046, 11, 303, 186, 263, 1192, 10, 3, 693, 136, 47, 6211, 114, 10, 3, 6212, 7, 270, 35, 253, 4586, 917, 1276, 1388, 188, 21, 14, 526, 176, 23, 57, 2050, 35, 1754, 54, 2, 23, 99, 6118, 6119, 10, 4551, 4552, 3790, 3791, 3296, 3297, 54, 1716, 50, 14, 1282, 1493, 57, 35, 2, 355, 2141, 6064, 288, 21, 601, 67, 35, 253, 288, 21, 601, 356, 614, 33, 9963, 6, 112, 47, 38, 244, 731, 2, 1850, 1851, 161, 186, 1001, 42, 273, 303, 2, 90, 448, 106, 54, 2, 129, 393, 23, 68, 21, 6, 3, 50, 564, 356, 8, 614, 85, 288, 2, 1382, 11, 21, 284, 2552, 53, 3812, 2, 3724, 9964, 2, 53, 35, 42, 47, 42, 9965, 3, 482, 3811, 2, 43, 543, 2, 3, 186, 629, 167, 924, 18, 2666, 90, 304, 2666, 47, 428, 137, 2666, 67, 3811, 6, 85, 47, 1754, 54, 2, 43, 137, 68, 38, 5903, 1619, 4, 9966, 270, 80, 253, 7, 3593, 335, 2, 3724, 21, 1716, 4390, 23, 6, 72, 698, 18, 85, 47, 479, 23, 6, 85, 47, 118, 722, 172, 169, 47, 465, 4, 7, 206, 3, 2666, 2, 118, 186, 263, 2, 176, 581], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1984, 73, 111, 356, 250, 2, 211, 683, 78, 10, 23, 73, 78, 63, 355, 1105, 1186, 21, 67, 21, 172, 664, 2, 43, 1321, 1952, 6213, 120, 82, 1807], [9967, 1568, 89, 8, 134, 555, 810, 89, 8, 100, 37, 71, 664], [2630, 2, 43, 430, 56, 6214, 6215, 182, 213, 130, 155, 204, 117, 107, 214, 146, 2630, 2, 43, 430], [15, 29, 31, 14, 25, 26, 13, 11, 9968, 52, 26, 26, 26, 26, 585, 165, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [79, 32, 64, 79, 32, 64], [79, 32, 64, 79, 32, 64], [700, 107, 6, 8, 1180, 4, 492, 629, 18, 82, 20, 208, 491, 1, 622, 96, 2421, 18, 492, 629, 18, 82, 20, 1, 700, 107, 6, 8, 1180, 4, 492, 629, 1, 1, 424, 700, 107, 6, 1429, 1, 4, 732, 18, 9969, 4, 20, 3239, 36, 700, 2, 700, 117, 9970, 3, 1574, 47, 320, 9971, 30, 82, 20, 4, 82, 20, 140, 47, 322, 700, 107, 67, 51, 528, 492, 21, 542, 468, 700, 107, 573, 700, 107, 548, 97, 43, 588, 44, 424, 21, 343, 1429, 2, 2041, 700, 107, 4, 82, 20, 492, 629, 1, 1, 11, 104, 1099, 354], [58, 94, 3451, 4393, 856, 618, 6, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1859, 621, 29, 11, 4601, 190, 3117, 3118, 124, 921, 922, 2948, 9972, 1859, 621, 29, 11, 4601, 190, 55, 3719, 47, 42, 290, 210, 699, 2, 621, 1859, 30, 72, 2390, 1919, 184, 65, 1067, 389, 3247, 4, 340, 1919, 36, 423, 2267, 6, 45, 355, 494, 600, 18, 3, 6216, 42, 84, 2, 326, 3, 9973, 6, 21, 285, 44, 3, 1381, 196, 18, 3, 9974, 6, 4, 241, 450, 18, 1627, 478, 228, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9975, 372, 56, 9976, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [15, 26, 32, 64, 15, 26, 32, 64], [8, 84, 2, 29, 3813, 1614, 101, 1, 1, 49, 8, 84, 29, 2, 3813, 1614, 11, 184, 47, 384, 4426, 393, 1833, 1560, 1, 36, 887, 197, 593, 693, 779, 667, 57, 767, 6, 8, 1628, 11, 80, 6217, 165, 1066, 42, 84, 2, 29, 3, 179, 1, 207, 308, 102, 35, 2, 509, 21, 2116, 313, 305, 7, 778, 251], [324, 171, 2210, 31, 197, 18, 33, 694, 331, 283, 1864, 2, 80, 310, 7, 151, 428, 1001, 83, 272, 21, 44, 151, 428, 9, 2210, 180, 65, 3, 2210, 11, 1319, 288, 264, 23, 43, 6218], [451, 2206, 428, 8, 1751, 2, 1338, 7, 56, 5727, 182, 213, 130, 155, 204, 117, 107, 214, 146, 451, 2206, 428, 8, 1751, 2, 1338, 7], [76, 99, 8, 729, 29, 2, 15, 56, 2789, 2790, 1, 182, 1, 213, 130, 155, 204, 1, 117, 107, 1, 214, 1, 146, 76, 99, 8, 729, 29, 2, 15, 23, 6, 3, 702, 18, 3, 179, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [148, 39, 95, 10, 148, 39, 95, 10], [1532, 3578, 1532], [318, 88, 1572, 319, 8, 268, 88, 51, 3, 1748, 28, 399, 558, 233, 53, 1621, 485, 21, 9977, 6219, 3, 1572, 319, 57, 2, 3, 88, 1097, 67, 38, 8, 268, 3, 319, 3, 926, 28, 328, 21, 4602, 331, 2, 80, 797, 2, 3, 163, 57, 446, 14, 663, 424], [26, 29, 9978, 111, 101, 1, 1, 49, 290, 210, 637, 158, 26, 38, 25, 33, 13, 4, 13, 120, 67, 273, 97, 29, 21, 39, 35, 14, 525], [175, 382, 412, 1293, 6, 327, 83, 3, 116, 3217, 3, 148, 75, 56, 3608, 3609, 182, 213, 130, 155, 204, 117, 107, 214, 146, 73, 148, 382, 412, 1293, 6, 327, 83, 3, 116, 3217, 3, 148, 75], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [206, 6220, 6221, 2, 968, 319, 1189, 206, 181, 196, 2, 968, 319, 11, 117, 91, 698, 163, 6221, 6220, 9979, 144], [577, 8, 303, 10, 117, 225, 418, 14, 485, 3, 163, 225, 418, 600, 18, 184, 42, 3, 179, 3, 197, 573, 3, 577, 6, 3, 197, 3, 117, 268, 3, 1708, 197, 30, 3, 577, 6, 197, 44, 331, 2, 1619, 7, 6, 888, 577, 5615, 30, 9980, 4, 3, 577, 2002, 7, 390, 6, 1736, 44, 390, 65, 34, 4, 11, 23, 31, 433, 577, 6, 8, 303, 67, 6, 3457, 4, 15, 14, 366, 158, 23, 210, 53, 2772, 53, 285, 53, 740, 42, 172, 6222, 3, 888, 1778, 7, 21, 6, 4585, 72, 31, 11, 161, 740], [6223, 117, 225, 418, 42, 8, 303, 3, 577, 973, 10, 3, 225, 418, 28, 6224, 6225, 6226, 39, 95, 158, 283, 4247, 82, 20, 7, 535, 535, 440, 454, 458, 626, 2949, 7, 82, 82, 418, 27, 2, 129, 78, 2532, 3, 28, 6, 230, 36, 261, 460, 311, 2, 454, 458, 626, 2949, 3, 28, 187, 8, 828, 274, 13], [86, 1478, 2521, 30, 1393, 1, 831, 9, 345, 265, 1018, 1, 39, 9, 345, 2596, 10, 3, 452, 1, 6227, 6, 406], [27, 2, 95, 4, 2, 15, 27, 2, 95, 4, 2, 15], [28, 9981, 39, 95, 158, 460, 28, 6224, 6225, 6226, 39, 95, 158, 283, 4247, 82, 20, 7, 535, 535, 440, 454, 458, 626, 2949, 7, 82, 82, 418, 27, 2, 129, 78, 2532, 3, 28, 6, 230, 36, 261, 460, 311, 2, 454, 458, 626, 2949, 3, 28, 187, 8, 828, 274, 13], [13, 25, 11, 337, 13, 25, 11, 337], [33, 86, 15, 56, 62, 13, 6, 626, 963, 397, 97, 95, 158, 15, 571, 110, 38, 29, 2, 532, 571, 10, 15, 67, 49, 8, 84, 2, 95, 158, 3, 52, 38, 670, 9982, 53, 33, 691, 7, 11, 3, 13, 322, 3, 179, 13, 44, 1254, 1994, 80, 158, 13, 125, 20, 13, 120, 38, 499, 3, 571, 184, 38, 29, 2, 4, 13, 125, 20, 13, 120, 7, 273, 97, 95, 4, 14, 91, 464, 15, 37, 464, 11, 3, 37, 71, 7, 13, 125, 20, 13, 132, 11, 302, 18, 15, 571, 97, 29], [2496, 508, 484, 37, 2496, 508, 484, 37], [33, 13, 6, 64, 51, 49, 250, 2, 465, 158, 3, 15, 3814, 212, 56, 3717, 3718, 182, 213, 130, 155, 204, 117, 107, 214, 146, 33, 13, 6, 64, 51, 49, 250, 2, 465, 158, 3, 15, 3814, 212], [27, 2, 95, 4, 2, 337, 27, 2, 95, 4, 2, 337], [590, 3815, 3816, 140, 10, 148, 9983, 1, 1, 38, 3, 1464, 462, 2199, 30, 9984, 9985, 18, 24, 2, 384, 565, 4603, 18, 3815, 3816, 140, 294, 437, 723, 3815, 2873, 47, 42, 9986, 30, 10, 632, 4991, 63, 3670, 85, 47, 524, 2, 106, 4, 127, 2, 384, 2282, 631], [97, 122, 2, 41, 36, 490, 97, 122, 2, 41, 36, 490], [3280, 924, 18, 4508, 11, 90, 271, 7, 127, 1072, 1, 1, 337, 3769, 3, 127, 4, 3280, 233, 1909, 12, 15, 127, 63, 3281, 328, 3770, 66, 1437, 3768, 184, 337, 2924, 119, 95, 429, 83, 1482, 428, 588, 66, 3771, 21, 4510, 112, 15, 6, 323, 1027, 233, 184, 6, 794, 66, 337, 67, 337, 1737, 6, 323, 3280, 233, 184, 89, 8, 410, 4511, 260, 23, 31, 207, 101, 39, 106, 6042, 6043, 7, 884, 98, 30, 3, 1340], [6228, 6229, 54, 58, 32, 207, 180, 39, 118, 57, 7, 705, 6228, 6229, 6, 3817, 4, 90, 12, 6208, 180, 219, 2, 38, 29, 2, 199, 705, 7, 57, 356, 1591, 180, 219, 58, 32, 207, 47, 39, 118, 83, 23, 105, 98, 23, 6, 307, 54, 66], [110, 97, 29, 3, 822, 20, 51, 250, 2, 322, 822, 118, 3, 177, 71, 1, 1, 37, 3471, 129, 780, 1, 1, 38, 73, 148, 526, 1262, 21, 65, 141, 1593, 989], [778, 617, 1144, 68, 236, 778, 1144, 617, 2, 21, 1435, 80, 37, 516, 51, 335, 2, 778, 127, 1021, 1144, 506, 1, 11, 698, 68, 127, 6, 1258, 7, 1036, 167, 66, 506, 429, 1258, 21, 99, 583, 80, 435, 68, 617, 6, 236, 2, 1688, 264, 118, 23, 435, 11, 2922, 1258, 2324, 467, 617, 617, 264, 114, 68, 1258, 670, 42, 2890, 62, 2191, 467, 1021, 9, 435], [894, 2045, 3818, 894, 2045, 3818, 11, 348, 146, 7, 463, 302], [15, 26, 46, 31, 3819, 6230, 56, 9987, 9988, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 511, 10, 3, 86, 30, 161, 5926, 3819, 6230, 7, 180, 219, 283, 13, 25, 4, 15, 39, 35, 50, 283, 28, 59, 6, 9989], [2010, 2011, 1278, 313, 1184, 1035, 10, 78, 40, 47, 742, 1910, 44, 3, 1184, 1035, 10, 3, 337, 205, 242, 78, 40, 65, 141, 9990, 1272, 30, 9991, 9992, 2, 47, 38, 706, 83, 18, 3, 1831, 777, 7, 516, 1837, 3, 78, 67, 3, 1035, 6, 273, 343, 313, 163, 6, 167, 554, 18, 3, 1291, 120, 1790, 323, 3, 744, 312, 6, 151, 1096, 44, 35, 39, 114, 10, 23, 78, 2, 91, 85, 6, 6231, 207, 1502, 18, 3, 52, 1123, 151, 42, 201, 532, 195, 448, 42, 511, 137, 3, 205, 242, 52, 12, 23, 116], [41, 1387, 88, 8, 323, 98, 41, 1387, 88, 8, 323, 98], [54, 1735, 2, 15, 55, 15, 28, 59, 290, 31, 9993, 15, 52, 26, 26, 26, 26, 26, 212, 26, 37, 464, 49, 27, 2, 100, 532, 482, 3094, 7, 532, 3094, 99, 8, 729, 80, 2, 119, 1096, 4, 3, 349, 2708, 464, 191, 5729, 49, 45, 11, 90, 7, 99, 106, 3, 179, 134, 53, 4484, 6232, 797, 9994, 28, 59, 30, 179, 5, 1836, 290, 29, 2, 21, 6232], [27, 2, 176, 324, 171, 27, 2, 176, 324, 171], [13, 25, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 1145, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 9995, 372, 56, 9996, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [39, 8, 189, 186, 11, 473, 110, 330, 24, 596, 687, 366, 12, 3, 473, 7, 612, 12, 161, 1570, 7, 4604, 6, 84, 2, 50, 80], [189, 616, 1182, 11, 9997, 113, 2, 106, 556, 186, 473, 6, 8, 285, 2, 106, 556, 11, 186, 473, 1, 37, 96, 1, 32, 1416, 72, 1038, 2, 616, 1182, 1, 71, 9, 9998, 1, 1, 5257, 1, 35, 38, 8, 1916, 616, 32, 1038, 11, 72, 32, 44, 6, 1673, 2, 570, 1275, 1, 1, 52, 466, 1, 32, 6, 1916, 53, 570, 3270, 1, 23, 2720, 44, 35, 755, 820, 289, 616, 32, 1038, 1, 1, 1107, 1, 322, 197, 18, 3, 177, 616, 32, 1622, 1, 1, 127, 1, 570, 314, 570, 314, 597, 103, 1, 149, 127, 438, 11, 632, 62, 570, 1673, 1, 632, 9999, 3270, 1, 570, 1182, 312, 1358, 1, 58, 58, 2148, 1, 191, 312, 1, 4993, 3767, 1, 2203, 4605, 1182, 1, 3, 1816, 4234, 952, 6, 32], [220, 374, 3820, 409, 10, 768, 40, 6, 4, 435, 1517, 1184, 463, 6, 313, 11, 44, 200, 220, 374, 3820, 409, 10, 768, 40, 6, 4, 435, 1517, 1184, 463, 6, 313, 11, 44, 200], [32, 132, 32, 132], [378, 15, 26, 32, 132, 11, 28, 4606, 378, 15, 26, 32, 132, 11, 28, 4606, 1456, 3197, 124, 291, 292, 1145, 550, 54, 132, 33, 1077, 4606, 720, 313, 14, 525, 28, 510, 180, 6, 1516, 10, 632], [378, 27, 2, 29, 128, 126, 56, 10000, 10001, 182, 213, 130, 155, 204, 117, 107, 214, 146, 128, 126, 123, 51, 335, 2, 29, 37, 3, 78, 6, 2072, 172, 335, 257, 1709, 688, 59, 10002, 834, 341, 7, 116, 49], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [117, 916, 39, 8, 43, 274, 55, 1, 1, 117, 1, 21, 274, 67, 3, 131, 6, 8, 399, 1, 1, 36, 3, 1568, 18, 3, 598, 2, 201, 21, 65, 901, 1465, 2, 265], [346, 6233, 440, 11, 26, 110, 38, 8, 268, 3, 26, 6233, 440, 11, 7, 14, 398], [378, 27, 2, 29, 128, 126, 378, 27, 2, 29, 128, 126], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [14, 269, 76, 29, 2, 10003, 10004, 10005, 495, 66, 5281, 5282, 7, 10006, 10007, 115, 6, 5, 19, 868, 24, 4524, 148, 115, 56, 6, 5, 10008], [37, 329, 6234, 73, 10009, 209, 690, 88, 111, 1, 63, 45, 4, 88, 7, 248, 2, 6234, 73, 1287, 51, 187, 351, 3, 96, 37, 14, 386], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 413, 10, 6235, 347, 18, 2492, 580, 27, 2, 413, 10, 6235, 347, 18, 2492, 580], [27, 2, 326, 143, 461, 2023, 30, 80, 55, 1, 1, 49, 27, 2, 326, 143, 461, 2023, 30, 80, 611, 326, 167, 554, 2116, 601, 10010, 26, 1, 308, 106, 3, 10011], [13, 25, 15, 10012, 10013, 124, 291, 292, 6049, 550, 2012, 11, 631, 18, 1815, 111, 14, 25, 15, 13, 53, 106, 8, 199, 3612, 7, 38, 2, 1386, 96, 779, 840, 1008], [27, 2, 46, 2, 3821, 40, 27, 2, 46, 2, 3821, 40], [5, 6236, 205, 242, 22, 4, 5, 19, 12, 5, 6236, 205, 242, 22, 4, 5, 19, 12], [822, 455, 55, 1, 1, 49, 8, 84, 2, 199, 3, 822, 102, 455, 177, 835, 3068, 746, 413, 73, 102, 14, 50, 1, 1, 1, 1, 135], [6237, 37, 401, 1064, 40, 47, 91, 93, 10014, 7, 184, 6, 442, 2, 862, 6237, 31, 2069, 99, 38, 2, 827, 3, 78], [6238, 350, 473, 65, 710, 2411, 341, 473, 350, 66, 6238, 65, 710, 2411, 341, 4, 21, 516, 51, 536, 42, 178, 12, 3, 689, 432], [1474, 73, 407, 11, 437, 74, 1474, 73, 407, 11, 437, 74], [49, 8, 84, 2, 504, 2623, 158, 101, 481, 54, 2, 43, 84, 2, 504, 567, 420, 483, 158, 101, 481, 39, 552, 464], [464, 14, 366, 12, 23, 23, 37, 71, 7, 270, 80, 253, 288, 2, 398, 21, 10015, 10016, 1276, 149, 685, 24, 10017, 1819], [1460, 20, 78, 10018, 1960, 481, 55, 1, 1, 161, 437, 220, 39, 528, 287, 36, 1460, 20, 78, 411, 3, 505, 4607, 196, 6, 8, 2950, 860, 466, 1, 1460, 20, 10019, 47, 42, 10020, 2, 121, 6, 1, 1, 1, 1, 7, 47, 4608, 3, 177, 2833, 1, 1, 1, 352, 233, 6239, 6240, 1, 1, 1, 1, 103, 233, 171, 1, 1, 71, 6239, 6240, 1, 1, 665, 3, 653, 2213, 6, 8, 178, 1, 1, 308, 1382, 35, 2, 114, 422, 200, 782, 2, 747, 10021, 10, 247, 1, 250, 2, 769, 1460, 20, 297, 3, 196, 6, 1766, 53], [15, 26, 13, 25, 56, 3259, 3260, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 25, 26, 15, 32, 11, 3740], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 89, 8, 100, 41, 89, 8, 100], [3, 652, 641, 297, 6, 260, 75, 233, 10, 2951, 14, 663, 1887, 559, 4, 850, 20, 112, 49, 10, 105, 1, 3, 652, 641, 297, 6, 260, 75, 233, 10, 2951, 47, 42, 84, 2, 769, 3, 78, 1, 1, 195, 6241, 769, 2951, 1, 1, 2753, 2951, 24, 24, 144, 30, 2018, 18, 131, 1, 853, 36, 2018, 116, 209, 1233, 1, 853, 36, 2018, 116, 209, 1233, 1, 853, 36, 2018, 116, 209, 1233, 1, 853, 36, 2018, 116, 209, 1233, 1, 1, 769, 1497, 11, 1, 3097, 331, 268, 805, 2298, 1, 10022, 3315, 10023, 420, 4, 10024, 2477, 1, 6146, 209, 2569, 209, 703, 209, 1, 1, 195, 6241], [1521, 148, 2187, 7, 99, 8, 873, 1521, 148, 2187, 7, 99, 8, 873], [32, 64, 32, 64], [4, 113, 168, 20, 6, 8, 45, 112, 47, 42, 534, 4, 129, 30, 3, 168, 20, 52, 4, 361, 47, 54, 669, 10025, 50, 112, 47, 38, 2067, 193, 30, 168, 20, 112, 310, 168, 20, 47, 38, 9, 2604, 2, 778, 161, 1249, 2, 392, 161, 684, 2, 236, 161, 10026, 449, 23, 6, 343, 2112, 10027, 11, 113], [1005, 317, 4, 793, 30, 197, 44, 1142, 1143, 331, 1005, 317, 4, 793, 30, 197, 44, 1142, 1143, 331], [378, 128, 126, 29, 123, 110, 8, 84, 2, 95, 158, 128, 126, 62, 128, 126, 38, 991, 33, 115, 443, 420, 7, 248, 2, 95, 4, 67, 97, 106, 207, 14, 386, 91, 167, 1926, 96, 4609, 4610, 1604, 949, 4315, 1600, 7, 2203, 4605], [128, 126, 24, 128, 126, 6, 75, 97, 29, 3, 459, 737, 164, 23, 71, 5514, 5515, 2302, 1064, 1707, 57], [1005, 317, 1379, 36, 4611, 4612, 661, 1255, 6, 524, 1005, 317, 1379, 36, 4611, 4612, 661, 1255, 6, 524], [110, 39, 8, 29, 3, 24, 128, 126, 78, 4, 90, 110, 118, 72, 37, 71, 1775, 3, 78, 6, 2072, 722, 172, 335, 257, 1709, 14, 91, 3, 377, 2, 485, 3, 71, 68, 35, 54, 256, 136, 39, 43, 2053, 12], [378, 3, 459, 128, 126, 6, 75, 110, 49, 27, 2, 29, 3, 459, 128, 126, 7, 128, 126, 384, 3, 96, 37, 135, 2311, 2312, 4416, 1604, 10028, 378, 2718, 2737, 7, 5552, 875, 10029], [6242, 1385, 4, 3, 6243, 3278, 6242, 1385, 4, 3, 6243, 3278], [15, 26, 32, 64, 15, 26, 32, 64], [15, 13, 25, 11, 28, 10030, 10031, 10032, 146, 1170, 89, 8, 253, 423, 337, 15, 691, 62, 13], [203, 34, 70, 203, 34, 70], [78, 6, 2072, 10, 128, 126, 78, 6, 2072, 10, 128, 126], [202, 505, 1200, 47, 39, 100, 7, 504, 10033, 53, 151, 42, 451, 10034, 202, 505, 1200, 1, 1, 742, 248, 137, 2952, 4613, 4614, 2227, 736, 573, 2732, 1, 1, 1958, 2, 2574, 151, 6, 171, 4, 15, 486, 10035, 505, 10036, 10037, 44, 264, 353, 3, 31, 30, 443, 202, 505, 1200], [378, 74, 830, 8, 1658, 2816, 1658, 830, 11, 58, 958, 1020, 7, 1020, 985, 764, 4, 37, 578, 102], [24, 128, 126, 144, 220, 233, 6, 75, 36, 49, 105, 24, 128, 126, 144, 220, 233, 6, 75, 36, 49, 105], [74, 947, 406, 74, 947, 9, 345, 1370, 143, 37, 4, 3, 1208, 3253, 1958, 2, 3, 2512, 2034, 98, 3, 37, 71, 7, 336, 680], [37, 71, 7, 661, 1881, 514, 45, 10, 88, 356, 164, 3665, 1000, 1532, 163, 1968], [1811, 15, 74, 89, 8, 176, 2953, 1296, 6244, 6245, 1811, 15, 74, 89, 8, 176, 2953, 1296, 6244, 6245], [378, 27, 2, 392, 4, 2, 197, 263, 53, 13, 6, 8, 2397, 378, 27, 2, 392, 4, 2, 197, 263, 53, 13, 6, 8, 2397], [189, 72, 32, 10, 104, 383, 7, 189, 175, 73, 197, 53, 3, 2281, 32, 63, 230, 66, 1090, 3, 181, 32, 192, 383, 1, 3, 32, 10, 3, 383, 755, 43, 584, 7, 10038], [13, 755, 43, 25, 257, 1800, 29, 30, 3, 383, 65, 230, 3, 32, 257, 1, 13, 755, 43, 25, 257, 2945, 3822], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [28, 6, 27, 2, 100, 4372, 36, 41, 217, 28, 6, 27, 2, 100, 4372, 36, 41, 217], [1960, 245, 376, 475, 284, 38, 141, 2584, 6246, 54, 2, 29, 288, 106, 118, 151], [203, 657, 2075, 4, 361, 10039, 181, 49, 10040, 10041, 10042, 10043, 1438, 58, 243, 657, 2075, 208, 10044, 47, 42, 1085, 318, 4615, 538, 31, 94, 101, 6, 45, 10, 11, 3823, 10045, 6, 124, 1156], [79, 70, 2241, 2345, 397, 3, 279, 140, 10046, 106, 8, 574, 2, 279, 140, 4532, 51, 195, 544, 3, 70, 21, 99, 373, 3, 70, 541, 483, 3, 70, 2345, 21, 1912, 2, 397, 2, 3, 279, 140, 86, 52, 1, 10047, 47, 54, 2, 38, 3812, 986, 2, 647, 3, 70, 62, 2639, 3, 70, 2, 43, 430, 1, 1, 23, 6, 188, 31, 1905, 10048, 1534, 745, 1487], [82, 20, 442, 31, 55, 1, 14, 622, 3, 96, 167, 554, 11, 82, 20, 442, 31, 1, 169, 1658, 140, 70, 49, 27, 410, 73, 117, 1482, 14, 263, 44, 765, 864, 11, 73, 117, 982, 6, 8, 1180, 1, 1, 308, 353, 3, 123, 12, 3, 1131, 1, 1, 1, 135], [197, 263, 31, 111, 1, 1, 51, 197, 263, 4428, 6, 667, 30, 80, 39, 201, 100, 3, 422, 239, 7, 118, 96, 37, 71, 1, 1, 1, 1958, 2, 3, 1097, 38, 1279, 2, 100, 21], [123, 30, 10049, 10050, 652, 4, 26, 457, 53, 1690], [2231, 973, 4378, 1014, 55, 1, 1, 10051, 96, 779, 225, 20, 117, 65, 969, 349, 573, 3824, 3316, 1, 1, 47, 326, 52, 65, 10052, 2231, 973, 7, 183, 6247, 1864, 1, 1, 14, 485, 7, 2016, 2334], [25, 13, 4, 26, 28, 2667, 25, 13, 4, 26, 28, 2667], [14, 876, 3, 1333, 4450, 173, 36, 3, 341, 4, 3, 190, 254, 426, 3, 2084, 2780, 4616, 14, 876, 3, 1333, 4450, 81, 173, 36, 3, 341, 4, 3, 190, 254, 426, 2084, 2780, 10053, 47, 54, 2, 269, 160, 136], [8, 84, 2, 1962, 417, 20, 632, 4, 437, 52, 8, 84, 2, 1962, 417, 20, 632, 4, 437, 52, 1, 51, 46, 6199, 30, 33, 222, 356, 8, 84, 2, 1962, 632, 4, 33, 437, 52, 67, 51, 33, 2070, 95, 4, 30, 283, 46, 222, 180, 84, 2, 1962, 3, 632, 4, 33, 437, 52, 1, 207, 308, 366, 158, 23, 10, 305, 53, 21, 6, 4588, 33, 2502, 2148, 1, 35, 39, 199, 4273, 46, 56, 53, 797, 2, 1422, 3, 2402, 2, 80], [3161, 6173, 6174, 21, 50, 1, 1, 11, 472, 3, 644, 252, 6, 10, 3, 731, 370, 36, 1228, 53, 96, 1, 67, 3, 391, 644, 252, 264, 43, 53, 2668, 3279, 21, 179, 4, 117, 916, 1, 586, 3, 1968, 96, 1, 1, 39, 35, 114, 85, 1821, 3, 385, 644, 252, 10, 3, 370], [1327, 312, 2435, 4, 15, 55, 1, 1, 1, 185, 35, 14, 353, 3, 177, 31, 662, 1, 1, 31, 250, 2, 1327, 30, 137, 10054, 184, 6, 3, 15, 312, 11, 2950, 981, 7, 151, 42, 3, 96, 167, 554, 429, 2435, 1, 1, 1, 1, 1, 1, 1, 1, 135], [82, 20, 70, 55, 1, 1, 1, 73, 117, 2645, 864, 6, 346, 14, 70, 1314, 307], [29, 2, 1860, 1791, 1263, 55, 3, 177, 694, 54, 29, 2, 3, 1451, 3122, 1860, 1791, 1263, 223, 3639, 3640, 10055, 6248, 6249, 10056, 2374, 2375, 10057, 3825, 3826, 6250, 7, 10058, 694, 10059, 6250, 7, 10060, 223, 4373], [15, 28, 809, 11, 3827, 3828, 110, 54, 2, 421, 1921, 1291, 4, 15, 67, 118, 37, 891, 91, 4617, 1, 1, 14, 1420, 1550, 53, 23, 351, 350, 66, 1531], [40, 422, 2061, 1353, 7, 566, 78, 1353, 42, 75, 40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 1700, 1, 40, 1181, 501, 297, 875, 125, 566, 78, 1353, 200, 317, 1700], [74, 947, 9, 345, 507, 74, 947, 9, 345, 507, 2265, 567, 176, 777, 1, 9, 165, 74, 6, 430, 1, 14, 183, 211, 74, 947], [27, 2, 515, 15, 27, 2, 515, 15], [54, 29, 2, 245, 18, 11, 1324, 54, 29, 2, 245, 18, 11, 1324, 1769], [6251, 65, 328, 44, 3, 13, 6, 45, 169, 25, 6251, 65, 328, 44, 3, 13, 6, 45, 169, 25], [1504, 2518, 6252, 1106, 1791, 1263, 1504, 2518, 6252, 1106, 1791, 1263, 4380, 4381], [54, 2906, 255, 1791, 1263, 54, 2906, 255, 1791, 1263, 3825, 3826], [15, 26, 13, 25, 15, 26, 13, 25], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [54, 2906, 255, 1791, 1263, 54, 631, 255, 1791, 1263, 2374, 2375], [14, 743, 255, 1791, 1263, 236, 98, 14, 743, 255, 1791, 1263, 236, 98, 6248, 6249], [14, 743, 255, 1791, 1263, 236, 98, 14, 743, 255, 1791, 1263, 236, 98, 3639, 3640], [730, 24, 144, 422, 48, 82, 20, 462, 2933, 229, 1092, 53, 8, 45, 1017, 10061, 65, 1092, 44, 3, 462, 2933, 229, 89, 8, 134, 730, 24, 144, 490, 347, 1, 21, 2582, 2008, 53, 2032, 53, 349, 103, 7, 276, 1128, 2, 1091, 347], [15, 7, 165, 155, 200, 42, 278, 11, 83, 195, 15, 7, 165, 155, 200, 42, 278, 11, 83, 195], [10062, 73, 361, 1302, 1029, 277, 527, 78, 6, 75, 23, 115, 6, 1130, 112], [27, 2, 528, 82, 418, 308, 366, 158, 27, 2, 1551, 7, 100, 82, 20, 287, 1, 1, 14, 1662, 251, 30, 266, 305, 7, 179, 732, 10063, 42, 275, 2, 43, 1690, 1, 1, 118, 3, 96, 37, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 434, 7, 893, 3, 74, 14, 434, 7, 893, 3, 74, 3317, 3318], [37, 71, 514, 1194, 734, 743, 55, 329, 1194, 734, 743, 37, 71, 1180, 7, 1194, 734, 8, 118, 727, 275, 50, 4, 2179, 3, 31, 14, 106, 8, 176, 23, 57, 2050, 21, 6, 2860, 1099, 2927, 3775, 3285, 3776, 3777, 23, 446, 1161, 143, 3778, 481, 6, 679, 201, 11, 3, 3286, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 7, 1048, 136, 44, 6, 2928, 1025, 7, 1513, 36, 1225, 143, 3246, 2408, 3779, 572, 2476, 18, 23, 446, 66, 612, 165, 467, 3, 679, 1295, 6, 1139, 1454, 68, 104, 1211, 18, 23, 446, 6, 4, 37, 14, 1026, 3, 689, 7, 3780, 3, 1050, 446, 662], [15, 441, 1467, 89, 8, 134, 115, 2864, 15, 441, 1467, 89, 8, 134, 115, 2864], [6253, 2615, 2521, 3829, 11, 2438, 1434, 10064, 3294, 10065, 2438, 1583, 10066, 2438, 10067, 10068, 10069, 851, 10070, 2579, 10071, 10072], [385, 303, 10, 6254, 1771, 225, 418, 55, 51, 6254, 127, 30, 1771, 3, 303, 530, 3, 822, 6, 184, 6, 385, 14, 114, 7, 391, 23, 698, 4, 377], [15, 1195, 4164, 55, 50, 1, 1, 151, 6, 1195, 4164, 4, 15, 7, 6, 343, 278, 183, 1, 14, 38, 21, 425, 12, 3, 1131], [27, 2, 46, 2, 79, 27, 2, 46, 2, 79, 37, 401, 1064, 397, 792, 37, 129, 9, 235, 271, 190, 190], [79, 32, 64, 79, 32, 64], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [15, 26, 13, 25, 15, 26, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 65, 562, 14, 3319, 25, 183, 11, 3, 383, 13, 65, 562, 14, 3319, 25, 183, 255, 3, 383, 2945, 3822], [15, 26, 29, 329, 937, 15, 26, 118, 72, 37, 397, 792, 37, 91, 377, 23, 6, 11, 28, 10073, 7, 10074, 7, 10075], [361, 1304, 657, 2075, 10, 92, 69, 229, 112, 12, 49, 105, 10, 92, 69, 361, 1304, 657, 2075, 10, 92, 69, 229, 112, 12, 49, 105, 10], [15, 191, 217, 6255, 191, 217, 26, 6255, 191, 217, 26], [14, 114, 127, 1771, 2936, 3, 127, 1950, 6, 323, 23, 1771, 252, 7, 3, 470, 438, 222, 42, 183, 323, 23, 1771, 252, 426, 256, 131, 10076, 1318, 10077, 10078, 59, 6, 1054, 1, 3, 727, 3047, 7, 225, 20, 42, 8, 3539, 23, 1771, 252, 67, 780, 65, 10079, 3, 1771, 822, 1, 829, 6, 8, 391, 1, 1, 68, 1771, 6, 8, 1673, 11, 23, 117, 598, 2, 276, 21, 264, 8, 1247, 1771, 822], [40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387], [102, 491, 3, 2143, 2750, 28, 59, 6, 64, 11, 161, 4287, 10080, 30, 59, 9, 611, 50, 2, 2009, 3, 179, 135], [110, 39, 384, 181, 455, 33, 235, 86, 185, 35, 25, 33, 24, 235, 86, 222, 42, 96, 1, 1, 2669, 2378, 2905, 1, 2669, 255, 383, 1, 2669, 10081, 10082, 1, 2669, 10083, 4618, 1774, 630, 5936, 1, 2669, 10084, 10085, 3144, 2905, 1, 2669, 2560, 1, 480, 1032, 255, 1, 10086, 2669, 10087, 1171, 10088, 10089, 188], [1031, 189, 186, 263, 11, 536, 660, 26, 1, 189, 186, 263, 11, 249, 473, 2, 358, 1, 91, 37, 71, 10, 1176], [206, 74, 1743, 55, 1, 49, 250, 2, 206, 23, 74, 67, 384, 3, 177, 71, 1, 14, 747, 21, 207, 44, 39, 122, 2, 23, 74, 184, 6, 4, 3, 15, 719, 581, 4, 190, 433, 49, 6256, 6257, 11, 1162, 599, 3075, 1, 1, 1, 1, 458], [279, 140, 665, 279, 140, 1076, 665, 1, 1, 11, 3, 190, 195, 3, 665, 18, 3, 1076, 63, 399, 2, 10090, 1, 53, 47, 246, 38, 1027, 6258, 117, 10091, 314, 924, 14, 270, 80, 253, 85, 21, 10092, 11, 7, 11, 85, 709, 21, 65, 141, 274], [14, 398, 3, 210, 779, 426, 665, 4, 26, 10093, 7, 35, 10094, 7, 134, 10, 21, 14, 2064, 482, 2782, 3134, 10095, 1, 1, 2064, 10096, 5745, 194, 446, 639, 30, 674, 1, 1, 26, 70, 2006, 52, 37, 476, 10097, 70, 10098, 37, 514, 70, 1318, 10099], [15, 34, 15, 34], [519, 29, 1838, 102, 55, 14, 90, 10100, 10101, 36, 162, 20, 519, 29, 11, 190, 190, 36, 7, 778, 51, 588, 10102, 10103, 458], [3830, 6, 27, 2, 100, 1371, 82, 20, 1664, 84, 2, 95, 4, 2, 13, 125, 20, 2, 25, 224, 3830, 6, 27, 2, 100, 1371, 82, 20, 1664, 84, 2, 95, 4, 2, 13, 125, 20, 2, 25, 224, 1, 363, 50], [27, 2, 1767, 24, 128, 126, 48, 27, 2, 1767, 24, 128, 126, 48], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 13, 11, 15, 26, 160, 28, 59, 6259, 111, 50, 564, 1, 1, 308, 50, 2, 25, 33, 13, 11, 26, 160, 53, 49, 8, 84, 2, 46, 169, 274, 13, 23, 334], [180, 6, 8, 84, 2, 413, 10, 3, 2857, 180, 6, 8, 84, 2, 413, 10, 3, 2857, 180, 6, 84, 2, 46, 2, 1045, 14, 622, 2, 3, 464], [243, 34, 9, 1119, 543, 55, 10104, 7, 2600, 576, 10105, 10106, 83, 44, 47, 1690, 393, 521, 275, 4, 4212, 212, 83, 4183, 42, 10107, 35, 14, 465, 3711, 7, 119], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [3, 15, 89, 8, 134, 861, 30, 3, 28, 10108, 10, 3, 115, 2338, 180, 65, 534, 10, 3, 115, 2338, 10109, 10110, 7, 21, 507, 494, 151], [27, 2, 46, 2, 15, 26, 32, 27, 2, 46, 2, 15, 26, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [15, 26, 32, 64, 15, 26, 32, 64], [88, 212, 46, 31, 4417, 4418, 208, 491, 1, 1, 49, 8, 84, 2, 29, 3, 88, 212, 14, 106, 3, 54, 315, 1, 1, 167, 554, 18, 37, 163, 1, 1, 1, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [142, 327, 278, 142, 327, 278], [15, 111, 21, 1, 1, 3612, 38, 1237, 30, 15, 10111, 10112, 21, 649, 169, 161, 116, 1, 372, 593, 1892, 21, 63, 343, 1083, 83, 483, 1, 576, 7, 310, 257, 21, 649, 2, 6260, 169, 44, 3831, 116, 1, 23, 6, 4585, 2111, 10113, 514, 86, 497, 51, 49, 275, 2, 412, 11, 536, 62, 666, 127, 272, 3, 86, 53, 38, 2, 10114, 11, 3, 52, 1360, 207, 836, 1, 1, 151, 42, 451, 165, 1378, 4, 3, 1917, 5509, 5510, 10115, 65, 3, 179, 1237, 283, 52, 649, 3484, 1243, 1502, 3484, 467, 2049, 62, 10116, 10117, 5578, 52, 99, 6260, 67, 8, 53, 1502, 53, 2049, 1, 1, 39, 35, 14, 6261, 241, 1383, 10, 23, 6209, 1, 1, 263, 21, 6, 316, 6262, 11, 23, 174, 68, 39, 43, 1376, 10118, 2590, 10119, 1, 1, 450], [731, 1022, 131, 136, 8, 1086, 51, 493, 1253, 593, 731, 1022, 2818, 184, 38, 131, 1229, 31, 2118, 131, 6, 8, 357, 3160, 636, 62, 829, 65, 1478, 30, 3076, 2, 636, 3243, 1, 3164, 570, 2302, 548, 1, 3832, 1022, 1, 344, 3164, 570, 66, 149, 676, 7, 731, 271, 1, 1475, 1971, 548, 1, 186, 103, 548, 1, 1212, 3662, 548, 1, 731, 1497, 1, 1, 131, 6, 8, 357, 3160, 636, 53, 39, 326, 440, 51, 493, 1253, 593], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [193, 30, 262, 76, 111, 1, 1, 38, 193, 137, 262, 76, 36, 490, 1, 1, 1, 135], [1228, 481, 99, 8, 1241, 411, 3, 473, 65, 9, 780, 1228, 481, 99, 8, 1241, 411, 3, 473, 65, 9, 780, 1, 472, 473], [385, 1248, 503, 10, 225, 20, 21, 50, 1, 1, 47, 38, 197, 968, 36, 358, 2, 3320, 53, 377, 3, 1248, 503, 6, 10, 3, 225, 20, 36, 15, 67, 21, 264, 43, 673, 1, 1, 39, 35, 114, 85, 1821, 3, 385, 503, 10, 225, 20], [90, 115, 6263, 6264, 4, 3, 2441, 594, 97, 122, 2, 4173, 1681, 67, 39, 122, 2, 3, 155, 90, 115, 6263, 6264, 4, 3, 2441, 594, 219, 2, 43, 10, 3, 58, 4, 127, 2, 176, 2, 3, 958, 4, 2441], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [2217, 28, 27, 2954, 2, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 137, 3, 76, 24, 76, 229, 1, 31, 321], [110, 49, 8, 84, 2, 95, 158, 33, 76, 51, 49, 250, 2, 100, 73, 908, 21, 6, 601, 2, 3, 104, 908, 6, 2054, 1230, 56, 10120, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 8, 84, 2, 95, 158, 33, 76, 51, 49, 250, 2, 100, 73, 908, 21, 6, 601, 2, 3, 104, 908, 6, 2054, 347], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [2217, 28, 27, 2954, 2, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 137, 3, 76, 24, 76, 229, 1, 31, 321], [76, 1121, 39, 4619, 2, 3, 76, 2870, 413, 581, 7, 167, 89, 8, 119, 248, 1797, 7, 6030, 7, 38, 241, 764, 248, 1801, 33, 142, 7, 38, 179, 764, 1, 1, 1, 135], [10121, 34, 34, 9, 117, 6, 1736, 3, 10122, 42, 8, 10123, 10, 3, 370, 14, 10124, 34, 34, 9, 7, 485, 3, 10125, 370, 53, 3, 117, 6, 10126, 3, 1168, 44, 47, 629, 36, 36, 3, 1266, 958, 106, 8, 513, 99, 54, 2, 4353, 3, 1168, 651, 10, 3, 1443, 44, 47, 511, 629, 36, 3, 10127, 1, 1, 91, 163], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [2217, 28, 27, 2954, 2, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 137, 3, 76, 24, 76, 229, 1, 31, 321], [27, 2, 29, 17, 76, 51, 413, 10, 413, 581, 2, 322, 73, 908, 3, 167, 355, 3628, 1737, 924, 18, 1761, 11, 28, 59, 7, 13, 53, 21, 1834, 89, 49, 84, 2, 199, 5710, 76, 294, 229, 794, 2, 80, 66, 57], [76, 42, 47, 290, 76, 210, 39, 118, 1105, 4, 2, 76, 1636, 1637, 149, 120, 1338], [76, 8, 45, 76, 24, 144, 229, 6, 1172, 37, 76, 8, 45, 76, 24, 144, 229, 6, 1172, 37], [190, 2285, 113, 3, 447, 168, 20, 89, 8, 373, 56, 10128, 10129, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 4, 190, 2285, 113, 3, 447, 168, 20, 89, 8, 373, 14, 114, 3, 447], [76, 8, 45, 76, 8, 45], [2217, 28, 27, 2954, 2, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 137, 3, 76, 24, 76, 229, 1, 31, 321], [76, 46, 31, 76, 46, 31, 1, 28, 27, 2954, 2, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 137, 3, 76, 24, 76, 229, 1, 31, 321], [28, 27, 2954, 2, 76, 56, 10130, 10131, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 46, 4, 2, 76], [2217, 56, 10132, 10133, 182, 213, 130, 155, 204, 117, 107, 214, 8, 178, 146, 39, 118, 158, 76, 54, 2, 43, 10, 12, 990, 7, 21, 2037, 2326, 14, 50, 510], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [33, 417, 20, 32, 6, 8, 45, 33, 1022, 6, 1326, 97, 493, 149, 676, 97, 493, 740, 33, 417, 20, 32, 6, 8, 45, 33, 1022, 6, 1326, 97, 493, 149, 676, 97, 493, 740], [29, 2, 4620, 4621, 3155, 56, 5711, 5712, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 2, 118, 29, 2, 4620, 4621, 672, 38, 1271, 272, 3, 2955, 4298, 581, 4, 90, 53, 613, 53, 90, 10134], [27, 2, 91, 56, 4, 82, 20, 27, 2, 91, 56, 4, 82, 20], [34, 70, 10, 258, 34, 70, 10, 258], [337, 13, 25, 56, 4285, 4286, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 28, 56, 7, 13, 25, 11, 337, 11, 10135, 10136, 947, 283, 628, 59, 7, 13, 99, 270, 911, 95, 4, 3, 52, 67, 8, 4, 337], [88, 206, 4, 11, 41, 188, 21, 101, 1, 1, 106, 8, 511, 38, 1121, 748, 88, 7, 130, 41, 10, 33, 24, 142, 47, 42, 172, 275, 2, 3055, 2, 229, 245, 7, 129, 136, 748, 41, 7, 88, 7, 573, 3, 88, 206, 4, 45, 10, 33, 108, 49, 511, 27, 2, 106, 23, 14, 100, 34, 2, 118, 23, 402], [13, 25, 11, 13, 25, 11], [34, 70, 10, 258, 34, 70, 10, 258], [417, 20, 7, 82, 20, 106, 8, 468, 1501, 11, 249, 417, 20, 7, 82, 20, 106, 8, 468, 1501, 11, 249, 516, 1243, 10137, 482, 429, 4622, 536, 4, 113, 7, 4623, 1, 165, 249, 923, 1108, 53, 62, 106, 8, 38, 23, 31, 1, 8, 614, 68, 151, 42, 165, 249, 923, 433, 47, 106, 38, 536, 67, 417, 20, 7, 82, 20, 2552, 697, 1108, 536, 1, 1, 14, 91, 163, 57, 11, 1831, 7, 163, 1210, 36, 1023, 10138, 482, 82, 20, 7, 417, 20], [27, 2, 122, 2, 1234, 74, 27, 2, 122, 2, 1234, 74], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 10139, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 1077, 9, 345, 202, 11, 26, 25, 224, 30, 13, 125, 20, 83, 274, 67, 26, 53, 1077, 9, 345, 202, 14, 729, 29, 53, 524, 11, 15, 337, 205, 869, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [243, 34, 543, 9, 1119, 1], [2530, 1437, 1835, 1885, 500, 47, 479, 2, 280, 15, 2, 456, 500, 7, 2159, 399, 1835, 10140, 2, 3, 2220, 1274, 78, 198, 1, 23, 6, 1238, 4624, 2, 8, 1474, 58, 522, 2, 106, 44, 866, 184, 183, 6, 2, 10141, 1290, 2878, 210, 36, 987, 44, 866, 30, 4061, 287, 1, 11, 280, 4, 669, 52, 4, 878, 26, 26, 7, 26, 11, 119, 2638, 6265, 2, 1274, 605, 36, 15, 1094], [97, 176, 849, 10, 1020, 74, 6, 783, 11, 3250, 221, 7, 407, 211, 67, 89, 273, 8, 134, 169, 70], [64, 77, 10, 3, 88, 32, 64, 77, 10, 3, 88, 32], [29, 2, 610, 4, 441, 1467, 56, 3321, 6266, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 15, 535, 191, 217, 67, 49, 27, 2, 1216, 98, 610, 38, 1534, 10142, 1968, 7, 284, 366, 2307, 67, 3, 791, 681, 6, 346, 10, 2049], [88, 41, 55, 1346, 101, 1, 1, 54, 2, 118, 33, 41, 7, 88, 10143, 10144, 14, 1273, 77, 2, 80, 53, 754, 53, 285, 1, 1, 135], [88, 41, 110, 9, 345, 38, 3, 88, 3494, 62, 206, 10, 4, 33, 41, 54, 2, 38, 23, 430, 46, 10145, 223, 107, 135], [88, 206, 4, 41, 111, 21, 356, 8, 697, 3, 88, 615, 4, 33, 41, 14, 270, 80, 253, 288, 39, 118, 44, 45, 53, 38, 2, 43, 4, 3322, 569, 11, 520], [88, 1387, 4, 10146, 110, 54, 2, 38, 88, 1387, 4, 41, 2, 1752, 33, 636, 5, 2271, 1385, 844], [34, 70, 10, 258, 34, 70, 10, 258], [331, 627, 218, 8, 323, 98, 4, 41, 331, 627, 218, 8, 323, 98, 4, 41], [5, 5, 262, 22, 4, 5, 19, 12, 5, 5, 262, 22, 4, 5, 19, 12], [27, 2, 1682, 3, 324, 171, 455, 11, 223, 27, 2, 1682, 3, 324, 171, 455, 11, 223], [2775, 303, 626, 1771, 822, 91, 163, 698, 822, 2361, 63, 67, 666, 586, 6, 323, 8, 614, 433, 3, 492, 6, 1694, 98, 3, 256, 1, 1, 183, 91, 698, 23, 99, 468, 3, 176, 10, 63, 391, 7, 85, 63, 727, 310, 6, 8, 187, 829, 1044, 272, 3, 1935, 44, 39, 43, 5770, 77], [34, 9, 34, 70, 34, 9, 34, 70], [2496, 31, 146, 27, 2, 95, 158, 87, 497], [34, 9, 34, 70, 34, 9, 34, 70], [70, 10, 34, 9, 70, 10, 34, 9], [25, 13, 11, 374, 571, 26, 26, 11, 28, 59, 6267, 25, 13, 11, 374, 571, 26, 26, 11, 28, 59, 6267, 1, 308, 410, 21, 10, 305, 935], [14, 544, 2064, 5, 179, 31, 53, 203, 1, 1, 14, 544, 3323, 1310], [3069, 1609, 6268, 40, 6, 75, 112, 124, 105, 10, 3069, 1609, 6268, 40, 6, 75, 112, 124, 105, 10], [3819, 6269, 223, 18, 90, 6, 64, 77, 18, 337, 14, 132, 7, 1377, 68, 223, 65, 316, 467, 26, 29, 3819, 6269, 223, 18, 90, 6, 64, 77, 18, 337, 14, 132, 7, 1377, 68, 223, 65, 316, 467, 26, 29, 1, 223, 6, 27, 2, 171, 160, 7, 2041, 763, 206, 131, 10, 337], [6270, 56, 1621, 4, 5, 19, 700, 5, 2770, 219, 2, 43, 399, 6270, 56, 1621, 4, 5, 19, 700, 5, 2770, 219, 2, 43, 399], [2496, 31, 39, 29, 87, 11, 191, 1, 1101, 98, 30, 71, 447, 287, 130, 174, 1886, 174, 3151, 362], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 2085, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 2233, 1789, 1, 301, 138, 1, 301, 40, 2085, 1, 301, 247, 1, 133, 903, 977, 1, 801, 139, 1, 352, 233, 252, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 4572, 1404, 10147, 671, 3800, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 401, 2956, 2957, 2442, 441, 1, 1, 512, 352, 40, 1812, 2235, 144, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 845, 774, 6271, 1, 954, 1845, 3302, 845, 1509, 478, 1845, 1230, 1, 962, 3799, 557, 1839, 352, 1, 227, 228, 1095, 1, 228, 478, 3833, 3834, 1, 227, 175, 1392, 2234, 341, 1, 557, 3835, 2058, 1, 175, 478, 1981, 1, 227, 259, 505, 103, 1719, 1, 228, 1394, 557, 3324, 1863, 122, 1, 228, 1356, 1177, 478, 6272, 735, 236, 1, 228, 1267, 259, 1213, 2235, 1, 10148, 1, 476, 6273, 1, 228, 26, 592, 962, 401, 2442, 1, 478, 1177, 557, 105, 271, 4570, 1, 1269, 557, 306, 4571, 2941, 2956, 1, 228, 306, 962, 2957, 2442, 441, 1, 10149, 1, 630, 10150, 1, 226, 1269, 465, 1, 557, 306, 228, 1812, 2956, 2957, 1, 962, 2442, 441, 1872, 1, 10151, 1, 6273, 1, 427, 643, 227], [29, 852, 24, 2958, 24, 2959, 262, 6, 75, 138, 1, 886, 1383, 2853, 1, 89, 8, 4625, 133, 1, 1, 185, 35, 14, 114], [2611, 225, 20, 780, 37, 111, 1, 1, 14, 622, 96, 181, 36, 4626, 7, 163, 2611, 225, 20, 18, 113, 3, 225, 20, 65, 2258, 3, 344, 2416, 763, 53, 2832, 7, 3, 3824, 4627, 65, 351, 3610, 7, 3325, 2334, 924, 18, 391, 344, 2416, 763, 18, 2832, 53, 332, 1253, 225, 20, 308, 326, 7, 398, 3, 123, 11, 710, 225, 20, 2, 2041, 3, 391, 344, 2416, 763, 2, 2639, 5009, 2324, 3824, 4627], [79, 13, 25, 79, 13, 25], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 799, 1476, 221, 138, 52, 56, 799, 2440, 28, 56, 1700, 271, 1700, 953, 233, 469, 149, 28, 16, 9, 595, 93, 95, 439, 1084, 47, 42, 697, 104, 1006, 24, 144, 108, 848, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 364, 11, 380, 8, 230, 36, 247, 139, 18, 2, 247, 139, 18, 104, 799, 2440, 108, 1775, 44, 3, 293, 6, 1251, 1725, 802, 30, 760, 23, 955, 380, 1717, 44, 799, 2440, 65, 1251, 1725, 2042, 2, 2932, 401, 56, 184, 6, 357, 2242, 890, 1873, 42, 890, 605, 44, 583, 77, 4628, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 11, 184, 138, 196, 1480, 65, 141, 653, 608, 380, 6, 285, 1971, 18, 72, 802, 142, 44, 6, 1500, 77, 2, 1064, 44, 65, 141, 1271, 272, 66, 2052, 2960, 62, 3836, 668, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 716, 42, 1386, 2965, 18, 760, 1056, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 332, 161, 506, 776, 3837, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 34, 201, 776, 11, 608, 401, 364, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1572, 353, 608, 401, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 725, 724, 222, 3, 401, 56, 52, 890, 6, 4629, 2670, 52, 11, 143, 2213, 267, 2, 3, 155, 62, 1599, 58, 184, 65, 3, 640, 2357, 18, 4630, 1290, 136, 30, 401, 1129, 625, 2, 669, 18, 3, 4631, 4632, 21, 6, 3326, 304, 11, 4633, 401, 1129, 2, 3, 3622, 138, 1584, 11, 3, 2357, 18, 4634, 200, 7, 817, 10, 58, 3, 401, 56, 52, 3327, 3, 3838, 18, 1977, 401, 1129, 7, 1408, 1325, 1129, 2, 138, 1584, 66, 4635, 2966, 56, 605, 11, 669, 401, 2966, 56, 605, 42, 625, 2, 43, 1748, 11, 423, 2261, 2967, 7, 3631, 3291, 272, 4636, 2, 165, 56, 605, 3, 401, 56, 52, 183, 4637, 3, 724, 1578, 18, 23, 603, 200, 21, 3783, 3, 890, 801, 1154, 2626, 18, 3, 131, 4638, 7, 131, 446, 4639, 304, 4, 890, 53, 934, 18, 3, 155, 801, 3504, 890, 1873, 42, 890, 605, 44, 583, 77, 626, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 56, 11, 184, 138, 196, 1480, 6, 357, 2042, 51, 217, 1152, 2, 353, 3, 196, 18, 2242, 4640, 62, 401, 3, 608, 2436, 933, 4641, 196, 62, 143, 196, 2654, 11, 3, 2203, 196, 23, 3328, 4642, 3, 217, 133, 2, 3, 1594, 293, 137, 23, 819, 1409, 1521, 39, 3839, 43, 336, 137, 608, 1994, 517, 819, 18, 1679, 1409, 2082, 6, 514, 1249, 4, 184, 605, 357, 304, 11, 1039, 7, 753, 803, 42, 1271, 272, 66, 2052, 2960, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 42, 1386, 2965, 18, 1056, 66, 1396, 18, 241, 2201, 1450, 2, 1873, 1089, 4643, 4644, 67, 3, 4645, 4646, 1109, 136, 2968, 2, 241, 3626, 1905, 608, 1577, 42, 4647, 2, 199, 143, 1750, 4648, 136, 284, 2041, 36, 1396, 446, 21, 2026, 1349, 1835, 44, 24, 6, 802, 30, 184, 1287, 2, 4649, 2243, 3840, 241, 1873, 42, 4650, 138, 1584, 18, 4651, 2, 4652, 184, 4653, 29, 2, 2318, 368, 265, 867, 57, 1888, 241, 4654, 122, 2, 443, 1064, 2967, 4655, 7, 516, 1243, 241, 18, 444, 43, 2242, 151, 43, 1515, 44, 42, 8, 4656, 2, 3, 2366, 18, 194, 252, 2443, 62, 136, 2968, 2, 1410, 2969, 4, 241, 1507, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 247, 221, 138, 1057, 2233, 1789, 301, 138, 301, 40, 799, 2440, 301, 247, 301, 1381, 196, 306, 133, 903, 977, 801, 139, 352, 233, 252, 108, 136, 108, 138, 108, 56, 1006, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 2244, 1404, 10152, 671, 1405, 139, 615, 1581, 1581, 1746, 427, 299, 688, 131, 785, 786, 10, 2, 306, 799, 2440, 192, 787, 775, 788, 658, 712, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 774, 774, 228, 476, 10153, 3302, 862, 1230, 7, 3411, 10154, 6274, 2354, 1936, 175, 227, 352, 228, 228, 1095, 4564, 478, 4565, 78, 227, 175, 557, 2234, 341, 3835, 175, 259, 478, 227, 1981, 3303, 227, 228, 3304, 103, 1065, 476, 1394, 557, 228, 1356, 4566, 133, 1177, 478, 228, 1267, 735, 236, 4567, 227, 419, 2235, 2671, 6275, 476, 26, 834, 4569, 592, 306, 227, 4, 3810, 166, 478, 1177, 557, 271, 352, 1269, 557, 227, 954, 2941, 50, 83, 227, 6205, 166, 2671, 6275, 478, 478, 834, 465, 1112, 227, 227, 306, 227, 1230, 3810, 166, 10155, 10156, 427, 643, 227], [28, 6276, 230, 4, 535, 55, 1, 14, 132, 535, 29, 11, 28, 6276, 2391, 10157, 1, 1923, 3, 220, 172, 21, 440, 454, 458, 22, 2949, 1, 1, 135], [14, 211, 209, 2060, 3187, 10, 3, 1521, 115, 14, 211, 209, 2060, 3187, 10, 3, 1521, 115], [25, 224, 11, 921, 922, 137, 13, 125, 20, 13, 25, 110, 38, 141, 64, 77, 18, 26, 217, 733, 2485, 11, 3, 88, 52, 912, 197, 1134, 12, 1125, 33, 13, 7, 268, 13, 397, 9, 345, 285, 454, 458, 22, 985], [140, 102, 2060, 54, 2060, 430, 10, 33, 148], [27, 2, 122, 2, 87, 27, 2, 122, 2, 87], [133, 210, 30, 3329, 48, 120, 613, 38, 10158, 30, 23, 83, 593, 161, 5802, 724, 1076, 65, 141, 6277, 183, 1, 1, 355, 2, 1229, 104, 1718, 47, 42, 290, 1237, 699, 3329, 48, 2519, 2, 3, 3329, 2644, 1, 1, 1860, 1, 1, 1593, 344, 18, 6278, 3329, 48, 10159, 7, 205, 242, 444, 53, 669, 197, 6, 421, 1, 3, 648, 451, 1067, 7, 273, 134, 494, 1, 3, 2245, 197, 244, 1726, 489, 18, 3, 2644, 7, 2037, 122, 12, 83, 172, 1, 2946, 4657, 7, 6278, 2037, 122, 12, 83, 7, 1493, 187, 1, 1, 248, 1248, 1713, 12, 1917, 197, 7, 451, 9, 5416, 1, 1, 1571, 1248, 1713, 490, 7, 267, 21, 2, 33, 1159, 21, 4469, 7, 39, 91, 21, 10, 3, 6279, 120, 1, 1, 47, 199, 261, 4, 541, 348, 47, 1962, 207, 356, 783, 11, 50, 36, 24, 21, 1076, 7, 241, 3278, 1, 6280, 21, 1336, 8, 43, 3274, 30, 23, 462, 207, 38, 163, 3330, 2719, 3412, 36, 3329], [9, 29, 2, 116, 2672, 7, 165, 2609, 9, 29, 2, 116, 2672, 7, 165, 58, 4269, 4270], [41, 89, 8, 170, 41, 89, 8, 170], [2221, 888, 684, 14, 91, 3, 163, 167, 176, 11, 2221, 888, 684, 11, 7, 600, 18, 184, 1517, 2943, 2387, 131, 2214, 3, 888, 367, 99, 8, 189], [235, 108, 453, 235, 108, 453], [61, 431, 31, 11, 2323, 1153, 24, 144, 61, 431, 31, 11, 2323, 1153, 24, 144], [31, 30, 874, 2080, 2428, 110, 38, 435, 891, 10, 33, 874, 2080, 2428, 1293, 10, 33, 10160, 14, 91, 3, 163, 367, 323, 261, 891], [250, 2, 118, 3, 233, 18, 34, 107, 34, 9, 56, 2424, 182, 213, 130, 155, 204, 117, 107, 214, 146, 250, 2, 118, 3, 233, 18, 34, 107, 34, 9], [79, 32, 707, 79, 32, 707], [27, 2, 122, 2, 235, 1484, 27, 2, 122, 2, 235, 1484], [317, 8, 45, 317, 8, 45], [54, 870, 857, 54, 870, 857, 1, 10161], [870, 9, 345, 507, 861, 14, 1005, 21, 870, 9, 345, 507, 861, 14, 1005, 2662, 2663], [54, 175, 73, 45, 870, 54, 175, 73, 45, 870, 10162, 10163], [27, 2, 463, 41, 311, 2, 88, 27, 2, 463, 41, 311, 2, 88], [3841, 86, 31, 33, 383, 172, 65, 5623, 4216, 1745, 51, 10164, 2, 72, 3842, 39, 8, 927, 444, 30, 143, 369, 343, 10165, 755, 199, 3, 1745, 86, 184, 2345, 3, 121, 933, 1705, 39, 3, 86, 43, 4658, 62, 39, 1005, 21], [9, 1568, 10, 87, 63, 3573, 9, 1568, 10, 87, 63, 265, 1074, 1075], [223, 868, 1747, 1367, 55, 21, 295, 101, 1, 1, 14, 743, 3, 108, 53, 332, 163, 455, 53, 72, 223, 868, 235, 108, 3, 798, 455, 6, 163, 1, 11, 3, 1127, 49, 137, 3, 41, 297, 1, 1, 55, 4543, 1, 1, 14, 766, 3, 455, 4, 955, 66, 181], [9, 466, 36, 396, 9, 466, 36, 396], [110, 54, 2, 253, 3, 1066, 4, 6281, 110, 54, 2, 253, 3, 1066, 4, 6281, 185, 35, 14, 269, 21, 4, 72, 333, 173, 1149], [32, 64, 77, 10, 547, 32, 64, 77, 10, 547], [41, 6, 8, 45, 742, 399, 3, 1421, 67, 680, 41, 6, 8, 45, 742, 399, 3, 1421, 67, 680], [14, 280, 958, 2420, 7, 2420, 10, 40, 30, 176, 830, 14, 280, 958, 2420, 7, 2420, 10, 40, 30, 176, 830], [74, 855, 70, 423, 407, 110, 97, 176, 12, 83, 3, 233, 18, 3, 958, 38, 3843, 2, 42, 83, 54, 407, 70, 716, 51, 335, 2, 70, 3, 407, 21, 99, 8, 70, 21, 67, 10166, 2524, 986, 294, 3, 400], [74, 123, 2705, 31, 136, 111, 101, 1, 1, 1, 185, 35, 14, 1194, 3, 83, 287, 176, 1277, 682, 138, 113, 682, 1, 1, 263, 1277, 38, 123, 1461, 1, 68, 35, 38, 316, 2523, 14, 129, 80], [32, 64, 4, 226, 32, 64, 4, 226], [2970, 4659, 947, 190, 83, 14, 320, 2970, 2, 166, 7, 1005, 21, 1, 1, 308, 1511, 135], [14, 236, 98, 621, 340, 11, 6282, 11, 197, 1324, 14, 236, 98, 621, 340, 11, 6282, 11, 197, 1324], [34, 70, 965, 34, 70, 965], [13, 125, 20, 32, 132, 13, 125, 20, 32, 132], [5, 5, 2019, 22, 4, 5, 19, 12, 5, 5, 2019, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 268, 977, 57, 111, 21, 101, 308, 14, 525, 28, 10167, 27, 2, 268, 977, 57, 115, 56, 5334, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 10168, 10169, 482, 252, 3, 28, 219, 62, 63, 45, 30, 47, 896, 3, 31, 9, 898, 2, 100, 223, 6283, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12], [27, 2, 6284, 87, 27, 2, 6284, 87], [54, 967, 97, 46, 2, 82, 20, 422, 220, 169, 13, 119, 54, 967, 97, 46, 2, 82, 20, 422, 220, 169, 13, 119], [206, 28, 6285, 6286, 6287, 2, 202, 675, 159, 2859, 206, 28, 6285, 6286, 6287, 2, 202, 675, 159, 2859], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [193, 327, 443, 58, 529, 42, 278, 111, 3719], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [363, 50, 2, 189, 186, 263, 11, 473, 208, 21, 1, 1, 246, 35, 363, 50, 2, 189, 186, 263, 11, 473, 21, 307, 11, 113, 11, 829, 37, 47, 27, 2, 189], [5, 5, 22, 4, 5, 19, 12, 804, 1984, 24, 24, 144, 116, 49, 1, 2220, 639, 2408, 441, 71, 2220, 633, 37, 1, 52, 37, 133, 25, 66, 2427, 1, 3257, 1, 1, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 5, 5, 22, 4, 5, 19, 12], [97, 189, 82, 20, 1291, 11, 1392, 97, 189, 82, 20, 1291, 11, 1392, 14, 50, 2, 5591, 30, 143, 193, 129, 1346], [15, 571, 42, 278, 4, 113, 15, 571, 42, 278, 4, 113, 83, 15, 195, 4, 113], [378, 29, 2, 24, 621, 36, 2, 55, 14, 90, 3, 177, 3523, 36, 692, 20, 29, 2, 24, 621, 11, 1162, 36, 2, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, 14, 778, 51, 588, 458], [58, 193, 443, 529, 42, 327, 278, 288, 187, 35, 1264, 151, 42, 58, 193, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 1, 1, 42, 316, 467, 197, 999, 1447, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 1, 1, 85, 165, 529, 42, 327, 278, 1, 1, 39, 35, 29, 104, 131, 287, 10, 3, 78, 1, 1, 143, 165, 1119, 62, 210, 30, 165, 571], [148, 1588, 8, 45, 3844, 8, 45, 514, 87, 5331, 2004, 236, 1019, 10178, 9, 345, 1382, 498, 514, 1441, 4], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87, 356], [2673, 65, 141, 584, 11, 2353, 107, 18, 4660, 4, 190, 4, 26, 47, 42, 843, 2353, 210, 44, 738, 4660, 97, 322, 423, 1864, 4, 15, 26, 411, 423, 2673, 89, 8, 1196, 257, 47, 38, 2, 189, 21, 866, 11, 669, 18, 444, 184, 6, 10179, 116, 6231, 241, 18, 444, 526, 516, 253, 448, 2, 129, 51, 3, 37, 1101, 98, 1, 85, 942, 424, 63, 3, 2673, 584, 39, 21, 43, 243, 350, 456, 5769], [40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387], [4661, 369, 370, 900, 40, 2444, 6, 272, 198, 375, 198, 178, 356, 4661, 369, 370, 900, 40, 2444, 6, 272, 198, 375, 198, 178, 356], [58, 193, 443, 529, 42, 327, 278, 288, 187, 35, 1264, 151, 42, 58, 193, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 1, 1, 42, 316, 467, 197, 999, 1447, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 1, 1, 85, 165, 529, 42, 327, 278, 1, 1, 39, 35, 29, 104, 131, 287, 10, 3, 78, 1, 1, 143, 165, 1119, 62, 210, 30, 165, 571], [133, 2, 501, 297, 131, 1885, 55, 1, 1, 384, 3, 177, 37, 71, 51, 335, 2, 100, 501, 297, 113, 1624, 1433, 185, 35, 14, 114, 1, 1, 1, 342, 1079, 556, 3258, 450], [2651, 64, 2651, 64], [41, 6, 1761, 11, 13, 257, 7, 257, 41, 6, 1761, 11, 13, 257, 7, 257], [15, 26, 7, 26, 8, 45, 15, 26, 7, 26, 8, 45], [54, 15, 29, 2, 3, 3233, 2402, 52, 26, 26, 26, 26, 585, 165, 26, 7, 26, 322, 28, 59, 18, 28, 290, 3, 31, 4662, 482, 252, 3, 28, 219, 62, 63, 45, 30, 896, 3, 31, 54, 29, 2, 3, 3233, 2402, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28, 10180], [128, 126, 210, 2136, 1, 1, 372, 593, 280, 128, 126, 7, 169, 170, 1949, 33, 128, 126, 1093, 2596, 80, 53, 1097, 207, 44, 1431, 410, 143, 354, 1, 310, 244, 128, 126, 257, 7, 172, 21, 6, 4406, 80, 44, 21, 1431, 122, 2, 3, 78, 329, 3, 76, 133, 63, 2162, 1, 1, 1828, 35, 39, 50, 80, 2180, 1325, 210, 1, 1, 1, 2744, 5155, 5156, 1, 1, 5157, 5158, 1, 5159, 24, 5524, 1, 1, 1, 1, 1, 24, 6288, 3331, 10181, 10182, 3038, 6289, 730, 24, 144, 1, 24, 6288, 3331, 10183, 10184, 6289], [142, 27, 2, 133, 24, 58, 142, 27, 2, 133, 24, 58, 115, 351, 138, 196], [3, 223, 6290, 6291, 4177, 219, 29, 2, 3, 1618, 753, 564, 633, 7, 322, 3, 223, 6290, 6291, 4177, 219, 29, 2, 3, 1618, 753, 564, 633, 7, 322], [32, 64, 4, 226, 32, 64, 4, 226], [15, 26, 32, 64, 15, 26, 32, 64], [32, 64, 4, 226, 32, 64, 4, 226], [1709, 1203, 536, 2, 189, 455, 55, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1156], [4451, 1859, 97, 43, 2747, 66, 4663, 175, 864, 4451, 1859, 97, 43, 2747, 12, 3, 2159, 18, 175, 864, 3117, 3118, 6, 10185, 14, 737, 104, 10186, 10187], [3271, 8, 164, 2411, 4, 26, 111, 1, 1, 14, 263, 44, 3271, 6, 8, 164, 2411, 4, 26, 3, 167, 554, 18, 37, 1535, 6, 1118, 96], [76, 76], [288, 2, 119, 13, 4, 4664, 56, 2971, 182, 213, 130, 155, 204, 117, 107, 214, 146, 288, 2, 119, 13, 4, 4664], [116, 2475, 8, 456, 848, 116, 2475, 8, 456, 848], [6292, 111, 96, 779, 4287, 6, 27, 2, 46, 283, 527, 14, 25, 3, 13, 1934, 9, 56, 2415, 10188, 10189, 6292, 30], [15, 26, 32, 64, 15, 26, 32, 64], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [25, 13, 111, 21, 101, 308, 14, 525, 2, 25, 26, 13, 11, 28, 10190, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [288, 2, 122, 2, 235, 4665, 288, 2, 122, 2, 235, 4665], [419, 419], [25, 224, 11, 10191, 10192, 137, 13, 125, 20, 13, 25, 3], [27, 2, 46, 2, 130, 32, 7, 54, 13, 27, 2, 46, 2, 130, 32, 7, 54, 13], [1070, 10, 15, 1552, 1070, 10, 15, 1552], [1984, 6, 6, 272, 198, 375, 198, 178, 387, 369, 370, 10193, 10, 78, 1984, 6, 272, 198, 375, 198, 178, 387], [60, 94, 2507, 155, 229, 2, 92, 69, 60, 59, 10, 24, 262, 1187, 361, 856, 618, 24, 144, 6, 75, 112, 124, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 640, 6, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 46, 2, 52, 27, 2, 46, 2, 52], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 2530, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 2530, 409, 203, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 13, 996, 208, 491, 33, 15, 13, 6, 230, 102, 35, 2, 308, 243, 236, 3, 13, 223, 252, 46, 59, 10194], [25, 224, 11, 10195, 10196, 137, 13, 125, 20, 13, 25, 3], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [87, 508, 484, 31, 87, 508, 484, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [424, 47, 39, 199, 3, 41, 1681, 135], [2386, 700, 5, 5, 5, 56, 5], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1686, 599, 82, 20, 55, 1, 1, 10197, 10198, 82, 20, 947, 1, 1, 1, 97, 43, 588, 1704, 9, 171, 449, 1, 1, 135], [15, 26, 32, 64, 77, 7, 13, 25, 15, 26, 32, 64, 77, 7, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [61, 94, 596, 687, 48, 6, 531, 75, 112, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [87, 46, 31, 508, 484, 31, 146, 33, 87, 191, 97, 46, 37, 71, 6, 151, 63, 123, 5778, 508, 484, 275, 2, 392, 4, 14, 50, 2, 795, 23], [358, 24, 1034, 2356, 2, 24, 262, 1204, 358, 29, 277, 6, 75, 112, 105, 10, 358, 24, 24, 262, 1204, 358, 652, 4582, 29, 277, 24, 144, 1034, 2356, 2, 24, 262, 1204, 358, 29, 277, 112, 105, 10], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12, 5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12], [201, 15, 327, 278, 112, 372, 655, 4, 759, 155, 6, 45, 494, 201, 15, 327, 278, 112, 372, 655, 155, 6, 45, 494, 83, 999, 42, 327, 278, 129, 15, 52, 26, 83, 999, 425, 30, 1706, 101, 9, 210, 53, 1108, 1706, 101, 1703, 30, 1035, 172, 1706, 328, 44, 1035, 6, 313, 112, 372, 2524, 72, 1901, 678, 15, 935, 10, 121, 295, 10, 121, 295], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [299, 523, 277, 4, 1468, 744, 1585, 221, 138, 52, 56, 6293, 797, 24, 144, 28, 56, 175, 271, 3332, 953, 233, 469, 149, 28, 16, 9, 595, 93, 95, 91, 96, 3, 1270, 65, 268, 12, 975, 1522, 18, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 2445, 364, 36, 104, 1006, 108, 2246, 24, 144, 11, 380, 8, 230, 1051, 36, 247, 139, 18, 3322, 90, 1523, 2, 247, 139, 18, 90, 90, 44, 1078, 10, 12, 23, 1717, 44, 3, 415, 293, 12, 7, 2823, 165, 3845, 42, 1426, 2, 4666, 68, 104, 1349, 843, 605, 1161, 6, 1792, 2, 3, 1468, 1874, 1875, 996, 1876, 2674, 2973, 744, 1585, 1179, 6294, 4, 2445, 23, 34, 99, 3333, 3846, 53, 916, 34, 11, 143, 442, 364, 599, 47, 384, 2359, 36, 35, 10, 288, 2, 796, 261, 388, 601, 844, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 47, 38, 107, 18, 615, 178, 11, 3, 561, 18, 710, 364, 1108, 53, 23, 197, 1985, 261, 364, 899, 2, 3, 212, 9, 579, 319, 7, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 23, 6, 1251, 1725, 3, 135, 3334, 68, 35, 42, 8, 327, 3, 220, 357, 2247, 34, 201, 776, 192, 883, 305, 34, 9, 86, 121, 11, 669, 1782, 221, 138, 196, 11, 261, 364, 23, 1241, 3847, 2056, 369, 18, 439, 1163, 315, 776, 192, 313, 305, 34, 7, 86, 121, 11, 669, 1782, 221, 138, 196, 47, 246, 8, 3848, 615, 7, 112, 3, 2248, 252, 6, 4, 3, 2781, 7, 6295, 3237, 3, 3845, 18, 3, 6296, 8, 43, 343, 6297, 7, 47, 39, 820, 373, 440, 10, 3, 212, 2, 1740, 302, 18, 2974, 924, 47, 246, 3848, 4667, 104, 1037, 11, 1792, 571, 7, 638, 444, 53, 1099, 746, 35, 38, 402, 23, 35, 185, 465, 30, 765, 2, 6298, 992, 10, 261, 388, 604, 1270, 724, 222, 1179, 1169, 4, 1468, 311, 2, 1969, 1019, 2193, 745, 3, 1874, 1875, 996, 1876, 2674, 2973, 733, 194, 2975, 185, 2248, 23, 1179, 2, 1559, 744, 1585, 2249, 10, 1792, 571, 1468, 6, 72, 6299, 126, 1179, 1169, 4, 1468, 2783, 462, 3849, 960, 1200, 294, 394, 1200, 1200, 294, 1200, 7, 1200, 7, 7, 4, 1468, 1489, 3849, 962, 1200, 1959, 2, 311, 2, 1969, 1019, 2193, 28, 6300, 2346, 192, 3, 2976, 469, 6301, 2412, 51, 3, 2976, 36, 62, 2976, 2, 2412, 6, 236, 6, 8, 861, 6302, 11, 6303, 62, 1410, 505, 66, 3, 1874, 1875, 996, 1876, 2674, 2973, 733, 1959, 2, 357, 2106, 4, 6304, 1592, 7, 304, 4, 72, 744, 403, 194, 4668, 185, 6305, 23, 31, 2, 1559, 744, 1585, 2249, 66, 6306, 6307, 744, 252, 158, 72, 952, 1019, 2076, 3335, 4625, 72, 2975, 2, 3548, 744, 1004, 7, 1653, 6308, 744, 4669, 10, 3, 6309, 603, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 247, 221, 138, 1057, 3322, 90, 301, 138, 301, 247, 301, 138, 1057, 90, 90, 133, 903, 977, 801, 139, 352, 819, 644, 293, 730, 24, 592, 315, 919, 993, 522, 2086, 2977, 2978, 2430, 108, 136, 108, 138, 108, 56, 2246, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 2244, 1404, 6310, 671, 6311, 1405, 139, 615, 1581, 1581, 1746, 427, 512, 352, 1780, 522, 2086, 2977, 2978, 2430, 512, 352, 40, 730, 24, 592, 299, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 1178, 227, 228, 259, 1355, 1317, 1178, 259, 917, 7, 6312, 43, 1706, 228, 6313, 1509, 845, 954, 228, 2354, 6314, 226, 834, 228, 1963, 2086, 2977, 227, 2978, 2430, 227, 228, 352, 293, 1310, 227, 960, 730, 24, 478, 1269, 226, 592, 979, 557, 862, 175, 505, 2087, 259, 557, 259, 505, 306, 306, 557, 6315, 220, 228, 259, 1178, 325, 730, 455, 6316, 227, 478, 478, 6317, 2499, 259, 862, 6318, 259, 227, 6319, 306, 6320, 862, 6321, 26, 306, 6322, 227, 6323, 227, 834, 6324, 43, 6325, 228, 6326, 259, 6327, 175, 1310, 6328, 1476, 1269, 1328, 6329, 259, 6330, 175, 6331, 306, 6332, 1234, 306, 6333, 175, 6334, 306, 6335, 774, 228, 6336, 175, 6337, 175, 962, 6338, 175, 6339, 175, 6340, 306, 6341, 227, 6342, 175, 306, 6343, 175, 6344, 227, 6345, 306, 6346, 306, 175, 6347, 227, 6348, 175, 306, 6349, 1234, 6350, 1476, 962, 6351, 175, 6352, 1234, 175, 6353, 1356, 6354, 592, 954, 592, 6355, 259, 6356, 476, 259, 6357, 306, 6358, 960, 6359, 6360, 259, 476, 6361, 259, 259, 6362, 306, 259, 227, 6363, 175, 1355, 175, 6364, 6365, 954, 6366, 259, 1509, 431, 6367, 476, 6368, 175, 259, 6369, 1234, 6370, 306, 6371, 175, 6372, 175, 6373, 175, 6374, 1310, 1112, 6375, 7, 2057, 6376, 6377, 476, 6378, 175, 6379, 592, 6380, 306, 6381, 1355, 259, 6382, 6383, 259, 6384, 7, 427, 643, 18, 388, 8, 806, 311, 2, 198, 3850, 509, 354, 34, 354], [39, 8, 644, 472, 426, 1327, 208, 101, 363, 50, 2, 114, 96, 31, 955, 472, 39, 8, 43, 1751, 311, 2, 10199, 31, 67, 47, 39, 8, 926, 4, 1096, 4, 700, 339, 363, 50, 2, 796, 21, 1498, 1239, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [299, 523, 277, 4, 1468, 744, 1585, 221, 138, 52, 56, 6293, 797, 24, 144, 28, 56, 175, 271, 3332, 953, 233, 469, 149, 28, 16, 9, 595, 93, 95, 91, 96, 3, 1270, 65, 268, 12, 975, 1522, 18, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 2445, 364, 36, 104, 1006, 108, 2246, 24, 144, 11, 380, 8, 230, 1051, 36, 247, 139, 18, 3322, 90, 1523, 2, 247, 139, 18, 90, 90, 44, 1078, 10, 12, 23, 1717, 44, 3, 415, 293, 12, 7, 2823, 165, 3845, 42, 1426, 2, 4666, 68, 104, 1349, 843, 605, 1161, 6, 1792, 2, 3, 1468, 1874, 1875, 996, 1876, 2674, 2973, 744, 1585, 1179, 6294, 4, 2445, 23, 34, 99, 3333, 3846, 53, 916, 34, 11, 143, 442, 364, 599, 47, 384, 2359, 36, 35, 10, 288, 2, 796, 261, 388, 601, 844, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 47, 38, 107, 18, 615, 178, 11, 3, 561, 18, 710, 364, 1108, 53, 23, 197, 1985, 261, 364, 899, 2, 3, 212, 9, 579, 319, 7, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 23, 6, 1251, 1725, 3, 135, 3334, 68, 35, 42, 8, 327, 3, 220, 357, 2247, 34, 201, 776, 192, 883, 305, 34, 9, 86, 121, 11, 669, 1782, 221, 138, 196, 11, 261, 364, 23, 1241, 3847, 2056, 369, 18, 439, 1163, 315, 776, 192, 313, 305, 34, 7, 86, 121, 11, 669, 1782, 221, 138, 196, 47, 246, 8, 3848, 615, 7, 112, 3, 2248, 252, 6, 4, 3, 2781, 7, 6295, 3237, 3, 3845, 18, 3, 6296, 8, 43, 343, 6297, 7, 47, 39, 820, 373, 440, 10, 3, 212, 2, 1740, 302, 18, 2974, 924, 47, 246, 3848, 4667, 104, 1037, 11, 1792, 571, 7, 638, 444, 53, 1099, 746, 35, 38, 402, 23, 35, 185, 465, 30, 765, 2, 6298, 992, 10, 261, 388, 604, 1270, 724, 222, 1179, 1169, 4, 1468, 311, 2, 1969, 1019, 2193, 745, 3, 1874, 1875, 996, 1876, 2674, 2973, 733, 194, 2975, 185, 2248, 23, 1179, 2, 1559, 744, 1585, 2249, 10, 1792, 571, 1468, 6, 72, 6299, 126, 1179, 1169, 4, 1468, 2783, 462, 3849, 960, 1200, 294, 394, 1200, 1200, 294, 1200, 7, 1200, 7, 7, 4, 1468, 1489, 3849, 962, 1200, 1959, 2, 311, 2, 1969, 1019, 2193, 28, 6300, 2346, 192, 3, 2976, 469, 6301, 2412, 51, 3, 2976, 36, 62, 2976, 2, 2412, 6, 236, 6, 8, 861, 6302, 11, 6303, 62, 1410, 505, 66, 3, 1874, 1875, 996, 1876, 2674, 2973, 733, 1959, 2, 357, 2106, 4, 6304, 1592, 7, 304, 4, 72, 744, 403, 194, 4668, 185, 6305, 23, 31, 2, 1559, 744, 1585, 2249, 66, 6306, 6307, 744, 252, 158, 72, 952, 1019, 2076, 3335, 4625, 72, 2975, 2, 3548, 744, 1004, 7, 1653, 6308, 744, 4669, 10, 3, 6309, 603, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 247, 221, 138, 1057, 3322, 90, 301, 138, 301, 247, 301, 138, 1057, 90, 90, 133, 903, 977, 801, 139, 352, 819, 644, 293, 730, 24, 592, 315, 919, 993, 522, 2086, 2977, 2978, 2430, 108, 136, 108, 138, 108, 56, 2246, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 285, 1468, 1874, 1875, 996, 1876, 2972, 744, 1585, 1134, 560, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 2244, 1404, 6310, 671, 6311, 1405, 139, 615, 1581, 1581, 1746, 427, 512, 352, 1780, 522, 2086, 2977, 2978, 2430, 512, 352, 40, 730, 24, 592, 299, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 1178, 227, 228, 259, 1355, 1317, 1178, 259, 917, 7, 6312, 43, 1706, 228, 6313, 1509, 845, 954, 228, 2354, 6314, 226, 834, 228, 1963, 2086, 2977, 227, 2978, 2430, 227, 228, 352, 293, 1310, 227, 960, 730, 24, 478, 1269, 226, 592, 979, 557, 862, 175, 505, 2087, 259, 557, 259, 505, 306, 306, 557, 6315, 220, 228, 259, 1178, 325, 730, 455, 6316, 227, 478, 478, 6317, 2499, 259, 862, 6318, 259, 227, 6319, 306, 6320, 862, 6321, 26, 306, 6322, 227, 6323, 227, 834, 6324, 43, 6325, 228, 6326, 259, 6327, 175, 1310, 6328, 1476, 1269, 1328, 6329, 259, 6330, 175, 6331, 306, 6332, 1234, 306, 6333, 175, 6334, 306, 6335, 774, 228, 6336, 175, 6337, 175, 962, 6338, 175, 6339, 175, 6340, 306, 6341, 227, 6342, 175, 306, 6343, 175, 6344, 227, 6345, 306, 6346, 306, 175, 6347, 227, 6348, 175, 306, 6349, 1234, 6350, 1476, 962, 6351, 175, 6352, 1234, 175, 6353, 1356, 6354, 592, 954, 592, 6355, 259, 6356, 476, 259, 6357, 306, 6358, 960, 6359, 6360, 259, 476, 6361, 259, 259, 6362, 306, 259, 227, 6363, 175, 1355, 175, 6364, 6365, 954, 6366, 259, 1509, 431, 6367, 476, 6368, 175, 259, 6369, 1234, 6370, 306, 6371, 175, 6372, 175, 6373, 175, 6374, 1310, 1112, 6375, 7, 2057, 6376, 6377, 476, 6378, 175, 6379, 592, 6380, 306, 6381, 1355, 259, 6382, 6383, 259, 6384, 7, 427, 643, 18, 388, 8, 806, 311, 2, 198, 3850, 509, 354, 34, 354], [4324, 138], [25, 224, 11, 10200, 10201, 137, 13, 125, 20, 13, 25, 10202], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 2754, 22, 4, 5, 19, 12, 5, 2754, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 397, 50, 101, 310, 6, 6029, 45, 483, 39, 35, 100, 15, 52, 510, 6385, 6386, 1023, 120, 24, 358, 616, 1335], [1351, 362, 6, 8, 327, 4, 458, 474, 1227, 605, 40, 40, 40, 40, 40, 1351, 362, 6, 8, 327], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 2754, 22, 4, 5, 19, 12, 5, 2754, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [268, 121, 36, 2752, 63, 2122, 67, 9, 197, 63, 10203, 268, 121, 2752, 63, 2122, 67, 9, 197, 63, 4670, 1, 1, 587, 59], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 551, 209, 3851, 315, 22, 4, 5, 19, 12, 5, 551, 209, 3851, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 25, 13, 125, 20, 4354, 13, 25, 13, 125, 20, 4354], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [32, 18, 3852, 6, 808, 32, 18, 3852, 6, 808], [235, 108, 453, 235, 108, 453], [235, 108, 453, 24, 794, 235, 108, 453, 24, 794], [2729, 3, 1704, 30, 480, 1032, 6, 970, 230, 10, 104, 956, 599, 21, 6, 3853, 66, 3, 522, 14, 1040, 3, 73, 235, 86, 1, 1, 10204, 1284, 604], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [97, 436, 82, 20, 2, 52, 51, 250, 436, 82, 20, 2, 52, 38, 123, 3, 71, 37, 6, 8, 267, 30, 24, 58, 1, 1262, 356, 534, 122, 30, 76, 24, 67, 68, 335, 2, 436, 273, 118, 22, 14, 386], [8, 84, 2, 436, 440, 4, 82, 20, 8, 84, 2, 436, 440, 4, 82, 20, 129], [40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 773, 6, 272, 198, 375, 198, 178], [9, 155, 1967, 10205, 10206, 49, 1414, 1415, 291, 292, 343, 1429, 9, 155, 1967, 720, 313, 55, 10207, 33, 155, 470, 2566, 134, 257, 133, 9, 1967, 1019, 9, 728, 433, 39, 110, 121, 62, 448, 99, 295, 80, 781, 35, 11, 104, 957, 30, 3, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [87, 8, 45, 56, 10208, 182, 213, 130, 155, 204, 117, 107, 214, 146, 87, 8, 45], [83, 10209, 4, 5, 19, 42, 6387, 83, 10210, 4, 5, 19, 42, 6387, 1, 8, 545, 329, 250, 2, 4619], [40, 1970, 198, 10, 40, 6, 62, 2191, 40, 1970, 198, 10, 40, 6, 62, 2191], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [160, 127, 238, 297, 78, 75, 4, 361, 8, 84, 2, 743, 160, 359, 160, 127, 238, 297, 78, 75, 4, 361, 8, 84, 2, 743, 160, 359], [37, 71, 514, 1194, 734, 743, 55, 329, 1194, 734, 743, 37, 71, 1180, 7, 1194, 734, 8, 118, 727, 275, 50, 4, 2179, 3, 31, 14, 106, 8, 176, 23, 57, 2050, 21, 6, 2860, 1099, 2927, 3775, 3285, 3776, 3777, 23, 446, 1161, 143, 3778, 481, 6, 679, 201, 11, 3, 3286, 199, 18, 3, 568, 2, 1739, 21, 6, 2071, 7, 1048, 136, 44, 6, 2928, 1025, 7, 1513, 36, 1225, 143, 3246, 2408, 3779, 572, 2476, 18, 23, 446, 66, 612, 165, 467, 3, 679, 1295, 6, 1139, 1454, 68, 104, 1211, 18, 23, 446, 6, 4, 37, 14, 1026, 3, 689, 7, 3780, 3, 1050, 446, 662], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [461, 176, 77, 55, 14, 622, 3, 167, 554, 96, 47, 42, 8, 164, 461, 1370, 14, 106, 3, 807, 2820, 35, 10211, 730, 24, 144], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [34, 70, 10, 258, 34, 70, 10, 258], [13, 25, 10, 162, 20, 7, 337, 13, 25, 10, 162, 20, 7, 337], [27, 2, 118, 3, 88, 206, 4, 10, 333, 27, 2, 118, 3, 88, 206, 4, 10, 333], [13, 25, 2, 46, 2, 128, 126, 7, 114, 4671, 13, 25, 2, 46, 2, 128, 126, 7, 114, 4671], [28, 1007, 2, 528, 140, 667, 30, 911, 36, 128, 126, 28, 1007, 2, 528, 140, 667, 30, 911, 36, 128, 126, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 528, 3, 140, 10, 3, 437, 52, 1, 31, 321], [3, 391, 186, 2188, 42, 8, 323, 10, 3, 1299, 1573, 7, 3, 629, 207, 6, 236, 98, 2, 598, 483, 2546, 184, 246, 43, 716, 15, 6, 323, 186, 341, 18, 540, 1, 666, 63, 670, 30, 569, 483, 2546, 731, 3, 186, 341, 264, 43, 67, 21, 6, 1, 666, 63, 670, 30, 569, 483, 2546, 731, 3, 186, 341, 264, 43, 67, 21, 6], [86, 31, 38, 28, 44, 5698, 44, 390, 54, 2, 38, 408, 174, 1548, 10212, 23, 2720, 408, 86, 6, 4, 517, 247, 3854, 2, 118, 21, 6388, 66, 137, 10213, 10214, 67, 511, 408, 86, 855, 500, 408, 1393, 6, 7, 3, 1381, 196, 6, 259, 2035], [15, 95, 4, 39, 35, 14, 132, 33, 15, 33, 13, 63, 8, 45, 169, 274, 21, 6389, 6390, 1276, 724, 200, 2382], [27, 2, 95, 4, 2, 15, 27, 2, 95, 4, 2, 15], [37, 3808, 3809, 4294, 28, 6391, 37, 1090, 3808, 3809, 1321, 603], [10215, 119, 2, 527, 55, 1, 1, 6, 151, 986, 2, 647, 23, 136, 36, 33, 527, 167], [121, 36, 1205, 1246, 42, 8, 6392, 121, 36, 1205, 1246, 42, 8, 6392, 1, 114, 167, 554, 1, 1, 207, 47, 42, 275, 2, 199, 7, 322, 161, 117, 1287, 7, 1464, 462, 131, 158, 88, 47, 1563, 67, 51, 47, 106, 23, 458, 420, 3, 2380, 131, 982, 1190, 42, 64, 2, 166, 47, 97, 322, 1096, 183, 3, 2127, 18, 3, 167, 7, 3, 6393, 18, 143, 10216, 1019, 6, 343, 1502, 10217, 1, 23, 6, 1175, 10, 3, 1464, 462, 1968, 183, 3, 1287, 1968, 449], [148, 167, 123, 208, 21, 101, 49, 6394, 123, 4, 33, 148, 167, 151, 6, 10218, 470, 10219, 42, 770, 10, 167, 36, 310, 622, 96, 10220, 1256, 183, 63, 843, 23, 123, 67, 21, 63, 8, 2211, 67, 36, 310, 558, 1372, 10, 167, 308, 366, 158, 21, 10221, 10222, 220, 82], [522, 29, 54, 3, 718, 29, 11, 28, 6395, 6396, 2, 211, 3, 1706, 140], [3, 238, 3855, 247, 1529, 2, 6397, 6398, 6399, 10, 10223, 601, 75, 3, 238, 3855, 247, 1529, 2, 6397, 6398, 6399, 10, 24, 862, 1632, 24, 144, 6, 601, 75, 3167], [7, 2316, 8, 4672, 4673, 4674, 124, 291, 292, 2971, 6400, 6401, 4419, 10224, 10225, 10226, 5128, 2602, 243, 7, 2316, 8, 4672, 14, 622, 96, 181, 184, 10227, 44, 2316, 89, 8, 4672, 4, 3, 225, 418, 9, 3682, 7, 225, 20, 9, 3682, 330, 2309, 2307, 34, 372, 593, 11, 241, 165, 225, 418, 47, 42, 770, 1379, 1108, 210, 1352, 7, 102, 35, 2, 1088, 44, 23, 103, 18, 37, 6, 8, 1676], [39, 35, 14, 114, 3, 553, 32, 18, 6402, 180, 1061, 3, 1942, 37, 71, 51, 250, 2, 100, 553, 171, 208, 83, 1, 1, 39, 35, 14, 114, 3, 553, 32, 18, 6403, 6404, 180, 1061, 3, 1942, 37, 71, 51, 250, 2, 100, 553, 171], [197, 263, 31, 173, 8, 164, 2804, 197, 263, 31, 173, 8, 164, 2804, 1, 1105, 77, 7, 250, 637, 4, 251, 9, 465, 1, 425, 68, 165, 28, 42, 84, 2, 500, 9, 210, 30, 165, 195], [74, 8, 303, 56, 10228, 10229, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 29, 958, 4, 3, 90, 113, 10230, 265, 54, 2, 211, 407, 67, 276, 89, 8, 583, 80, 29, 2, 40, 1493, 330, 210, 4, 3, 887, 8, 614, 68, 1183, 274, 51, 521, 10231], [119, 249, 3832, 36, 113, 1877, 851, 111, 101, 1, 1, 47, 54, 3, 627, 442, 96, 755, 43, 1312, 11, 3, 73, 3832, 2154, 4, 3, 113, 1877, 1, 1, 628, 119, 66, 1, 628, 119, 66, 1, 628, 119, 66, 1, 628, 119, 66, 1, 628, 119, 66], [27, 2, 118, 395, 10, 87, 381, 27, 2, 118, 395, 10, 87, 381], [1125, 61, 504, 1042, 415, 317, 1125, 61, 504, 1042, 415, 317], [1462, 162, 777, 111, 3546, 1, 1, 14, 1462, 3, 163, 162, 777, 30, 1944, 3574, 1, 162, 1, 162], [324, 171, 37, 120, 219, 898, 55, 10232, 10233, 219, 898, 2, 766, 324, 440, 11, 4675, 4676, 197, 101, 6, 391, 30, 4675, 4676, 260, 2, 10234, 3, 324, 943, 355, 219, 399, 96, 6, 3, 37, 180, 6, 164], [27, 2, 46, 2, 309, 51, 250, 2, 46, 2, 309, 28, 1061, 3, 177, 37, 1, 1, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 1, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 1, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 1, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 1, 202, 675, 14, 436, 34, 2, 3, 188, 295, 1, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670], [211, 3738, 3739, 1151, 211, 3738, 3739, 1151, 1, 1, 140, 178, 12, 254, 4, 3, 2510, 3738, 3739, 1151, 10235], [307, 102, 2, 421, 104, 1595, 839, 309, 1670, 45, 2348, 10236, 10237, 3076, 55, 1, 1, 14, 386, 2656, 181, 6, 23, 568, 273, 30, 24], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [8, 84, 2, 10238, 2, 128, 126, 137, 57, 196, 8, 84, 2, 46, 2, 128, 126, 137, 57, 196, 1, 521, 609, 4, 1393, 10239, 4677, 7, 1098, 28, 2, 46, 169, 241, 116], [598, 2, 350, 8, 1198, 4, 15, 4678, 124, 4679, 4680, 4678, 291, 292, 6405, 6406, 1145, 243, 598, 2, 350, 8, 1198, 4, 15, 720, 313, 21, 598, 2, 32, 63, 350, 4, 88, 272, 2616, 1311, 7, 6, 273, 8, 1198, 4, 1374, 26, 83, 275, 1190, 42, 402, 14, 386, 424, 23, 32, 65, 8, 2197, 2, 26, 23, 32, 6, 524, 11, 256, 6407, 3805, 3806, 1769, 4679, 4680, 49, 4678, 6405, 6406, 598, 2, 350, 8, 1198, 4, 15, 720, 313, 55, 117, 916, 101, 47, 38, 350, 73, 598, 2, 196, 11, 3, 1465, 2, 426, 3, 32, 6, 236, 98, 546, 7, 1198, 4, 88, 67, 169, 532, 655, 21, 6, 273, 8, 1198, 4, 15, 185, 35, 14, 50, 135], [102, 211, 18, 1197, 2487, 140, 102, 211, 18, 1197, 2487, 140, 11, 145, 7, 1665, 18, 1290, 481, 1108, 53, 1922, 7, 1475], [548, 11, 174, 374, 29, 28, 77, 18, 573, 29, 2, 374, 55, 1, 1, 745, 3, 1174, 780, 101, 47, 42, 1085, 11, 241, 195, 4155, 4, 164, 3, 722, 133, 2, 191, 204, 374, 1, 1, 35, 99, 384, 1731, 18, 1163, 4, 323, 85, 3, 37, 2272, 6, 7, 1828, 11, 35, 1166, 1480, 36, 35, 1, 1, 28, 6128, 6129, 190, 271, 1, 1, 377, 1, 236, 18, 2512, 47, 42, 137, 1, 37, 95, 1, 7, 464, 96, 1, 1, 280, 18, 3, 348, 65, 141, 402, 294, 437, 21, 1, 1, 1, 135], [69, 7, 117, 1685, 4, 437, 1714, 302, 2979, 7, 2979, 50, 564, 1, 1, 4, 839, 3, 591, 18, 713, 1685, 4, 2979, 6, 661, 36, 3, 2331, 1685, 4, 1, 1253, 713, 591, 18, 1685, 6, 2144, 4, 2979, 1, 1, 426, 3, 179, 2304, 4, 839, 1253, 713, 591, 18, 1685, 1242, 1, 7, 3, 591, 18, 713, 1685, 1471, 748, 2979, 7, 1, 1, 85, 6, 3, 1206], [15, 29, 31, 10240, 243, 236, 11, 26, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 10241, 482, 252, 3, 28, 219, 62, 63, 45, 30, 896, 3, 31, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [519, 6, 8, 45, 519, 6, 8, 45], [15, 26, 32, 64, 15, 26, 32, 64], [54, 29, 2, 652, 641, 297, 1524, 110, 526, 38, 3, 29, 2, 70, 134, 1672, 4, 652, 641, 297, 526, 38, 29, 2, 3, 52, 681, 4, 652, 641, 297, 21, 1100, 265, 49, 346, 241, 627], [1140, 31, 1788, 6408, 31, 1140, 31, 1788, 6408, 31], [27, 2, 211, 82, 20, 27, 2, 211, 82, 20], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [6409, 524, 136, 393, 224, 6409, 524, 136, 393, 224], [27, 2, 515, 82, 20, 56, 1456, 10242, 182, 213, 130, 155, 204, 117, 107, 214, 146, 82, 20, 65, 22, 2, 463, 37, 95, 178, 67, 454, 2056, 2, 10243, 581], [499, 32, 499, 32], [4529, 393, 13, 120, 6, 275, 4529, 393, 13, 120, 6, 275], [27, 2, 122, 2, 519, 27, 2, 122, 2, 519], [4420, 4421, 6, 8, 84, 2, 206, 3803, 188, 531, 2815, 2, 283, 1246, 51, 28, 2924, 3, 693, 3803, 2, 72, 1464, 462, 7, 10244, 504, 88, 5115, 3, 37, 44, 180, 89, 8, 38, 10245, 2, 1752, 23, 354, 95, 173, 7, 464, 163, 1, 3196], [211, 6410, 2980, 2981, 211, 6410, 2980, 2981], [27, 2, 122, 2, 340, 27, 2, 122, 2, 340], [13, 119, 9, 41, 274, 33, 13, 23, 334, 172, 97, 100, 41, 1, 23, 942, 372, 116, 183, 21, 63, 88, 31, 44, 1147, 51, 13, 6, 274, 1, 1, 313, 720, 1, 1, 1, 1, 10246, 10247, 1, 220, 685, 1847, 1, 1614, 3767], [6411, 547, 548, 206, 4, 6411, 547, 548, 206, 4], [148, 831, 219, 2, 1312, 510, 200, 1018, 6412, 33, 148, 831, 219, 2, 43, 1312, 510, 831, 81, 6, 343, 2632, 148, 6, 10248, 489, 51, 647, 21, 36, 1375, 859, 1, 200, 1018, 6412, 1, 148, 416, 382, 877, 227], [9, 2262, 11, 2057, 1358, 2169, 151, 38, 141, 9, 1050, 287, 350, 11, 2057, 21, 6, 2741, 160, 6, 10, 2204, 2169, 11, 261, 287], [3, 58, 133, 6, 8, 45, 10, 3, 4681, 3856, 348, 55, 1, 1, 3, 58, 133, 6, 8, 45, 10, 3, 4681, 3856, 348, 1, 39, 35, 14, 509, 175, 366, 1, 1, 781, 35, 1, 1, 1511, 1, 2391], [27, 2, 211, 82, 418, 27, 2, 211, 82, 418, 1346], [203, 34, 70, 203, 34, 70], [87, 395, 31, 165, 568, 27, 927, 33, 432, 20, 10, 87, 121], [198, 1595, 4, 1802, 254, 208, 491, 1823, 1, 1, 3, 198, 178, 4, 1802, 254, 6, 201, 976, 14, 269, 256, 198, 4, 3, 254, 12, 3, 1131], [58, 94, 361, 361, 76, 60, 6, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [79, 13, 25, 79, 13, 25], [54, 279, 140, 2, 43, 430, 10, 4415, 6413, 6414, 307, 1378, 97, 509, 497, 54, 279, 140, 2, 43, 430, 10, 4415, 6413, 6414, 14, 129, 3212, 192, 87, 11, 194, 400, 6415, 6416, 86], [121, 2, 114, 68, 2742, 2743, 32, 6, 808, 121, 2, 114, 68, 2742, 2743, 32, 6, 808], [243, 4527, 3782, 437, 111, 39, 47, 355, 410, 614, 18, 261, 10249, 14, 14, 39, 35, 778, 68, 23, 117, 65, 860, 2675, 53, 180, 6, 2769, 393, 161, 200, 7, 466, 2, 283, 181, 7, 957, 1998, 2, 911, 14, 355, 586, 80, 4, 30, 104, 1119, 4682, 4683, 149, 120, 4684, 1222, 73, 3857, 3858, 771, 1536, 10250, 10251, 181, 49, 10252, 10253, 4682, 4683, 10254, 10255, 243, 4527, 3782, 437, 111, 187, 102, 23, 389, 14, 185, 35, 1088, 44, 104, 181, 718, 10256, 4, 3, 2889, 180, 3506, 185, 398, 3, 96, 23, 71, 63, 350, 456, 66, 181, 186, 140, 71, 44, 35, 331, 185, 8, 43, 3050, 2, 197, 62, 316, 18, 558, 1453, 23, 6, 2211, 37, 3, 177, 196, 2410, 22, 293, 24, 144, 181, 2428, 41, 144, 1979, 37, 36, 194, 181, 78, 169, 10257, 200, 1321, 217, 293, 230, 137, 117, 996, 302, 53], [6417, 206, 4, 55, 1, 1, 199, 130, 235, 86, 7, 4, 3, 41, 11, 3, 235, 42, 9, 1744, 178, 1, 1, 39, 47, 199, 6417, 206, 4, 1, 1, 151, 6, 72, 297, 11, 21, 7, 72, 41, 206, 4, 67, 21, 8, 937, 1, 1, 135], [110, 39, 9, 345, 91, 33, 914, 324, 440, 4, 15, 482, 840, 110, 39, 9, 345, 91, 33, 914, 324, 440, 4, 15, 482, 840, 3, 71, 2673, 11, 89, 8, 1196, 11, 3336, 9, 1, 664], [47, 42, 8, 164, 446, 4, 2, 692, 20, 52, 36, 3, 177, 3337, 102, 35, 2, 114, 10, 305, 47, 42, 8, 164, 446, 4, 2, 692, 20, 52, 36, 3, 177, 3337, 102, 35, 2, 114, 10, 305], [1970, 74, 47, 7, 47, 6418, 1970, 74, 47, 7, 47, 6418], [32, 18, 3852, 6, 808, 55, 612, 65, 808, 3, 226, 32, 18, 2742, 2743, 3852, 540, 1311, 185, 35, 14, 1540, 21, 7, 1667, 166, 424, 21, 63, 808, 65, 274, 3, 271, 36, 2226, 2, 190, 67, 180, 6, 273, 72, 223, 2250, 53, 3, 120, 18, 2742, 2743, 62, 10258, 53, 3, 988, 162, 14, 778, 44, 6, 273, 45, 11, 24], [193, 30, 41, 6419, 3859, 4685, 193, 30, 41, 6419, 3859, 4685], [3860, 3861, 181, 767, 219, 2, 43, 495, 10259, 276, 205, 242, 7, 747, 14, 766, 3, 812, 18, 3860, 3861, 28, 4, 177, 3049, 1, 205, 242, 1, 10260, 1, 5884, 1, 409], [220, 466, 116, 165, 58, 1123, 134, 2015, 161, 1033, 38, 825, 34, 393, 3, 179, 31, 44, 6420, 149, 676, 7, 10261, 149, 676, 38, 1, 1, 34, 203, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 49, 37, 97, 10262, 28, 1, 6421, 2435, 537, 2080, 1, 6421, 133, 6, 8, 178, 133, 59, 40, 24, 24, 144, 1, 22, 2, 189, 6422, 528, 4392, 6422, 993, 1, 5, 5, 22, 4, 5, 19, 12], [58, 29, 11, 10263, 10264, 11, 1046, 58, 254, 6, 275, 218, 2160, 749, 5426, 29, 633, 7, 721, 28, 59, 10265], [5, 5, 22, 4, 5, 19, 12, 804, 1984, 24, 24, 144, 116, 49, 1, 2220, 639, 2408, 441, 71, 2220, 633, 37, 1, 52, 37, 133, 25, 66, 2427, 1, 3257, 1, 1, 1, 5, 5, 22, 4, 5, 19, 12], [58, 94, 90, 3475, 10266, 48, 531, 75, 112, 12, 49, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [193, 30, 1432, 3862, 3863, 193, 30, 1432, 3862, 3863], [458, 195, 4, 161, 190, 271, 1256, 190, 42, 2769, 18, 466, 116, 210, 4, 15, 47, 42, 10267, 278, 466, 420, 4, 161, 271, 4, 15, 1290, 999, 1232, 1232, 1232, 1232, 1221, 449, 49, 10268, 10, 78, 10269, 7, 2049, 6, 837, 67, 1515, 10270, 53, 63, 10, 78, 40, 5209, 183, 210, 38, 4327, 18, 12, 975, 605, 30, 210, 40, 7, 14, 114, 58, 62, 133, 7, 386], [15, 2982, 3773, 359, 4, 4686, 509, 1502, 454, 836, 14, 114, 3, 15, 466, 116, 1892, 77, 18, 2982, 1428, 1502, 454, 836, 6423], [15, 894, 111, 47, 243, 6038, 343, 278, 894, 30, 15, 12, 3, 2479, 1570, 1952, 6213, 120, 82, 1807], [15, 6, 278, 4, 443, 1499, 1689, 1455, 2074, 190, 15, 6, 278, 1, 155, 6, 327, 494, 1, 165, 529, 41, 449, 42, 327, 494, 1, 458, 195, 42, 952], [148, 8, 199, 395, 208, 21, 101, 1, 1, 33, 148, 39, 199, 395, 173, 7, 8, 726, 1, 1, 135], [15, 6, 278, 11, 532, 195, 12, 1689, 174, 15, 6, 278, 11, 532, 195, 12, 1689, 174, 1, 8, 83, 195, 1447], [58, 193, 443, 529, 42, 327, 278, 288, 187, 35, 1264, 151, 42, 58, 193, 83, 52, 42, 343, 2153, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 9, 1, 1, 42, 316, 467, 197, 999, 1447, 16, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 983, 78, 168, 20, 78, 449, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 16, 458, 1033, 4, 113, 1, 1, 85, 165, 529, 42, 327, 278, 168, 20, 15, 176, 610, 189, 186, 1001, 168, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [97, 10271, 41, 4687, 2, 88, 208, 21, 50, 101, 1, 1, 111, 1, 1, 97, 3338, 4687, 1664, 1822, 1096, 36, 41, 88, 1018, 265, 163, 1630, 96, 1, 1, 14, 50, 80, 77], [2943, 2387, 131, 346, 4, 3, 225, 20, 225, 20, 63, 230, 4, 3, 52, 11, 2943, 131, 428, 346, 4, 438, 7, 169, 648, 548, 4349, 428, 178, 4, 249, 11, 600, 2562, 1023, 225, 20, 6, 172, 402, 67, 185, 35, 114, 85, 942, 4, 127, 2, 2639, 6167, 210, 63, 349, 546, 670, 4, 249, 143, 1477, 346, 63, 151, 15, 439, 44, 3048, 2, 23, 31], [1566, 55, 10272, 1282, 526, 253, 316, 467, 23, 49, 2595, 23, 2, 50, 101, 68, 284, 185, 50, 35, 582], [76, 29, 31, 55, 101, 10273, 10274, 10, 954, 97, 122, 2, 76, 180, 39, 29, 2, 67, 746, 180, 1639, 2, 122, 76, 3056, 835, 96, 2856, 429, 98, 1015, 7, 659, 1708, 1630, 530, 10275, 425, 108, 120, 67, 185, 8, 326, 165, 817, 4, 283, 115, 165, 58, 6216, 38, 1297, 242, 830, 14, 583, 166, 104, 1758, 6424, 6425, 841, 10276, 10277], [13, 230, 365, 334, 14, 39, 35, 1975, 28, 4688, 47, 248, 137, 13, 125, 20, 59, 13, 120, 67, 21, 89, 8, 479, 2, 134, 390, 97, 118, 158, 3, 52, 12, 83, 450], [28, 4329, 4330, 97, 199, 3, 373, 171, 55, 101, 1, 1, 28, 4329, 4330, 6, 250, 2, 199, 3, 373, 171, 1578, 4, 3, 1464, 462, 1464, 462, 171, 184, 6, 347, 146, 18, 3, 1464, 462, 67, 21, 89, 8, 955, 143, 131, 11, 911, 355, 339, 167, 185, 8, 326, 77, 424, 21, 6, 1361, 1, 185, 35, 50, 80, 288, 2, 6426, 4, 23, 1314, 1, 1, 3, 464, 6, 1271, 66, 80, 8, 3, 28, 355, 2, 10278, 184, 1578, 49, 6427, 393, 106, 8, 38, 464, 36, 3, 28, 989, 67, 21, 6, 8, 10279, 11, 911, 10, 10280, 18, 283, 1246], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 2503, 37, 995, 4689, 10281, 10282, 900, 1, 1, 5, 5, 22, 4, 5, 19, 12], [8, 84, 2, 29, 3813, 1614, 101, 1, 1, 49, 8, 84, 29, 2, 3813, 1614, 11, 184, 47, 384, 4426, 393, 1833, 1560, 1, 36, 887, 197, 593, 693, 779, 667, 57, 767, 6, 8, 1628, 11, 80, 6217, 165, 1066, 42, 84, 2, 29, 3, 179, 1, 207, 308, 102, 35, 2, 509, 21, 2116, 313, 305, 7, 778, 251], [1212, 136, 805, 51, 2607, 1971, 6, 1157, 7, 443, 470, 186, 39, 43, 1320, 4, 1228, 1212, 138, 598, 819, 136, 6, 805, 51, 2607, 968, 1971, 6, 1157, 7, 443, 470, 186, 39, 43, 1320, 4, 1228, 1212, 10283], [279, 140, 3585, 75, 51, 2676, 3, 142, 576, 3, 79, 70, 10284, 185, 8, 1462, 3, 70, 1, 207, 279, 140, 755, 43, 833, 1, 91, 261, 4435, 1, 1, 83, 1, 47, 38, 141, 3237, 3, 70, 184, 6, 1278, 3, 31, 1, 51, 638, 104, 142, 1796, 2241, 36, 3, 1937, 30, 1094, 1, 1, 4, 732, 21, 942, 3227, 38, 21, 2, 647, 21, 1, 1, 10285, 10286, 1, 2668, 1388, 3098, 4446, 1348], [58, 94, 90, 48, 531, 75, 112, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [6428, 6429, 123, 55, 1, 1, 274, 33, 13, 576, 1, 39, 100, 6429, 7, 95, 4, 67, 2073, 38, 274, 1, 33, 3295, 2280, 1, 21, 2398, 2, 1019, 117, 67, 117, 412, 89, 8, 134, 1, 405, 3295, 21, 530, 2, 121, 1730, 1, 1, 14, 121, 510, 207, 49, 84, 2, 134, 310, 1, 1, 1, 6428, 2041, 1, 1, 1, 1, 1, 1, 135], [2959, 3864, 2251, 2852, 2446, 10, 1159, 7, 2446, 10, 1159, 91, 6430, 11, 316, 957, 2251, 2852, 2251, 1042, 10, 238, 1011, 2356, 2, 24, 168, 2958, 2959, 856, 618, 10, 24, 168, 2958, 6431, 1337, 1117, 277, 24, 144, 6, 2524, 114, 2251, 782, 10, 600, 591, 817, 18, 3, 229, 7, 410, 614, 3, 2251, 1042, 6432, 1, 1, 2251, 2852, 2251, 1042, 10, 238, 1011, 133, 2, 728, 10, 24, 168, 2958, 2959, 856, 618, 24, 144, 6, 315, 114, 2251, 782, 10, 600, 591, 817, 18, 3, 229, 7, 410, 614, 3, 2251, 1042, 6432], [307, 249, 472, 6433, 3320, 10287, 208, 21, 101, 1, 1, 185, 35, 14, 114, 7, 386, 36, 433, 570, 10, 3, 163, 731, 225, 20, 6, 53, 332, 1238, 570, 21, 6, 201, 1457, 332, 3569, 67, 21, 6, 10288, 10, 731, 367, 10289, 1457, 23, 1314, 10290, 117, 2, 1418, 313, 570, 18, 1922, 4627, 1, 1, 135], [27, 2, 122, 76, 12, 490, 55, 24, 50, 1, 1, 185, 35, 14, 114, 33, 148, 609, 411, 49, 164, 3744, 24, 76, 133, 12, 490], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [15, 64, 55, 1, 1, 33, 15, 6, 64, 1, 14, 132, 1, 304, 13, 125, 20, 13, 120, 2, 132, 33, 32, 1, 39, 199, 76, 67, 39, 8, 95, 4, 15], [8, 84, 2, 122, 2, 3, 15, 8, 84, 2, 122, 2, 3, 15], [5, 5, 22, 4, 5, 19, 12, 2503, 133, 37, 2, 52, 40, 1, 1, 5, 5, 22, 4, 5, 19, 12], [27, 2, 436, 440, 4, 82, 20, 27, 2, 436, 440, 4, 82, 20, 14, 622, 2, 3, 1210], [41, 65, 706, 45, 55, 1, 1, 54, 104, 50, 510, 1, 41, 65, 706, 45, 4, 115], [1031, 100, 5628, 36, 383, 135], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [382, 87, 395, 8, 45, 382, 87, 395, 8, 45, 1, 267, 2, 3, 28, 52, 137, 487, 1, 399, 3, 1749, 10, 3, 28, 52, 1, 991, 3, 52, 1, 87, 395, 6, 172, 45, 205, 242, 121, 30, 28, 1, 99, 121, 3, 28, 251, 1059, 7, 114, 10, 3, 31], [5, 654, 374, 26, 847, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 847, 784, 22, 4, 5, 19, 12], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [28, 27, 2, 46, 2, 3, 115, 28, 27, 2, 46, 2, 3, 115, 1, 425, 226, 7, 10291, 28, 32, 6, 8, 64, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [417, 20, 46, 31, 417, 20, 46, 31], [85, 6, 3, 128, 126, 229, 56, 10292, 10293, 182, 213, 130, 155, 204, 117, 107, 214, 146, 85, 6, 3, 128, 126, 229], [13, 25, 102, 13, 25, 102], [189, 5454, 536, 10294, 11, 249, 127, 3057, 3126, 111, 21, 1, 39, 35, 14, 50, 114, 424, 526, 91, 143, 37, 10, 161, 943], [28, 6, 250, 2, 211, 3, 140, 10, 117, 115, 28, 6, 250, 2, 211, 3, 140, 10, 117, 115, 267, 2, 3, 28, 52, 137, 487, 28, 84, 2, 46, 2, 3, 417, 20, 7, 465, 2, 82, 20, 681, 2, 211, 3, 140, 27, 2, 211, 3, 140, 10, 3, 28, 52, 117, 57, 59, 306], [13, 25, 13, 25], [6434, 6435, 949, 403, 6434, 6435, 949, 403], [249, 51, 1924, 274, 10, 349, 82, 20, 6, 8, 6436, 68, 504, 544, 6, 1605, 51, 249, 6, 304, 2, 119, 3, 1924, 10, 1345, 1508, 1777, 10295, 44, 10296, 68, 3, 82, 20, 6, 860, 11, 3, 73, 1924, 23, 6, 45, 546, 68, 504, 6, 1605, 10, 3, 1536, 59, 1924, 167, 68, 504, 544, 6, 1605, 3, 1777, 6, 8, 45, 7, 2031, 82, 20, 1494, 42, 357, 1126, 10, 1345, 4317, 1, 1, 23, 6, 4076, 83, 195, 8, 355, 197, 1777, 219, 1524, 11, 504, 544], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [28, 1049, 2, 2381, 2, 241, 197, 4, 90, 7, 1098, 11, 3321, 129, 28, 1049, 2, 2381, 2, 241, 197, 4, 90, 7, 1098, 11, 3321, 129], [27, 2, 95, 4, 2, 87, 27, 2, 95, 4, 2, 87], [473, 11, 6437, 127, 249, 473, 11, 6437, 127, 249], [34, 70, 10, 258, 34, 70, 10, 258], [1031, 122, 2, 15, 76, 31, 1031, 122, 2, 15, 76, 31], [110, 49, 164, 23, 37, 51, 250, 2, 100, 374, 173, 39, 35, 50, 15, 333, 10297, 31], [3, 1445, 354, 11, 6438, 6439, 65, 402, 3, 1445, 354, 11, 6438, 6439, 65, 402], [15, 95, 4, 31, 15, 95, 4, 31], [90, 113, 61, 94, 1518, 1, 3, 61, 99, 43, 489, 2, 3, 2677, 90, 1358, 113, 10, 36, 599, 3, 10298, 264, 737, 3, 142, 719, 327, 2108, 651, 4, 194, 58, 10299, 99, 2165, 7, 878, 251, 10, 51, 3, 61, 10300], [486, 2, 132, 226, 32, 11, 28, 6440, 6441, 486, 2, 132, 226, 32, 11, 28, 6440, 6441], [382, 52, 343, 278, 2230, 278, 382, 52, 343, 278, 267, 2, 3, 28, 52, 137, 487, 2563, 3, 1301, 2027, 2036, 287, 399, 3, 874, 10, 3, 28, 399, 3, 52, 1749, 991, 3, 115, 635, 3, 28, 2, 335, 257, 7, 114, 28, 2921, 2230, 7, 558, 63, 45, 494, 31, 321, 306], [27, 2, 436, 324, 171, 27, 2, 436, 324, 171], [119, 6442, 4587, 119, 6442, 4587, 821, 91, 302, 163], [74, 10301, 59, 74, 280], [74, 407, 70, 74, 407, 70], [339, 121, 339, 121], [41, 8, 164, 267, 41, 8, 164, 267], [395, 8, 45, 407, 31, 395, 8, 45, 407, 31], [79, 2651, 707, 79, 2651, 707], [626, 69, 4, 461, 1551, 39, 35, 14, 106, 80, 5335, 7, 114, 3, 461, 1551, 173, 11, 461, 7, 114, 184, 69, 65, 141, 625, 1, 1, 23, 6, 411, 3, 461, 6, 625, 2, 69, 4, 15, 67, 3147, 429, 69, 91, 377, 11, 167, 1370], [914, 1864, 37, 914, 1864, 37], [58, 94, 596, 687, 48, 6, 531, 75, 12, 49, 105, 10, 9, 81, 60, 12, 3, 48, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [309, 31, 111, 1, 1, 273, 97, 29, 3, 10302, 1670, 91, 71, 96, 14, 391], [8, 84, 2, 2114, 5, 4, 24, 212, 4, 415, 28, 8, 84, 2, 2114, 5, 4, 24, 212, 4, 415, 28], [45, 36, 490, 133, 2, 76, 1061, 659, 110, 1372, 2, 118, 659, 36, 76, 7, 38, 2, 4619, 443, 420, 483], [25, 13, 28, 2667, 26, 25, 13, 28, 2667, 26], [3764, 46, 2401, 11, 73, 4500, 14, 189, 3764, 46, 2401, 11, 96, 73, 4500, 56, 6395, 6396, 28, 59, 10303, 56, 10304, 10305, 28, 59, 10306], [288, 2, 206, 1066, 2, 572, 1681, 288, 2, 206, 1066, 2, 572, 1681], [87, 210, 2136, 33, 6443, 1, 1, 38, 274, 13, 310, 151, 63, 9, 123, 71, 770, 77, 169, 3, 13, 119, 1319, 63, 2370, 7, 1612, 837, 13, 1254, 274, 1, 1, 172, 36, 241, 2478, 49, 8, 84, 2, 95, 4, 2, 87, 11, 191, 21, 6, 323, 80, 177, 1, 1, 14, 270, 80, 253, 85, 264, 106], [121, 36, 1205, 37, 9, 6444, 2, 452, 263, 44, 1738, 4, 159, 2552, 2261, 197, 263, 31, 37, 9, 6444, 2, 452, 263, 44, 1738, 4, 159, 2552, 2261], [243, 34, 9, 119, 2088, 7, 2089, 9, 1167, 3, 34], [34, 70, 10, 34, 9, 813, 475, 770, 4, 2, 3, 1103], [1533, 34, 9, 119, 2088, 7, 2089, 9, 55, 6445, 246, 35, 14, 735, 23, 34, 12, 23, 1127, 248, 2, 119, 3, 2088, 7, 2089, 9, 7, 21, 1067, 343, 613, 14, 10307, 3, 3240, 7], [119, 4, 309, 208, 83, 1, 1, 330, 119, 36, 24, 2, 24, 181, 649, 44, 23, 6, 172, 897, 193, 30, 161, 10308, 48, 1, 1, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15, 1, 1, 14, 410, 614, 44, 39, 29, 257], [41, 8, 1458, 41, 8, 1458], [27, 2, 436, 3, 116, 734, 111, 101, 1, 1, 49, 27, 2, 436, 3, 116, 734, 163, 6, 3, 464, 39, 35, 14, 50], [41, 8, 638, 14, 91, 96, 37, 33, 41, 6, 8, 638, 7, 21, 6, 1612, 33, 13, 6, 385, 62, 855, 122, 2, 78, 51, 100, 3, 41, 447, 49, 1098, 2, 322, 33, 871, 67, 169, 987, 207, 3, 78, 99, 8, 122, 49, 511, 137, 3, 422, 1192, 394, 18, 41, 10, 155, 204, 1, 1, 1, 1, 2352, 10309, 10310, 10311, 2035], [2748, 57, 2224, 365, 334, 54, 2, 43, 543, 2, 1731, 57, 2224, 207, 38, 29, 39, 35, 14, 525, 183, 10312, 10313, 6, 1288, 2, 43, 3, 1097, 18, 261, 57, 1584, 207, 180, 39, 206, 826, 2, 444, 51, 524, 6, 23, 285], [76, 403, 76, 403], [58, 94, 759, 759, 149, 1570, 6, 75, 10, 12, 49, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 12, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 95, 4, 2, 79, 27, 2, 95, 4, 2, 79], [122, 62, 818, 128, 126, 36, 115, 2, 128, 126, 294, 24, 459, 55, 21, 1712, 1, 1, 38, 304, 128, 126, 1071, 2, 3, 437, 142, 254, 246, 265, 2, 122, 33, 437, 128, 126, 2, 3, 128, 126, 3853, 294, 3, 174, 140, 10, 128, 126, 24, 459, 288, 106, 122, 3, 451, 1499, 1, 1, 135], [32, 64, 77, 32, 64, 77], [1429, 14, 3338, 2609, 55, 711, 921, 922, 55, 21, 50, 101, 14, 3338, 261, 451, 2609, 284, 755, 43, 5842, 12, 3, 1127, 3, 131, 89, 8, 10314, 781, 35, 4, 1596, 30, 450, 750, 10315, 10316, 2776, 162, 667, 368, 24, 667, 368, 879, 1363, 988, 1137, 1138, 1082, 1141], [25, 3, 13, 11, 6446, 6447, 10, 15, 3594, 15, 25, 3, 13, 11, 6446, 6447, 10, 15, 3594, 15], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [238, 1011, 2355, 2661, 6448, 262, 10, 24, 262, 1187, 1304, 1173, 1112, 1117, 277, 24, 144, 6, 75, 238, 1011, 2355, 2661, 6448, 262, 10, 24, 262, 1187, 1304, 1173, 1112, 1117, 277, 24, 144, 6, 75], [87, 2632, 994, 14, 100, 34, 11, 80, 38, 141, 10, 532, 87, 497, 828, 433, 3, 994, 63, 343, 2632, 261, 497, 428, 10317, 30, 361, 62, 358, 30, 2629, 4, 3, 166, 3, 395, 994, 63, 207, 2632, 44, 47, 185, 8, 1563, 669, 165, 2, 3, 852, 44, 3, 381, 63, 3116, 4213, 18, 116, 183, 3, 2192, 2, 10318, 1903, 62, 15, 167, 2900, 63, 4970, 53, 613, 428, 241, 18, 3, 2629, 18, 3, 381, 185, 8, 91, 3, 505, 257, 1693, 3, 964, 4213, 18, 161, 116, 1017, 2276, 854, 120, 188, 309, 7, 1600, 1671], [97, 95, 1186, 279, 140, 97, 95, 1186, 279, 140, 37, 71, 1472, 312, 22, 214], [148, 219, 2, 43, 3563, 6449, 6450, 49, 10319, 10320, 10321, 10322, 3169, 3170, 6451, 6452, 243, 21, 928, 111, 4558, 53, 1690, 14, 1149, 3, 148, 23, 219, 2, 43, 1118, 2, 3, 73, 3148, 10323, 10324, 38, 625, 203, 2, 104, 101, 11, 3, 179], [97, 122, 2, 41, 62, 122, 2, 480, 11, 87, 183, 38, 31, 30, 144, 206, 4, 11, 333, 963, 18, 179, 31, 44, 38, 330, 4, 3, 887, 8, 84, 2, 122, 2, 41, 183, 144, 206, 4, 6, 8, 5201, 178, 10, 333, 173, 38, 2, 10325, 21, 669, 116, 100, 3, 173], [10326, 349, 630, 656, 189, 186, 8, 1642, 1010, 233, 6021, 1182, 3476, 1065, 54, 2, 189, 186], [39, 95, 1186, 87, 274, 13, 576, 855, 2596, 310, 39, 95, 1186, 87, 274, 13, 576, 855, 2596, 310], [9, 218, 29, 101, 1, 6, 8, 45, 1, 1, 14, 90, 29, 11, 80], [74, 123, 31, 136, 2705, 2252, 251, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 1, 1, 1154, 665, 18, 3, 123, 2705, 2252, 251, 15, 65, 141, 833, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [10327, 3809, 10328, 28, 6391, 1, 1, 1, 1, 1, 1, 10329, 229], [21, 10330, 11, 87, 10331, 21, 190, 1, 1, 87, 1588, 42, 275, 11, 10332, 719, 72, 3, 1110, 719, 4690, 3, 4601, 1, 1641, 2250, 10333, 328, 2, 1430, 3, 73, 451, 1588, 1, 3117, 3118, 2291, 2, 465, 30, 197, 3709, 1745, 924, 1, 14, 114, 3, 3782, 2, 729, 2250, 2, 6453, 600, 6212], [28, 6454, 219, 2, 25, 408, 13, 55, 185, 35, 363, 50, 80, 7, 189, 73, 13, 11, 28, 59, 6454, 10334, 10335, 390, 230, 408, 142, 7, 172, 390, 219, 2, 29, 510, 14, 129, 80, 51, 35, 38, 588, 21], [123, 30, 88, 3048, 111, 51, 268, 1287, 248, 2, 3339, 21, 158, 72, 1464, 462, 66, 5869, 21, 51, 187, 44, 351, 72, 37, 91, 96, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [24, 383, 108, 453, 24, 383, 108, 453], [378, 27, 2, 118, 10, 3, 58, 378, 27, 2, 118, 10, 3, 58], [74, 10336, 10, 74, 78, 40, 6, 8, 722, 11, 325, 74, 2924, 2, 115, 494, 67, 51, 250, 2, 176, 2111, 1370, 3664, 7, 3674, 7, 44, 21, 51, 304, 10, 325, 115, 36, 78, 40, 21, 1370, 494, 1, 74, 6, 1915, 10337, 3033, 1, 1, 3546, 10338, 2034, 12, 23], [39, 8, 118, 15, 2, 31, 2090, 11, 473, 6455, 147, 2, 1202, 98, 12, 310, 536, 6, 178, 4, 15, 67, 4691, 8, 983, 14, 50, 2, 31, 2090, 11, 7, 2, 955, 2115, 1618, 2, 1618, 3307], [3, 6456, 314, 2983, 6457, 115, 99, 8, 122, 2, 3, 58, 2, 118, 1094, 3, 6456, 314, 2983, 6457, 115, 99, 8, 122, 2, 3, 58, 2, 118, 1094], [27, 2, 397, 2, 15, 27, 2, 397, 2, 15], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [25, 13, 28, 2667, 26, 26, 25, 13, 28, 2667, 26, 26], [1711, 791, 36, 4692, 4693, 331, 2091, 2, 10339, 10340, 1488, 791, 55, 110, 38, 517, 791, 30, 72, 2376, 727, 791, 10341, 14, 391, 21, 30, 450, 750, 4692, 4693, 160, 1907, 24, 3865, 879, 7, 616, 1793, 1848, 10342, 10343, 6458, 331, 66, 10344, 6458, 10345, 2019, 6459, 2738, 72, 10346, 10347, 4692, 4693, 10348, 10349, 1488, 1533, 15, 474, 791, 30, 661, 791, 107, 55, 10350, 110, 3866, 11, 3, 385, 10351, 791, 175, 532, 610, 428, 2283, 2912, 175, 1708, 116, 1300, 389, 3, 474, 465, 1798, 474, 107, 6, 820, 3, 197, 4, 3, 266, 722, 18, 3, 3700, 183, 44, 458, 18, 104, 2488, 610, 185, 10352, 10353, 43, 2912, 2, 492, 6460, 1282, 610, 428, 2912, 7, 241, 18, 444, 1821, 193, 175, 532, 10354, 18, 444, 1089, 2, 43, 36, 227, 47, 99, 736, 261, 53, 10355, 68, 10356, 30, 3, 135, 18, 161, 135], [8, 84, 2, 29, 57, 8, 84, 2, 29, 57, 1, 1, 4285, 4286, 6, 283, 120], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [76, 2134, 114, 11, 1029, 62, 24, 401, 329, 699, 36, 240, 58, 622, 464], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [52, 286, 18, 78, 40, 6, 315, 257, 55, 1, 1, 52, 286, 18, 78, 40, 6, 315, 257, 14, 114, 1, 47, 330, 3, 179, 31, 1162, 1311, 34, 203, 1, 21, 6, 3, 1889, 314, 78], [260, 20, 210, 30, 636, 149, 7, 359, 171, 9, 853, 36, 3741, 14, 189, 732, 85, 47, 54, 6, 2366, 2, 4694, 2, 4695, 636, 149, 7, 359, 171, 7, 2, 384, 3, 3340, 131, 332, 57, 924, 18, 3, 344, 1614, 1164, 10357, 18, 3, 5945, 1164, 18, 2317, 7, 3340, 342, 1079, 3341, 135], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [711, 1542, 1543, 10358, 9, 1416, 315, 29, 2, 3, 177, 168, 20, 6113, 1611, 36, 3867, 3868, 331, 2091, 2, 1485, 1486, 1542, 1543, 1488, 1542, 1543, 898, 255, 168, 20, 1670, 55, 711, 6461, 711, 1542, 1543, 556, 714, 916, 160, 1076, 1416, 315, 29, 2, 3, 177, 168, 20, 1670, 1363, 2798, 1137, 1138, 1082, 1141, 901, 174, 190, 1750, 6462, 674, 949, 674, 24, 879, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 2349, 36, 1225, 426, 1135, 2052, 572, 62, 1294, 18, 23, 446, 66, 1931, 448, 42, 8, 3, 679, 1453, 6, 1139, 6463, 68, 35, 38, 268, 23, 446, 66, 1932, 14, 1026, 3, 689, 7, 166, 3092, 633, 23, 71, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [220, 466, 116, 165, 58, 1123, 134, 2015, 329, 250, 2, 598, 462, 2, 90, 49, 8, 164, 995, 2194, 34, 3, 52, 6, 1360, 72, 3869, 3870, 836, 116, 2, 312, 3, 482, 7, 49, 164, 72, 37, 1736, 44, 3, 70, 63, 2006, 48, 271, 24, 90, 6464, 28, 59, 226, 10359, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 15, 26, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 1221, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 160, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 42, 165, 195, 697, 23, 8, 614, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078], [102, 11, 235, 57, 29, 208, 491, 1, 1, 163, 6, 3, 2154, 519, 1747, 1347, 2447, 30, 33, 120, 631, 1, 308, 747, 57, 29, 2, 33, 235, 1, 308, 129, 80, 11, 143, 136, 275, 4, 23, 3871, 1, 1, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2217, 365, 334, 1, 1, 51, 250, 2, 95, 10, 2, 15, 118, 23, 37, 96, 1, 14, 50, 1008, 53, 39, 8, 312, 117, 127], [142, 1061, 1556, 55, 1, 1, 33, 142, 6, 1556, 7, 3, 2808, 1687, 83, 3, 116, 207, 35, 39, 927, 21, 1, 1, 1, 342, 1079, 556, 714, 135], [1255, 2841, 1970, 950, 951, 1255, 2841, 1970, 950, 951], [317, 406, 55, 1, 1, 3, 317, 18, 10360, 841, 4, 3, 349, 432, 6, 1278, 193, 1, 39, 35, 14, 509, 175, 366, 12], [211, 2865, 1542, 1543, 211, 2865, 1542, 1543], [4492, 6465, 4, 492, 3872, 3873, 4492, 6465, 4, 492, 3872, 3873], [211, 2865, 3317, 3318, 211, 2865, 3317, 3318], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [88, 1574, 9, 21, 34, 275, 55, 1, 1, 14, 2151, 21, 34, 10, 1155, 18, 80, 11, 88, 1574, 9, 290, 37, 7, 21, 8, 2584, 2, 1374, 1, 1, 1, 30, 135], [46, 639, 15, 28, 4688, 365, 334, 101, 1, 1, 38, 123, 46, 158, 15, 14, 39, 35, 525, 1, 1, 450], [15, 82, 20, 14, 25, 33, 13, 4, 15, 82, 20, 10361, 4137, 1355, 10362, 10363, 24, 667, 368, 879, 1363, 2798, 1848, 1943, 1849, 1137, 1138, 1082, 1141], [10364, 15, 26, 32, 11, 6466, 179, 53, 44, 18, 10365, 111, 21, 101, 308, 14, 525, 2, 25, 26, 13, 11, 28, 6466, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [397, 792, 37, 365, 334, 1, 1, 14, 50, 532, 18, 166, 3, 596, 1846, 174, 4, 596, 1846, 97, 95, 158, 15, 47, 42, 83, 164, 95, 10, 792, 37, 21, 1100, 265, 3, 10366, 470, 6, 75, 21, 6, 8, 5625, 1518, 1, 1, 450], [691, 10367, 15, 397, 365, 334, 1, 1, 49, 8, 84, 2, 95, 4, 15, 308, 525, 1, 1, 450], [15, 52, 334, 14, 50, 10368, 39, 8, 602, 4, 2, 15, 187, 106, 2676, 10, 33, 142, 273, 8, 14, 14, 50, 166, 12, 24, 596, 1846], [15, 365, 334, 1, 1, 39, 35, 14, 525, 53, 97, 95, 158, 15, 384, 3, 177, 37], [243, 15, 365, 483, 1, 1, 1999, 35, 42, 613, 1, 14, 39, 35, 50, 1031, 602, 4, 2, 15, 583, 80, 3, 252], [12, 3, 2863, 12, 6467, 9, 610, 39, 43, 486, 98, 4, 3, 168, 20, 12, 3, 2863, 12, 6467, 9, 316, 610, 39, 43, 486, 98, 4, 3, 168, 20, 23, 733, 6, 275, 2, 4696, 359], [553, 37, 31, 329, 2269, 3, 188, 6468, 1899, 171, 4, 553], [5, 551, 577, 238, 865, 636, 22, 4, 5, 19, 12, 804, 2296, 254, 116, 124, 1, 108, 196, 8, 336, 1, 1, 1, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 551, 577, 238, 865, 636, 22, 4, 5, 19, 12], [32, 64, 4, 226, 32, 64, 4, 226], [544, 3, 3874, 112, 21, 6, 9, 345, 275, 102, 35, 2, 544, 3, 693, 3874, 112, 21, 6, 9, 345, 275], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 551, 40, 203, 22, 4, 5, 19, 12, 2024, 40, 315, 81, 116, 124, 1, 805, 133, 2, 10369, 2525, 40, 24, 24, 144, 1, 10, 293, 40, 24, 24, 144, 1, 2220, 2984, 440, 2220, 633, 37, 1, 52, 37, 133, 25, 66, 2427, 1, 1, 5, 551, 40, 203, 22, 4, 5, 19, 12], [27, 2, 463, 82, 20, 10, 33, 73, 530, 44, 21, 97, 122, 2, 155, 91, 693, 793], [76, 7, 76, 99, 8, 729, 29, 2, 15, 23, 6, 3, 1708, 116, 23, 593, 38, 330, 72, 31, 30, 76, 76, 63, 33, 10370, 67, 21, 6, 8, 45, 11, 80, 624, 23, 3221, 2789, 2790, 854, 1388, 17, 2501, 1614, 149], [82, 20, 86, 297, 14, 91, 163, 464, 18, 3, 82, 20, 297, 1, 1, 49, 9, 345, 84, 2, 114, 1552, 53, 3, 71, 27, 2, 122, 2, 1552, 78, 1, 1, 38, 248, 4235, 7, 5624, 67, 1093, 398, 3, 123, 1, 1, 6, 151, 1150, 31, 1, 1, 21, 65, 141, 265, 23, 11, 532, 1162], [39, 35, 14, 647, 4697, 6469, 36, 90, 3034, 3155, 53, 653, 4698, 4699, 124, 4345, 4346, 291, 292, 1570, 814, 243, 4545, 70, 121, 55, 50, 39, 35, 14, 647, 4697, 6469, 36, 90, 3034, 3155, 53, 653, 604, 4700, 4701, 4702, 2628, 120, 90, 3034, 10, 12, 49, 4345, 4346, 3342, 55, 14, 114, 23, 7, 91, 68, 4697, 964, 39, 43, 1157, 36, 3, 672], [112, 372, 299, 70, 38, 141, 27, 2, 176, 1096, 10, 3, 58, 958, 37, 71, 2398, 80, 68, 1999, 3, 74, 276, 2646, 80, 54, 2, 528, 407, 11, 21, 86, 107], [220, 466, 116, 165, 58, 1123, 134, 2015, 14, 269, 222, 4, 3, 1380, 96, 68, 443, 529, 42, 1447, 14, 199, 3, 1166, 34, 1380, 4, 3, 1249, 218, 1, 48, 271, 90, 1, 28, 59, 226, 10371, 1, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 15, 26, 1, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 1232, 1, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 127, 578, 1, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 1, 42, 165, 195, 697, 23, 151, 42, 194, 195, 1, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078], [41, 88, 37, 2351, 88, 62, 41, 99, 463, 38, 991, 3, 115, 420, 64, 98, 567, 420, 329, 1286, 30, 88, 46, 6117, 925, 1549, 925, 1549], [83, 1091, 1063, 11, 2678, 1442, 460, 18, 444, 187, 8, 3343, 83, 275, 1190, 272, 36, 15, 88, 2, 939, 2494, 32, 1091, 997, 272, 837, 3, 1091, 44, 997, 272, 2376, 997, 272, 294, 10372], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [174, 11, 4703, 4704, 429, 453, 275, 47, 524, 2, 3875, 3, 115, 18, 4703, 4704, 4705, 7, 172, 3, 174, 44, 1101, 30, 3, 24, 925, 36, 3344, 10373, 6, 323, 44, 453, 6, 275, 183, 21, 429, 44, 10374, 32, 6, 8, 2571, 2, 44, 174, 462, 390, 820, 330, 209, 174, 47, 355, 524, 2, 3875, 3, 115, 185, 35, 14, 114, 408, 32, 2, 398, 44], [647, 111, 21, 14, 50, 647, 6385, 6386, 10, 10375, 6470, 159], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [54, 2, 119, 13, 7, 118, 21, 2824, 10, 52, 54, 2, 119, 13, 7, 118, 21, 2824, 10, 52], [41, 8, 2409, 2, 100, 245, 4, 3, 1103, 41, 8, 2409, 2, 100, 245, 4, 3, 1103, 1, 267, 2, 3, 28, 52, 137, 487, 1, 331, 205, 242, 181, 2, 3, 28, 36, 3, 28, 812, 1, 28, 328, 180, 6, 84, 2, 100, 21, 1, 635, 3, 28, 2, 735, 7, 3876, 3, 4664, 7, 114, 1, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 1, 31, 321], [415, 2877, 8, 1679, 30, 382, 4, 910, 415, 2877, 8, 1679, 30, 382, 4, 910], [15, 26, 32, 64, 15, 26, 32, 64], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 2721, 682, 2554, 1915, 2383, 1, 1, 1154, 665, 18, 3, 123, 51, 335, 2, 320, 367, 2, 23, 74, 21, 530, 407, 70, 524, 569, 2, 74, 56, 51, 413, 176, 21, 2140, 2, 528, 830, 7, 3628, 23, 567, 420, 389, 2146, 37, 79, 97, 176, 311, 2, 123, 30, 3, 628, 74, 280, 38, 727, 10, 23, 74, 10, 33, 348, 389, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 225, 20, 186, 263, 160, 127, 449, 2485, 130, 695, 481, 67, 38, 183, 248, 303, 245, 7, 333, 481, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 130, 695, 130, 333, 130, 41, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 175, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 175, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 175, 1, 85, 74, 39, 21, 43, 945, 454, 175, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [15, 26, 13, 25, 15, 26, 13, 25], [74, 407, 37, 365, 1364, 1, 1, 253, 21, 1219, 201, 1361, 2, 80, 67, 118, 23, 37, 51, 335, 2, 176, 10, 33, 1695, 506, 74, 21, 530, 21, 219, 407, 430, 276, 118, 23, 767, 51, 335, 2, 118, 464, 3, 172, 303, 767, 2328, 98, 68, 735, 2425, 20, 21, 1128, 2194, 67, 2328, 251, 98, 541, 116, 335, 2, 199, 3, 2425, 20, 2, 468, 35, 3, 37, 1, 10376, 10377, 63, 164, 3, 179, 37], [115, 236, 98, 11, 73, 223, 6471, 6472, 280, 148, 11, 73, 4283, 6471, 6472], [340, 31, 340, 6, 8, 164, 122], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [813, 57, 10378, 10379, 124, 3651, 247, 291, 292, 4620, 4621, 10380, 10381, 10382, 10383, 10384, 10385, 1145, 550, 6473, 381, 720, 313, 50, 564, 23, 57, 6, 8, 10386, 7, 21, 1100, 265, 21, 11, 3, 6474, 191, 4624, 6473, 135], [115, 236, 98, 11, 73, 223, 115, 236, 98, 11, 73, 223, 10387, 10388], [492, 74, 110, 479, 140, 2, 176, 481, 2, 492], [119, 3, 376, 115, 893, 3, 73, 148, 7, 647, 3, 376, 115], [1195, 32, 707, 33, 32, 6, 164, 64, 1352, 1067, 30, 533, 458, 420, 10, 3, 179, 7, 273, 3, 179, 14, 114, 36, 104, 591], [337, 205, 242, 36, 1974, 658, 6, 313, 11, 590, 53, 7, 1229, 1063, 851, 337, 205, 242, 36, 1974, 658, 6, 313, 11, 590, 53, 7, 1229, 1063, 851], [495, 324, 171, 341, 3244, 37, 338, 212, 324, 171, 495, 30, 385, 341, 3244, 323, 7, 219, 2, 2141, 54, 2, 119, 2188, 4, 127, 2, 322, 4, 72, 324, 171, 11, 2188, 10389], [110, 49, 64, 77, 18, 87, 2217], [27, 2, 293, 87, 381, 36, 1110, 719, 27, 2, 293, 87, 381, 36, 1110, 719], [378, 74, 407, 70, 378, 74, 407, 70], [15, 28, 230, 14, 132, 662, 7, 946, 3, 32, 68, 1099, 1059, 6, 161, 3877, 373, 14, 132, 28, 10390, 662, 4, 15, 7, 946, 3, 32, 2, 21, 6, 662, 524, 1059, 6, 161, 3877, 373, 66, 6475, 6476, 181, 331, 10, 6477, 2, 10391, 10392, 3878, 3879, 1488, 64, 4, 15, 14, 1008, 132, 257, 720, 313, 55, 711, 10393, 110, 355, 1049, 80, 95, 4, 257, 7, 38, 670, 3, 391, 46, 131, 1680, 110, 49, 172, 230, 4, 239, 18, 3, 10394, 10395, 110, 1008, 54, 72, 453, 4, 15, 458, 1116, 4, 1596, 7, 458, 556, 6475, 6476, 101, 125, 1819, 73, 1621, 10396, 508, 674, 10397, 879, 23, 71, 6, 1562, 679, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 2568, 68, 35, 268, 23, 71, 66, 1531, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [13, 25, 36, 13, 125, 20, 13, 25, 36, 13, 125, 20], [13, 25, 13, 25], [123, 30, 303, 55, 1, 1, 49, 27, 2, 176, 2, 3, 58, 958, 4, 33, 594, 118, 1000, 1532, 2, 211, 3, 830, 67, 276, 151, 6, 72, 37, 14, 50], [780, 37, 10, 127, 107, 47, 42, 27, 2, 119, 3, 503, 10, 3, 127, 107, 39, 35, 14, 50, 166, 398, 23, 31, 389, 3, 225, 20, 6, 350, 4706], [15, 26, 13, 25, 15, 26, 13, 25], [25, 3, 13, 11, 10398, 10399, 10, 165, 279, 140, 55, 1, 185, 35, 14, 25, 33, 13, 2, 279, 140, 739, 52], [32, 64, 4, 226, 56, 10400, 10401, 182, 213, 130, 155, 204, 117, 107, 214, 146, 3, 13, 11, 33, 76, 6, 10402, 257, 39, 35, 14, 25, 10403, 13, 691, 6, 4580, 106, 38, 2, 119, 3, 13, 169, 35, 38, 499, 21], [27, 2, 95, 10, 2, 41, 23, 334, 27, 2, 95, 10, 2, 41, 23, 334, 1, 1, 130, 88, 206, 4, 63, 3136], [27, 2, 118, 87, 497, 56, 10404, 10405, 182, 213, 130, 155, 204, 117, 107, 214, 146, 6, 151, 709, 44, 87, 99, 8, 121, 80, 12, 1110, 719, 4, 3, 90, 3034], [61, 94, 1564, 1222, 76, 60, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [70, 28, 2, 587, 527, 70, 28, 2, 587, 527, 1, 10406, 10407, 1, 10408], [2673, 11, 89, 8, 1196, 11, 508, 9, 2673, 11, 89, 8, 1196, 11, 508, 9, 86], [27, 2, 211, 3, 6478, 2120, 56, 10409, 10410, 57, 214, 146, 54, 6478, 2120, 430], [243, 34, 9, 1119, 543, 167, 1370, 42, 163, 2, 5551, 3, 179, 1190, 330, 1332, 4, 3, 2623, 794, 23, 6, 1798, 26, 698, 44, 39, 43, 6097, 10411, 35, 10412, 1995, 2789, 2790, 124, 10413, 10414, 243, 34, 9, 1119, 543, 698, 163, 26, 68, 151, 42, 143, 498, 14, 270, 80, 253], [26, 28, 64, 77, 26, 28, 64, 77], [6479, 70, 6479, 70], [27, 2, 46, 2, 76, 27, 2, 46, 2, 76, 53, 3, 347, 706, 12, 1703, 1029, 217], [37, 22, 2, 25, 10415, 13, 64, 7, 499, 3, 115, 30, 3, 73, 13, 1, 399, 13, 11, 57, 29, 7, 1060, 10, 793, 86], [2010, 2011, 4239, 14, 119, 1299, 18, 5, 1922, 421, 15, 131, 3284, 3, 287, 12, 649, 2, 38, 346, 915, 1709, 287, 649, 2, 43, 421, 1, 3, 3284, 70, 11, 2959, 1687, 12, 454, 23, 10416, 295, 1, 1, 14, 119, 3, 1494, 4, 3, 469, 1990, 746, 12, 7, 937, 12, 4, 3, 163, 1299, 1630, 36, 2], [1588, 8, 45, 31, 1588, 42, 8, 45, 1, 2719, 1, 1448, 1461, 10417, 351, 3, 71, 44, 9, 1745, 6480, 10418, 267, 2, 108, 1, 425, 4, 108, 120, 10419, 395, 407, 63, 430, 248, 638, 21, 67, 9, 70, 178, 1, 248, 1452, 407, 36, 382, 144, 295, 67, 53, 1745, 6, 8, 430, 4, 3, 52, 27, 2, 211, 143, 407, 1, 425, 2122, 72, 395, 137, 10420, 7, 21, 1067, 494, 2922, 558, 72, 31, 30, 3, 1461, 1, 1, 10421, 624, 1745, 6, 8, 430, 62, 6, 8, 45], [41, 8, 545, 169, 88, 500, 41, 8, 545, 169, 88, 500], [25, 1528, 13, 14, 25, 33, 1528, 13], [39, 8, 176, 2, 1020, 62, 1020, 10, 40, 112, 3, 3880, 21, 827, 10, 10422, 10423, 7, 38, 141, 27, 2, 176, 2, 1020, 248, 1020, 23, 334, 7, 63, 183, 2816, 51, 1426, 2, 176, 10424, 767, 2328, 98, 7, 3426, 241, 4074, 287, 2, 3, 254, 276, 72, 37, 71, 2328, 98, 1612, 151, 63, 72, 37, 51, 303, 244, 114, 74, 280, 4, 79, 753, 3261, 248, 2, 70, 3, 407, 36, 3, 753, 3261, 7, 3, 179, 4074, 287, 42, 1606, 53, 51, 1134, 2, 176, 742, 248, 303, 36, 567, 529, 41, 333, 1197, 2178, 30, 9, 2732, 165, 195, 42, 273, 84, 2, 176, 2, 3, 74, 21, 355, 10425, 77, 72, 15, 127, 36, 197, 18, 3, 10426], [87, 395, 1578, 6, 8, 45, 53, 332, 1027, 87, 395, 1578, 6, 8, 45, 53, 332, 1027], [64, 77, 18, 26, 14, 25, 13, 52, 26, 26, 26, 26, 585, 165, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [41, 13, 1553, 130, 1121, 1755, 140, 3279, 44, 3, 140, 6, 454, 376, 2, 295, 1, 1452, 7, 1658, 3, 200, 3881, 1373, 9, 2261, 140, 336, 1, 4658, 209, 174, 400, 2563, 871, 120, 584, 809, 7, 2483, 18, 297, 131, 437, 209, 41, 991, 115, 1, 130, 174, 394], [15, 31, 11, 2336, 1969, 536, 249, 516, 1243, 151, 6, 1501, 178, 117, 200, 12, 90, 210, 149, 359, 11, 1972, 2493, 1501, 429, 536, 67, 151, 43, 700, 996, 44, 10427, 444, 36, 10428, 10429, 11, 888, 803, 151, 6, 829, 10430, 30, 249, 976, 15, 23, 6, 6481, 4707, 1769], [39, 100, 163, 225, 418, 30, 4708, 12, 15, 91, 377, 39, 100, 163, 225, 418, 30, 4708, 12, 15, 91, 377], [660, 20, 2331, 440, 36, 376, 148, 2, 73, 148, 55, 1, 185, 35, 14, 50, 80, 4, 10431, 732], [235, 86, 9, 181, 1211, 11, 28, 6482, 6483, 7, 6484, 6485, 246, 35, 14, 129, 693, 195, 53, 284, 42, 511, 8, 496, 475, 10, 423, 235, 86, 6482, 6483, 6484, 6485, 14, 263, 44, 284, 42, 511, 4709, 240, 18, 190], [337, 8, 45, 337, 6, 1360, 316, 467, 1963, 2, 463, 51, 21, 89, 463, 1518, 6, 164, 1625, 37, 163], [6486, 751, 8, 45, 6486, 751, 8, 45, 74, 6, 45, 494, 201, 3, 751, 6, 8, 45, 86], [173, 78, 8, 1628, 3, 3207, 12, 3, 251, 18, 197, 18, 3, 173, 605, 10, 48, 6, 8, 2853, 1, 934, 18, 3, 113, 89, 8, 29, 2, 58, 1123, 1, 1, 14, 50, 114, 1, 1, 437, 173, 605, 1, 1, 40, 1, 3580, 1, 40, 1, 1, 129], [652, 641, 297, 13, 1808, 56, 10432, 10433, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 1991, 33, 13, 2, 652, 641, 297], [32, 132, 32, 132], [3, 15, 337, 40, 6487, 362, 200, 6, 323, 53, 804, 3, 15, 337, 40, 6487, 362, 200, 6, 323, 53, 804], [337, 724, 37, 1379, 90, 271, 4, 90, 47, 42, 496, 724, 37, 10, 3, 337, 52, 7, 97, 516, 95, 489, 129, 107], [10434, 18, 3, 628, 2942, 63, 8, 3, 179, 55, 1, 1, 3, 173, 6, 178, 426, 3, 177, 229, 1, 1, 1, 112, 310, 2741, 21, 6, 9, 345, 285, 2, 1158, 3, 173, 411, 3, 177, 37, 71, 6, 1086, 51, 405, 3, 173, 1, 1, 1, 1, 1, 135, 750], [337, 205, 242, 36, 1974, 658, 6, 313, 11, 590, 53, 7, 1229, 1063, 851, 337, 205, 242, 36, 1974, 658, 6, 313, 11, 590, 53, 7, 1229, 1063, 851], [15, 337, 6, 8, 1628, 15, 337, 6, 8, 1628, 4, 10435, 10436, 694, 42, 27, 2, 199, 3, 140, 2, 1425, 77, 140, 6, 64, 86], [4710, 32, 132, 4, 15, 26, 4710, 32, 132, 4, 15, 26], [79, 32, 707, 79, 32, 707], [8, 545, 191, 217, 55, 622, 3, 167, 554, 96, 1, 1, 1, 1, 1, 1, 1156], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [74, 123, 31, 136, 49, 250, 2, 176, 2, 1020, 10, 6488, 830, 54, 399, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 1020, 10, 6488, 1, 1, 1154, 665, 18, 3, 123, 830, 54, 399, 67, 99, 8, 463, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 83, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 79, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 9, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [76, 31, 208, 491, 1823, 1, 1, 49, 8, 84, 2, 122, 2, 76, 1, 1, 14, 196, 1, 1, 183, 211, 3, 73, 4711, 53, 613], [1982, 1112, 32, 132, 4, 15, 26, 1982, 1112, 32, 132, 4, 15, 26], [1168, 751, 10, 1384, 6, 3882, 14, 1005, 21, 1168, 751, 10, 1384, 406, 14, 1005, 115, 6, 651, 4, 3, 2231, 594, 18, 10437, 52], [27, 2, 176, 54, 407, 70, 27, 2, 176, 54, 407, 70], [27, 2, 176, 407, 8, 638, 27, 2, 176, 407, 8, 638], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [211, 4290, 208, 491, 1, 14, 211, 4290, 1115, 4, 33, 52, 49, 8, 84, 2, 2885, 241, 1560, 5319, 4, 10438], [5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12], [200, 4109, 255, 47, 2308, 2908, 2909, 200, 4109, 255, 47, 2308, 2908, 2909], [620, 342, 174, 2294, 2295, 620, 342, 174, 2294, 2295], [193, 30, 700, 125, 1542, 1543, 193, 30, 700, 125, 1542, 1543], [193, 30, 700, 125, 2662, 2663, 193, 30, 700, 125, 2662, 2663], [280, 73, 471, 6489, 6490, 280, 73, 471, 6489, 6490], [54, 967, 2, 660, 3153, 3725, 6491, 468, 34, 1186, 33, 24, 383, 54, 967, 2, 660, 3153, 3725, 6491, 468, 34, 1186, 33, 24, 383], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [333, 31, 8, 84, 2, 100, 72, 333, 173, 30, 3, 177, 37, 71, 1, 1, 1, 1194, 18, 3, 173, 1, 1511], [453, 18, 3, 218, 960, 262, 131, 4, 3, 254, 10439, 40, 356, 14, 747, 633, 7, 721, 29, 11, 3, 218, 779, 10440, 3, 218, 6, 275, 11, 3, 179, 134], [1654, 41, 31, 365, 334, 1, 1, 1, 169, 13, 119, 33, 41, 6, 8, 405, 143, 316, 1, 1, 39, 35, 14, 50, 80, 1, 1, 1, 342, 1079, 556, 714, 450], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [876, 584, 1246, 55, 10441, 332, 33, 57, 21, 649, 44, 28, 10442, 10443, 65, 584, 241, 18, 3, 1246, 18, 517, 28, 10444, 10445, 106, 8, 38, 222, 10, 1325, 10446, 53, 284, 42, 8, 1198, 849, 83, 39, 2141, 6, 44, 284, 38, 141, 584, 4, 3, 1538, 18, 1251, 1725, 423, 1464, 462, 56, 170, 30, 1317, 10447, 185, 35, 14, 1377, 68, 151, 6, 143, 2604, 2, 876, 444], [14, 1540, 3, 59, 2938, 4, 26, 15, 160, 363, 25, 3, 13, 11, 2938, 11, 15, 26, 15, 10448], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1195, 340, 10449, 4, 3, 73, 3140, 12, 935, 594, 101, 1, 1, 14, 114, 47, 42, 290, 1195, 2219, 2, 3, 340, 83, 161, 1450, 2, 15, 87, 42, 2344], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [236, 98, 115, 1384, 7, 74, 4, 3883, 2780, 4616, 236, 98, 115, 1384, 7, 74, 4, 3883, 2780, 4616], [14, 25, 33, 26, 15, 13, 55, 1, 1, 14, 25, 33, 26, 15, 13], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [15, 64, 533, 14, 132, 3, 15, 26, 32, 11, 59, 10450, 754, 526, 25, 13], [2679, 348, 925, 3823, 55, 1, 1, 3, 925, 18, 348, 115, 2679, 6492, 219, 2, 43, 1368, 2, 3, 115, 36, 3, 6493, 254, 14, 50, 30, 23, 31, 10, 72, 307, 935], [74, 947, 12, 3884, 6494, 406, 3, 1208, 6, 6495, 514, 3, 303, 7, 2595, 312, 74, 947, 12, 3884, 6494, 406, 3, 1208, 6, 6495, 514, 3, 303, 7, 2595, 312], [1461, 2243, 491, 1, 1, 49, 10451, 4068, 4093, 210, 4, 33, 148, 33, 317, 10452, 3494, 65, 884, 77, 18, 3, 10453, 7, 1126, 753, 926, 6, 8, 45, 308, 509, 1099, 354, 1, 1, 96, 6, 222, 18, 148, 1, 1, 1, 30, 1156], [15, 397, 13, 111, 14, 320, 80, 73, 13, 11, 33, 15, 805, 2049, 1282, 4682, 4683, 149, 120, 4684, 1222, 73, 3857, 3858, 771, 1536], [5922, 39, 8, 743, 14, 50, 80, 2, 398, 21, 3, 191, 482, 97, 43, 5535, 77], [1489, 513, 217, 100, 1065, 11, 15, 219, 2, 43, 430, 10, 142, 10454, 1, 267, 751, 6, 6496, 1068, 1, 751, 407, 219, 183, 2, 43, 430, 1, 142, 7, 751, 6, 445, 7, 4604, 6, 45, 10, 21, 599, 513, 217, 6, 430, 207, 35, 39, 509, 2726, 10455, 272, 3, 142, 1, 100, 1065, 1151, 6, 534, 430, 1, 68, 35, 54, 10, 48, 295, 14, 270, 80, 253], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [76, 76, 874], [1624, 994, 45, 159, 10456, 188, 3315, 418, 1019, 524, 55, 50, 101, 1, 1, 363, 91, 10457, 57, 96, 1, 372, 713, 47, 330, 241, 721, 29, 210, 1, 6, 21, 285, 44, 83, 2629, 18, 3, 3315, 20, 159, 39, 134, 10, 23, 128, 126, 173, 516, 68, 3, 173, 56, 99, 119, 1, 54, 2, 70, 23, 173, 669, 713, 7, 504, 21, 426, 3, 2680, 713, 1, 68, 8, 106, 35, 38, 143, 2931, 288, 47, 39, 796, 44], [54, 295, 55, 1, 1, 349, 9, 39, 8, 199, 4, 457, 14, 4353, 1, 1, 1, 135], [872, 78, 37, 71, 55, 101, 197, 18, 24, 28, 6497, 6498, 1510, 465, 37, 71, 96, 1262, 23, 6, 15, 78, 133, 31, 106, 35, 38, 143, 1340, 11, 23, 37, 429, 72, 37, 942, 514, 1090, 872, 78, 133, 63, 706, 411, 18, 23, 37, 6424, 6425, 841, 10458, 10459], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 26, 322, 28, 59, 18, 28, 290, 3, 31, 10460, 482, 252, 3, 28, 219, 62, 63, 45, 30, 27, 2, 397, 64, 896, 3, 31, 14, 132, 3, 32, 7, 25, 3, 13, 11, 600, 3, 571], [110, 49, 27, 2, 70, 809, 222, 110, 49, 27, 2, 70, 809, 222, 558, 1118, 27, 2, 70, 28, 10461, 8, 336, 37, 14, 525, 80], [1140, 4, 33, 148, 33, 52, 6, 1140, 10462, 14, 647, 2124, 1, 1, 14, 326, 96, 167, 554], [32, 6, 164, 64, 36, 40, 32, 6, 164, 64, 36, 40], [76, 76], [110, 49, 290, 193, 637, 158, 3, 17, 76, 110, 49, 290, 193, 637, 158, 3, 17, 76, 49, 496, 72, 37, 71, 1612, 44, 33, 691, 62, 13, 6, 626, 516, 1243, 253, 21, 6, 391], [1838, 340, 46, 1342, 7, 28, 56, 111, 1, 14, 50, 2, 189, 2211, 1838, 340, 46, 1342, 7, 28, 56, 11, 161, 174, 1, 47, 54, 23, 13, 7, 28, 56, 207, 44, 53, 7, 51, 47, 38, 621, 770, 11, 520, 62, 381, 2, 43, 84, 2, 46, 1, 1, 135], [186, 2146, 9, 1953, 888, 37, 71, 67, 3, 1953, 89, 1196, 27, 2, 312, 127, 294, 110, 731, 52, 311, 2, 3, 52, 8, 4159, 3, 1442, 1953, 888], [97, 95, 158, 76, 56, 10463, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 95, 158, 76], [15, 32, 499, 15, 32, 499], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [3229, 42, 8, 848, 456, 3229, 42, 8, 848, 456], [60, 94, 190, 190, 24, 640, 892, 60, 6, 75, 112, 105, 10, 48, 98, 10, 1285, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [58, 94, 12, 759, 759, 149, 1570, 112, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [60, 94, 10464, 24, 640, 892, 60, 6, 75, 112, 105, 10, 48, 98, 10, 1285, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [58, 94, 759, 759, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 34, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [60, 94, 190, 2285, 113, 24, 892, 60, 6, 75, 112, 105, 10, 48, 98, 10, 1285, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [102, 2, 25, 3, 13, 11, 130, 445, 368, 450], [6499, 89, 57, 134, 10, 86, 573, 155, 133, 6499, 89, 57, 134, 10, 86, 573, 155, 133], [3414, 6, 1896, 54, 2, 119, 2, 79, 6500, 3414, 6, 1896, 54, 2, 119, 2, 79, 6500], [27, 2, 3703, 2, 3885, 74, 27, 2, 3703, 2, 3885, 74], [40, 15, 412, 78, 78, 2448, 362, 200, 6, 75, 112, 105, 10, 40, 15, 412, 78, 78, 2448, 362, 200, 6, 75, 112, 105, 10], [209, 333, 722, 413, 8, 45, 209, 333, 722, 413, 8, 45, 1, 267, 2, 3, 28, 52, 137, 487, 1, 4658, 3, 209, 174, 1, 10465, 3, 333, 558, 45, 494, 172, 1, 31, 321], [205, 869, 6, 178, 67, 39, 118, 158, 26, 205, 869, 6, 178, 67, 39, 118, 158, 26], [70, 10, 258, 70, 10, 258], [235, 108, 453, 235, 108, 453], [1207, 171, 89, 8, 1216, 3, 412, 1164, 1207, 171, 89, 8, 1216, 3, 412, 1164, 267, 2, 3, 28, 52, 137, 487, 51, 3, 28, 1639, 2, 373, 1207, 171, 53, 1534, 4, 3, 10466, 554, 21, 1435, 3, 28, 37, 91, 377, 129], [27, 2, 176, 36, 1020, 2152, 74, 27, 2, 176, 36, 1020, 2152, 74], [27, 2, 122, 2, 74, 27, 2, 122, 2, 74], [27, 2, 176, 790, 783, 2, 211, 407, 11, 74, 27, 2, 176, 790, 783, 2, 211, 407, 11, 74], [27, 2, 176, 110, 49, 8, 84, 2, 176, 4, 90], [2862, 210, 110, 54, 29, 2, 3, 2862, 1380, 39, 463, 3, 48, 67, 97, 322, 117], [897, 159, 4, 128, 126, 118, 37, 71, 110, 49, 250, 2, 189, 159, 426, 826, 4, 128, 126, 118, 72, 37, 71, 44, 3, 2192, 2, 189, 1681, 65, 141, 1548, 489, 66, 3, 568, 448, 10467, 104, 57], [766, 640, 57, 68, 88, 28, 3860, 3861, 4, 160, 766, 640, 57, 18, 3, 88, 1283, 1334, 486, 3860, 3861, 4, 939, 88, 160], [142, 855, 122, 2, 74, 790, 1658, 830, 55, 21, 101, 23, 1364, 33, 142, 65, 706, 699, 2, 74, 1165, 2152, 51, 1134, 2, 176, 367, 21, 2347, 80, 2, 211, 407, 11, 3, 74, 270, 21, 106, 44, 7, 243, 100, 3, 367, 51, 335, 2, 176, 257, 21, 89, 3, 179, 1677, 7, 276, 2646, 80, 21, 97, 176, 23, 6, 3, 1640, 74, 44, 38, 141, 137, 112, 207, 356, 8, 614, 424, 21, 65, 1928, 706, 45, 68, 35, 185, 14, 525, 80, 51, 35, 118, 1127, 259, 1663, 21, 99, 176, 2, 517, 10468, 74, 4, 3, 3886, 21, 6, 2409, 80, 2, 176, 2, 23, 165, 58, 74, 68, 35, 54, 2, 129, 80, 14, 2871, 565, 2, 121, 80, 12, 62, 39, 43, 2053, 192, 87], [280, 217, 10, 36, 227, 148, 280, 217, 10, 36, 227, 148], [27, 2, 100, 1903, 173, 56, 10469, 10470, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 290, 2805, 405, 61, 852, 855, 100, 7, 530, 736, 51, 413, 21, 97, 100], [97, 500, 33, 318, 128, 126, 2267, 110, 399, 33, 13, 137, 13, 125, 20, 7, 172, 33, 128, 126, 6, 783, 80, 2, 322, 871, 68, 322, 33, 376, 13, 128, 126, 530, 21, 6, 626, 68, 322, 33, 2207, 399, 13, 3, 71, 1331, 3, 78, 11, 136, 2328, 98, 4412, 276, 21, 2398, 80, 2, 392, 4, 257, 23, 128, 126, 6, 667, 10, 128, 126, 748, 33, 6501, 7, 110, 38, 163, 1136, 2, 468, 85, 6, 1361], [2581, 31, 393, 2572, 394, 2581, 31, 393, 2572, 394], [378, 738, 414, 128, 126, 48, 653, 55, 14, 189, 1238, 128, 126, 1380, 48, 11, 3, 738, 414, 3505, 632, 10471, 2587, 2588, 7, 3878, 3879, 53, 81, 315, 70, 29, 264, 183, 43, 2426, 3878, 3879, 4296, 4297, 4984, 4985, 10472, 10473, 2587, 2588, 6502, 6503, 2422, 6504, 47, 99, 183, 1474, 241, 1760, 415, 2, 24, 2, 38, 29, 2, 2318, 1069, 53, 613, 14, 1544, 53, 754, 53, 3, 48, 38, 141, 350, 458], [15, 13, 25, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 10474, 10475, 15, 13, 64, 53, 38, 670, 385, 197, 66, 3, 986, 274, 33, 13, 23, 334, 814, 1028, 111, 10476], [15, 26, 32, 132, 11, 4712, 15, 26, 32, 132, 11, 4712], [339, 121, 339, 121], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [1831, 440, 4, 15, 42, 8, 327, 55, 1, 1, 33, 3284, 15, 440, 42, 9, 345, 327, 669, 483, 38, 25, 444, 7, 284, 273, 99, 8, 373], [110, 49, 64, 77, 18, 88, 7, 54, 2, 118, 4, 2, 118, 968, 77, 310, 56, 4429, 4430, 182, 213, 6505, 117, 107, 214, 146, 49, 64, 77, 18, 88, 7, 54, 2, 118, 4, 2, 118, 968, 77, 310], [14, 1040, 33, 73, 383, 21, 6, 24, 868, 108, 291, 292, 124, 5022, 5023, 243, 2985, 1711, 3, 1704, 30, 480, 1032, 6, 970, 230, 10, 104, 956, 599, 29, 6, 4589, 66, 3, 718, 111, 2250, 104, 108, 65, 141, 1254, 1565], [27, 2, 95, 4, 2, 79, 27, 2, 95, 4, 2, 79], [846, 254, 6, 272, 198, 375, 198, 178, 607, 369, 370, 900, 846, 10477, 10, 78, 846, 6, 272, 1, 198, 375, 198, 178, 387], [395, 2134, 134, 849, 10, 33, 148, 2351, 33, 6506, 1664, 10478, 42, 45, 849], [74, 400, 56, 6507, 6508, 182, 213, 130, 155, 204, 117, 107, 214, 146, 27, 2, 176, 38, 399, 830, 716, 273, 1612, 219, 399], [41, 89, 8, 170, 41, 89, 8, 170], [15, 26, 32, 64, 499, 7, 328, 30, 28], [64, 77, 18, 13, 125, 20, 39, 35, 14, 25, 33, 13, 4429, 4430, 117, 200, 4225], [27, 2, 122, 2, 3241, 7, 3241, 27, 2, 122, 2, 3241, 7, 3241], [41, 89, 8, 170, 41, 89, 8, 170], [34, 10479, 10, 258, 10480, 10481, 1, 124, 1, 10482, 10483, 1, 10484, 10485, 1, 203, 1, 1, 111, 3321, 1, 1, 28, 330, 486, 2, 3062, 44, 180, 219, 2, 43, 84, 2, 118, 10, 519, 53, 180, 99, 43, 4709], [206, 6509, 2, 6510, 1283, 1334, 56, 6511, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 35, 206, 6509, 2, 6510, 1283, 1334], [116, 2475, 346, 36, 200, 172, 7, 119, 18, 4079, 56, 6449, 6450, 49, 3887, 10486, 6451, 6452, 10487, 10488, 203, 116, 2475, 346, 36, 404, 20, 7, 119, 18, 4079, 56, 111, 3887, 21, 1100, 265, 3229, 11, 372, 451, 1162, 4, 7, 593, 18, 42, 346, 36, 200, 172, 183, 425, 30, 33, 101, 2681, 10489, 180, 6, 183, 290, 179, 31, 7, 183, 102, 35, 2, 119, 3, 739, 56, 36, 10490, 6512, 2, 5148, 5149, 203, 6, 625, 2, 35, 14, 509, 366, 14, 1662, 11, 143, 10491], [492, 287, 42, 8, 164, 1071, 1527, 36, 78, 492, 287, 42, 8, 164, 1071, 1527, 36, 78], [121, 659, 311, 2, 76, 2219, 121, 659, 311, 2, 76, 2219], [121, 659, 311, 2, 76, 2219, 121, 659, 311, 2, 76, 2219], [27, 2, 176, 36, 1165, 27, 2, 176, 36, 1165], [738, 121, 396, 659, 738, 121, 396, 659], [130, 695, 706, 45, 27, 2, 100, 287, 130, 695, 706, 45, 27, 2, 100, 287], [28, 1049, 2, 129, 162, 28, 1049, 2, 129, 162], [13, 562, 13, 562], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1352, 164, 37, 4, 41, 220, 1352, 164, 37, 4, 41, 220, 37, 71, 6, 163], [121, 351, 659, 53, 76, 696, 489, 11, 329, 121, 351, 659, 53, 76, 696, 489, 11, 329], [1572, 629, 11, 225, 418, 1572, 629, 11, 225, 418, 2373, 4542, 6, 236, 98, 2, 1572, 629, 225, 418, 2, 716, 261, 42, 8, 357, 268, 4, 57, 2, 4160, 10, 470, 2336, 10, 117, 580], [74, 123, 31, 136, 4713, 123, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 83, 958, 1, 1, 1154, 665, 18, 3, 123, 530, 65, 2, 211, 407, 855, 176, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 83, 481, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 83, 571, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 9, 7, 16, 1, 1, 68, 15, 52, 184, 52, 83, 571, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [2449, 4182, 113, 7, 6513, 8, 45, 4, 15, 2449, 4182, 113, 7, 6513, 8, 45, 4, 15], [27, 2, 189, 73, 324, 27, 2, 189, 73, 324, 53, 558, 323, 72, 2673, 37], [4097, 90, 1277, 3, 238, 1609, 6, 75, 112, 12, 49, 105, 10, 4097, 90, 1277, 3, 238, 1609, 6, 75, 112, 12, 49, 105, 10], [225, 418, 428, 8, 2762, 2, 1081, 4714, 225, 418, 428, 8, 2762, 2, 1081, 4714], [32, 499, 32, 499], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [121, 36, 1599, 107, 351, 659, 121, 36, 1599, 107, 351, 659], [110, 49, 8, 84, 2, 122, 2, 33, 2392, 74, 62, 74, 4180, 5987, 10, 40, 325], [24, 17, 90, 90, 434, 1020, 29, 277, 24, 144, 238, 1034, 3789, 115, 3561, 6514, 6, 106, 24, 17, 90, 90, 434, 1020, 29, 277, 24, 144, 1, 238, 1034, 3789, 115, 3561, 6514, 6, 75], [348, 115, 36, 4, 3, 3109, 594, 39, 9, 345, 170, 348, 115, 36, 4, 3, 3109, 594, 39, 9, 345, 170], [15, 193, 68, 110, 479, 2, 100, 175, 791, 10, 3, 142, 10492, 4, 3, 15, 10493, 15, 276, 110, 38, 2, 95, 4, 257, 1, 451, 1163, 38, 534, 141, 3163, 67, 3, 123, 65, 8, 989, 141, 321], [1912, 2, 647, 2320, 18, 10494, 131, 10, 225, 418, 11, 1475, 117, 47, 742, 912, 205, 242, 30, 6515, 6516, 4, 26, 225, 20, 107, 1, 151, 6, 183, 225, 20, 7, 10495, 4, 26, 53, 1231, 14, 263, 44, 895, 10496, 42, 1437, 2538, 7, 4221, 42, 2450, 2538, 1, 10, 117, 916, 1329, 1146, 425, 9, 10, 176, 1475, 957, 67, 21, 542, 134], [307, 1712, 107, 8, 2495, 66, 914, 324, 120, 4, 15, 1712, 107, 8, 2495, 66, 914, 324, 120, 4, 15], [40, 703, 758, 286, 565, 10, 6, 172, 40, 703, 758, 286, 565, 10, 6, 172], [25, 10, 55, 39, 35, 50, 80, 2, 25, 3, 603, 10497, 96, 3598, 536, 171, 636, 2779, 2, 10498, 781, 35, 6517, 6518, 312, 1764, 24, 24, 3865, 879, 7, 616, 1793, 1363, 988, 2019, 6459, 10499, 1137, 1138, 1082, 1141, 23, 446, 6, 11, 3, 3286, 199, 18, 255, 3, 1389, 10500, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 23, 446, 6, 311, 2, 72, 6519, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [193, 342, 212, 3345, 3346, 193, 342, 212, 3345, 3346], [116, 2672, 89, 8, 134, 47, 2792, 994, 125, 1557, 1558, 116, 2672, 89, 8, 134, 47, 2792, 994, 125, 1557, 1558], [751, 6520, 255, 142, 47, 823, 406, 3888, 10501, 6520, 255, 6521, 47, 823, 406, 3888], [211, 24, 1168, 255, 477, 1074, 1075, 211, 24, 1168, 255, 477, 1074, 1075], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [963, 176, 4, 2682, 74, 963, 176, 4, 2682, 74], [40, 370, 900, 40, 4715, 6, 272, 198, 375, 198, 178, 387, 40, 370, 900, 40, 4715, 6, 272, 198, 375, 198, 178, 387], [1283, 1334, 422, 823, 132, 1283, 1334, 422, 823, 132], [457, 4716, 6522, 97, 43, 350, 47, 42, 290, 3238, 210, 30, 897, 2929, 10502, 4, 457, 1, 3226, 159, 18, 358, 6, 3604, 7, 8, 10503, 1, 112, 23, 3226, 159, 2620, 2, 661, 5692, 676, 21, 3708, 72, 37, 44, 97, 43, 10504, 1, 21, 649, 23, 201, 1147, 51, 897, 4716, 2929, 3347, 1, 47, 54, 1944, 354, 10, 23, 1, 9, 197, 39, 189, 4716, 6522, 12, 83], [378, 41, 8, 45, 783, 11, 13, 378, 41, 8, 45, 783, 11, 13, 9, 13, 1553, 6, 770, 98], [47, 54, 472, 11, 349, 673, 113, 113, 1116, 47, 54, 472, 11, 349, 673, 113, 113], [39, 8, 29, 4, 26, 39, 8, 29, 4, 26], [37, 51, 3083, 4, 457, 1536, 365, 334, 53, 355, 1690, 30, 10505, 110, 320, 3, 37, 71, 44, 664, 4, 457, 1536, 51, 2929, 2352, 2020, 2352, 129], [54, 6523, 492, 430, 54, 6523, 492, 430], [76, 8, 45, 10506, 10507, 1, 49, 1, 291, 292, 1, 243, 354, 275, 14, 122, 2, 3, 73, 76, 919, 389, 1, 1, 55, 1, 1, 33, 76, 6, 8, 45, 308, 50], [28, 3889, 3890, 115, 56, 65, 141, 274, 2, 4717, 376, 115, 56, 6524, 28, 3889, 3890, 115, 56, 65, 141, 274, 2, 4717, 376, 115, 56, 6524, 1, 28, 1007, 23, 2, 43, 399, 4, 279, 140, 52, 11, 1094, 1, 1, 1, 1, 10508, 341, 12, 1981, 1, 6525, 10509, 4115, 4116, 3889, 3890, 550, 142, 56, 119, 4, 279, 140, 1, 55, 6525, 1, 185, 35, 50, 2, 995, 96, 3797, 2, 24, 441, 1, 1, 28, 56, 1, 1, 73, 115, 56, 1, 1, 1381, 196, 1, 1, 3889, 3890, 1, 1, 4717, 1, 1, 476, 1, 1, 1, 1, 1, 135], [309, 10510, 10511, 1, 1, 6526, 3065, 4718, 2541, 10512, 1043, 10513, 478, 4718, 10514, 10515, 10516, 1820, 10517, 3466, 1, 1, 1, 342, 2541, 10518, 10519, 1052, 556, 714, 1, 1, 10520, 10521, 1, 2066, 462, 82, 6527, 3348, 1, 24, 667, 368, 879, 1, 1, 1240, 1, 1652, 1, 6528, 1, 1, 181, 6529, 1, 730, 24, 144, 1, 1, 10522, 3143, 1, 190, 10523, 190, 1, 1, 1848, 1943, 1849, 1363, 2798, 1137, 1138, 1082, 1141, 1, 1, 6530, 901, 174, 1046, 3140, 3141, 1332, 4, 3, 2170, 2181, 1046, 3140, 4719, 1, 3336, 10524, 10525, 10526, 949, 674, 24, 2079, 879, 1, 6530, 901, 174, 190, 3141, 1332, 4, 3, 2170, 2181, 1083, 4720, 259, 4721], [110, 39, 106, 1430, 1815, 12, 457, 91, 377, 110, 39, 106, 1430, 1815, 12, 457, 91, 377, 1, 32, 1416, 1038, 2, 616, 1182, 39, 493, 10527], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [142, 39, 244, 142, 39, 244], [54, 2, 211, 1817, 1818, 529, 54, 2, 211, 1817, 1818, 529, 1, 5, 19, 1, 81, 20, 1, 3693, 1, 6531, 1151, 1, 1, 329, 250, 2, 211, 261, 529, 21, 6, 783, 11, 1893, 29], [9, 73, 1652, 4, 10, 4722, 1652, 218, 12, 24, 3891, 1349, 1661, 2624, 47, 97, 91, 73, 1652, 4, 2, 1349, 1661, 4722, 1652, 218, 112, 591, 18, 185, 35, 14, 114, 7, 398, 68, 151, 38, 141, 143, 193], [6532, 6532], [5, 551, 412, 78, 865, 636, 22, 4, 5, 19, 12, 5, 551, 412, 78, 865, 636, 22, 4, 5, 19, 12], [1551, 173, 11, 3, 102, 1551, 3, 173, 11, 3, 102, 137, 10528, 4056], [14, 50, 6533, 6534, 544, 2683, 7, 1081, 373, 4, 252, 228, 14, 50, 6533, 6534, 544, 2683, 7, 1081, 373, 4, 252, 228], [5, 26, 2773, 22, 4, 5, 19, 12, 5, 26, 2773, 22, 4, 5, 19, 12], [556, 37, 208, 83, 1, 1, 246, 35, 14, 50, 166, 77, 47, 39, 421, 556, 11, 96, 1, 1, 249, 1144, 1, 461], [434, 75, 24, 262, 1187, 1304, 1569, 29, 277, 651, 12, 361, 1304, 6, 75, 112, 124, 105, 10, 434, 75, 24, 262, 1187, 1304, 1569, 29, 277, 651, 12, 361, 1304, 6, 75, 112, 124, 105, 10], [5, 551, 577, 238, 686, 636, 22, 4, 5, 19, 12, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 551, 577, 238, 686, 636, 22, 4, 5, 19, 12], [185, 35, 353, 438, 1411, 37, 514, 4723, 3083, 55, 21, 101, 1, 1, 47, 42, 843, 438, 1411, 31, 11, 4723, 565, 18, 2360, 127, 207, 172, 47, 97, 493, 438, 1411, 6535, 1, 185, 35, 14, 114, 7, 353, 3, 31, 1, 1, 127, 537, 1, 149, 676, 1, 207, 1, 127, 103, 4723, 1, 249, 1, 1144, 673, 1, 186, 113, 113, 1, 2092, 462, 805, 10529, 1, 1, 47, 97, 493, 438, 1411, 6535, 573, 37, 2069, 15, 97, 1740, 23, 100, 127, 47, 97, 91, 23, 100, 127, 12, 1221, 167], [5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 124, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 804, 4724, 374, 26, 10530, 81, 116, 124, 1, 268, 3729, 102, 36, 2064, 3257, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 124, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 804, 40, 654, 1153, 24, 144, 10531, 15, 116, 124, 1, 268, 3729, 102, 36, 2064, 3257, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 26, 842, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 26, 842, 22, 4, 5, 19, 12], [6536, 652, 641, 297, 220, 6, 75, 10, 12, 124, 3, 652, 641, 297, 6, 260, 3210, 233, 10, 6536, 14, 663], [6, 26, 75, 737, 496, 792, 37, 6, 26, 75, 737, 496, 792, 37], [79, 13, 25, 79, 13, 25], [76, 365, 3221, 1, 1, 38, 805, 33, 76, 46, 1293, 39, 23, 43, 6537], [87, 7, 41, 8, 1458, 87, 7, 41, 8, 1458, 267, 2, 3, 28, 52, 137, 487, 330, 3, 28, 10532, 2, 3, 24, 76, 584, 3785, 287, 7, 50, 3, 28, 46, 2, 3, 87, 248, 2, 5462, 3, 2230, 9, 465, 248, 2, 736, 3, 209, 174, 1923, 3, 209, 174, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 31, 321, 142, 3060, 129], [40, 233, 6, 172, 2405, 40, 233, 370, 900, 40, 4715, 6, 172, 2405], [40, 233, 6, 172, 2405, 40, 233, 370, 1010, 40, 773, 6, 172, 2405], [1586, 10, 121, 1586, 10, 121], [521, 912, 11, 34, 203, 38, 1821, 210, 30, 186, 303, 12, 113, 521, 912, 11, 34, 203, 38, 1821, 210, 30, 186, 303, 12, 113, 113, 4725, 1570, 6, 172, 651, 12, 3, 113, 1570, 4, 6538, 90, 151, 428, 521, 912, 2, 1202, 102, 303, 11, 23, 159, 18, 694, 67, 21, 65, 952, 3, 2281, 1570, 3, 113, 159, 304, 2, 176, 186, 1001, 12, 3, 195, 2412, 172, 83, 186, 1001, 42, 303, 12, 72, 174, 74, 44, 6, 8, 1940, 433, 284, 42, 45, 23, 6, 8, 3892, 14, 1273, 77, 2, 5803, 5804, 7, 1619, 2, 50, 353, 23, 53, 754, 53, 285], [2031, 6539, 37, 10, 207, 207, 65, 782, 6539, 11, 627, 184, 6, 2031, 261, 627, 42, 421, 7, 37, 264, 8, 43, 151], [8, 861, 10533, 333, 695, 87, 41, 71, 1560, 808, 2, 1372, 2, 199, 1040, 172, 68, 335, 2, 199, 333, 695, 87, 41, 38, 71, 1560, 808, 2, 1372, 2, 199, 1040, 172, 68, 248, 2, 106, 137, 181, 32, 38, 3, 71, 32, 6, 8, 2571, 30, 3, 462, 2, 202, 3, 400, 14, 322, 3, 32, 2571, 30, 3, 462], [1452, 1460, 20, 140, 11, 15, 26, 3893, 3894, 181, 1, 124, 1, 291, 292, 1, 1145, 295, 4, 1658, 1460, 20, 2, 10534, 80, 239, 69, 225, 418, 1, 1, 55, 1, 1, 39, 14, 38, 295, 4, 1452, 1460, 20, 140, 11, 15, 26, 2, 729, 80, 29, 7, 239, 69, 225, 418], [374, 171, 99, 8, 1229, 548, 2760, 83, 2747, 313, 305, 91, 163, 4428, 275, 2, 43, 3160, 11, 2132, 1595], [14, 25, 33, 15, 13, 10535, 2, 95, 4, 691, 6540, 1116, 4726, 4727, 4728, 220, 149, 685], [1327, 496, 31, 30, 627, 426, 6541, 1327, 65, 451, 627, 7, 56, 10536, 10537, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1327, 496, 31, 30, 627, 426, 6541, 1327, 65, 451, 627, 7, 7, 51, 47, 335, 2, 384, 627, 4, 426, 249, 15, 6, 987, 3315, 98, 763, 2, 6542, 7, 6542, 6, 151, 986, 2, 384, 2198, 1505, 4], [14, 50, 6543, 118, 45, 257, 10, 191, 120, 14, 50, 6543, 118, 45, 257, 10, 191, 120], [6544, 6545, 6, 4, 54, 18, 290, 29, 2, 3, 2744, 3895, 142, 2, 43, 84, 2, 1752, 408, 5, 6544, 6545, 6, 4, 54, 18, 290, 29, 2, 3, 2744, 3895, 142, 2, 43, 84, 2, 1752, 408, 5], [1489, 412, 9, 1164, 3, 177, 1541, 412, 10538, 4, 1489, 412, 42, 8, 2950, 143, 1164, 1, 349, 1, 349, 1877, 1, 2626], [6546, 1494, 42, 8, 3896, 4, 3, 2423, 52, 151, 6, 3086, 4, 3, 894, 2240, 44, 6189, 6547, 1494, 3056, 10539, 219, 2, 4729, 4, 127, 2, 3804, 6547, 1494, 10, 1624, 935, 23, 63, 2303, 514, 205, 869, 311, 2, 205, 869, 1360, 1209, 4, 3, 648, 1538, 18, 875, 3223, 1324, 23, 31, 201, 10540, 4, 6162, 5731], [13, 25, 13, 25], [8, 84, 2, 189, 186, 11, 473, 8, 84, 2, 189, 186, 11, 473, 1, 185, 35, 14, 1377, 983, 1, 14, 10541, 2, 431, 549, 159], [87, 726, 8, 45, 87, 726, 8, 45, 1, 267, 2, 3, 28, 52, 137, 487, 1, 430, 3, 726, 830, 1, 991, 3, 115, 1, 2367, 205, 242, 121, 28, 84, 2, 927, 726, 4409, 1, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [577, 8, 3349, 4673, 4674, 1, 124, 1, 291, 292, 1, 2971, 6400, 6401, 4419, 1, 3193, 243, 577, 8, 3349, 1, 1, 55, 1, 1, 14, 263, 349, 65, 2053, 2199, 30, 3824, 225, 20, 573, 2316, 255, 2, 225, 418, 1, 1, 3897, 1, 3897, 1, 3897], [54, 2, 893, 245, 10, 3, 24, 383, 108, 54, 2, 893, 245, 10, 3, 24, 383, 108], [15, 1004, 15, 1004], [499, 15, 26, 499, 15, 26], [54, 315, 753, 29, 2, 40, 749, 3707, 1501, 54, 315, 753, 29, 2, 40, 749, 3707, 1501], [27, 2, 591, 77, 72, 57, 2305, 241, 1477, 4078, 205, 869, 291, 292, 124, 6548, 209, 550, 550, 550, 82, 791, 20, 4139, 111, 10542, 14, 91, 68, 2513, 3, 1129, 36, 104, 41, 1301, 4730, 3, 31, 2, 106, 23, 14, 103, 3, 56, 18, 3, 1295, 35, 99, 326, 325, 569, 2, 3, 56, 413, 10, 21, 2, 647, 36, 3, 1301, 100, 73, 57, 7, 103, 77, 3, 421, 57, 196, 7, 205, 242, 68, 35, 42, 84, 2, 320, 3, 57], [110, 49, 290, 210, 3273, 2147, 2, 536, 4, 517, 113, 3, 1345, 1508, 65, 2105, 113, 18, 113, 110, 49, 290, 210, 3273, 2147, 2, 536, 4, 517, 113, 3, 1345, 1508, 65, 2105, 113, 18, 113, 67, 21, 99, 8, 2105, 151, 2184, 146, 49, 290, 210, 3273, 2147, 2, 536, 4, 517, 113, 3, 1345, 1508, 65, 2105, 113, 18, 113, 67, 21, 99, 8, 2105, 151], [185, 8, 927, 28, 36, 165, 943, 185, 8, 927, 28, 36, 165, 943, 1, 86, 31], [195, 42, 27, 2, 122, 2, 3, 58, 824, 4, 40, 195, 42, 27, 2, 122, 2, 3, 58, 824, 4, 40, 3, 78, 6, 183, 8, 4369], [235, 108, 453, 2516, 2517, 1, 124, 1, 291, 292, 2985, 1711, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 1, 720, 313, 1, 1, 1, 111, 39, 35, 14, 1040, 33, 235, 10543, 2, 4731, 245, 10, 33, 73, 191, 383], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [235, 108, 453, 235, 108, 453], [27, 2, 122, 519, 10, 3, 148, 27, 2, 122, 519, 10, 3, 148], [307, 30, 797, 2, 34, 203, 4732, 4733, 4734, 65, 3843, 3, 2946, 838, 1349, 7, 749, 2, 40, 2376, 1756, 408, 1408, 58, 254, 2, 546, 203, 67, 169, 827, 142, 6, 699, 251, 2, 10544, 924, 18, 40, 390, 264, 38, 29, 254, 254, 7, 254, 30, 23, 78, 40, 115, 56, 6549, 14, 50, 70, 46, 2403, 11, 28, 10545, 10546, 10547, 183, 28, 653, 2, 312, 23, 102, 53, 754, 53, 285, 53, 408, 636, 134, 6, 164, 6550, 7, 558, 343, 307, 11, 408], [76, 29, 115, 56, 3350, 28, 59, 10548, 76, 29, 115, 56, 3350], [77, 18, 174, 11, 12, 975, 569, 1300, 54, 13, 25, 11, 3, 475, 77, 18, 174, 11, 12, 975, 569, 1300, 54, 13, 25, 11, 3, 475], [41, 8, 590, 41, 8, 590], [9, 466, 36, 165, 943, 738, 121, 9, 466, 36, 165, 943, 738, 121], [2513, 517, 181, 767, 36, 41, 2513, 517, 181, 767, 36, 41], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [15, 50, 55, 1, 51, 335, 2, 118, 10, 2, 15, 412, 7, 204, 1899, 339, 167, 1101, 98, 96, 42, 47, 290, 193], [54, 2, 129, 2851, 3202, 54, 2, 129, 2851, 3202], [27, 2, 515, 41, 27, 2, 515, 41], [15, 117, 2047, 8, 10, 186, 10549, 1, 1, 239, 163, 1231, 433, 3, 117, 2047, 53, 670, 4, 15, 6, 8, 303, 10, 186, 11, 149, 676, 183, 6125, 36, 127, 10550, 10551, 163, 1, 1, 23, 1336, 183, 43, 3, 732, 4, 165, 149, 676, 14, 183, 114], [14, 236, 469, 368, 128, 126, 347, 2, 1109, 128, 126, 381, 1738, 53, 35, 330, 4735, 14, 236, 469, 368, 128, 126, 347, 2, 1109, 128, 126, 381, 1738, 53, 35, 330, 4735], [13, 120, 37, 22, 2, 95, 10552, 172, 14, 25, 33, 230, 33, 86], [3, 6551, 18, 6552, 3485, 6, 8, 45, 56, 6553, 6554, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 356, 6553, 6554, 36, 24, 3864, 51, 335, 2, 189, 186, 3540, 598, 3, 6551, 18, 6552, 3485, 6, 8, 45, 11, 3, 10553, 10554, 507, 11, 1515, 6555, 6, 8, 45, 39, 35, 14, 583, 80, 295], [9, 466, 36, 165, 943, 9, 466, 36, 165, 943], [1674, 98, 121, 258, 1674, 98, 121, 258], [340, 4, 3694, 1110, 719, 14, 663, 7, 736, 3, 1206, 18, 3, 10555, 340, 1967, 4, 3, 3694, 594, 47, 304, 2, 38, 315, 4483, 7, 11, 241, 709, 21, 6, 10556, 4483], [6556, 317, 31, 6556, 317, 31], [54, 587, 13, 25, 54, 587, 13, 25, 86], [13, 125, 20, 13, 120, 13, 25, 50, 7, 403, 13, 125, 20, 13, 120, 13, 25, 50, 7, 403], [30, 74, 947, 1208, 2619, 406, 51, 10557, 3, 74, 10558, 10559, 1242, 12, 2392, 10560, 1208, 3253, 6, 406], [27, 2, 95, 4, 2, 3, 337, 52, 27, 2, 95, 4, 2, 3, 337, 52, 1, 1, 28, 1472, 22], [110, 31, 90, 65, 9, 1628, 1532, 571, 83, 2108, 605, 42, 3793, 158, 3, 10561, 14, 598, 451, 510, 3231, 3232, 90, 2628, 2883], [25, 224, 11, 2113, 10562, 137, 13, 125, 20, 13, 25, 3], [41, 8, 1458, 41, 8, 1458], [346, 131, 4, 547, 6557, 307, 55, 1, 1, 131, 42, 4963, 4, 547, 36, 6557, 916, 1, 1, 47, 336, 3, 709, 4413, 65, 274, 3, 926, 2200, 56, 36, 149, 1638, 2, 344, 149, 1638, 1, 4, 2645, 151, 6, 73, 926, 2200, 441, 763, 1, 1, 4604, 6, 1631, 393, 3, 119, 7, 3, 661, 505, 18, 3, 451, 926, 2817, 1, 1, 35, 662, 54, 2, 119, 251, 83, 3, 440, 855, 134, 172, 1, 1, 1, 135], [79, 13, 25, 79, 13, 25], [41, 31, 55, 6558, 1, 1, 14, 39, 35, 50, 63, 635, 2, 119, 224, 10, 13, 125, 20, 120, 7, 112, 38, 588, 23, 38, 330, 2195, 10, 33, 475, 53, 332, 3, 96, 464], [202, 675, 64, 202, 675, 64], [235, 108, 1565, 235, 108, 1565], [4, 391, 577, 1341, 4, 225, 418, 55, 1, 1, 169, 3505, 18, 3061, 18, 577, 1341, 294, 52, 47, 38, 884, 1379, 907, 4089, 3, 52, 6, 10563, 661, 577, 1341, 11, 437, 149, 745, 10564, 165, 467, 197, 3084, 1, 1, 4, 23, 133, 2837, 10565, 181, 446, 36, 101, 1, 1, 102, 35, 2, 366, 158, 23, 10566, 53, 21, 6, 2755, 158, 933, 1600], [4736, 64, 77, 14, 132, 10567, 4, 226, 7, 15, 26, 175, 10568, 6, 45, 10, 632, 30, 6559, 7, 65, 1092, 44, 408, 224, 42, 9, 345, 45, 2, 29, 131, 33, 6560, 6, 44, 390, 351, 408, 224, 6094, 98, 748, 226, 7, 374, 26, 7, 6, 64, 77, 18, 197, 62, 600, 14, 38, 366, 12, 2684, 408, 32], [54, 2, 95, 158, 87, 11, 191, 97, 29, 87, 11, 191, 30, 33, 46, 871], [15, 88, 10569, 2835, 28, 31, 28, 908, 10570, 2093, 2835, 37, 53, 332, 163, 167], [29, 2, 76, 543, 28, 2, 3, 223, 159, 6561, 99, 205, 242, 7, 121, 4, 68, 180, 65, 143, 210], [224, 10571, 55, 1, 1, 14, 255, 3671, 1386, 3, 224, 255, 79, 7, 15, 1, 1, 781, 35, 1, 1, 135, 750], [142, 542, 134, 142, 2140, 67, 1087, 7, 870, 526, 134, 1912, 46, 3306, 7, 1450, 837, 1087, 7, 870, 3207, 10], [553, 204, 957, 2739, 463, 31, 57, 331, 2, 935, 7, 1706, 101, 111, 101, 935, 101, 1706, 1, 1, 14, 663, 3, 553, 204, 368, 42, 98, 7, 327, 21, 6, 323, 339, 167, 12, 3, 1127, 1, 1, 38, 243, 4494, 83, 3, 136, 2739, 67, 21, 187, 8, 50, 1, 1, 14, 525, 12, 72, 1131, 1, 1, 99, 189, 34, 4, 532, 858, 7, 70, 581], [15, 26, 32, 132, 15, 26, 32, 132], [32, 64, 32, 64], [15, 31, 30, 3898, 55, 1, 1, 15, 89, 8, 189, 2, 456, 411, 18, 3, 177, 37, 71], [51, 1125, 3, 10572, 1340, 2152, 426, 3, 347, 97, 43, 10573, 246, 35, 14, 544, 3, 1340, 207, 44, 39, 909, 21, 257], [15, 26, 32, 132, 15, 26, 32, 132], [14, 189, 460, 55, 1, 1, 14, 189, 460, 1, 1, 797, 28, 10574, 10575, 1, 1, 217, 10576, 10577], [3899, 3900, 95, 10, 792, 37, 11, 26, 7, 26, 3899, 3900, 95, 10, 792, 37, 11, 26, 7, 26], [2451, 286, 565, 10, 6, 172, 184, 6, 96, 435, 617, 18, 2451, 286, 565, 10, 6, 172, 184, 6, 96, 435, 617, 18], [14, 236, 98, 3, 721, 7, 633, 898, 11, 3, 3794, 218, 365, 334, 1, 1, 14, 236, 98, 3, 721, 7, 633, 898, 255, 218, 3794, 1, 1, 781, 35, 1, 1, 1, 1, 1, 1, 2685, 556, 2395], [1662, 3, 119, 588, 11, 1550, 1662, 3, 119, 588, 11, 1550, 14, 326, 3, 377, 11, 3, 31, 44, 195, 42, 843], [412, 7, 204, 1899, 31, 412, 7, 204, 1899, 31, 6, 339, 4, 553, 39, 46, 2, 412, 7, 1899, 36, 338, 67, 9, 412, 302, 6, 178, 86], [1644, 220, 542, 373, 365, 334, 51, 2227, 413, 10, 3, 1644, 1293, 10, 33, 527, 2140, 3, 2164, 590, 347, 67, 169, 532, 2477, 3, 220, 735, 1737, 7, 3, 447, 542, 373, 458], [553, 208, 83, 1, 1, 39, 612, 14, 114, 7, 398, 3, 123, 1, 1, 149, 3689, 1092, 44, 3, 440, 42, 8, 178, 4, 553, 1, 1, 425, 454, 7, 183, 118, 3, 37, 71], [79, 32, 64, 365, 483, 1, 1, 14, 132, 195, 79, 32], [437, 1552, 7, 780, 136, 346, 10, 1290, 4153, 1560, 91, 464, 437, 1552, 7, 780, 136, 346, 10, 1290, 4153, 1560, 91, 464], [27, 2, 878, 10, 3, 142, 27, 2, 878, 10, 3, 142], [461, 452, 66, 69, 8, 2362, 461, 452, 66, 69, 6, 323, 201, 2023, 461, 1, 68, 2008, 2412, 6, 1605, 53, 47, 21, 63, 323, 201, 2023, 461, 1, 68, 2008, 2412, 6, 3031, 53, 339, 21, 63, 323, 421, 461, 588, 10, 44, 69], [1599, 196, 1190, 42, 1805, 10, 223, 916, 88, 1697, 1796, 1599, 196, 1190, 73, 7, 1158, 2760, 10, 223, 916, 88, 1697], [40, 6, 8, 545, 112, 12, 49, 105, 10, 40, 6, 8, 545, 112, 12, 49, 105, 10], [14, 206, 73, 28, 2, 24, 2986, 7, 6562, 6563, 14, 206, 73, 28, 2, 24, 2986, 7, 6562, 6563, 211, 86, 7, 1710, 53, 613], [3901, 3902, 32, 808, 3901, 3902, 32, 808], [13, 25, 128, 126, 123, 55, 1, 274, 33, 224, 23, 334, 30, 13, 120, 67, 49, 290, 193, 2397, 33, 128, 126, 10, 128, 126, 21, 790, 783, 80, 2, 322, 3, 73, 13, 257, 7, 257, 1, 3, 2577, 1161, 174, 10, 600, 3, 1427, 7, 3, 235, 42, 45, 837, 30, 3, 73, 13, 355, 128, 126, 6, 290, 123, 1, 143, 3774, 1, 1, 458], [27, 2, 509, 1370, 7, 513, 30, 73, 148, 208, 491, 1, 1, 38, 268, 73, 148, 382, 877, 30, 184, 49, 27, 2, 509, 4407, 7, 513, 36, 174, 74, 1, 308, 50, 4, 2179, 3, 31, 1, 1, 135], [50, 25, 15, 26, 872, 160, 32, 13, 6564, 15, 26, 872, 160, 32, 13, 274, 22, 4, 13, 125, 20, 52, 15, 547, 39, 8, 46, 172, 1, 28, 59, 6564, 1, 1, 1, 111, 1, 1, 14, 50, 10, 33, 31, 96], [37, 10578, 13, 119, 111, 351, 3, 96, 71, 514, 13, 119, 308, 50, 1, 1, 2352, 1845, 227, 4737, 1, 1, 30], [1686, 1362, 21, 123, 82, 20, 1130, 394, 6, 8, 937, 671, 771, 1, 382, 1, 1, 1284, 604], [5, 5, 22, 4, 5, 19, 12, 49, 37, 3903, 40, 2047, 3903, 6, 659, 1, 1, 5, 5, 22, 4, 5, 19, 12], [161, 1481, 3557, 6565, 6566, 10579, 142, 6, 406, 55, 1, 1, 3, 142, 18, 161, 1481, 10580, 6565, 6566, 10581, 6, 406, 1, 39, 35, 14, 884, 272], [142, 255, 1691, 108, 3904, 89, 8, 134, 3888, 142, 255, 1691, 108, 3904, 89, 8, 134, 3888], [193, 30, 6567, 6568, 6569, 1080, 1053, 193, 30, 6567, 6568, 6569, 1080, 1053], [193, 30, 405, 6570, 362, 47, 823, 1554, 1555, 193, 30, 405, 6570, 362, 47, 823, 1554, 1555], [32, 64, 32, 64], [131, 6571, 6572, 6573, 97, 6131, 175, 133, 131, 6571, 6572, 6573, 6, 275, 2, 317, 3, 719, 2801, 7, 169, 415, 145, 151, 6, 9, 58, 133, 2, 3, 124, 115], [194, 76, 31, 110, 97, 122, 2, 194, 76, 137, 624, 18, 3, 2128, 96, 1, 1800, 21, 65, 829, 2, 106, 30, 1348, 606, 597, 44, 1571, 1209, 10, 1, 14, 398, 3, 123, 207, 44, 39, 122, 2, 76], [1595, 18, 155, 29, 11, 348, 115, 10582, 10583, 12, 1173, 348, 222, 138, 196, 10584, 4738, 2325, 196, 175, 293, 56, 6574, 200, 1773, 36, 3, 348, 3629, 36, 2226, 6, 30, 166, 11, 520, 2763, 47, 54, 3, 155, 29, 4, 3, 348, 11, 593, 102, 104, 1944, 295, 6575, 120, 6576, 82], [39, 8, 189, 1501, 302, 1998, 102, 2, 3, 1345, 1508, 4069, 2595, 10585, 1, 1, 57, 1, 10586, 10587, 1, 124, 1, 291, 292, 1, 39, 8, 189, 1501, 302, 1, 1, 50, 564, 1, 1, 393, 3, 1224, 18, 249, 9, 47, 479, 2, 119, 36, 2144, 1, 1, 14, 326, 3, 163, 367, 1, 47, 38, 193, 1, 3, 1501, 302, 97, 468, 66, 976, 1, 3, 1501, 302, 97, 189, 66, 3475, 1, 1, 1, 135], [1327, 208, 101, 47, 54, 2, 1420, 473, 363, 50, 2, 2653, 558, 225, 20, 3620, 4, 1696, 1498, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [32, 11, 3901, 3902, 6577, 6, 64, 14, 132, 32, 11, 3901, 3902, 6577, 6, 64, 14, 132], [13, 2264, 4, 540, 208, 83, 33, 13, 1687, 77, 4, 540, 49, 4709, 7, 38, 9, 2604, 2, 884, 158, 3, 24, 58, 14, 946, 33, 628, 13, 599, 3, 18], [27, 2, 236, 87, 381, 4, 41, 27, 2, 236, 87, 381, 4, 41], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [151, 1219, 143, 503, 426, 117, 10588, 127, 3, 117, 159, 18, 117, 65, 141, 10589, 53, 3314, 7, 63, 1591, 503, 18, 3, 1560, 249, 38, 141, 10590, 4, 52, 67, 3, 127, 1219, 30, 143, 503, 10, 21, 14, 114, 7, 270, 80, 253, 85, 385, 4, 52, 11, 21, 3, 117, 6, 4, 10591, 54, 18, 3, 127, 14, 795, 3, 123, 11, 166, 510, 1, 14, 326, 3, 537, 36, 3, 163], [299, 523, 4, 285, 760, 1056, 380, 36, 608, 401, 2, 2085, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 2233, 1789, 1, 301, 138, 1, 301, 40, 2085, 1, 301, 247, 1, 28, 56, 10592, 10593, 1, 271, 10594, 358, 10595, 1742, 2085, 1, 953, 233, 8, 399, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 2233, 1789, 1, 301, 138, 1, 301, 40, 2085, 1, 301, 247, 1, 133, 903, 977, 1, 801, 139, 1, 352, 233, 252, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 1213, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 10596, 1404, 10597, 671, 3800, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 401, 2956, 2957, 2442, 441, 1, 1, 512, 352, 40, 1812, 2235, 144, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 259, 476, 1839, 1, 228, 3302, 845, 10598, 226, 1230, 1, 960, 1346, 1839, 352, 1, 227, 228, 1095, 1, 228, 478, 3833, 3834, 1, 227, 175, 1392, 2234, 341, 1, 557, 3835, 2058, 1, 259, 478, 1981, 1, 227, 259, 505, 103, 1719, 1, 228, 1394, 557, 3324, 1863, 122, 1, 228, 1356, 1177, 478, 6272, 735, 236, 1, 228, 1267, 259, 1213, 2235, 1, 10599, 1, 476, 4739, 1, 228, 26, 592, 962, 401, 2442, 1, 478, 1177, 557, 105, 271, 4570, 1, 1269, 557, 306, 4571, 2941, 2956, 1, 228, 306, 962, 2957, 2442, 441, 1, 10600, 1, 10601, 1, 226, 1269, 465, 1, 557, 306, 228, 1812, 2956, 2957, 1, 962, 2442, 441, 2035, 1, 10602, 1, 4739, 1, 427, 643, 227], [358, 358, 1976, 24, 262, 1204, 1976, 29, 10603, 7, 443, 605, 696, 75, 12, 49, 105, 10, 5, 56], [27, 2, 100, 1549, 4740, 287, 55, 1, 1, 49, 27, 2, 100, 1549, 7, 4740, 287, 363, 106, 3, 807, 1, 1, 4321, 4322, 1, 3618, 120, 149, 1, 24, 361, 1335, 361], [288, 2, 1203, 320, 71, 4, 41, 288, 2, 1203, 320, 71, 4, 41], [25, 3, 13, 11, 10604, 10605, 10, 15, 160, 1245, 25, 13], [1608, 751, 12, 6578, 406, 1608, 751, 12, 6578, 406, 1073, 10606], [535, 10607, 3761, 130, 441, 1350, 6, 8, 430, 1, 14, 129, 104, 718], [24, 82, 20, 29, 55, 14, 50, 80, 2, 29, 3, 24, 82, 20, 20, 131, 52, 7, 88, 24, 82, 20, 6, 783, 57, 7, 13, 2, 100, 7, 248, 21, 30, 33, 57, 7, 13, 67, 21, 6, 323, 626, 59, 7, 13, 207, 14, 106, 807, 2820, 35, 10608], [27, 2, 122, 2, 82, 20, 27, 2, 122, 2, 82, 20], [39, 8, 95, 158, 76, 56, 6579, 6580, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 8, 95, 158, 76], [6581, 6582, 6583, 283, 52, 6, 64, 7, 180, 6, 8, 84, 2, 95, 4, 56, 2600, 1, 182, 1, 213, 130, 155, 204, 1, 117, 107, 1, 214, 1, 146, 6581, 6582, 6583, 283, 52, 6, 64, 7, 180, 6, 8, 84, 2, 95, 4], [1346, 39, 8, 43, 1014, 208, 21, 1, 1, 3, 646, 39, 8, 43, 1014, 11, 96, 472, 246, 35, 363, 50, 2, 114], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [5309, 131, 36, 376, 2, 73, 148, 55, 1, 1220, 3, 13, 18, 376, 148, 7, 38, 2, 436, 3, 179, 2, 361, 174, 1, 389, 987, 44, 479, 2, 660, 241, 131, 1892, 82, 418, 1, 185, 35, 14, 50, 80, 4, 2179, 3, 31], [79, 32, 64, 79, 32, 64], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [831, 12, 435, 233, 831, 323, 435, 233], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76, 76], [132, 15, 397, 55, 1, 14, 50, 80, 132, 15, 397, 39, 8, 397, 3, 15, 52, 1019, 33, 13, 1, 1, 135], [299, 20, 13, 120, 200, 75, 4, 1699, 78, 846, 846, 299, 20, 220, 6, 75, 1, 1699, 56, 299, 20, 13, 120, 6, 75], [40, 474, 1227, 160, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362, 512, 40, 474, 1227, 160, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362], [40, 198, 375, 198, 178, 356, 40, 369, 370, 900, 40, 2444, 10, 78, 40, 6, 272, 1, 198, 375, 198, 178, 356], [2451, 286, 198, 375, 198, 178, 387, 2451, 369, 370, 900, 2451, 1374, 10, 78, 2451, 6, 272, 1, 198, 375, 198, 178, 387], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12], [5, 654, 374, 26, 948, 1444, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1444, 22, 4, 5, 19, 12], [378, 288, 39, 119, 33, 13, 2315, 356, 4498, 7, 21, 2264, 4, 540, 181, 331, 36], [8, 84, 2, 29, 2, 62, 824, 56, 10609, 10610, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 1797, 75, 33, 148, 7, 937, 76, 257, 65, 8, 1766, 3, 31, 106, 8, 38, 29, 2, 62, 824, 310, 749, 7, 188, 39, 106, 143, 134, 599, 23, 29, 6, 1368, 14, 50], [27, 2, 122, 2, 41, 27, 2, 122, 2, 41], [209, 174, 400, 209, 174, 400, 129, 9], [61, 2346, 22, 10, 2025, 6584, 6585, 49, 1438, 10611, 243, 865, 488, 5423], [40, 3, 200, 6, 75, 169, 3, 1935, 827, 2448, 362, 40, 3, 200, 6, 75, 169, 3, 1935, 827, 2448, 362], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12, 5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [58, 94, 3891, 48, 531, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [40, 370, 1010, 40, 773, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387, 40, 370, 1010, 40, 773, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387], [4741, 2515, 4741, 2515], [15, 46, 13, 31, 55, 1, 1, 843, 15, 46, 123, 13, 31, 1, 1, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [82, 20, 400, 209, 174, 400, 76, 29, 15, 29, 82, 20, 400, 209, 174, 400, 76, 29, 15, 29], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [76, 31, 111, 3275, 1, 1, 1282, 2, 927, 18, 3, 210, 30, 309, 7, 76, 44, 35, 243, 1085, 1, 1, 35, 106, 38, 29, 2, 76, 172, 7, 264, 43, 84, 2, 122, 294, 1, 1, 183, 14, 185, 35, 818, 3, 37, 35, 38, 51, 250, 2, 118, 158, 309, 1563, 151, 63, 119, 4, 104, 2104, 233, 184, 1336, 43, 6586, 2, 21, 67, 99, 54, 2, 778, 14, 818, 51, 3, 521, 1571, 1209, 7, 3, 37, 71], [309, 31, 111, 3275, 1, 1, 1282, 2, 927, 18, 3, 210, 30, 309, 7, 76, 44, 35, 243, 1085, 1, 1, 35, 106, 38, 29, 2, 76, 172, 7, 264, 43, 84, 2, 122, 294, 1, 1, 183, 14, 185, 35, 818, 3, 37, 35, 38, 51, 250, 2, 118, 158, 309, 1563, 151, 63, 119, 4, 104, 2104, 233, 184, 1336, 43, 6586, 2, 21, 67, 99, 54, 2, 778, 14, 818, 51, 3, 521, 1571, 1209, 7, 3, 37, 71], [15, 26, 32, 64, 15, 26, 32, 64], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [61, 94, 6587, 24, 24, 10612, 6587, 618, 60, 6, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 17, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [3, 690, 88, 919, 2987, 6, 260, 75, 233, 10, 24, 88, 1421, 944, 1303, 3051, 441, 1887, 96, 559, 4, 850, 20, 112, 49, 105, 10, 1, 1, 220, 690, 88, 919, 2987, 10, 768, 24, 88, 1421, 944, 1303, 3051, 441, 6, 75], [262, 76, 6, 8, 164, 267, 262, 76, 6, 8, 164, 267, 14, 525, 12, 72, 1131], [60, 94, 90, 1285, 76, 60, 6, 75, 112, 12, 49, 105, 10, 48, 38, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 176, 160, 359, 37, 160, 127, 238, 69, 1724, 4742, 27, 2, 176, 160, 359, 112, 372, 1901, 1, 28, 63, 987, 2524, 483, 7, 779, 44, 180, 99, 129, 257, 10, 11, 23, 31, 1, 8, 614, 68, 2577, 18, 195, 4, 361, 113, 843, 179, 31, 1, 10613, 136, 11, 31, 30, 464, 7, 1977, 2, 3288, 101, 1, 1, 1, 133, 2, 52, 160, 127, 238, 297, 4742, 30, 301, 160, 127, 238, 69, 1724, 4742, 6, 8, 1520], [32, 64, 77, 32, 64, 77], [32, 10614, 77, 146, 13, 119, 6, 64, 54, 2, 119, 83, 13], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [6588, 76, 6, 8, 45, 55, 3052, 18, 3, 483, 14, 263, 44, 3, 6588, 76, 6, 8, 45, 4, 33, 52, 96, 222, 42, 11, 104, 450, 136, 201, 28, 59, 10615, 52, 59, 1111, 14, 326, 96, 3, 10616, 49, 496, 329, 250, 2, 199, 76, 14, 106, 3, 807], [58, 94, 358, 48, 531, 75, 112, 124, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1236, 784, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [87, 46, 31, 87, 46, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 87, 1, 31, 321], [9, 395, 329, 10, 87, 381, 9, 395, 329, 10, 87, 381], [1025, 632, 70, 41, 31, 30, 2146, 72, 925, 4, 3, 381, 2811, 209, 632, 925, 4740, 1171, 55, 24, 21, 50, 1, 1, 11, 241, 709, 3, 925, 4, 3, 5059, 89, 8, 468, 98, 53, 35, 39, 91, 96, 3, 201, 1262, 6, 23, 10617, 1, 1, 6, 23, 72, 31, 10, 33, 591, 288, 41, 6, 280, 62, 829, 36, 3, 689, 943], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3, 2290, 133, 2, 3637, 376, 9, 345, 507, 2, 29, 3637, 131, 29, 39, 9, 345, 122, 2, 6081, 3637, 376, 47, 54, 23, 133, 2, 4608, 2584, 131, 14, 574, 2, 2851, 3202], [245, 8, 638, 4, 41, 245, 8, 638, 4, 41], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [70, 174, 2, 771, 56, 5834, 5835, 182, 213, 130, 155, 204, 117, 107, 214, 146, 70, 174, 2, 771], [87, 37, 87, 37], [27, 2, 436, 822, 455, 27, 2, 436, 822, 455], [339, 121, 533, 339, 121, 533], [14, 211, 632, 251, 10, 3, 1521, 115, 14, 211, 632, 251, 10, 3, 1521, 115], [4, 82, 20, 51, 335, 2, 189, 73, 1291, 241, 18, 3, 615, 42, 8, 357, 1086, 4, 82, 20, 51, 335, 2, 189, 73, 1291, 241, 18, 3, 615, 42, 8, 357, 1086, 1, 1, 14, 622, 3, 377], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [431, 6589, 3182, 20, 13, 25, 431, 6589, 3182, 20, 13, 25], [1297, 242, 566, 2, 43, 430, 1297, 242, 566, 2, 43, 430], [1550, 55, 1518, 195, 99, 384, 71, 2, 397, 2, 3905, 3906, 1276, 1388, 3351, 3352], [34, 70, 965, 34, 70, 965], [28, 219, 29, 2, 3, 82, 20, 28, 219, 29, 2, 3, 82, 20], [27, 2, 206, 1091, 2, 1148, 302, 2, 384, 3234, 4, 88, 27, 2, 206, 1091, 2, 1148, 302, 2, 384, 3234, 4, 88, 28, 59, 10618, 129, 9], [439, 4, 1390, 455, 436, 619, 1894, 138, 2253, 2254, 221, 138, 221, 40, 2253, 2254, 28, 56, 10619, 10620, 6590, 271, 90, 1277, 2565, 953, 233, 175, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 3059, 1390, 455, 436, 619, 1894, 138, 364, 11, 380, 36, 2253, 2254, 2, 3, 415, 138, 196, 18, 65, 141, 1894, 66, 161, 2613, 2578, 1248, 2094, 101, 311, 2, 558, 6591, 30, 760, 1390, 455, 436, 619, 3, 952, 928, 264, 43, 4743, 53, 380, 2, 3, 1894, 138, 196, 701, 44, 3, 293, 65, 141, 802, 66, 760, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 181, 201, 319, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 315, 776, 11, 442, 388, 313, 305, 34, 7, 86, 121, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1270, 93, 131, 93, 59, 93, 146, 3059, 1390, 455, 436, 619, 1894, 138, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 2253, 2254, 221, 1381, 196, 1310, 1333, 301, 138, 301, 40, 138, 138, 6592, 441, 301, 138, 1057, 6593, 90, 133, 903, 1646, 108, 136, 108, 138, 108, 56, 24, 318, 154, 24, 144, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 296, 59, 93, 537, 154, 3247, 619, 139, 133, 11, 240, 2, 109, 688, 131, 785, 786, 10, 2, 1310, 1333, 2253, 2254, 192, 787, 775, 788, 658, 712, 509, 354, 34, 354], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [736, 1197, 492, 3, 2210, 1014, 4, 492, 42, 2333, 30, 3664], [1913, 20, 200, 173, 2670, 4744, 65, 274, 3, 10621, 10622, 422, 200, 497, 3, 1913, 20, 200, 2, 4608, 1514, 2378, 11, 82, 20, 1, 1688, 23, 229, 3474, 2, 3, 1913, 20, 205, 242, 200, 1, 1, 1100, 265, 3, 2670, 4744, 65, 274, 4, 3, 372, 532, 540, 7, 287, 969, 66, 23, 200, 42, 357, 2525, 30, 355, 3, 1023, 125, 107, 1, 387, 249, 4, 26, 91, 3, 163, 550, 82, 20, 4745, 1535, 11, 316, 222, 1, 1, 3, 119, 6, 1278, 210, 30, 2378, 8, 357, 969, 2, 82, 20, 1, 82, 20, 99, 43, 10623, 12, 2678, 937, 10, 3, 1, 54, 72, 307, 398, 2, 1662, 143, 521, 44, 1336, 38, 141, 912, 2, 3, 173, 2670, 4744, 11, 287, 36, 3, 1913, 20, 200, 1, 1, 96, 42, 3, 1050, 2988, 10624, 330, 4746, 11, 173, 1129, 11, 1514, 287, 969, 66, 23, 200, 1, 581, 42, 3, 4746, 2670, 2988, 1, 1, 68, 151, 6, 1514, 1536, 2089, 21, 1271, 1, 1825, 68, 151, 6, 1514, 1536, 2088, 21, 1271, 1, 1825, 1345, 1508, 6, 1271, 1, 72, 10625, 2339, 1514, 10626, 103, 6, 543, 1, 1888, 3, 1050, 173, 1393, 6, 543], [34, 70, 10, 258, 34, 70, 10, 258], [382, 910, 3458, 169, 21, 63, 2283, 3235, 382, 910, 3458, 169, 21, 63, 2283, 3235], [631, 623, 193, 49, 10627, 35, 53, 47, 38, 193, 30, 161, 631, 623, 11, 1215, 2506, 1152, 10628, 10629, 1, 825, 567, 1163, 704, 23, 4549, 184, 1680, 187, 8, 1287, 2, 1621, 1340, 1, 2118, 21, 6, 15, 182, 123, 11, 33, 934, 1, 3227, 1828, 44, 35, 39, 50, 2, 118, 23, 833, 1, 1, 3, 631, 4359, 11, 161, 668, 42, 53, 2647, 3613, 448, 6, 3, 149, 568, 4, 117, 32, 1, 1329, 6594, 6595, 6596, 6597, 53, 10630, 68, 285, 1, 1329, 6594, 6595, 6596, 6597, 53, 4747, 68, 285, 1, 1329, 10631, 10632, 6598, 6599, 53, 4747, 68, 285, 1, 1329, 2339, 2250, 10633, 6598, 6599, 53, 4747, 68, 285, 1, 1, 21, 2335, 1147, 44, 261, 2785, 42, 2142, 2, 3, 385, 568, 1, 1297, 242, 698, 1327, 63, 2142, 2, 80, 12, 1329, 7, 495, 67, 276, 2, 10634, 10635, 12, 1329, 10636, 65, 680, 2, 106, 30, 21, 1, 1, 21, 1428, 1239, 18, 116, 2, 10637, 3, 385, 2142, 2785, 7, 2, 844, 444, 2, 3, 1748, 568, 1, 1, 1663, 104, 50], [726, 8, 45, 726, 8, 45], [15, 99, 8, 100, 111, 6, 15, 75, 11, 76, 195, 737, 164, 23, 37, 541, 116, 335, 2, 95, 10, 2, 26, 63, 4, 15, 2616, 1311, 30, 9, 4155, 14, 50, 3805, 3806, 1769], [70, 10, 258, 70, 10, 258], [110, 250, 2, 176, 2, 161, 58, 74, 3885, 306, 110, 250, 2, 176, 2, 161, 58, 74, 3885, 306], [110, 63, 3157, 77, 18, 76, 67, 49, 6600, 172, 76, 706, 45, 67, 63, 84, 2, 6600, 169, 532, 858], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 51, 637, 4, 2, 374, 14, 91, 163, 37, 44, 384, 51, 250, 2, 95, 4, 2, 374], [27, 2, 46, 2, 26, 27, 2, 46, 2, 26], [110, 49, 64, 77, 18, 188, 239, 1528, 54, 33, 13, 25, 23, 6, 343, 307, 53, 38, 414, 440, 755, 1216, 110, 49, 64, 77, 18, 188, 239, 1528, 54, 33, 13, 25, 23, 6, 343, 307, 53, 38, 414, 440, 755, 1216, 36, 151, 23, 334], [79, 13, 25, 11, 6601, 3251, 79, 13, 25, 11, 6601, 3251], [10638, 10639, 227, 10640, 65, 23, 376, 148, 44, 180, 219, 2, 46, 2, 67, 97, 51, 21, 6, 267, 2, 3, 58, 37, 299, 603, 10, 3, 78, 89, 8, 38, 142, 32, 11, 23, 1427, 1999, 2452, 180, 39, 746, 558, 8, 267, 30, 72, 376, 13, 180, 219, 2, 2885, 241, 10641, 7, 283, 73, 148, 89, 8, 38, 1394, 254, 14, 91, 424, 23, 148, 97, 43, 336, 4, 226, 1769], [87, 395, 6, 8, 45, 87, 395, 6, 8, 45], [76, 76, 6, 8, 45, 54, 307, 50, 135], [162, 82, 418, 27, 2, 373, 440, 36, 705, 27, 2, 373, 440, 36, 705], [27, 2, 515, 191, 217, 441, 1350, 219, 2, 43, 430, 4748, 3, 528, 18, 441], [32, 132, 15, 26, 499, 3, 32, 10642, 63, 84, 2, 118, 4, 1254], [27, 2, 515, 87, 27, 2, 515, 87], [27, 2, 515, 41, 27, 2, 515, 41], [27, 2, 95, 158, 87, 55, 1, 49, 164, 72, 37, 250, 2, 95, 158, 87, 33, 196, 6, 391, 95, 4, 59, 6, 391, 7, 13, 6, 391, 7, 38, 248, 532, 420, 7, 118, 3, 179, 37, 85, 106, 54, 2, 106, 43, 84, 2, 95, 158, 87], [32, 107, 626, 307, 3193, 1, 1, 332, 161, 10643, 7, 1949, 18, 33, 167, 10, 487, 23, 334, 96, 6, 167, 554, 18, 3, 32, 31, 1, 1, 68, 35, 366, 12, 1464, 462, 107, 10644, 21, 65, 3, 391, 32, 107, 11, 3, 117, 44, 10645, 63, 350, 10, 7, 151, 63, 9, 123, 2627, 44, 391, 32, 107, 1, 1, 83, 18, 3, 165, 1246, 428, 350, 316, 828, 169, 7, 63, 201, 84, 2, 1961, 32, 107, 184, 6, 8, 3, 391, 32, 107, 1, 1, 54, 2, 735, 261, 77, 310, 53, 855], [15, 82, 20, 64, 77, 15, 82, 20, 64, 77], [6602, 6603, 6604, 2658, 55, 1, 1, 6602, 6603, 63, 72, 3353, 44, 47, 10646, 10, 315, 116, 821, 47, 3770, 3, 312, 18, 290, 408, 376, 120, 660, 408, 2, 408, 73, 120, 4, 2095, 7, 276, 408, 73, 120, 670, 408, 73, 5, 7, 2423, 136, 265, 180, 141, 6605, 2, 716, 38, 2, 43, 6606, 408, 6604, 2658, 65, 141, 10647, 207, 2032, 390, 530, 44, 541, 116, 390, 497, 4749, 2, 50, 408, 77, 284, 42, 8, 343, 5669, 62, 353, 408, 210, 4749, 99, 1667, 408, 21, 72, 21, 123, 7, 21, 99, 1667, 408, 44, 21, 72, 162, 123, 581, 42, 241, 18, 3, 210, 44, 390, 273, 290, 1, 1, 1, 9, 29, 2, 3415, 136, 10, 128, 20, 51, 390, 2647, 3, 10648, 44, 390, 63, 1118, 390, 1061, 72, 37, 71, 44, 530, 219, 631, 102, 65, 141, 1260, 1, 1, 9, 309, 29, 1, 1, 9, 324, 171, 29, 390, 63, 84, 2, 322, 408, 324, 171, 716, 51, 390, 696, 2, 436, 21, 390, 351, 72, 37, 71, 7, 172, 51, 390, 1639, 2, 95, 4, 390, 1061, 72, 37, 71, 21, 1359, 44, 23, 6, 72, 21, 123, 1, 1, 9, 29, 2, 3, 76, 257, 21, 1359, 44, 162, 219, 2, 70, 3, 26, 356, 8, 1754, 614, 85, 44, 6, 1, 1, 626, 6607, 390, 187, 8, 384, 3907, 10, 1591, 408, 44, 4750, 51, 408, 136, 63, 1320, 414, 1336, 8, 38, 10649, 3, 3908, 44, 390, 2143, 172, 7, 276, 21, 264, 83, 43, 1524, 10, 408, 3907, 10650, 2305, 408, 576, 7, 912, 21, 726, 265, 1319, 63, 601, 2, 43, 1524, 10, 408, 3907, 67, 276, 331, 1674, 98, 57, 1612, 44, 411, 534, 1448, 390, 63, 8, 601, 2, 43, 84, 2, 10651, 7, 3, 821, 341, 11, 23, 119, 63, 601, 2, 38, 2, 43, 390, 1007, 3275, 2, 269, 408, 655, 1067, 36, 23, 6, 8, 601, 2, 134, 411, 3275, 706, 1925, 408, 655, 112, 390, 6, 172, 10652, 223, 390, 63, 183, 12, 24, 1110, 3, 593, 18, 7, 10653, 1067, 986, 316, 467, 655, 44, 593, 411, 390, 63, 934, 18, 964, 10654, 7, 169, 655, 101, 1917, 2148, 1, 1, 39, 612, 36, 21, 7, 667, 368, 43, 408, 5660, 129, 7, 134, 30, 408, 294, 261, 210, 599, 1319, 6, 5853, 77, 68, 829, 6, 72, 21, 31, 39, 4749, 1674, 98, 30, 21, 207, 390, 8, 357, 10655, 251, 7, 10656, 390, 6, 2511, 10657, 7, 201, 65, 599, 569, 2, 2200, 77, 408, 1590, 389, 408, 3909, 10658, 6, 98], [13, 25, 15, 26, 13, 25, 15, 26], [238, 1609, 40, 10, 3069, 6, 75, 112, 49, 10, 105, 238, 1609, 40, 10, 3069, 6, 75, 112, 49, 10, 105], [15, 26, 13, 25, 15, 26, 13, 25], [76, 1004, 76, 1004], [76, 55, 118, 3, 177, 37, 51, 335, 2, 170, 76, 183, 68, 335, 2, 106, 3, 211, 21, 530, 54, 522, 1473, 135], [14, 509, 2421, 18, 6608, 866, 426, 40, 14, 509, 2421, 18, 6608, 866, 426, 40], [87, 505, 8, 323, 98, 4, 381, 87, 505, 8, 323, 98, 4, 381], [37, 1999, 2452, 748, 23, 1427, 7, 3, 640, 401, 22, 117, 107, 214, 146, 51, 49, 2194, 36, 33, 142, 11, 2087, 18, 116, 62, 1510, 12, 170, 98, 49, 164, 3, 177, 37, 71, 3, 1999, 2452, 748, 23, 1427, 7, 3, 640, 401, 22, 21, 6, 10659, 2, 737, 290, 2, 3200, 827, 33, 142, 51, 49, 2194, 36, 33, 564, 11, 116], [87, 10660, 864, 208, 21, 805, 33, 4108, 864, 239, 18, 1033, 33, 239, 3354, 6609, 120, 1051, 24, 667, 368, 879, 1848, 1943, 1849, 1137, 1138, 1082, 1141], [41, 8, 590, 41, 8, 590], [501, 297, 116, 77, 37, 501, 297, 116, 77, 37], [15, 26, 13, 25, 15, 26, 13, 25], [32, 1393, 11, 6610, 6611, 6612, 32, 1393, 11, 6610, 6611, 6612, 946, 3, 32, 11, 517, 10661, 1300], [5, 551, 209, 3851, 203, 22, 4, 5, 19, 12, 5, 551, 209, 3851, 203, 22, 4, 5, 19, 12], [395, 1462, 45, 169, 24, 70, 395, 108, 5943, 45, 169, 24, 70, 468, 3, 71, 9, 395, 629, 108, 6, 430, 1, 316, 6501, 38, 330, 23, 1237], [27, 2, 46, 2, 3821, 40, 294, 2858, 217, 27, 2, 46, 2, 3821, 40, 294, 2858, 217, 308, 114, 3, 31], [27, 2, 189, 186, 2183, 2774, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 358, 1, 1, 31, 665, 37, 71, 14, 114, 163], [4732, 4733, 4734, 65, 3843, 3, 2946, 838, 1349, 7, 749, 2, 3, 385, 78, 4732, 4733, 4734, 65, 3843, 3, 2946, 838, 1349, 7, 749, 2, 3, 385, 78, 390, 246, 38, 261, 2946, 10, 40, 1, 115, 56, 6549], [1062, 1503, 8, 1679, 817, 1062, 1503, 8, 1679, 817], [2005, 2544, 6613, 2005, 2544, 6613, 1, 1, 1977, 21, 3355, 3356, 332, 1485, 1486], [914, 324, 120, 15, 482, 840, 8, 45, 55, 1, 1, 914, 324, 120, 15, 482, 840, 8, 45, 10662, 1, 1, 39, 170, 21, 96, 1, 1, 1, 135], [403, 36, 403, 36], [227, 181, 65, 141, 331, 2, 3, 24, 1627, 603, 227, 181, 65, 141, 331, 2, 3, 24, 1627, 603], [1255, 2841, 406, 6614, 1255, 2841, 406, 6614], [211, 1228, 477, 6615, 211, 1228, 477, 6615], [211, 1228, 477, 2277, 2278, 211, 1228, 477, 2277, 2278], [211, 1266, 47, 823, 1554, 1555, 211, 1266, 47, 823, 1554, 1555], [211, 24, 1168, 255, 477, 1074, 1075, 211, 24, 1168, 255, 477, 1074, 1075], [211, 24, 1168, 255, 477, 1074, 1075, 211, 24, 1168, 255, 477, 1074, 1075], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2183, 2774, 111, 83, 1, 1044, 731, 341, 2, 472, 350, 363, 50, 2, 598, 77], [5, 654, 4751, 6616, 22, 4, 5, 19, 12, 5, 654, 4751, 6616, 22, 4, 5, 19, 12], [299, 523, 4, 285, 760, 86, 490, 102, 2989, 221, 138, 52, 56, 2989, 28, 56, 1427, 78, 271, 90, 1817, 1818, 6617, 953, 233, 469, 149, 28, 16, 9, 595, 93, 95, 439, 1084, 3, 1270, 65, 268, 12, 975, 1522, 18, 539, 760, 4525, 6618, 86, 490, 364, 36, 104, 1006, 108, 1006, 24, 144, 11, 380, 8, 230, 1051, 36, 247, 139, 18, 2989, 1523, 2, 247, 139, 18, 6619, 90, 44, 1078, 10, 12, 3, 619, 352, 380, 36, 3, 802, 108, 3357, 3, 177, 819, 131, 801, 139, 352, 819, 644, 352, 394, 352, 401, 6620, 6621, 144, 919, 993, 93, 1549, 28, 296, 1983, 79, 1582, 6622, 6623, 265, 2990, 1858, 6624, 505, 2087, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 34, 201, 776, 11, 442, 388, 883, 305, 34, 7, 72, 181, 201, 319, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1270, 93, 131, 442, 388, 18, 388, 8, 806, 311, 2, 198, 3850], [1654, 54, 206, 140, 430, 10, 33, 73, 877, 6625, 1240, 1654, 54, 206, 140, 430, 10, 33, 73, 877, 6625, 1240, 1, 1, 1460, 20, 1151, 1, 2020, 1, 10663], [236, 98, 1427, 115, 214, 4, 190, 4, 3, 10664, 10665, 311, 2, 3, 3908, 44, 36, 172, 10, 110, 49, 4, 190, 197, 483, 175, 593, 2, 366, 169, 3, 6626, 448, 42, 10666, 4, 190, 110, 54, 175, 5, 4, 190], [29, 2, 96, 529, 208, 491, 1, 14, 269, 3, 29, 2, 96, 529, 1, 1, 24, 82, 20, 1, 1, 191, 217], [54, 2, 206, 4752, 4753, 2, 667, 812, 54, 2, 206, 4752, 4753, 2, 667, 812], [15, 482, 840, 89, 8, 134, 55, 3, 15, 482, 840, 429, 3, 177, 37, 71, 30, 450, 750, 10667, 875, 994, 2540, 57, 1363, 988, 1137, 1138, 1082, 1141], [15, 26, 32, 13, 6, 64, 111, 195, 10668, 15, 26, 32, 13, 6, 64, 132, 50], [299, 523, 4, 285, 760, 86, 490, 102, 2989, 221, 138, 52, 56, 2989, 28, 56, 1427, 78, 271, 90, 1817, 1818, 6617, 953, 233, 469, 149, 28, 16, 9, 595, 93, 95, 439, 1084, 3, 1270, 65, 268, 12, 975, 1522, 18, 539, 760, 4525, 6618, 86, 490, 364, 36, 104, 1006, 108, 1006, 24, 144, 11, 380, 8, 230, 1051, 36, 247, 139, 18, 2989, 1523, 2, 247, 139, 18, 6619, 90, 44, 1078, 10, 12, 3, 619, 352, 380, 36, 3, 802, 108, 3357, 3, 177, 819, 131, 801, 139, 352, 819, 644, 352, 394, 352, 401, 6620, 6621, 144, 919, 993, 93, 1549, 28, 296, 1983, 79, 1582, 6622, 6623, 265, 2990, 1858, 6624, 505, 2087, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 34, 201, 776, 11, 442, 388, 883, 305, 34, 7, 72, 181, 201, 319, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1270, 93, 131, 442, 388, 18, 388, 8, 806, 311, 2, 198, 3850], [340, 621, 32, 55, 50, 101, 381, 6, 147, 12, 1046, 10, 7, 39, 35, 363, 1419, 340, 621, 460, 11, 3, 451, 415, 6627, 11, 600, 540, 1129, 10669, 10670, 57, 3088, 10671, 57], [132, 480, 202, 500, 11, 1774, 11, 6628, 6629, 10672, 24, 108, 55, 101, 1, 1, 6, 21, 285, 2, 38, 480, 202, 500, 11, 1774, 499, 4, 1596, 1959, 2, 164, 3, 1695, 57, 184, 6211, 43, 1998, 1, 1, 6628, 6629, 99, 43, 496, 283, 383, 310, 7, 21, 246, 43, 365, 68, 180, 39, 199, 21, 662, 1, 1, 135], [74, 123, 31, 136, 30, 959, 3, 1652, 9, 345, 507], [218, 6630, 55, 6631, 1, 1, 4, 3, 1076, 254, 18, 190, 2285, 6, 4, 3, 2955, 218, 3, 10673, 6630, 10674, 14, 876, 1, 1, 458, 1116, 1, 1, 458, 556, 135], [41, 412, 8, 45, 613, 38, 72, 31, 30, 412, 20, 18, 33, 41, 1, 1259, 356, 267, 2, 441, 21, 507, 67, 51, 45, 1130, 21, 89, 1582, 10675, 12, 83], [14, 50, 747, 3, 1136, 200, 3, 163, 2238, 44, 110, 268, 66, 181, 192, 174, 97, 43, 825, 1, 1, 110, 97, 3765, 3, 2238, 36, 270, 1809], [419, 213, 31, 419, 213, 31], [82, 20, 24, 31, 82, 20, 24, 31, 2568, 37], [692, 20, 46, 31, 146, 123, 30, 692, 20], [46, 123, 30, 692, 20, 212, 208, 491, 1171, 843, 123, 2, 46, 4, 692, 20, 212, 14, 50, 2, 795, 3, 31], [58, 94, 1455, 2074, 24, 1455, 2074, 24, 856, 618, 696, 75, 12, 124, 105, 10, 81, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 551, 412, 78, 686, 636, 22, 4, 5, 19, 12, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 5, 551, 412, 78, 686, 636, 22, 4, 5, 19, 12], [586, 835, 12, 317, 111, 101, 1, 1, 14, 398, 123, 586, 835, 12, 317], [5, 26, 650, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 124, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 1, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 1, 3665, 233, 1, 52, 116, 2477, 6041, 116, 858, 1, 28, 116, 2477, 1, 2414, 4124, 116, 1, 1, 1, 5, 26, 650, 22, 4, 5, 19, 12], [41, 41], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [361, 24, 262, 1187, 1173, 555, 1117, 277, 696, 75, 10, 124, 361, 24, 262, 1187, 1304, 1173, 555, 1117, 277, 696, 75, 10, 124, 1011, 2356, 2, 24, 262, 1187, 1173, 555, 1117, 277, 10, 24, 262, 1187, 1173, 2661, 29, 277, 24, 144, 6, 75], [2054, 170, 18, 1854, 312, 55, 21, 50, 1, 1, 112, 161, 3695, 149, 988, 65, 141, 10676, 54, 466, 11, 5195, 1537, 4, 710, 39, 35, 14, 50, 574, 23, 631, 898, 1854], [110, 38, 15, 31, 3910, 472, 11, 149, 127, 51, 696, 2, 6632, 2, 421, 186, 118, 10677, 56, 6481, 4707, 182, 213, 130, 155, 204, 117, 107, 214, 146, 111, 21, 101, 38, 15, 31, 3910, 472, 11, 149, 127, 51, 696, 2, 6632, 2, 421, 186, 118, 23, 71, 763, 18, 4754, 2613, 11, 1193, 4, 431, 549, 6, 67, 264, 43, 14, 50], [87, 395, 8, 45, 87, 395, 8, 45, 1, 267, 2, 3, 28, 52, 137, 487, 1, 399, 3, 395, 830, 169, 1703, 3, 726, 609, 1, 991, 3, 115, 1, 395, 6, 172, 45, 494, 1, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [946, 3, 58, 1255, 18, 3, 15, 74, 58, 1255, 18, 3, 15, 74, 947, 946, 2579, 10678, 10679], [54, 2, 206, 3, 115, 6633, 2, 401, 54, 2, 206, 3, 115, 6633, 2, 401], [15, 535, 191, 217, 99, 8, 100, 610, 56, 10680, 10681, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 535, 191, 217, 99, 8, 100, 610], [85, 6, 3, 6634, 986, 2, 119, 83, 18, 33, 224, 56, 4157, 4158, 182, 213, 130, 155, 204, 117, 107, 214, 146, 85, 6, 3, 6634, 986, 2, 119, 83, 18, 33, 224], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [27, 2, 95, 4, 2, 82, 20, 27, 2, 95, 4, 2, 82, 20], [28, 56, 11, 6635, 6636, 28, 56, 11, 6635, 6636], [378, 74, 162, 8, 303, 492, 367, 74, 162, 8, 303, 492, 367, 267, 2, 3, 28, 52, 137, 487, 584, 3, 74, 7, 10682, 3, 74, 84, 2, 176, 695, 3590, 8, 84, 2, 176, 492, 3590, 28, 65, 141, 290, 23, 31, 257, 28, 219, 437, 21, 509, 366, 510, 142, 56, 10683, 129], [13, 25, 56, 3259, 3260, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 25, 79, 13, 7, 15, 13, 11, 4712], [69, 219, 2, 504, 287, 2, 283, 437, 115, 111, 1, 1, 14, 797, 203, 38, 517, 69, 6637, 3078, 4, 3, 90, 6638, 77, 632, 44, 219, 2, 504, 287, 2, 283, 437, 115, 39, 35, 206, 6637, 2, 3, 10684, 159, 2422, 6504, 99, 766, 68, 1099], [15, 1856, 37, 23, 6, 85, 356, 5258, 697, 365, 1364, 1, 1, 356, 290, 241, 2805, 1909, 98, 241, 266, 6639, 610, 737, 164, 23, 116, 77, 37, 167, 884, 98, 356, 1909, 261, 610, 98, 426, 3, 3479, 347, 63, 6640, 2, 106, 3, 177, 2, 91, 261, 266, 6639, 610, 356, 8, 614, 68, 21, 175, 1183, 123, 62, 72, 15, 123, 143, 986, 35, 83, 185, 6261, 241, 1383, 10, 23, 1, 1, 1, 1, 581, 85, 118, 51, 335, 2, 366, 98, 1325, 610], [34, 70, 11, 258, 34, 70, 11, 258], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [6641, 89, 24, 38, 1495, 683, 11, 6641, 4677, 3416, 3417, 120, 191, 571, 88, 2096, 21, 581, 30, 3, 1621, 743, 18, 3, 839, 690, 88, 632, 3, 130, 690, 88, 235, 297, 6, 172, 178, 11, 528, 11, 83, 88, 195, 3, 297, 39, 43, 430, 10, 143, 1774, 799, 62, 79, 86, 62, 910, 1161, 3, 382, 4, 79, 910, 148, 11, 316, 222, 10, 3, 297, 3765, 3, 515, 1136, 54, 50, 30, 104, 690, 88, 413, 581, 1413, 30, 1798, 296, 393, 104, 690, 88, 172, 413, 581], [27, 2, 100, 41, 56, 10685, 10686, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 118, 1186, 41, 355, 118, 3, 886, 167, 30, 3, 10687, 1385, 12, 3, 1451, 248, 488, 873, 4363, 4364], [28, 6642, 64, 77, 18, 15, 337, 52, 28, 6642, 64, 77, 18, 15, 337, 52, 50, 3, 28, 46, 169, 2684, 3, 28, 32, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [92, 69, 3135, 50, 2, 893, 3, 3135, 10, 73, 148], [59, 74, 74, 280], [59, 74, 31, 59, 74, 8, 45], [28, 1007, 23, 6643, 1203, 510, 307, 28, 1007, 23, 6643, 1203, 510, 307], [15, 466, 116, 6, 343, 836, 516, 11, 3330, 999, 14, 114, 113, 4686, 6, 260, 15, 466, 116, 6, 343, 836, 516, 11, 3330, 999, 14, 114, 113, 4686, 6, 260], [60, 94, 358, 24, 1285, 76, 60, 6, 75, 112, 124, 10, 105, 48, 6, 98, 10, 640, 892, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 2068, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [41, 2150, 1527, 98, 129, 80, 3324, 68, 524, 9, 37, 891], [27, 2, 70, 13, 10, 13, 125, 20, 27, 2, 70, 13, 10, 13, 125, 20], [1408, 58, 254, 1408, 58, 254], [1514, 115, 11, 1640, 520, 719, 14, 893, 7, 211, 1514, 348, 426, 3, 2991, 4755, 4, 3, 73, 520, 719, 3, 348, 219, 3, 1238, 1514, 782, 14, 183, 211, 519, 870, 1087, 7, 1514, 10688, 1, 3, 348, 99, 54, 2, 43, 280, 11, 443, 195, 2, 392, 10, 30, 423, 871, 332, 3, 102, 18, 2955, 21, 99, 183, 54, 4579, 254, 2, 2885, 4357, 520, 2238], [331, 36, 2425, 20, 27, 2, 3339, 1021, 127, 11, 23, 438, 183, 27, 2, 189, 160, 127, 11, 23, 438, 268, 23, 37, 71, 600, 420], [254, 6, 8, 545, 2, 3091, 1152, 11, 2025, 254, 6, 8, 545, 2, 3091, 1152, 11, 2025], [97, 95, 158, 87, 97, 95, 158, 87, 21, 6, 1612, 33, 871, 42, 1083], [3903, 846, 1360, 10689, 2087, 18, 116, 2, 743, 81, 2421, 3, 81, 20, 81, 11, 846, 6, 1360, 272, 655, 2, 743, 3, 2421, 12, 3, 591, 18, 3, 81, 39, 35, 366, 12, 23, 3903, 7, 386, 68, 151, 6, 123, 30, 846], [34, 70, 10, 203, 34, 70, 10, 203], [13, 25, 11, 15, 26, 32, 13, 25, 11, 15, 26, 32], [4756, 1181, 603, 133, 6, 8, 45, 40, 7, 40, 2641, 3675, 6, 8, 1628, 51, 2778, 47, 335, 2, 205, 242, 3, 133, 21, 542, 122, 23, 6, 10690, 160, 160, 6, 8, 75, 23, 6, 355, 1693, 3, 195, 322, 131, 866, 3, 2641, 42, 4756, 7, 4356, 1, 1, 138, 1584, 1, 40, 1, 10691, 1, 1, 581, 6, 3, 138, 196, 11, 3, 1941, 10692, 120, 3125, 1, 742, 248, 541, 236, 18, 871, 44, 38, 29, 187, 3477, 119, 3, 871, 1, 1, 40, 7, 40, 38, 141, 991, 53, 653, 14, 114, 3, 603, 3675, 11, 10693, 96, 1, 1, 4756, 1, 4356, 1, 10694], [738, 121, 738, 121], [13, 25, 13, 25], [39, 189, 186, 263, 11, 473, 36, 113, 2, 113, 47, 39, 189, 186, 263, 11, 473, 36, 113, 2, 113, 11, 83, 627, 1, 83, 627, 4, 44, 473, 42, 178, 4, 536, 4, 113, 67, 3, 52, 89, 8, 91, 21, 1, 14, 114, 7, 1241, 186, 263, 1, 21, 6, 3911, 307, 53, 3, 4757, 219, 2, 43, 331, 582, 2, 358, 11, 3, 10695, 4, 358], [76, 29, 49, 27, 2, 29, 241, 58, 1069, 51, 267, 2, 76], [768, 190, 1669, 3428, 734, 651, 12, 190, 6, 75, 12, 124, 105, 10, 768, 190, 1669, 3428, 734, 651, 12, 190, 6, 75, 12, 124, 105, 10], [13, 25, 13, 25], [54, 29, 2, 4758, 4759, 128, 126, 129], [1921, 113, 8, 1605, 110, 63, 156, 66, 10696, 10697, 44, 23, 1921, 6, 290, 72, 31, 4691, 3, 113, 63, 8, 1605, 514, 3, 2443, 18, 3, 1291, 14, 663, 7, 1809, 2, 10698, 11, 33, 10699], [33, 26, 88, 65, 123, 14, 50, 2, 398, 21, 510, 1116, 208, 21, 5314, 1, 1, 14, 91, 96, 71, 51, 49, 250, 2, 312, 10, 23, 1574, 21, 1093, 729, 80, 2, 119, 1096, 21, 530, 23, 88, 6, 357, 1320, 66, 28, 6644, 7, 49, 6644, 246, 35, 14, 50, 80, 2, 398, 21, 38, 827, 33, 142, 67, 23, 71, 6, 273, 151], [123, 30, 88, 111, 51, 1281, 158, 88, 351, 7, 37, 71, 3, 260, 82, 20, 1093, 463, 91, 96, 1701, 1702, 1847, 854, 220, 1371], [37, 51, 250, 2, 29, 26, 994, 52, 4, 15, 37, 51, 250, 2, 29, 26, 994, 52, 4, 15], [2915, 254, 29, 55, 11, 3, 569, 197, 713, 99, 43, 4, 10700, 90, 102, 2, 269, 29, 2, 254, 10701, 82, 220, 112, 558, 1360, 98, 454, 1502, 116, 2, 100, 1632, 481, 36, 82, 20, 30, 3, 628, 254, 993, 40, 82, 220, 308, 312, 510], [10702, 270, 1809, 1136, 2185, 43, 10703], [90, 2301, 78, 40, 6, 8, 545, 9, 29, 90, 2301, 78, 40, 6, 8, 545, 9, 29], [223, 868, 1747, 1367, 55, 50, 101, 1, 163, 35, 99, 326, 3, 1367, 85, 106, 54, 2, 106, 569, 2, 118, 181, 2159, 672, 1704, 449, 1, 1, 342, 3568, 1511, 135], [500, 162, 676, 222, 2, 457, 500, 162, 676, 222, 2, 457, 11, 10704, 10705, 10706, 180, 6, 164, 3, 177, 37, 9, 131, 336, 11, 223, 1544, 52, 1893], [32, 64, 77, 32, 64, 77], [1776, 2855, 2146, 4, 348, 302, 51, 134, 314, 6, 274, 10, 348, 4, 15, 124, 3, 348, 30, 3, 376, 7, 73, 134, 314, 1242, 4, 3, 348, 302, 4, 337], [87, 395, 8, 45, 450, 10707, 1, 1, 308, 353, 1488, 31, 12, 3, 1131, 1, 1, 135], [1956, 1982, 2208, 1043, 4176, 1461, 123, 6645, 4344, 10708, 255, 10709, 1052, 10710, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 682, 1915, 1, 1, 1154, 665, 18, 3, 123, 10711, 10712, 3150, 2410, 6646, 4760, 10713, 10714, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 15, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 26, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [123, 4, 82, 20, 55, 1, 1, 110, 38, 175, 123, 6028, 175, 171, 2, 3, 82, 20, 52, 1, 1, 91, 3, 2145, 469, 96, 1, 110, 38, 534, 2154, 4, 3, 1190, 567, 420, 7, 1071, 21, 1, 1, 51, 110, 479, 3, 171, 2, 43, 1675, 2, 3, 52, 151, 6, 72, 37, 71, 1, 1, 91, 3912, 1, 1, 1, 1, 1, 1284, 2882, 30, 135], [339, 121, 339, 121, 36, 190, 587, 59], [1221, 6647, 317, 99, 8, 1933, 197, 21, 3913, 2599, 276, 1128, 77, 1221, 6647, 317, 99, 8, 1933, 197, 21, 3913, 2599, 276, 1128, 77], [914, 1864, 4, 15, 111, 118, 23, 136, 51, 479, 2, 106, 33, 914, 1864, 2144, 973, 67, 670, 3, 923, 53, 96, 4476, 4477, 149, 120, 2819, 1174, 3159, 594, 1620, 24, 1763, 879, 1848, 1943, 1849, 1137, 1138, 1052, 1082, 1141, 730, 24, 144], [279, 140, 587, 527, 1373, 2, 122, 23, 649, 2, 38, 244, 169, 79, 70, 2241, 351, 430, 10, 28, 115, 1, 14, 326, 464, 4, 3, 163, 57], [14, 114, 3, 3914, 4, 537, 47, 38, 5663, 210, 30, 867, 131, 36, 585, 2, 26, 7, 26, 574, 2, 10715, 14, 38, 735, 366, 10, 3, 3914, 238, 4, 160, 1037, 187, 134, 294, 241, 1152, 393, 324, 260, 210, 7, 336, 77, 44, 458, 521, 4, 585, 187, 8, 1044, 2, 26, 192, 3914, 516, 51, 3, 131, 63, 494, 10, 162, 943, 11, 698, 3, 521, 4, 21, 1272, 1456, 7, 3263, 428, 8, 4423, 4, 26, 21, 1100, 265, 3, 6648, 18, 521, 112, 12, 975, 62, 1300, 428, 8, 2824, 356, 8, 614, 68, 680, 696, 272, 241, 187, 67, 185, 43, 411, 18, 2450, 1687, 18, 3914, 66, 3, 10716, 101], [74, 682, 1915, 959, 406, 682, 74, 4560, 406, 65, 534, 141, 1312, 682, 1915], [25, 224, 11, 1741, 6649, 137, 13, 125, 20, 13, 25, 3], [142, 255, 1691, 108, 3904, 89, 8, 134, 950, 951, 142, 255, 1691, 108, 3904, 89, 8, 134, 950, 951], [1168, 751, 406, 3635, 2992, 49, 2993, 1168, 751, 406, 3635, 2992, 49, 2993], [1062, 6650, 6651, 2308, 6652, 6653, 1062, 6650, 6651, 2308, 6652, 6653], [142, 89, 8, 170, 169, 70, 477, 6654, 6655, 142, 89, 8, 170, 169, 70, 477, 6654, 6655], [4761, 10717, 1019, 27, 2, 3915, 307, 14, 365, 483, 1, 1, 14, 39, 35, 386, 288, 39, 3915, 75, 23, 167, 38, 2, 6656, 21, 4, 127, 2, 239, 83, 33, 1482, 8, 614, 85, 49, 987, 385, 1, 14, 50, 1, 1, 1, 1, 135], [25, 224, 11, 5457, 5458, 137, 13, 125, 20, 13, 25, 3], [4760, 10718, 6657, 6658, 332, 181, 6659, 954, 10719, 2846, 5270, 4762, 332, 181, 10720, 10721, 954, 10722, 181, 6529, 1820, 3634, 10723, 1298, 6659, 10724, 1439, 4762, 10725, 773, 3358, 1043, 4176, 3358, 6658, 10726, 1439, 4762, 10727, 1043, 2014, 1052, 10728, 6660, 10729, 1043, 10730, 4718, 3065, 2621, 10731, 10732, 1052, 1504, 6660, 2518, 10733, 10734, 3513, 1, 1, 1, 6661, 1, 117, 954, 384, 161, 225, 418, 66, 57, 225, 20, 1295, 954, 496, 57, 196, 599, 3, 117, 3839, 118, 3, 4077, 36, 8, 3, 117, 1641, 8, 43, 389, 3, 4077, 7, 42, 1641, 8, 3325, 39, 8, 3802, 143, 119, 7, 1641, 1382, 11, 3219], [47, 742, 141, 1631, 44, 24, 3891, 174, 2733, 3, 123, 18, 155, 29, 14, 50, 114, 7, 778, 106, 3, 807, 10, 96, 181, 102], [100, 1163, 3354, 6662, 1392, 54, 295, 11, 197, 18, 161, 101, 2681, 4241, 6662, 10735, 271, 190, 1, 1, 180, 534, 825, 534, 316, 1163, 2, 118, 283, 87, 98, 2, 1908, 67, 180, 779, 44, 6, 8, 1766, 77, 169, 451, 713, 1, 3354, 65, 2, 4065, 10, 1429, 162, 497, 207, 180, 264, 43, 84, 2, 134, 30, 161, 2453, 446, 1807, 1, 1, 14, 295, 7, 1674, 98, 30, 3354, 899, 738, 182, 6, 1099], [833, 10736, 6663, 302, 6663, 42, 8, 3896, 2, 2331, 1685, 7, 62, 2, 3756, 302, 1778, 6, 10737, 10738, 18, 3, 372, 1324, 10739, 4, 3, 628, 1324], [33, 1903, 220, 2187, 2726, 169, 937, 173, 1912, 2, 134, 33, 1903, 220, 2187, 2726, 169, 937, 173, 1912, 2, 134, 1, 1, 54, 2, 134, 10, 117, 4714, 7, 10, 318, 3359, 1, 1, 9, 1314, 85, 3360, 173, 100, 3, 220, 1803, 10740, 7, 54, 2, 715, 3, 142, 1, 1, 1, 21, 6, 2860, 1912, 2, 134, 30, 1903, 10, 33, 148, 12, 1997, 1, 1, 49, 4, 6664, 490, 36, 10741, 35, 39, 1273, 80, 53, 18, 738, 116], [535, 191, 217, 55, 1033, 1, 1, 54, 104, 50, 1, 310, 99, 170, 33, 535, 191, 217, 11, 170, 1392, 67, 1680, 3, 535, 191, 217, 6, 8, 45], [25, 224, 11, 1741, 6649, 137, 13, 125, 20, 13, 25, 3], [193, 30, 1857, 3, 115, 343, 376, 115, 10, 3, 10742, 348, 10743, 1737, 489, 411, 18, 3, 10744, 1, 2556, 36, 3, 61, 431, 89, 8, 878], [54, 50, 4, 1365, 195, 4, 54, 50, 4, 1365, 195, 4], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 36, 113, 2, 113, 1, 1, 31, 665, 37, 71, 9, 473, 285, 30, 261, 4284], [1609, 255, 838, 1791, 1263, 55, 2372, 30, 3, 453, 18, 6665, 21, 6, 10745, 14, 121, 3, 162, 10746, 10747, 6666, 7, 3, 162, 10748, 10749, 6666, 183, 132, 781, 35, 4, 1596, 944, 4763, 1106, 3355, 3356, 704, 175, 10750, 29, 1473, 6477, 1230, 837, 11, 3, 10751, 3052, 2372, 135, 750], [31, 30, 3, 1778, 973, 4, 3, 461, 631, 171, 6667, 7, 183, 308, 647, 3, 447, 6668, 31, 30, 3, 1778, 973, 4, 3, 461, 631, 171, 6667, 7, 183, 308, 647, 3, 447, 6668, 53, 23, 6, 9, 345, 304], [1609, 10, 838, 513, 47, 365, 334, 1, 1, 14, 721, 633, 898, 255, 218, 513, 47, 236, 98, 1, 1, 781, 35, 1, 1, 1, 1, 1, 2685, 556, 2395], [27, 2, 392, 4, 2, 87, 328, 57, 196, 63, 3282, 158, 3, 1077, 469, 53, 52, 63, 2194, 36, 3, 86, 486, 251, 10, 235, 10752, 328, 31, 63, 321], [939, 88, 273, 9, 3338, 30, 15, 273, 9, 3338, 30, 15, 169, 736, 2, 1607, 252, 91, 34, 9, 1, 1, 273, 323, 72, 37, 91, 163, 173, 3, 1607, 252, 6, 172, 391, 1, 1, 11, 83, 28, 24, 4, 759], [1566, 10, 288, 2, 46, 2, 518, 1904, 2, 46, 2, 518, 1904], [32, 132, 4764, 2914, 6669, 486, 2, 38, 3, 32, 499, 499, 328, 180, 63, 84, 2, 46], [9, 15, 7, 535, 10753, 14, 50, 510, 1033, 39, 322, 2, 23, 1671, 54, 21, 662, 14, 50, 510, 1, 1, 14, 91, 96, 1, 1, 1, 1, 1, 135], [6670, 6, 8, 84, 2, 122, 30, 279, 140, 587, 527, 37, 71, 27, 2, 95, 10, 11, 3, 177, 709, 2018, 633, 36, 58, 4392, 28, 6670, 1427, 10754, 91, 163, 1630], [15, 441, 1467, 2134, 134, 37, 71, 130, 441, 1350, 6, 8, 430, 15, 441, 1467, 2134, 134, 37, 71, 130, 441, 1350, 6, 8, 430], [32, 64, 4, 226, 32, 64, 4, 226], [191, 217, 95, 10, 37, 191, 217, 397, 6, 8, 45, 7, 6054, 37, 649, 31, 30, 33, 148, 7, 397, 6, 45, 494, 51, 248, 4, 165, 52], [61, 94, 596, 687, 48, 531, 75, 112, 12, 49, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [87, 6, 8, 45, 87, 6, 8, 45], [47, 54, 11, 83, 2629, 72, 29, 11, 3, 621, 340, 52, 4, 3420, 91, 3, 163, 333, 2927, 2447, 10755, 10756, 1, 124, 1, 291, 292, 1, 814, 1711, 570, 314, 1, 720, 313, 1, 1, 55, 1, 1, 47, 54, 11, 83, 2629, 72, 29, 11, 3, 621, 340, 52, 4, 3420, 91, 3, 163, 333, 2927, 2447, 1, 1, 1, 116, 11, 29, 540, 1, 271, 24, 1046, 190, 719, 1, 93, 724, 520, 5995, 3272, 1, 1, 3, 661, 1129, 35, 99, 326, 4, 3, 163, 333, 302], [354, 275, 14, 122, 2, 3, 73, 76, 919, 389, 10757, 10758, 49, 291, 292, 243, 354, 275, 14, 122, 2, 3, 73, 76, 919, 389, 111, 47, 42, 164, 177, 71, 52, 3916, 1386, 52, 3916, 9, 3636, 6, 430, 435, 11, 315, 1578, 747, 3636, 4, 104, 213, 3087, 241, 2202, 1892, 1325, 442, 2, 422, 529, 4, 73, 79, 8, 134, 546, 1301, 6671, 6, 22, 435, 2583, 10759, 39, 1206, 3, 1301, 6671, 2, 708, 68, 35, 199, 2583, 3156, 35, 91, 3643, 1296, 7, 1626, 11, 135, 1578, 1796, 104, 2583, 3156, 1347, 4765, 29, 2, 58, 29, 2213, 24, 76, 65, 141, 502, 66, 3, 1347, 1257, 3, 709, 6, 9, 2828, 1140, 62, 2828, 1140, 6, 8, 3250], [3361, 4766, 31, 208, 326, 6672, 748, 6673, 171, 7, 928, 1685, 171, 2979, 4, 11, 3361, 570, 314, 47, 201, 206, 451, 2748, 928, 4, 207, 3, 4766, 264, 43, 2322, 4767, 4, 67, 51, 373, 6673, 326, 3, 4766, 201, 206, 2322, 39, 35, 583, 80, 241, 2931, 393, 23], [2406, 111, 711, 5911, 28, 59, 64, 14, 25, 3, 13, 7, 320, 3, 73, 13, 2, 283, 120, 711, 3726, 3727, 1934, 9, 56, 2415, 120, 3255, 3256, 2406, 3726, 3727, 1611, 30], [39, 8, 46, 4, 15, 26, 11, 205, 869, 163, 3, 167, 554, 11, 3, 37, 136], [60, 94, 640, 60, 24, 168, 998, 2994, 892, 618, 24, 144, 6, 75, 112, 124, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [768, 75, 10, 846, 768, 75, 10, 846], [15, 29, 365, 1364, 39, 35, 14, 132, 33, 691, 11, 15, 38, 141, 64, 11, 454, 458, 95, 4, 985, 6389, 6390, 1276, 724, 200, 2382], [21, 102, 55, 1, 33, 739, 10760, 10761, 65, 1098, 80, 2, 320, 72, 21, 102, 49, 84, 29, 481, 4, 241, 1069, 10, 161, 254, 67, 8, 83, 246, 265, 1279, 2, 29, 481, 44, 42, 651, 4, 3, 994, 753, 218, 651, 12, 994, 753], [279, 140, 86, 31, 55, 21, 1, 1, 576, 330, 3, 279, 140, 86, 7, 52, 70, 588, 1, 310, 1189, 44, 21, 429, 2145, 86, 1293, 323, 44, 49, 10, 3, 86, 67, 49, 8, 1, 49, 8, 496, 497, 1, 39, 35, 14, 525, 2772], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4466, 1788, 1858, 4466, 1788, 1858], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [117, 15, 9, 345, 178, 4, 88, 2, 189, 73, 1464, 462, 110, 38, 1167, 855, 1246, 11, 23, 117, 7, 202, 100, 1246, 11, 23, 117, 248, 2, 189, 517, 1464, 462, 11, 23, 117, 7, 284, 42, 9, 345, 10, 33, 302, 18, 178, 740, 51, 335, 2, 995, 423, 56, 4, 3, 32, 591, 28, 56, 469, 118, 3, 2675, 9, 915, 336, 248, 567, 165, 740, 7, 284, 134, 355, 8, 23, 197], [339, 121, 533, 1120, 941, 339, 121, 533, 1120, 941], [27, 2, 122, 2, 58, 824, 10, 76, 27, 2, 122, 2, 58, 824, 10, 76], [32, 64, 77, 32, 64, 77], [32, 64, 10, 76, 347, 32, 64, 10, 76, 347], [24, 57, 13, 8, 45, 24, 57, 13, 8, 45], [32, 64, 77, 32, 64, 77], [378, 26, 374, 46, 56, 4481, 4482, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 29, 2, 15, 374, 26], [419, 31, 419, 31], [25, 3, 13, 11, 6674, 6675, 10, 15, 160, 15, 25, 3, 13, 11, 6674, 6675, 10, 15, 160, 15], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [14, 320, 324, 171, 2, 3416, 3417, 11, 631, 14, 866, 320, 324, 171, 2, 3416, 3417, 11, 631, 558, 1223, 3646, 10762, 311, 2, 260, 2452, 521], [133, 31, 208, 101, 1, 1, 14, 50, 2, 2151, 34, 30, 58, 101, 53, 3, 28, 10763, 10764, 45, 2315, 4, 15, 571, 7, 180, 737, 164, 3157, 77, 573, 84, 2, 1372, 283, 134], [40, 474, 78, 355, 2, 270, 612, 172, 44, 3, 2097, 200, 1219, 327, 10, 40], [27, 2, 122, 2, 1343, 1343, 7, 1343, 27, 2, 122, 2, 1343, 1343, 7, 1343], [1700, 245, 36, 10765, 10766, 63, 601, 2, 844, 245, 268, 67, 21, 1435, 80, 72, 559, 71, 91, 772, 68, 35, 54, 2, 122, 30, 33, 2863, 270, 80, 253, 1095, 444, 600, 2, 33, 544, 767], [32, 64, 77, 54, 2, 132, 32, 64, 77, 54, 2, 132], [60, 94, 358, 1976, 76, 60, 6, 75, 12, 124, 105, 10, 48, 6, 98, 10, 892, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [211, 548, 174, 1421, 4, 4541, 115, 112, 174, 394, 6, 55, 101, 1, 1, 14, 211, 548, 174, 1421, 4, 4541, 115, 112, 174, 394, 6, 7, 236, 98, 374, 26, 26, 1450, 1, 1, 12, 1997, 6515, 6516, 115, 65, 10767, 184, 6, 8, 2665, 30, 174, 1, 1, 31, 6, 2358, 1, 1, 135], [87, 11, 191, 946, 29, 2, 415, 3206, 55, 1, 14, 946, 3, 87, 11, 191, 29, 18, 4296, 4297, 4736, 207, 44, 390, 6, 84, 2, 1419, 1110, 497, 30, 415, 24, 2969, 390, 6, 45, 10, 804, 24, 414, 632, 11, 190, 44, 10768, 10769, 415, 69, 129, 207, 408, 87, 1183, 264, 43, 236, 3, 179, 53, 2049, 1, 458], [27, 2, 119, 13, 10, 13, 125, 20, 13, 120, 27, 2, 119, 13, 10, 13, 125, 20, 13, 120], [32, 25, 32, 25], [15, 7, 191, 217, 13, 25, 102, 208, 491, 1, 1, 14, 50, 2, 25, 33, 13, 11, 15, 26, 7, 191, 217], [79, 13, 25, 79, 13, 25], [32, 132, 32, 132], [13, 25, 13, 25], [27, 2, 515, 41, 27, 2, 515, 41], [13, 25, 2, 459, 13, 25, 2, 459], [15, 123, 111, 1, 1, 49, 8, 84, 2, 91, 316, 467, 3, 96, 302, 4, 1232], [85, 3, 4509, 18, 23, 435, 71, 208, 50, 564, 259, 265, 2, 253, 85, 3, 4509, 18, 3, 177, 435, 71, 51, 413, 10, 82, 20, 7, 169, 46, 3658, 3659, 6676, 166, 4768, 296, 1276, 2559, 685], [15, 26, 32, 132, 56, 3259, 3260, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 25, 15, 26, 11, 6677], [2150, 496, 1062, 108, 8, 2369, 7, 38, 2, 211, 33, 506, 74, 407, 169, 541, 827, 2150, 496, 1062, 108, 8, 2369, 7, 38, 2, 211, 33, 506, 74, 407, 169, 541, 827, 1165], [27, 2, 95, 10, 2, 417, 20, 27, 2, 95, 10, 2, 417, 20], [431, 549, 140, 14, 25, 33, 431, 549, 140, 13], [76, 403, 76, 403, 28, 1049, 2, 253, 68, 180, 39, 122, 2, 76], [97, 95, 158, 15, 26, 15, 160, 30, 73, 13, 54, 29, 111, 828, 274, 33, 13, 7, 248, 2, 95, 158, 15, 67, 737, 496, 71, 44, 46, 6, 9, 345, 285, 7, 151, 42, 454, 458, 22, 985, 201, 248, 2, 95, 4, 197, 116, 51, 274, 33, 13, 183, 268, 72, 37, 71, 44, 3, 13, 119, 22, 91, 163, 3, 73, 13, 507, 11, 83, 3, 165, 529, 10, 33, 142, 2654, 11, 15, 199, 15, 10, 636, 935, 7, 54, 2, 29, 26, 15, 160, 33, 28, 59, 6, 10770, 207, 14, 270, 80, 253, 68, 35, 39, 50, 30, 23, 31], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [27, 2, 515, 309, 27, 2, 515, 309, 46, 871, 2031, 37, 640, 1979, 196, 36, 41, 196, 1433, 73, 2, 24, 969, 169, 10771, 32, 274, 36, 2036, 2, 2211, 9, 1271, 309, 389, 268, 57, 36, 309, 2, 509, 3, 309, 1013, 143, 10772, 119, 16, 33, 57, 196, 304, 2, 43, 937, 4, 839, 63, 1095, 2, 24, 143, 56, 119, 57, 196, 119, 57, 196, 119, 33, 57, 196, 304, 2, 43, 937, 4, 839, 63, 1095, 2, 24, 143, 10773, 2509, 2509, 18, 6678, 828, 9], [183, 3, 32, 219, 2, 43, 1118, 2, 3917, 6679, 10774, 99, 54, 256, 116, 14, 106, 8, 544, 23, 32, 10, 183, 3, 32, 219, 2, 43, 1118, 2, 3917, 6679], [79, 13, 25, 79, 13, 25], [13, 64, 77, 10, 15, 26, 13, 64, 77, 10, 15, 26], [15, 26, 32, 132, 15, 26, 32, 132], [41, 8, 638, 245, 41, 8, 638, 245], [34, 70, 11, 258, 34, 70, 11, 258], [743, 10, 218, 255, 10775, 10776, 10777, 7, 10778, 10779, 10780, 426, 838, 40, 426, 957, 743, 218, 1569, 30, 83, 10781], [119, 1986, 24, 2, 24, 14, 119, 33, 1986, 2, 24, 1, 115, 56, 10782], [58, 193, 443, 529, 42, 327, 278, 168, 20, 7, 4603, 1937, 2, 2010, 2011, 288, 187, 35, 1264, 151, 42, 58, 193, 68, 479, 3248, 528, 1937, 2, 2010, 2011, 10783, 6222, 116, 77, 6, 770, 3, 179, 30, 168, 20, 68, 47, 479, 2, 176, 1443, 3, 179, 37, 6, 770, 1, 1, 42, 316, 467, 197, 999, 1447, 1, 1, 85, 78, 42, 35, 10, 2010, 2011, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 16, 47, 38, 193, 454, 4, 161, 968, 1076], [74, 1165, 365, 334, 38, 912, 567, 985, 2, 176, 2, 74, 1165, 38, 183, 6388, 3, 108, 75, 276, 251, 98, 7, 6680, 303, 9, 176, 67, 3, 74, 830, 42, 3160, 330, 2070, 335, 7, 390, 330, 3, 179, 1164, 584, 3, 74, 1165, 36, 33, 115, 7, 1923, 21, 21, 1923, 53, 10784, 51, 727, 2, 21, 3, 176, 997, 77, 1254, 288, 39, 74, 43, 274, 36, 1165, 2, 6681, 573, 319, 264, 23, 74, 43, 1150, 53, 6681, 62, 6, 23, 37, 44, 1416, 582, 10785, 1017, 2276], [15, 1012, 238, 447, 8, 867, 83, 2686, 131, 2, 1012, 15, 1012, 238, 447, 6, 8, 848, 6283, 131, 11, 83, 2686, 627, 1231, 96, 1, 3041, 7, 6, 8, 867, 1012, 83, 3, 2686, 131, 47, 42, 346, 3, 2686, 1629, 10786, 183, 47, 38, 3, 179, 31, 30, 346, 2686, 627, 10787, 11, 249, 1, 1, 15, 131, 1, 96, 6, 302, 18, 3, 1877, 627, 11, 3, 1023, 4, 1566, 106, 253, 44, 600, 209, 7, 209, 42, 349, 103, 5957, 349, 2535, 44, 35, 428, 84, 2, 468, 3, 131, 4, 3, 1877, 3613, 18, 3, 349, 103, 67, 44, 185, 43, 3, 31, 3, 2686, 6, 323, 85, 6, 10, 3, 610, 7, 3, 2686, 6, 350, 207, 356, 8, 2318, 424, 3, 1023, 2634, 1093, 134, 10788, 3515, 3, 179, 447, 44, 106, 2, 2634, 462, 1, 1, 349, 107, 2088, 252, 2017, 1699, 349, 2088, 18, 1699, 1, 1655, 209, 1, 1655, 209, 1, 1655, 1583, 1, 1655, 1583, 1, 1655, 209, 1, 1655, 209, 1, 1655, 1583, 1, 1655, 1583, 1, 1655, 209, 1, 1655, 209, 1, 1655, 1583, 1, 1655, 1583, 1, 1, 1012, 131, 1, 1877, 1877, 1877, 1, 6682, 1583, 2454, 1862, 82, 20, 1, 6682, 1583, 2454, 1862, 82, 20, 1, 1655, 1583, 2454, 1862, 82, 20, 1583, 2454, 1862, 82, 20, 1, 1655, 1583, 2454, 1862, 82, 20, 1583, 2454, 1862, 82, 20, 1, 1655, 1583, 2454, 1862, 82, 20, 1583, 2454, 1862, 82, 20], [54, 2, 893, 958, 1020, 7, 1020, 54, 2, 893, 958, 1020, 7, 1020], [25, 224, 11, 10789, 137, 13, 125, 20, 13, 25, 3], [27, 2, 946, 3, 452, 10, 415, 317, 27, 2, 946, 3, 452, 10, 415, 317], [60, 94, 190, 190, 2687, 48, 76, 618, 6, 75, 12, 49, 105, 48, 6, 98, 10, 76, 618, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 12, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [25, 224, 11, 4769, 10790, 6683, 137, 13, 125, 20, 13, 25, 3], [27, 2, 515, 535, 27, 2, 515, 535], [27, 2, 176, 36, 1197, 27, 2, 176, 36, 1197], [87, 381, 252, 4770, 54, 2192, 2, 189, 87, 964, 294, 41], [162, 20, 705, 99, 8, 373, 169, 70, 1448, 372, 1948, 21, 2398, 11, 1197, 1114, 184, 248, 2, 211, 567, 420, 1944, 54], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 13, 25, 79, 13, 25], [6684, 342, 168, 20, 47, 6685, 6686, 6684, 342, 168, 20, 47, 6685, 6686], [831, 1613, 31, 831, 1613, 31], [54, 76, 29, 54, 76, 29, 73, 223, 65, 24, 148, 10791], [25, 224, 11, 10792, 10793, 137, 13, 125, 20, 13, 25, 110, 355, 54, 2, 25, 33, 13, 11, 3, 587, 527, 279, 140, 28, 56, 6, 10794], [132, 32, 4764, 132, 32, 4764], [160, 127, 1924, 6, 3281, 727, 4, 2688, 1348, 160, 127, 1924, 6, 3281, 727, 4, 2688, 14, 91, 698, 163, 4, 714, 21, 6, 727, 4105], [566, 31, 27, 2, 1372, 3, 566, 70], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 2721, 512, 1153, 913, 682, 1, 1, 1154, 665, 18, 3, 123, 39, 8, 211, 407, 2, 199, 23, 74, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 143, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 41, 695, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 221, 138, 1, 221, 40, 40, 1, 301, 40, 2255, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 1176, 358, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 725, 1, 1, 1, 724, 222, 1, 1, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 1, 2456, 1470, 2457, 2458, 1, 2459, 2460, 1, 2461, 1, 1, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 1, 1, 247, 741, 741, 56, 200, 1, 1, 247, 741, 741, 3000, 200, 1, 1, 247, 741, 741, 908, 200, 1, 1, 247, 130, 1265, 3001, 173, 1949, 1, 1, 256, 136, 10, 261, 1503, 7, 135, 3362, 39, 43, 336, 12, 3, 177, 1589, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 221, 247, 1, 301, 40, 2255, 1, 301, 247, 1, 133, 903, 318, 1, 801, 139, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1176, 358, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 642, 657, 1, 9, 982, 1, 1, 643, 657, 1, 9, 982, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 221, 247, 1, 301, 40, 9, 982, 1, 301, 247, 1, 133, 903, 318, 1, 801, 139, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1176, 358, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 642, 657, 1, 9, 982, 1, 1, 643, 657, 1, 9, 982, 1, 1, 1, 261, 10795, 1048, 3, 179, 136, 53, 3, 1050, 559, 62, 1048, 10796, 4, 3, 221, 301, 4516, 14, 239, 1094, 2, 23, 34, 192, 3, 212, 3, 299, 1249, 101, 99, 1026, 35, 53, 582, 136, 4313, 178, 1, 1, 299, 548, 101], [813, 121, 268, 36, 361, 813, 121, 268, 36, 361], [3656, 3657, 13, 125, 20, 13, 120, 6687, 3656, 3657, 13, 125, 20, 13, 120, 6687], [5, 19, 1427, 40, 10797, 3113, 7, 2839, 42, 11, 40], [155, 204, 70, 2, 394, 155, 204, 70, 2, 394], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [4771, 1007, 2, 199, 3, 181, 1191, 1593, 1, 4735, 44, 41, 6, 183, 534, 430], [47, 823, 32, 132, 47, 823, 32, 132], [110, 246, 265, 2, 528, 565, 140, 486, 6688, 67, 97, 311, 2, 241, 6689, 236, 98, 110, 246, 265, 2, 528, 565, 140, 486, 6688, 67, 97, 311, 2, 241, 6689, 236, 98, 1641, 54, 104, 295], [131, 6690, 36, 81, 78, 208, 491, 1823, 241, 6691, 1069, 18, 1272, 976, 42, 346, 36, 3, 177, 5788, 40, 2679, 481, 173, 40, 1802, 2679, 481, 2331, 131, 6692, 2679, 173, 40, 1802, 2331, 131, 6692, 2679, 261, 330, 3, 131, 81, 36, 2679, 6492, 348, 7, 42, 275, 10, 72, 307, 935, 172, 411, 3, 348, 6, 4, 5607, 677, 14, 2009, 23, 131, 36, 251, 98, 78], [1941, 29, 852, 6, 8, 45, 2136, 1941, 29, 852, 6, 8, 45, 1381, 196, 6693], [1941, 29, 852, 6, 8, 45, 1941, 29, 852, 6, 8, 45, 1381, 196, 6693], [32, 1097, 31, 14, 574, 21, 2, 939, 88, 101, 110, 6694, 44, 151, 6, 72, 31, 30, 32, 1097, 4, 939, 1, 96, 1231, 18, 24, 460, 184, 38, 236, 98, 1097, 53, 24, 1, 1, 1, 15, 117, 32, 32, 1097, 32, 32, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24], [21, 50, 55, 50, 101, 1, 1, 39, 35, 363, 100, 34, 1, 21, 50, 1336, 43, 524, 11, 381, 147, 12, 1046, 719, 10, 170, 12, 49, 7, 1, 3, 381, 99, 43, 5664, 66, 451, 415, 6627, 7, 284, 1336, 54, 50, 2, 170, 423, 3359, 4092], [8, 84, 2, 100, 72, 6695, 173, 8, 84, 2, 100, 72, 6695, 173], [3271, 42, 178, 12, 186, 113, 113, 67, 127, 627, 97, 118, 328, 12, 3, 179, 483, 36, 576, 47, 336, 44, 241, 127, 627, 39, 201, 43, 328, 4, 710, 8, 179, 483, 30, 127, 982, 516, 151, 42, 315, 3271, 178, 12, 186, 113, 113, 3100, 351, 458, 497, 36, 740, 2, 38, 444, 866, 1241, 472, 11, 423, 359, 1, 1, 581, 42, 241, 698, 14, 114, 1, 1, 1, 7], [55, 356, 6696, 6697, 36, 24, 3864, 742, 76, 809, 6, 8, 45, 55, 356, 6696, 6697, 36, 24, 3864, 742, 76, 809, 6, 8, 45, 39, 35, 14, 1377, 33, 28, 6, 10798], [535, 55, 21, 101, 1, 14, 50, 80, 2, 70, 3, 535, 53, 49, 496, 3, 96, 71], [1347, 14, 844, 2, 115, 295, 1, 21, 649, 44, 151, 6, 1347, 4, 1209, 44, 456, 2924, 3419, 2, 3, 302, 18, 1589, 44, 264, 43, 10799, 4, 10800, 1042, 23, 6, 1009, 4, 155, 204, 1, 246, 265, 2, 38, 23, 1347, 2, 43, 808, 12, 975, 106, 8, 456, 206, 24, 144, 24, 144, 7, 24, 144, 1, 1, 1, 342, 3568, 1511, 450], [2497, 458, 556, 135], [41, 6, 8, 405, 56, 2812, 2813, 1, 182, 1, 213, 130, 155, 204, 1, 117, 107, 1, 214, 1, 146, 41, 6, 8, 405], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [58, 94, 10801, 1689, 48, 531, 75, 112, 49, 105, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [363, 132, 7, 25, 79, 7, 15, 32, 11, 28, 6698, 363, 132, 7, 25, 79, 7, 15, 32, 11, 28, 6698], [211, 671, 477, 2916, 2917, 211, 671, 477, 2916, 2917], [211, 671, 477, 2916, 2917, 211, 671, 477, 2916, 2917], [211, 671, 477, 1074, 1075, 211, 671, 477, 1074, 1075], [211, 671, 477, 1074, 1075, 211, 671, 477, 1074, 1075], [894, 2045, 3818, 894, 2045, 3818, 11, 348, 146, 7, 463, 302], [32, 64, 77, 7, 13, 25, 32, 64, 77, 7, 13, 25], [128, 126, 128, 126], [168, 20, 8, 45, 3, 613, 2162, 134, 359, 65, 141, 1092, 30, 52, 2, 4091, 21, 39, 43, 10802, 276, 3, 348, 1170, 9, 345, 3252, 1695, 145, 777, 573, 4588, 3, 348, 42, 4772], [14, 132, 7, 25, 79, 13, 11, 4773, 28, 6699, 14, 132, 7, 25, 79, 13, 11, 4773, 28, 6699], [40, 370, 900, 40, 2444, 6, 272, 198, 375, 198, 178, 356, 40, 370, 900, 40, 2444, 10, 78, 40, 6, 272, 198, 375, 198, 178, 356], [2843, 1904, 13, 14, 25, 33, 2843, 1904, 13, 1, 1, 49, 8, 3146, 516, 299, 1566, 183, 1, 1, 1, 1, 1, 135], [60, 94, 90, 24, 76, 1159, 6, 75, 112, 49, 105, 10, 640, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [363, 50, 2, 189, 186, 263, 11, 473, 208, 21, 1, 1, 246, 35, 363, 50, 2, 189, 186, 263, 11, 473, 11, 829, 37, 47, 27, 2, 189], [1060, 28, 39, 118, 158, 3, 58, 208, 83, 47, 38, 123, 44, 161, 73, 149, 2382, 11, 10803, 10804, 10805, 1712, 39, 118, 158, 3, 58, 1060, 39, 35, 14, 114, 283, 609, 35, 39, 121, 911, 10, 235], [15, 547, 374, 31, 52, 26, 26, 26, 26, 585, 165, 322, 28, 59, 18, 28, 290, 3, 31, 6700, 482, 252, 3, 28, 219, 62, 63, 45, 30, 896, 3, 31, 3, 2802, 63, 8, 84, 2, 122, 548, 206, 4, 410, 614, 44, 548, 206, 4, 6, 8, 808, 66, 174, 220, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [58, 94, 82, 1826, 432, 1252, 48, 531, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [79, 32, 64, 79, 32, 64], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1412, 370, 900, 1412, 2689, 6, 272, 198, 375, 198, 178, 387, 1412, 370, 900, 1412, 2689, 10, 78, 1412, 6, 272, 198, 375, 198, 178, 387], [148, 200, 1018, 10806, 8, 45, 3216, 31, 111, 1, 1, 38, 382, 4, 148, 3, 52, 107, 6, 6164, 1, 51, 1441, 4, 33, 148, 2, 3, 3216, 3, 2677, 52, 6, 2329, 75, 1, 7, 30, 3, 167, 1634, 4, 2, 3, 1087, 49, 27, 2, 170, 3, 142, 1, 51, 248, 1613, 21, 6, 8, 987, 207, 30, 3, 167, 1634, 4, 1, 49, 511, 137, 3, 2135, 1305, 18, 3, 167, 7, 1613, 201, 3, 167, 1, 3, 3216, 6, 3200, 10807, 1, 14, 50, 77, 1, 33, 28, 56, 6, 10808], [201, 870, 6, 8, 45, 4, 52, 201, 870, 6, 8, 45, 4, 52], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 329, 3918, 249, 4530, 4531, 181, 49, 291, 292, 1289, 37, 329, 3918, 249, 55, 54, 2, 946, 1442, 249, 36, 113, 113, 2, 113, 514, 578, 249, 3, 37, 71, 1000, 98, 349, 159, 264, 170, 30, 62, 11, 10809, 103, 716, 3, 52, 542, 729, 80, 2, 119, 349, 159, 3, 10810, 18, 10811, 10812, 6, 357, 10813, 4530, 4531, 457, 3226, 24, 841], [27, 2, 46, 2, 431, 549, 140, 27, 2, 46, 2, 431, 549, 140, 1, 14, 25, 3, 13], [1862, 82, 20, 2256, 31, 47, 42, 27, 2, 373, 2256, 184, 6, 304, 2, 100, 72, 333, 695, 173, 4, 4774, 169, 87, 3061, 112, 1, 23, 2256, 6, 45, 494, 4, 52, 433, 87, 6, 8, 430, 1, 1, 308, 353, 3, 31, 12, 3, 1131, 1, 1, 1, 30, 135], [2497, 33, 6070, 11, 2497, 99, 2365, 4, 540, 1, 1, 14, 70, 23, 2, 199, 21, 316], [363, 50, 2, 25, 3, 13, 11, 23, 15, 59, 2938, 363, 50, 2, 25, 3, 13, 11, 23, 59, 2938], [3131, 3131], [6701, 859, 214, 470, 2219, 6701, 859, 214, 470, 2219], [1171, 64, 77, 18, 15, 6702, 56, 4556, 4557, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1171, 64, 77, 18, 15, 6702], [28, 219, 50, 30, 1160, 317, 4775, 28, 219, 50, 30, 1160, 317, 4775, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 10814, 3, 1160, 317, 4775, 1, 31, 321], [338, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [188, 92, 1484, 111, 8, 614, 433, 2, 1496, 23, 63, 1591, 2, 129, 3, 50, 564, 411, 33, 188, 92, 1484, 1219, 45, 51, 250, 2, 199, 33, 148, 36, 194, 271, 49, 4, 3, 722, 1209, 1741, 10815, 1529, 674, 149, 685], [27, 2, 421, 1537, 27, 2, 421, 1537, 6703, 6, 10, 1316, 39, 35, 50, 80, 3720, 3721, 1530, 120, 6704, 687, 3720, 3721, 124, 3194, 3195, 50, 30, 2706, 140, 6703, 288, 42, 35, 85, 89, 23, 5160, 85, 39, 106, 2, 421, 33, 1537, 3720, 3721, 1530, 120, 6704, 687], [210, 637, 4, 2, 87, 169, 828, 811, 33, 13, 56, 4080, 4081, 182, 213, 130, 155, 204, 117, 107, 214, 146, 210, 637, 4, 2, 87, 169, 828, 811, 33, 13], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 1423, 205, 242, 52, 322, 28, 59, 18, 28, 290, 3, 31, 6705, 14, 715, 13, 558, 230], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [378, 51, 335, 2, 29, 3, 309, 520, 229, 384, 72, 37, 71, 37, 668, 252, 8, 336, 23, 1147, 68, 95, 4, 192, 1349, 155, 53, 613, 53, 155, 76], [28, 290, 210, 46, 4, 2, 3, 115, 30, 3, 73, 13, 28, 290, 210, 46, 4, 2, 3, 115, 30, 3, 73, 13, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 137, 3, 73, 13, 1, 50, 3, 28, 46, 2, 3, 24, 76, 7, 500, 3, 73, 13, 2, 3, 24, 58, 1, 50, 3, 28, 46, 2, 600, 3, 41, 7, 87, 1, 31, 321], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [188, 15, 88, 14, 663, 424, 3919, 3920, 223, 32, 4, 15, 88, 6, 8, 2369, 53, 72, 223, 55, 21, 14, 386, 3, 233, 10, 3, 96, 102, 111, 10816, 3919, 3920, 664, 2, 43, 72, 202, 223, 169, 83, 390, 670, 4398, 18, 149, 359, 4, 15, 1374, 272, 3, 372, 532, 540, 989, 151, 6, 2761, 996, 10, 408, 223, 32, 4, 15, 88, 207, 44, 21, 89, 8, 468, 98, 4, 3, 412, 1164, 51, 47, 412, 11, 223, 460, 137, 1519, 6, 223, 2050, 35, 534, 253, 3, 709, 11, 23, 246, 35, 14, 114, 30, 162, 424, 408, 32, 65, 2761, 996, 10, 21, 21, 649, 265, 21, 185, 2823, 43, 72, 37, 10817], [82, 102, 1038, 4528, 1699, 82, 102, 1038, 4528, 1699, 65, 141, 402, 67, 97, 43, 584, 36, 33, 623], [27, 2, 95, 4, 2, 431, 549, 140, 27, 2, 95, 4, 2, 431, 549, 140], [309, 2656, 475, 365, 334, 1, 1, 14, 485, 7, 386, 10, 261, 2656, 181, 1584], [54, 2, 1040, 73, 383, 54, 2, 1040, 73, 383], [171, 8, 327, 861, 7, 3273, 1164, 2, 10818, 297, 547, 171, 6, 6706, 171, 30, 889, 924, 18, 2362, 260, 10819, 1333, 4499, 6, 3002, 2, 373, 10, 3, 18, 669, 713, 2199, 30, 165, 1022, 440, 67, 11, 3, 372, 1731, 18, 1300, 3, 171, 65, 141, 1054, 23, 65, 942, 2033, 67, 201, 30, 3, 4499, 7, 8, 143, 18, 3, 165, 440, 14, 391, 207, 21, 6, 178, 11, 569, 713, 23, 6, 11, 188, 1022, 44, 6, 304, 4, 241, 3043, 11, 2423], [27, 2, 29, 914, 48, 27, 2, 29, 914, 48], [13, 25, 192, 13, 125, 20, 13, 120, 13, 25, 192, 13, 125, 20, 13, 120], [27, 2, 644, 367, 2, 26, 27, 2, 644, 367, 2, 26, 137, 2623], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 6705, 1, 1, 1, 28, 32, 8, 4, 2332, 341], [13, 243, 236, 111, 1, 1, 14, 243, 236, 5542, 46, 13, 11, 692, 20, 1, 1, 1, 1, 1, 1, 30, 135], [186, 3003, 349, 1, 271, 113, 1, 473, 1, 462, 178, 97, 189, 186], [33, 13, 6, 2031, 39, 35, 50, 80, 1116, 33, 13, 6, 2031, 39, 35, 50, 80], [142, 8, 1506, 158, 79, 10820, 7, 1062, 870, 8, 45, 1, 1, 142, 8, 1506, 158, 79], [28, 65, 73, 508, 108, 11, 453, 573, 3, 631, 455, 28, 65, 73, 508, 108, 11, 453, 573, 3, 631, 455, 1, 635, 3, 28, 2, 844, 3, 631, 455, 2, 1040, 3, 24, 57, 10, 508, 108], [34, 70, 11, 203, 34, 70, 11, 203], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [79, 1878, 6707, 79, 1878, 6707], [27, 2, 46, 2, 417, 20, 30, 73, 13, 7, 239, 1071, 740, 222, 27, 2, 46, 2, 417, 20, 30, 73, 13, 7, 239, 1071, 740, 222], [32, 132, 32, 132], [25, 224, 11, 4611, 4612, 137, 13, 125, 20, 13, 25, 3], [324, 440, 6708, 4, 33, 623, 1958, 2, 2095, 3321, 6266, 7, 6709, 6710, 42, 934, 18, 33, 101, 172, 716, 423, 10821, 171, 6708, 42, 8, 770, 2, 33, 623, 11, 631, 14, 366, 158, 23, 7, 386], [2006, 28, 486, 11, 29, 2, 3, 459, 2006, 28, 486, 11, 29, 2, 3, 459], [378, 2597, 734, 64, 11, 3, 24, 794, 86, 378, 2597, 734, 64, 11, 3, 24, 794, 86], [3208, 171, 323, 339, 131, 11, 6711, 6712, 23, 171, 63, 45, 98, 599, 172, 21, 429, 9, 131, 51, 10822, 3068, 3, 171, 745, 260, 20, 213, 1, 1, 171, 229, 304, 6, 53, 2647, 1, 48, 2944, 505, 1881, 6713, 6714, 10823, 3921, 1, 1, 629, 6, 332, 163], [3, 690, 88, 919, 2987, 6, 260, 75, 233, 10, 24, 88, 1421, 944, 1303, 3051, 441, 14, 10824, 1887, 96, 559, 4, 850, 20, 112, 49, 10, 105, 1, 1, 220, 690, 88, 919, 2987, 10, 768, 24, 88, 1421, 944, 1303, 3051, 441, 6, 75], [54, 1197, 1114, 1115, 430, 10, 3, 115, 54, 1197, 1114, 1115, 430, 10, 3, 115], [74, 1743, 4, 1046, 55, 161, 58, 74, 1743, 10825, 9, 345, 1370, 175, 621, 2283, 820, 649, 2, 1241, 73, 176, 777, 4776, 1958, 2, 3, 200, 2540, 36, 3, 10826, 6715, 175, 4408, 5, 6, 1800, 2106, 4, 3, 10827, 47, 97, 91, 3, 176, 777, 62, 1462, 83, 985, 2, 176, 444, 3729, 10828, 516, 1827, 3, 1441, 62, 3, 728, 1255, 10829, 680, 448, 39, 4238, 1958, 2, 6715, 3, 718, 264, 781, 35, 4323, 3184, 5562, 2622, 1123, 24, 667, 368, 879, 1363, 988, 1137, 1138, 1082, 1141, 23, 71, 6, 201, 11, 199, 1218, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 23, 446, 6, 311, 2, 175, 35, 2283, 268, 21, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [27, 2, 46, 2, 115, 169, 811, 3, 13, 27, 2, 46, 2, 115, 169, 811, 3, 13], [186, 311, 302, 350, 9, 186, 263, 11, 473, 387, 1533, 249, 473, 113, 14, 844, 2, 2971, 2105, 311, 302, 10830, 6, 443, 420, 327, 10, 636, 935, 1510, 4777, 89, 8, 189, 186, 1001, 36, 473, 516, 1243, 349, 6, 178, 7, 731, 341, 6716, 1, 114, 424, 4777, 187, 8, 493, 473, 1, 114, 85, 473, 42, 6716, 1, 3922, 4777, 1, 737, 28, 1631, 393, 104, 764, 1, 458], [60, 94, 1564, 596, 1846, 1222, 892, 60, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 76, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [235, 108, 453, 1750, 868, 1683, 851, 3263, 486, 4, 2, 118, 3, 108, 1565, 14, 326, 3, 1747, 1367, 163], [79, 13, 25, 79, 13, 25], [831, 8, 1613, 3, 831, 10, 3, 452, 6, 1613, 98, 2, 7, 21, 507, 1, 3, 831, 30, 3, 1087, 6, 12, 3793, 4, 8, 1613, 1, 180, 6, 8, 614, 68, 180, 6, 137, 3, 3829, 11, 3, 1375, 859, 62, 3, 3829, 2346, 30, 3, 4, 108, 1, 47, 38, 10831, 3, 61, 852, 273, 9, 465, 1, 1, 399, 1749, 36, 2, 273, 9, 465, 1, 1, 14, 386], [25, 3, 13, 11, 4151, 4152, 10, 79, 46, 23, 6, 8, 321, 332, 3, 439, 2343, 1256, 54, 33, 224, 25, 14, 170, 30, 79, 276, 99, 1134, 2, 70, 83, 30, 13, 125, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 25, 33, 13, 11, 431, 549, 140, 14, 25, 33, 13, 11, 431, 549, 140], [309, 46, 8, 2369, 309, 46, 6, 8, 357, 2369], [27, 2, 463, 41, 27, 2, 463, 41], [27, 2, 176, 36, 3, 506, 74, 27, 2, 176, 36, 3, 506, 74], [25, 224, 11, 4151, 4152, 137, 13, 125, 20, 13, 25, 110, 49, 64, 77, 18, 13, 125, 20, 59, 13, 120, 2, 500, 33, 224, 7, 33, 13, 6, 8, 45, 14, 25, 33, 13], [2104, 233, 1713, 73, 933, 223, 322, 28, 56, 347, 75, 2, 1088, 44, 83, 275, 131, 1190, 42, 421, 389, 2287, 199, 23, 1380, 11, 3523, 5289, 5290, 1760, 449, 14, 421, 83, 1482, 648, 56, 10832, 372, 56, 10833, 271, 190, 120, 2001, 3893, 3894, 570, 314, 415, 24, 56, 4778, 7, 4779, 85, 571, 106, 284, 54, 29, 10, 15, 26, 337, 9, 68, 16, 6, 28, 1170, 522, 62, 739, 299, 263, 11, 337, 206, 1171, 2297, 28, 2, 28, 26, 32, 6, 24, 57, 275, 11, 23, 568, 9, 68, 16, 66, 506, 841, 683, 99, 43, 625, 11, 199, 18, 1191, 7, 128, 126, 201, 8, 41, 217, 62, 87, 68, 41, 217, 62, 87, 42, 275, 316, 3524, 683, 755, 43, 625, 7, 39, 43, 304, 201, 10, 24, 142, 574, 841, 62, 683, 29, 265, 448, 275, 23, 6, 2, 485, 586, 36, 568, 29, 11, 2158, 189, 26, 30, 21, 2771, 1416, 29, 599, 341, 6, 3, 142, 868, 66, 24, 9, 68, 16, 6, 21, 148, 62, 527, 142, 56, 6, 194, 29, 76, 275, 4780, 68, 16, 14, 269, 2, 184, 83, 529, 15, 571, 58, 605, 3, 28, 219, 29, 192, 76, 170, 341, 648, 56, 10834, 372, 56, 10835, 271, 190, 120, 2001, 3893, 3894, 570, 314, 415, 24, 56, 4778, 7, 4779, 85, 571, 106, 284, 54, 29, 10, 15, 26, 337, 9, 68, 16, 6, 28, 1170, 522, 62, 739, 299, 263, 11, 337, 206, 1171, 2297, 28, 2, 28, 26, 32, 6, 24, 57, 275, 11, 23, 568, 9, 68, 16, 66, 506, 841, 683, 99, 43, 625, 11, 199, 18, 1191, 7, 128, 126, 201, 8, 41, 217, 62, 87, 68, 41, 217, 62, 87, 42, 275, 316, 3524, 683, 755, 43, 625, 7, 39, 43, 304, 201, 10, 24, 142, 574, 841, 62, 683, 29, 265, 448, 275, 23, 6, 2, 485, 586, 36, 568, 29, 11, 2158, 189, 26, 30, 21, 2771, 1416, 29, 599, 341, 6, 3, 142, 868, 66, 24, 9, 68, 16, 6, 21, 148, 62, 527, 142, 56, 6, 194, 29, 76, 275, 4780, 68, 16, 14, 269, 2, 184, 83, 529, 15, 571, 58, 605, 3, 28, 219, 29, 192, 76, 170, 341, 648, 56, 10836, 372, 56, 10837, 271, 190, 120, 2001, 3893, 3894, 570, 314, 415, 24, 56, 4778, 7, 4779, 85, 571, 106, 284, 54, 29, 10, 15, 26, 337, 9, 68, 16, 6, 28, 1170, 522, 62, 739, 299, 263, 11, 337, 206, 1171, 2297, 28, 2, 28, 26, 32, 6, 24, 57, 275, 11, 23, 568, 9, 68, 16, 66, 506, 841, 683, 99, 43, 625, 11, 199, 18, 1191, 7, 128, 126, 201, 8, 41, 217, 62, 87, 68, 41, 217, 62, 87, 42, 275, 316, 3524, 683, 755, 43, 625, 7, 39, 43, 304, 201, 10, 24, 142, 574, 841, 62, 683, 29, 265, 448, 275, 23, 6, 2, 485, 586, 36, 568, 29, 11, 2158, 189, 26, 30, 21, 2771, 1416, 29, 599, 341, 6, 3, 142, 868, 66, 24, 9, 68, 16, 6, 21, 148, 62, 527, 142, 56, 6, 194, 29, 76, 275, 4780, 68, 16, 14, 269, 2, 184, 83, 529, 15, 571, 58, 605, 3, 28, 219, 29, 192, 76, 170, 341], [54, 32, 1365, 2, 33, 88, 111, 151, 39, 35, 14, 206, 3, 177, 32, 2, 33, 88, 21, 6, 197, 18, 33, 625, 460, 67, 97, 91, 21, 32, 56, 10838, 15], [211, 1266, 47, 823, 1554, 1555, 211, 1266, 47, 823, 1554, 1555], [4599, 6717, 131, 4, 41, 208, 21, 101, 1, 1, 611, 366, 158, 96, 167, 554, 10839, 10840, 6, 1180, 4, 41, 4, 33, 676, 6717, 611, 647, 3, 179], [4660, 365, 334, 1, 1, 38, 451, 316, 914, 3681, 14, 91, 163, 1, 1, 135], [916, 570, 314, 346, 11, 568, 107, 916, 570, 314, 346, 11, 568, 107, 570, 314, 264, 43, 10841], [2852, 748, 113, 7, 15, 10842, 55, 1, 1, 541, 713, 47, 91, 1778, 4, 1224, 4, 1501, 748, 113, 3535, 7, 15, 3535, 1, 1, 161, 6560, 63, 44, 4, 15, 47, 6718, 536, 573, 1208, 117, 955, 30, 77, 1208, 67, 365, 11, 10843, 67, 21, 6, 8, 207, 1, 1, 4, 23, 133, 2837, 3, 3243, 18, 113, 2181, 53, 10, 15, 1501, 113, 7, 10844, 184, 468, 1778, 748, 1, 15, 7, 113, 2181, 1, 1, 38, 2585, 532, 349, 252, 4, 1696, 2554, 184, 6, 3, 1778, 748, 15, 7, 113, 7, 3422, 1383, 44, 6718, 6, 912, 30, 1208, 183, 1606, 167, 554, 18, 349, 252, 11, 104, 797, 1, 1, 102, 35, 2, 663, 7, 1662, 30, 2478, 11, 1108, 1778, 1, 1, 23, 6, 116, 10845, 597, 7, 47, 6719, 23, 2, 43, 1167, 66, 53, 3, 179, 219, 2, 1631, 2, 3, 2771, 11], [1003, 31, 241, 2988, 428, 8, 2361, 1003, 31, 241, 2988, 428, 8, 2361], [339, 121, 339, 121], [60, 94, 60, 94, 24, 76, 60, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 640, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [102, 21, 2575, 148, 54, 10, 10846, 2173, 42, 511, 201, 178, 11, 90, 694, 4, 90, 1277, 1153, 7, 90, 694, 4, 90, 3004, 47, 3866, 11, 3, 3240, 1, 1, 54, 148, 10, 540, 1189, 6, 275, 11, 2575, 2, 43, 2284, 2173, 39, 43, 4490, 9, 316, 467, 1162, 4, 1596, 1, 1, 99, 955, 148, 10, 2173, 39, 43, 10847, 11, 2569, 18, 1162, 1, 1, 89, 28, 54, 194, 29, 76, 9, 1, 68, 16, 448, 6, 3, 1366, 120, 631, 524, 1, 1, 148, 1101, 30, 15, 76, 449, 1, 1, 256, 140, 524, 1, 1, 174, 695, 333, 1903, 917, 1, 41, 917, 1, 1, 3, 177, 99, 43, 399, 66, 21, 1, 1, 382, 1911, 107, 1, 24, 928, 1018, 1, 1, 263, 68, 3, 148, 7, 83, 2147, 42, 8, 969, 53, 147, 3, 5965, 1076, 99, 43, 3610, 857, 570, 851], [50, 30, 235, 1843, 365, 334, 1, 1, 356, 290, 210, 30, 33, 24, 86, 7, 49, 8, 614, 448, 2, 129, 2, 50, 80, 391, 3, 31, 39, 14, 118, 3, 129, 44, 39, 50, 80, 795, 23, 123], [27, 2, 176, 1288, 11, 74, 830, 27, 2, 176, 1288, 11, 74, 830], [518, 1617, 13, 25, 518, 1617, 13, 25], [10848, 10849, 1195, 32, 707, 32, 790, 2259, 77, 169, 3, 372, 13, 119], [191, 217, 1441, 4, 6, 8, 545, 110, 54, 2, 239, 772, 4, 1392, 67, 118, 72, 37, 1441, 4, 6, 8, 545, 7, 97, 91, 3, 772, 573, 697, 3, 772, 106, 8, 253, 85, 521, 2, 410, 2, 3, 610, 7, 3, 2147, 42, 10, 2204, 4, 1358], [32, 132, 32, 132], [15, 26, 32, 132, 15, 26, 32, 132], [1609, 10, 838, 572, 6720, 2372, 1, 1, 39, 35, 14, 711, 10850, 10851, 255, 3, 254, 838, 40, 572, 1626, 781, 35, 1, 1, 1, 450], [193, 30, 47, 74, 89, 8, 176, 6721, 6722, 193, 30, 47, 74, 89, 8, 176, 6721, 6722], [32, 64, 32, 64], [339, 121, 339, 121], [15, 26, 32, 132, 15, 26, 32, 132], [25, 224, 11, 10852, 10853, 137, 13, 125, 20, 13, 25, 3], [6723, 406, 6724, 1074, 1075, 6723, 406, 6724, 1074, 1075], [211, 168, 20, 1052, 1266, 477, 2277, 2278, 211, 168, 20, 1052, 1266, 477, 2277, 2278], [2225, 859, 275, 55, 101, 39, 35, 14, 1419, 2225, 859, 11, 33, 148, 416, 877, 14, 270, 80, 253, 68, 35, 275, 582, 222, 1625, 3923], [15, 29, 31, 547, 374, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 6700, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 547, 1, 1, 896, 3, 31, 1, 1, 13, 397, 9, 345, 285, 454, 458, 22, 985, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [210, 30, 3, 142, 37, 891, 8, 2266, 198, 210, 30, 3, 142, 3, 28, 39, 134, 151, 42, 2392, 37, 891, 704, 8, 2266, 198, 10, 3, 142, 3, 287, 10, 3, 531, 254, 38, 141, 6148, 98, 67, 3, 123, 187, 8, 2876, 28, 10854, 142, 56, 3924, 14, 91, 3, 163, 1210, 30, 37, 891, 3, 28, 248, 1331, 3, 21, 50, 192, 21, 1413, 295, 67, 21, 187, 8, 134, 10, 23, 142, 1800, 311, 2, 1947, 210, 11, 582, 498, 14, 129, 10855, 10856, 12, 3, 1240, 62, 192, 6725, 191], [25, 224, 11, 10857, 10858, 137, 13, 125, 20, 13, 25, 110, 25, 33, 13, 4706, 7, 534, 1220, 21, 39, 95, 10, 2, 1096], [553, 15, 191, 1541, 208, 83, 39, 612, 14, 114, 47, 106, 38, 241, 73, 149, 694, 67, 3, 56, 542, 468, 4, 3, 149, 1214, 3925, 2380, 553, 171, 47, 38, 512, 4420, 4421, 7, 6403, 6404, 39, 612, 14, 114, 7, 270, 166, 253, 51, 47, 99, 183, 91, 3, 1129, 18, 3, 149, 826, 6, 151, 9, 1437, 5186], [148, 46, 31, 4417, 4418, 208, 491, 1, 49, 843, 31, 30, 46, 158, 148, 329, 937, 1, 1, 3, 96, 835, 6, 770, 167, 554, 163, 311, 2, 23, 49, 8, 84, 2, 46, 51, 49, 137, 148, 53, 72, 1305, 1087, 6, 8, 323, 207, 541, 116, 38, 2, 122, 21, 30, 1087, 2, 322, 28, 59, 7, 13, 1, 148, 416, 382, 877, 1, 1, 1, 102, 35, 2, 308, 795, 3, 123, 1, 1, 135], [620, 342, 41, 3867, 3868, 620, 342, 41, 3867, 3868], [6726, 3926, 683, 31, 111, 1, 6726, 3926, 1434, 4, 33, 348, 65, 683, 31, 435, 71, 1717, 683, 2331, 65, 141, 562, 1, 1, 67, 3, 10859, 1538, 11, 3, 1442, 3925, 683, 6, 1362, 4305, 1, 1, 14, 622, 2, 3, 163, 925, 11, 3, 37, 665, 7, 683, 2332, 222], [27, 2, 320, 384, 245, 36, 415, 2969, 6727, 6728, 6729, 6730, 10860, 10861, 111, 21, 101, 6727, 6728, 97, 384, 7, 320, 143, 245, 2, 3, 415, 2969, 192, 283, 24, 57, 196, 716, 283, 2070, 6729, 6730, 39, 320, 7, 384, 245, 30, 9, 143, 210, 308, 663, 3, 31, 11, 6731, 7, 35, 39, 509, 10862, 28, 2, 6453, 11, 3, 1778, 1611, 600, 18, 444, 42, 161, 1068, 10863, 36, 674, 7, 183, 351, 24, 57, 196, 4, 3, 179, 11, 1068, 1072, 295, 2, 166, 1663, 68, 35, 185, 10864, 2, 398, 11, 166], [633, 721, 898, 255, 6732, 5, 1158, 55, 2372, 1, 1, 14, 583, 80, 3, 633, 721, 898, 255, 6732, 10865, 175, 1, 1, 781, 35, 6423, 1, 1, 1, 1, 1, 2685, 556, 2395], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 485, 168, 20, 78, 4, 190, 40, 168, 20, 6, 8, 45, 343, 307, 14, 485, 168, 20, 78, 4, 190, 40, 168, 20, 6, 8, 45, 343, 307], [79, 32, 64, 79, 32, 64], [25, 224, 11, 4781, 4782, 137, 13, 125, 20, 13, 25, 25, 224, 11, 4781, 4782, 137, 13, 125, 20, 13, 25], [40, 369, 370, 900, 40, 2444, 10, 78, 6, 272, 198, 375, 198, 178, 2241, 40, 254, 6, 315], [25, 224, 11, 4781, 4782, 137, 13, 125, 20, 13, 25, 14, 25, 13, 510], [32, 13, 6, 562, 32, 6, 562], [5, 4986, 2385, 11, 1773, 603, 706, 14, 715, 2, 3, 603, 101, 1, 3, 5, 2385, 11, 3, 1773, 160, 52, 65, 706, 14, 715], [25, 130, 445, 368, 13, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 1289, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 10866, 1865, 372, 56, 10867, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [8, 84, 2, 29, 26, 111, 8, 84, 2, 29, 26, 52, 28, 59, 10868, 6000, 6001, 120, 501], [25, 3, 13, 11, 10869, 10870, 10, 15, 160, 15, 110, 97, 95, 62, 119, 33, 15, 13, 10871, 50], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [76, 133, 639, 55, 1, 1, 49, 8, 84, 2, 122, 2, 76], [40, 838, 2955, 6733, 1504, 2541, 6734, 6735, 1106, 6736, 1440, 4783, 1504, 2541, 6734, 2157, 10872, 40, 838, 2955, 6733, 6735, 1106, 10873, 10874, 6736, 1440, 10875, 1298, 4783, 3513, 14, 119, 3, 1097, 18, 23, 218, 2, 10876, 10877, 4783], [8, 84, 2, 46, 2, 3, 52, 10878, 33, 28, 59, 7, 222, 10, 73, 1461, 1312, 142, 56, 6737], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [333, 40, 749, 191, 6738, 994, 632, 841, 1250, 6739, 312, 10879, 333, 10880, 10881, 10882, 839, 344, 40, 749, 191, 6738, 994, 632, 841, 1250, 6739, 312, 2340, 839], [1140, 2488, 55, 363, 106, 3, 807, 1, 1, 1, 1, 4321, 4322, 3618, 120, 149, 24, 361, 1335, 361], [27, 2, 122, 2, 24, 1280, 1068, 27, 2, 122, 2, 24, 1280, 1068], [692, 20, 59, 7, 13, 55, 1, 1, 54, 50, 53, 1220, 33, 692, 20, 46, 59, 7, 13, 1, 1, 30, 135], [32, 64, 77, 7, 13, 25, 32, 64, 77, 7, 13, 25], [8, 84, 2, 206, 59, 53, 74, 4, 33, 148, 8, 84, 2, 206, 59, 53, 74, 4, 33, 148, 169, 1658, 407, 52, 3422, 98, 72, 37, 39, 206, 74], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4320, 3171, 7, 544, 2791, 42, 8, 45, 4320, 3171, 7, 544, 2791, 42, 8, 45, 27, 2, 46, 2, 115, 382, 877, 129, 9, 10883, 28, 413, 10, 3812, 2, 29, 765, 7, 747, 103, 573, 926, 1698, 765, 30, 50, 18, 3547, 413, 10, 753, 3171, 7, 544, 9, 465, 544, 864, 6, 8, 45], [3238, 31, 30, 10884, 4, 26, 47, 1890, 44, 102, 26, 63, 4772, 30, 3916, 10, 65, 141, 243, 4772, 1633, 10, 7, 39, 35, 14, 114, 7, 818, 3, 222, 18, 424, 23, 6, 1361, 1, 1, 23, 6, 3238, 31, 53, 23, 102, 6, 250, 2, 272, 721, 3, 521, 44, 428, 588, 644, 23, 2619], [25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 1289, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 10885, 372, 56, 10886, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [15, 26, 1228, 37, 55, 21, 101, 472, 63, 1320, 4, 15, 1228, 67, 558, 1228, 1323, 63, 2303, 558, 6740, 1925, 107, 6, 185, 35, 326, 3, 1206, 7, 398, 21], [218, 29, 102, 111, 1, 1, 14, 50, 2, 269, 29, 2, 40, 838, 53, 2647, 1, 6741, 358, 674, 4148, 1, 568, 2, 29, 1, 4752, 4753, 10887, 10888, 10889, 10890, 1, 6741, 358, 674, 618, 1, 568, 2, 29, 1, 10891, 10892, 10893, 10894, 10895, 10896, 10897, 10898, 10899, 1, 1329, 18, 29, 315, 753], [27, 2, 46, 79, 27, 2, 46, 79], [52, 6, 8, 1506, 98, 52, 6, 8, 1506, 98], [79, 32, 64, 79, 32, 64], [27, 2, 384, 181, 36, 961, 18, 687, 3224, 978, 445, 110, 38, 2309, 102, 11, 29, 4, 3, 961, 212, 67, 97, 384, 181, 36, 444, 1, 308, 525], [79, 32, 64, 79, 32, 64], [32, 64, 77, 7, 13, 25, 32, 64, 77, 7, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [39, 8, 6742, 33, 82, 20, 55, 1, 39, 8, 6742, 11, 33, 82, 20, 68, 289, 3, 341, 1, 3, 37, 10, 3, 1451, 18, 3, 835, 429, 44, 106, 8, 38, 3, 29, 2, 21, 1, 14, 583, 80, 3, 29], [2370, 6743, 810, 693, 6, 3, 229, 2, 3, 2370, 6743, 810, 3, 568, 448, 1014, 23, 48, 2422, 6744, 7, 3342, 3, 1050, 447, 330, 21, 236, 98, 207, 44, 3, 315, 116, 2239, 1712, 187, 8, 2778, 384, 10900, 3176, 7, 3916, 83, 18, 10901, 23, 593, 47, 42, 83, 496, 1325, 245, 49, 2837, 197, 18, 3, 245, 3, 302, 18, 2239, 1712, 448, 264, 8, 384, 261, 245, 11, 143, 2370, 10902, 10903, 10904, 10905, 10906, 10907, 10908, 10909, 10910, 10911, 10912, 10913, 10914, 10915, 10916, 1017, 10917, 10918, 10919, 49, 2227, 1703, 2, 91, 68, 33, 302, 6, 421, 261, 826, 42, 315, 116, 2239, 7, 2124, 2944, 14, 270, 80, 253, 85, 1825, 35, 54], [28, 219, 50, 46, 2, 3, 24, 76, 28, 219, 50, 46, 2, 3, 24, 76], [279, 140, 13, 65, 562, 33, 279, 140, 13, 6, 164, 562, 310, 14, 25, 3, 13, 7, 270, 80, 253, 207, 44, 39, 46, 28, 59, 10920, 129, 9], [128, 126, 220, 2337, 128, 126, 220, 2337], [1908, 18, 33, 155, 6745, 6746, 434, 2, 138, 6747, 1159, 10921, 6271, 55, 10922, 10923, 110, 1828, 35, 42, 3, 722, 129, 568, 11, 23, 732, 62, 253, 448, 39, 50, 711, 6745, 6746, 711, 10924, 6, 9, 345, 178, 7, 711, 6748, 10, 1316, 110, 246, 2489, 44, 23, 6, 175, 1496, 3219, 7, 30, 3, 50, 18, 72, 10925, 18, 3, 3927, 6, 1099, 67, 110, 106, 8, 253, 288, 10926, 3, 233, 18, 3, 24, 6, 30, 3871, 2, 138, 1227, 62, 10927, 2766, 599, 5396, 6748, 6, 77, 18, 1316, 30, 450, 750], [40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75], [39, 611, 114, 68, 78, 40, 6, 45, 494, 10928, 124, 1902, 39, 611, 114, 68, 78, 40, 6, 45, 494, 39, 611, 114, 68, 78, 40, 6, 45, 494, 183, 114, 10929], [13, 25, 46, 210, 13, 25, 46, 210], [876, 6749, 918, 287, 1333, 6750, 3467, 246, 35, 14, 25, 23, 173, 6749, 918, 287, 1333, 6750, 21, 83, 649, 2, 9, 345, 134, 1116, 6517, 6518, 312, 1764], [876, 675, 6751, 36, 1349, 55, 2372, 1, 1, 1, 3, 218, 6751, 36, 3, 254, 1349, 40, 65, 141, 805, 110, 39, 118, 21, 251, 7, 276, 995, 21, 4, 3, 254, 838, 40, 572, 1626, 781, 35, 4, 1596, 1, 1, 1, 450], [168, 20, 8, 373, 112, 356, 47, 1093, 38, 143, 136, 393, 4618, 1391, 75, 168, 20, 8, 373, 112, 356, 47, 1093, 38, 143, 136, 393, 4618, 1391, 75], [110, 10, 1316, 7, 33, 76, 1219, 45, 39, 35, 25, 21, 11, 80, 76], [2342, 855, 463, 111, 38, 141, 290, 1237, 164, 241, 4377, 2, 463, 197, 6, 10, 3, 2492, 48, 2, 119, 13, 51, 335, 2, 95, 10, 2, 3, 48, 21, 530, 54, 2, 70, 33, 13, 51, 413, 10, 3, 837, 83, 118, 6, 339, 347, 91, 96, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [32, 602, 743, 102, 18, 6752, 32, 602, 743, 102, 18, 6752], [6753, 10, 3, 6754, 3199, 317, 6753, 10, 3, 6754, 3199, 317], [193, 30, 419, 6755, 6756, 193, 30, 419, 6755, 6756], [620, 342, 477, 1369, 3760, 620, 342, 477, 1369, 3760], [3, 405, 733, 89, 8, 134, 9, 10930, 733, 30, 3, 177, 116, 692, 2475, 63, 265], [191, 217, 31, 55, 83, 1, 1, 441, 1467, 191, 217, 542, 134, 30, 3, 71, 96, 21, 636, 275, 733, 14, 398, 754], [1685, 3343, 844, 11, 262, 7, 3004, 171, 208, 21, 101, 1, 1, 38, 373, 171, 53, 96, 336, 44, 1685, 3343, 844, 6, 8, 806, 10, 3, 171, 600, 262, 7, 3004, 171, 14, 386, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135], [243, 2054, 170, 18, 1854, 312, 33, 32, 6, 230, 13, 31, 21, 295, 1, 185, 35, 14, 499, 33, 32, 10, 431, 549, 140, 1, 135], [3161, 8, 727, 77, 39, 35, 14, 38, 366, 2, 23, 151, 649, 2, 43, 9, 629, 4, 731, 2, 91, 23, 330, 706, 1946, 176, 21, 6, 10931, 36, 358, 2, 5824, 67, 165, 6555, 183, 952], [5, 5, 63, 327, 345, 467, 858, 2093, 7, 2690, 5, 5, 22, 4, 5, 19, 12], [6757, 2615, 6758, 6759, 6757, 2615, 6758, 6759], [15, 64, 55, 14, 132, 33, 13, 11, 15, 54, 2, 119, 33, 13, 754, 28, 59, 6760], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2000, 1856, 37, 30, 482, 2982, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 83, 28, 4, 113, 7, 113, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 2982, 1, 1, 896, 3, 31, 2000, 1856, 37, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [25, 224, 11, 10932, 10933, 137, 13, 125, 20, 13, 25, 3], [1460, 20, 751, 8, 45, 1460, 20, 751, 8, 45, 1, 1, 14, 606, 100, 1065, 4784, 513, 2, 1, 4708, 4784, 1489, 513], [25, 224, 11, 4217, 4218, 137, 13, 125, 20, 13, 25, 14, 10934, 26, 54, 2, 205, 242, 829], [142, 39, 244, 142, 39, 244], [406, 6761, 1287, 767, 406, 3317, 3318, 406, 6761, 1287, 767, 406, 3317, 3318], [419, 419], [15, 26, 32, 64, 15, 26, 32, 64], [6762, 29, 11, 340, 365, 334, 1, 1, 38, 161, 10935, 10936, 581, 7, 246, 265, 11, 444, 2, 29, 2, 6762, 340, 1, 1, 151, 99, 43, 18, 444, 1, 1, 284, 99, 43, 581, 11, 1162, 1, 1, 106, 54, 2, 189, 1992, 3308, 11, 444, 62, 39, 284, 818, 46, 29, 1, 1, 14, 386], [32, 64, 32, 64], [169, 811, 2, 73, 159, 567, 623, 627, 36, 376, 159, 42, 273, 1198, 4, 73, 1681, 623, 454, 86, 274, 36, 10937, 101, 1841, 2, 3531, 101, 1841, 67, 273, 567, 623, 627, 36, 376, 159, 42, 1198, 4, 73, 1681, 623, 454, 15, 10938, 63, 5534, 66, 376, 101, 53, 2032, 53, 63, 1631], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [15, 403, 2982, 11, 160, 3128, 6, 848, 2000, 37, 71, 351, 1998, 72, 57, 704, 15, 403, 2982, 848, 37, 71, 1, 1, 91, 377, 11, 582, 222, 1, 1, 356, 8, 614, 288, 2067, 18, 72, 518, 23, 65, 207, 511, 405, 30, 2358, 2871, 565, 2, 2151, 3, 305, 4, 732, 23, 6, 1150, 1429, 403, 1, 1, 135], [378, 747, 2, 504, 2, 437, 115, 4, 1045, 30, 15, 1313, 574, 2, 10939, 6078, 1045, 69, 6, 897, 440, 11, 3, 90, 6638, 77, 7, 6, 27, 2, 504, 440, 2, 3, 437, 115, 390, 6, 137, 3, 15, 1313, 1340, 755, 43, 794, 662, 68, 8, 10940, 53, 23, 99, 2195, 3, 632, 665, 455, 3, 69, 10941, 746, 49, 327, 440, 433, 39, 504, 444, 54, 2, 504, 444, 53, 10942, 1065, 7, 276, 54, 2, 100, 669, 4, 333, 7, 410, 532, 4785, 521, 389, 504, 21, 7, 320, 2, 3, 101, 3048, 1448, 205, 242, 137, 3038, 11, 3, 447, 163, 2, 3, 482, 7, 97, 504, 2, 33, 918, 348, 187, 335, 6763, 254, 67, 44, 63, 183, 2816, 6, 151, 6246, 10, 3, 58, 433, 39, 504, 444, 7, 276, 612, 39, 320, 444, 2, 80, 207, 39, 1149, 444, 10, 33, 918, 348, 7, 320, 444, 77, 62, 68, 35, 38, 517, 2931, 10, 288, 47, 39, 10943, 21, 44, 246, 43, 2112], [32, 64, 77, 55, 101, 1, 6764, 32, 6, 64, 77, 185, 35, 14, 114], [61, 94, 90, 4786, 2481, 90, 1176, 618, 60, 696, 75, 12, 49, 105, 10, 188, 92, 34, 90, 4786, 2481, 90, 1176, 618, 60, 696, 75, 12, 49, 105, 10, 605, 183, 696, 75, 67, 47, 91, 6765, 60, 6, 98, 1, 1, 90, 4786, 2481, 90, 1176, 618, 238, 10944, 10945, 133, 2, 10946, 65, 1517, 75, 112, 124, 105, 10], [29, 2, 58, 218, 14, 269, 633, 7, 721, 29, 2, 711, 10947, 10948, 7, 10949, 11, 177, 58, 218, 40, 1802], [8, 84, 2, 95, 10, 2, 3, 194, 271, 18, 10950, 36, 307, 14, 121, 1], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [76, 4711, 76, 27, 2, 133, 76, 4711, 76, 27, 2, 133], [27, 2, 1241, 461, 53, 332, 840, 47, 742, 336, 3, 1000, 98, 37, 51, 848, 473, 53, 332, 840, 53, 163, 14, 50, 2180, 23, 31, 510], [14, 132, 33, 15, 55, 1, 1, 14, 132, 33, 15, 1, 1, 28, 59, 6760], [249, 4787, 55, 1, 1, 185, 35, 14, 10951, 3, 2892, 577, 11, 10, 3, 10952, 1345, 1508, 107, 1, 1, 450], [110, 1220, 33, 15, 13, 6766, 1, 1, 1220, 33, 15, 13, 185, 35, 50, 80, 2, 25, 21], [3, 1445, 354, 11, 4788, 4789, 65, 402, 1050, 71, 10953, 10954, 181, 49, 291, 292, 3, 1445, 354, 11, 4788, 4789, 65, 402, 55, 974, 11, 4788, 4789, 821, 65, 141, 495, 413, 3, 229, 2, 239], [58, 94, 12, 90, 112, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2449, 171, 31, 14, 269, 222, 4, 3, 1380, 96, 68, 443, 529, 42, 1447, 14, 199, 3, 1166, 34, 1380, 4, 3, 1249, 218, 1, 48, 271, 358, 358, 1, 28, 59, 226, 10955, 1, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 15, 1, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 2449, 1, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 10956, 1, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 2449, 171, 6, 304, 2, 118, 968, 131, 151, 6, 4790, 6767, 172, 3, 131, 6, 626, 11, 23, 171, 246, 35, 14, 50, 2, 114, 85, 3, 31, 47, 326, 3, 123, 10, 1, 3, 968, 222, 11, 6, 528, 10, 53, 163, 23, 171, 6, 327, 636, 2, 1925, 968, 1, 68, 35, 54, 165, 136, 35, 39, 129, 80, 1, 42, 165, 195, 697, 23, 165, 195, 4, 6767, 1, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 267, 2, 3, 28, 52, 137, 487, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 396, 328, 44, 180, 63, 84, 2, 46, 31, 321], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [79, 13, 55, 1, 1, 479, 119, 33, 13, 7, 410, 1531, 1, 39, 35, 14, 3757, 2, 33, 376, 197], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [4791, 606, 10, 3, 1843, 3917, 486, 4, 11, 72, 31, 433, 151, 63, 3002, 2, 43, 4791, 606, 10, 3, 1843, 67, 3917, 779, 44, 3, 1843, 42, 273, 3456, 7, 558, 10, 2186], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [10957, 10958, 55, 1, 1, 1, 172, 540, 47, 42, 164, 1239, 18, 165, 6768, 171, 4, 361, 6769, 39, 35, 14, 795, 23, 1, 541, 713, 47, 118, 735, 2, 82, 20, 4, 2, 161, 52], [58, 94, 10959, 21, 2687, 48, 48, 531, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [148, 8, 1506, 98, 51, 10960, 6, 637, 158, 283, 148, 3, 148, 6, 456, 2329, 75, 180, 248, 987, 61, 2676, 7, 183, 3031, 3, 115, 489, 11, 72, 1901, 67, 273, 3, 179, 3, 1127, 180, 637, 4, 115, 6, 2329, 75, 66, 1737, 28, 59, 10961, 115, 56, 3350, 200, 1018, 10962, 416, 877, 933, 4237], [5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12, 5, 616, 2431, 70, 2432, 22, 4, 5, 19, 12], [58, 94, 2557, 2557, 48, 531, 75, 112, 10, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 1556, 22, 4, 5, 19, 12, 5, 26, 1556, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [3269, 36, 1974, 1012, 46, 22, 2213, 8, 336, 3269, 36, 1974, 1012, 46, 22, 2213, 8, 336], [5, 26, 1556, 22, 4, 5, 19, 12, 5, 26, 1556, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [768, 40, 651, 12, 190, 6, 75, 112, 124, 105, 768, 40, 651, 12, 190, 6, 75, 112, 124, 105], [768, 40, 651, 12, 759, 6, 75, 112, 12, 124, 105, 768, 40, 651, 12, 1348, 6, 75, 112, 12, 124, 105], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [544, 508, 196, 36, 52, 3452, 3453, 124, 291, 292, 3495, 3496, 10963, 6770, 243, 962, 508, 196, 4, 52, 55, 83, 1597, 581, 10, 334, 10964, 10965, 4, 1232, 10966, 2034, 251, 12, 3, 10967, 38, 268, 10, 33, 181, 32, 7, 91, 197, 36, 3363, 30, 5773, 53, 586, 302, 6771, 30, 3, 179, 586, 302, 7, 10968, 12, 162, 667, 200, 30, 257, 3, 179, 586, 302, 1828, 23, 4792, 1845, 10969, 10970, 2414, 2926, 120, 24, 10, 12, 124, 291, 292, 3342, 111, 6771, 89, 23, 2326, 51, 35, 320, 72, 57, 2, 1871, 159, 62, 83, 3, 1681, 44, 1597, 6, 934, 18, 68, 21, 6, 966, 159, 253, 3, 159, 56], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4, 3, 726, 4, 3, 726], [27, 2, 189, 15, 319, 6575, 120, 6576, 82], [225, 20, 1149, 31, 3129, 2, 181, 55, 1, 1, 329, 137, 306, 1561, 475, 47, 42, 164, 225, 418, 4, 661, 6772, 1, 14, 622, 1942, 475, 1, 1, 225, 20, 8, 1520, 1, 1, 225, 20, 6, 1520, 1, 1, 14, 50, 166, 4, 164, 83, 225, 418, 53, 332, 1149, 1180, 4, 225, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [110, 39, 397, 72, 15, 65, 12, 490, 14, 50, 2, 795, 23, 31, 1], [58, 94, 10971, 10972, 2479, 2687, 48, 48, 6, 531, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 654, 374, 26, 948, 1236, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1236, 784, 22, 4, 5, 19, 12], [73, 127, 10973, 10974, 1, 49, 1, 291, 292, 1, 319, 550, 243, 73, 127, 1, 1, 55, 1, 1, 49, 2810, 3, 3928, 181, 268, 308, 106, 3, 807], [226, 32, 64, 226, 32, 64], [27, 2, 122, 2, 422, 27, 2, 122, 2, 422, 7, 114, 528, 287], [245, 8, 178, 4, 41, 67, 178, 4, 1191, 101, 49, 27, 2, 239, 245, 4, 41, 18, 7, 389, 67, 39, 91, 444, 4, 1191, 558, 2044, 2, 5449, 3, 376, 245, 4, 1191, 4373, 2, 41, 185, 35, 14, 50, 4, 2269, 3, 245, 4, 41, 33, 41, 394, 6, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [527, 1293, 889, 31, 56, 3647, 3648, 182, 213, 130, 155, 204, 117, 107, 214, 146, 527, 1293, 889, 31], [5, 26, 1024, 22, 4, 5, 19, 12, 5, 26, 1024, 22, 4, 5, 19, 12], [870, 244, 10975, 83, 272, 3, 167, 257, 330, 23, 123, 1256, 1, 23, 63, 321, 66, 857, 18, 1461, 1, 1, 716, 49, 1085, 23, 123, 257, 611, 295], [76, 76, 29, 11, 241, 709, 33, 397, 136, 855, 134, 30, 76, 76, 29, 4706, 185, 35, 14, 663, 3, 177, 6, 3, 229, 1674], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [249, 39, 8, 225, 20, 2493, 976, 1972, 344, 6773, 249, 39, 8, 225, 20, 2493, 976, 1972, 344, 6773], [15, 171, 2449, 4790, 10976, 536, 6, 45, 11, 241, 223, 4, 3, 90, 113, 171, 855, 134], [27, 2, 1158, 3364, 426, 4793, 4, 88, 27, 2, 1158, 3364, 426, 4793, 4, 88, 622, 377, 86], [27, 2, 515, 41, 27, 2, 515, 41], [54, 57, 196, 2, 46, 2, 41, 54, 57, 196, 2, 46, 2, 41], [15, 26, 32, 132, 15, 26, 32, 132], [374, 1256, 244, 1413, 30, 814, 63, 1827, 171, 1243, 374, 7, 169, 2627, 3, 548, 681, 7, 2269, 63, 1677, 601, 2, 452, 524, 2, 2499, 23, 1380, 2, 206, 33, 113, 51, 246, 493, 452, 83, 18, 33, 2224, 428, 1054, 91, 163, 180, 187, 829, 7, 1098, 80, 2, 735, 7, 3876, 746, 5068, 33, 548, 681, 63, 1326, 207, 2593, 84, 2, 1229, 2, 276, 465, 2, 452, 2, 91, 68, 33, 2894, 428, 833, 180, 276, 833, 33, 548, 681, 329, 47, 428, 273, 4, 1413, 67, 169, 987, 23, 51, 248, 2, 493, 452, 3, 1993, 2224, 44, 63, 697, 63, 9, 345, 323, 246, 2870, 452, 7, 83, 185, 91, 63, 33, 2623, 9, 2224, 180, 1359, 180, 246, 38, 2, 106, 34, 742, 8, 141, 2714, 10, 34, 4208, 54, 2, 373, 23, 171, 389, 867, 23, 57, 696, 251, 158, 374, 2, 91, 68, 66, 2604, 33, 171, 62, 123, 63, 833, 7, 3, 548, 681, 6, 1326, 257, 68, 35, 39, 14, 391, 23, 11, 80, 6181, 6182, 117, 200, 739, 2668, 1763], [119, 460, 36, 315, 116, 223, 2, 4736, 55, 821, 14, 119, 10977, 7, 10978, 460, 36, 694, 2, 1760, 7, 10979, 4181, 423, 3308, 1192, 10, 33, 971, 30, 4794, 6774, 7, 3190, 405, 23, 34], [238, 1476, 10, 24, 1222, 6775, 1930, 2462, 434, 29, 277, 24, 144, 6, 75, 112, 10, 238, 1034, 1159, 10980, 10, 24, 1222, 6775, 1930, 2462, 434, 29, 277, 24, 144, 6, 75, 112, 10], [40, 369, 375, 10, 6, 316, 467, 40, 369, 254, 10, 78, 6, 272, 198, 375, 198, 178, 387], [41, 57, 2120, 889, 31, 41, 57, 2120, 889, 31], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [58, 94, 3891, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [97, 95, 158, 87, 62, 76, 56, 6709, 6710, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 95, 158, 87, 62, 76, 23, 1147, 541, 116, 119, 33, 13, 99, 54, 612, 2, 95, 158, 33, 142, 7, 398, 241, 2872, 62, 6776, 2, 410, 21, 134, 257], [1383, 1971, 4698, 4699, 124, 10981, 10982, 1570, 291, 292, 1145, 243, 1383, 1971, 50, 564, 14, 91, 3, 102, 96, 604, 4700, 4701, 4702, 2628, 120, 2889, 4795], [41, 8, 699, 2, 130, 480, 41, 8, 699, 2, 130, 480], [3929, 12, 596, 687, 30, 1383, 2853, 3929, 12, 596, 687, 6, 323, 4796, 1383, 2853, 12, 3205, 3261, 1, 14, 91, 163, 173], [797, 258, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 51, 335, 2, 366, 12, 782, 11, 1345, 1508, 118, 72, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 86], [15, 397, 792, 37, 15, 397, 792, 37], [2207, 350, 245, 42, 8, 164, 331, 284, 42, 83, 601, 158, 3, 2710, 2207, 350, 245, 42, 8, 164, 331, 284, 42, 83, 601, 158, 3, 2710], [15, 3262, 489, 3, 344, 18, 72, 127, 47, 38, 1852, 7, 44, 1435, 80, 3, 391, 1248, 503, 67, 3, 344, 18, 3, 2281, 666, 6, 3262, 489, 39, 23, 43, 833, 740, 99, 232, 1081, 68, 3, 344, 542, 1471, 85, 3, 1248, 503, 6], [462, 2933, 8, 45, 23, 664, 2, 43, 72, 31, 30, 83, 3049], [27, 2, 410, 977, 7, 1646, 497, 36, 3, 24, 86, 27, 2, 410, 977, 7, 1646, 497, 36, 3, 24, 86], [2131, 299, 3627, 205, 242, 171, 2131, 299, 3627, 205, 242, 171], [27, 2, 122, 2, 1060, 27, 2, 122, 2, 1060], [27, 2, 122, 2, 58, 4, 90, 6777, 27, 2, 122, 2, 58, 4, 90, 6777], [1408, 958, 1408, 958], [361, 24, 4797, 60, 657, 2075, 112, 12, 49, 990, 10, 48, 6, 202, 10, 640, 657, 2075, 4, 3, 155, 229, 6778], [1583, 2222, 2668, 41, 1121, 3, 6648, 18, 3100, 4, 3, 90, 2668, 134, 194, 47, 42, 511, 10, 76, 24, 144, 11, 76, 311, 2, 3, 606, 716, 161, 41, 6, 5862, 984, 7, 47, 38, 330, 2, 827, 355, 2, 118, 21, 251], [25, 13, 55, 14, 25, 13, 11, 10983, 1283, 1334, 6779, 11, 1252, 174, 3431, 3432, 2282, 1604], [13, 25, 11, 6780, 6781, 13, 25, 11, 6780, 6781], [15, 26, 15, 160, 13, 25, 56, 10984, 10985, 182, 213, 130, 155, 204, 117, 107, 214, 146, 64, 77, 18, 15, 26, 10, 454, 458, 13, 985, 248, 2, 199, 85, 253, 6, 33, 13, 67, 21, 855, 270, 80, 43, 311, 2, 26, 29, 102, 34, 9], [1003, 31, 1003, 31], [87, 46, 31, 508, 484, 37, 87, 46, 31, 508, 484, 37], [218, 29, 325, 146, 1474, 10986, 10987, 28, 56, 10988, 2, 43, 2426, 29, 2, 40], [417, 20, 55, 1, 185, 35, 50, 80, 10, 1125, 3, 417, 20, 24, 1, 259, 534, 1376, 30, 814, 7, 180, 1756, 80, 322, 3, 52, 30, 3, 13, 180, 2367, 67, 21, 1093, 273, 134, 742, 274, 3, 13, 169, 180, 331, 80, 72, 57, 67, 23, 123, 1431, 43, 1766, 1, 38, 2112, 483, 1, 1, 1, 135], [3930, 87, 964, 294, 383, 3930, 87, 964, 294, 383], [193, 30, 2314, 1257, 622, 377, 193, 30, 2314, 1257, 622, 377, 86], [15, 26, 13, 25, 15, 26, 13, 25], [1813, 403, 1191, 7, 1703, 245, 2310, 467, 1300, 1813, 403, 1191, 7, 1703, 245, 2310, 467, 1300], [307, 4798, 186, 263, 149, 127, 684, 4, 3898, 55, 21, 1008, 11, 50, 53, 3, 6455, 6, 534, 581, 2, 1202, 98, 3, 418, 10, 48, 7, 175, 186, 263, 1008, 219, 2, 43, 10989, 98, 14, 3219, 781, 35, 135], [142, 56, 55, 83, 1, 14, 236, 3, 115, 56, 11, 73, 148, 79, 1, 47, 243, 4, 1252, 174], [57, 1036, 2, 46, 2, 459, 57, 1036, 2, 46, 2, 459], [41, 10990, 3687, 18, 86, 107, 7, 793, 86, 107, 55, 50, 101, 1, 1, 288, 39, 70, 96, 131, 4, 41, 33, 86, 7, 793, 86, 1219, 391], [299, 523, 4, 285, 4799, 760, 1396, 4800, 221, 138, 52, 56, 4800, 28, 56, 10991, 10992, 10993, 271, 90, 953, 233, 9, 1094, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 93, 131, 442, 388, 93, 59, 93, 146, 539, 4799, 760, 2215, 484, 940, 560, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 10994, 10995, 10996, 441, 221, 247, 221, 138, 1057, 6782, 10997, 301, 138, 301, 40, 4800, 301, 247, 133, 903, 977, 801, 139, 108, 136, 108, 138, 108, 56, 1006, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 589, 59, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 4799, 760, 2215, 484, 940, 560, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 630, 656, 139, 1233, 1268, 59, 1401, 1402, 774, 1403, 10998, 1404, 10999, 671, 1405, 427, 299, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 306, 592, 227, 227, 306, 1872, 1178, 834, 227, 478, 6783, 954, 228, 1177, 306, 2236, 11000, 259, 5631, 1317, 4332, 4507, 1333, 11001, 306, 774, 228, 2236, 228, 1872, 954, 1872, 1355, 228, 954, 306, 1112, 476, 175, 228, 1762, 476, 175, 259, 1839, 476, 630, 656, 2741, 175, 306, 6784, 227, 228, 203, 175, 306, 11002, 228, 476, 2915, 2741, 306, 227, 6784, 203, 306, 11003, 1002, 53, 228, 11004, 306, 6785, 954, 306, 845, 962, 1509, 1310, 11005, 1872, 1112, 11006, 4972, 1002, 175, 6786, 1317, 1609, 2491, 476, 1178, 4596, 834, 1356, 1310, 306, 11007, 11008, 175, 1872, 1936, 1234, 862, 2035, 2624, 306, 11009, 11010, 306, 1872, 1310, 11011, 306, 11012, 960, 774, 834, 1230, 9, 1356, 1463, 1177, 1936, 11013, 476, 1177, 1267, 1845, 1234, 110, 1936, 4596, 259, 387, 476, 1476, 227, 11014, 845, 557, 607, 1762, 834, 1463, 11015, 306, 845, 954, 774, 6787, 3411, 255, 1845, 1328, 834, 476, 11016, 1317, 1839, 11017, 228, 2668, 1267, 6788, 478, 1333, 306, 259, 1845, 11018, 226, 1328, 228, 11019, 387, 1509, 228, 2671, 1509, 175, 387, 11020, 11021, 954, 478, 773, 11022, 11023, 306, 1394, 6258, 306, 773, 1355, 1839, 259, 478, 26, 259, 5358, 226, 1267, 851, 227, 306, 1112, 6789, 1310, 228, 175, 259, 259, 476, 43, 4563, 2915, 1328, 960, 592, 228, 175, 917, 228, 476, 851, 1317, 11024, 834, 1112, 226, 1230, 2229, 1872, 11025, 1178, 11026, 43, 26, 6790, 834, 11027, 1234, 2, 6789, 1509, 6152, 834, 11028, 592, 954, 774, 1355, 175, 228, 1356, 1509, 1394, 11029, 11030, 2915, 228, 6791, 1333, 1178, 228, 834, 227, 1002, 862, 834, 1328, 11031, 3314, 6790, 259, 834, 11032, 2236, 306, 175, 1463, 1872, 259, 1839, 476, 1002, 1872, 11033, 1310, 845, 4801, 1839, 1609, 1234, 3799, 646, 175, 228, 306, 11034, 4597, 2491, 387, 1317, 227, 1872, 3570, 11035, 1845, 1178, 592, 1333, 4572, 2491, 6202, 1328, 478, 6791, 2936, 646, 1394, 478, 834, 1177, 3799, 227, 1355, 11036, 1845, 476, 1002, 962, 255, 227, 1267, 43, 11037, 26, 387, 110, 2035, 1762, 1177, 259, 43, 228, 646, 476, 1177, 6169, 227, 841, 7, 11038, 1269, 306, 1845, 1267, 6788, 356, 773, 1355, 2229, 1267, 834, 6787, 2624, 845, 11039, 862, 773, 4562, 2236, 306, 476, 175, 2035, 6792, 845, 1234, 175, 11040, 228, 2260, 226, 11041, 1509, 774, 1269, 2354, 227, 6792, 862, 862, 11042, 1310, 2721, 306, 1902, 1394, 774, 954, 4562, 960, 228, 1269, 1355, 228, 6783, 427, 643, 227], [13, 119, 13, 119], [508, 108, 236, 98, 1107, 101, 1, 1, 14, 320, 80, 229, 2, 3, 136, 10, 288, 39, 236, 98, 508, 910, 2, 384, 24, 57, 294, 480, 78, 1, 1, 38, 3, 1346, 34, 402, 67, 1563, 54, 2, 236, 98, 3, 910, 389, 436, 1, 1, 135], [6, 4, 536, 12, 113, 169, 4060, 160, 12, 113, 424, 1219, 151, 186, 350, 2, 598, 23, 438, 6, 4, 536, 12, 113, 169, 4060, 160, 12, 113, 424, 1219, 151, 186, 350, 2, 598, 23, 438, 2, 1682, 117, 2564, 151, 63, 2033, 72, 31, 30, 3, 52, 456, 578, 2183, 53, 21, 264], [97, 122, 2, 168, 76, 36, 490, 54, 2, 199, 21, 36, 329, 17, 76, 6, 75, 51, 1603, 24, 76, 10, 3, 76, 24, 580, 3, 73, 835, 3068, 2, 468, 58, 29, 169, 1426, 2, 122, 118, 37, 133, 2, 3, 194, 142, 185, 8, 43, 2162, 207, 3, 247, 304, 11, 23, 133, 63, 1167], [340, 8, 45, 340, 8, 45], [15, 29, 110, 38, 141, 1118, 3, 2, 458, 22, 985, 11, 637, 158, 15, 38, 828, 274, 13, 425, 44, 21, 63, 499, 4, 13, 125, 20, 7, 51, 248, 73, 197, 1633, 573, 45, 248, 33, 376, 13, 276, 169, 8, 405, 997, 3, 71, 18, 2, 458, 22, 985, 54, 29, 2, 15, 2250, 11043, 145, 739], [13, 25, 559, 36, 11, 28, 13, 25, 559, 36, 11, 28], [1686, 1362, 88, 422, 29, 27, 2, 463, 347, 88, 422, 29, 27, 2, 463, 347], [87, 395, 8, 45, 87, 395, 8, 45], [13, 25, 102, 36, 646, 13, 25, 102, 36, 646], [235, 108, 453, 102, 235, 108, 453, 102], [8, 84, 2, 46, 2, 76, 32, 64, 77, 8, 84, 2, 46, 2, 76, 32, 64, 77], [226, 32, 64, 77, 226, 32, 64, 77], [74, 8, 45, 115, 4, 865, 174, 4, 190, 8, 164, 267, 2, 155, 74, 8, 45, 115, 4, 865, 174, 4, 190, 8, 164, 267, 2, 155, 1, 1, 115, 56, 1, 3298, 26, 1, 1, 129, 56], [1489, 412, 6793, 11, 6, 8, 45, 1489, 412, 6793, 11, 6, 8, 45, 1, 1, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [24, 417, 20, 111, 33, 56, 6, 11044, 11045, 1, 363, 50, 80, 2, 199, 24, 417, 20, 1, 1, 1, 1, 24, 1226, 1, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [2, 114, 47, 823, 3591, 1822, 767, 3913, 2124, 1369, 1602, 2, 114, 47, 823, 3591, 1822, 767, 3913, 2124, 1369, 1602], [280, 142, 11, 136, 233, 736, 1080, 1053, 280, 142, 11, 136, 233, 736, 1080, 1053], [123, 30, 167, 2228, 12, 3, 3688, 3797, 950, 951, 123, 30, 167, 2228, 12, 3, 3688, 3797, 950, 951], [415, 531, 254, 11, 2612, 2065, 6794, 531, 254, 6795, 6796, 415, 531, 254, 11, 2612, 2065, 6794, 531, 254, 6795, 6796], [123, 342, 212, 3005, 3006, 123, 342, 212, 3005, 3006], [60, 94, 90, 113, 17, 24, 17, 90, 90, 113, 1586, 76, 618, 696, 75, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 640, 6, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 6, 75, 238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 24, 144, 6, 75], [110, 118, 432, 6797, 11046, 11, 2934, 2935, 14, 114, 424, 432, 6797, 11, 2934, 2935, 42, 164, 2305, 2, 80, 3193, 65, 8, 268, 143, 18, 3, 245, 14, 114, 772], [13, 125, 20, 13, 120, 46, 31, 146, 248, 199, 13, 125, 20, 120, 2, 119, 13, 51, 322, 73, 11047, 21, 2347, 80, 9, 11048, 51, 413, 211, 21, 583, 80, 37], [893, 667, 812, 54, 2, 206, 451, 2279, 2, 41, 273, 45, 30, 41, 7, 67, 542, 134], [87, 206, 4, 6, 8, 323, 98, 4, 41, 87, 206, 4, 6, 8, 323, 98, 4, 41, 1, 183, 51, 866, 1565], [235, 108, 453, 24, 794, 235, 108, 453, 24, 794], [228, 254, 10, 3007, 6, 272, 198, 375, 198, 178, 607, 369, 370, 900, 3007, 6798, 10, 78, 3007, 6, 272, 198, 375, 198, 178, 607], [3855, 3855, 8, 45, 201, 1280, 1068], [41, 8, 545, 41, 8, 545], [2691, 930, 734, 6, 8, 1198, 4, 88, 690, 1969, 1279, 2, 29, 146, 2691, 930, 734, 6, 8, 1198, 4, 88, 690, 28, 6, 250, 2, 29, 88, 2691, 734, 11, 648, 116], [26, 6, 8, 45, 26, 6, 8, 45, 1, 37, 9, 133, 2, 78], [17, 194, 6, 8, 45, 124, 3008, 3009, 111, 3719, 124, 921, 922, 55, 124, 3008, 3009, 17, 194, 6, 8, 45, 39, 35, 1377, 168, 194, 6, 45, 124, 921, 922, 837, 270, 80, 114, 124, 3008, 3009, 837, 124, 921, 922, 42, 35, 164, 241, 37, 124, 3008, 3009, 8, 84, 2, 122, 76, 124, 921, 922, 837, 270, 80, 189, 34, 124, 921, 922, 39, 35, 335, 68, 21, 6, 45, 124, 3008, 3009, 168, 6, 45, 49, 10, 168, 172, 124, 921, 922, 837, 23, 6, 73, 1322, 76, 194, 68, 35, 38, 116, 355, 335, 21, 124, 3008, 3009, 614, 124, 921, 922], [473, 6, 11, 673, 18, 349, 186, 350, 11, 115, 11049, 4478, 1061, 72, 37, 71], [452, 10, 833, 214, 18, 3, 107, 4, 3, 2231, 52, 594, 3882, 14, 1005, 3, 214, 452, 10, 833, 214, 18, 3, 107, 4, 3, 2231, 52, 594, 3882, 14, 1005, 3, 214], [185, 326, 376, 57, 36, 1324, 4, 130, 41, 55, 1, 201, 1362, 1, 1, 1, 342, 1079, 3341, 30, 135], [235, 108, 453, 1254, 588, 235, 108, 453, 1254, 588], [102, 11, 1462, 544, 3, 11050, 5, 4, 26, 111, 101, 935, 1, 1, 14, 1462, 544, 3, 5, 11051, 20, 4, 26, 52, 1, 1, 3, 5, 63, 3931, 2, 205, 242, 3, 763, 18, 197, 18, 3, 1574, 3932, 482, 4, 872, 52, 53, 3, 764, 6, 336, 2069, 14, 1462, 3, 2680, 5, 1, 1, 57, 6, 331, 2, 101, 1, 1, 135], [8, 84, 2, 122, 2, 41, 164, 299, 559, 393, 299, 484, 8, 84, 2, 122, 2, 77, 366, 14, 91, 3, 167, 554, 7, 106, 807], [1684, 149, 127, 777, 150, 4, 5, 19, 311, 2, 397, 18, 28, 6799, 4, 217, 22, 51, 937, 1012, 1684, 149, 127, 777, 150, 4, 5, 19, 311, 2, 397, 18, 28, 6799, 4, 217, 22, 51, 937, 1012], [29, 2, 373, 6800, 2692, 441, 7, 474, 6801, 111, 308, 90, 4802, 4803, 1077, 6802, 29, 2, 373, 6800, 2692, 441, 7, 474, 6801], [536, 31, 11, 249, 55, 3766, 1, 1, 23, 450, 2942, 997, 98, 257, 356, 3670, 6, 21, 365, 986, 2, 373, 3, 472, 1, 14, 91, 3, 167, 96], [349, 31, 172, 3, 1224, 274, 2, 673, 649, 8, 1766, 989, 6803, 6804, 6805, 6806, 124, 291, 292, 6803, 6804, 349, 31, 208, 101, 47, 746, 1927, 6807, 127, 10, 461, 6808, 349, 673, 1980, 103, 67, 558, 798, 591, 462, 249, 273, 1169, 4, 15, 363, 50, 2, 114, 3, 1886, 1206, 1498, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [102, 4, 1155, 18, 2827, 3168, 55, 4268, 1, 1, 2827, 11052, 383, 672, 6, 201, 1286, 4, 197, 3278, 1, 1, 68, 180, 89, 672, 982, 4, 283, 41, 10, 3, 142, 21, 11053, 11054, 180, 383, 672, 1, 68, 180, 6809, 197, 10, 3, 383, 21, 6, 8, 1996, 2, 3, 41, 1, 1, 246, 35, 14, 43, 207, 450, 7, 50, 166, 704, 23, 31, 1, 1, 458], [4802, 4803, 29, 2, 2692, 3010, 1069, 40, 111, 1, 1, 308, 90, 29, 2, 4802, 4803, 161, 73, 3353, 18, 2692, 441, 101, 1, 408, 1077, 6, 6802], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [25, 224, 11, 11055, 11056, 137, 13, 125, 20, 13, 25, 3], [29, 11, 11057, 266, 740, 55, 1, 1, 2, 4696, 11, 1624, 6810, 6811, 171, 54, 29, 2, 373, 266, 117, 3933, 11058, 4, 260, 20, 21, 99, 43, 995, 4, 713, 6810, 6811, 171, 21, 6, 3911, 307, 172, 1, 48, 2944, 505, 1881, 11059, 82, 20, 11060, 3921], [893, 1248, 11, 1238, 46, 11, 462, 2238, 452, 111, 1, 11, 104, 136, 7, 797, 201, 38, 653, 50, 36, 21, 2, 236, 98, 1238, 46, 11, 5017, 148, 11, 24, 462, 2238, 2, 43, 452, 10, 11061, 12, 161, 174, 1640, 11062, 1, 782, 402, 66, 11063], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 11064, 10, 40, 3638, 10, 40, 3638, 10, 40, 1, 1, 1154, 665, 18, 3, 123, 99, 8, 176, 411, 11065, 54, 399, 399, 3, 830, 67, 21, 1449, 37, 578, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 83, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 41, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 9, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [32, 64, 32, 64], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [419, 419], [1203, 34, 9, 54, 2, 102, 29, 2, 616, 119, 160, 127, 4, 6812, 7, 113, 3311, 3312, 246, 265, 2, 1203, 3, 71, 34, 9, 54, 2, 102, 29, 2, 616, 119, 160, 127, 4, 6812, 7, 113], [813, 1050, 71, 1, 291, 292, 1, 49, 1, 4519, 4520, 1, 243, 73, 432, 1330, 36, 12, 49, 1, 1, 111, 11066, 1, 1, 21, 1100, 265, 813, 181, 35, 39, 465, 3711, 7, 544, 21], [9, 29, 2, 518, 1617, 459, 3, 195, 106, 8, 38, 11067, 2, 518, 1617, 459, 11068, 11069], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [11070, 652, 641, 176, 859, 941, 770, 36, 1184, 44, 11071, 265, 11072, 2808, 62, 531, 254, 601, 1083, 348, 651, 66, 3, 11073, 7, 6813, 129], [3934, 2528, 99, 8, 189, 1965, 3756, 3934, 2528, 99, 8, 189, 1965, 3756, 30, 482, 3476, 1, 1, 38, 328, 30, 1367, 2485, 44, 151, 428, 149, 514, 3, 713, 18, 165, 2528, 42, 45, 2, 189, 3, 1215, 573, 708, 14, 386, 85, 185, 43, 3, 1206, 7, 1477, 2, 391, 14, 183, 263, 23, 179, 312, 1067, 2, 1241, 3, 481], [987, 82, 20, 1596, 412, 1023, 77, 18, 3, 159, 493, 884, 98, 4, 1164, 110, 2258, 6814, 11074, 67, 276, 1023, 884, 98, 4, 1164, 2199, 30, 6814, 7, 1023, 183, 330, 3, 11075, 1924, 4, 3, 1924, 469, 53, 63, 987, 412, 11, 11076], [83, 33, 287, 4, 128, 126, 38, 2280, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 814, 1028, 111, 6815, 5951, 5952, 111, 814, 1028], [243, 744, 666, 24, 318, 632, 4681, 2855, 111, 39, 118, 72, 70, 10, 23], [51, 250, 2, 1229, 171, 49, 164, 1000, 98, 44, 530, 374, 2290, 407, 8, 336, 51, 250, 2, 1229, 171, 49, 164, 1000, 98, 44, 530, 374, 2290, 407, 8, 336], [60, 94, 1285, 768, 75, 10, 24, 17, 90, 90, 856, 618, 24, 144, 112, 12, 124, 105, 10, 851, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1408, 958, 1408, 958], [595, 4, 47, 42, 697, 104, 1006, 24, 144, 108, 848, 539, 1879, 2215, 78, 484, 940, 560, 364, 44, 1078, 10, 12, 11, 380, 8, 230, 36, 247, 139, 18, 2, 247, 139, 18, 1775, 44, 6, 848, 1879, 380, 1, 1, 14, 263, 44, 4750, 10, 3, 11077, 18, 1006, 24, 144, 151, 6, 2366, 44, 11078, 6, 104, 6816, 293, 68, 23, 6, 3, 732, 14, 11079, 104, 11080, 1994, 2, 1264, 3, 1175, 301, 18, 23, 597, 68, 35, 106, 8, 4427, 2, 43, 11081, 10, 261, 388, 14, 270, 166, 253, 7, 47, 99, 456, 353, 261, 364, 51, 284, 243, 1523, 2, 104, 6816, 293, 1, 1, 1879, 597, 89, 8, 662, 701, 1410, 597, 716, 3, 4804, 18, 3935, 140, 264, 43, 4743, 2, 1264, 68, 23, 6, 723, 62, 1027, 597, 1879, 597, 1717, 285, 1347, 6080, 184, 4, 878, 185, 1287, 2, 2393, 6817, 1879, 6, 357, 11082, 304, 66, 760, 1641, 1879, 597, 183, 701, 760, 1056, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 9, 86, 121, 332, 161, 506, 561, 1347, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 315, 776, 11, 4805, 446, 380, 1879, 449, 364, 433, 3, 380, 63, 8, 230, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 4805, 446, 380, 1879, 449, 364, 433, 3, 380, 63, 8, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 382, 725], [439, 4, 1390, 455, 436, 619, 1894, 138, 2253, 2254, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 3059, 1390, 455, 436, 619, 1894, 138, 364, 11, 380, 36, 2253, 2254, 2, 3, 415, 138, 196, 18, 65, 141, 1894, 66, 161, 2613, 2578, 1248, 2094, 101, 311, 2, 558, 6591, 30, 760, 1390, 455, 436, 619, 3, 952, 928, 264, 43, 4743, 53, 380, 2, 3, 1894, 138, 196, 701, 44, 3, 293, 65, 141, 802, 66, 760, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 181, 201, 319, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 315, 776, 11, 442, 388, 313, 305, 34, 7, 86, 121, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1270, 93, 131, 93, 59, 93, 146, 3059, 1390, 455, 436, 619, 1894, 138, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 2253, 2254, 221, 1381, 196, 1310, 1333, 301, 138, 301, 40, 138, 138, 6592, 441, 301, 138, 1057, 6593, 90, 133, 903, 1646, 108, 136, 108, 138, 108, 56, 24, 318, 154, 24, 144, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 296, 59, 93, 537, 154, 3247, 619, 139, 133, 11, 240, 2, 109, 688, 131, 785, 786, 10, 2, 1310, 1333, 2253, 2254, 192, 787, 775, 788, 658, 712, 509, 354, 34, 354], [87, 10, 3, 6818, 4361, 115, 6, 8, 45, 8, 2409, 80, 2, 122, 67, 649, 2, 134, 11, 1515, 87, 10, 3, 6818, 4361, 115, 6, 8, 45, 8, 2409, 80, 2, 122, 67, 649, 2, 134, 11, 1515], [595, 4, 595, 4, 1, 1, 47, 42, 697, 104, 1006, 24, 144, 108, 848, 539, 6819, 1179, 751, 28, 296, 940, 560, 364, 11, 1642, 380, 36, 247, 139, 18, 2, 247, 139, 18, 23, 380, 1717, 44, 6, 137, 3, 6819, 751, 53, 4964, 4, 3, 93, 222, 1073, 1, 1, 1395, 669, 221, 138, 196, 8, 6820, 43, 3892, 311, 2, 2974, 2192, 2, 434, 138, 1584, 294, 3, 199, 18, 3642, 3935, 140, 1108, 53, 1879, 7, 4806, 14, 663, 3, 2247, 293, 2, 1264, 1459, 35, 42, 327, 1792, 394, 18, 3, 220, 357, 2247, 1, 1, 23, 34, 99, 3333, 3846, 53, 916, 34, 11, 143, 442, 364, 599, 47, 384, 2359, 36, 35, 10, 288, 2, 796, 261, 388, 601, 844, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 47, 38, 107, 18, 615, 178, 11, 3, 561, 18, 710, 364, 1108, 53, 23, 197, 1, 1, 1985, 261, 364, 899, 2, 3, 212, 9, 579, 319, 7, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 34, 201, 776, 192, 883, 305, 34, 9, 86, 121, 11, 669, 1782, 221, 138, 196, 11, 261, 364, 1, 315, 776, 192, 313, 305, 34, 7, 86, 121, 11, 669, 1782, 221, 138, 196], [285, 1179, 513, 36, 293, 33, 6821, 144, 10, 2246, 3332, 595, 4, 1, 1, 47, 42, 697, 104, 2246, 24, 144, 108, 848, 285, 513, 364, 11, 380, 8, 230, 36, 293, 1775, 44, 21, 43, 11083, 1179, 513, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 104, 1959, 102, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 11, 1179, 513, 364, 579, 319, 192, 883, 305, 34, 7, 9, 86, 121, 1, 456, 353, 1179, 513, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 285, 513, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 293, 33, 6821, 144, 1, 221, 247, 1, 221, 138, 1057, 11084, 90, 1, 301, 247, 1, 301, 138, 1057, 90, 90, 1, 133, 903, 977, 1, 352, 819, 118, 1, 293, 1, 315, 919, 993, 188, 154, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 2246, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 69, 797, 539, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 5831, 589, 59, 4807, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 23, 93, 1717, 966, 221, 848, 62, 316, 93, 11085, 30, 344, 18, 62, 316, 1522, 4, 2123, 835, 1, 11086, 116, 221, 301, 146, 1, 539, 6822, 751, 188, 154, 6823, 29, 1134, 560, 1, 539, 6822, 751, 188, 154, 6823, 29, 1134, 560, 1, 6824, 352, 644, 30, 6825, 560, 1, 6824, 352, 644, 30, 6825, 560, 1, 539, 2581, 352, 1950, 6826, 560, 1, 539, 2581, 352, 1950, 6826, 560], [3717, 3718, 317, 452, 31, 3717, 3718, 317, 452, 31], [13, 6827, 11, 835, 24, 13, 6827, 11, 835, 24], [122, 2, 3, 58, 3, 115, 4, 3, 2270, 719, 39, 35, 366, 4, 2, 164, 3, 115, 10, 2, 3, 58, 4, 3, 2270, 719, 489, 18, 2002, 21, 246, 43, 5280, 2, 43, 84, 2, 818, 241, 2900, 36, 3, 115], [338, 13, 25, 338, 13, 25], [1070, 11, 162, 20, 48, 966, 392, 10, 1070, 11, 162, 20, 48, 966, 392, 10], [313, 305, 148, 317, 1326, 1083, 27, 2, 91, 167, 558, 2028, 1896, 14, 583, 313, 305, 112, 28, 6, 4498, 36, 200, 1018, 11087, 1769], [54, 1087, 4, 52, 4808, 7, 54, 1630, 18, 1087, 454, 54, 1087, 4, 52, 4808, 7, 54, 1630, 18, 1087, 454, 1756, 28, 11088, 1087, 12, 52, 4808, 30, 11089, 182, 67, 1431, 236, 98, 1630, 11, 21, 2069, 53, 332, 28, 102, 1977, 21, 2, 437, 21, 129], [24, 168, 998, 190, 476, 73, 174, 29, 277, 61, 431, 31, 318, 61, 431, 10, 24, 168, 998, 190, 476, 73, 174, 29, 277, 6, 323, 2155, 1, 1, 24, 168, 998, 190, 476, 73, 5527, 5528, 83, 1, 2808, 6, 837, 1, 2801, 6, 837, 1, 61, 6, 2155, 1, 5529, 6, 8, 1997], [27, 2, 95, 4, 2, 459, 338, 212, 27, 2, 95, 4, 2, 459, 338, 212], [82, 20, 31, 82, 20, 31], [15, 32, 11, 3740, 790, 2259, 98, 39, 35, 132, 14, 26, 15, 32, 11, 3740, 790, 2259, 98, 39, 35, 132, 14, 26], [82, 20, 31, 7, 1878, 2098, 82, 20, 31, 7, 1878, 2098], [102, 11, 24, 144, 57, 196, 6017, 4809, 1, 124, 1, 2934, 2935, 1, 243, 24, 57, 196, 102, 36, 4675, 4676, 1, 1, 495], [339, 121, 533, 339, 121, 533], [25, 33, 13, 2, 1767, 1102, 25, 33, 13, 2, 1102, 53], [4809, 171, 29, 55, 1, 1089, 2, 38, 805, 33, 29, 2, 4809, 440, 51, 4, 465, 4, 2, 548, 11, 333, 21, 1428, 80, 158, 3, 949, 333, 2758, 7, 51, 1961, 73, 2447, 3, 548, 681, 6, 346, 106, 54, 2, 106, 829, 2, 118, 29, 2, 23, 251], [419, 696, 2, 8, 11090, 580, 146, 10, 155, 1000, 98, 30, 1092, 130, 2693, 639, 18, 2218, 52], [1704, 30, 480, 1032, 3, 1704, 30, 480, 1032, 6, 970, 230, 10, 104, 956, 599, 29, 6, 4589, 66, 3, 718], [15, 26, 13, 25, 15, 26, 13, 25], [87, 395, 89, 8, 134, 87, 395, 89, 8, 134], [203, 34, 70, 203, 34, 70], [58, 94, 90, 3475, 48, 6, 531, 75, 12, 49, 105, 10, 151, 6, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [51, 867, 245, 36, 3106, 2664, 200, 3, 331, 245, 468, 98, 4, 33, 508, 331, 218, 129, 146, 51, 867, 245, 36, 3106, 2664, 200, 3, 331, 245, 468, 98, 4, 33, 508, 331, 218, 7, 8, 4, 3, 2664, 331, 218, 21, 89, 23, 11, 83, 195, 4, 3, 24, 2664, 57, 767], [2991, 52, 90, 14, 269, 21, 295, 11, 3, 205, 869, 10, 3, 73, 2991, 52, 4, 3, 1640, 520, 719, 4, 90, 47, 54, 2, 205, 242, 3, 52, 2, 421, 3, 11091, 392, 489, 11, 3, 69], [419, 8, 45, 419, 8, 45], [531, 286, 639, 10, 4810, 293, 6828, 531, 286, 639, 10, 4810, 293, 6828], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [40, 1304, 474, 1227, 160, 286, 565, 10, 6, 172, 40, 1304, 474, 1227, 160, 286, 565, 10, 6, 172], [95, 10, 792, 37, 516, 169, 699, 2, 76, 95, 10, 792, 37, 516, 169, 699, 2, 76], [57, 99, 8, 100, 527, 57, 99, 8, 100, 11092, 11093, 331, 36, 33, 4811], [209, 174, 606, 36, 2, 209, 174, 606, 36, 2], [41, 31, 278, 41, 327, 278], [58, 94, 361, 48, 6, 75, 12, 49, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [74, 407, 400, 56, 11094, 11095, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 49, 290, 210, 303, 2, 33, 2392, 74, 118, 72, 37, 1612, 9, 1296, 1605, 7, 1510, 49, 1840, 2, 528, 73, 407], [461, 175, 55, 21, 1, 1, 151, 42, 438, 2694, 30, 3, 2054, 1023, 67, 201, 197, 116, 6, 3769, 4, 461, 14, 50, 114, 21], [3, 2449, 171, 99, 8, 134, 23, 6, 804, 2, 3, 875, 735, 3, 482, 171, 2449, 51, 1448, 6, 6706, 9, 131, 23, 6, 1222, 171, 23, 6, 804, 2, 3, 875, 735], [13, 25, 89, 8, 134, 4, 4761, 34, 9, 3365, 3366, 124, 11096, 11097, 1897, 1898, 13, 25, 89, 8, 134, 4, 4761, 34, 9, 55, 711, 11098, 6, 290, 1237, 2, 25, 283, 13, 4, 1259, 180, 6, 250, 2, 25, 3, 13, 21, 530, 44, 104, 13, 65, 141, 331, 2, 3, 794, 57, 196, 67, 180, 89, 8, 384, 143, 13, 4, 283, 181, 47, 38, 425, 7, 11099, 995, 3, 57, 196, 14, 50], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [340, 8, 45, 340, 8, 45], [474, 55, 255, 161, 73, 6626, 11100, 11101, 11102, 7, 11103, 11104, 11105, 3, 474, 898, 6, 273, 275], [14, 1540, 32, 11, 28, 6829, 1362, 1047, 14, 1540, 32, 11, 28, 6829, 1362, 1047], [15, 26, 13, 25, 15, 26, 13, 25], [2491, 173, 39, 43, 825, 2491, 173, 39, 43, 825], [2424, 1007, 2, 91, 72, 2584, 181, 36, 1765, 341, 2424, 1007, 2, 91, 72, 2584, 181, 36, 1765, 341], [191, 217, 6, 8, 45, 110, 97, 170, 3, 191, 217, 849, 91, 464, 163], [197, 101, 70, 197, 101, 70], [162, 20, 28, 6, 8, 84, 2, 1922, 223, 131, 1686, 1362, 28, 31, 28, 6, 8, 84, 2, 1922, 131, 2, 212, 14, 326, 163, 181], [15, 26, 7, 26, 132, 7, 13, 25, 15, 26, 7, 26, 132, 7, 13, 25], [6830, 132, 6830, 132], [3011, 132, 3011, 132], [28, 486, 2, 25, 13, 32, 6, 808, 4, 226, 28, 486, 2, 25, 13, 32, 6, 808, 4, 226], [15, 13, 25, 15, 26, 15, 13, 25, 15, 26], [317, 1480, 31, 111, 151, 274, 2, 2056, 317, 67, 3, 167, 1480, 6, 8, 722, 479, 2, 119, 2, 67, 351, 37, 71, 265, 23, 3, 628, 1019, 4812, 6, 8, 2261, 66, 3, 317, 452, 14, 119, 104, 1019, 4812, 2, 62, 143, 165, 317, 1332, 4812, 53, 332, 3, 317, 4813, 39, 35, 50, 80, 77, 14], [57, 8, 45, 111, 151, 1, 1, 1, 248, 2, 199, 33, 57, 67, 21, 273, 429, 590, 169, 2196, 38, 199, 3, 422, 1192, 174, 2, 114, 57, 1, 1, 39, 35, 50, 2, 398, 44], [378, 39, 8, 392, 4, 110, 39, 8, 392, 4, 11106, 135], [14, 525, 15, 95, 10, 54, 2, 43, 25, 8, 614, 424, 67, 1031, 95, 10, 4726, 4727, 4728, 220, 149, 685], [14, 525, 874, 498, 7, 11107, 4726, 4727, 4728, 220, 149, 685], [226, 64, 77, 226, 64, 77, 13, 25, 294, 13, 125, 20, 13, 120], [994, 484, 6831, 455, 272, 6832, 994, 484, 6831, 455, 272, 6832, 4, 197, 347, 39, 2016, 21, 4, 347, 7, 347, 1, 38, 163, 197, 698, 455, 11, 104, 797], [60, 94, 358, 358, 856, 60, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 640, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 50, 111, 208, 491, 1823, 1, 1, 1382, 104, 50, 11, 3, 15, 840, 312, 1, 1, 696, 2, 15, 1103, 36, 623, 52, 737, 1000, 98, 3, 167, 96, 516, 355, 3853, 3213, 1, 14, 308, 114, 7, 398], [27, 2, 46, 2, 82, 20, 111, 274, 3, 13, 294, 13, 125, 20, 7, 172, 27, 2, 11108, 2, 82, 20, 363, 50, 6833, 6834, 6835], [620, 342, 1432, 1957, 1074, 1075, 620, 342, 1432, 1957, 1074, 1075], [620, 342, 1432, 1957, 1074, 1075, 620, 342, 1432, 1957, 1074, 1075], [148, 8, 11109, 36, 1193, 859, 51, 267, 3, 148, 2, 1193, 859, 558, 8, 1613, 831], [41, 6, 2111, 783, 11, 13, 41, 6, 2111, 783, 11, 13], [74, 782, 74, 782, 146, 54, 2, 893, 74, 4, 2302, 308, 50, 2, 106, 3, 179, 4722, 11110, 959, 2383, 4117], [2544, 5793, 11111, 477, 1052, 477, 477, 2121, 6836, 162, 6837, 1, 477, 2121, 6836, 162, 6837], [6838, 214, 52, 1393, 2, 2781, 2372, 6838, 214, 52, 1393, 2, 2781, 2372], [13, 25, 102, 13, 25, 102], [15, 1313, 65, 141, 430, 15, 1313, 65, 141, 430], [140, 8, 45, 10, 148, 82, 20, 41, 155, 204, 330, 299, 435, 7, 83, 38, 706, 1752, 330, 863, 435, 7, 140, 706, 45], [41, 41], [82, 20, 7, 82, 20, 8, 45, 55, 33, 52, 6, 843, 72, 210, 329, 699, 82, 20, 7, 82, 20, 140, 96, 6, 3, 2526, 71, 82, 20, 11, 82, 20, 14, 295, 11112, 11113, 4416, 149, 24, 361, 1335, 4994, 181], [193, 30, 1443, 303, 1857, 47, 823, 1554, 1555, 193, 30, 1443, 303, 1857, 47, 823, 1554, 1555], [193, 30, 1443, 303, 1857, 47, 823, 1554, 1555, 193, 30, 1443, 303, 1857, 47, 823, 1554, 1555], [280, 73, 471, 142, 736, 6839, 6840, 280, 73, 471, 142, 736, 6839, 6840], [6841, 29, 55, 1, 1093, 91, 33, 740, 12, 6841, 417, 20, 183, 5890, 5196, 143, 6842, 1, 38, 499, 83, 33, 460, 7, 119, 3, 13, 67, 3, 123, 2161], [15, 37, 111, 101, 49, 1085, 241, 37, 4, 15, 26, 220, 11114, 49, 8, 2318, 1459, 49, 1090, 26, 52, 62, 8, 38, 1105, 158, 535, 4, 33, 52, 6, 23, 3, 391, 220, 264, 43, 137, 14, 326, 377, 44, 39, 583, 11115, 18, 3, 37, 2871, 565, 2, 1413, 62, 57, 62, 86, 121, 30, 80, 2, 1563, 316, 10, 23], [5, 162, 6843, 22, 4, 5, 19, 12, 5, 162, 6843, 22, 4, 5, 19, 12], [25, 3, 13, 11, 5275, 5276, 10, 15, 160, 15, 14, 25, 195, 13, 2, 1102], [211, 73, 2121, 53, 2608, 839, 24, 925, 211, 73, 2121, 53, 2608, 839, 24, 925], [15, 26, 32, 64, 15, 26, 32, 64], [15, 397, 111, 1, 1, 99, 35, 14, 50, 80, 2, 397, 2, 15, 1, 1, 21, 542, 479, 2, 979, 33, 13, 1, 1, 1262, 54, 2, 995, 4, 73, 13, 1, 1, 450], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [302, 18, 21, 101, 2271, 30, 1129, 55, 533, 101, 39, 35, 844, 166, 3, 302, 18, 21, 101, 1066, 11116, 66, 423, 733, 698, 101, 1066, 21, 733, 1340, 11117, 295, 15, 431, 549, 2971, 11118, 11119, 11120, 1865, 79, 78, 202, 675, 299, 15, 299, 933, 15], [82, 791, 20, 31, 111, 1, 1, 82, 791, 20, 6, 8, 45, 4, 33, 52, 14, 583, 80, 1340, 4, 23, 31], [2419, 312, 11, 2063, 1482, 307, 208, 21, 1, 1, 14, 50, 2, 114, 7, 644, 3, 6844, 2063, 1482, 24, 47, 38, 350, 7, 117, 225, 418, 576, 67, 3, 2063, 1482, 11, 6845, 262, 38, 8, 141, 1751, 989, 1, 1, 14, 50, 2, 644, 3, 1482, 662, 389, 310, 1, 1, 1, 135], [27, 2, 509, 176, 77, 36, 82, 791, 20, 27, 2, 509, 176, 77, 36, 82, 791, 20], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [337, 205, 242, 36, 1974, 1012, 1229, 347, 22, 3270, 6846, 63, 8, 336, 112, 124, 105, 10, 337, 205, 242, 36, 1974, 1012, 1229, 347, 22, 3270, 6846, 63, 8, 336, 112, 124, 105, 10], [337, 6, 8, 45, 37, 28, 1472, 22, 337, 6, 8, 45, 37, 28, 1472, 22, 1, 1, 15, 6, 45, 155, 6, 45, 1, 1, 2677, 113, 6, 8, 84, 2, 29, 3, 52], [97, 239, 3, 791, 4, 337, 97, 239, 3, 610, 163, 2, 349, 4, 26, 425, 7, 3, 394, 18, 3, 917, 791, 6, 23, 349, 183, 1169, 4, 26, 30, 3, 179, 763], [652, 641, 78, 210, 102, 967, 30, 161, 652, 641, 52, 83, 195, 42, 27, 2, 95, 4, 72, 513, 359, 10, 3, 641, 1253, 121, 63, 2343, 2, 100, 1237, 34], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [51, 694, 335, 2, 95, 158, 337, 118, 3, 177, 37, 28, 1472, 22, 8, 84, 2, 513, 359, 4, 3, 90, 113], [13, 64, 55, 14, 132, 33, 13, 11, 15, 7, 441, 1467, 28, 59, 11121], [1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 276, 714, 1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 276, 714, 7, 3, 416, 2222, 416, 6, 304, 3, 31, 1169, 4, 15, 15, 52, 26, 53, 613, 53, 10, 417, 20, 24, 314, 160, 1037, 1, 582, 37, 71, 1065, 6, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 1, 397, 182, 714, 6, 837, 68, 161, 2232, 416, 6, 304, 83, 182, 1089, 2, 43, 45, 494, 67, 746, 3, 28, 521, 2, 143, 165, 182, 387, 592, 62, 21, 7, 3515, 3, 416, 2222, 416, 3, 5272, 2546, 52, 4191, 30, 3, 37, 71, 514, 937, 312, 18, 1274, 3516], [40, 79, 286, 198, 1035, 559, 10, 565, 198, 2191, 467, 7, 426, 607, 565, 40, 260, 82, 2317, 160, 79, 286, 198, 1035, 559, 10, 565, 198, 2191, 467, 7, 426, 607, 565], [548, 11, 130, 333, 29, 15, 191, 3558, 14, 211, 548, 11, 130, 333, 10, 11122, 11123, 7, 11124, 11125, 142, 11126, 223, 107, 6, 11127, 11128, 223, 107, 6, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [338, 48, 149, 7, 1148, 681, 346, 338, 48, 149, 7, 1148, 681, 346], [238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 24, 144, 6, 75, 238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 24, 144, 6, 75], [340, 8, 45, 1223, 10, 989, 9, 2609, 806, 2037, 878, 489, 6847, 235, 1484, 507, 56, 11129, 90, 182, 213, 130, 155, 204, 117, 107, 214, 146, 340, 8, 45, 1223, 10, 989, 9, 2609, 806, 2037, 878, 489, 6847, 235, 1484, 507], [3209, 432, 20, 446, 1163, 55, 533, 101, 14, 574, 143, 804, 432, 20, 1163, 2, 58, 101, 169, 33, 174, 655, 7, 1544, 444, 58, 5861, 101, 264, 43, 84, 2, 353, 3, 210, 7, 68, 284, 54, 143, 295, 3353, 284, 99, 129, 80, 30, 135], [27, 2, 100, 41, 27, 2, 100, 41], [4, 3, 134, 314, 2, 106, 302, 160, 359, 30, 6848, 42, 323, 98, 284, 264, 8, 4, 3, 134, 314, 2, 106, 302, 160, 359, 30, 6848, 42, 323, 98, 284, 264, 8, 14, 366, 12, 134, 314, 4, 113, 1, 6849, 6850, 7, 6559, 1690, 3, 374, 416, 6, 8, 3080, 23, 136, 77, 47, 54, 2, 206, 2499, 4, 337], [54, 543, 2, 74, 196, 1433, 40, 1020, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 814, 1028, 111, 3936, 6507, 6508, 55, 814, 814, 1028], [86, 923, 11, 90, 2895, 117, 200, 101, 42, 8, 45, 6037, 83, 161, 740, 11, 1668, 2895, 3, 188, 92, 923, 44, 42, 8, 134, 42, 497, 2, 261, 923, 118, 2672, 1736, 68, 35, 265, 2, 410, 121, 14, 3521, 98, 7, 335, 257], [54, 2, 893, 958, 54, 2, 893, 958], [34, 70, 10, 258, 34, 70, 10, 258], [116, 1149, 219, 2, 43, 274, 2, 655, 116, 1149, 219, 2, 43, 274, 2, 655, 142, 56, 1853, 1853, 113, 1853, 4710, 1853, 6851, 267, 2, 3, 28, 52, 137, 487, 129, 267, 2, 3, 115, 137, 4814, 543, 3, 28, 2, 3, 522, 159, 991, 83, 3, 115, 50, 3, 28, 119, 3, 116, 2926, 10, 83, 3, 115, 31, 321], [597, 7, 3937, 454, 313, 1092, 11, 90, 263, 36, 11130, 11131, 1, 1, 106, 35, 253, 68, 3, 131, 4, 3, 597, 3225, 18, 3, 134, 314, 3937, 171, 6, 6060, 11, 21, 6, 323, 343, 313, 3937, 276, 51, 114, 72, 127, 3, 570, 1219, 343, 2032, 489, 1, 1, 597, 183, 1100, 4433, 4, 3, 171, 11, 3, 11132, 134, 314, 21, 1219, 1827, 3, 391, 1021, 1258, 1319, 4, 15, 1100, 365, 51, 1216, 98, 3, 359, 355, 3, 171, 649, 2, 38, 1083, 131], [79, 13, 25, 11, 6852, 6853, 79, 13, 25, 11, 6852, 6853], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [378, 1652, 348, 30, 86, 107, 6, 8, 45, 7, 89, 8, 38, 281, 2886, 1652, 348, 30, 86, 107, 6, 8, 45, 7, 89, 8, 38, 281, 2886], [110, 54, 29, 2, 3, 584, 218, 10, 128, 126, 110, 39, 326, 3340, 484, 1925, 455, 10, 128, 126, 7, 54, 2, 410, 614, 21, 2593, 584], [25, 3, 13, 11, 4514, 4515, 10, 165, 279, 140, 14, 25, 13, 2, 279, 140], [128, 126, 48, 8, 1458, 208, 21, 50, 564, 49, 27, 2, 6854, 77, 192, 155, 204, 2, 3367, 265, 128, 126, 62, 457, 183, 87, 99, 8, 100, 11, 80, 7, 39, 91, 165, 826, 1552, 10, 41, 62, 87, 14, 50, 1, 16, 742, 248, 637, 489, 7, 10, 7, 2513, 3, 831, 1, 9, 6855, 828, 274, 33, 4815, 67, 16, 187, 828, 119, 33, 13, 137, 13, 125, 20, 270, 80, 253, 18, 143, 498], [27, 2, 122, 2, 1835, 314, 4, 2783, 462, 681, 27, 2, 122, 2, 1835, 314, 4, 2783, 462, 681], [3691, 128, 126, 1589, 1089, 2, 43, 75, 110, 38, 248, 1090, 567, 11133, 38, 745, 3, 3691, 11134, 18, 128, 126, 1100, 265, 97, 29, 1096, 151, 165, 826, 36, 161, 101, 42, 290, 3, 179, 210], [27, 2, 909, 173, 10, 128, 126, 27, 2, 909, 173, 10, 128, 126], [401, 32, 64, 77, 401, 32, 64, 77], [210, 2, 95, 158, 309, 1013, 111, 1, 384, 3, 177, 37, 71, 51, 250, 2, 95, 158, 3, 628, 309, 1670, 1336, 38, 2, 106, 30, 11135, 3326, 304, 181, 2, 14, 114, 7, 391], [1170, 1220, 46, 13, 11136, 11137, 28, 59, 11138, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 814, 1028, 1, 111, 2113], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [121, 36, 1205, 209, 88, 690, 31, 121, 36, 1205, 209, 88, 690, 31, 129], [250, 2, 392, 10, 2, 457, 52, 67, 3, 580, 99, 8, 516, 463, 250, 2, 392, 10, 2, 457, 52, 67, 3, 580, 99, 8, 516, 463], [6856, 3011, 6, 8, 45, 6856, 3011, 6, 8, 45, 27, 2, 122, 2, 3712, 78, 40, 264, 43, 991, 86], [1083, 317, 3012, 1083, 317, 3012, 1940, 5599, 11139], [1083, 317, 3012, 1083, 317, 3012, 1940, 11140, 470], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [431, 549, 140, 11141, 33, 13, 6, 8, 45, 14, 25, 33, 13, 691, 3938], [1083, 317, 3012, 1083, 317, 3012], [27, 2, 122, 2, 74, 110, 49, 27, 2, 122, 2, 33, 74, 7, 176, 2073, 1, 51, 335, 2, 176, 21, 530, 830, 54, 399, 67, 68, 465, 2, 211, 3, 830, 118, 72, 37, 5808], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [29, 2, 872, 160, 26, 4, 15, 110, 39, 95, 158, 547, 192, 3, 422, 67, 21, 6, 783, 11, 59, 7, 13, 246, 54, 29, 2, 90, 113, 90, 113, 90, 113], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [40, 369, 375, 10, 6, 316, 467, 40, 369, 375, 10, 6, 316, 467], [1516, 219, 128, 126, 29, 1516, 4517, 4518, 1416, 128, 126, 29, 3, 179, 53, 11142, 11143, 600, 195, 42, 36, 6857, 6858, 1, 1, 14, 622, 2, 203, 1260, 10, 7, 34, 34, 9, 1, 1, 23, 6, 524, 53, 754, 53, 285, 53, 4517, 4518, 65, 244, 283, 11144, 68, 180, 534, 65, 29, 14, 269, 3, 871, 180, 264, 199, 11, 283, 683, 1, 1, 14, 129, 80, 30, 143, 498], [3, 162, 20, 212, 11, 501, 2436, 72, 37, 51, 250, 2, 373, 440, 3, 162, 20, 212, 11, 501, 2436, 72, 37, 51, 250, 2, 373, 440], [3180, 3181, 6, 27, 2, 46, 2, 404, 20, 3180, 3181, 6, 27, 2, 46, 2, 404, 20], [123, 30, 4118, 74, 123, 30, 4118, 74], [637, 158, 337, 739, 1022, 1164, 4, 37, 1000, 98, 318, 78, 37, 637, 158, 337, 739, 1022, 1164, 4, 37, 1000, 98, 318, 78, 37, 28, 6, 2681, 18, 337, 1170, 7, 337, 739, 159, 4, 226, 86], [142, 1241, 73, 477, 477, 142, 1241, 73, 477, 477], [378, 74, 8, 45, 378, 74, 8, 45, 1, 1, 407, 70, 1553], [210, 30, 3844, 7, 167, 1949, 10, 87, 210, 30, 3844, 7, 167, 1949, 10, 87], [51, 267, 2, 3927, 235, 1484, 3, 76, 89, 8, 134, 51, 267, 2, 3927, 235, 1484, 3, 76, 89, 8, 134, 1, 37, 347, 39, 8, 43, 1086, 1, 76, 507, 494, 30, 1859], [14, 844, 245, 2, 73, 196, 28, 11145, 11146, 408, 376, 57, 196, 6, 9, 345, 860, 21, 65, 2, 1933, 860, 11147, 21, 2, 408, 73, 197, 408, 376, 197, 6], [1412, 369, 375, 10, 6, 316, 467, 1412, 369, 375, 10, 6, 316, 467], [548, 11, 174, 6, 8, 45, 548, 11, 174, 6, 8, 45], [87, 31, 111, 151, 1, 1, 97, 392, 158, 87, 7, 38, 72, 1429, 381, 54, 2, 118, 10, 2, 23, 334], [8, 84, 2, 121, 279, 140, 107, 18, 190, 2413, 190, 271, 51, 335, 2, 121, 279, 140, 107, 18, 190, 2413, 190, 271, 512, 62, 47, 185, 8, 927, 669, 1515, 39, 408, 444, 284, 39, 927, 80, 67, 47, 97, 3703, 669, 1515, 187, 205, 242, 30, 165, 1499, 512, 11148, 62, 2479, 7, 21, 507, 2015], [1485, 1486, 486, 2, 114, 68, 3, 32, 42, 202, 1485, 1486, 486, 2, 114, 68, 3, 32, 42, 202], [41, 8, 45, 984, 41, 8, 45, 984], [15, 327, 278, 111, 1, 1, 15, 6, 327, 3869, 3870, 278, 49, 12, 3, 90, 3685, 4725, 113, 30, 310, 357, 3, 372, 483, 18, 3, 713, 21, 6, 6859, 44, 47, 322, 53, 458, 359, 53, 285, 39, 35, 14, 366, 12, 23], [27, 2, 176, 1443, 9, 133, 748, 3, 1427, 7, 3, 78, 11149, 1695, 303, 507, 27, 2, 176, 1443, 1, 1, 507, 494, 10, 671, 571, 31, 6, 201, 30, 3310, 571, 1, 1, 74, 11150, 21, 6, 1168, 74], [3, 116, 52, 6, 8, 45, 3, 113, 11151, 42, 496, 72, 37, 71, 1259, 47, 335, 2, 373, 11152, 14, 485, 3, 163, 367, 4, 127, 2, 239, 3, 37, 71, 39, 43, 2053, 10, 33, 793, 12, 62, 33, 174], [818, 128, 126, 48, 124, 111, 4816, 11153, 62, 80, 42, 27, 2, 818, 3, 188, 11154, 101, 48, 30, 3477, 14, 386], [249, 660, 780, 249, 65, 72, 703, 117, 441, 503, 4817, 6860, 11, 18, 332, 115, 4, 3, 503, 63, 332, 4818, 424, 187, 3, 503, 434, 36, 332, 4818, 2, 332, 115, 246, 1262, 44, 3, 503, 18, 23, 349, 264, 43, 332, 4818, 7, 332, 115, 112, 21, 6, 3881, 18, 21, 6, 6859, 44, 47, 398, 23, 31, 662, 53, 47, 38, 2029, 116, 6861, 2, 398, 3, 660, 503, 7, 2639, 11155, 4224, 4298, 14, 386], [1941, 29, 852, 6, 8, 45, 1941, 29, 852, 6, 8, 45, 1, 1381, 196, 3570], [119, 683, 6862, 2, 841, 185, 35, 14, 521, 3, 683, 18, 3, 177, 694, 36, 2, 6863, 6864, 570, 314, 6865, 11156, 11157, 11158, 11159, 11160, 11161, 11162, 11163, 11164, 11165, 11166, 11167, 11168, 11169, 11170, 11171, 11172, 11173, 11174, 11175, 11176, 11177, 11178, 11179], [37, 71, 11, 374, 7, 8, 84, 2, 100, 173, 2, 373, 666, 173, 44, 54, 86, 51, 100, 98, 15, 548, 11, 130, 333, 118, 37, 3, 37, 429, 177, 71, 3, 2802, 6, 2803, 30, 37, 91, 95, 173, 11, 316, 537, 3, 548, 206, 4, 6, 8, 901, 546], [210, 30, 24, 2664, 812, 210, 30, 24, 2664, 812], [162, 20, 29, 365, 334, 1, 49, 27, 2, 373, 143, 440, 4, 162, 20, 310, 21, 1067, 494, 576, 1, 1, 14, 386], [87, 508, 484, 31, 87, 508, 484, 31], [119, 341, 609, 1045, 443, 195, 55, 101, 356, 3044, 2, 35, 53, 102, 2, 119, 3, 341, 11, 1731, 18, 1045, 195, 36, 2414, 116, 6866, 2, 6867, 2414, 1174, 116, 195, 11, 184, 3, 341, 264, 43, 274, 36, 2414, 116, 6866, 2, 6867, 2414, 1174, 116, 11180, 11181, 11182, 11183, 11184, 11185, 11186, 11187, 11188, 11189, 185, 35, 14, 43, 207, 450, 2, 1752, 3, 521, 7, 270, 166, 253, 6, 256, 136, 6, 275, 36, 161, 943], [9, 395, 514, 964, 9, 395, 514, 964, 183, 3844, 542, 134], [346, 218, 4, 41, 346, 218, 4, 41], [27, 2, 118, 3, 87, 206, 4, 27, 2, 118, 3, 87, 206, 4], [24, 1819, 6, 273, 10, 3, 727, 15, 11190, 2872, 55, 1, 1, 14, 91, 163, 367, 7, 181, 30, 11191, 11192, 1, 51, 47, 176, 77, 3, 484, 192, 2156, 273, 3, 24, 1819, 6, 10, 3, 367, 1, 1, 47, 351, 963, 1237, 30, 2640, 2090, 42, 706, 449], [34, 70, 10, 203, 36, 6868, 6869, 34, 70, 10, 203, 36, 6868, 6869], [60, 94, 190, 24, 2507, 229, 2, 188, 92, 892, 60, 6, 75, 112, 12, 49, 105, 10, 48, 38, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [74, 616, 6, 8, 303, 74, 616, 6, 8, 303, 78, 40, 37, 70, 407, 129], [27, 2, 515, 41, 27, 2, 515, 41], [403, 36, 6870, 6871, 403, 36, 6870, 6871], [4400, 2437, 14, 114, 3, 2437, 18, 33, 4400, 6, 77, 18, 3, 1695, 516, 1243, 21, 6, 2590, 851], [935, 10, 121, 1481, 222, 101, 1, 1, 14, 326, 935, 1935, 11193, 1948, 10, 121, 1299, 7, 1481, 1299, 53, 332, 377, 23, 333, 6, 4, 3, 96, 271, 4, 3, 128, 126, 35, 39, 504, 3, 96, 229, 207, 44, 35, 39, 199, 23, 229, 2, 326, 10, 121, 1481, 1931, 7, 99, 737, 638, 3, 333, 30, 3, 222, 53, 7, 51, 275], [14, 269, 315, 29, 2, 40, 618, 6872, 14, 269, 315, 29, 2, 40, 618, 6872], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [13, 64, 55, 11194, 9, 46, 59, 1989, 6, 64, 611, 1419, 2, 132, 3, 179, 662, 11195, 851], [213, 31, 110, 97, 29, 24, 128, 126, 2, 392, 158, 162, 20], [39, 8, 170, 535, 55, 1, 514, 2, 170, 535, 52, 1474, 441, 11196, 1, 185, 35, 14, 206, 44, 10, 33, 115, 1, 1, 1, 1, 1, 342, 1079, 3341, 30, 135], [235, 108, 453, 235, 108, 453], [11197, 18, 6873, 158, 3, 73, 1184, 47, 742, 2309, 6786, 11, 73, 11198, 205, 11199, 4089, 23, 1184, 7, 2877, 42, 2, 43, 430, 47, 42, 867, 3, 179, 2, 35, 11, 1099, 400, 18, 6873, 265, 79, 2218, 52, 1, 102, 35, 2, 106, 3, 179, 66, 1059, 1, 135], [11200, 11201, 97, 320, 186, 1001, 192, 1561, 475, 208, 21, 101, 1, 33, 2070, 97, 320, 4256, 492, 77, 18, 15, 192, 1561, 475, 1, 3, 123, 534, 1169, 112, 241, 540, 1, 390, 534, 11202, 489, 72, 10, 36, 15, 7, 79, 67, 21, 11203, 89, 8, 134, 1, 39, 35, 14, 38, 366], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 512, 1153, 913, 682, 162, 2339, 162, 1, 1, 1154, 665, 18, 3, 123, 49, 496, 72, 37, 71, 835, 767, 44, 1449, 211, 407, 51, 413, 2, 211, 21, 664, 44, 21, 6, 45, 716, 276, 118, 517, 71, 44, 1449, 3, 367, 185, 8, 43, 727, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 83, 1, 225, 20, 186, 263, 160, 127, 449, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 1966, 1, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [443, 652, 641, 694, 164, 64, 77, 18, 337, 4, 90, 6464, 14, 50, 132, 3, 460, 18, 3, 177, 694, 284, 42, 511, 27, 2, 95, 158, 337, 7, 1323, 160, 763, 206, 11204, 11205, 1425, 11206, 11207, 1425], [54, 29, 2, 33, 254, 14, 114, 408, 32, 55, 21, 101, 1, 1, 288, 106, 110, 122, 2, 33, 58, 254, 11208, 1, 3, 29, 6, 1326, 112, 576, 1, 1, 1116, 7, 1511, 1, 11209, 11210], [256, 4819, 18, 149, 676, 7, 24, 196, 86, 923, 275, 169, 190, 1044, 149, 4599, 196, 86, 107, 7, 1652, 107, 54, 2, 43, 3910, 2, 1050, 86, 1652, 107, 36, 1046, 1, 113, 196, 113, 86, 1652, 923, 54, 2, 43, 3939, 2, 468, 190, 2761, 86, 923, 1652, 1, 24, 252, 196, 18, 54, 2, 43, 11211, 251, 196, 6, 4, 1046, 8, 4, 190, 1, 1, 222, 42, 163, 2, 3, 34], [280, 41, 6874, 1074, 1075, 280, 41, 6874, 1074, 1075], [41, 8, 1733, 13, 41, 41, 8, 1733, 13, 41], [2350, 173, 403, 2350, 173, 403], [226, 13, 25, 226, 13, 25], [15, 123, 26, 27, 2, 544, 117, 36, 508, 763, 302, 28, 11212, 65, 5473, 543, 197, 117, 2, 408, 508, 763, 302, 172, 3, 117, 429, 98, 4, 541, 149, 367, 53, 506, 8, 2409, 2, 412, 11, 661, 740, 14, 114, 7, 269, 2029, 11213, 288, 2, 795, 23, 123, 636, 134, 6, 6875, 11214], [58, 94, 6782, 11215, 48, 6, 531, 75, 112, 12, 49, 105, 10, 9, 81, 10, 48, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1158, 28, 6, 8, 45, 1158, 28, 1315, 11216, 4, 3, 28, 522, 125, 167, 7, 27, 2, 436, 3, 28, 1622], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [29, 275, 611, 794, 29, 2, 218, 30, 83, 1473, 40, 6876, 24, 348, 6877, 173, 40, 6876, 24, 348, 6877, 1, 1, 30, 135], [33, 11217, 194, 29, 208, 491, 1, 33, 52, 6, 1031, 84, 194, 29, 207, 80, 366, 158, 44, 1853, 1, 1, 30], [102, 11, 2368, 507, 1151, 4, 1862, 82, 20, 308, 269, 3, 2368, 134, 1151, 4, 1862, 82, 20, 2, 33, 142, 1, 4820, 56, 1853], [121, 36, 2245, 2390, 2, 1809, 2, 21, 2004, 2, 1997, 4513, 121, 36, 2245, 2390, 2, 1809, 2, 21, 2004, 2, 1997, 4513], [79, 28, 59, 50, 564, 14, 269, 3, 79, 28, 59, 2, 96, 28, 28, 59, 11218, 56, 11219], [340, 6, 8, 45, 340, 6, 8, 45], [79, 32, 64, 79, 32, 64], [39, 8, 29, 2, 6878, 11, 191, 129, 86, 62, 39, 8, 29, 2, 6878, 11, 191, 28, 56, 62, 13, 385], [3940, 2065, 148, 162, 6879, 2903, 2904, 3940, 2065, 148, 162, 6879, 2903, 2904], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [31, 30, 162, 20, 55, 1, 1, 14, 366, 4, 2, 3, 96, 464, 7, 50, 2, 353, 3, 31], [920, 174, 2903, 2904, 920, 174, 2903, 2904], [193, 30, 168, 20, 47, 823, 2695, 2696, 193, 30, 168, 20, 47, 823, 2695, 2696], [14, 434, 18, 2553, 279, 140, 310, 36, 2, 6880, 23, 6, 372, 121, 381, 44, 63, 236, 98, 66, 11220, 7, 83, 18, 444, 38, 2, 4065, 68, 35, 42, 8, 84, 2, 106, 21, 7, 2118, 21, 6, 516, 6881, 276, 14, 647, 143, 11221, 44, 509, 1209, 514, 261, 2196], [372, 46, 10, 24, 148, 365, 483, 1, 1, 14, 525, 1, 1, 14, 39, 35, 114, 51, 448, 63, 3, 372, 46, 63, 10, 24, 148, 11222], [82, 20, 8, 405, 208, 491, 3067, 1, 1, 308, 622, 3, 96, 464, 33, 82, 20, 6, 8, 405, 7, 323, 3, 96, 37, 1, 102, 35, 2, 353, 3, 31, 662, 1, 1, 1, 135], [11223, 18, 4407, 114, 609, 68, 303, 11224, 2, 74, 1743, 1046, 7, 119, 74, 2, 3941, 55, 1, 1, 609, 4, 15, 26, 52, 18, 303, 225, 20, 387, 42, 385, 113, 2, 113, 2183, 1, 1, 14, 119, 1009, 2, 74, 3941, 311, 2, 9, 1595, 2, 1372, 303, 261, 1208, 4, 1046, 11225, 3, 4551, 1, 1, 458], [14, 119, 13, 7, 4770, 11, 3, 168, 20, 14, 119, 13, 7, 4770, 11, 3, 168, 20], [536, 31, 11, 249, 55, 21, 1, 1, 14, 50, 114, 3, 31, 96, 151, 42, 673, 536, 426, 113, 67, 4, 252, 11226, 151, 6, 536, 207, 39, 373, 3, 472], [76, 229, 55, 1, 1, 49, 8, 84, 2, 95, 10, 2, 693, 58, 30, 80, 79, 46, 871, 1, 1, 1, 14, 114, 7, 353, 53, 33, 134, 6, 164, 6550], [1686, 210, 30, 812, 24, 55, 49, 1097, 18, 3, 2453, 812, 24, 38, 350, 73, 218, 6882, 426, 3, 218, 1103, 11, 205, 869, 83, 165, 1066, 18, 23, 667, 812, 39, 8, 91, 3, 218, 6882, 7, 39, 8, 544, 21, 849, 39, 413, 10, 544, 218, 7, 118, 9, 37, 71, 67, 3, 218, 6, 273, 151, 183, 165, 1066, 38, 350, 1069, 426, 3, 218, 1103, 387, 11227, 11228, 11229, 65, 350, 3, 218, 205, 242, 3, 218, 205, 242, 6, 201, 1198, 11, 408, 183, 11, 80, 53, 3, 1097, 3, 218, 6, 8, 1198, 829, 6, 385, 30, 23, 812, 185, 35, 14, 114], [2221, 2943, 2387, 131, 346, 208, 21, 101, 1, 1, 425, 23, 334, 2221, 1680, 151, 42, 273, 1482, 433, 106, 8, 253, 85, 2, 106, 1, 39, 35, 14, 114, 1, 225, 20, 780, 37, 1, 225, 418, 7, 402, 3, 2943, 2387, 131, 67, 3, 37, 6, 273, 770, 1, 1, 53, 47, 38, 1300, 591, 47, 54, 2, 398, 23, 310], [15, 174, 55, 101, 15, 174, 4452, 4453, 2622, 1123], [340, 2344, 55, 1, 1, 49, 11230, 11231, 36, 361, 4626, 1, 49, 843, 31, 18, 1280, 1068, 58, 2344, 541, 2196, 51, 11232, 12, 641, 522, 1917, 1, 102, 35, 2, 1419, 2, 353, 12, 3, 1131], [60, 94, 90, 2301, 76, 60, 6, 75, 12, 49, 105, 10, 48, 6, 98, 10, 640, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [337, 13, 25, 7, 132, 32, 337, 13, 25, 7, 132, 32], [27, 2, 46, 2, 15, 27, 2, 46, 2, 15], [14, 312, 3, 888, 1275, 4, 15, 14, 312, 3, 888, 1275, 4, 15], [131, 734, 208, 491, 1, 1, 38, 268, 73, 52, 67, 151, 6, 9, 131, 734, 2199, 30, 44, 1, 308, 1419, 2, 320, 80, 131, 734, 1, 1, 135], [82, 20, 31, 208, 491, 1, 1, 330, 268, 73, 52, 372, 593, 151, 63, 9, 82, 20, 1606, 82, 20, 67, 27, 2, 91, 33, 376, 4546, 440, 308, 353, 1, 1, 135], [1038, 469, 11, 2419, 1816, 208, 21, 101, 1, 1, 336, 44, 472, 107, 65, 8, 141, 806, 10, 1038, 469, 11, 2419, 1816, 482, 53, 96, 85, 6, 3, 521, 62, 37, 10, 23, 14, 778, 1, 47, 54, 2, 199, 472, 107, 2, 106, 1953, 5883, 10, 3, 713, 591, 312, 1, 1, 1, 1, 1, 135], [308, 1005, 3, 870, 53, 21, 6, 8, 45, 308, 1005, 3, 870, 53, 21, 6, 8, 45], [79, 32, 64, 79, 32, 64], [82, 418, 76], [15, 26, 32, 64, 15, 26, 32, 64], [26, 15, 205, 242, 46, 31, 7, 13, 25, 50, 564, 1, 1, 177, 31, 6, 2733, 51, 63, 250, 2, 46, 4, 26, 15, 205, 242, 14, 465, 294, 96, 167, 554, 7, 106, 3, 807, 1, 1, 1, 112, 304, 23, 52, 836, 251, 246, 265, 2, 102, 35, 2, 106, 13, 25, 14, 106, 3, 807, 12, 3, 1131], [79, 13, 25, 79, 13, 25], [15, 26, 32, 64, 15, 26, 32, 64], [2386, 700, 5, 5, 22, 4, 5, 19, 12, 5, 56, 5, 22, 4, 5, 19], [337, 13, 25, 7, 132, 32, 337, 13, 25, 7, 132, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [51, 189, 4713, 2881, 4, 6883, 118, 72, 37, 1323, 6, 1321, 51, 189, 4713, 2881, 4, 6883, 118, 72, 37, 1323, 6, 1321, 23, 1078, 4, 205, 242, 91, 377], [110, 3325, 2, 69, 4, 67, 526, 1386, 23, 69, 4, 252, 228, 110, 3325, 2, 69, 4, 67, 526, 1386, 23, 69, 4, 252, 15, 468, 9, 100, 627, 428, 336, 67, 21, 65, 438, 4, 252, 5614], [33, 41, 7, 87, 89, 8, 134, 51, 49, 12, 490, 21, 201, 507, 4, 3, 174, 56, 3363, 1952, 182, 213, 130, 155, 204, 117, 107, 214, 146, 33, 41, 7, 87, 89, 8, 134, 51, 49, 12, 490, 21, 201, 507, 4, 3, 174], [87, 87], [52, 8, 545, 52, 8, 545], [21, 967, 55, 1, 1, 356, 5855, 98, 23, 21, 34, 10, 1155, 18, 4133, 4134, 4187, 2267, 97, 873, 98, 311, 2, 1461, 639, 1, 1, 14, 525, 662], [443, 452, 8, 45, 443, 452, 8, 45], [15, 32, 132, 15, 32, 132], [910, 8, 1506, 910, 8, 1506], [95, 4, 1183, 8, 45, 54, 2, 119, 13, 183, 14, 121, 80, 56, 11233, 11234, 182, 213, 130, 155, 204, 117, 107, 214, 146, 95, 4, 1183, 8, 45, 54, 2, 119, 13, 183, 14, 121, 80, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 814, 1028, 111, 11235], [174, 41, 2515], [58, 94, 1252, 432, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [60, 94, 12, 6431, 21, 2687, 112, 105, 48, 6, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [46, 2, 337, 31, 46, 2, 337, 31], [57, 7, 672, 10, 33, 86, 355, 268, 857, 18, 33, 24, 2346, 86, 38, 236, 21, 98, 67, 54, 11, 21, 2, 43, 1118, 29, 2, 33, 57, 1091, 7, 672, 68, 23, 6, 8, 3, 722, 1209, 2, 410, 23, 102, 14, 270, 80, 253], [324, 171, 33, 324, 171, 99, 8, 436, 2, 33, 120, 21, 201, 3545, 14, 436, 23, 65, 942, 10, 83, 33, 324, 440, 6884, 6885, 113, 120], [218, 29, 11, 2587, 2588, 291, 292, 1, 49, 1, 1082, 1141, 1, 2587, 2588, 2617, 2618, 1, 243, 1711, 1625, 260, 11236, 1052, 11237, 11238, 255, 11239, 1052, 11240, 11241, 11242, 1, 1, 111, 4771, 1, 1, 308, 263, 44, 151, 42, 443, 1069, 426, 2160, 749, 1625, 260, 1, 1, 14, 3062, 184, 1871, 218, 29, 65, 2, 43, 1118], [13, 25, 11, 2874, 2875, 13, 25, 11, 2874, 2875], [13, 25, 102, 13, 25, 102], [34, 70, 10, 258, 34, 70, 10, 258], [39, 206, 263, 2, 72, 32, 10, 3, 235, 39, 206, 263, 2, 72, 32, 10, 3, 235, 1049, 2, 43, 84, 2, 11243, 23, 4, 381, 1059, 67, 23, 37, 6, 1395, 3, 2192, 2, 206, 263], [536, 660, 780, 37, 11244, 225, 20, 187, 8, 2653, 284, 3910, 3, 1953, 968, 67, 3, 1953, 225, 20, 187, 8, 2653, 1448, 3, 888, 367, 3672, 7, 106, 8, 91, 3, 6886, 151, 624, 1, 91, 163, 57], [27, 2, 176, 36, 1343, 27, 2, 176, 36, 1343], [32, 132, 32, 132], [39, 35, 1667, 80, 3, 86, 107, 11, 174, 12, 3, 3807, 11245, 1017, 2276, 854, 120, 188, 309, 7, 1600, 1671], [46, 2403, 1000, 98, 403, 46, 2403, 1000, 98, 403], [34, 70, 10, 258, 34, 70, 10, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [211, 632, 11, 6887, 211, 632, 11, 6887], [378, 74, 280, 378, 74, 280], [15, 26, 32, 64, 15, 26, 32, 64], [41, 8, 267, 2, 78, 7, 290, 1004, 10, 699, 2, 415, 2877, 41, 8, 267, 2, 78, 7, 290, 1004, 10, 699, 2, 415, 2877], [74, 73, 407, 70, 524, 56, 3942, 3943, 182, 213, 130, 155, 204, 117, 107, 214, 146, 74, 73, 407, 70, 524], [82, 20, 64, 77, 55, 274, 33, 224, 7, 248, 2, 95, 1186, 82, 20, 7, 21, 530, 454, 458, 22, 2042, 91, 163, 464, 1456, 11246, 11247, 1954, 462, 82], [13, 25, 2, 11248, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 814, 1028, 1, 111, 2113], [79, 2398, 2, 211, 407, 7, 276, 855, 729, 80, 2, 176, 14, 421, 83, 275, 498, 96, 1, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 1, 1, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 1, 1, 74, 56, 410, 416, 83, 958, 516, 437, 1, 1, 1154, 665, 18, 3, 123, 79, 219, 2, 528, 7, 211, 140, 407, 36, 3, 40, 142, 2, 176, 2, 1165, 179, 71, 11, 83, 958, 1, 1, 103, 18, 481, 8, 303, 57, 333, 695, 449, 1, 225, 20, 186, 263, 160, 127, 449, 83, 481, 99, 8, 176, 36, 143, 221, 1, 1, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 41, 333, 15, 83, 18, 444, 1, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 2676, 142, 7, 74, 179, 37, 71, 1, 1, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 83, 1, 1, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 1, 85, 74, 39, 21, 43, 945, 454, 1, 1, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [174, 453, 10, 1495, 86, 174, 453, 10, 1495, 86], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [544, 176, 777, 10, 6888, 544, 176, 777, 10, 6888], [110, 274, 33, 13, 7, 172, 1031, 392, 158, 87, 56, 1017, 182, 213, 130, 155, 204, 117, 107, 214, 146, 274, 33, 13, 7, 172, 1031, 392, 158, 87], [6889, 71, 10, 2269, 3, 547, 548, 37, 6890, 6889, 71, 10, 2269, 3, 547, 548, 37, 6890, 86], [162, 20, 1004, 11, 2413, 223, 6891, 162, 20, 1004, 11, 2413, 223, 6891], [243, 34, 9, 24, 314, 898, 111, 1, 1, 23, 6, 495], [34, 70, 11, 258, 34, 70, 11, 258], [102, 11, 2510, 29, 2, 2130, 6886, 55, 54, 2, 102, 593, 2510, 29, 2, 4, 15, 26, 2, 391, 1776, 3368, 4, 15], [123, 30, 15, 8, 638, 359, 169, 164, 2258, 294, 432, 20, 123, 30, 15, 8, 638, 359, 169, 164, 2258, 294, 432, 20], [34, 70, 11, 258, 34, 70, 11, 258], [41, 8, 1458, 41, 8, 1458, 1, 267, 2, 3, 28, 52, 137, 487, 1, 2920, 3, 2230, 1, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 1, 31, 321], [34, 70, 704, 34, 9, 36, 6892, 6893, 34, 70, 704, 34, 9, 36, 6892, 6893], [54, 2, 1422, 206, 58, 74, 54, 2, 1422, 206, 58, 74], [6894, 6895, 104, 79, 13, 6, 2482, 754, 54, 967, 1483, 33, 13, 6894, 6895, 104, 79, 13, 6, 2482, 754, 54, 967, 1483, 33, 13], [27, 2, 320, 57, 2, 6896, 101, 36, 415, 57, 196, 27, 2, 320, 57, 2, 6896, 101, 36, 415, 57, 196], [83, 1183, 11, 1715, 65, 141, 1157, 11, 6897, 2918, 3603, 6898, 54, 2, 43, 1368, 11, 3, 2677, 3340, 101, 83, 1183, 11, 1715, 65, 141, 1157, 11, 6897, 2918, 3603, 6898, 54, 2, 43, 1368, 11, 3, 2677, 3340, 101], [27, 2, 515, 15, 397, 792, 37, 27, 2, 515, 15, 397, 792, 37], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [14, 1740, 221, 28, 3078, 4, 578, 2137, 18, 2006, 28, 1897, 1898, 124, 11249, 11250, 4583, 4584, 11251, 11252, 11253, 55, 3923, 102, 104, 967, 4, 3237, 3, 221, 28, 448, 1320, 3, 2137, 18, 3, 2006, 28, 4, 1488, 270, 80, 253, 68, 35, 54, 2728, 34, 2, 43, 350], [40, 369, 375, 10, 286, 6, 316, 467, 40, 369, 375, 10, 286, 6, 316, 467], [57, 1813, 57, 1813], [6899, 226, 32, 790, 164, 64, 14, 132, 6899, 226, 32, 790, 164, 64, 14, 132], [87, 46, 31, 146, 27, 2, 95, 158, 87, 169, 13, 119, 576], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [41, 31, 41, 31], [2544, 6900, 3940, 148, 2005, 2544, 6900, 3940, 148, 2005], [128, 126, 245, 21, 1, 5857, 5858, 6, 496, 3, 163, 245, 1, 261, 694, 106, 8, 171, 2, 911, 14, 386, 424, 180, 6, 496, 261], [54, 2, 893, 74, 54, 2, 893, 74], [15, 26, 13, 25, 15, 26, 13, 25], [15, 26, 13, 25, 15, 26, 13, 25], [340, 621, 32, 340, 621, 32], [27, 2, 873, 148, 27, 2, 873, 148], [15, 26, 13, 25, 588, 328, 30, 28, 15, 26, 13, 25, 588, 328, 30, 28], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [54, 2, 280, 480, 10, 1495, 383, 54, 2, 280, 480, 10, 1495, 383], [15, 26, 13, 25, 588, 328, 30, 28, 15, 26, 13, 25, 588, 328, 30, 28], [203, 34, 70, 203, 34, 70], [27, 2, 515, 82, 20, 27, 2, 515, 82, 20], [34, 9, 24, 314, 898, 55, 6901, 54, 29, 179, 53, 3212, 135], [1166, 666, 280, 193, 3, 2900, 11254, 51, 653, 3663, 1693, 21, 2044, 2, 3572, 1833, 418], [58, 1408, 58, 1408], [4705, 6, 8, 84, 2, 373, 6902, 217, 294, 1045, 4703, 4704, 4705, 6, 8, 84, 2, 373, 6902, 217, 294, 1045, 21, 429, 72, 37, 51, 590, 3, 220, 1, 14, 91, 163, 37, 38, 205, 2715, 36, 165, 115, 7, 351, 179, 123], [211, 652, 641, 297, 10, 33, 348, 211, 652, 641, 297, 10, 33, 348], [41, 1301, 57, 403, 41, 1301, 57, 403], [73, 3529, 59, 39, 8, 102, 11255, 91, 925, 163, 11256], [243, 34, 9, 24, 314, 898, 55, 11257, 70, 3, 2017, 1836, 53, 332, 102, 704, 29, 14, 269, 586, 29, 568, 56], [34, 9, 24, 314, 898, 55, 1, 1, 356, 273, 2169, 11, 123, 353, 14, 386, 448, 631, 35, 273, 54, 62, 51, 39, 38, 29], [1259, 100, 72, 57, 30, 1549, 4617, 820, 118, 299, 435, 1259, 100, 72, 57, 30, 1549, 4617, 820, 118, 299, 435], [83, 18, 3, 3359, 1751, 11, 254, 23, 593, 42, 8, 1180, 10, 3, 631, 347, 83, 18, 3, 3359, 1751, 11, 254, 23, 593, 42, 8, 1180, 10, 3, 631, 347, 3581, 3582, 5799, 2, 199, 3, 631, 347, 2, 6854, 1272, 3, 3359, 207, 356, 614, 180, 99, 1189, 21, 6, 8, 45, 546, 1, 1, 91, 163, 173, 11, 222, 7, 11258], [110, 39, 8, 176, 21, 6, 783, 80, 2, 211, 176, 407, 110, 39, 8, 176, 21, 6, 783, 80, 2, 211, 176, 407, 1, 1, 39, 8, 176, 21, 6, 783, 80, 2, 211, 176, 407, 1, 187, 30, 680, 942], [25, 224, 11, 6033, 6034, 137, 13, 125, 20, 13, 25, 3], [15, 2143, 2675, 33, 1297, 242, 2143, 2675, 63, 10, 49, 1436, 2, 118, 6607, 355, 27, 2, 91, 2143, 2675, 4, 15, 38, 141, 601, 294, 3, 459], [1854, 185, 35, 14, 25, 33, 13, 4476, 4477, 149, 120, 2819, 1174, 3159, 594, 1620, 24, 1763, 879, 1848, 1943, 1849, 1137, 1138, 1052, 1082, 1141, 730, 24, 144], [338, 29, 11, 28, 3005, 3006, 11259, 338, 29, 11, 28, 3005, 3006, 14, 326, 37, 71, 163, 86], [963, 619, 133, 11, 139, 28, 59, 6903, 1209, 4, 1627, 1, 1, 47, 42, 697, 104, 24, 1174, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 3013, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [74, 407, 70, 74, 407, 70], [15, 520, 1004, 15, 520, 1004], [123, 30, 174, 144, 208, 50, 564, 33, 174, 820, 1435, 80, 339, 347, 91, 96, 11, 167, 554, 14, 50, 3658, 3659, 6676, 166, 1276, 2559, 685], [963, 619, 133, 11, 139, 28, 11260, 2343, 4, 2464, 1140, 1627, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 1176, 358, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 11261, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [74, 782, 74, 782], [15, 26, 13, 25, 15, 26, 13, 25, 588, 328, 30, 28], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [397, 37, 4, 15, 26, 397, 37, 4, 15, 26], [60, 94, 90, 6904, 2687, 48, 1285, 76, 60, 6, 75, 112, 12, 49, 105, 10, 640, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [2728, 29, 14, 206, 28, 11262, 2, 404, 20, 15, 501, 159, 1, 1, 270, 80, 253, 68, 35, 38, 143, 498], [41, 8, 590, 41, 8, 590], [39, 29, 324, 260, 294, 223, 1587, 200, 51, 250, 2, 322, 3, 324, 260, 681, 2, 189, 73, 324, 171, 835, 2328, 98, 7, 530, 804, 1856, 37, 7, 39, 29, 3, 324, 260, 347, 165, 11263, 18, 33, 324, 260, 347, 4, 223, 1587, 200, 526, 134, 53, 613], [79, 303, 210, 54, 407, 430, 10, 541, 74, 67, 21, 89, 8, 421, 1254, 79, 303, 210, 54, 407, 430, 10, 541, 74, 67, 21, 89, 8, 421, 1254, 1, 176, 78, 40], [40, 369, 6905, 10, 686, 2570, 6, 316, 467, 40, 369, 6905, 10, 686, 2570, 6, 316, 467], [15, 26, 13, 25, 15, 26, 13, 25], [245, 42, 8, 45, 245, 42, 8, 45], [518, 1617, 13, 25, 518, 1617, 13, 25], [13, 25, 102, 13, 25, 102], [13, 25, 294, 13, 125, 20, 13, 120, 13, 25, 294, 13, 125, 20, 13, 120], [226, 32, 602, 77, 226, 32, 602, 77], [32, 64, 77, 4, 226, 32, 64, 77, 4, 226], [279, 140, 14, 39, 35, 25, 7, 743, 33, 13, 55, 83, 1, 288, 42, 35, 1, 1, 279, 140, 14, 39, 35, 25, 7, 743, 33, 13, 1, 1, 4165, 2539, 4166, 135], [130, 41, 8, 134, 28, 6906, 6907, 169, 119, 3, 13, 137, 13, 125, 20, 41, 8, 134, 47, 742, 584, 3, 3681, 7, 2920, 41, 257, 67, 6, 783, 3, 13, 2111, 28, 6906, 6907, 181, 28, 59, 11264, 142, 56, 11265], [226, 32, 64, 77, 226, 32, 64, 77], [41, 1373, 2, 100, 41, 1373, 2, 100], [60, 94, 24, 168, 6908, 1455, 2074, 856, 618, 3677, 651, 12, 1455, 2074, 6, 75, 60, 94, 24, 168, 6908, 1455, 2074, 856, 618, 3677, 651, 12, 1455, 2074, 696, 75, 12, 49, 105, 10], [40, 2448, 362, 200, 6, 75, 40, 2448, 362, 200, 6, 75], [15, 26, 13, 25, 7, 132, 32, 102, 15, 26, 13, 25, 7, 132, 32, 102], [73, 13, 11, 15, 26, 547, 524, 55, 1, 1, 185, 35, 14, 269, 80, 73, 13, 11, 547], [13, 2264, 55, 1, 1, 514, 33, 11266, 33, 13, 2264, 7, 1431, 119, 23], [5, 40, 708, 6909, 205, 242, 22, 4, 5, 19, 12, 5, 40, 708, 6909, 205, 242, 22, 4, 5, 19, 12], [15, 958, 1982, 7, 1982, 42, 303, 10, 600, 6910, 15, 481, 219, 2, 43, 274, 2, 966, 943, 303, 15, 958, 1982, 7, 1982, 42, 303, 10, 600, 6910, 15, 481, 219, 2, 43, 274, 2, 966, 943, 303, 1, 195, 1, 11267, 11268, 1, 4821, 4822, 1, 11269, 11270], [15, 26, 32, 132, 15, 26, 32, 132], [280, 73, 471, 3014, 198, 2695, 2696, 280, 73, 471, 3014, 198, 2695, 2696], [280, 73, 471, 3014, 198, 3345, 3346, 280, 73, 471, 3014, 198, 3345, 3346], [280, 73, 471, 3014, 198, 4823, 4824, 280, 73, 471, 3014, 198, 4823, 4824], [2221, 6845, 225, 418, 97, 43, 1320, 37, 9, 107, 3244, 107, 65, 141, 6911, 11, 888, 367, 11271, 1, 1, 225, 418, 83, 149, 676], [3, 74, 89, 8, 176, 682, 6912, 6913, 3, 74, 89, 8, 176, 682, 6912, 6913], [280, 73, 471, 142, 376, 6914, 3944, 3945, 280, 73, 471, 142, 376, 6914, 3944, 3945], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [27, 2, 176, 24, 370, 111, 21, 101, 1, 1, 308, 14, 525, 53, 47, 27, 2, 176, 24, 370, 1, 9, 37, 71, 1840, 680, 176, 77, 36, 1266, 370, 74], [79, 32, 64, 79, 32, 64], [910, 382, 14, 269, 222, 18, 3, 31, 1, 87], [14, 25, 13, 15, 26, 160, 56, 3792, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 25, 13, 15, 26, 160, 28, 11272], [370, 74, 58, 805, 370, 74, 58, 805], [383, 87, 383, 87], [76, 76], [8, 84, 2, 322, 493, 32, 11273, 1411, 91, 163, 464], [74, 1038, 2, 3, 11274, 55, 1, 1, 411, 161, 15, 74, 2252, 6, 3882, 47, 42, 970, 137, 3, 2252, 11275, 207, 14, 1214, 83, 3, 11276, 4, 3, 113, 448, 42, 511, 625, 2, 3, 2252, 2, 119, 1, 1, 1, 1, 30, 3, 135, 18, 1284], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [496, 475, 36, 1700, 55, 1, 49, 496, 241, 475, 36, 6, 44, 813, 181, 68, 8, 424, 49, 496, 23, 475, 14, 269, 3, 222, 1, 1, 1, 135], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [274, 33, 13, 576, 172, 41, 89, 8, 122, 2, 110, 39, 322, 46, 131, 67, 3, 835, 790, 770, 251, 46, 89, 8, 134, 1, 274, 13, 257, 310, 179, 123, 1, 97, 199, 41, 7, 97, 312, 475], [27, 2, 46, 2, 652, 641, 52, 27, 2, 46, 2, 652, 641, 52, 1, 1, 37, 1472, 22], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [110, 8, 84, 2, 46, 2, 87, 6915, 110, 8, 84, 2, 46, 2, 87, 6915], [14, 50, 80, 2, 236, 98, 87, 1110, 678, 3085, 10, 33, 24, 3841, 86, 86, 56, 5873, 182, 213, 6505, 117, 107, 214, 146, 14, 50, 80, 2, 236, 98, 87, 1110, 678, 3085, 10, 33, 24, 3841, 86, 86], [82, 20, 1166, 412, 123, 82, 20, 1166, 412, 6, 8, 45, 21, 1360, 454, 1502, 116, 2, 463, 3, 131, 14, 2201, 77, 3, 31, 510], [3, 40, 58, 133, 805, 12, 49, 4, 358, 116, 3, 133, 805, 65, 141, 601, 10, 858, 3, 40, 133, 805, 12, 49, 3, 133, 65, 141, 601, 10, 858, 185, 35, 114, 3, 709], [195, 42, 27, 2, 100, 1773, 134, 4457, 27, 2, 100, 82, 20, 83, 28, 4, 361, 113, 826, 9, 37, 71, 129, 9], [15, 26, 32, 64, 15, 26, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 1567, 22, 4, 5, 19, 12], [148, 148], [6916, 6917, 121, 1110, 2, 162, 295, 6916, 6917, 121, 1110, 2, 162, 295], [519, 94, 257, 2400, 55, 1, 1, 519, 1060, 94, 18, 2400, 1, 14, 50], [15, 32, 13, 25, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 814, 1028, 111, 11277, 4556, 4557, 55, 814, 1028], [5, 654, 374, 26, 948, 1236, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1236, 784, 22, 4, 5, 19, 12], [87, 8, 45, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 296, 187, 8, 2833, 11278, 104, 587, 2, 517, 296, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 814, 1028, 1, 111, 11279, 1, 6579, 6580, 1, 111, 1, 814, 1028], [27, 2, 320, 475, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 11280, 11281, 1, 111, 1031, 320, 245, 1, 814, 1028, 1, 111, 1855], [5, 654, 374, 26, 15, 6918, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 6918, 784, 22, 4, 5, 19, 12], [851, 2, 683, 851, 2, 683], [621, 340, 29, 11, 6919, 6920, 621, 340, 29, 11, 6919, 6920], [27, 2, 927, 143, 395, 36, 2237, 1710, 294, 87, 121, 27, 2, 927, 143, 395, 36, 2237, 1710, 294, 87, 121], [115, 1801, 3177, 664, 2, 43, 6921, 948, 31, 7, 62, 1140, 115, 1801, 3177, 664, 2, 43, 6921, 948, 31, 7, 62, 1140], [34, 70, 10, 258, 34, 70, 10, 258], [3434, 142, 928, 2436, 365, 1364, 469, 149, 2006, 694, 4339, 11282, 7, 11283, 11284, 969, 423, 24, 142, 7, 86, 2, 80, 12, 3, 3807, 174, 284, 42, 4282, 4, 2224, 569, 2, 33, 564, 14, 1419, 2, 1202, 444, 98, 62, 270, 80, 253, 288, 2, 955, 444, 11285, 11286, 4825, 162, 120, 1763], [246, 265, 543, 2, 3, 572, 302, 11, 5, 162, 90, 110, 63, 496, 5, 4719, 541, 334, 98, 294, 7, 1161, 91, 163, 187, 8, 384, 171, 10, 1664, 310, 310, 616, 6922, 635, 44, 171, 162, 6, 172, 357, 2190, 162, 6, 524, 2, 2730, 2092, 18, 3, 457, 2182, 125, 52, 8, 614, 424, 63, 8, 543, 2, 3, 73, 5, 51, 21, 1312, 4719, 21, 63, 2291, 100, 23, 34, 2, 118, 10, 3, 572, 302, 11, 5, 162], [28, 1007, 2, 70, 224, 137, 13, 120, 229, 28, 1007, 2, 70, 224, 137, 13, 120, 229], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [1422, 58, 824, 1422, 58, 824], [41, 1527, 51, 250, 2, 100, 73, 57, 6923, 41, 1527, 51, 250, 2, 100, 73, 57, 6923], [74, 407, 400, 74, 407, 400], [2132, 8, 4826, 30, 15, 56, 11287, 11288, 182, 213, 130, 155, 204, 117, 107, 214, 146, 2132, 8, 4826, 30, 15], [27, 2, 46, 2, 128, 126, 48, 36, 490, 27, 2, 46, 2, 128, 126, 48, 36, 490], [60, 94, 12, 90, 90, 112, 49, 105, 48, 6, 10, 640, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2132, 8, 4826, 30, 15, 359, 1694, 328, 4, 2132, 42, 8, 2922, 53, 2258, 4, 15, 83, 359, 42, 323, 10, 15, 53, 8, 328, 989], [166, 6924, 6925, 14, 1040, 145, 223, 6924, 6925, 57, 196, 180, 6, 934, 18, 3, 145, 159, 7, 99, 54, 57, 3433, 68, 43, 18, 582, 967, 14, 2871, 565, 2, 129, 80, 12, 143, 116, 3039, 3040, 4825, 2622, 1123, 120], [226, 13, 25, 226, 13, 25], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [27, 2, 100, 41, 169, 811, 3, 13, 27, 2, 100, 41, 169, 811, 3, 13], [41, 8, 45, 41, 8, 45], [27, 2, 100, 338, 347, 36, 490, 115, 671, 27, 2, 100, 338, 347, 36, 490, 115, 671], [162, 20, 48, 99, 8, 2596, 57, 196, 169, 79, 606, 248, 1125, 158, 162, 20, 48, 67, 97, 322, 411, 18, 57, 196, 21, 187, 8, 119, 67, 79, 394, 606, 36, 2], [162, 20, 705, 167, 99, 8, 100, 2, 102, 1316, 116, 489, 3165, 3166, 162, 20, 705, 339, 167, 1101, 98, 51, 250, 2, 29, 167, 554, 163], [339, 121, 533, 339, 121, 533], [27, 2, 100, 82, 82, 418, 36, 445, 27, 2, 100, 82, 82, 418, 36, 445, 287, 184, 428, 6691], [324, 171, 8, 45, 51, 250, 2, 189, 72, 324, 171, 4, 338, 118, 3, 177, 37, 11289, 11, 89, 8, 1196, 11, 3336, 9, 742, 499, 33, 1712, 107, 7, 680, 521], [396, 1049, 2, 2381, 2, 57, 78, 522, 53, 197, 18, 283, 57, 283, 11290, 57, 6, 230, 66, 24, 396, 1049, 2, 2381, 2, 57, 78, 522, 53, 197, 18, 283, 57, 283, 24, 57, 6, 230, 66, 24, 1, 1756, 28, 30, 21, 57, 196, 24, 144, 7, 1098, 2, 320, 57, 30, 464], [227, 181, 1566, 55, 1, 246, 265, 2, 995, 1964, 10, 3, 1451, 18, 241, 33, 181, 30, 3, 163, 136, 448, 39, 465, 2, 11, 50, 1, 246, 265, 2, 410, 72, 1344, 1466, 30, 33, 56, 96, 7, 276, 206, 3, 136, 748, 33, 181, 196, 7, 24, 196, 1, 1, 1, 135], [339, 121, 339, 121, 187, 8, 384, 143, 466, 36, 165, 943], [174, 6, 8, 3796, 174, 6, 8, 3796], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [54, 2, 1422, 74, 54, 2, 1422, 74], [14, 121, 1059, 12, 2761, 1174, 116, 709, 30, 73, 11291, 11292, 175, 1239, 18, 2073, 42, 9, 345, 11293, 1284, 2882, 3088, 6926, 2806, 724, 1758, 7, 149, 24, 2079, 879, 1363, 988, 2567, 2925, 1137, 1138, 1082, 1141, 901, 174, 18, 3, 24, 190, 3946, 3141, 1083, 4720, 3946, 3, 201, 199, 6, 7, 23, 136, 6, 201, 304, 66, 4721, 1218, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 23, 446, 6, 311, 2, 175, 35, 2283, 268, 21, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [15, 29, 31, 26, 29, 28, 59, 65, 351, 64, 6927, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 6927, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 59, 351, 64, 14, 743, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [20, 894, 603, 14, 4181, 1077, 11294, 4, 82, 20, 603], [27, 2, 91, 324, 171, 3947, 3948, 124, 291, 292, 3495, 3496, 3363, 1952, 243, 324, 171, 65, 141, 1260, 6928, 6929, 1260, 283, 1864, 96, 67, 21, 187, 8, 468, 98, 53, 1291, 11, 80, 2, 766, 4, 3, 338, 212, 742, 495, 1713, 165, 694, 451, 389, 2605, 1260, 283, 7, 197, 169, 14, 1740, 424, 2605, 324, 4233, 187, 8, 468, 98, 4, 33, 52, 2, 766, 268, 3, 623, 57, 44, 180, 187, 436, 1050, 71, 623, 52, 181, 124, 3947, 3948, 324, 171, 65, 141, 1260, 3, 177, 324, 171, 65, 141, 1260, 11, 104, 631, 1712, 9, 6930, 6931, 324, 171, 9, 170, 341, 591, 341, 344, 2007, 1457, 2209, 973, 1457, 2, 485, 23, 324, 171, 4, 315, 14, 95, 158, 104, 2429, 1772, 10, 120, 1587, 200], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [1878, 2098, 31, 1878, 2098, 31], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [41, 1806, 939, 88, 41, 31, 41, 1806, 939, 88, 41, 31], [41, 984, 1352, 28, 486, 4, 11, 72, 31, 433, 283, 41, 63, 984, 1352], [206, 1171, 944, 1907, 797, 2, 3, 3771, 15, 26, 7, 26, 3530, 206, 1171, 944, 1907, 797, 2, 3, 3771, 15, 26, 7, 26, 3530, 23, 6, 524, 207, 3, 52, 99, 456, 11295, 7, 735, 3, 160, 127], [1735, 2, 26, 111, 54, 29, 2, 26, 185, 35, 14, 50, 80, 6111, 11296, 11297, 11298, 11299, 739, 1215, 7, 3004, 501], [27, 2, 100, 41, 7, 87, 56, 11300, 11301, 182, 213, 130, 155, 204, 117, 107, 214, 146, 39, 8, 100, 41, 7, 39, 8, 392, 158, 87, 11, 191], [27, 2, 95, 4, 2, 337, 27, 2, 95, 4, 2, 337], [1087, 185, 14, 38, 73, 1087, 33, 5779, 42, 11302, 489, 3, 197, 38], [378, 14, 206, 11303, 11304, 2, 3, 159, 11305, 2, 29, 260, 82, 418, 2422, 6744, 2718, 2737, 2501, 149, 1614, 191, 3767], [32, 132, 32, 132], [1838, 29, 56, 2424, 182, 213, 130, 155, 204, 57, 3565, 117, 107, 214, 146, 111, 2424, 340, 29, 11, 3, 177, 6, 8, 45, 11306, 11307, 11308, 11309], [5, 26, 205, 242, 22, 4, 5, 19, 12, 5, 26, 205, 242, 22, 4, 5, 19, 12], [41, 1527, 41, 1527], [24, 383, 3365, 3366, 124, 5620, 5621, 24, 383, 111, 1952, 23, 6, 704, 104, 235, 86, 44, 219, 2, 274, 14, 121, 69, 12, 23, 107, 23, 264, 43, 3, 135, 3334, 2, 118, 3, 31, 833], [32, 136, 399, 36, 3369, 813, 1004, 32, 136, 399, 36, 3369, 813, 1004], [27, 2, 463, 88, 206, 4, 10, 41, 27, 2, 463, 88, 206, 4, 10, 41], [32, 136, 399, 36, 3369, 813, 11310, 32, 136, 399, 36, 3369, 813, 1004], [235, 108, 453, 235, 108, 453, 24, 108], [320, 733, 6, 8, 45, 41, 320, 733, 6, 8, 45, 41], [41, 6, 8, 45, 41, 6, 8, 45], [13, 25, 102, 66, 1485, 1486, 13, 25, 102, 66, 1485, 1486], [189, 460, 14, 331, 66, 4163, 3107, 2, 1485, 1486, 10, 5388, 2, 189, 460, 14, 55, 14, 189, 460, 255, 223, 3345, 3346, 2695, 2696, 4823, 4824, 261, 694, 38, 9, 1568, 32, 989, 901, 174, 190, 901, 174, 1332, 4, 3, 2170, 2181, 1750, 6462, 674, 949, 674, 24, 24, 11311, 879, 901, 174, 1046, 3140, 901, 901, 174, 901, 4, 3, 2170, 5387, 3, 572, 62, 1294, 18, 23, 446, 66, 1931, 448, 42, 8, 3, 679, 1453, 6, 1139, 1025, 62, 1513, 36, 1225, 426, 1135, 2052, 387, 1454, 68, 35, 268, 23, 71, 311, 2, 175, 1531, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [54, 3, 547, 548, 206, 4, 54, 3, 547, 548, 206, 4], [27, 2, 515, 41, 27, 2, 515, 41], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [22, 87, 11312, 208, 21, 1, 248, 2, 1539, 1854, 11313, 520, 908, 310, 67, 185, 8, 91, 3, 5684, 167, 96, 6, 3, 229, 3, 520, 65, 141, 11314, 11, 23, 770, 6, 151, 1096, 39, 114, 389, 2, 11315, 526, 38, 23, 123, 257], [1365, 1066, 2, 667, 812, 1681, 1365, 1066, 2, 3, 667, 812, 159], [1528, 7, 26, 13, 25, 27, 2, 46, 2, 1528, 7, 26, 571], [32, 132, 32, 132], [340, 8, 45, 340, 8, 45], [54, 2164, 13, 25, 11, 15, 1528, 162, 20, 1670, 54, 2164, 13, 25, 11, 15, 1528, 162, 20, 1670], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [148, 99, 8, 878, 10, 624, 1634, 62, 2809, 1634, 329, 267, 2, 845, 62, 355, 10, 831, 148, 99, 8, 878, 10, 624, 1634, 62, 2809, 1634, 329, 267, 2, 845, 62, 355, 10, 831], [746, 415, 317, 6, 8, 45, 7, 3, 165, 6, 3370, 746, 415, 317, 6, 8, 45, 7, 3, 165, 6, 3370], [15, 26, 13, 25, 15, 26, 13, 25], [1856, 37, 12, 585, 1245, 160, 3, 177, 37, 1078, 51, 897, 3, 116, 4443, 91, 3912, 83, 3371, 2189, 62, 11316, 694, 42, 201, 4, 3, 52, 98, 2, 7, 1161, 2091], [41, 1315, 41, 1315], [195, 4, 90, 113, 252, 113, 6932, 42, 27, 2, 91, 1838, 58, 195, 4, 90, 113, 252, 113, 6932, 42, 27, 2, 91, 1838, 58, 23, 6, 10, 86, 53, 613, 53, 148, 86], [4827, 4828, 602, 77, 4827, 4828, 602, 77, 1, 337, 52], [34, 70, 10, 258, 34, 70, 10, 258], [47, 526, 84, 2, 1629, 3123, 763, 4, 88, 898, 955, 47, 526, 84, 2, 1629, 3123, 763, 4, 88, 898, 955], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [15, 26, 31, 146, 54, 50, 11317, 29, 2, 403, 4, 26, 39, 118, 158, 26, 39, 118, 158, 43, 1755, 39, 326, 3, 403, 56, 49, 1909, 11, 1378, 666, 371, 67, 51, 335, 2, 100, 21, 118, 37, 71, 44, 6055, 804, 447, 37, 65, 1078, 3, 447, 99, 172, 1445, 54, 29, 23, 593, 11, 520, 44, 38, 147], [46, 50, 2, 459, 46, 50, 2, 459], [14, 647, 299, 1519, 4820, 149, 2382, 36, 28, 3938, 1636, 1637, 14, 647, 299, 1519, 4820, 149, 2382, 36, 28, 3938, 1636, 1637, 354, 219, 2, 43, 1271, 662, 53, 21, 1278, 299, 5840, 14, 574, 34, 2, 6445, 6770], [25, 3, 13, 11, 6933, 6934, 10, 15, 160, 15, 25, 3, 13, 11, 6933, 6934, 10, 15, 160, 15], [40, 4751, 412, 78, 443, 312, 696, 75, 112, 12, 49, 105, 10, 412, 11318, 1, 412, 11319, 1, 412, 11320, 1, 6935, 6936, 6935], [73, 13, 8, 638, 4, 3, 79, 73, 13, 8, 638, 4, 3, 79], [52, 2536, 10, 1900, 52, 2536, 10, 1900], [27, 2, 239, 162, 20, 188, 239, 7, 88, 10, 128, 126, 27, 2, 239, 162, 20, 188, 239, 7, 88, 10, 128, 126], [87, 8, 45, 55, 101, 355, 2, 1544, 44, 87, 6, 8, 45, 36, 33, 115, 6711, 6712, 988, 149, 24, 1487], [3534, 1255, 2, 381, 719, 55, 101, 14, 1419, 3, 3534, 1255, 2, 83, 3, 381, 719, 2, 122, 3, 2558, 112, 1251, 18, 3, 73, 148, 42, 3534, 5964, 433, 47, 42, 27, 2, 122, 192, 3, 628, 1255, 7, 47, 820, 5225, 21, 6937, 21, 1336, 43, 3817, 4, 44, 732, 21, 343, 2044, 2533, 2534, 101, 1287, 2215, 1051, 7, 1906], [76, 29, 55, 14, 90, 29, 2, 3, 168, 76, 11, 28, 11321, 11322, 11323, 7, 11324, 11325, 4829], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 100, 1246, 4, 88, 445, 27, 2, 100, 1246, 4, 88, 445, 28, 63, 84, 2, 106, 21, 593, 251, 67, 172, 558, 323, 29, 6, 502], [13, 25, 13, 125, 20, 13, 120, 13, 25, 13, 125, 20, 13, 120], [100, 127, 1299, 1573, 1230, 2136, 11326, 2136, 3884, 11327, 6526, 6938, 2846, 11328, 171, 4274, 11329, 11330, 11331, 11332, 1298, 11333, 11334, 11335, 11336, 11337, 3619, 226, 11338, 11339, 1511, 4521, 4522, 149, 120, 149, 190, 24, 2079, 879, 11340, 11341, 11342, 1106, 181, 2133, 11343, 72, 4521, 4522, 2286, 100, 127, 1299, 1573, 55, 23, 171, 6, 104, 1250, 100, 127, 1299, 1573, 171, 21, 1937, 83, 147, 186, 2188, 11, 100, 359, 11, 104, 740, 21, 6, 1027, 44, 35, 99, 199, 23, 171, 2, 3333, 11344, 104, 149, 3695, 68, 35, 38, 143, 498, 30, 3871, 2, 3, 171, 14, 129, 104, 1530, 149, 3098, 4446, 1287, 288, 2, 633, 23, 171, 83, 147, 127, 627, 42, 1332, 10, 3, 171, 3, 3683, 30, 3, 4830, 469, 1129, 468, 344, 1494, 11, 44, 470, 10, 3, 127, 7, 264, 8, 43, 543, 2348, 261, 344, 1494, 99, 1242, 10, 541, 147, 470, 4, 3, 698, 96, 470, 438, 65, 344, 1224, 3430, 1258, 7, 1713, 147, 2090, 18, 7, 1258, 3, 171, 99, 963, 3, 344, 1224, 3430, 10, 541, 1299, 470, 127, 6939, 438, 6939, 189, 341, 1144, 4831, 763, 4831, 341, 4831, 1248, 503, 1144, 127, 886, 886, 886, 886, 886, 886, 886, 4830, 14, 106, 8, 853, 899, 2, 3, 689, 18, 23, 181], [41, 1103, 638, 55, 112, 23, 334, 41, 6, 638, 33, 1103, 91, 925, 18, 71, 1083, 1677, 21, 6, 11345, 77, 33, 11346, 7, 278, 33, 133, 183, 51, 696, 4, 11347, 11, 2051, 21, 63, 12, 607, 1126, 169, 969, 21, 244, 257, 36, 607, 5497, 5498, 149, 120, 2819, 1174, 3159, 594, 596, 14, 263, 161, 73, 214, 107, 7, 24, 196, 821, 24, 1763, 879, 1848, 1943, 1849, 1137, 1138, 1052, 1082, 1141], [226, 64, 77, 226, 64, 77], [28, 1007, 2, 95, 4, 2, 2299, 28, 1007, 2, 95, 4, 2, 2299], [9, 29, 2, 535, 51, 335, 2, 122, 30, 535, 261, 891, 664, 1, 29, 986, 8, 336, 1, 23, 526, 4832, 11348, 18, 2181, 2025], [37, 252, 51, 1090, 28, 1022, 10, 235, 297, 51, 1090, 1022, 350, 11, 262, 125, 101, 10, 235, 297, 3, 693, 37, 252, 6, 3186, 91, 163, 1210], [114, 1159, 340, 1159, 1930, 2462, 3372, 262, 48, 596, 687, 1421, 646, 2787, 2788, 3372, 4833, 111, 101, 14, 114, 3, 1159, 340, 1930, 2462, 3372, 262, 3, 48, 24, 596, 687, 646, 2462, 646, 2787, 2788, 9, 6, 285, 122, 58, 340, 1060, 23, 58, 9, 6, 1198, 2, 195, 437, 68, 35, 54, 122, 2315, 62, 65, 316, 2523, 14, 955, 80], [32, 64, 4, 226, 32, 64, 4, 226], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [13, 132, 11, 6940, 111, 14, 132, 3, 13, 11, 1077, 6940, 3, 148, 6, 64, 311, 2, 1125, 385, 13], [6813, 11349, 2527, 7, 122, 2, 175, 115, 62, 78, 14, 122, 3, 372, 11350, 1802, 348, 4, 113, 960, 2089, 2, 3, 142, 62, 2, 3, 78, 207, 44, 35, 39, 504, 4834, 3, 1062, 4271, 7, 1216, 3, 2763, 899, 1186, 3, 348], [74, 782, 146, 479, 2, 893, 74, 2, 33, 148, 184, 6, 178, 4], [3, 1644, 220, 10, 1045, 89, 8, 134, 849, 51, 46, 2, 4835, 24, 144, 7, 335, 2, 170, 3, 1644, 297, 384, 3, 37, 71, 1, 38, 1376, 66, 161, 11351, 4, 11352, 36, 3, 24, 11353, 44, 284, 384, 3, 179, 37, 71, 1, 14, 106, 3, 807], [21, 50, 55, 50, 101, 1, 1, 39, 35, 363, 100, 34, 2, 43, 625, 2, 1046, 1, 54, 50, 30, 333, 7, 2020], [783, 393, 570, 18, 349, 18, 113, 208, 21, 101, 38, 331, 34, 2, 15, 6941, 53, 96, 112, 372, 67, 38, 8, 268, 34, 107, 989, 1362, 172, 14, 386, 135], [27, 2, 119, 33, 279, 140, 13, 21, 65, 8, 989, 562, 2264, 4, 540, 14, 119, 33, 279, 140, 587, 527, 13, 118, 71, 44, 3, 102, 2, 119, 13, 65, 22, 363, 91, 3, 163, 464], [177, 98, 55, 21, 1, 1, 14, 39, 35, 996, 23, 57, 196, 4, 24, 57, 78, 1, 1, 1, 1, 135], [1121, 31, 12, 3, 24, 1212, 271, 135, 11354], [15, 26, 13, 25, 15, 26, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 224, 11, 5898, 5899, 137, 13, 125, 20, 13, 25, 3], [86, 452, 6631, 1, 1, 3, 452, 18, 33, 86, 6, 3281, 11355, 7, 1641, 343, 2044, 2, 633, 1, 1, 458, 1116, 1, 1, 458, 556, 135], [191, 217, 31, 146, 54, 535, 2, 114, 791, 481, 51, 405, 11356, 37, 71, 130, 441, 1350, 8, 430, 14, 129, 718], [86, 6, 8, 11357, 11358, 3373, 78, 55, 39, 1202, 98, 3, 11359, 23, 6, 3, 37, 71, 185, 35, 50, 80, 14, 59, 135], [6942, 438, 1411, 6943, 6942, 438, 1411, 6943, 11, 11360, 65, 2, 43, 625], [29, 2, 2453, 181, 767, 55, 1, 1, 49, 3, 1097, 18, 3, 177, 2453, 181, 767, 1, 1, 1, 1, 33, 3288, 310, 6, 44, 49, 84, 2, 239, 67, 27, 2, 239, 611, 91, 96, 3, 464, 102, 611, 353, 3, 179, 1, 1, 1, 135], [1865, 6944, 111, 14, 25, 3, 13, 7, 320, 3, 73, 13, 2, 283, 120, 711, 6945, 1865, 1934, 9, 56, 2415, 120, 11361, 11362, 1865, 6944, 11363, 11364, 30], [11365, 111, 711, 6946, 6947, 6, 27, 2, 46, 338, 212, 14, 25, 3, 13, 7, 320, 3, 73, 13, 2, 283, 120, 711, 6948, 1934, 9, 56, 2415, 120, 6946, 6947, 11366, 6948, 30], [76, 1159, 24, 168, 998, 190, 856, 618, 75, 76, 1159, 24, 168, 998, 190, 856, 618, 75, 1, 15, 6, 45, 837, 1, 1319, 1825, 6, 343, 278], [307, 731, 31, 55, 11367, 7, 11368, 47, 38, 804, 2942, 30, 731, 10, 417, 20, 23, 117, 65, 3586, 389, 7, 11369, 67, 1431, 1264, 123, 47, 330, 517, 117, 1597, 1620, 30, 11370, 121, 11, 116, 576, 284, 42, 1612, 51, 284, 1961, 3, 3149, 731, 3, 359, 42, 811, 2, 1532, 2821, 2535, 4425, 284, 1336, 43, 1009, 3, 1212, 7, 276, 2627, 3, 598, 2, 67, 53, 35, 39, 91, 68, 3, 464, 23, 6, 8, 3, 732, 99, 1372, 2, 205, 242, 7, 335, 2, 1264, 3, 123, 67, 1049, 2, 118, 23, 1092, 53, 2772, 53, 285], [1574, 11371, 110, 189, 1574, 1, 3, 1574, 1244, 8, 4, 3, 623, 2, 631, 1, 14, 50, 80], [236, 98, 1568, 32, 959, 6949, 10, 115, 4207, 68, 35, 38, 143, 11372, 1393, 12, 11373, 11374, 3, 46, 56, 959, 6949, 755, 43, 1918, 10, 3, 11375, 115, 53, 1690, 30, 11376, 11377], [1005, 317, 6950, 6951, 1005, 317, 6950, 6951], [117, 56, 6952, 89, 8, 1332, 4, 82, 20, 15, 59, 56, 11378, 11379, 182, 213, 130, 155, 204, 117, 107, 214, 146, 117, 56, 6952, 89, 8, 1332, 4, 82, 20, 15, 59, 14, 114, 7, 206, 23, 117], [58, 255, 513, 8, 178, 14, 114, 47, 7, 47, 1074, 1075, 58, 255, 513, 8, 178, 14, 114, 47, 7, 47, 1074, 1075], [11380, 190, 4328, 11381, 11382, 5732, 255, 4422, 190, 2621, 11383, 11384, 1504, 2541, 3761, 11385, 6645, 1, 1, 55, 1, 1, 3, 709, 18, 23, 34, 6, 44, 11, 190, 113, 7, 183, 11, 190, 3307, 1, 47, 106, 8, 118, 143, 116, 32, 131, 36, 168, 20, 1675, 2, 15, 585, 1, 3, 123, 1169, 112, 1, 1, 21, 65, 680, 2, 106, 30, 310, 58, 193, 12, 190, 1, 1, 23, 6, 3238, 411, 18, 713, 591, 1797, 10, 2091], [620, 342, 47, 823, 1557, 1558, 620, 342, 47, 823, 1557, 1558], [193, 30, 1734, 6953, 6954, 2992, 49, 2993, 193, 30, 1734, 6953, 6954, 2992, 49, 2993], [744, 400, 744, 140, 400], [47, 9, 345, 513, 55, 1, 1, 161, 74, 47, 9, 345, 3249, 546, 21, 820, 1101, 98, 30, 3, 71, 127, 63, 8, 402, 51, 35, 276, 465, 2, 537, 21, 530, 1568, 37, 39, 35, 14, 114, 44, 1, 10, 6955, 21, 63, 273, 4798, 276, 23, 37, 3427, 10], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 6137, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1267, 1, 1, 896, 3, 31, 1, 14, 647, 1, 1068, 1338, 4355, 6956, 1, 1068, 1338, 4355, 47, 1, 53, 332, 11386, 11387, 7, 11388, 11389, 28, 264, 8, 43, 84, 2, 644, 1275, 481, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [25, 224, 11, 2887, 2888, 137, 13, 125, 20, 13, 25, 3], [13, 25, 11390, 1, 1, 39, 35, 25, 33, 224, 11, 83, 2949, 1, 1, 450], [40, 6, 75, 112, 49, 105, 10, 40, 6, 75, 112, 49, 105, 10, 3, 78, 6, 1837, 12, 636, 67, 11, 310, 169, 827, 3, 78, 6, 273, 75, 11391, 65, 141, 1631], [50, 2, 189, 186, 11, 473, 208, 21, 1, 1, 246, 35, 363, 50, 2, 189, 186, 263, 11, 473, 21, 307, 11, 113, 11, 829, 37, 47, 27, 2, 189], [97, 46, 365, 334, 47, 97, 46, 2, 26, 311, 3, 177, 37, 397, 792, 37, 185, 8, 122, 2, 71, 78, 6957, 106, 35, 479, 2, 91, 1154, 37, 136, 39, 35, 14, 114, 7, 270, 80, 253, 180, 37, 1169, 12, 975, 11, 11392, 7, 80, 6669], [28, 32, 6, 357, 64, 257, 3949, 111, 28, 59, 3949, 32, 6, 357, 64, 257, 51, 3, 142, 696, 158, 1986], [82, 20, 400, 31, 11, 11393, 1154, 665, 18, 3, 123, 1161, 2297, 348, 56, 1, 1, 6958, 82, 20, 62, 165, 297, 137, 880, 271, 1, 1, 221, 138, 36, 380, 1014, 1, 1, 301, 138, 1, 1, 103, 18, 220, 6171, 4814, 769, 487, 1, 1, 143, 1871, 247, 380, 11394, 141, 230, 1, 1, 51, 187, 21, 134, 372, 1, 1, 6, 3, 31, 1871, 2, 201, 3, 271, 3062, 62, 11, 165, 6958, 82, 20, 271, 1, 1, 3840, 552, 3, 464, 18, 3, 769, 4365, 380], [123, 30, 1292, 481, 208, 3537, 7, 6959, 3, 11395, 18, 481, 89, 8, 511, 134, 9, 29, 2, 3, 74, 959, 115, 9], [209, 174, 400, 6, 8, 402, 91, 3912, 1240, 174, 400, 6, 8, 402], [2553, 11396, 11397, 11398, 2809, 11399, 71, 813, 55, 83, 1, 21, 175, 813, 106, 8, 38, 143, 32, 4, 11400, 7, 68, 246, 38, 197, 6960, 442, 2, 33, 24, 57, 1, 1, 4165, 2539, 4166, 135], [1292, 89, 8, 134, 1292, 11, 3, 1349, 30, 3, 74, 959, 89, 8, 134], [11401, 11402, 526, 38, 29, 2, 408, 142, 390, 65, 1991, 408, 13, 185, 35, 14, 50, 166, 1284, 604], [32, 64, 77, 7, 13, 25, 32, 64, 77, 7, 13, 25], [15, 13, 64, 111, 1, 1, 14, 1975, 3, 15, 13, 1, 1, 1077, 6961, 3600, 3601], [751, 1171, 4422, 190, 2285, 5960, 1043, 11, 104, 136, 11403, 3, 74, 56], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [148, 926, 1698, 8, 45, 14, 106, 3, 807, 11, 24, 3950, 3951, 3950, 3951, 124, 148, 926, 1698, 8, 45, 33, 148, 926, 1698, 8, 45, 14, 5667, 382, 568, 2, 4836, 3, 123, 148, 416, 6, 877, 928, 252, 6, 200, 1018, 11404, 11, 24, 3950, 3951, 1276, 120, 149, 1620, 1535, 6962], [8, 84, 2, 176, 10, 59, 8, 84, 2, 176, 10, 59], [1292, 36, 3, 751, 1955, 89, 8, 134, 30, 3, 1001, 254, 8, 1150, 1292, 36, 3, 751, 1955, 89, 8, 134, 30, 3, 1001, 254, 8, 1150], [161, 74, 2252, 12, 113, 542, 134, 55, 1, 161, 74, 2252, 12, 113, 11, 160, 3316, 542, 134, 1, 47, 54, 21, 295, 851, 1230], [51, 1292, 6963, 175, 71, 664, 44, 3, 993, 89, 8, 1196, 51, 1292, 6963, 175, 71, 664, 44, 3, 993, 89, 8, 1196], [1632, 6, 8, 405, 294, 6964, 67, 1632, 61, 3500, 6, 405, 56, 11405, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1632, 6, 8, 405, 294, 6964, 67, 1632, 61, 3500, 6, 405], [72, 15, 65, 46, 37, 111, 62, 1709, 2, 46, 2, 72, 15, 65, 14, 106, 3, 807], [32, 136, 399, 111, 1, 1, 185, 35, 14, 778, 1459, 23, 6, 4375, 181], [1280, 1068, 1121, 210, 208, 101, 365, 334, 47, 11406, 1239, 18, 1280, 1068, 1121, 210, 4, 11407, 520, 719, 1173, 2821, 641, 11408, 1173, 641, 1173, 641, 174, 594, 11409, 1110, 719, 522, 641, 450, 102, 35, 2, 366, 158, 44], [92, 69, 734, 6, 8, 45, 92, 69, 734, 6, 8, 45], [61, 6, 8, 45, 142, 2037, 878, 10, 1, 61, 6, 8, 45], [32, 64, 77, 7, 13, 25, 32, 64, 77, 7, 13, 25], [102, 2, 25, 130, 445, 368, 13, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 1289, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 11410, 372, 56, 11411, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [235, 108, 453, 11412, 11413, 1, 49, 1, 291, 292, 1, 1289, 550, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 720, 313, 1, 1, 14, 876, 33, 235, 609, 2, 747, 29, 245, 10, 235, 1, 1, 2820, 35, 1, 1, 135], [41, 8, 45, 56, 11414, 1865, 182, 213, 130, 155, 204, 117, 107, 214, 146, 41, 8, 45], [15, 8, 45, 208, 491, 1, 177, 71, 6, 770, 329, 1603, 15, 1293, 1, 1, 1934, 252, 1, 28, 59, 5418, 1, 1, 1, 1, 1, 30, 135], [37, 329, 811, 13, 4, 13, 125, 20, 13, 120, 37, 1535, 6, 163, 37, 329, 811, 13, 4, 13, 125, 20, 13, 120, 14, 91, 163, 2421, 7, 106, 3, 807], [14, 50, 2, 132, 1342, 11, 28, 3949, 111, 1, 47, 248, 2, 132, 36, 13, 125, 20, 48, 67, 22, 14, 50, 2, 132, 11, 28, 3949], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [8, 84, 2, 46, 692, 20, 110, 49, 8, 84, 2, 46, 692, 20, 220, 33, 28, 59, 6], [358, 1976, 1669, 279, 140, 52, 31, 358, 11415, 862, 38, 138, 86, 31, 197, 470, 86, 107, 3244, 11416, 39, 281, 77, 6965, 470, 68, 35, 281, 77, 6965, 470, 47, 820, 268, 2072, 2886, 67, 47, 39, 281, 4, 486, 1669, 69, 2373, 685, 7, 3267, 2, 114, 423, 817, 3, 2359, 6, 83, 817, 45, 494, 207, 284, 270, 166, 2, 114, 161, 6966, 817, 1206, 83, 470, 122, 2, 6966, 14, 129, 442, 568, 2, 129, 80, 7, 50, 80, 795, 3, 123], [731, 1189, 1620, 200, 49, 291, 292, 11417, 11418, 1289, 731, 1189, 55, 6558, 363, 308, 236, 731, 1189, 426, 113, 11, 96, 117, 2], [87, 185, 8, 134, 87, 185, 8, 134, 39, 8, 927, 1096], [148, 2437, 31, 148, 2437, 329, 137, 443, 1666, 12, 116], [1938, 862, 1938, 862], [519, 94, 257, 2400, 55, 1, 1, 519, 1060, 94, 18, 2400, 1, 14, 50], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12], [82, 20, 29, 653, 82, 20, 29, 653], [1478, 217, 2828, 1140, 1478, 217, 2828, 1140], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12], [40, 369, 375, 10, 686, 6967, 6, 316, 467, 40, 369, 375, 10, 686, 6967, 6, 316, 467], [27, 2, 766, 324, 171, 3947, 3948, 124, 291, 292, 3495, 3496, 3363, 1952, 243, 324, 171, 65, 141, 1260, 6928, 6929, 1260, 283, 1864, 96, 67, 21, 187, 8, 468, 98, 53, 1291, 11, 80, 2, 766, 4, 3, 338, 212, 742, 495, 1713, 165, 694, 451, 389, 2605, 1260, 283, 7, 197, 169, 14, 1740, 424, 2605, 324, 4233, 187, 8, 468, 98, 4, 33, 52, 2, 766, 268, 3, 623, 57, 44, 180, 187, 436, 1050, 71, 623, 52, 181, 124, 3947, 3948, 324, 171, 65, 141, 1260, 3, 177, 324, 171, 65, 141, 1260, 11, 104, 631, 1712, 9, 6930, 6931, 324, 171, 9, 170, 341, 591, 341, 344, 2007, 1457, 2209, 973, 1457, 2, 485, 23, 324, 171, 4, 315, 14, 95, 158, 104, 2429, 1772, 10, 120, 1587, 200], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [61, 94, 90, 24, 2687, 48, 6, 531, 75, 112, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1522, 18, 104, 863, 24, 1174, 154, 24, 144, 1726, 380, 1051, 36, 40, 595, 1, 1, 11419, 1084, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 1174, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [4, 40, 40, 40, 200, 1351, 362, 6, 8, 327, 4, 40, 40, 40, 200, 1351, 362, 6, 8, 327], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 25, 279, 140, 13, 11, 691, 34, 9, 14, 25, 279, 140, 13, 56, 315, 56, 4837, 4838, 691, 4839, 1393, 48, 759], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [87, 11, 191, 6, 2329, 75, 51, 937, 3, 142, 3, 37, 71, 6, 87, 11, 191, 65, 706, 45, 7, 151, 6, 72, 1293, 2, 413, 44, 530, 735, 3, 447], [361, 434, 24, 262, 1187, 1173, 1117, 277, 6, 75, 112, 124, 10, 105, 361, 434, 24, 262, 1187, 1173, 1117, 277, 6, 75, 112, 124, 10, 105], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1666, 22, 4, 5, 19, 12, 5, 26, 1666, 22, 4, 5, 19, 12], [123, 171, 36, 2323, 1153, 24, 144, 4193, 107, 260, 52, 1153, 686, 6968, 11420, 348, 103, 416, 1911, 6968, 11421, 123, 107, 37, 665, 126, 4791, 1092, 72, 37, 372, 1078, 49, 628, 233, 825, 4193, 107, 222, 194, 295, 121, 1014, 10, 2323, 402, 1254, 66, 78, 2323], [24, 17, 90, 90, 2565, 538, 29, 277, 434, 6, 75, 12, 90, 24, 271, 112, 105, 10, 24, 17, 90, 90, 2565, 538, 29, 277, 434, 6, 75, 12, 90, 24, 271, 112, 105, 10], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [97, 122, 2, 155, 1905, 340, 267, 55, 1, 97, 122, 2, 143, 155, 48, 192, 204, 1905, 33, 340, 6, 267, 363, 50, 1008, 49, 3002, 2, 373, 205, 869, 7, 49, 534, 72, 1901, 4690], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 369, 370, 900, 40, 2444, 10, 78, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 900, 40, 2444, 10, 78, 6, 272, 198, 375, 198, 178, 607], [963, 619, 133, 11, 139, 595, 4, 1, 1, 47, 42, 697, 104, 24, 1174, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 1111, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 725], [963, 619, 133, 11, 139, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 2913, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 725], [539, 2649, 352, 118, 1973, 36, 138, 196, 595, 4, 1, 1, 268, 559, 11, 146, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 1396, 36, 3, 108, 30, 138, 196, 3, 221, 18, 23, 380, 6, 36, 138, 11422, 7, 3, 301, 6, 138, 222, 18, 72, 698, 93, 42, 806, 96, 14, 663, 23, 597, 7, 11423, 53, 1099, 1, 1, 53, 820, 68, 35, 38, 143, 498, 62, 881, 14, 121, 3, 2613, 2578, 1249, 314, 12, 11424, 2, 6969, 62, 436, 466, 4, 3, 100, 34, 30, 72, 354, 18, 1185, 2, 725], [1176, 358, 154, 24, 144, 108, 848, 12, 975, 318, 1306, 11, 139, 595, 4, 1, 1, 47, 42, 697, 104, 1176, 358, 154, 24, 144, 108, 848, 12, 975, 318, 1306, 11, 139, 364, 745, 858, 11, 380, 230, 36, 3350, 2, 247, 139, 18, 567, 318, 2082, 23, 701, 1446, 2697, 1292, 1794, 62, 723, 318, 4840, 357, 230, 66, 3, 863, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 318, 2697, 364, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 318, 2697, 364, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 725], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [58, 94, 90, 24, 203, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [245, 8, 638, 245, 8, 638], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 26, 369, 375, 10, 686, 6970, 6, 316, 467, 40, 26, 369, 375, 10, 686, 6970, 6, 316, 467], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [209, 41, 8, 1733, 13, 209, 41, 8, 1733, 13], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 13, 64, 111, 14, 1975, 3, 15, 13, 1077, 6961, 3600, 3601], [288, 2, 29, 6971, 36, 441, 1467, 56, 3647, 3648, 182, 213, 130, 155, 204, 117, 107, 214, 146, 288, 2, 29, 6971, 36, 441, 1467], [5, 40, 708, 205, 242, 22, 4, 5, 19, 12, 5, 40, 708, 205, 242, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [60, 94, 190, 24, 11425, 7, 11426, 1285, 76, 6, 75, 112, 124, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 500, 30, 197, 263, 287, 27, 2, 500, 30, 197, 263, 287], [193, 1250, 171, 55, 83, 1, 1, 39, 660, 33, 1250, 171, 2, 3, 52, 1, 1, 526, 253, 85, 3, 123, 1, 1, 91, 3, 11427, 53, 613, 1, 1, 54, 104, 295], [128, 126, 967, 55, 54, 241, 967, 638, 934, 18, 3, 128, 126, 347, 11, 33, 1076, 2485, 151, 6, 229, 10, 161, 347, 44, 11428, 2, 367, 54, 2, 1088, 44, 316, 98, 2, 341, 394, 18, 3, 367, 6, 2694], [97, 199, 87, 11, 191, 30, 315, 395, 7, 1136, 21, 89, 8, 1185, 7, 755, 43, 1167, 75, 143, 87, 381, 304, 755, 43, 670, 30, 121, 80, 12, 7, 526, 1539, 395, 3, 199, 87, 11, 191, 315, 395, 7, 1136, 2658, 201, 1527, 87, 21, 1428, 1754, 836, 116, 2, 100, 257], [5, 40, 2394, 3952, 22, 4, 5, 19, 12, 5, 40, 2394, 3952, 22, 4, 5, 19, 12], [5, 40, 708, 3952, 22, 4, 5, 19, 12, 5, 40, 708, 3952, 22, 4, 5, 19, 12], [699, 2, 76, 699, 2, 76], [27, 2, 513, 36, 3, 682, 83, 4, 197, 74, 27, 2, 513, 36, 3, 682, 83, 4, 197, 74], [27, 2, 436, 324, 171, 27, 2, 436, 324, 171], [25, 3, 13, 11, 6972, 6973, 10, 15, 160, 15, 25, 3, 13, 11, 6972, 6973, 10, 15, 160, 15], [638, 13, 10, 13, 125, 20, 638, 13, 10, 13, 125, 20], [76, 8, 84, 2, 95, 158, 76, 54, 241, 967, 14], [547, 8, 590, 83, 1037, 547, 1387, 6, 8, 323, 83, 1037, 26, 26, 449, 7, 27, 2, 206, 26, 1, 430, 547, 3953, 7, 547, 1387, 67, 179, 31, 21, 942, 2, 15, 397, 183, 67, 1709, 866, 543, 661, 1037, 1, 1, 39, 35, 14, 114, 288, 21, 351, 2280, 573, 1693, 143, 521, 1, 1, 14, 622, 2, 464, 1, 1, 1, 142, 56, 2913], [419, 609, 419, 609], [27, 2, 211, 6974, 10, 3, 115, 27, 2, 211, 6974, 10, 3, 115], [27, 2, 122, 2, 87, 27, 2, 122, 2, 87], [647, 6975, 6976, 36, 279, 140, 4304, 7, 24, 675, 223, 1571, 3434, 1641, 647, 6975, 6976, 36, 279, 140, 4304, 7, 24, 675], [1250, 171, 37, 71, 55, 1, 1, 14, 795, 3, 177, 123, 1, 30, 72, 202, 76, 133, 3, 1250, 171, 97, 43, 4546, 1, 1, 1, 1284, 604], [41, 6, 8, 405, 41, 6, 8, 405], [15, 13, 25, 307, 32, 351, 64, 77, 15, 13, 25, 32, 351, 64, 77], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [451, 6977, 1573, 8, 45, 30, 73, 86, 52, 284, 295, 161, 7, 11429, 11430, 319, 52, 54, 451, 6977, 1573, 1548, 251, 10, 662, 7, 47, 38, 9, 6978, 319, 52, 722, 172], [13, 65, 562, 13, 65, 562], [379, 42, 8, 496, 1638, 3, 379, 42, 8, 496, 3, 391, 973, 18, 1638, 14, 366, 12, 3, 1107, 44, 6, 1977, 1638, 1192, 10, 1496, 7, 1207, 2988], [90, 359, 323, 98, 4, 3, 166, 113, 2, 106, 302, 600, 1499, 38, 134, 314, 1916, 4, 15, 184, 6, 1278, 359, 11, 600, 1499, 2, 1242, 4, 3, 2, 106, 302, 119, 3, 403, 2, 114, 11, 600, 3, 113, 7, 134, 314], [15, 210, 97, 189, 2090, 7, 183, 15, 6, 1754, 278, 558, 531, 2, 516, 118, 294, 72, 127, 23, 6, 2353, 305, 53, 161, 2183, 11431], [82, 20, 37, 82, 20, 37], [25, 338, 13, 25, 338, 13], [8, 84, 2, 106, 1104, 11, 2090, 37, 616, 32, 1622, 186, 117, 3120, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 654, 1, 186, 117, 3120, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 654, 1, 186, 117, 3120, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 654, 1, 186, 117, 438, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 654], [27, 2, 114, 245, 542, 500, 32, 609, 42, 3643, 27, 2, 647, 206, 736, 57, 32, 36, 79, 86, 1, 250, 2, 736, 3, 32, 7, 558, 323, 44, 736, 8, 285, 1, 558, 8, 516, 6057, 28, 2, 647, 7, 243, 206, 3, 32, 1, 27, 2, 114, 245, 542, 500, 32, 609, 42, 3643], [403, 692, 20, 32, 403, 692, 20, 32], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [15, 186, 210, 55, 1, 1, 49, 290, 210, 11432, 2090, 4, 15], [2422, 1049, 2, 236, 1686, 36, 6979, 6980, 812, 2422, 1049, 2, 236, 1686, 36, 6979, 6980, 812], [1474, 88, 29, 4, 799, 86, 111, 1, 1, 246, 265, 2, 199, 88, 10, 33, 799, 235, 86, 1, 308, 270, 80, 253, 3, 1107, 1, 1, 30, 135], [18, 3954, 64, 18, 3954, 64], [1982, 3954, 64, 1982, 3954, 64], [1621, 3572, 435, 55, 1, 1, 39, 35, 14, 50, 80, 10, 3928, 57, 10, 812, 315, 435], [15, 26, 32, 64, 15, 26, 32, 64], [235, 108, 295, 55, 1, 49, 290, 210, 30, 977, 1646, 121, 10, 33, 24, 235, 108, 63, 27, 2, 29, 3, 188, 295, 314, 10, 3, 459, 99, 1725, 54, 73, 108, 53, 23, 31, 6, 518, 442, 106, 129, 69, 235, 899, 62], [295, 255, 3015, 477, 1557, 1558, 295, 255, 3015, 477, 1557, 1558], [13, 562, 13, 562], [735, 470, 438, 10, 127, 111, 1, 14, 735, 470, 438, 10, 127, 107, 411, 21, 65, 534, 141, 3050, 67, 2161, 100, 4, 1221], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 119, 13, 10, 13, 125, 20, 13, 120, 27, 2, 119, 13, 10, 13, 125, 20, 13, 120], [21, 50, 11, 82, 20, 7, 82, 20, 208, 491, 1, 1, 14, 50, 2, 528, 140, 18, 82, 20, 7, 82, 20, 10, 33, 148, 1, 161, 222, 42, 53, 96, 38, 2873, 18, 24, 361, 1335, 1, 6981, 56, 11433, 6982, 11434, 11435, 1, 6981, 252], [32, 164, 64, 1352, 32, 164, 64, 1352, 28, 274, 3, 13, 310, 1737], [385, 6983, 2188, 11, 10, 359, 7, 1852, 101, 112, 576, 47, 1910, 44, 3, 6983, 341, 10, 127, 1036, 6, 385, 21, 264, 43, 540, 68, 20, 6, 178, 4, 190, 11, 6664, 2339, 540, 11, 117, 1202, 98, 53, 1314, 18, 3908, 3, 2188, 42, 454, 836, 4, 3, 710, 387, 127, 825, 310, 7, 178, 4, 113, 1435, 2411, 341, 18, 83, 3041, 328, 201, 11, 4125], [21, 15, 49, 250, 2, 29, 852, 18, 149, 131, 4, 547, 7, 21, 2646, 80, 49, 8, 723, 39, 35, 14, 4973, 7, 583, 80, 29, 2, 44, 3932, 1, 1, 163, 6, 3, 287, 49, 405, 7, 746, 122, 2, 547, 21, 1435, 80, 3, 177, 71], [148, 2360, 58, 1255, 8, 45, 4, 161, 6984, 148, 2360, 58, 1255, 8, 45, 4, 161, 6984], [385, 917, 4, 474, 55, 1, 1, 791, 63, 1071, 426, 3, 385, 474, 107, 1, 14, 544, 917, 1, 1, 342, 1079, 556, 714, 135], [1288, 11, 2225, 859, 7, 206, 10, 317, 111, 101, 1, 1, 49, 1288, 11, 2225, 859, 7, 206, 10, 317, 6985, 3709, 4, 889, 14, 1247, 23, 102, 7, 525, 1, 11436, 2, 80, 329, 4667, 225, 418, 44, 99, 38, 703, 11437, 11438, 185, 239, 3, 179, 4, 3709, 167, 343, 4409, 1, 4792, 80, 30, 33, 1290, 134, 442, 2148, 265, 225, 20, 4394, 207, 39, 106, 21, 4, 1502, 316, 821, 986, 30, 206, 10, 317, 1, 183, 4792, 80, 4, 57, 2148, 1, 372, 67, 8, 3, 975, 526, 38, 2, 3343, 33, 148, 3829, 2, 174, 5048, 7, 39, 410, 33, 148, 2067, 771, 316, 11439], [295, 255, 3015, 477, 6986, 6987, 295, 255, 3015, 477, 6986, 6987], [193, 30, 142, 1957, 2662, 2663, 193, 30, 142, 1957, 2662, 2663], [620, 342, 6988, 477, 620, 342, 6988, 477], [295, 255, 1047, 2866, 2767, 2768, 295, 255, 1047, 2866, 2767, 2768], [2586, 2, 3, 218, 4, 254, 865, 218, 55, 611, 574, 633, 721, 2586, 2, 11440, 11441, 283, 28, 59, 11442, 218, 865, 2089, 2089, 26, 1156], [123, 30, 15, 397, 1284, 2882, 30, 135], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [363, 211, 209, 41, 12, 115, 18, 3300, 6989, 6990, 363, 211, 209, 41, 12, 115, 18, 3300, 6989, 6990, 363, 574, 2, 11443, 11444], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [79, 453, 71, 55, 21, 101, 1, 1, 85, 49, 3002, 2, 106, 30, 44, 31], [13, 132, 15, 26, 2265, 137, 3, 13, 125, 20, 13, 120, 3, 2684, 89, 8, 134, 1, 110, 185, 8, 95, 158, 15, 26, 1, 13, 125, 20, 2684, 8, 304, 1, 121, 12, 21, 11445, 1342, 10, 1102, 29, 2, 26, 276, 2890, 1, 67, 330, 2, 199, 13, 125, 20, 257, 3922, 83, 1342, 2, 3, 73, 1342, 1, 169, 86, 121, 257, 95, 4, 2, 15, 248, 257, 89, 8, 134, 1, 1, 6460, 1282, 826, 110, 2185, 6468, 3, 2677, 483, 11446, 393, 73, 224, 1, 1888, 3374, 13, 125, 20, 30, 15, 1342, 2, 373, 207, 44, 23, 24, 4313, 316, 11447, 1, 1, 255, 4, 3, 628, 732, 110, 1382, 35, 2, 25, 3, 13, 10, 1102, 207, 44, 110, 39, 1372, 45, 1, 1, 1, 1, 1, 30, 450, 3341, 135], [3955, 111, 14, 25, 3, 13, 18, 711, 2600, 7, 818, 3, 73, 13, 2, 283, 120, 711, 6991, 6992, 1934, 9, 56, 2415, 120, 6993, 6994, 3955, 6991, 6992, 30], [9, 1735, 2, 3, 58, 30, 115, 1957, 4, 6995, 865, 9, 1735, 2, 3, 58, 30, 115, 4, 6995, 865, 6996, 29, 6, 307, 1099, 11, 11448, 1691, 140, 3355, 3356, 7, 1485, 1486, 42, 3, 1748, 568], [40, 3010, 3956, 529, 212, 1423, 566, 422, 1423, 520, 315, 29, 6997, 40, 3010, 3956, 529, 212, 1423, 566, 422, 1423, 520, 315, 29, 6997], [866, 3957, 38, 73, 923, 4, 3, 249, 249, 68, 479, 2, 946, 3, 349, 11449, 866, 3957, 38, 73, 923, 4, 3, 249, 249, 68, 479, 2, 946, 3, 1345, 1508, 3, 52, 89, 8, 326, 143, 2089, 2088, 252, 51, 199, 3, 252, 866, 1948, 11450, 1101, 3, 71, 2088, 1536, 7, 11451, 534, 304, 66, 349, 1, 1, 14, 114, 377], [6998, 218, 29, 208, 491, 62, 11452, 110, 49, 3, 818, 1097, 18, 3, 254, 1076, 4, 3, 507, 11453, 4, 190, 7, 54, 72, 1084, 18, 448, 65, 29, 2, 3, 693, 11454, 14, 320, 80, 23, 302, 662, 1793, 11455, 24, 3865, 879, 7, 616, 1793, 1363, 988, 1137, 1138, 1082, 1141, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 2349, 36, 1225, 426, 1135, 1512, 572, 62, 1294, 631, 18, 23, 71, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 6999, 68, 35, 38, 268, 23, 71, 66, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 11456, 387, 229, 2, 239, 3, 938, 4, 72, 885, 182], [4841, 18, 11457, 4, 168, 20, 6, 8, 45, 11458, 962, 1, 11459, 3958, 962, 1, 2797, 4842, 962, 1, 1, 28, 97, 3700, 4, 7, 77, 116, 4, 168, 20, 1, 1, 131, 6, 8, 1675, 2, 15, 36, 576, 180, 89, 8, 253, 184, 223, 63, 1997, 576, 7, 448, 63, 11460], [31, 30, 15, 26, 31, 30, 15, 26, 1, 347, 6, 8, 590], [41, 57, 29, 11, 11461, 11462, 235, 108, 453, 508, 108, 111, 1, 14, 90, 41, 29, 57, 7, 672, 11, 96, 2559, 10, 283, 383, 1, 1, 2002, 3694], [37, 10, 11463, 11464, 148, 111, 1, 11465, 148, 97, 873, 98, 54, 2, 353, 3, 31], [349, 31, 208, 101, 47, 746, 1927, 6807, 127, 10, 461, 6808, 349, 673, 1980, 103, 67, 558, 798, 591, 462, 249, 273, 1169, 4, 15, 363, 50, 2, 114, 3, 1886, 1206, 1498, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [910, 382, 14, 269, 222, 18, 3, 31], [39, 8, 644, 472, 311, 2, 700, 31, 208, 101, 363, 50, 2, 114, 955, 186, 21, 275, 2, 322, 700, 67, 47, 39, 8, 926, 4, 1096, 4, 3, 339, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [148, 542, 29, 30, 58, 148, 542, 29, 30, 58], [76, 46, 31, 32, 602, 77, 76, 46, 31, 32, 602, 77], [235, 108, 453, 24, 794, 235, 108, 453, 24, 794], [744, 37, 4, 26, 15, 52, 151, 42, 42, 316, 467, 11466, 4, 30, 744, 37], [4659, 59, 74, 4659, 857, 10, 3, 74], [419, 8, 1458, 419, 8, 1458, 1, 1, 248, 405, 4, 2003, 1042, 9, 465, 1, 25, 9, 465, 1, 248, 11467, 419, 79, 2202, 22, 2, 1796, 1, 827, 52, 1, 21, 1067, 494], [226, 32, 602, 77, 7, 13, 25, 294, 13, 125, 20, 13, 120, 226, 32, 602, 77, 7, 13, 25, 294, 13, 125, 20, 13, 120], [544, 18, 1860, 1301, 4, 3191, 3192, 11, 338, 205, 869, 544, 18, 1860, 1301, 4, 3191, 3192, 11, 338, 205, 869], [406, 2212, 841, 2212, 520, 6257, 406, 37, 71, 11468, 406, 200, 275], [226, 32, 64, 77, 226, 32, 64, 77, 146, 49, 64, 77, 18, 33, 142], [87, 31, 27, 2, 410, 62, 384, 497, 4, 87, 27, 2, 410, 62, 384, 497, 4, 87, 1251, 18, 3, 420, 3, 432, 20, 1799, 6480, 11469, 6, 8, 11470, 67, 39, 43, 4327, 1799, 11471], [255, 74, 406, 255, 74, 406], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 22, 151, 6, 9, 7000, 30, 261, 2601, 14, 114, 377, 5, 22, 151, 6, 9, 7000, 30, 261, 2601, 14, 114, 377], [32, 602, 77, 31, 32, 602, 77, 31], [949, 403, 393, 4814, 28, 1049, 2, 171, 393, 241, 197, 45, 10, 283, 52, 573, 283, 3285, 425, 30, 521, 942, 4, 142, 21, 63, 15, 696, 251, 2, 506, 609, 425, 4, 1671, 7, 2202, 21, 63, 15, 3953, 430, 514, 44, 116, 2610, 28, 7, 1098, 2, 1544, 68, 180, 5958, 23, 597, 257], [185, 8, 280, 319, 302, 4, 4623, 52, 435, 1951, 28, 56, 11472, 28, 59, 52, 4623, 129, 86, 37, 71, 1951, 3375, 11473, 11474, 11475, 11476, 11477, 11478, 3046, 926, 8, 336, 160, 4813, 220, 78, 1984, 603, 78, 56, 1181, 11479], [32, 602, 77, 31, 32, 602, 77, 31, 1, 194, 158, 28, 142, 7, 1157, 83, 376, 13, 1, 2563, 2036, 7, 11480, 173, 1, 1281, 4, 2, 41, 7, 425, 30, 87, 1, 1448, 602, 77, 233, 7, 1631, 28, 2, 70, 13, 4, 83, 235, 108], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3447, 3959, 142, 89, 8, 170, 236, 1749, 3, 142, 2140, 456, 51, 3, 58, 6, 11481, 1, 14, 2, 43, 11482, 30, 66, 2749], [27, 2, 176, 36, 15, 27, 2, 176, 36, 15], [60, 94, 361, 92, 69, 7, 2507, 11483, 42, 75, 12, 124, 105, 10, 48, 6, 98, 10, 92, 69, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [58, 94, 90, 432, 76, 60, 6, 75, 12, 124, 105, 10, 48, 6, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 122, 2, 3, 958, 1343, 7, 1343, 183, 54, 50, 2, 122, 751, 27, 2, 122, 2, 3, 958, 1343, 7, 1343, 183, 54, 50, 30, 3, 751, 248, 2, 528, 3, 407, 36, 3, 6496, 580, 67, 51, 248, 2, 373, 21, 54, 2, 38, 718, 29], [7001, 99, 8, 1900, 573, 845, 61, 4843, 267, 207, 2532, 1083, 831, 7001, 99, 8, 1900, 573, 845, 61, 4843, 267, 207, 2532, 1083, 831], [60, 94, 90, 76, 60, 6, 75, 12, 124, 105, 10, 60, 6, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [1526, 155, 133, 1526, 155, 133], [186, 1001, 36, 165, 195, 770, 2, 3, 74, 186, 1001, 36, 165, 195, 770, 2, 3, 74], [52, 278, 10, 170, 98, 52, 278, 10, 170, 98], [114, 1159, 340, 48, 596, 687, 1421, 646, 2787, 2788, 3372, 4833, 111, 101, 14, 114, 3, 1159, 340, 3, 48, 24, 596, 687, 646, 2462, 646, 2787, 2788, 9, 6, 285, 122, 58, 340, 1060, 23, 58, 9, 6, 1198, 2, 195, 437, 68, 35, 54, 122, 2315, 62, 65, 316, 2523, 14, 955, 80], [199, 176, 199, 176, 31], [392, 10, 6, 8, 45, 56, 1017, 2698, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 33, 966, 392, 10, 6, 8, 45], [115, 193, 307, 55, 3, 177, 2271, 7, 7002, 42, 9, 345, 327, 1250, 171, 1346, 97, 43, 1675, 440, 385, 78, 993, 128, 126, 9, 345, 11484, 3, 5757, 9, 345, 1996, 30, 128, 126, 11485, 133, 8, 2890, 30, 450, 750, 4121, 4122, 220, 82, 220, 685, 3090, 2761, 1487, 181, 24, 2079, 879, 730, 24, 144, 1363, 988, 2567, 2925, 1137, 1138, 1082, 1141, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 4776, 4, 2826, 30, 1135, 1512, 6, 2349, 36, 1225, 62, 572, 66, 1931, 448, 42, 8, 3, 679, 1453, 6, 1139, 2568, 68, 35, 38, 268, 23, 71, 311, 2, 72, 6110, 14, 1026, 3, 689, 7, 320, 21, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [27, 2, 463, 82, 20, 27, 2, 463, 82, 20], [1003, 400, 1003, 400], [2524, 3, 2857, 10, 33, 527, 42, 1326, 169, 827, 7, 1094, 428, 2361, 2524, 3, 2857, 10, 33, 527, 42, 1326, 169, 827, 7, 1094, 428, 2361], [27, 2, 118, 10, 87, 395, 381, 30, 240, 1760, 27, 2, 118, 10, 87, 395, 381, 30, 240, 1760], [90, 2869, 1577, 42, 64, 77, 18, 337, 7, 8, 84, 2, 513, 4, 160, 7, 2041, 763, 206, 90, 2869, 1577, 42, 64, 77, 18, 337, 7, 8, 84, 2, 513, 4, 160, 4844, 4845, 7003, 942, 1633, 4, 197, 593, 4827, 4828], [7004, 7005, 32, 65, 562, 7004, 7005, 32, 65, 562], [195, 4, 4846, 1007, 2, 70, 961, 222, 195, 4, 4846, 1007, 2, 70, 961, 222], [1749, 70, 1749, 70], [110, 49, 1223, 65, 1573, 1573, 7, 38, 141, 225, 2306, 470, 47, 97, 1104, 110, 49, 1223, 65, 1573, 1573, 7, 38, 141, 225, 2306, 470, 47, 97, 1104, 207, 21, 65, 8, 225, 2306, 143, 3543, 10, 288, 47, 39, 118, 470, 225, 2306], [108, 103, 521, 11, 90, 108, 103, 521, 11, 90], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [108, 8, 327, 382, 7006, 2635, 2025, 108, 8, 327, 382, 7006, 2635, 2025, 1, 1, 81, 108, 8, 327, 37, 2141, 100, 11486], [683, 1070, 393, 683, 683, 1070, 393, 683], [1197, 2178, 10, 33, 115, 1928, 99, 8, 134, 1944, 2293, 1197, 65, 706, 45, 1197, 2178, 10, 33, 115, 1928, 99, 8, 134, 1944, 2293, 1197, 65, 706, 45], [54, 29, 2, 4758, 4759, 245, 54, 29, 2, 4758, 4759, 245], [41, 6, 8, 545, 37, 54, 13, 41, 6, 8, 545, 37, 54, 13], [1450, 193, 30, 130, 128, 126, 7, 33, 24, 32, 1450, 193, 30, 130, 128, 126, 7, 33, 24, 32], [34, 70, 56, 2424, 182, 213, 130, 155, 204, 117, 107, 214, 146, 177, 98, 10, 4148, 252, 220, 439, 34, 9, 39, 47, 14, 118, 3, 3960, 29, 510], [519, 621, 29, 11487, 58, 519, 621, 621, 648, 56, 2605, 621, 372, 56, 11488, 621, 57, 59, 129, 9, 271, 24, 2001, 57, 59, 658, 658, 11, 621, 29, 310, 599, 124, 990], [32, 64, 32, 64], [1526, 2676, 10, 23, 142, 1526, 2676, 10, 23, 142], [225, 418, 7, 2190, 11, 752, 264, 43, 752, 225, 418, 7, 2190, 11, 752, 264, 43, 752], [97, 410, 62, 4731, 497, 10, 383, 97, 410, 62, 4731, 497, 10, 383], [28, 219, 23, 32, 53, 779, 4, 3, 464, 2, 43, 72, 202, 32, 207, 44, 180, 39, 206, 73, 1464, 462, 351, 121, 1675, 36, 1205, 28, 219, 23, 32, 53, 779, 4, 3, 464, 2, 43, 72, 202, 32, 207, 44, 180, 39, 206, 73, 1464, 462], [73, 148, 236, 98, 236, 98, 7, 73, 148, 7, 647, 3, 376, 197], [632, 128, 126, 48, 6, 9, 345, 897, 632, 59, 51, 73, 632, 6, 543, 632, 128, 126, 48, 6, 9, 345, 897, 632, 59, 51, 73, 632, 6, 543, 1, 1, 1, 1231], [339, 121, 30, 941, 339, 121, 30, 941], [110, 38, 350, 73, 349, 923, 67, 51, 335, 2, 1962, 3, 1877, 62, 995, 21, 4, 1877, 21, 530, 349, 89, 8, 1196, 249, 7], [97, 29, 57, 179, 439, 53, 3, 887, 451, 540, 97, 29, 2, 57, 62, 7007, 128, 126, 21, 833, 3, 31, 67, 21, 6, 4473, 257], [14, 452, 1624, 136, 10, 3, 149, 766, 167, 4, 3, 2423, 447, 14, 452, 1624, 136, 10, 3, 149, 766, 167, 4, 3, 2423, 447, 112, 3, 894, 2084, 63, 274, 2, 1624, 2084, 3, 167, 65, 2026, 1716, 11489], [82, 20, 3923, 7008, 181, 49, 291, 292, 2404, 82, 20, 11490, 491, 1823, 14, 11491, 80, 288, 2, 211, 82, 20, 47, 38, 248, 10, 422, 67, 558, 8, 588, 528, 14, 853, 711, 3923, 7008, 11492, 149, 7, 368, 7009, 11493], [350, 1345, 1508, 576, 1364, 21, 89, 8, 1196, 4, 15, 67, 3, 2088, 2089, 530, 21, 534, 1169, 51, 335, 2, 243, 189, 30, 2088, 2089, 11494, 15, 530, 21, 534, 1169], [403, 448, 6, 3, 1097, 18, 667, 812, 7010, 417, 1715, 403, 448, 6, 3, 1097, 18, 667, 812, 7010, 417, 1715], [13, 25, 102, 13, 25, 102], [14, 1540, 477, 32, 14, 1540, 477, 32], [82, 20, 13, 25, 82, 20, 13, 25], [27, 2, 119, 3, 13, 36, 13, 125, 20, 27, 2, 119, 3, 13, 36, 13, 125, 20], [27, 2, 95, 4, 2, 57, 15, 7, 128, 126, 27, 2, 95, 4, 2, 57, 15, 7, 128, 126], [214, 11495, 11496, 1393, 406, 452, 11497, 11498, 133, 514, 497, 6, 2149, 4, 3, 7011], [41, 29, 41, 99, 8, 122, 51, 45, 36, 490, 174], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 436, 822, 455, 36, 128, 126, 27, 2, 436, 822, 455, 36, 128, 126], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [385, 2084, 4, 15, 3, 3934, 63, 8, 3349, 546, 4, 3, 225, 418, 1, 21, 63, 454, 1716, 3934], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 25, 33, 13, 11, 162, 20, 3961, 26, 14, 25, 33, 13, 11, 162, 20, 3961, 26], [54, 50, 2, 25, 13, 54, 50, 2, 25, 13], [39, 35, 50, 80, 25, 13, 11, 130, 3151, 14, 39, 35, 50, 80, 25, 13, 11, 130, 3151, 14], [3, 537, 18, 11499, 700, 5, 6, 8, 867, 3, 1251, 628, 414, 957, 110, 737, 164, 11500, 171, 11, 1, 181, 1836, 550, 5, 162, 1012, 1, 288, 106, 118, 3, 391, 171], [74, 119, 36, 1002, 2, 1002, 55, 50, 1, 1, 53, 6605, 66, 1414, 1415, 14, 119, 2124, 83, 506, 303, 777, 3129, 10, 3, 15, 74, 1002, 2, 3, 74, 1002, 1, 183, 14, 963, 83, 777, 331, 2, 3, 74, 1002, 748, 599, 172, 10, 3, 73, 74, 1002, 1, 1, 1, 135], [307, 1568, 18, 1003, 208, 83, 1, 1, 14, 1008, 386, 288, 2, 2205, 30, 23, 1, 49, 1098, 2, 485, 503, 1715, 11501, 3854, 66, 23, 209, 20, 1, 1, 1, 1, 1, 135], [27, 2, 122, 2, 459, 27, 2, 122, 2, 459], [218, 29, 5311, 3531, 2707, 14, 3038, 33, 1119, 4, 1696, 1, 1, 3514, 556, 135], [230, 422, 1296, 208, 83, 1, 1, 14, 1975, 422, 1296, 184, 106, 1008, 54, 2, 29, 11, 33, 724, 3836, 1, 1, 387, 1, 1, 342, 1079, 556, 714, 135], [1941, 29, 852, 6, 8, 45, 1941, 29, 852, 6, 8, 45, 1, 1381, 196, 3570], [809, 280, 11, 73, 3148, 148, 7, 809, 280, 11, 73, 3148, 11502, 11503, 11504, 11505], [54, 15, 29, 2, 2952, 7012, 589, 52, 26, 26, 26, 26, 585, 165, 26, 7, 26, 322, 28, 59, 18, 28, 290, 3, 31, 4662, 482, 252, 3, 28, 219, 62, 63, 45, 30, 2952, 7012, 589, 896, 3, 31, 54, 29, 2, 3, 252, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 163, 269, 29, 3, 179, 53, 23, 165, 28, 11506], [193, 30, 1432, 3862, 3863, 193, 30, 1432, 3862, 3863], [3, 412, 733, 18, 3, 87, 675, 273, 89, 8, 134, 3, 412, 733, 18, 3, 87, 675, 273, 89, 8, 134], [7013, 1936, 7014, 2438, 1504, 3633, 7015, 86, 857, 2373, 7013, 1936, 7014, 2438, 1504, 3633, 7015], [363, 114, 28, 7016, 32, 208, 101, 363, 50, 2, 114, 96, 28, 32, 184, 32, 65, 141, 64, 11, 567, 420, 1498, 1239, 28, 7016, 2021, 2175, 2176, 24, 2022, 358, 1938, 862], [193, 30, 1250, 171, 7, 82, 20, 4401, 18, 11507, 55, 1518, 14, 11, 50, 30, 1250, 171, 7, 82, 20, 4272, 4401, 49, 178, 66, 86, 310, 599, 3831, 458, 1116, 1511, 5428, 5429, 1371, 220, 82, 220, 685, 24, 2079, 879, 1363, 988, 2567, 2925, 1137, 1138, 1082, 1141], [4847, 29, 102, 11, 674, 101, 111, 2600, 1, 1, 674, 101, 99, 295, 1619, 7, 11508, 2, 373, 4847, 171, 601, 844, 39, 35, 269, 3, 29, 2426, 2, 6731, 1192, 10, 283, 57, 1, 1, 96, 6, 3, 4847, 29, 993, 275, 3, 29, 2426, 2, 911, 1, 1, 48, 2944, 505, 1881, 11509, 501, 11510, 3921, 1, 1, 270, 80, 253, 746, 588, 1663, 68, 35, 269, 3, 29, 6985, 66, 569, 6955], [1283, 1334, 959, 1267, 64, 1283, 1334, 959, 1267, 64], [87, 1568, 576, 110, 274, 33, 13, 192, 3, 13, 120, 112, 276, 3, 87, 1568, 9, 345, 507, 2351, 30, 3, 73, 1664, 30, 3, 376, 13, 37, 71, 3, 691, 3, 13, 62, 3, 401, 649, 2, 43, 385], [29, 11, 7017, 7018, 2, 812, 111, 1730, 14, 583, 29, 2, 7017, 7018, 36, 674, 11511, 24, 2], [474, 1301, 78, 637, 31, 53, 332, 163, 57, 47, 91, 72, 31, 30, 1301, 78, 637, 7, 183, 11512, 78, 45, 53, 613, 1, 14, 183, 366, 12, 3, 15, 853, 448, 2309, 498, 10, 1301, 78, 11513], [1559, 981, 1980, 30, 15, 482, 976, 36, 113, 2, 113, 7019, 7020, 181, 1, 124, 1, 291, 292, 1, 7021, 7022, 2565, 1, 4848, 981, 1980, 976, 36, 113, 2, 113, 1, 1, 55, 1, 1, 1, 185, 35, 14, 386, 166, 288, 2, 1559, 981, 1980, 30, 15, 482, 976, 36, 113, 2, 113, 47, 42, 8, 84, 2, 106, 23], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [28, 4821, 4822, 97, 189, 457, 7023, 77, 18, 4474, 77, 7024, 172, 180, 118, 3, 722, 367, 103, 67, 180, 65, 567, 165, 193, 1, 3, 385, 349, 159, 6, 806, 11514, 11515, 18, 1, 506, 264, 43, 493, 1, 4, 1275, 151, 264, 43, 11516, 53, 506, 11, 911, 6, 127, 7, 3, 1338, 32, 89, 8, 884, 98, 456, 1, 742, 351, 3, 136, 44, 83, 11517, 18, 23, 113, 330, 3, 193, 99, 118, 181, 11, 2070, 30, 3, 568, 448, 65, 1766, 23, 31, 99, 206, 21, 53, 754, 53, 38, 3, 181], [877, 89, 8, 861, 873, 98, 118, 886, 1054, 167, 30, 9, 95, 10, 4738, 877, 89, 8, 861, 873, 98, 118, 886, 1054, 167, 30, 9, 95, 10, 4738], [877, 89, 8, 873, 98, 861, 351, 886, 1054, 167, 2498, 877, 89, 8, 873, 98, 861, 351, 886, 1054, 167, 2498], [295, 255, 3015, 47, 247, 1080, 1053, 295, 255, 3015, 47, 247, 1080, 1053], [1227, 142, 477, 247, 1080, 1053, 1227, 142, 477, 247, 1080, 1053], [280, 73, 471, 736, 3944, 3945, 280, 73, 471, 736, 3944, 3945], [209, 174, 41, 31, 209, 174, 41, 31], [97, 199, 586, 2, 765, 4, 82, 20, 164, 37, 71, 97, 199, 586, 2, 765, 4, 82, 20, 164, 37, 71, 1, 21, 1493, 1067, 11, 28, 1, 11518, 29, 31], [295, 255, 7025, 7026, 7027, 295, 255, 7025, 7026, 7027], [60, 94, 11519, 1586, 76, 618, 75, 112, 49, 990, 48, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 990, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [119, 18, 142, 2, 28, 7028, 279, 140, 236, 98, 119, 14, 236, 98, 73, 142, 274, 2, 28, 7028], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [959, 1267, 32, 230, 9, 1568, 63, 3573], [9, 58, 133, 1384, 9, 58, 133, 39, 43, 2162], [57, 1004, 57, 1004], [15, 26, 602, 77, 31, 7, 13, 25, 15, 26, 602, 77, 31, 7, 13, 25, 28, 59, 7029], [1533, 14, 509, 23, 3016, 442, 2, 34, 9, 208, 162, 11520, 273, 9, 29, 2685, 556, 135], [39, 586, 504, 492, 18, 791, 36, 191, 217, 220, 304, 2, 134, 1362, 28, 63, 84, 2, 586, 504, 492, 36, 191, 217, 112, 28, 2593, 84, 849], [9, 29, 2, 3, 78, 63, 3573, 37, 71, 51, 11521, 30, 40], [898, 206, 544, 1066, 1], [27, 2, 100, 41, 217, 27, 2, 100, 41, 217], [1533, 14, 509, 23, 3016, 442, 2, 34, 9, 11522, 2208, 5708, 1043, 7030, 7031, 24, 4384, 879, 7, 616, 1793, 11523, 11524, 1112, 6527, 57, 24, 3865, 879, 7, 616, 1793, 1848, 1943, 1849, 1137, 1138, 1082, 1141, 1106, 188, 21, 404, 20, 181, 2133, 5927, 72, 7030, 7031, 2286, 14, 509, 23, 3016, 442, 2, 34, 9, 14, 106, 8, 853, 2, 62, 844, 23, 57, 199, 404, 20, 2, 100, 73, 34, 47, 763, 104, 1019, 14, 50, 166, 66, 1360, 3, 116, 2, 1682, 77, 23, 2029, 3016, 413, 581, 2, 509, 3, 3016, 107, 34, 9, 321, 66, 7032, 11525, 2029, 665, 6657, 11526, 7033, 4849, 6646, 5707, 11527, 11528, 11529, 413, 581, 2, 239, 229, 1119, 1547, 7032, 11530, 1119, 2136, 3884, 7034, 1504, 11531, 2545, 11532, 1052, 11533, 2545, 11534, 7035, 2545, 1759, 5706, 7033, 1043, 944, 2602, 533], [128, 126, 11, 191, 8, 500, 128, 126, 11, 191, 11535, 8, 509, 33, 871, 2, 500, 1, 1, 135], [197, 28, 97, 384, 181, 36, 961, 18, 7036, 7037, 445, 111, 1, 1, 1, 97, 384, 181, 36, 961, 18, 7036, 7037, 445, 711, 3962, 6, 674, 2681, 67, 165, 674, 11536, 384, 475, 36, 961, 14, 353], [809, 7, 57, 217, 280, 4558, 1, 893, 28, 46, 11, 96, 181, 222], [920, 444, 920, 444], [948, 400, 3875, 3, 148], [948, 400, 948, 11537, 10, 148], [2386, 700, 5, 5, 227, 5, 56, 5, 150], [225, 20, 8, 897, 111, 101, 1, 1, 186, 6, 8, 897, 72, 225, 20, 7, 97, 91, 143, 709, 424, 21, 6, 8, 897, 39, 35, 14, 353, 23, 31], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [378, 46, 31, 46, 31, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [33, 188, 92, 451, 4, 197, 39, 43, 267, 151, 6, 1967, 67, 1601, 56, 11538, 11539, 182, 213, 130, 155, 204, 117, 107, 214, 146, 33, 188, 92, 451, 4, 197, 39, 43, 267, 151, 6, 1967, 67, 1601], [218, 29, 2, 40, 749, 3254, 11540, 1279, 721, 7, 633, 1, 1, 271, 190], [337, 13, 25, 11, 7038, 337, 13, 25, 11, 7038], [40, 15, 412, 78, 78, 2448, 362, 200, 6, 75, 40, 15, 412, 78, 78, 2448, 362, 200, 6, 75], [3660, 3661, 1836, 365, 1364, 1910, 44, 11541, 1836, 6, 626, 4, 87, 448, 39, 391, 21, 180, 6, 8, 11542, 18, 24, 355, 2737, 7, 3754], [85, 6, 23, 3928, 181, 85, 6, 23, 3928, 181], [110, 137, 128, 126, 4, 88, 424, 42, 83, 33, 128, 126, 7039, 667, 30, 826, 526, 253, 7, 11543, 818, 33, 11544, 83, 33, 128, 126, 7039, 42, 667, 30, 826, 526, 253, 187, 8, 818, 33, 2267, 30, 444, 7, 97, 647, 423, 667, 233, 288, 6, 23, 285], [37, 10, 15, 37, 10, 15], [338, 13, 25, 338, 13, 25], [54, 2, 91, 83, 3526, 245, 54, 2, 91, 83, 3526, 245], [106, 8, 38, 29, 2, 553, 106, 8, 38, 29, 2, 553], [443, 1296, 176, 329, 303, 966, 57, 443, 1296, 176, 329, 303, 966, 57, 425, 3, 407, 609, 7, 399, 3, 74, 830, 5041, 5042, 176, 966, 695, 333, 492, 481, 51, 3, 28, 1639, 2, 176, 143, 57, 36, 3, 41, 21, 429, 443, 1296, 91, 377], [288, 2, 2195, 57, 867, 208, 83, 1, 1, 14, 39, 35, 3724, 288, 2, 2195, 57, 867, 23, 63, 285, 30, 33, 1256, 41, 394, 1, 1, 1, 30, 33, 628, 394, 41, 3, 3424, 867, 89, 8, 134, 68, 33, 142, 7, 41, 42, 1391, 75, 57, 99, 43, 331, 201, 51, 99, 715, 41, 1, 1, 1, 6, 151, 143, 2604, 2, 398, 23], [206, 1519, 2, 29, 11545, 111, 14, 183, 206, 1392, 11546, 11547, 1519, 2, 11548, 11549, 7, 4850, 4851, 183], [87, 46, 31, 55, 38, 141, 27, 2, 392, 158, 87, 11, 567, 540, 135, 3963, 3964, 854, 1495, 7040], [40, 369, 686, 140, 10, 78, 40, 6, 272, 198, 375, 4852, 201, 40, 369, 686, 140, 10, 78, 40, 6, 272, 198, 375, 4852, 201], [40, 1181, 501, 297, 875, 125, 422, 2061, 566, 78, 1353, 200, 317, 40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75, 1, 40, 1181, 501, 297, 875, 125, 566, 78, 1353, 200, 317], [175, 229, 10, 72, 181, 530, 49, 2568, 72, 181, 36, 21, 520, 65, 57, 5120, 7, 2682, 426, 189, 1466, 21, 65, 229, 24, 4785, 1238, 44, 49, 2568, 2, 91], [151, 428, 2656, 475, 969, 30, 309, 181, 102, 151, 428, 2656, 475, 969, 30, 309, 181, 102, 1, 1, 55, 1, 1, 151, 428, 2656, 475, 969, 30, 309, 181, 102, 1, 1, 14, 386], [15, 3315, 489, 10, 344, 47, 670, 207, 344, 18, 127, 264, 43, 67, 15, 6, 3262, 21, 489, 2, 21, 6, 897, 11550, 1778, 23, 127, 6, 197, 18, 532, 7, 6, 1278, 3911, 771, 18, 243, 2336, 7, 1081, 11551], [2115, 709, 252, 451, 210, 451, 210, 1, 337, 2398, 11, 709, 252, 51, 2115, 1224, 6, 670, 53, 2144, 1251, 1170, 995, 2144, 2, 43, 614, 44, 284, 243, 8, 1125, 143, 2115, 679, 2272, 6, 44, 68, 2115, 469, 6, 339, 62, 65, 2144, 52, 5550, 1382, 11, 2115, 709, 252, 1, 68, 47, 322, 2031, 709, 252, 3, 504, 864, 6, 808, 169, 435, 71, 207, 1170, 39, 398, 2031, 131, 67, 65, 2, 735, 3, 1036, 835, 103, 136, 257, 7, 276, 322, 39, 47, 398, 23], [211, 7041, 961, 4853, 308, 211, 7041, 106, 961, 4853, 11, 199, 18, 11552, 2410, 11553, 155], [28, 486, 2, 253, 68, 151, 63, 72, 94, 4, 90, 28, 486, 2, 253, 68, 151, 63, 72, 94, 4, 90], [5, 3965, 242, 22, 4, 5, 19, 12, 5, 3965, 242, 22, 4, 5, 19, 12], [5, 3965, 242, 22, 4, 5, 19, 12, 5, 3965, 242, 22, 4, 5, 19, 12], [5, 40, 2394, 22, 4, 5, 19, 12, 5, 40, 2394, 22, 4, 5, 19, 12], [3017, 172, 34, 336, 987, 680, 3017, 172, 34, 336, 987, 680], [3017, 172, 34, 336, 987, 680, 3017, 172, 34, 336, 987, 680], [3017, 172, 34, 336, 987, 680, 3017, 172, 34, 336, 987, 680], [499, 83, 460, 10, 13, 120, 499, 83, 460, 10, 13, 120], [27, 2, 100, 2262, 36, 82, 20, 51, 405, 2262, 36, 82, 20, 96, 37, 1990, 1, 1, 312, 1, 11554, 2262, 36, 15, 52, 1, 1, 3405, 37], [97, 118, 29, 2, 57, 179, 31, 53, 576, 21, 486, 7, 833, 3, 31, 67, 251, 2, 134, 310, 7, 273, 97, 118, 158, 57], [27, 2, 95, 4, 2, 535, 27, 2, 95, 4, 2, 535], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [34, 70, 10, 258, 34, 70, 10, 258], [25, 3, 13, 11, 11555, 11556, 10, 165, 279, 140, 55, 1, 1, 14, 25, 13, 11, 28, 11557, 53, 390, 65, 1991, 21, 7, 1641, 97, 95, 158, 408, 587, 527, 14, 269, 11558, 30, 3, 73, 13], [34, 70, 965, 34, 70, 965], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [47, 42, 511, 27, 2, 644, 225, 20, 1193, 11, 461, 14, 1758, 288, 2, 2205, 47, 42, 511, 27, 2, 644, 225, 20, 1193, 11, 461, 14, 1758, 288, 2, 2205], [5, 40, 2394, 22, 4, 5, 19, 12, 5, 40, 2394, 22, 4, 5, 19, 12], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [812, 782, 365, 1364, 49, 3044, 2, 1382, 393, 532, 2073, 704, 33, 73, 812, 3, 56, 4, 3, 57, 196, 7042, 6, 626, 39, 21, 43, 5798, 2, 7042, 30, 6, 21, 285, 2, 119, 33, 13, 248, 2, 106, 23, 445, 4, 3, 220, 67, 21, 1449, 44, 21, 6, 1912, 246, 265, 2, 43, 84, 2, 29, 33, 812, 137, 140, 209, 174, 68, 21, 6, 285, 85, 246, 43, 3, 782, 131, 2, 43, 304, 246, 265, 2, 70, 33, 1466, 185, 35, 14, 386, 433, 23, 39, 43, 588], [28, 27, 2, 95, 1186, 404, 20, 1077, 11559, 56, 11560, 11561, 28, 6, 27, 2, 189, 404, 20, 1163], [20, 11562, 291, 292, 124, 11563, 6982, 291, 292, 11564, 11565, 11566, 11567, 243, 82, 20, 111, 14, 465, 294, 3, 377, 7, 893, 2334, 14, 129, 166, 251, 68, 35, 273, 6394, 143, 31], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [142, 5301, 166, 113, 271, 28, 7043, 7044, 65, 23, 31, 333, 1219, 45, 861, 21, 790, 601, 2, 8, 545, 38, 991, 567, 420, 2, 391, 44, 172, 68, 134, 10, 2623, 504, 21, 7, 6656, 21, 39, 100, 21, 251, 98, 38, 330, 2, 715, 3, 142, 7, 100, 333, 257, 2, 118, 2, 3, 11568, 23, 65, 942, 1633, 106, 35, 38, 143, 3543, 185, 335], [13, 25, 291, 292, 1, 124, 1, 1142, 1143, 1, 102, 2, 25, 130, 445, 368, 13, 11, 1, 111, 1, 1, 14, 119, 104, 13, 4], [199, 176, 114, 199, 176, 114], [307, 201, 3, 2585, 377, 42, 323, 98, 4, 33, 202, 460, 4, 88, 201, 3, 2585, 377, 42, 323, 98, 4, 33, 202, 460, 4, 88, 86], [40, 15, 26, 369, 686, 2570, 10, 78, 6, 272, 198, 375, 198, 178, 976, 40, 15, 26, 369, 686, 2570, 10, 78, 6, 272, 198, 375, 198, 178, 976], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 6, 2111, 783, 11, 13, 41, 6, 2111, 783, 11, 13], [27, 2, 552, 367, 4, 15, 27, 2, 552, 367, 4, 15], [535, 6, 64, 77, 535, 6, 64, 77], [32, 132, 32, 132], [279, 140, 140, 8, 1593, 279, 140, 140, 8, 1593], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 95, 4, 2, 87, 2563, 87, 1301, 287], [1700, 102, 11, 621, 519, 29, 55, 1, 330, 1493, 304, 3, 621, 519, 29, 52, 389, 310, 51, 670, 2289, 72, 982, 4, 2023, 460, 184, 356, 8, 3274, 30, 14, 114, 3, 163, 464, 39, 23, 43, 299, 2578, 39, 35, 14, 663], [1068, 616, 31, 473, 14, 485, 473, 28, 6, 496, 3, 37, 71, 96, 2, 14, 322, 441, 503, 151, 6, 9, 703, 117, 441, 503, 11, 23, 349, 4817, 6860, 207, 15, 264, 43, 11569, 660, 503, 11, 3, 349, 67, 21, 89, 8, 1242, 2, 43, 987, 207, 1, 1, 1, 689, 7045, 349, 350, 1224, 7046, 1224, 473, 107, 37, 252, 1, 113, 113, 14, 322, 441, 503], [211, 82, 20, 211, 82, 20], [3, 535, 191, 217, 97, 43, 244, 3, 535, 191, 217, 97, 43, 244], [168, 20, 11570, 4383, 11571, 11572, 455, 11573, 1052, 11574, 11575, 1019, 18, 3966, 7, 3966, 131, 511, 21, 6, 1912, 2, 322, 131, 18, 11576, 18, 3, 177, 3, 11577, 3966, 7, 3966, 1, 1, 179, 53, 34, 9], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [32, 164, 64, 10, 79, 32, 164, 64, 10, 79], [431, 549, 140, 13, 25, 431, 549, 140, 13, 25], [2051, 3323, 142, 75, 3, 223, 142, 4, 944, 2051, 3323, 6, 75], [186, 1001, 27, 2, 225, 20, 4657, 2090, 37, 1717, 996, 9, 996, 10, 359, 2090, 779, 96, 42, 8, 2336, 335, 2, 106, 21, 2450, 426, 2614, 684, 428, 3, 888, 103, 185, 8, 43, 1218, 996, 11, 888, 3, 438, 6, 8, 1673, 11, 888, 1, 1, 1, 1, 1, 1, 1, 1, 1, 54, 321, 389, 713, 591, 143, 498, 14, 129, 11578, 11579], [40, 474, 1227, 78, 1304, 1351, 362, 312, 371, 200, 6, 75, 40, 474, 1227, 78, 1304, 1351, 362, 312, 371, 200, 6, 75], [27, 2, 29, 254, 27, 2, 29, 254], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1831, 777, 4, 15, 1103, 99, 8, 1475, 158, 7047, 169, 1313, 606, 1222, 440, 44, 42, 147, 2, 373, 53, 1831, 5, 468, 98, 4, 3, 15, 1103, 284, 729, 35, 2, 100, 444, 7, 468, 3, 131, 6, 6007, 716, 7047, 1315, 98, 7, 9, 131, 429, 23, 187, 8, 4729, 599, 3, 606, 1078, 38, 534, 1105, 3200, 77, 18, 15, 7, 1105, 4, 257, 2, 91, 68, 44, 391, 3, 2942, 30, 9, 2732], [692, 20, 7048, 3337, 429, 53, 75, 4, 220, 692, 20, 7048, 3337, 429, 53, 75, 4, 220], [9, 133, 2, 3, 78, 9, 133, 2, 3, 78, 9, 29, 2, 824, 4, 190], [148, 2293, 148, 2293], [759, 759, 24, 24, 168, 3967, 3968, 29, 277, 6, 75, 112, 12, 49, 105, 10, 1348, 759, 24, 24, 168, 3967, 3968, 29, 277, 6, 75, 112, 12, 49, 105, 10], [78, 11, 1349, 218, 4, 190, 6, 8, 178, 40, 1349, 6, 8, 178, 1, 6, 151, 42, 73, 78, 56, 11, 190, 62, 355, 72, 58, 31, 1, 51, 185, 23, 43, 1766], [3309, 133, 2, 1954, 175, 6, 75, 10, 266, 3018, 3309, 133, 2, 1954, 175, 6, 75, 10, 266, 3018], [402, 127, 455, 11, 3969, 6, 1198, 10, 1221, 249, 55, 1, 151, 6, 402, 127, 455, 11, 3969, 1198, 10, 1221, 249, 14, 91, 772], [395, 8, 45, 148, 37, 9, 108, 430, 37, 142, 56, 11580, 200, 1018, 11581, 86], [128, 126, 6, 8, 3970, 128, 126, 6, 8, 3970], [218, 29, 111, 14, 118, 11582, 11583, 28, 59, 11584, 29, 2, 96, 218, 271, 40, 749, 3448, 4211, 2301, 173, 40, 749, 3448, 4211, 2301, 30, 1156], [736, 492, 7049, 14, 736, 492, 7049, 51, 110, 176, 11585, 1421, 1211, 4, 492, 21, 6, 2333, 3664, 201], [266, 307, 102, 4553, 101, 119, 251, 1228, 225, 20, 689, 196, 18, 149, 11586, 36, 190, 2, 1046, 385, 196, 10, 1228, 225, 418, 11, 11587, 676, 1, 720, 313, 1, 1, 1228, 5046, 225, 418, 11, 149, 676, 176, 385, 689, 196, 184, 1206, 3133, 1600, 37, 30, 738, 4224, 1, 11588, 149, 676, 196, 2, 24, 11589, 879, 11590, 190, 310, 1, 1, 14, 11591, 3698, 116, 18, 119, 4, 26, 52, 11592], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [8, 84, 2, 504, 287, 10, 40, 8, 84, 2, 504, 287, 10, 40, 151, 428, 260, 440, 2, 43, 1071], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [76, 8, 1733, 13, 55, 1, 1, 49, 27, 2, 46, 76, 1, 21, 323, 28, 56, 7, 13, 8, 3896, 21, 6, 8, 1733, 33, 628, 13, 1, 1, 425, 3, 13, 7, 21, 6, 1520, 1, 1, 14, 50, 80, 2, 353, 3, 31, 1, 1, 30], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362, 40, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362, 1027, 907, 2100, 67, 336], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [152, 319, 58, 94, 12, 190, 7050, 190, 85, 6, 3, 31, 11593, 58, 94, 12, 190, 48, 7050, 190, 83, 58, 1123, 1161, 279, 140, 368, 7, 3, 86, 107, 11, 533, 1348, 42, 1321, 12, 3, 1127, 4615, 3101, 4, 3, 11594, 18, 3, 48, 65, 1821, 3, 31, 738, 3927, 65, 141, 1376, 169, 3, 2435, 63, 2500, 7, 368, 42, 1027, 2, 43, 1368, 12, 49, 1547, 51, 187, 21, 170, 49, 1547, 85, 6, 3, 3698, 116, 2, 4162, 1700, 12, 23, 116, 448, 7, 85, 42, 952, 83, 2504, 7, 155, 1123, 1161, 214, 368, 12, 3, 48, 42, 952, 42, 151, 143, 1150, 7051, 9, 7051, 178, 12, 3, 1127, 85, 6, 3, 1206, 5339, 4615, 3101, 498, 188, 200, 668, 4854, 4855, 470, 65, 141, 2162, 4, 127, 2, 269, 316, 5783, 1094, 2, 35, 23, 470, 6, 100, 2, 83, 191, 1248, 11595, 53, 613, 53, 21, 125, 4854, 4855, 470, 99, 43, 100, 12, 49, 1547, 4854, 4855, 470], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [9, 29, 2, 11596, 55, 38, 9, 6065, 2, 553, 1, 1, 54, 50], [238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 6, 75, 238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 6, 75], [29, 2, 58, 824, 55, 1, 1, 112, 110, 274, 33, 13, 110, 38, 9, 29, 2, 3, 58, 824, 1, 76, 2566, 134, 861, 1, 1, 781, 35, 11, 104, 295, 1, 1, 1, 135, 750], [46, 37, 55, 1, 1, 51, 637, 4, 30, 3, 13, 125, 20, 13, 120, 33, 32, 63, 230, 257, 1, 14, 1040, 257, 7, 72, 376, 13, 2, 95, 4, 1, 110, 63, 8, 614, 184, 13, 110, 264, 199, 1, 1, 135, 750], [34, 70, 258, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 3110, 3111, 1, 111, 1, 2273, 2274, 1, 55, 11597], [47, 54, 2, 119, 3, 1836, 11, 7052, 7053, 4, 41, 2, 160, 120, 39, 35, 106, 23, 47, 54, 2, 119, 3, 1836, 11, 7052, 7053, 4, 41, 2, 160, 120, 39, 35, 106, 23], [417, 20, 1084, 520, 55, 1, 781, 35, 255, 104, 2833, 1, 110, 355, 248, 67, 21, 2566, 134, 1, 110, 248, 30, 3, 179, 691, 7, 13, 44, 110, 199, 1, 110, 183, 248, 13, 1102, 53, 4856, 4857, 2291, 1, 184, 13, 264, 110, 199, 1, 1, 1, 11598, 11599, 135, 750], [31, 30, 692, 20, 111, 1, 1, 49, 8, 84, 2, 46, 158, 692, 20, 580, 7, 183, 21, 6, 8, 178, 10, 3, 459, 11, 80], [349, 4, 11, 2757, 1927, 2, 4773, 601, 158, 1695, 2433, 47, 42, 290, 72, 31, 30, 1023, 36, 2757, 770, 36, 165, 1499, 2, 113, 1, 343, 2335, 284, 42, 4, 67, 465, 2, 1695, 2433, 53, 3, 6, 8, 727, 10, 3, 660, 127, 1, 3, 11600, 1209, 444, 158, 161, 1695, 2433, 1499, 1, 1, 1231, 42, 186, 11, 1574, 1, 1, 185, 35, 363, 114, 424, 3, 349, 89, 8, 465, 2, 2624, 2433, 271, 456, 1, 1, 363, 574, 2, 4553, 101], [7054, 173, 6, 8, 3970, 53, 3, 506, 3599, 2, 100, 30, 6, 274, 7054, 173, 6, 8, 3970, 53, 3, 506, 3599, 2, 100, 30, 6, 274], [1658, 2699, 1658, 2699], [123, 342, 76, 1047, 2866, 1080, 1053, 123, 342, 76, 1047, 2866, 1080, 1053], [206, 28, 7055, 7056, 7057, 2, 226, 159, 2859, 206, 28, 7055, 7056, 7057, 2, 226, 159, 2859], [9, 57, 11601, 169, 79, 70, 10, 33, 7058, 55, 1, 1, 576, 430, 3, 73, 79, 70, 10, 33, 7058, 7, 172, 3, 245, 42, 8, 1996, 1, 1, 99, 43, 178, 4, 3, 1364, 355, 4, 732, 35, 54, 80, 1, 1, 135], [193, 30, 1481, 1764, 3551, 3552, 193, 30, 1481, 1764, 3551, 3552], [149, 127, 2411, 341, 55, 21, 1, 1, 14, 114, 424, 3, 52, 2582, 11602, 341], [104, 24, 621, 32, 871, 288, 39, 110, 132, 3, 11603, 1, 1, 30, 450, 750, 2395], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [8, 84, 2, 100, 1903, 111, 21, 1730, 1, 1, 49, 8, 84, 2, 100, 1903, 11604, 51, 1098, 2, 736, 151, 6, 72, 37, 71, 169, 1603, 10, 736, 14, 50], [620, 342, 1460, 20, 3872, 3873, 620, 342, 1460, 20, 3872, 3873], [193, 30, 1432, 3971, 3972, 193, 30, 1432, 3971, 3972], [193, 30, 566, 2171, 2172, 193, 30, 566, 2171, 2172], [37, 95, 10, 76, 78, 55, 1, 39, 8, 95, 4, 10, 76, 78, 14, 25, 33, 13], [102, 11, 29, 2, 78, 40, 7, 40, 11605, 11606, 7, 994, 30, 3076, 2, 34, 9, 38, 268, 72, 29, 36, 299, 101, 67, 51, 100, 131, 2066, 220, 496, 72, 37, 53, 163, 2, 23, 439, 38, 425, 30, 7009, 4858, 908, 11, 686, 11607, 7, 3, 131, 2066, 6, 45, 494, 4, 283, 908, 2069, 102, 525, 12, 72, 1131, 53, 23, 29, 6, 275, 11, 33, 3010, 2, 161, 6474, 632, 185, 35, 14, 50, 10, 23, 102], [34, 70, 10, 34, 9, 36, 7059, 7060, 34, 70, 10, 34, 9, 36, 7059, 7060], [14, 1044, 536, 36, 149, 127, 2, 4622, 536, 249, 673, 14, 1044, 536, 36, 149, 127, 2, 4622, 536, 249, 673, 311, 2, 1378, 6, 8, 1642, 2, 106, 536, 1980, 308, 50, 7, 386, 251, 2, 166, 510], [7061, 7062, 492, 287, 97, 43, 727, 7061, 7062, 492, 173, 97, 43, 727, 492, 173, 97, 43, 350], [32, 602, 77, 226, 32, 602, 77, 226], [82, 20, 191, 217, 76, 7, 82, 20, 31, 82, 20, 191, 217, 76, 7, 82, 20, 31], [82, 20, 3556, 82, 20, 3556], [41, 6, 1761, 11, 224, 257, 7, 257, 41, 6, 1761, 11, 224, 257, 7, 257], [54, 104, 295, 55, 349, 9, 39, 8, 199, 4, 457, 14, 50, 11608, 11609, 1388, 431, 1764, 181, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [340, 11, 24, 621, 31, 4, 358, 622, 203, 21, 1, 1, 14, 308, 50, 353, 23, 34, 257, 340, 11, 24, 621, 343, 2153, 14, 386, 3, 1340, 2, 398, 21, 1, 66, 3, 986, 14, 326, 163, 340, 1357, 4, 358, 174, 44, 4859, 2507, 3973, 2507, 195, 393, 11610, 4, 174, 1, 14, 308, 11611, 68, 54, 1357, 119, 11, 39, 114, 165, 3832, 30, 437, 155, 153, 69], [268, 121, 2204, 2752, 63, 2122, 10, 165, 943, 7, 659, 268, 121, 2204, 2752, 63, 2122, 10, 165, 943, 7, 659], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [503, 37, 748, 981, 1211, 7, 461, 4, 26, 307, 208, 101, 1, 1, 4, 15, 26, 1670, 47, 38, 451, 684, 748, 981, 1211, 7, 461, 11, 461, 9, 1, 461, 9, 1, 1, 461, 441, 503, 1, 1, 461, 1224, 1, 1, 461, 503, 1, 1, 981, 1211, 503, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1834, 461, 503, 7, 981, 1211, 503, 42, 3, 179, 503, 67, 261, 451, 1507, 6, 8, 1, 14, 50, 2, 38, 114, 3, 709], [32, 64, 77, 13, 562, 32, 64, 77, 13, 562], [9, 466, 36, 165, 943, 9, 466, 36, 165, 943], [15, 46, 32, 6, 64, 1288, 2, 132, 15, 46, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [57, 196, 8, 1694, 98, 1437, 57, 196, 8, 1694, 98, 1437], [246, 35, 14, 50, 119, 3, 57, 18, 731, 319, 11, 117, 2, 1620, 200, 49, 291, 292, 4848, 55, 50, 246, 35, 14, 50, 119, 3, 57, 18, 731, 319, 11, 117, 2, 11612, 11613, 117, 2658, 358, 1620, 101], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [363, 50, 2, 189, 186, 263, 11, 473, 208, 21, 1, 1, 246, 35, 363, 50, 2, 189, 186, 263, 11, 473, 11, 829, 37, 47, 27, 2, 189, 21, 307, 11, 113], [203, 2729, 128, 126, 248, 405, 822, 10, 33, 86, 7, 21, 664, 2, 479, 80, 2, 528, 23, 262, 10, 33, 86, 6, 44, 837], [209, 333, 173, 8, 405, 37, 7063, 239, 173, 1315, 209, 333, 173, 8, 405, 37, 7063, 239, 173, 1315, 1, 267, 2, 3, 28, 52, 137, 487, 1, 4358, 3, 11614, 239, 765, 1, 396, 328, 44, 180, 63, 84, 2, 11615, 3, 333, 287, 172, 1, 31, 321], [23, 334, 185, 8, 95, 4, 2, 33, 142, 207, 14, 602, 77, 33, 142, 23, 334, 185, 8, 95, 4, 2, 33, 142, 207, 14, 602, 77, 33, 142, 1, 59, 11616, 1, 2152, 11617], [28, 27, 2, 3222, 1280, 1068, 28, 27, 2, 3222, 1280, 1068, 1, 635, 3, 28, 2, 1391, 75, 3, 115, 11, 3213, 7, 715, 3, 108, 1, 825, 58, 7, 1949, 314, 7, 1805, 3, 1280, 1068, 133, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [874, 2080, 1795, 91, 296, 816, 55, 526, 1688, 33, 142, 65, 1606, 3, 73, 874, 2080, 1795, 91, 296, 264, 43, 2562, 989, 3, 268, 3, 57, 393, 21, 3116, 713, 1311], [11618, 11619, 57, 258, 110, 330, 11620, 245, 357, 11621, 2, 1619, 7, 21, 63, 1157, 273, 38, 245, 357, 331, 2, 2391, 924, 18, 1619, 7, 54, 283, 245, 25, 98, 4, 33, 41, 1636, 1637, 149, 120, 1338], [5, 5, 327, 345, 467, 858, 2093, 7, 2690, 5, 5, 22, 4, 5, 19, 12], [15, 46, 26, 346, 15, 46, 26, 346, 1, 267, 2, 3, 28, 52, 137, 487, 1, 1593, 3, 15, 26, 10, 3, 28, 115, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [15, 26, 32, 132, 15, 26, 32, 132], [4774, 11622, 111, 1, 1, 47, 102, 35, 2, 269, 3, 222, 295, 2, 11623, 361, 448, 6, 3734, 724, 295, 11, 4774, 2092, 12, 1535, 1913], [27, 2, 29, 149, 7, 1148, 681, 27, 2, 29, 149, 7, 1148, 681], [87, 167, 818, 31, 51, 1949, 33, 167, 3, 165, 568, 6, 201, 697, 33, 870, 37, 7, 1896, 167, 1259, 583, 444, 29, 2, 33, 348, 3, 239, 664, 14, 386, 288, 2, 391, 53, 106, 8, 479, 2, 583, 1518, 29, 2, 33, 115, 4, 127, 2, 38, 167, 818], [496, 3, 177, 319, 4, 15, 26, 33, 1103, 6, 357, 11624, 30, 319, 18, 721, 37, 261, 1242, 2, 43, 442, 2, 596, 687, 557, 33, 1077, 6, 11625, 30, 72, 557, 482, 91, 163, 464], [5902, 2287, 822, 102, 455, 4, 128, 126, 111, 151, 118, 3, 177, 37, 51, 250, 2, 436, 23, 102, 39, 35, 14, 366, 158, 23, 11, 80, 2914], [61, 94, 3517, 48, 6, 531, 75, 12, 124, 105, 10, 9, 81, 60, 11, 3, 48, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 463, 41, 27, 2, 463, 41], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [339, 121, 9, 107, 9, 432, 20, 339, 121, 9, 107, 9, 432, 20], [15, 474, 119, 1877, 113, 14, 119, 4, 2130, 3, 249, 96, 12, 113, 1, 1, 36, 2], [71, 40, 24, 144, 6, 267, 6, 8, 267, 268, 260, 20, 559, 12, 124, 10, 105, 1, 1, 40, 24, 144, 6, 267, 6, 8, 267], [223, 868, 1747, 1367, 55, 54, 50, 164, 33, 86, 2694, 30, 57, 7, 87, 14, 91, 3, 163], [536, 660, 127, 684, 780, 7, 660, 780, 28, 6, 1426, 2, 189, 536, 660, 127, 4, 15, 11, 3, 177, 11626, 7, 6, 496, 3, 684, 96, 1, 1, 689, 7045, 349, 350, 1224, 7046, 1224, 473, 107, 37, 252, 1, 113, 113, 37, 4, 441, 503, 2084, 438, 14, 391, 1, 113, 113, 14, 322, 441, 503, 1, 1, 185, 612, 14, 485, 3, 1345, 4317, 7, 780, 2, 91, 424, 3, 684, 42, 357, 268, 66, 3, 1388, 897, 3, 473, 72, 703, 117, 441, 503, 4817, 11627, 1169, 11, 207, 151, 264, 43, 9, 37, 9, 703, 117, 441, 503, 1169, 11, 207, 3, 52, 264, 456, 11628, 503], [15, 46, 37, 71, 37, 71, 1449, 3, 1832, 993, 89, 8, 1196], [97, 118, 29, 2, 57, 2184, 112, 576, 356, 27, 2, 118, 10, 130, 57, 1834, 465, 10, 3, 7007, 490, 347, 276, 465, 2, 33, 11629, 2, 433, 3, 57, 347, 6, 21, 790, 590, 7, 542, 465, 2, 3, 57, 347], [1922, 108, 103, 609, 36, 2, 7, 52, 1922, 108, 103, 609, 36, 2, 7, 52], [128, 126, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [15, 26, 32, 132, 15, 26, 32, 132], [3, 179, 349, 63, 1751, 4, 451, 661, 3307, 452, 349, 367, 11630, 249, 1510, 47, 54, 2, 320, 241, 349, 2, 3, 1760, 11, 1358, 661, 450, 18, 73, 3120, 2, 24, 4, 23, 732, 51, 47, 331, 3, 249, 2, 3, 415, 69, 3, 52, 410, 451, 661, 11631, 197, 12, 113, 113, 7, 517, 12, 113, 113, 411, 18, 23, 123, 47, 97, 189, 11632, 875, 3223, 7, 47, 97, 2653, 3, 11633], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [499, 15, 13, 499, 15, 13], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [28, 486, 4, 11, 72, 70, 28, 486, 4, 11, 72, 70], [46, 13, 343, 307, 11, 3815, 55, 1, 1, 246, 265, 46, 7, 13, 11, 161, 674, 36, 784, 1807, 11, 1059, 1, 1, 6, 21, 285, 2, 189, 21, 510], [54, 2, 189, 1965, 186, 310, 10, 207, 184, 6, 11634, 137, 3, 2324, 1329, 11635, 51, 897, 3, 186, 263, 21, 11636, 3, 391, 3364, 67, 51, 2129, 21, 4314, 2, 315, 3364, 163, 6, 6998, 18, 85, 470, 627, 7, 3364, 42, 524, 968, 219, 2, 43, 912, 2, 483, 117, 6, 4, 54], [1287, 455, 1699, 8, 45, 4, 409, 110, 38, 355, 6694, 3, 1287, 1626, 11, 600, 3857, 3858, 7, 2511, 4577, 42, 8, 45, 600, 1296, 39, 43, 336, 66, 1603, 3, 11637, 10, 3, 895, 4815, 276, 335, 1603, 3, 121, 2, 354, 2760, 91, 163, 183, 151, 6, 347, 4, 865, 304, 11, 205, 869, 21, 6, 183, 8, 45, 1, 1, 505, 24, 714, 7064, 205, 242, 7065, 7064, 1863], [142, 590, 2036, 809, 1259, 28, 6, 637, 4, 30, 283, 59, 7, 13, 142, 590, 2036, 809, 1259, 28, 6, 637, 4, 30, 283, 59, 7, 13, 1, 1, 28, 59, 7029], [15, 474, 82, 20, 447, 170, 37, 644, 46, 167, 496, 163, 37, 1, 1, 1923, 566, 2, 3, 3084, 394, 7, 771, 1, 584, 82, 20, 211, 36, 447, 131, 218, 7, 6680, 211, 273, 9, 465, 1, 1, 231, 46, 2192, 2, 26, 52, 30, 179, 59, 7, 13, 1, 1, 14, 129, 11638, 11639, 2, 118, 29, 2, 23, 73, 115], [74, 8, 11640, 77, 186, 1001, 111, 1, 1, 134, 12, 3, 90, 3685, 113, 51, 47, 322, 359, 4, 15, 284, 246, 820, 4860, 77, 3, 186, 263, 11, 241, 709, 284, 38, 706, 303, 11641, 11642, 7, 600, 42, 8, 496, 3, 186, 1001, 11, 3, 4725, 359, 38, 167, 554, 96, 44, 429, 44, 49, 236, 98, 11, 74, 629, 108, 2884, 39, 35, 50, 2, 410, 161, 186, 1001, 1437, 265, 2033], [27, 2, 515, 162, 20, 705, 27, 2, 515, 162, 20, 705], [110, 97, 100, 3360, 173, 44, 63, 163, 2, 72, 57, 1435, 736, 37, 110, 97, 100, 3360, 173, 44, 63, 163, 2, 72, 57, 1435, 736, 37], [27, 2, 91, 7066, 7067, 245, 27, 2, 91, 7066, 7067, 245], [378, 27, 2, 46, 2, 3, 459, 378, 27, 2, 46, 2, 3, 459], [1195, 32, 707, 1195, 32, 707], [189, 186, 263, 113, 113, 11643, 983, 37, 307, 5791, 50, 1, 1, 11644, 189, 186, 263, 11, 349, 2, 43, 1927, 2, 113, 1, 1, 14, 183, 1758, 424, 983, 89, 8, 134, 391, 7, 85, 11645, 6407, 42, 275, 1, 1, 3974, 1, 1, 1611, 85, 709, 1821, 23, 37, 187, 35, 663, 1, 1, 450], [34, 70, 965, 34, 70, 965], [27, 2, 46, 2, 382, 910, 27, 2, 46, 2, 382, 910], [155, 294, 92, 69, 172, 45, 55, 1, 1, 820, 118, 3, 37, 18, 1601, 1121, 516, 169, 290, 365, 58, 18, 92, 69], [27, 2, 528, 140, 27, 2, 528, 140], [29, 2, 610, 56, 1017, 2698, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1288, 791, 29, 4, 15, 11646, 11647], [13, 25, 291, 292, 1, 124, 1, 11648, 11649, 1, 1142, 1143, 1, 102, 2, 25, 130, 445, 368, 13, 11, 1, 111, 11650, 1, 1, 14, 119, 104, 13, 4], [34, 70, 10, 258, 34, 70, 10, 258], [243, 14, 509, 23, 3016, 442, 2, 34, 9, 65, 23, 141, 11651], [186, 1001, 65, 1014, 186, 30, 385, 186, 1258, 186, 1001, 65, 1014, 186, 30, 385, 186, 1258, 1, 1, 197, 18, 3, 2070, 1014, 472, 30, 11652, 1258, 673, 30, 249, 1, 67, 51, 3, 186, 263, 63, 727, 47, 3176, 44, 21, 429, 3, 11653, 1258, 53, 673, 924, 18, 673, 1, 15, 264, 8, 729, 23, 1, 151, 63, 1256, 450, 18, 31, 797, 34, 203], [27, 2, 95, 4, 2, 87, 27, 2, 95, 4, 2, 87], [738, 121, 396, 659, 169, 4861, 895, 738, 121, 396, 659, 169, 4861, 895], [41, 8, 545, 41, 8, 545], [140, 400, 140, 400], [3, 396, 59, 452, 10, 195, 564, 86, 89, 8, 452, 546, 4698, 4699, 124, 4379, 11654, 1570, 291, 292, 1145, 243, 564, 86, 50, 564, 14, 91, 4379, 102, 604, 4700, 4701, 4702, 2628, 120, 2889, 4795], [4172, 2, 206, 7068, 2279, 4172, 2, 206, 7068, 2279], [34, 9, 34, 70, 34, 9, 34, 70], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 1450, 31, 15, 1450, 31], [25, 3, 13, 11, 11655, 7069, 10, 15, 160, 1245, 10, 15, 26, 26, 479, 2, 25, 33, 13], [1734, 28, 32, 562, 7070, 7071, 1734, 28, 32, 562, 7070, 7071], [32, 132, 32, 132], [97, 100, 772, 4, 1191, 429, 1993, 167, 51, 405, 97, 100, 772, 4, 1191, 429, 1993, 167, 51, 405], [97, 29, 88, 97, 29, 88, 33, 129, 957, 6], [397, 792, 37, 10, 15, 397, 792, 37, 10, 15], [894, 2045, 11, 739, 1022, 894, 2045, 11, 739, 1022], [25, 3, 13, 11, 11656, 11657, 10, 15, 160, 15, 14, 132, 33, 15, 32, 253, 3, 13], [87, 99, 8, 270, 80, 392, 4, 530, 3, 196, 35, 3282, 6, 8, 860, 87, 99, 8, 270, 80, 392, 4, 530, 3, 196, 35, 3282, 6, 8, 860], [15, 26, 13, 25, 15, 26, 13, 25], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [28, 59, 64, 55, 1, 1, 185, 35, 14, 132, 28, 59, 11658, 11659, 11660, 1, 1, 161, 21, 4326, 97, 43, 2053], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [128, 126, 2644, 218, 584, 3467, 343, 7072, 83, 33, 131, 65, 141, 584, 516, 4, 3, 2644, 3, 3969, 101, 218, 65, 141, 2028, 584, 14, 876, 3, 3969, 218, 30, 3, 341, 18, 576, 68, 44, 507, 343, 7072, 135, 750, 11661, 11662, 149, 685, 181, 24, 2079, 879, 191, 1849, 2567, 2925, 1137, 1138, 1082, 1141, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 4776, 4, 2826, 30, 1135, 1512, 3, 572, 62, 2476, 18, 23, 446, 66, 1931, 6, 2349, 3, 1295, 6, 8, 3, 679, 1295, 6, 1139, 6999, 68, 35, 268, 23, 71, 66, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 847, 22, 4, 5, 19, 12, 5, 26, 847, 22, 4, 5, 19, 12], [54, 15, 29, 2, 28, 2891, 11, 15, 439, 52, 26, 26, 26, 26, 585, 165, 26, 7, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 2891, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 474, 949, 474, 119, 4210, 3975, 1, 1, 896, 3, 31, 39, 35, 14, 189, 72, 28, 32, 11, 3, 15, 439, 4, 26, 7, 26, 14, 236, 3, 28, 103, 2, 2275, 112, 15, 99, 54, 191, 217, 29, 2, 189, 1392, 14, 100, 3, 11663, 7, 352, 133, 183, 284, 246, 54, 72, 202, 675, 32, 7, 14, 583, 29, 2, 2402, 474, 949, 474, 119, 4210, 3975, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 415, 15, 28, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28, 4662], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 373, 5, 2637, 3236, 1333, 173, 14, 574, 34, 2, 7073, 7074, 55, 1, 1, 185, 35, 14, 373, 3, 5, 2637, 3236, 1333, 173], [5430, 24, 4, 15, 8, 1642, 10, 999, 7, 28, 39, 9, 345, 312, 999, 14, 525, 4, 4741, 23], [1921, 249, 55, 21, 200, 33, 120, 4862, 219, 2, 844, 3, 3827, 3828, 83, 3, 666, 610, 42, 357, 350, 7, 2694, 2, 3, 3041, 53, 161, 1238, 1107, 11, 2809, 1150, 709, 23, 249, 6, 8, 323, 3, 2694, 791, 11664, 4862, 63, 8, 84, 2, 206, 3, 367, 107, 866, 14, 398, 23, 47, 54, 2, 844, 3, 1921, 11665, 2076, 1358, 11666, 4862], [15, 1245, 4863, 909, 116, 15, 101, 47, 54, 2, 70, 3, 171, 4863, 909, 116, 11, 15, 1245, 411, 18, 3, 73, 11667, 223, 923, 14, 91, 96, 6665, 36, 6502, 6503, 331, 2738, 2, 2617, 2618, 2587, 2588, 11668, 11669, 3878, 3879, 11670, 2348, 909, 3599, 4863, 909, 4178, 3, 11671, 755, 183, 43, 3939, 66, 3367, 2, 3, 2569, 107, 18, 3367, 1958, 2, 3, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 1931, 448, 42, 8, 3, 679, 1453, 6, 1139, 6463, 68, 35, 38, 268, 23, 446, 66, 1932, 14, 1026, 3, 689, 7, 173, 23, 71, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [32, 64, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 53, 4497, 258, 2641, 97, 989, 43, 825, 1, 991, 115, 11672], [29, 2, 2218, 314, 603, 960, 2486, 89, 8, 134, 29, 2, 2218, 314, 603, 960, 2486, 89, 8, 134], [11, 37, 71, 225, 20, 367, 273, 11673, 71, 39, 1816, 4, 252, 2063, 37, 71, 6, 225, 20, 367, 273, 11674, 71, 393, 461], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [119, 1936, 11675, 14, 1005, 3, 1936, 317, 18, 3, 11676, 753, 4, 3, 11677, 719, 1, 129, 11678, 11679], [29, 11680, 11, 2156, 11, 644, 981, 210, 365, 334, 1, 1, 14, 39, 35, 90, 29, 2, 1619, 7, 11681, 11682, 2, 747, 166, 2, 106, 3, 644, 981, 210, 11, 955, 2090, 4688, 11, 11683, 7, 11684, 11, 1619, 1, 1, 450], [41, 1315, 89, 8, 100, 41, 1315, 89, 8, 100], [60, 94, 1564, 24, 168, 2814, 1564, 856, 75, 112, 49, 990, 48, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 990, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 16, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 9, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 17, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [255, 870, 406, 255, 870, 406], [115, 10, 7075, 3108, 1800, 406, 348, 6, 115, 10, 7075, 3108, 1800, 406, 348, 6], [15, 26, 32, 64, 15, 26, 32, 64], [41, 6, 1761, 11, 13, 41, 6, 1761, 11, 13], [74, 89, 8, 134, 169, 175, 2970, 119, 74, 89, 8, 134, 169, 175, 2970, 119], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [2555, 2556, 406, 142, 255, 1136, 7076, 2555, 2556, 406, 142, 255, 1136, 7076], [1062, 11685, 317, 653, 11, 1062, 1087, 7, 415, 317, 11, 73, 564, 198], [28, 4821, 4822, 97, 189, 457, 7023, 77, 18, 4474, 77, 7024, 180, 118, 3, 37, 11686, 9, 178, 11, 11687, 52, 91, 163, 37, 891, 4, 457, 1, 11, 165, 195, 21, 507, 649, 2, 43, 829, 4, 283, 11688], [280, 142, 477, 1369, 1602, 280, 142, 477, 1369, 1602], [110, 54, 58, 3306, 11, 7077, 12, 2319, 55, 711, 6461, 1, 110, 54, 58, 3306, 11, 3, 7077, 12, 2319, 1, 7, 184, 7078, 2124, 267], [193, 30, 728, 381, 719, 2516, 2517, 193, 30, 728, 381, 719, 2516, 2517], [32, 1129, 8, 649, 10, 88, 110, 38, 31, 51, 335, 2, 189, 4793, 10, 88, 1093, 91, 143, 32, 56, 2015, 21, 45, 10, 122, 7, 82, 20, 14, 50, 2, 795, 23, 31], [1227, 31, 30, 3, 791, 917, 201, 492, 351, 2912, 7, 3035, 416, 7, 3203, 42, 8, 11689], [692, 20, 31, 208, 491, 3067, 1, 1, 49, 843, 31, 30, 692, 20, 3, 177, 71, 6, 323, 7, 21, 6, 8, 323, 4, 966, 392, 4, 212, 183, 1, 1, 308, 50, 80, 2, 353, 3, 31], [32, 64, 4, 226, 32, 64, 4, 226], [169, 811, 33, 46, 59, 13, 4, 13, 125, 20, 13, 7079, 184, 63, 2076, 991, 33, 52, 41, 6725, 56, 6214, 6215, 182, 213, 130, 155, 204, 117, 107, 214, 146, 169, 811, 33, 46, 59, 13, 4, 13, 125, 20, 13, 7079, 184, 63, 2076, 991, 33, 52, 41, 87, 6, 5768, 98, 30, 13, 102, 67, 8, 637, 4], [27, 2, 320, 62, 384, 57, 27, 2, 320, 62, 384, 57], [79, 32, 64, 79, 32, 64], [27, 2, 46, 158, 692, 20, 110, 49, 27, 2, 46, 2, 692, 20, 137, 966, 397, 212, 229], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 162, 3976, 22, 4, 5, 19, 12, 5, 162, 3976, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [27, 2, 100, 41, 27, 2, 100, 41], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [1853, 14, 4836, 3, 96, 779, 123, 12, 3, 1131, 52, 56, 1853, 28, 56, 11690, 123, 452, 8, 770, 10, 317, 52, 6, 164, 10, 7, 489, 11691, 135], [130, 174, 140, 38, 123, 1431, 29, 229, 7, 1000, 98, 435, 18, 142, 7080, 129, 86, 52, 79, 37, 891, 14, 622, 2, 377], [731, 319, 111, 21, 50, 1, 246, 35, 14, 50, 236, 3, 57, 18, 731, 319, 11, 117], [58, 94, 24, 168, 11692, 24, 2226, 856, 618, 9, 81, 112, 124, 990, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 17, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 990, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 9, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 11693, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 11694, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3447, 3108, 356, 115, 406, 1391, 75, 66, 1737, 7, 39, 9, 345, 170, 1, 14, 118, 21, 588, 66, 2749], [2384, 412, 89, 8, 199, 3, 349, 469, 10, 3, 455, 3, 179, 236, 18, 1164, 6, 969, 3613, 68, 2333, 3, 469, 339, 62, 2627, 143, 349], [8, 84, 2, 100, 1549, 925, 287, 55, 1, 1, 49, 8, 84, 2, 100, 1549, 925, 287, 10, 33, 115, 1, 611, 50], [7081, 90, 1575, 41, 187, 8, 421, 10, 116, 330, 2, 43, 2093, 559, 4, 260, 20, 112, 124, 105, 7081, 90, 1575, 41, 187, 8, 421, 10, 116, 330, 2, 43, 2093, 559, 4, 260, 20, 112, 124, 105], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 63, 327, 345, 467, 858, 5, 5, 22, 4, 5, 19, 12], [90, 65, 4864, 337, 13, 4865, 694, 351, 28, 1472, 22, 37, 97, 778, 160, 111, 83, 47, 330, 11695, 433, 826, 351, 28, 1472, 22, 37, 4844, 4845, 7003, 11696, 11697, 11698, 4864, 11699, 11700, 11701, 4864, 185, 35, 14, 114, 3, 1886, 1206, 7, 132, 3, 1577, 224, 207, 284, 39, 95, 158, 337, 7, 171, 160, 11, 7082, 47, 428, 84, 2, 118, 294, 2, 13, 125, 20, 7, 132, 3, 13, 180, 99, 335, 4, 2196, 2, 91, 68, 21, 507, 11, 3, 1515, 351, 22, 2, 1377, 13, 10, 202, 675, 37, 51, 47, 248, 2, 118, 158, 13, 125, 20, 21, 1756, 132, 11702, 13, 67, 47, 351, 3, 179, 37, 169, 858, 63, 201, 84, 2, 353, 4844, 4845, 13, 31, 389, 3, 591, 18, 3, 1481], [5, 162, 3976, 22, 4, 5, 19, 12, 5, 162, 3976, 22, 4, 5, 19, 12], [382, 886, 167, 37, 307, 382, 886, 167, 37, 28, 65, 248, 2, 2713, 7, 2003, 1042, 7, 715, 83, 3, 11703, 588, 50, 200, 1018, 11704, 928, 1018, 948, 671, 306], [27, 2, 515, 41, 27, 2, 515, 41], [417, 20, 347, 37, 417, 20, 347, 37], [187, 47, 320, 77, 1437, 15, 1313, 606, 56, 6849, 182, 213, 130, 155, 204, 117, 107, 214, 146, 187, 47, 320, 77, 1437, 15, 1313, 606], [58, 94, 361, 361, 24, 531, 75, 112, 124, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [76, 133, 210, 76, 133, 210, 1, 267, 2, 3, 28, 52, 137, 487, 1, 274, 3, 506, 213, 1, 635, 3, 396, 2, 397, 2, 3, 24, 76, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [235, 108, 453, 11, 3, 73, 383, 235, 108, 453, 11, 3, 73, 383], [7083, 1494, 4, 636, 1144, 328, 90, 113, 134, 314, 11705, 323, 4, 779, 469, 1, 1, 11, 797, 1, 1, 128, 126, 7083, 1494, 4, 636, 1144, 328, 11706, 59, 4866, 773, 2229, 4867, 4868, 59, 11707, 11708, 175, 6274, 3933], [4869, 2, 2536, 341, 559, 31, 4, 739, 1022, 3, 4869, 2, 2536, 341, 559, 6, 8, 3211, 546, 1, 1, 11, 797, 1, 1, 128, 126, 243, 4869, 2, 2536, 341, 11709, 59, 4866, 773, 2229, 4867, 4868, 59, 11710, 592, 845, 11711, 3933], [280, 116, 8, 3349, 861, 57, 36, 11712, 90, 10, 288, 1036, 420, 42, 3349, 4, 337, 1, 1, 4, 197, 698, 6850, 336, 77, 44, 337, 63, 137, 134, 314, 62, 2330, 672, 11713, 1935, 116, 36, 2084, 67, 4, 165, 1507, 21, 63, 8, 1, 1, 316, 222, 10, 347, 1, 1, 1, 128, 126, 243, 116, 11714, 4, 15, 11715, 59, 4866, 773, 2229, 4867, 4868, 59, 1328, 227, 1476, 3933], [188, 15, 88, 14, 663, 424, 3919, 3920, 223, 32, 4, 15, 88, 6, 8, 2369, 53, 72, 223, 188, 15, 88, 14, 663, 424, 3919, 3920, 223, 32, 4, 15, 88, 6, 8, 2369, 53, 72, 223, 14, 622, 2, 3, 1210, 4, 3, 163, 57, 11716, 11717, 6, 72, 223, 67, 408, 223, 32, 4, 15, 88, 6, 8, 1086, 68, 35, 412, 137, 1519, 6, 223, 35, 39, 201, 326, 408, 223, 32, 4, 15, 88, 68, 35, 526, 289, 1519, 6, 223], [39, 412, 134, 314, 4, 348, 469, 4, 7084, 1036, 1950, 1329, 15, 337, 1, 1, 47, 39, 412, 348, 923, 66, 3019, 134, 314, 923, 4, 3, 1000, 98, 767, 18, 348, 469, 23, 507, 4, 116, 93, 7, 1695, 1036, 67, 89, 8, 134, 4, 7084, 1950, 1329], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [97, 119, 4, 2304, 681, 55, 1, 21, 664, 526, 38, 29, 2, 119, 143, 1494, 4, 3, 2304, 681, 14, 485, 11, 3, 31, 53, 54, 2, 421, 23, 666, 7, 3339, 2, 1457, 1793, 924, 18, 11718, 1793], [25, 224, 11, 11719, 11720, 137, 13, 125, 20, 13, 25, 3], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [7085, 4169, 115, 4, 3, 7086, 7087, 99, 8, 170, 61, 6, 267, 67, 7088, 51, 864, 6, 7089, 7085, 4169, 115, 4, 3, 7086, 7087, 99, 8, 170, 61, 6, 267, 67, 7088, 51, 864, 6, 7089], [128, 126, 48, 3435, 55, 21, 50, 1, 1, 112, 3, 1097, 65, 1126, 3, 24, 14, 11721, 3, 3435, 18, 23, 7090, 2, 33, 56], [378, 27, 2, 100, 143, 287, 36, 128, 126, 4481, 4482, 65, 1493, 141, 84, 2, 100, 143, 450, 18, 287, 36, 128, 126, 21, 790, 10, 783, 408, 11, 57, 196, 7, 13, 7, 516, 169, 1125, 21, 790, 770, 251], [97, 29, 2, 24, 128, 126, 208, 21, 1, 624, 97, 29, 2, 24, 128, 126, 62, 169, 3, 24, 128, 126, 347, 1223, 12, 339, 347, 18, 41, 174, 144, 53, 806, 96], [15, 127, 3047, 1505, 1778, 55, 1, 1, 14, 485, 3, 1224, 10, 3, 163, 127, 3047, 1, 4, 3, 1224, 3225, 3, 1505, 18, 1793, 6, 391, 1, 4, 3, 665, 469, 3, 1144, 6, 1793, 23, 6, 626, 1, 391, 3, 1224, 763, 2, 43, 1793, 4, 600, 3043], [27, 2, 463, 128, 126, 27, 2, 463, 128, 126], [361, 24, 4797, 60, 3167, 7091, 112, 12, 124, 990, 10, 48, 6, 202, 10, 640, 1526, 5657, 4, 4797, 229, 6778], [290, 2, 766, 3, 179, 1215, 2506, 567, 420, 14, 485, 3, 2529, 1329, 11, 1456, 11722, 988, 18, 149, 12, 420, 49, 290, 2, 766, 3, 179, 1215, 2506, 2, 420, 4, 623, 23, 264, 8, 43, 1361], [27, 2, 46, 2, 3, 857, 148, 53, 558, 323, 9, 133, 2, 78, 27, 2, 46, 2, 3, 857, 148, 53, 558, 323, 9, 133, 2, 78], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [32, 64, 32, 64], [87, 1121, 6, 3370, 456, 11723, 7, 2722, 4, 251, 9, 2496, 445, 94, 36, 78, 591, 58, 101, 1, 1, 308, 366, 158, 3, 96, 31, 1, 1, 87, 1121, 6, 3370, 456, 392, 77, 7, 2722, 4, 251, 9, 2496, 445, 94, 36, 174, 78, 591, 1, 1, 31, 6, 30, 443, 28, 308, 737, 3, 34, 305, 53, 2358, 1362, 3, 31, 6, 321], [27, 29, 441, 1467, 55, 1, 1, 49, 27, 2, 29, 3, 96, 308, 106, 3, 807], [101, 2240, 6, 8, 1977, 2501, 1638, 3, 11724, 2240, 6, 2376, 11725, 3930, 1253, 2947, 1638, 51, 21, 264, 43, 1126, 3930, 207, 44, 21, 2037, 764, 4, 72, 1054, 764, 236, 68, 151, 6, 9, 1253, 1638, 11726, 3, 648, 1538, 18, 875, 3223, 1324], [11727, 97, 95, 158, 134, 859, 55, 1, 11728, 11729, 11, 567, 540, 97, 95, 158, 408, 1427, 411, 279, 140, 530, 21, 6, 304, 67, 89, 8, 289, 66, 1739, 464, 4, 3, 377, 3, 859, 390, 1007, 2, 95, 158, 6, 11730, 7, 390, 330, 820, 304, 14, 386], [528, 791, 466, 6, 37, 516, 1243, 11731, 57, 6, 268, 51, 320, 3, 1019, 2, 528, 791, 820, 118, 853, 57, 8, 331, 67, 273, 118, 3, 57, 11, 698, 96, 1019, 1, 1, 1, 181, 7092, 1, 1, 149, 1193, 1, 186, 1193, 1, 888, 1193, 1, 457, 1193, 1, 2844, 3184, 11732, 1, 4267, 791, 1, 1193, 11733, 1, 182, 1, 528, 1354, 1, 1, 1, 1, 3, 367, 107, 65, 1833, 349, 4, 21, 184, 65, 492, 791, 51, 320, 3, 693, 1019, 6719, 21, 2633, 57, 7, 21, 4870, 2633, 3, 57, 494, 716, 3, 853, 118, 36, 15, 820, 6, 57, 8, 331, 184, 89, 8, 410, 4511, 53, 106, 118, 3, 57, 1, 1429, 3, 1452, 18, 173, 2, 2503, 48, 507, 494, 21, 6, 355, 8, 2950, 860, 71, 516, 51, 21, 1254, 320, 3, 57], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [58, 94, 5989, 1277, 48, 6, 531, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [60, 94, 90, 6904, 2687, 48, 1285, 60, 6, 75, 112, 12, 49, 105, 10, 640, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [245, 55, 54, 57, 32, 2818, 1157, 36, 33, 1640, 57, 7, 276, 73, 2538, 543, 219, 2, 43, 1157, 7093, 90, 3508, 7093, 90, 3508, 17, 7094, 2748, 17, 7094, 2748, 2538, 2, 43, 543], [60, 94, 1564, 596, 1846, 1222, 1285, 60, 6, 75, 112, 12, 49, 105, 10, 640, 60, 6, 98, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [11734, 2202, 3, 2202, 10, 3, 3857, 3858, 347, 42, 8, 11735, 10, 413, 151, 6, 6180, 11736, 44, 6, 3002, 2, 100, 98, 7, 468, 256, 505, 23, 6, 9, 345, 45, 1, 1, 347, 1, 1, 1, 1, 91, 464, 163], [15, 26, 13, 25, 15, 26, 13, 25], [193, 30, 76, 217, 55, 33, 4219, 1, 1, 110, 2185, 199, 161, 76, 1, 110, 351, 3, 177, 37, 891, 1, 1, 420, 23, 1, 1, 335, 2245, 1, 1, 691, 7, 13, 63, 837, 1, 14, 114, 21, 7, 320, 1, 1, 781, 35, 1, 1, 1343, 263, 30, 450, 750], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [1474, 29, 2, 6223, 3133, 260, 580, 781, 35, 4, 1596, 11737, 11738, 3977, 11739, 854, 2955, 1388], [28, 8, 84, 2, 122, 2, 254, 28, 8, 84, 2, 122, 2, 254], [102, 2, 25, 130, 445, 368, 13, 11, 291, 292, 1, 124, 1, 3376, 3377, 1, 1142, 1143, 1, 243, 2404, 102, 2, 25, 130, 445, 368, 13, 11, 1, 111, 3978, 1, 1, 14, 25, 104, 13, 4], [128, 126, 31, 128, 126, 31], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [102, 2, 25, 130, 445, 368, 13, 11, 291, 292, 1, 124, 1, 3376, 3377, 1, 1142, 1143, 1, 243, 2404, 102, 2, 25, 130, 445, 368, 13, 11, 1, 111, 3978, 1, 1, 14, 25, 104, 13, 4], [87, 497, 8, 45, 39, 410, 87, 121, 294, 33, 115, 39, 927, 444, 7, 284, 39, 927, 80], [397, 346, 4, 15, 56, 7095, 11740, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 31, 1031, 46, 46, 8, 178], [874, 140, 71, 111, 1, 14, 91, 163, 874, 71, 737, 164, 541, 116, 434, 33, 7096, 266, 10], [79, 32, 707, 79, 32, 707], [27, 2, 873, 52, 2, 79, 27, 2, 873, 52, 2, 79], [535, 13, 6, 8, 45, 535, 13, 6, 8, 45], [2237, 870, 6, 8, 45, 2237, 870, 6, 8, 45], [27, 2, 46, 887, 91, 27, 2, 46, 887, 91], [299, 523, 595, 439, 9, 1723, 209, 902, 209, 1265, 741, 597, 40, 439, 1084, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 318, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 72, 1056, 10, 23, 293, 1469, 863, 1469, 293, 247, 513, 723, 62, 1446, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1727, 725, 724, 222, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 2456, 1470, 2457, 2458, 2459, 2460, 2461, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 247, 741, 741, 56, 200, 247, 741, 741, 3000, 200, 247, 741, 741, 908, 200, 247, 130, 1265, 3001, 173, 2648, 256, 136, 10, 261, 1503, 7, 135, 3362, 39, 43, 336, 12, 3, 177, 1589, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 318, 1306, 11, 139, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 40, 221, 247, 301, 40, 4661, 301, 247, 133, 903, 318, 801, 139, 108, 136, 108, 138, 108, 56, 24, 318, 154, 24, 144, 95, 116, 12, 929, 354, 230, 800, 930, 904, 93, 578, 136, 905, 589, 59, 906, 634, 589, 59, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109], [4871, 2, 419, 4871, 2, 419], [338, 13, 25, 338, 13, 25], [432, 20, 994, 210, 51, 313, 229, 11741, 12, 90, 432, 20, 994, 210, 51, 313, 229, 1035, 12, 90], [32, 64, 77, 32, 64, 77], [339, 121, 533, 339, 121, 533], [27, 2, 122, 2, 340, 27, 2, 122, 2, 340], [317, 7097, 37, 317, 7097, 37], [24, 868, 383, 7098, 24, 868, 383, 7098], [130, 13, 25, 130, 13, 25], [1283, 1334, 13, 8, 45, 56, 5039, 5040, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 121, 510, 11742, 11743, 142, 6, 75, 9, 11744, 3294, 641, 758, 39, 43, 11745, 99, 38, 2, 1391, 75, 11746, 641, 804], [14, 118, 241, 1768, 11, 80, 14, 118, 241, 1768, 11, 80], [705, 6, 8, 45, 705, 6, 8, 45], [14, 114, 7099, 4, 3, 1843, 14, 114, 7099, 4, 3, 1843], [280, 29, 11, 309, 280, 29, 11, 309], [78, 3378, 190, 47, 42, 8, 84, 2, 29, 143, 287, 4, 218, 960, 2486, 12, 3, 73, 78, 78, 3378, 190, 47, 42, 8, 84, 2, 29, 143, 287, 4, 218, 960, 2486, 12, 3, 73, 78], [299, 523, 4, 285, 1879, 597, 221, 799, 7100, 221, 138, 221, 40, 6956, 314, 144, 301, 138, 301, 40, 799, 7100, 52, 56, 28, 56, 4307, 11747, 11748, 271, 2994, 953, 233, 9, 1094, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 93, 131, 442, 388, 93, 59, 93, 146, 502, 832, 4872, 832, 103, 252, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 7101, 7102, 144, 221, 138, 1057, 7103, 90, 133, 903, 977, 801, 832, 108, 136, 108, 138, 108, 56, 24, 318, 154, 24, 144, 95, 116, 12, 929, 354, 230, 800, 930, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 154, 502, 832, 103, 252, 36, 10, 238, 240], [78, 3378, 190, 11749, 11750, 11751, 9, 29, 2, 131, 10, 3, 78, 39, 2205, 117, 359], [15, 855, 729, 80, 2, 189, 72, 377, 2, 117, 32, 51, 250, 2, 552, 577, 11752, 1626, 2, 3, 117, 32, 4, 15, 49, 8, 84, 2, 29, 3, 58, 254, 284, 42, 2106, 10, 7, 49, 496, 72, 37, 71, 38, 163, 3, 71, 2, 23, 439, 49, 250, 2, 29, 3, 254], [28, 65, 498, 10, 3, 199, 18, 13, 125, 20, 13, 120, 28, 65, 498, 10, 3, 199, 18, 13, 125, 20, 13, 120], [2726, 413, 829, 4, 15, 927, 72, 5789, 11753, 726, 183, 51, 335, 2, 29, 367, 12, 3, 1950, 118, 23, 1000, 98, 15, 1313, 299, 44, 530, 3, 52, 6, 250, 2, 189, 3, 173, 1, 1, 15, 15, 1313, 11754, 1535, 1, 1, 4, 3, 675, 1, 1, 15, 15, 1313, 1, 1, 106, 35, 479, 2, 90, 3, 1279, 2, 2388, 3, 3046, 675, 7, 83, 558, 11755, 1, 1, 7, 1435, 80, 3334, 18, 729, 232, 62, 50, 1, 1, 97, 100, 3, 377], [4184, 628, 148, 2948, 6, 4184, 628, 148], [99, 8, 884, 98, 8, 11756, 4068, 254, 12, 83], [3835, 638, 33, 57, 4, 3, 334, 450], [34, 70, 10, 258, 34, 70, 10, 258], [13, 123, 55, 1, 1, 33, 13, 6, 64, 51, 95, 4, 24, 58, 38, 2, 392, 4], [395, 8, 45, 395, 8, 45], [15, 339, 167, 15, 339, 167], [27, 2, 170, 3, 142, 558, 323, 1900, 736, 27, 2, 170, 3, 142, 558, 323, 1900, 736], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 224, 11, 5838, 5839, 137, 13, 125, 20, 13, 25, 3], [15, 26, 13, 25, 653, 66, 1485, 1486, 15, 26, 13, 25, 653, 66, 1485, 1486], [110, 49, 250, 2, 100, 173, 163, 2, 88, 7, 3, 1393, 6, 2350, 97, 100, 23, 173, 3, 6, 173, 163, 2, 88, 49, 250, 2, 134, 10, 7, 21, 65, 2350, 53, 3, 1393, 97, 100, 23, 173, 7, 106, 8, 253, 85, 2350, 173, 6], [633, 7, 721, 29, 11, 254, 218, 111, 14, 269, 633, 7, 721, 29, 18, 177, 1069, 4, 254, 1173, 1569, 131, 1885, 603, 160, 131, 483, 3662, 1173, 1569, 131, 1885, 603, 160, 131, 713, 3662, 1173, 1569, 131, 1885, 603, 1173, 160, 603, 142, 56, 7, 28, 59, 222, 42, 53, 332, 3, 96, 302, 11757, 52, 107, 28, 259, 29, 633, 721, 1853, 6851, 6945, 1865, 1173, 1569, 7, 1802, 1249], [27, 2, 41, 27, 2, 41], [25, 3, 13, 11, 11758, 11759, 10, 165, 26, 4, 15, 110, 54, 33, 13, 236, 11, 3, 994, 7104, 594, 26], [14, 189, 175, 134, 1299, 11, 3, 223, 7105, 7106, 3336, 9, 14, 189, 175, 134, 1299, 11, 3, 223, 7105, 7106, 3336, 9, 1594, 45, 116, 593, 655, 45, 540, 2738, 2091, 4798, 170], [32, 64, 4, 226, 32, 64, 4, 226], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [87, 2344, 18, 87, 497, 316, 276, 420, 4, 858, 36, 2994, 2, 190, 514, 1110, 121, 87, 2344, 18, 87, 497, 316, 276, 420, 4, 858, 36, 2994, 2, 190, 514, 1110, 121, 1, 183, 11760, 6, 343, 278], [32, 164, 64, 669, 32, 164, 64, 669], [70, 3808, 11761, 11762, 2105, 53, 3233, 6, 624, 11763, 534, 62, 6, 45], [378, 874, 46, 89, 8, 2313, 224, 294, 7107, 13, 52, 288, 2, 70, 7, 2313, 874, 13, 378, 874, 46, 89, 8, 2313, 224, 294, 7107, 13, 52, 288, 2, 70, 7, 2313, 874, 13], [32, 64, 4, 226, 32, 64, 4, 226], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [29, 1473, 2, 3, 218, 960, 101, 3557, 631, 66, 162, 11764], [236, 251, 367, 1346, 14, 236, 251, 23, 367, 2, 233, 11765, 11766, 420, 134, 1907, 134, 1064, 1719, 1569, 1719, 255, 3272, 11767, 1719, 2797, 2441, 1569, 10, 11768, 52, 11769], [27, 2, 46, 2, 15, 26, 15, 160, 32, 64, 77], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 13, 11, 15, 7108, 32, 230, 55, 101, 185, 35, 14, 25, 33, 13, 11, 3, 15, 28, 7108, 66, 1531, 230, 33, 32, 670, 420, 3, 385, 13], [50, 30, 333, 44, 1094, 36, 88, 185, 35, 14, 386, 85, 1477, 264, 509, 2, 729, 3, 163, 2623, 2, 1229, 131, 36, 88, 96, 6, 3, 37, 71, 44, 118, 51, 100, 7, 747, 505, 11770, 11771, 1530, 926, 32, 120, 2132, 7109, 3525], [346, 1960, 57, 55, 1, 1, 526, 38, 1960, 245, 3, 1297, 242, 39, 336, 6, 36, 7, 264, 43, 84, 2, 91, 245, 36, 1, 33, 437, 115, 295, 11772, 11773, 534, 425, 21, 7, 180, 39, 326, 21, 53, 613, 1, 1, 1008, 54, 245, 36, 1, 14, 386, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1808, 13, 13, 1808], [2419, 359, 36, 7110, 1743, 208, 3537, 7, 4219, 1, 1, 14, 583, 80, 175, 2029, 121, 393, 2419, 359, 36, 7110, 1743, 1, 1, 1, 2685, 556, 2395], [243, 816, 319, 279, 140, 111, 39, 47, 373, 3, 816, 746, 11, 3, 738, 182, 11, 3, 2413, 190, 271, 1, 11, 3, 177, 11774, 1, 1, 1654, 1, 1654, 1, 3924, 1, 3924, 1, 1654, 1, 1654, 1, 3979, 1, 3979, 1, 3980, 1, 3979, 1, 3980, 1, 3980, 1, 3980, 1, 3979, 1, 3924, 1, 1, 14, 270, 80, 253, 51, 47, 39, 1214, 23, 1, 1, 53, 3, 271, 6, 355, 1095, 23, 1935, 47, 39, 106, 21, 866, 722, 172], [25, 13, 7111, 208, 21, 101, 1, 1, 14, 50, 25, 13, 11, 28, 7111], [110, 9, 316, 84, 2, 326, 218, 4, 41, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 83, 379, 42, 2072, 4266, 165, 740, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 3020, 3021, 1, 55, 1, 921, 922, 1, 55, 1, 3020, 3021, 1, 356, 1282, 2, 11775, 35, 11, 1108, 72, 31, 67, 356, 9, 316, 84, 2, 326, 218, 4, 33, 41, 1, 526, 1262, 584, 21, 67, 39, 91, 21, 849, 1, 921, 922, 1, 39, 38, 29, 2, 104, 52, 14, 1, 1, 3020, 3021, 1, 614, 85, 986, 1, 487, 62, 87, 1, 921, 922, 1, 101, 1151, 14, 1, 3020, 3021, 1, 59, 1, 1342, 1, 3020, 3021, 1, 55, 1, 3020, 3021, 1, 3, 218, 39, 326, 849, 6, 2525, 3090, 11776, 7, 21, 63, 355, 96, 3090, 10, 1, 197, 1, 921, 922, 1, 180, 1, 752, 1, 580, 1041, 65, 1126, 3, 971], [544, 3, 3874, 544, 3, 3874, 53, 3, 782, 6, 588, 534, 7, 21, 63, 31, 4, 3, 547, 171], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 46, 2, 1045, 27, 2, 46, 2, 1045], [620, 342, 46, 3615, 3616, 620, 342, 46, 3615, 3616], [620, 342, 41, 2294, 2295, 620, 342, 41, 2294, 2295], [74, 89, 8, 134, 2516, 2517, 74, 89, 8, 134, 2516, 2517], [1804, 4, 2407, 4464, 8, 3728, 2, 168, 20, 271, 190, 1569, 1076, 2231, 1, 1, 698, 700, 21, 1147, 3612, 1, 1, 541, 127, 18, 5350, 3, 1036, 4465, 5916, 5917, 4, 168, 20, 738, 11777, 3634, 11778, 716, 21, 63, 328, 4, 2407, 1834, 1804, 588, 4, 2407, 42, 3728, 456, 158, 168, 20, 160, 1907, 54, 2, 735, 261, 11779, 172, 66, 866, 2922, 346, 312, 1477, 3, 439, 65, 183, 518, 10, 161, 894, 11780, 53, 116, 11, 4465, 6, 8, 6247, 4, 3, 52, 1, 1, 700, 6, 628, 698, 3, 31, 11781, 534, 4, 3, 887], [27, 2, 100, 3, 127, 1036, 36, 3, 15, 14, 326, 3, 3215, 554, 18, 3, 167, 1, 1, 49, 27, 2, 100, 3, 919], [15, 26, 32, 64, 15, 26, 32, 64], [52, 286, 18, 78, 40, 6, 315, 55, 1, 1, 52, 286, 18, 78, 40, 6, 315, 14, 114, 1, 21, 6, 3, 1889, 314, 78], [508, 254, 4873, 9, 345, 178, 169, 78, 3378, 14, 876, 508, 254, 4873, 53, 754, 53, 285, 1, 1, 508, 254, 4873, 1321, 169, 78, 3378], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [88, 193, 365, 483, 83, 1, 1, 49, 290, 193, 30, 88, 3, 52, 89, 8, 100, 7, 89, 8, 1553, 11, 13, 1, 11782, 628, 713, 41, 89, 8, 1242, 10, 3, 167, 1, 1, 450], [51, 2227, 413, 10, 160, 127, 4, 15, 260, 426, 1221, 3, 572, 1293, 89, 8, 884, 98, 110, 38, 9, 433, 2, 1629, 72, 973, 2, 729, 80, 2, 598, 39, 43, 2053, 12], [74, 97, 326, 513, 196, 55, 1, 1, 51, 1292, 3, 74, 947, 89, 8, 326, 3, 11783, 196, 1, 1, 1284, 604], [1207, 97, 43, 2606, 4, 2063, 53, 3, 179, 71, 3, 11784, 42, 669, 18, 3, 1207, 37, 71, 806, 4, 2063, 284, 97, 43, 2606, 4, 15, 11, 179, 123, 14, 50, 4456, 444], [726, 31, 726, 8, 45], [82, 20, 1596, 412, 31, 55, 47, 1448, 171, 30, 149, 568, 56, 53, 11785, 7112, 716, 47, 351, 96, 440, 184, 42, 8, 3896, 2, 3, 28, 7113, 308, 114, 135], [279, 140, 1019, 31, 322, 197, 107, 62, 3509, 629, 2227, 51, 853, 57, 4, 73, 279, 140, 140, 112, 279, 140, 140, 11786, 68, 1019, 107, 62, 3509, 21, 118, 2227, 3, 468, 6, 451, 1776, 923, 11, 698, 322, 429, 53, 363, 326, 377, 11, 11787, 14, 50, 2, 795, 53, 754, 53, 285], [100, 333, 772, 55, 1, 1, 110, 2185, 100, 72, 333, 377, 516, 68, 110, 504, 23, 7, 276, 100, 21, 1, 1, 30, 135, 750], [15, 7, 58, 29, 7080, 55, 21, 1290, 18, 161, 195, 42, 2694, 2, 3, 58, 67, 97, 95, 158, 15, 62, 118, 1186, 3, 437, 58, 254, 2, 29, 3, 287, 106, 2, 716, 42, 2694, 10, 3, 58, 284, 39, 199, 155, 204, 265, 195, 11788, 11789, 11790, 30, 691, 11791, 39, 29, 541, 52, 573, 143, 210, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1929, 8, 45, 655, 5717, 10, 1291, 42, 8, 1198, 4, 1929], [1412, 6, 172, 2405, 227, 370, 900, 1412, 2689, 10, 78, 1412, 6, 272, 1, 198, 375, 198, 178, 387], [3007, 6, 172, 2405, 228, 370, 900, 3007, 6798, 10, 78, 3007, 6, 272, 1, 198, 375, 198, 178, 387], [40, 370, 3981, 3982, 6, 172, 2405, 387, 370, 3981, 3982, 10, 78, 40, 6, 272, 1, 198, 375, 198, 178, 387], [25, 224, 11, 2793, 2794, 137, 13, 125, 20, 13, 25, 3], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [280, 73, 148, 255, 2319, 2038, 2039, 280, 73, 148, 255, 2319, 2038, 2039], [1083, 303, 994, 12, 2252, 55, 47, 199, 161, 74, 2252, 190, 7114, 11, 303, 18, 160, 3316, 7, 610, 4, 197, 1012, 12, 3, 1127, 47, 38, 343, 1083, 994, 10, 3, 610, 7, 160, 3316, 47, 274, 3, 2970, 3, 2970, 6, 3, 1050, 682, 179, 53, 3, 74, 161, 21, 11792, 11793, 425, 3, 74, 183, 704, 283, 1703, 3, 74, 507, 391, 47, 187, 205, 242, 176, 36, 695, 365, 994, 205, 242, 176, 455, 15, 1083, 994, 704, 283, 3774, 264, 47, 114, 3, 176, 2683, 18, 15, 185, 35, 11794, 23, 14, 63, 151, 119], [280, 73, 471, 3971, 3972, 280, 73, 471, 3971, 3972], [4874, 4810, 293, 75, 195, 4368, 769, 4874, 1, 1, 2753, 4874, 24, 144, 30, 2018, 18, 131, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 102, 1339, 77, 1, 1, 769, 1497, 11, 1, 3097, 331, 268, 805, 2298], [3983, 528, 55, 1, 330, 11795, 30, 3983, 4, 15, 2434, 452, 615, 30, 3, 56, 3983, 7115, 112, 310, 39, 1961, 23, 2434, 849, 201, 197, 2434, 185, 4291, 67, 21, 8, 197, 330, 350, 1, 1, 1, 3, 2434, 264, 366, 265, 23, 1, 1, 67, 12, 3, 1127, 21, 366, 265, 23, 1, 1, 39, 35, 14, 50, 80, 2, 118, 3, 2434, 3983, 7115, 251], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [131, 81, 809, 70, 50, 2, 70, 3, 809, 7, 131, 81, 36, 376, 115, 2, 73, 115], [3, 167, 4, 3, 7116, 260, 2863, 1379, 36, 3, 7117, 52, 6, 406, 3, 167, 4, 3, 7116, 260, 2863, 1379, 36, 3, 7117, 52, 6, 406], [117, 916, 55, 50, 1, 1, 117, 916, 361, 6, 8, 164, 399, 30, 1297, 242, 181, 112, 334], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [11796, 4875, 33, 13, 2264, 4, 483, 55, 1, 1, 51, 199, 3, 46, 1, 246, 35, 43, 207, 450, 2, 50, 80, 1, 1, 1, 135], [910, 382, 79, 14, 269, 222, 18, 3, 31, 1, 79], [14, 206, 174, 74, 4, 33, 73, 148, 208, 491, 1, 1, 14, 206, 3, 174, 74, 184, 6, 267, 30, 24, 76, 4, 33, 73, 148], [7118, 111, 711, 7119, 7120, 6, 8, 84, 2, 46, 338, 212, 14, 25, 3, 13, 7, 818, 21, 30, 283, 120, 1934, 9, 56, 2415, 120, 7119, 7120, 7118, 11797, 11798, 30], [162, 20, 566, 542, 134, 162, 20, 566, 542, 134], [311, 2, 173, 78, 11799, 9, 29, 2, 3, 603, 63, 285, 311, 2, 173, 78, 480, 9, 29, 2, 603, 265, 1384, 1384, 1384, 14, 129, 162, 7121, 30, 11800], [9, 29, 36, 3, 1384, 1076, 960, 3883, 2, 2641, 4876, 809, 11801, 7122, 9, 29, 36, 1076, 960, 3883, 1384, 2, 2641, 4876, 809, 4876, 11802, 11803, 7122, 129, 7121], [13, 521, 55, 1, 185, 35, 14, 50, 80, 10, 2684, 3, 15, 21, 6, 230, 11, 1125, 385, 13, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [49, 8, 84, 2, 100, 143, 3984, 1698, 7, 162, 20, 48, 294, 229, 422, 229, 49, 8, 84, 2, 100, 143, 3984, 1698, 7, 162, 20, 48, 294, 229, 422, 229, 39, 35, 308, 114], [79, 32, 64, 79, 32, 64], [27, 2, 100, 1279, 7123, 475, 27, 2, 100, 1279, 7123, 475], [1929, 116, 2447, 6, 8, 2287, 14, 353, 23, 31, 53, 754, 53, 285, 223, 59], [15, 2063, 97, 2919, 3, 451, 1207, 30, 37, 71, 265, 3, 377, 53, 3, 451, 377, 806, 51, 2919, 23, 451, 461, 627, 15, 583, 3, 37, 71, 530, 3, 1623, 314, 6, 661, 207, 39, 2919, 2850, 4, 2063, 172, 14, 50, 4456, 444], [39, 8, 106, 2046, 11, 646, 30, 472, 208, 21, 1, 1, 47, 199, 2046, 479, 2, 778, 249, 67, 15, 429, 96, 37, 363, 50, 2, 114, 7, 398], [13, 111, 50, 1, 1, 38, 274, 3, 13, 310, 2654, 11, 3, 96, 1, 14, 50, 80, 119, 11, 26, 454], [54, 2, 43, 84, 2, 189, 840, 426, 7124, 7, 7125, 110, 304, 2, 43, 84, 2, 189, 840, 11, 570, 314, 7124, 7, 7125, 67, 172, 21, 89, 8, 11804, 185, 35, 363, 50, 2, 326, 77, 424, 21, 429, 11805, 11806, 11807, 6, 8, 1642], [82, 20, 8, 45, 33, 82, 20, 429, 37, 71, 53, 11808, 11809, 11810, 482, 312, 59, 63, 11811, 10, 602, 446, 5854, 1123, 30, 517, 312, 7, 65, 141, 4232, 53, 3, 11812, 2700, 2690, 3, 482, 1, 1, 14, 50], [79, 13, 562, 79, 13, 562], [79, 32, 64, 79, 32, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1666, 55, 85, 1666, 264, 47, 43, 137, 10, 77, 86, 383, 1, 87, 62, 191, 87, 128, 126, 62, 191, 128, 126, 7, 264, 251, 161, 86, 10, 4264, 128, 126, 62, 161, 142, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [910, 382, 79, 14, 269, 222, 18, 3, 31, 1, 79], [338, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [90, 7126, 76, 618, 6, 75, 112, 124, 10, 105, 90, 7126, 76, 618, 6, 75, 112, 124, 10, 105, 1159, 696, 75, 514, 3, 11813, 1257, 857, 597, 53, 332, 1550], [1011, 10, 24, 168, 998, 1265, 190, 2849, 1117, 277, 24, 144, 267, 2, 262, 24, 592, 190, 7127, 1011, 10, 24, 168, 998, 1265, 190, 2849, 1117, 277, 24, 144, 267, 2, 262, 24, 592, 190, 7127, 6, 7091, 1, 163, 850, 82, 20], [40, 474, 7128, 205, 242, 3985, 362, 385, 107, 18, 907, 18, 312, 3985, 362, 1027, 907, 2100, 67, 336, 40, 474, 7128, 205, 242, 3985, 362, 385, 107, 18, 907, 18, 312, 3985, 362, 1027, 907, 2100, 67, 336], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [759, 759, 24, 24, 168, 3967, 3968, 29, 277, 6, 75, 112, 12, 49, 105, 10, 1348, 759, 24, 24, 168, 3967, 3968, 29, 277, 6, 75, 112, 12, 49, 105, 10], [5, 756, 757, 815, 22, 4, 5, 19, 12, 5, 756, 757, 815, 22, 4, 5, 19, 12], [361, 361, 1304, 238, 1011, 10, 24, 262, 1187, 1304, 1173, 1117, 277, 6, 75, 361, 361, 1304, 238, 1011, 2356, 2, 1337, 522, 434, 10, 24, 262, 1187, 1304, 1173, 1117, 277, 6, 75], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [9, 133, 2, 254, 4, 17, 208, 21, 6, 151, 143, 31, 30, 3, 254, 4, 17, 97, 118, 143, 133, 165, 824, 4, 168, 42, 327, 613, 3354, 6609, 120, 1051, 24, 667, 368, 879, 1848, 1943, 1849, 1137, 1138, 1082, 1141], [1250, 827, 18, 2530, 409, 605, 1250, 827, 18, 2530, 409, 605, 1, 1, 40, 1, 40], [40, 4877, 6, 273, 327, 169, 3, 11814, 827, 169, 3, 1624, 827, 18, 40, 4877, 6, 327, 36, 1272, 124, 10, 105, 1, 511, 4877, 6, 5254, 287, 3522, 18, 30, 7129, 421], [24, 262, 1204, 358, 24, 3578, 29, 277, 24, 144, 6, 75, 112, 124, 10, 105, 24, 262, 1204, 358, 24, 3578, 29, 277, 24, 144, 6, 75, 112, 124, 10, 105], [338, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [28, 27, 2, 46, 2, 15, 28, 27, 2, 46, 2, 15], [40, 953, 7, 78, 24, 361, 361, 369, 370, 3981, 3982, 10, 78, 40, 6, 272, 198, 616, 1887, 96, 559, 4, 850, 20, 112, 124, 10, 105, 850, 82, 20, 163, 1, 369, 370, 3981, 3982, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387], [190, 3929, 40, 75, 307, 208, 1033, 1, 1, 83, 1889, 605, 4, 190, 190, 42, 75, 169, 3, 1044, 18, 40, 3929, 52, 1, 1, 47, 42, 1008, 346, 3, 1889, 605, 40, 11815, 7, 11816, 11817, 1, 1, 78, 101, 246, 35, 14, 43, 207, 450, 7, 170, 3, 1889, 605, 10, 40, 7, 40, 1, 1, 458], [6714, 1638, 537, 171, 208, 21, 581, 6, 517, 171, 239, 2335, 7, 151, 38, 141, 521, 912, 7, 284, 106, 8, 4086, 33, 3695, 3, 171, 283, 346, 567, 18, 33, 2840, 7, 6, 489, 66, 62, 207, 14, 91, 3, 167, 554, 7130, 7131, 149, 120, 4206, 3525], [4878, 559, 3379, 61, 2984, 845, 470, 2531, 63, 940, 11818, 854, 1887, 261, 364, 112, 49, 10, 105, 1, 1, 2168, 435, 1411, 1037, 988, 774, 3986, 252, 1, 93, 252, 845, 470, 2149, 665, 3379, 61, 2984, 845, 470, 2531, 63, 940, 1, 2168, 435, 1411, 1037, 988, 774, 3986, 252, 1, 93, 252, 845, 470, 2149, 665, 3379, 61, 2984, 845, 470, 2531, 63, 940, 1, 2168, 435, 1411, 1037, 988, 774, 3986, 252, 1, 93, 252, 845, 470, 2149, 665, 3379, 61, 2984, 845, 470, 2531, 63, 940, 1, 2168, 435, 1411, 1037, 988, 774, 3986, 252, 1, 93, 252, 845, 470, 2149, 665, 3379, 61, 2984, 845, 470, 2531, 63, 940], [28, 779, 44, 3, 155, 1061, 659, 746, 390, 1639, 2, 100, 3, 2515, 490, 271, 28, 779, 44, 3, 155, 1061, 659, 746, 390, 1639, 2, 100, 3, 2515, 1, 330, 3, 28, 61, 1479, 3, 115, 7, 3, 4170, 1, 28, 84, 2, 11819, 2, 3, 4389, 1, 267, 2, 3, 28, 52, 137, 487, 1, 248, 2, 114, 3, 58, 609, 83, 494, 1, 805, 155, 133, 257, 11820, 2484, 10, 11, 355, 2196, 1, 28, 779, 44, 3, 133, 12, 490, 6, 1526, 1, 11821, 3, 121, 30, 11822, 3267, 1, 284, 659, 3, 121, 428, 8, 84, 2, 269, 295, 2, 3, 28, 1, 28, 779, 44, 390, 99, 335, 7, 122, 36, 437, 4665, 1, 28, 779, 390, 99, 114, 3, 133, 257, 1709], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [198, 1035, 370, 900, 1412, 2689, 198, 375, 178, 112, 49, 990, 369, 370, 900, 1412, 2689, 10, 78, 1412, 6, 272, 1, 198, 375, 198, 178, 387], [40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75, 40, 1181, 501, 297, 875, 125, 422, 2061, 1353, 200, 317, 75], [41, 193, 41, 542, 170, 56, 6139, 6140, 182, 213, 130, 155, 204, 117, 107, 214, 146, 41, 193, 41, 542, 170], [41, 8, 405, 4, 148, 111, 1, 1, 33, 41, 6, 8, 405, 4, 33, 148, 39, 35, 366, 158, 23, 1008, 11823, 50], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [299, 523, 4, 3380, 299, 1292, 597, 439, 1084, 47, 42, 697, 104, 1176, 1728, 154, 24, 144, 108, 848, 502, 832, 4872, 832, 103, 252, 364, 364, 11, 380, 36, 247, 9, 982, 832, 18, 2, 247, 9, 982, 832, 18, 104, 108, 261, 364, 42, 11824, 18, 285, 1179, 1292, 597, 1051, 36, 3, 3380, 138, 196, 3380, 65, 347, 433, 35, 39, 102, 2, 43, 2349, 36, 423, 1292, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 9, 86, 121, 332, 161, 506, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 315, 776, 11, 3380, 1179, 1292, 597, 579, 319, 192, 313, 305, 34, 7, 86, 121, 456, 353, 3380, 1179, 1292, 597, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1727, 725, 724, 222, 2701, 44, 1196, 1379, 104, 571, 7, 529, 39, 189, 993, 11, 2131, 2974, 2, 3408, 29, 2, 7, 2248, 104, 1037, 261, 3249, 42, 304, 2, 1740, 7, 11825, 1871, 299, 2701, 4, 104, 1037, 1192, 10, 603, 18, 1150, 11826, 68, 1051, 36, 72, 1446, 293, 1835, 18, 104, 2701, 185, 1709, 43, 7132, 2, 7133, 7134, 30, 200, 1552, 1653, 252, 62, 90, 72, 2975, 30, 1446, 29, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 502, 832, 4872, 832, 103, 252, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 7101, 7102, 144, 221, 138, 1057, 7103, 90, 133, 903, 977, 801, 832, 108, 136, 108, 138, 108, 56, 1176, 1728, 154, 24, 144, 95, 116, 12, 929, 354, 230, 800, 930, 904, 93, 578, 136, 905, 589, 59, 906, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 154, 502, 832, 103, 252, 36, 10, 238, 240], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [555, 810, 37, 1676, 55, 1, 1, 611, 622, 3, 96, 167, 554, 18, 37, 1, 1, 1, 1, 1, 1, 1156], [1191, 400, 4, 235, 108, 111, 356, 137, 508, 799, 235, 86, 7, 246, 265, 2, 199, 1191, 41, 10, 21, 67, 29, 502, 1722, 143, 197, 39, 50], [2386, 700, 5, 5, 2386, 700, 5, 5], [5, 2842, 22, 4, 5, 19, 12, 5, 2842, 22, 4, 5, 19, 12], [238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 24, 144, 6, 106, 238, 1034, 880, 2463, 10, 24, 17, 90, 90, 434, 1165, 29, 277, 24, 144, 6, 75], [1160, 317, 4, 3, 3932, 1817, 1818, 6, 8, 45, 1160, 317, 4, 3, 3932, 1817, 1818, 6, 8, 45], [5, 5, 22, 4, 5, 19, 12, 1547, 5, 5, 22, 4, 5, 19, 12, 1547], [1412, 369, 370, 900, 1412, 2689, 10, 78, 1412, 6, 272, 198, 375, 1412, 369, 370, 900, 1412, 2689, 10, 78, 1412, 6, 272, 198, 375, 198, 178, 387], [850, 20, 364, 7, 597, 347, 63, 8, 45, 4, 748, 124, 2, 124, 105, 10, 105, 850, 20, 364, 7, 597, 347, 63, 8, 45, 4, 748, 124, 2, 124, 105, 10, 105, 47, 1105, 489, 7, 1105, 4, 2, 850, 20, 67, 3, 210, 63, 273, 151, 21, 63, 355, 323, 53, 590, 67, 680, 63, 2146, 51, 47, 413, 10, 33, 1022, 490, 864, 9, 210, 21, 63, 45, 494, 201, 3, 31, 1890, 30, 364, 7, 597, 347], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 46, 2, 24, 82, 20, 27, 2, 46, 2, 24, 82, 20], [209, 88, 297, 10, 527, 209, 88, 297, 10, 527], [15, 1601, 51, 1134, 2, 239, 149, 131, 10, 15, 3, 7135, 99, 8, 465, 2511, 21, 63, 1601, 2, 44, 107, 30, 241, 2894, 273, 10, 51, 1157, 3, 2894, 2, 468, 316, 136, 21, 63, 273, 1601, 2, 7135, 6, 151, 398, 2, 23], [123, 30, 3516, 111, 51, 335, 2, 100, 3, 3516, 36, 24, 314, 62, 82, 20, 118, 23, 37, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [1976, 358, 238, 1011, 959, 10, 24, 262, 1204, 1976, 29, 277, 24, 144, 6, 75, 1976, 358, 238, 1011, 959, 10, 24, 262, 1204, 1976, 29, 277, 24, 144, 6, 75, 112, 105, 10], [128, 126, 403, 128, 126, 403], [29, 2, 82, 20, 29, 2, 82, 20], [5, 5, 63, 327, 345, 467, 858, 2093, 7, 2690, 5, 5, 22, 4, 5, 19, 12], [27, 2, 46, 27, 2, 46, 2, 3, 434, 24, 168, 998, 190, 11827, 29, 277, 53, 3, 21, 6, 1085, 30, 3, 1718, 31], [121, 36, 415, 28, 121, 36, 415, 28], [813, 3351, 3352, 1262, 23, 6, 813, 1611, 11828, 2165, 767, 181, 49, 11829, 11830, 35, 38, 73, 492, 367, 667, 192, 2165, 767, 925, 1157, 66, 689, 208, 4555, 28, 331, 35, 241, 73, 367, 294, 4555, 239, 581], [21, 31, 111, 47, 38, 142, 10, 3, 652, 641, 44, 99, 8, 873, 98, 3, 61, 864, 65, 72, 4796, 2756, 1383, 3, 201, 1677, 39, 1667, 35, 393, 3, 142, 6, 3, 28, 56, 11831], [479, 2, 114, 3, 57, 68, 21, 6, 813, 479, 2, 114, 3, 57, 68, 21, 6, 813], [72, 3353, 65, 1095, 36, 3, 1148, 159, 2, 24, 56, 3363, 1952, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1166, 1566, 72, 3353, 65, 1095, 36, 3, 1148, 159, 2, 24, 448, 11832, 408, 142, 7, 39, 390, 509, 21, 30, 408, 4, 408, 73, 2017], [243, 34, 9, 1119, 543, 110, 3866, 51, 399, 3, 2683, 1256, 22, 2, 366, 68, 3, 722, 2402, 428, 543, 2, 3, 195, 284, 5722, 110, 38, 172, 399, 3, 195, 2, 11833, 2402, 2229, 11834, 88, 2229, 935, 239, 21, 7136, 88, 1697, 15, 88, 3381, 11835, 1697, 15, 88, 3381, 1350, 15, 88, 3381, 11836, 3089, 15, 88, 3381, 4383, 83, 15, 88, 3381, 3022, 3089, 3905, 3906, 1276, 1388, 3351, 3352, 2659, 2660, 124, 3382, 3383, 4879, 4880, 3311, 3312, 2923, 4881, 4882, 4883, 243, 34, 9, 1119, 543, 320, 399, 464, 14, 68, 35, 42, 637, 4, 36, 77, 18, 3, 174, 14, 43, 614, 44, 35, 42, 1105, 158, 76, 276, 335, 1090, 3905, 3906, 1276, 1388, 3351, 3352, 3382, 3383, 124, 2659, 2660, 4879, 4880, 3311, 3312, 2923, 4881, 3382, 3383, 4882, 4883, 550, 34, 9, 1119, 543, 111, 4794, 246, 35, 14, 50, 30, 23, 123], [243, 34, 9, 1119, 543, 320, 399, 464, 14, 68, 35, 42, 637, 4, 36, 77, 18, 3, 174, 14, 43, 614, 44, 35, 42, 1105, 158, 76, 276, 335, 1090, 3905, 3906, 1276, 1388, 3351, 3352, 3382, 3383, 124, 2659, 2660, 4879, 4880, 3311, 3312, 2923, 4881, 3382, 3383, 4882, 4883, 550, 34, 9, 1119, 543, 111, 4794, 246, 35, 14, 50, 30, 23, 123], [34, 70, 10, 23, 34, 9, 34, 70, 10, 23, 34, 9], [102, 11, 29, 2, 88, 52, 21, 101, 1, 1, 14, 50, 2, 747, 29, 2, 88, 52], [417, 20, 982, 55, 1, 185, 35, 50, 80, 10, 1125, 417, 20, 24, 30, 33, 15, 32, 1, 1, 118, 41, 11, 1774], [13, 25, 13, 25], [31, 51, 638, 2891, 55, 47, 42, 1085, 72, 31, 51, 638, 3, 177, 1190, 4, 2891, 674, 7, 4537, 47, 38, 2, 70, 23, 469, 443, 420, 389, 21, 507, 4, 15, 23, 6, 1278, 193, 30, 740, 496, 225, 418, 207, 14, 2914, 53, 313, 305, 330, 2, 70, 3, 1323, 96, 12, 975, 420, 389, 3, 674, 7, 4537, 1071], [378, 363, 90, 29, 2, 4454, 1939, 2, 48, 2594, 96, 378, 363, 90, 29, 2, 4454, 1939, 2, 48, 2594, 96, 1, 1, 3, 11837, 128, 126, 39, 43, 336, 12], [32, 602, 77, 7, 13, 25, 2062, 32, 602, 77, 7, 13, 25, 2062], [24, 57, 460, 7137, 7138, 208, 295, 101, 1, 1, 39, 35, 583, 80, 72, 233, 393, 33, 31, 1, 755, 170, 80, 134, 10, 12, 3, 24, 48, 4, 1046, 1, 582, 6, 33, 422, 29, 174, 8, 10, 601, 1, 1, 135], [39, 100, 41, 39, 100, 41, 179, 123, 1633, 23, 593, 534], [128, 126, 10, 86, 89, 8, 500, 128, 126, 10, 86, 89, 8, 500], [70, 2, 174, 70, 2, 174], [813, 57, 1004, 813, 57, 1004], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [539, 130, 79, 7139, 7140, 1179, 2248, 1134, 209, 2445, 595, 4, 439, 1084, 47, 42, 697, 539, 130, 79, 7139, 7140, 1179, 2248, 1134, 209, 2445, 11838, 364, 357, 1014, 66, 104, 2246, 24, 144, 108, 1775, 44, 197, 62, 316, 2082, 1161, 42, 1426, 2, 2248, 3, 130, 79, 352, 1010, 194, 252, 2443, 1179, 2445, 209, 10, 197, 62, 316, 18, 104, 155, 843, 2082, 1161, 2076, 3335, 18, 23, 1179, 764, 4, 11839, 18, 200, 677, 62, 194, 252, 2443, 10, 1792, 571, 47, 42, 932, 23, 439, 2, 35, 192, 313, 2168, 315, 776, 916, 34, 11, 83, 11840, 388, 442, 2, 23, 1179, 227, 47, 42, 897, 11841, 34, 11, 83, 560, 4884, 442, 2, 23, 1179, 23, 34, 99, 3333, 3846, 53, 916, 34, 11, 143, 442, 388, 599, 47, 384, 2359, 36, 35, 10, 288, 2, 796, 261, 388, 601, 844, 21, 264, 43, 11842, 44, 1395, 669, 221, 138, 196, 8, 6820, 43, 3892, 311, 2, 2974, 2192, 2, 434, 138, 1584, 294, 3, 199, 18, 3642, 3935, 140, 1108, 53, 1879, 7, 4806, 14, 663, 104, 1037, 2, 1264, 1459, 35, 42, 327, 1792, 394, 18, 3, 220, 357, 2247, 7, 1088, 44, 35, 42, 327, 3, 1251, 1947, 933, 1792, 394, 18, 79, 7, 44, 104, 817, 42, 11843, 7, 861, 11844, 1073, 2249, 68, 35, 246, 265, 261, 388, 6218, 931, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 47, 38, 107, 18, 615, 178, 11, 3, 561, 18, 710, 364, 1108, 53, 23, 197, 1985, 143, 388, 442, 2, 2249, 1073, 3, 130, 79, 352, 1010, 4885, 407, 899, 2, 3, 212, 9, 579, 319, 7, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 23, 6, 1251, 1725, 3, 135, 3334, 68, 35, 42, 8, 327, 3, 220, 357, 2247, 62, 68, 35, 42, 327, 933, 1792, 394, 18, 3, 220, 34, 201, 776, 192, 883, 305, 34, 9, 86, 121, 11, 669, 1782, 221, 138, 196, 11, 2249, 1073, 3, 130, 79, 352, 1010, 4885, 407, 23, 1241, 3847, 2056, 369, 18, 439, 1163, 315, 776, 192, 313, 305, 34, 7, 86, 121, 11, 669, 1782, 221, 138, 196, 11, 2249, 1073, 3, 130, 79, 352, 1010, 4885, 407, 23, 1241, 3847, 2056, 369, 18, 439, 1163], [1176, 1728, 154, 24, 144, 108, 848, 12, 975, 318, 1306, 11, 789, 364, 745, 356, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 1176, 1728, 154, 24, 144, 108, 848, 12, 975, 318, 1306, 11, 789, 364, 745, 858, 11, 380, 230, 36, 11845, 2, 247, 789, 18, 567, 318, 2082, 23, 701, 1446, 2697, 1292, 1794, 62, 723, 318, 4840, 357, 230, 66, 3, 863, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 318, 2697, 364, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 318, 2697, 364, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 7141, 595, 4, 1, 1, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 2085, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725], [24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 7141, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 11846, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [1522, 18, 104, 863, 24, 1174, 154, 24, 144, 1726, 380, 1051, 36, 40, 595, 4, 1, 1, 1, 439, 1084, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 1174, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [27, 2, 463, 162, 20, 705, 220, 828, 351, 73, 142, 7, 2778, 112, 38, 8, 141, 84, 2, 463, 3, 162, 20, 705, 220], [1987, 3384, 1940, 1842, 40, 595, 4, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 1987, 3384, 1940, 1842, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 40, 24, 24, 144, 1, 95, 116, 12, 929, 1, 69, 1146, 972, 1, 69, 305, 1, 79, 93, 59, 1, 103, 435, 1, 691, 175, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 296, 59, 1, 1, 93, 537, 1, 263, 66, 506, 23, 559, 6, 1014, 51, 1842, 7142, 1, 3987, 52, 3022, 175, 175, 435, 40, 24, 24, 144, 972, 3, 286, 6, 12, 62, 1940, 1842, 35, 54, 2, 544, 241, 287], [46, 639, 365, 1364, 1, 49, 27, 2, 100, 33, 254, 581, 6, 167, 554, 18, 3, 37, 49, 11847, 18, 143, 13, 53, 49, 84, 2, 100, 98, 83, 165, 824, 2489, 21, 65, 829, 2, 106, 30, 72, 57, 268, 2590, 576, 91, 167, 554, 96, 184, 63, 27, 2, 46, 2, 91, 2245, 167, 554, 1, 14, 386, 62, 391], [267, 3, 506, 74, 267, 3, 506, 74], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [73, 2494, 460, 745, 3, 88, 52, 3, 31, 6, 38, 350, 241, 73, 2494, 460, 745, 3, 88, 52, 169, 540, 21, 273, 4602, 4886, 444, 15, 129], [121, 997, 7, 351, 659, 121, 997, 7, 351, 659], [886, 167, 37, 886, 167, 37], [41, 8, 545, 311, 2, 88, 37, 41, 8, 545, 311, 2, 88, 37], [32, 136, 399, 291, 292, 124, 1855, 3189, 291, 292, 243, 2985, 550, 32, 136, 399, 55, 1855, 23, 6, 181, 36, 24, 35, 39, 413, 10, 3, 229, 2, 29, 21, 3365, 3366, 188, 200, 668, 533, 187, 35, 253, 404, 20, 65, 72, 11848, 1587, 50, 7143, 30, 3812, 2, 199, 2719, 7, 288, 2, 11849, 261, 38, 141, 11850, 66, 21, 749, 53, 613, 53, 66, 161, 740, 541, 116, 284, 100, 102, 62, 72, 439, 30, 21, 207, 465, 3711, 7, 1674, 3, 11851, 413, 10, 3, 925, 2, 100, 3, 7143, 2, 5477, 288, 35, 39, 50, 4834, 30, 104, 21, 31, 47, 1663, 104, 2359, 14, 2509, 7144, 10, 3, 4887, 35, 2932, 62, 721, 2, 3, 533, 188, 200, 668, 1050, 71, 1855, 3189, 124, 291, 292, 2985, 550, 32, 136, 399, 111, 21, 4094, 11852, 91, 96, 8, 614, 85, 21, 6, 7, 1641, 8, 137, 21, 135], [28, 64, 77, 18, 15, 26, 15, 28, 64, 77, 18, 15, 26, 15], [813, 62, 8, 104, 28, 32, 65, 141, 399, 4, 11853, 3369, 35, 39, 95, 10, 581], [15, 26, 32, 707, 15, 26, 32, 707], [73, 28, 59, 73, 28, 59], [15, 26, 32, 64, 15, 26, 32, 64], [235, 108, 453, 6548, 209, 1, 124, 1, 291, 292, 1, 1145, 550, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 720, 313, 1, 1, 55, 1, 1, 102, 35, 2, 893, 41, 2, 33, 73, 383, 268, 310, 1, 1, 30], [227, 683, 1565, 174, 65, 2, 43, 1914, 2, 227, 683, 1565, 174, 65, 2, 43, 1914, 2], [395, 8, 45, 129, 107, 115, 200, 1018, 11854, 146, 356, 8, 4861, 726, 36, 33, 148, 51, 1764, 1136, 199, 2237, 11855], [403, 704, 7145, 403, 704, 7145], [27, 2, 3915, 75, 419, 1296, 27, 2, 3915, 75, 419, 1296], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [82, 20, 89, 8, 100, 82, 20, 89, 8, 100, 1, 37, 95, 163], [41, 8, 545, 41, 8, 545], [34, 70, 965, 34, 70, 965], [51, 405, 191, 217, 164, 3, 130, 441, 1350, 8, 430, 37, 91, 377], [87, 89, 8, 100, 87, 89, 8, 100], [279, 140, 86, 52, 112, 3, 73, 279, 140, 70, 49, 172, 346, 3, 1293, 10, 33, 527, 39, 38, 21, 995, 251, 10], [25, 224, 11, 11856, 11857, 137, 13, 125, 20, 13, 25, 3], [24, 262, 1204, 358, 29, 277, 12, 358, 7146, 73, 113, 271, 42, 75, 7147, 49, 105, 10, 24, 262, 1204, 358, 29, 277, 12, 358, 7146, 73, 113, 271, 42, 75, 7147, 49, 105, 10], [279, 140, 1093, 315, 70, 72, 326, 3, 95, 4, 54, 279, 140, 2, 95, 158, 86, 52, 2, 509, 497], [73, 13, 89, 8, 134, 169, 13, 119, 73, 13, 89, 8, 134, 169, 13, 119], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 49, 1703, 98, 10, 3, 233, 18, 2897, 11, 21, 34, 203, 14, 269, 72, 70, 7, 1027, 2897, 341], [13, 25, 102, 13, 25, 102], [7148, 7149, 486, 11, 82, 20, 31, 7148, 7149, 486, 11, 82, 20, 31], [57, 813, 403, 57, 813, 403], [4, 15, 1221, 11, 21, 468, 186, 263, 678, 36, 113, 113, 4, 15, 1221, 11, 21, 468, 186, 263, 584, 23, 576, 7, 2156, 3279, 3, 2137, 989, 3, 186, 263, 273, 429, 100, 4, 1221, 30, 1258, 99, 35, 14, 647, 207, 3, 1258, 42, 955, 2, 536], [13, 25, 559, 36, 646, 13, 25, 559, 36, 646], [61, 7150, 10, 459, 247, 2347, 110, 49, 164, 1195, 319, 18, 61, 7150, 10, 459, 247, 53, 163, 464, 4, 33, 148, 308, 114, 7, 270, 80, 253, 143, 354, 524, 2, 43, 588, 2, 353, 23], [235, 108, 453, 24, 794, 235, 108, 453, 24, 794], [15, 95, 4, 70, 524, 1008, 14, 365, 483, 1, 1, 14, 39, 35, 106, 15, 95, 4, 70, 207, 44, 39, 118, 29, 2, 3, 15, 994, 125, 52, 26], [245, 8, 1616, 36, 41, 158, 279, 140, 110, 49, 1125, 23, 34, 2, 778, 44, 245, 42, 8, 1616, 4, 36, 279, 140, 11, 3, 5955, 101, 4, 1620, 687, 1, 151, 42, 534, 451, 1163, 100, 11, 165, 6768, 30, 3, 179, 31, 1, 439, 203, 1, 439, 203, 1, 1, 151, 6, 183, 34, 30, 100, 207, 284, 663, 36, 423, 943, 11858], [295, 255, 4512, 1080, 1053, 295, 255, 4512, 1080, 1053], [338, 46, 31, 13, 31, 338, 46, 31, 13, 31], [132, 32, 57, 4, 793, 86, 3, 195, 11859, 11860, 11861, 11862, 7, 11863, 6683, 55, 101, 1, 1, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 195], [11864, 97, 122, 2, 4888, 333, 36, 939, 88, 111, 1, 1, 14, 373, 3, 96, 4669, 30, 718, 11865, 10, 3, 142, 18, 3, 195, 1447, 7, 1739, 558, 45, 613, 7, 320, 80, 3, 1164, 11, 582, 548, 1, 1, 7151, 95, 4533, 1, 7151, 11866, 1863, 1, 1, 135], [76, 6, 8, 699, 76, 6, 8, 699], [434, 24, 168, 998, 190, 476, 2661, 29, 277, 12, 190, 6, 75, 112, 105, 434, 24, 168, 998, 190, 476, 2661, 29, 277, 12, 190, 6, 75, 112, 105], [57, 6, 23, 1643, 57, 1, 187, 8, 479, 2, 413, 10, 21, 573, 11867], [41, 57, 70, 31, 41, 57, 70, 31], [813, 57, 403, 813, 57, 403], [1077, 7152, 97, 25, 13, 14, 366, 12, 3, 464, 1077, 7152, 97, 25, 13, 14, 366, 12, 3, 464], [459, 191, 217, 8, 45, 1928, 111, 1, 1, 14, 326, 3, 163, 167, 554, 1928, 3, 459, 191, 217, 6, 601, 339, 51, 735, 83, 3, 681, 7, 7153, 21, 507, 257, 1, 1, 185, 35, 14, 398, 23], [41, 31, 97, 100, 3, 438, 1065, 4785, 1039, 6, 8, 178], [128, 126, 8, 2397, 128, 126, 8, 2397], [15, 29, 31, 52, 26, 1, 1, 160, 223, 11868, 11869, 11870, 36, 2226, 2226, 219, 13, 25, 1, 1, 458], [193, 30, 1432, 1542, 1543, 193, 30, 1432, 1542, 1543], [2065, 21, 282, 2854, 2745, 2746, 2065, 21, 282, 2854, 2745, 2746], [317, 2615, 477, 2441, 2992, 49, 2993, 317, 2615, 477, 2441, 2992, 49, 2993], [14, 38, 366, 12, 461, 3, 2786, 7, 2304, 347, 264, 201, 43, 303, 53, 3, 372, 347, 2, 3, 127, 8, 169, 14, 38, 366, 12, 461, 3, 2786, 7, 2304, 347, 264, 201, 43, 303, 53, 3, 372, 347, 2, 3, 127, 8, 169, 669, 347], [40, 385, 107, 18, 907, 18, 312, 7154, 362, 1027, 907, 2100, 67, 336, 40, 385, 107, 18, 907, 18, 312, 7154, 362, 1027, 907, 2100, 67, 336], [245, 36, 2453, 812, 106, 8, 1242, 4, 279, 140, 623, 1905, 151, 42, 245, 4, 41, 812, 284, 106, 8, 1242, 4, 279, 140], [268, 73, 148, 54, 41, 782, 50, 268, 73, 148, 54, 41, 782, 50], [2209, 973, 1457, 110, 54, 2, 766, 914, 324, 3, 177, 324, 171, 65, 141, 1260, 11, 104, 631, 1712, 9, 11871, 11872, 324, 171, 9, 170, 341, 591, 341, 344, 2007, 1457, 2209, 973, 1457, 2, 485, 23, 324, 171, 4, 315, 14, 95, 158, 104, 2429, 1772, 10, 120, 1587, 200, 67, 38, 9, 1473, 2, 239, 14, 50], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [54, 29, 2, 40, 2678, 218, 55, 21, 101, 1, 1, 14, 90, 80, 29, 2, 2678, 218, 10, 78, 40], [1240, 840, 4399, 1240, 840, 4399], [1694, 102, 97, 176, 111, 21, 101, 1, 1, 1, 47, 38, 123, 1694, 102, 176, 4, 113, 1, 96, 2612, 127, 1696, 207, 97, 176, 1694, 102, 36, 3988, 1, 165, 207, 38, 179, 123, 1, 1, 1378, 568, 176, 1694, 102, 176, 2450, 11873, 1, 8, 1437, 176, 21, 1, 1, 14, 50, 166, 510, 1, 1, 1, 135], [14, 119, 2, 3, 3989, 111, 1, 1, 21, 6, 167, 18, 3, 149, 127, 1, 14, 119, 2, 3, 3989, 1, 151, 6, 183, 51, 3, 598, 2, 6, 1086, 4, 3989, 1, 4859, 740, 479, 2, 452, 4, 3989, 1, 1, 135], [32, 136, 399, 111, 1, 1, 197, 316, 813, 181, 14, 114], [1796, 181, 1578, 18, 1081, 1758, 3600, 3601, 49, 3174, 3175, 3173, 4312, 11874, 4673, 4674, 243, 1437, 1081, 294, 961, 11875, 1982, 47, 102, 35, 2, 14, 1796, 3, 181, 1578, 18, 1081, 1758, 11, 3, 116, 357, 599, 47, 326, 3, 3348, 11, 600, 303, 7, 181, 1578], [939, 88, 110, 39, 8, 119, 3, 1144, 4, 88, 11876, 246, 35, 50, 80, 119, 3, 1144, 53, 96, 1, 673, 1, 673], [11877, 15, 528, 11, 190, 113, 6, 2169, 11, 341, 112, 316, 467, 197, 483, 5, 1315, 12, 1012, 23, 1012, 11878, 11, 287, 36, 15, 4, 4239, 168, 20, 11879, 770, 4, 11880, 173, 14, 114, 1459, 3, 11881, 15, 777, 42, 327, 861, 86, 57, 87, 11882, 415, 11883], [1215, 1699, 6, 8, 45, 4, 409, 7155, 1215, 1699, 6, 8, 45, 4, 409, 7155, 47, 42, 164, 3, 177, 37, 4, 3, 3125, 1, 1, 447, 11884, 11885, 11886, 6, 8, 11887, 447, 4805, 733, 447, 6219, 7156, 1963, 7157, 7156, 1963, 7157], [148, 167, 3370, 55, 101, 1, 1, 33, 148, 317, 167, 4083, 316, 2335, 51, 170, 33, 148], [191, 217, 26, 412, 78, 8, 45, 111, 39, 326, 481, 4, 82, 20, 26, 67, 8, 4, 191, 217, 26, 412, 78, 6, 8, 45, 102, 35, 2, 114, 11, 3102, 7, 106, 3, 807, 53, 47, 54, 2, 106, 241, 205, 869, 4, 191, 217, 26], [5, 645, 20, 260, 20, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 260, 20, 409, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 315, 22, 4, 5, 19, 12], [119, 1081, 2786, 11, 1348, 1760, 201, 1275, 239, 36, 2, 2936, 208, 21, 1, 1, 14, 189, 34, 2, 70, 3, 1348, 69, 916, 173, 36, 2, 1, 1044, 3, 34, 2, 11888, 62, 517, 178, 2070, 1, 1, 201, 1275, 239, 1, 1, 264, 43, 588, 310, 343, 307], [7158, 434, 50, 2, 211, 3, 7158, 434, 7, 728, 1255, 10, 2207, 350, 4185], [1087, 5776, 2243, 7159, 11889, 79, 926, 7, 926, 6, 8, 45, 7, 183, 151, 6, 11890, 2243, 10, 7159], [27, 2, 528, 287, 36, 7160, 27, 2, 528, 287, 36, 7160], [54, 11891, 7, 13, 18, 7, 11, 7161, 205, 242, 245, 18, 1668, 101, 8, 11892, 158, 279, 140, 207, 2032, 284, 38, 2, 134, 192, 41, 1, 685, 54, 2, 106, 7161, 205, 242, 7, 1382, 166, 2, 269, 3, 691, 7, 13, 11, 3, 1283, 1334, 7], [79, 64, 111, 177, 28, 59, 5064, 6, 64, 611, 50, 28, 59, 11893], [3, 501, 297, 220, 6, 260, 75, 233, 10, 40, 112, 124, 990, 3, 501, 297, 11894, 78, 6, 260, 75, 233, 10, 40, 112, 124, 990], [424, 3, 274, 1505, 18, 3, 249, 4602, 141, 2714, 2, 3, 149, 127, 47, 2744, 3, 1505, 123, 51, 410, 968, 2, 127, 731, 113, 3586, 3, 1505, 4, 917, 11, 241, 18, 3041, 273, 7078, 11895, 1505, 11, 73, 249, 67, 2625, 3, 1505, 18, 3, 249, 65, 534, 43, 399, 12, 249, 2, 3, 2203, 1505, 389, 472, 350, 207, 424, 52, 97, 3343, 77, 3, 73, 1505, 2, 3, 149, 127, 91, 758, 249, 4, 23, 646, 1, 3, 249, 521, 6911, 1359, 3, 1505, 63, 399, 36, 2, 10, 716, 3, 646, 273, 737, 207, 51, 113, 373, 917, 10, 3, 1505, 4, 917, 273, 806, 3663, 432, 38, 2, 2450, 70, 3, 1505, 4, 917, 1, 14, 1377, 85, 3, 123], [415, 2757, 233, 625, 55, 21, 101, 39, 47, 206, 496, 196, 129, 568, 7, 1240, 107, 10, 955, 455, 7162, 7163, 1906, 120, 1757, 2549, 7162, 7163, 7109, 200, 4771, 3962, 243, 415, 2757, 233, 625, 11896, 14, 114, 30, 21, 68, 21, 285, 2, 206, 3, 432, 568, 11, 496, 955, 11, 113, 6805, 6806, 7, 408, 174, 1240, 2, 3, 955, 455, 163], [54, 29, 2, 188, 254, 53, 38, 141, 1098, 2, 995, 2348, 4351, 4352, 11, 3, 2678, 468, 99, 54, 29, 2, 3, 188, 254, 40, 749, 2678, 2759, 468, 462, 520, 173, 40, 749, 2678, 2759, 468, 462, 520, 184, 106, 8, 511, 38, 1, 1, 135], [34, 70, 957, 794, 2, 3442, 3443, 11, 553, 29, 814, 1028, 49, 3442, 3443, 11897, 11898, 11899, 11900, 2793, 2794, 4889, 4890, 243, 553, 29, 208, 2391, 16, 102, 6, 1320, 402, 7, 1167, 66, 11901, 797, 34, 9, 34, 9, 450], [205, 242, 1390, 57, 32, 136, 399, 814, 1028, 49, 1463, 11902, 243, 32, 136, 399, 208, 1463, 1828, 35, 42, 987, 365, 14, 263, 44, 23, 6, 1390, 205, 242, 57, 331, 77, 66, 21, 2, 205, 242, 161, 7164, 11, 2380, 7165, 7166, 10, 1679, 7, 7167, 3, 31], [205, 242, 1390, 57, 32, 136, 399, 814, 1028, 1, 49, 1, 7168, 11903, 1, 243, 32, 136, 399, 1, 1, 208, 7168, 1, 1, 1, 1828, 35, 42, 987, 365, 1, 1, 14, 263, 44, 23, 6, 1390, 205, 242, 57, 331, 77, 66, 21, 2, 205, 242, 161, 7164, 11, 2380, 7165, 1, 1, 7166, 10, 1679, 7, 7167, 3, 31], [91, 377, 11904, 89, 8, 468, 3, 6430, 429, 546, 11, 3023, 67, 8, 11, 80], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [245, 42, 8, 357, 331, 36, 3, 441, 7169, 11905, 591, 195, 42, 2287, 299, 1152, 67, 3, 11906, 42, 8, 496, 245, 36, 3, 7169, 220, 2, 766, 444], [110, 102, 2900, 18, 3, 3205, 18, 3, 1394, 4, 127, 2, 11907, 3, 5467, 18, 175, 11908, 11909, 1257, 1538, 36, 599, 2], [27, 2, 95, 4, 2, 87, 27, 2, 95, 4, 2, 87], [339, 121, 339, 121], [74, 407, 70, 74, 407, 70], [90, 7170, 6, 75, 112, 105, 10, 90, 7170, 2019, 133, 2, 266, 10, 1954, 1117, 24, 144, 6, 75, 112, 105, 10], [82, 20, 1293, 10, 3, 527, 82, 20, 1293, 10, 3, 527], [102, 2, 25, 130, 445, 368, 13, 11, 7171, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 1145, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 7171, 372, 56, 11910, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [110, 250, 2, 29, 88, 294, 338, 67, 164, 71, 13, 65, 562, 248, 13, 125, 20, 13, 120, 110, 250, 2, 29, 88, 294, 338, 67, 164, 71, 13, 65, 562, 248, 13, 125, 20, 13, 120, 7, 499, 83, 460, 1837, 115, 248, 13, 120, 257], [40, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 11911, 10, 78, 40, 6, 272, 198, 375, 198, 178, 387], [27, 2, 118, 3, 149, 676, 4, 417, 20, 27, 2, 118, 3, 149, 676, 4, 417, 20], [329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 51, 335, 2, 366, 12, 782, 11, 1345, 1508, 118, 72, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 86], [279, 140, 46, 31, 7172, 7, 7173, 451, 195, 38, 123, 30, 637, 158, 279, 140, 52, 11912, 11913, 46, 7173, 7, 11914, 11915, 46, 7172, 176, 1968, 163, 99, 35, 43, 84, 2, 525], [101, 2240, 6, 8, 3772, 1496, 101, 1638, 2, 223, 1714, 252, 101, 2240, 6, 8, 3772, 1496, 101, 1638, 2, 223, 1714, 252], [132, 15, 26, 32, 132, 15, 26, 32], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [27, 2, 46, 2, 3, 115, 27, 2, 46, 2, 3, 115], [7174, 2086, 2086, 78, 7175, 78, 2525, 40, 7174, 2086, 2086, 78, 7175, 78, 2525, 40], [33, 15, 46, 664, 8, 2, 43, 45, 33, 15, 46, 664, 8, 2, 43, 45, 691, 11916, 13, 11917], [279, 140, 70, 146, 279, 140, 70, 187, 8, 134], [132, 32, 57, 4, 793, 86, 3, 195, 2795, 2796, 59, 7176, 7, 7177, 7178, 59, 7179, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 195, 2795, 2796, 59, 7176, 7, 7177, 7178, 59, 7179], [149, 676, 681, 89, 8, 468, 98, 3, 469, 149, 676, 681, 89, 8, 468, 98, 3, 469], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [209, 88, 445, 3984, 1698, 1246, 31, 209, 88, 445, 3984, 1698, 1246, 31], [27, 2, 100, 772, 4, 15, 27, 2, 100, 772, 4, 15], [27, 2, 189, 472, 111, 21, 1, 1, 14, 525, 2, 189, 472, 53, 49, 8, 84, 2], [2, 50, 3658, 3659, 55, 3936, 6, 290, 133, 123, 246, 35, 14, 118, 4, 2135, 30, 911, 174, 86, 107], [32, 6, 64, 32, 6, 64], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [25, 3, 13, 11, 11918, 11919, 11920, 10, 165, 3373, 529, 110, 246, 265, 2, 25, 33, 3373, 529, 194, 7, 527, 133, 13, 11921, 11922, 7, 2948, 11923, 11924, 261, 102, 4, 161, 174, 21, 6, 4062, 18, 3, 117, 587, 86, 52], [209, 41, 31, 209, 88, 690, 31, 209, 41, 31, 209, 88, 690, 31], [41, 31, 146, 526, 1262, 49, 496, 33, 57], [686, 140, 173, 52, 10, 40, 65, 375, 18, 198, 686, 140, 173, 52, 10, 40, 65, 375, 18, 198], [1140, 940, 10, 115, 1140, 940, 10, 115, 14, 91, 377], [15, 1946, 1925, 6, 8, 45, 7180, 142, 1803, 15, 1946, 1925, 6, 8, 45, 7180, 142, 1803, 662, 51, 250, 2, 118, 3673, 18, 186, 11, 1532, 2183, 1, 1, 3119, 263, 1950, 1946, 1925, 7, 51, 1603, 10, 3673, 18, 186, 15, 3492, 248, 567, 420, 820, 3, 179], [32, 132, 102, 36, 7181, 7182, 3011, 32, 132, 102, 36, 7181, 7182, 3011], [27, 2, 29, 3, 2051, 2758, 10, 3, 459, 57, 7183, 7184, 124, 291, 292, 550, 7183, 7184, 1007, 2, 29, 2051, 7185, 39, 612, 114, 10, 424, 39, 29, 2051, 7185, 187, 829, 119, 4, 128, 126, 23, 264, 43, 178, 2, 1518, 135], [8, 84, 2, 46, 2, 459, 8, 84, 2, 46, 2, 459, 1, 1, 1756, 30, 57, 196, 7, 1098, 408, 2, 28, 169, 241, 116], [79, 13, 25, 79, 13, 25], [27, 2, 29, 128, 126, 21, 4815, 37, 29, 502, 464, 163, 1, 328, 44, 533, 7, 299, 522, 101, 1066, 42, 27, 2, 29, 2823, 1515, 53, 613, 1, 1, 1631, 11925, 11926, 7, 5746, 448, 42, 511, 3462, 1, 1, 47, 42, 84, 2, 29, 165, 1589, 1161, 11927, 11928, 501, 1148, 7, 3, 533, 7090, 53, 613, 51, 3853, 899, 294, 919], [39, 106, 1104, 11, 249, 26, 37, 438, 1411, 6, 8, 1916, 71, 9, 5210, 39, 106, 3, 1104, 11], [2425, 20, 2731, 2425, 20, 2731], [205, 242, 1413, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 4891, 4892, 205, 242, 1, 4891, 4892, 23, 6, 2404, 1, 580, 1041, 65, 1016, 3, 971, 1, 2934, 2935, 55, 2404, 1, 2934, 2935, 558, 45, 494], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [40, 15, 26, 703, 758, 286, 565, 10, 490, 6, 172, 184, 6, 96, 3, 435, 617, 40, 15, 26, 703, 758, 286, 565, 10, 490, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [191, 217, 7, 15, 1313, 31, 175, 1731, 18, 195, 7186, 7187, 11929, 11930, 38, 1092, 3, 163, 37, 51, 137, 3, 482, 252, 11931], [1283, 1334, 132, 102, 4288, 409, 1283, 1334, 132, 102, 4288, 409], [285, 3990, 1039, 1585, 1134, 595, 4, 1, 1, 47, 42, 697, 539, 285, 3990, 1039, 1585, 1134, 3990, 4, 352, 1950, 977, 364, 357, 1014, 66, 104, 1006, 24, 144, 108, 1775, 44, 197, 62, 316, 2082, 1161, 42, 1426, 2, 4666, 1459, 197, 18, 104, 155, 843, 817, 1161, 2896, 6, 1792, 2, 3990, 11932, 194, 252, 2443, 1179, 2445, 2076, 3335, 18, 261, 2701, 764, 4, 136, 1225, 62, 194, 252, 2443, 53, 3, 380, 4, 261, 364, 1717, 72, 1134, 2, 2248, 1359, 220, 47, 42, 932, 23, 1314, 2, 35, 192, 883, 305, 34, 1, 1, 1395, 669, 221, 138, 196, 8, 43, 3892, 311, 2, 2974, 2192, 2, 434, 138, 1584, 294, 3, 199, 18, 3642, 3935, 140, 1108, 53, 1879, 7, 4806, 14, 663, 104, 1037, 2, 1264, 1459, 35, 42, 327, 1792, 394, 18, 3, 220, 357, 2247], [318, 1306, 11, 789, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 1176, 1728, 154, 24, 144, 108, 848, 12, 975, 318, 1306, 11, 789, 364, 745, 858, 11, 380, 230, 36, 1111, 2, 247, 789, 18, 567, 318, 2082, 23, 701, 1446, 2697, 1292, 1794, 62, 723, 318, 4840, 357, 230, 66, 3, 863, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12], [963, 619, 133, 11, 139, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 24, 318, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 5809, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [348, 1223, 10, 717, 167, 348, 1223, 10, 717, 167], [1327, 117, 955, 37, 888, 225, 20, 1, 117, 955, 8, 1320, 546, 1, 51, 1019, 888, 3, 349, 1219, 2714, 36, 3, 797], [307, 28, 7188, 14, 1540, 32, 28, 7188, 14, 1540, 32, 1, 1, 36, 1362, 21, 264, 43, 202], [317, 10, 1814, 6, 77, 317, 10, 1814, 6, 77], [343, 307, 25, 79, 13, 365, 483, 11933, 11934, 65, 534, 2190, 34, 11, 23, 14, 196, 510, 14, 25, 79, 13, 11, 11935], [87, 89, 8, 100, 87, 89, 8, 100], [41, 89, 8, 100, 41, 89, 8, 100], [13, 97, 274, 208, 83, 1, 185, 35, 14, 50, 80, 2, 398, 21, 1, 1, 1, 135], [1644, 400, 1644, 400], [692, 20, 13, 111, 38, 1991, 3, 692, 20, 13, 33, 28, 59, 6, 30, 135], [31, 4, 191, 217, 55, 101, 1, 1, 49, 843, 31, 4, 405, 191, 217, 1, 1, 164, 177, 37, 1535, 1, 1, 611, 50, 10, 23], [223, 7189, 7190, 219, 898, 11, 3, 218, 173, 960, 120, 223, 7189, 7190, 219, 898, 11, 3, 218, 173, 960, 120], [74, 8, 45, 74, 8, 45], [25, 3, 13, 11, 11936, 11937, 10, 79, 46, 14, 25, 195, 79, 13, 2, 717, 53, 390, 6, 290, 210, 637, 4], [3, 74, 12, 3, 1691, 348, 4, 1939, 65, 175, 4561, 1208, 3641, 3, 74, 12, 3, 1691, 348, 4, 1939, 65, 175, 4561, 1208, 3641], [29, 73, 414, 48, 111, 1, 1, 38, 141, 290, 72, 31, 30, 357, 84, 2, 3408, 29, 2, 410, 2158, 11, 161, 73, 414, 48, 1, 1, 284, 38, 635, 3, 31, 6, 30, 33, 213, 1, 1, 96, 6, 3, 57, 4138, 10, 3, 31, 1, 1, 39, 118, 241, 967, 2, 2016, 3, 123, 526, 479, 2, 528, 3, 385, 213, 1, 1, 1, 2, 83, 1, 1, 448, 264, 129, 2, 353, 23, 31], [8, 84, 2, 91, 610, 4, 191, 217, 8, 84, 2, 239, 528, 20, 610, 272, 191, 217, 146, 191, 217, 622, 121, 66, 711, 921, 922], [14, 50, 14, 39, 35, 50, 80, 49, 1085, 5719, 1963, 2195, 10, 33, 977, 475, 53, 332, 96, 464], [671, 400, 925, 11, 1252, 174, 365, 483, 83, 47, 54, 2, 7191, 671, 148, 7, 73, 30, 671, 925, 185, 35, 14, 528, 2380, 2900, 10, 161, 2503, 2401, 96, 1834, 11938, 6277, 166, 30, 23, 450, 18, 1452, 67, 172, 180, 6, 1321, 2503, 2503, 6779, 2986, 46, 24, 13, 3431, 3432, 2282, 1604], [181, 29, 4, 235, 111, 1, 1, 269, 80, 3, 181, 29, 11, 235, 11939, 3, 222], [3, 163, 4965, 4, 988, 495, 233, 67, 97, 43, 1918, 332, 1488, 38, 274, 3, 233, 2, 988, 495, 67, 97, 743, 37, 71, 322, 1529, 120, 67, 4, 32, 222, 3, 4542, 6, 178, 39, 35, 14, 795], [15, 46, 31, 55, 1, 1, 5422, 164, 3, 96, 37, 329, 250, 2, 46, 308, 50, 1, 1, 1, 135], [457, 11940, 2505, 89, 8, 134, 4, 26, 11941, 1090, 3, 1536, 3, 24, 397, 131, 42, 346, 1077, 7, 13, 42, 8, 1118, 1, 4, 26, 21, 507, 4, 26, 8, 14, 114], [400, 18, 82, 20, 82, 20, 1788, 1858, 11942, 208, 3288, 1, 1, 14, 211, 83, 442, 1666, 2, 33, 148, 53, 351, 73, 148, 1, 1, 30, 135], [3697, 1616, 2, 1779, 3991, 8, 45, 7192, 118, 2142, 2, 522, 53, 18, 23, 334, 3, 1616, 11, 7192, 2, 1779, 3991, 649, 2, 43, 1478], [61, 431, 12, 3, 1375, 859, 89, 8, 134, 61, 431, 12, 3, 1375, 859, 573, 733, 1, 1, 2184], [213, 123, 30, 459, 55, 3, 459, 89, 8, 100, 10, 33, 142, 3, 167, 89, 8, 7193, 175, 532, 420, 21, 507, 10, 165, 1742, 21, 507, 213, 123, 135, 750, 3385, 3386, 1388, 414, 1363, 988, 1137, 1138, 1082, 1141], [8, 84, 2, 392, 4, 128, 126, 44, 1093, 134, 47, 243, 1282, 67, 39, 43, 336, 4, 3, 24, 128, 126, 144, 675, 14, 335, 257, 1709, 329, 47, 335, 2, 456, 398, 23, 11, 35, 581, 42, 532, 3543, 413, 581, 2, 392, 4, 30, 661, 32, 2, 23, 48, 3636, 11943, 7194, 11944, 11945, 4259, 11946, 1175, 11947, 7194, 23, 99, 392, 35, 77, 18, 83, 165, 174, 368, 44, 35, 243, 1281, 158, 12, 23, 116, 68, 35, 243, 137, 23, 32, 10, 517, 48, 7, 526, 479, 2, 392, 77, 170, 104, 213, 4, 1599, 4479, 1042, 11, 23, 48, 468, 80, 288, 68, 44, 542, 50, 129, 104, 295, 101, 7, 1109, 261, 724, 222, 688, 59, 11948, 11949, 341, 7, 116, 49, 919, 28, 31, 103, 28, 8, 4, 675, 11, 24, 3950, 3951, 1276, 120, 149, 1620, 1535, 6962], [279, 140, 140, 606, 2208, 1043, 279, 140, 140, 606, 2208, 1043, 115, 7195, 1, 2014, 3358, 170, 2157, 3992, 11950, 3619, 2763, 7196, 1, 3218, 3358, 170, 2157, 3992, 11951, 11952, 5296, 7197, 362, 11953, 11954, 11955, 1, 3218, 1298, 135, 11956, 342, 837, 5792, 11957, 7196, 1052, 1298, 606, 1043, 11958, 1770, 1, 1, 6661, 1, 279, 140, 140, 606, 89, 8, 134, 115, 7195, 1, 389, 937, 3, 606, 83, 1671, 38, 141, 1167, 1, 169, 937, 3, 606, 177, 37, 71, 3427, 7197, 362, 220, 37, 91, 173, 1, 169, 2922, 30, 837, 220, 6, 1167, 7, 3, 606, 6, 8, 1124], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [1644, 31, 208, 491, 3067, 1, 1, 49, 843, 31, 30, 1644, 140, 308, 50, 80, 2, 353, 3, 31], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [82, 20, 8, 405, 111, 1, 1, 14, 50, 2, 353, 3, 96, 31, 329, 405, 82, 20, 99, 43, 178, 4, 174, 11, 569, 1901], [519, 29, 852, 114, 3024, 3024, 7, 1110, 719, 3024, 2171, 2172, 519, 29, 852, 114, 3024, 3024, 7, 1110, 719, 3024, 2171, 2172], [191, 217, 37, 55, 1, 1, 49, 164, 96, 37, 51, 100, 191, 217, 1, 1, 1, 1, 1, 30], [620, 342, 728, 477, 1557, 1558, 620, 342, 728, 477, 1557, 1558], [620, 342, 728, 477, 1557, 1558, 620, 342, 728, 477, 1557, 1558], [519, 29, 852, 2208, 1043, 2945, 3822, 519, 29, 852, 2208, 1043, 2945, 3822], [6531, 29, 2, 11959, 2797, 11960, 190, 9, 345, 507, 37, 71, 22, 2, 122, 2, 78, 2846, 1033, 4, 3, 2797, 1822, 652, 3, 115, 107, 6, 391, 7, 3, 115, 63, 8, 1312, 62, 4342, 781, 35], [981, 1980, 976, 55, 14, 270, 80, 253, 288, 2, 1559, 981, 1980, 30, 976, 11, 249, 184, 42, 8, 2495, 7019, 7020, 632, 685, 7, 431, 549, 1906, 24, 841, 181], [1420, 3614, 982, 11, 461, 208, 21, 1, 1, 311, 2, 3, 981, 186, 31, 66, 113, 14, 50, 2, 2653, 3, 3614, 982, 349, 1193, 1275, 1193, 183, 54, 35, 50, 2, 2653, 3, 365, 31, 1193, 3, 917, 65, 141, 2043, 1, 1, 1, 1, 1, 135], [557, 542, 134, 4, 15, 51, 176, 2831, 4, 15, 7, 1961, 3, 557, 557, 542, 134, 67, 21, 134, 51, 176, 333, 695, 492, 287, 33, 15, 59, 11961, 3, 1314, 6, 183, 942, 30, 15, 59, 11962], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [782, 18, 1835, 314, 14, 206, 122, 3, 96, 181, 59, 2, 33, 41, 1, 54, 29, 2, 320, 7, 384, 3, 245, 21, 264, 134, 30, 600, 2049, 7, 11963, 11964, 41, 1, 1, 1, 354, 102, 307, 1, 1, 2820, 35], [238, 75, 90, 434, 1451, 3018, 434, 112, 124, 990, 238, 75, 1451, 3018, 434, 112, 124, 990, 1, 1, 434, 665, 1, 1, 1011, 3993, 11965, 890, 768, 2707, 378], [25, 224, 11, 7198, 7199, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 7198, 7199, 137, 13, 125, 20, 13, 25, 3], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [74, 280, 50, 2, 211, 3, 58, 74, 10, 3, 148], [279, 140, 7200, 279, 140, 7200], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [1070, 11, 1365, 2983, 1466, 4, 492, 1070, 11, 1365, 2983, 1466, 4, 492], [27, 2, 392, 4, 2, 87, 27, 2, 392, 4, 2, 87], [27, 2, 515, 191, 217, 164, 130, 441, 37, 27, 2, 515, 191, 217, 164, 130, 441, 37], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [40, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617, 40, 703, 758, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617], [846, 7201, 500, 22, 9, 500, 940, 4, 3, 372, 655, 14, 663, 846, 7201, 500, 22, 9, 500, 940, 4, 3, 372, 655, 14, 663], [57, 1091, 31, 57, 1091, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 584, 3, 209, 88, 7, 2920, 3, 2230, 1, 991, 3, 115, 7, 2920, 3, 41, 1, 396, 328, 44, 180, 6, 172, 84, 2, 91, 3, 245, 10, 41, 1, 31, 321], [382, 317, 452, 31, 382, 317, 452, 31], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [338, 193, 324, 171, 49, 250, 2, 106, 33, 324, 171, 1799, 338, 7, 21, 8, 45, 339, 167, 1000, 98, 169, 413, 11966, 3, 324, 171, 229], [110, 97, 384, 497, 294, 279, 140, 3, 121, 1101, 294, 7, 3630, 197, 116, 276, 1128, 2, 432, 1330, 1167, 279, 140, 7, 56, 11967, 11968, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 97, 384, 497, 294, 279, 140, 3, 121, 1101, 294, 7, 3630, 197, 116, 276, 1128, 2, 432, 1330, 1167, 279, 140, 7, 1837, 33, 86, 7, 21, 6, 273, 987, 23], [14, 25, 104, 299, 2, 3, 128, 126, 2550, 594, 14, 25, 104, 299, 2, 3, 128, 126, 2550, 594], [97, 91, 2210, 11, 914, 2209, 3, 229, 2, 91, 2210, 7, 2209, 455, 1260, 66, 101, 2681, 6, 1478, 4, 3387], [110, 54, 29, 2, 535, 610, 183, 54, 15, 29, 11, 917, 103, 610, 49, 357, 502, 29, 4, 15, 27, 2, 29, 610, 4, 15, 54, 29, 2, 441, 1467], [299, 523, 4, 688, 589, 3931, 832, 769, 639, 442, 388, 1, 1, 93, 59, 1, 93, 146, 1987, 200, 832, 832, 6, 75, 1, 221, 138, 1, 221, 40, 262, 1, 301, 40, 1, 108, 138, 1, 108, 56, 262, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 1649, 1175, 1, 1720, 262, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 1721, 1, 1645, 318, 1, 1648, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 36, 11, 108, 146, 200, 832, 832, 6, 75, 1, 537, 200, 114, 22, 3003, 1, 832, 3994, 27, 2, 769], [54, 2, 118, 3, 324, 440, 1496, 11969, 53, 613, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 814, 1028, 111, 4893, 4893, 55, 288, 42, 35, 310, 814, 1028, 49, 987, 2112, 288, 393, 35, 4893, 365], [15, 26, 13, 64, 15, 26, 13, 64], [299, 523, 4, 963, 619, 133, 11, 139, 36, 221, 138, 301, 138, 52, 56, 3013, 28, 56, 11970, 11971, 6903, 271, 2959, 1265, 953, 233, 9, 1094, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 93, 131, 442, 388, 93, 59, 93, 146, 963, 619, 133, 11, 139, 95, 116, 12, 221, 138, 221, 40, 3013, 301, 138, 301, 40, 293, 1586, 191, 11972, 21, 108, 138, 108, 56, 24, 1174, 154, 24, 144, 93, 1344, 131, 1784, 800, 1651, 1786, 1721, 1648, 1870, 1647, 1787, 1645, 1646, 2465, 3264, 1783, 1720, 3013, 1781, 1867, 139, 1868, 354, 230, 1649, 1175, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 4488, 11973, 2958, 1785, 4489, 228, 259, 1869, 702, 371, 93, 371, 93, 537, 154, 232, 139, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1058, 688, 131, 785, 786, 10, 2, 228, 259, 3013, 192, 787, 775, 788, 658], [15, 26, 32, 132, 15, 26, 32, 132], [161, 78, 6, 164, 315, 257, 38, 336, 44, 39, 7202, 67, 44, 855, 372, 454, 836, 39, 35, 50, 56, 4484, 182, 213, 130, 155, 204, 117, 107, 214, 2184, 146, 161, 78, 6, 164, 315, 257, 38, 336, 44, 39, 7202, 67, 44, 855, 372, 454, 836, 39, 35, 50, 78, 11974], [39, 100, 41, 39, 100, 41, 330, 179, 210, 1256, 23, 593], [40, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [21, 967, 54, 29, 2426, 2, 128, 126, 2550, 229, 21, 1, 1, 511, 97, 29, 3, 2550, 455, 5326, 4, 128, 126, 11975, 11976, 3233, 54, 2, 129, 21, 11, 2426, 29, 1, 1, 413, 1, 1, 1, 7, 384], [3388, 2379, 40, 138, 6, 260, 933, 804, 1461, 210, 111, 101, 1, 1, 30, 3, 73, 1578, 7, 2202, 44, 850, 20, 4894, 166, 47, 38, 244, 7203, 7204, 7205, 47, 244, 496, 364, 11, 3, 40, 3388, 2379, 3, 4362, 1199, 7, 4, 878, 3, 2379, 6, 260, 241, 933, 804, 364, 185, 35, 14, 663, 7, 386], [3388, 2379, 40, 138, 260, 933, 804, 1461, 210, 3388, 2379, 40, 138, 260, 933, 804, 1461, 210, 1, 1, 1, 111, 101, 1, 1, 30, 3, 73, 1578, 7, 2202, 44, 850, 20, 4894, 166, 47, 38, 244, 7203, 7204, 7205, 47, 244, 496, 364, 11, 3, 40, 3388, 2379, 3, 4362, 1199, 7, 4, 878, 3, 2379, 6, 260, 241, 933, 804, 364, 185, 35, 14, 663, 7, 386], [150, 5, 4, 5, 19, 1960, 7206, 636, 26, 150, 5, 4, 5, 19, 1960, 7206, 636, 26, 12], [874, 2080, 1795, 91, 296, 4979, 77, 1487, 2302, 201, 149, 115, 851, 208, 3960, 246, 265, 2, 781, 83, 3, 48, 4668, 11977, 1571, 934, 4, 23, 91, 296, 11978, 205, 869, 7, 1756, 166, 294, 1172, 3, 6606, 11979, 10, 3, 400, 2272, 116, 2, 116, 23, 3439, 1756, 166, 2, 421, 3, 315, 11980, 205, 869, 7, 11981, 23, 1357, 2, 3, 160, 7207, 47, 38, 1021, 2, 2652, 3, 91, 296, 10, 3, 1942, 302, 18, 149, 115, 1379, 1487, 937, 36, 7, 246, 11982, 44, 3, 48, 4532, 18, 149, 271, 42, 4, 3440, 18, 937, 23, 816, 36, 3, 693, 779, 341, 112, 23, 1765, 116, 6861, 65, 141, 11983, 713, 251, 66, 11984, 11985, 53, 188, 446, 4, 3871, 2, 23, 91, 296, 7207, 246, 102, 35, 83, 2, 737, 104, 2680, 271, 195, 1631, 393, 3, 816, 1299, 7, 183, 14, 1088, 44, 83, 3, 195, 42, 3274, 30, 3, 1357, 400, 1477, 103, 18, 1357, 400, 658, 720, 18, 3, 1357, 1042, 18, 3, 400, 420, 18, 827, 7, 400, 2272, 294, 3539, 3, 96, 222, 816, 341, 116, 49, 4, 3, 334, 53, 332, 3, 2680, 271, 116, 2926, 816, 20, 1302, 1029, 277, 1357, 103, 1840, 28, 99, 43, 1840, 30, 1959, 319, 2, 504, 83, 3, 134, 389, 3758, 3, 400, 294, 1603, 3, 1372, 864, 658, 858, 715, 275, 16, 1437, 715, 169, 3, 400, 18, 91, 296, 1357, 2272, 14, 1382, 3, 149, 195, 2, 465, 294, 3, 96, 794, 1597, 1698, 7, 1563, 3, 720, 18, 3, 1357, 816, 47, 38, 205, 2715, 6436, 7, 11986, 3, 91, 296, 816, 11, 161, 160, 1037, 68, 143, 18, 3, 115, 36, 161, 816, 1594, 302, 6, 8, 2571, 2, 3, 149, 115, 62, 351, 1312, 62, 1157, 36, 3, 58, 14, 106, 270, 166, 253, 192, 3734, 3, 7144, 10, 3, 1992, 3225, 18, 3, 179, 1942, 1594, 302, 88, 149, 115, 91, 1487, 7208, 771, 2779, 7, 88, 149, 115, 91, 1487, 7208, 771, 2779, 99, 11987, 1325, 115, 2028, 36, 23, 816, 83, 378, 7, 804, 348, 115, 264, 43, 588, 866, 66, 3, 2680, 21, 48, 129, 11, 3, 2450, 400, 600, 48, 522, 7, 3, 195, 755, 38, 3, 437, 522, 4475, 10, 3, 2680, 115, 2, 421, 3, 91, 296, 400, 573, 143, 31, 14, 29, 3, 177, 78, 818, 11, 2450, 400, 28, 755, 43, 624, 10, 174, 728, 62, 76, 58, 2, 29, 3, 78, 818, 53, 794, 40, 91, 296, 2652, 173, 40, 91, 296, 2652, 2, 211, 10, 79, 771, 571, 14, 1653, 3, 362, 173, 184, 6, 426, 771, 218, 18, 3, 693, 78, 818, 2, 211, 10, 79, 771, 571, 14, 1653, 3, 362, 173, 184, 6, 426, 771, 218, 18, 3, 693, 78, 818], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [27, 2, 876, 115, 36, 4895, 169, 3875, 2, 771, 115, 1373, 2, 876, 36, 4895, 169, 243, 4784, 2, 771, 948, 169, 327, 10, 831, 81, 11, 655, 3, 115, 456, 1128, 158, 4895, 1278, 3755, 131, 2298, 14, 4832, 23, 10, 305, 115, 222, 115, 56, 3350, 79, 948, 79, 1421, 771, 1768, 607, 129], [27, 2, 1653, 5, 19, 777, 644, 217, 3992, 10, 40, 40, 40, 7, 40, 27, 2, 1653, 5, 19, 777, 644, 217, 3992, 10, 40, 40, 40, 7, 40], [110, 106, 8, 38, 29, 2, 309, 520, 1670, 37, 71, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [25, 224, 11, 3995, 11988, 137, 13, 125, 20, 13, 25, 3], [32, 6, 64, 32, 6, 64], [15, 2493, 7209, 31, 30, 897, 1776, 2241, 359, 127, 7209, 63, 350, 7, 15, 1014, 1682, 359, 6006, 359, 127, 7, 91, 464, 4, 57, 163, 15, 264, 38, 350, 201, 1682, 2241, 127, 117, 384, 1776, 11989, 7, 99, 43, 2950, 3, 462], [62, 254, 346, 4, 348, 62, 254, 346], [27, 2, 95, 4, 2, 338, 27, 2, 95, 4, 2, 338], [148, 3389, 53, 21, 11990, 4, 7210, 5870, 11991, 124, 291, 292, 1145, 550, 7211, 7212, 31, 111, 14, 622, 163, 11992, 148, 3389, 311, 2, 11993, 4, 7210, 12, 1997, 52, 4, 45, 677, 30, 9, 210, 30, 1676, 199, 11994, 7, 11995, 1336, 2026, 5374, 14, 50, 877, 142, 56, 6737, 28, 7212, 52, 59, 7211, 223, 252], [7213, 7, 40, 219, 2, 43, 543, 2, 3, 95, 10, 32, 11, 7214, 7213, 7, 40, 219, 2, 43, 543, 2, 3, 95, 10, 32, 11, 7214, 56, 1017, 182, 213, 130, 155, 204, 117, 107, 214, 146, 6, 151, 72, 202, 675, 1009, 44, 2582, 72, 28, 59, 2, 29, 3, 24, 29, 3474, 1060], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [13, 25, 13, 25], [123, 30, 1859, 4, 190, 190, 11, 3, 163, 108, 123, 30, 1859, 4, 190, 190, 11, 3, 163, 108, 129, 3355, 3356, 11, 582, 957, 1, 1, 1381, 196, 11996], [90, 1575, 78, 4755, 115, 7215, 6, 75, 112, 10, 90, 1575, 78, 4755, 115, 7215, 6, 75, 112, 10], [243, 15, 26, 29, 1473, 495, 11997, 1741, 11998, 2718, 2737], [13, 25, 15, 866, 25, 15, 13, 53, 3, 13, 36, 3, 1253, 25, 294, 13, 125, 20, 187, 8, 134], [235, 108, 453, 38, 73, 86, 33, 480, 78, 6, 230, 39, 35, 743, 21, 207, 44, 181, 884, 4], [123, 30, 1859, 4, 190, 190, 11, 3, 163, 108, 123, 30, 1859, 4, 190, 190, 11, 3, 163, 108, 129, 3355, 3356, 11, 582, 957], [41, 984, 329, 4281, 7216, 41, 984, 329, 4281, 7216], [15, 37, 4896, 127, 89, 8, 1196, 51, 250, 2, 373, 983, 7, 189, 186, 15, 37, 4896, 127, 89, 8, 1196, 51, 250, 2, 373, 983, 7, 189, 186, 11, 127, 7, 127, 164, 37, 4896, 763, 18, 4754, 2613, 11, 1193, 4, 431, 549, 6, 67, 264, 43, 91, 772], [57, 29, 2, 235, 108, 57, 29, 2, 235, 108], [40, 81, 78, 1130, 346, 1889, 824, 2325, 81, 78, 40, 6, 75, 1, 47, 336, 44, 2325, 11999, 7, 38, 22, 163, 464, 1, 40, 81, 78, 1130, 346, 1889, 824, 1, 12000, 138], [1522, 18, 104, 863, 24, 318, 154, 24, 144, 1726, 380, 1051, 36, 40, 595, 4, 1, 1, 439, 1084, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 318, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446], [1413, 660, 1413, 660], [70, 33, 15, 3295, 70, 33, 15, 3295], [24, 1986, 8, 10, 3, 142, 24, 1986, 8, 10, 3, 142], [27, 2, 463, 2342, 27, 2, 463, 2342], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [27, 2, 119, 2775, 27, 2, 119, 2775], [1228, 3086, 4730, 7, 4819, 1228, 3086, 4730, 7, 4819], [27, 2, 29, 209, 690, 88, 12001, 1037, 37, 1969, 29, 1, 1, 14, 114, 163, 57, 11, 37, 464, 7, 129, 222, 1, 1, 1688, 5832, 428, 828, 794], [8, 84, 2, 46, 2, 79, 8, 84, 2, 46, 2, 79], [15, 26, 32, 132, 15, 26, 32, 132], [47, 42, 27, 2, 1386, 23, 225, 20, 36, 2221, 55, 1, 1, 39, 35, 14, 295, 581, 1, 1, 47, 42, 27, 2, 1386, 23, 225, 20, 36, 2221, 1, 1, 47, 54, 50, 53, 23, 6, 313, 763, 225, 20, 184, 47, 97, 1386], [32, 132, 32, 132], [1031, 122, 7217, 267, 12, 76, 169, 2289, 1640, 167, 18, 7217, 3342, 12002, 56, 7, 13, 169, 91, 37, 167, 163, 23, 167], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 585, 26, 1550, 852, 150, 5, 4, 5, 19, 585, 26, 1550, 852, 12], [15, 26, 29, 1473, 208, 188, 1730, 101, 47, 1049, 2, 102, 35, 11, 3, 29, 722, 11, 12003, 12004, 53, 179, 18, 3, 28, 12005, 12006, 12007, 4, 15, 397, 26, 52, 1741, 39, 35, 308, 766, 3, 102, 207, 44, 21, 39, 269, 3, 29, 2, 6402, 1156], [349, 577, 7218, 2144, 14, 100, 72, 21, 34, 7, 574, 2, 3653, 3654], [57, 1004, 57, 1004], [9, 466, 10, 121, 9, 466, 10, 121], [13, 25, 226, 12008, 2305, 1288, 11, 13, 25, 11, 12009, 1, 2305, 408, 3, 13], [3387, 29, 6, 346, 111, 101, 33, 3387, 29, 6, 346, 7, 54, 2, 38, 3, 29, 11, 12010, 5, 1815, 14, 50, 2, 398, 21, 12011, 12012, 120, 162, 667, 368, 1322, 5131, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [27, 2, 46, 2, 15, 2948, 1376, 166, 514, 3, 94, 51, 1337, 434, 4, 3, 90, 1817, 1818, 696, 75, 1, 180, 63, 84, 2, 778, 29, 63, 1368, 746, 3, 434, 997, 251, 98], [14, 544, 12013, 964, 4, 1865, 3390, 3391, 41, 14, 544, 672, 964, 4, 1865, 3390, 3391, 41, 223, 65, 1126, 3, 24, 7, 102, 35, 2, 308, 544, 177, 964, 36, 283, 672, 1, 1, 7, 1, 1, 1, 7, 12014], [32, 64, 4, 226, 32, 64, 4, 226], [9, 29, 2, 309, 520, 55, 1, 1, 39, 12015, 2, 33, 309, 520, 33, 28, 6, 12016, 185, 35, 14, 114, 21, 14, 91, 3, 163, 167], [94, 1337, 12017, 4, 90, 1706, 696, 75, 12018, 63, 27, 2, 29, 241, 744, 2641, 635, 18, 3, 94, 1, 180, 63, 84, 2, 778, 44, 31, 63, 321, 746, 3, 1337, 434, 997, 251, 98], [41, 6, 8, 405, 41, 6, 8, 405], [14, 132, 3, 26, 28, 12, 4769, 255, 14, 132, 3, 26, 28, 12, 4769], [73, 79, 115, 7219, 97, 122, 2, 3, 7220, 2178, 192, 2832, 247, 73, 79, 115, 7219, 97, 122, 2, 3, 7220, 2178, 192, 2832, 247], [1878, 2098, 31, 1878, 2098, 31], [32, 64, 32, 64], [14, 1040, 7221, 9, 14, 1040, 3, 348, 7221, 12019, 1, 16, 426, 3198], [13, 25, 2, 46, 2, 15, 1245, 2, 43, 84, 2, 199, 62, 2114, 777, 4, 24, 13, 25, 2, 46, 2, 15, 1245, 2, 43, 84, 2, 199, 62, 2114, 777, 4, 24], [15, 6, 8, 45, 37, 95, 10, 792, 37, 203, 152, 825, 1, 134, 1272], [15, 6, 8, 45, 37, 95, 10, 792, 37, 203, 152, 825, 1, 134, 1272], [15, 6, 8, 45, 37, 95, 10, 792, 37, 203, 152, 825, 1, 134, 1272], [150, 5, 4, 5, 19, 26, 847, 150, 5, 4, 5, 19, 26, 847, 12], [15, 26, 95, 77, 361, 2668, 42, 290, 210, 30, 15, 26, 160, 52, 6, 637, 77, 456, 7, 942, 316, 467, 420, 53, 18, 172], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [25, 3, 13, 11, 10, 15, 160, 15, 14, 25, 13, 11, 26, 28, 376, 15, 6, 64, 172], [15, 397, 89, 8, 100, 55, 12020, 1, 1, 54, 15, 343, 307, 310, 67, 97, 122, 36, 33, 142, 1, 1, 1, 3, 28, 1737, 6, 8, 230, 248, 21, 36, 1033, 115, 1, 1, 14, 1758], [15, 75, 155, 75, 4, 90, 1277, 271, 15, 75, 155, 75, 4, 90, 1277, 271, 129], [78, 75, 227, 37, 2408, 1182, 222, 3, 312, 65, 141, 2782, 37, 12, 1653, 482, 2952, 12021, 118, 12022, 122, 2, 71, 78, 293, 22, 133, 2683, 103, 7222, 12023, 12024, 26, 1333, 12025, 26, 159, 15, 160, 673, 86], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [78, 193, 55, 1, 1, 3, 78, 133, 4, 12026, 6, 2155, 21, 97, 43, 3487, 4, 15, 35, 39, 509, 3402, 18, 3, 12027, 781, 35, 1, 1, 30, 3, 135, 18, 35], [15, 26, 52, 542, 134, 9, 160, 359, 39, 43, 670, 129], [15, 6, 8, 45, 15, 6, 8, 45], [9, 133, 2, 3, 15, 52, 55, 1, 1, 47, 38, 9, 133, 2, 3, 15, 52, 1, 1, 9, 133, 2, 3, 71, 78, 6957], [699, 30, 15, 8, 285, 55, 1, 1, 47, 54, 104, 50, 851, 1230, 1, 699, 30, 15, 6, 8, 285, 1, 47, 384, 23, 37, 71, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [150, 5, 4, 5, 19, 563, 168, 20, 575, 1567, 150, 5, 4, 5, 19, 563, 168, 20, 575, 1567, 12], [15, 8, 45, 15, 94, 15, 8, 45, 15, 94, 12028, 12029, 1455, 2074], [15, 6, 1478, 75, 14, 91, 37, 71, 36, 15, 1, 1, 1, 1, 1, 30, 2685, 556, 714, 135], [150, 5, 4, 5, 19, 249, 1235, 1236, 7223, 150, 5, 4, 5, 19, 249, 1235, 1236, 7223, 12], [15, 8, 45, 15, 8, 699], [15, 26, 6, 8, 45, 113, 190, 39, 8, 95, 4], [15, 397, 8, 285, 169, 3, 37, 443, 195, 952, 14, 91, 3, 37, 71, 163], [193, 30, 751, 7, 74, 4897, 7224, 12, 3268, 6158, 3, 74, 6, 8, 646, 1, 1, 68, 390, 3249, 829, 3, 513, 556, 1, 390, 97, 176, 1096, 3, 74, 2140, 67, 680, 1101, 77], [620, 342, 174, 7225, 620, 342, 174, 7225], [280, 73, 471, 3859, 280, 73, 471, 3859], [682, 7226, 3931, 8, 806, 98, 4, 1103, 146, 2625, 3, 245, 36, 682, 7226, 3931, 8, 806, 98, 4, 1103], [110, 97, 176, 77, 15, 481, 10, 1561, 475, 2271, 112, 310, 1272, 3831, 14, 50, 110, 479, 2, 176, 77, 15, 481, 53, 492, 173, 36, 1561, 475, 733, 248, 2, 106, 21, 112, 310, 3831, 11, 149, 367, 186, 367, 7, 888, 367, 67, 680, 1101, 599, 172], [2065, 21, 282, 2854, 2642, 2643, 2065, 21, 282, 2854, 2642, 2643], [193, 30, 637, 4, 2642, 2643, 1680, 110, 97, 95, 158, 33, 142, 1, 1, 37, 71, 3, 1999, 2452, 748, 23, 1427, 7, 3, 640, 401, 185, 8, 43, 2162], [58, 94, 12, 90, 1277, 271, 113, 58, 94, 12, 90, 1277, 2504, 7, 155, 600, 42, 952, 15, 41, 129], [155, 8, 45, 4, 90, 271, 86, 1573, 428, 75, 454, 67, 172, 558, 45, 494, 41, 530, 699, 2, 78, 129], [82, 791, 20, 7227, 97, 43, 1063, 82, 791, 20, 3897, 9, 791, 7227, 3, 71, 36, 3, 3912, 664], [148, 8, 4128, 10, 148, 8, 937], [164, 435, 891, 4, 7228, 329, 867, 77, 245, 192, 2256, 733, 288, 39, 1796, 3, 435, 891, 164, 435, 891, 4, 7228, 329, 867, 77, 245, 192, 2256, 733, 288, 39, 1796, 3, 435, 891], [472, 149, 676, 113, 12030, 21, 50, 1, 14, 622, 2, 3, 96, 186, 263, 107, 1, 47, 42, 8, 84, 2, 955, 1104, 14, 50, 10, 23], [15, 374, 3926, 3820, 140, 6, 8, 45, 15, 374, 3926, 3820, 140, 6, 8, 45], [25, 3, 13, 11, 12031, 12032, 10, 15, 160, 15, 208, 21, 101, 1, 1, 39, 35, 14, 43, 207, 450, 7, 25, 3974, 13, 2, 1102], [1561, 475, 27, 2, 320, 4898, 2, 117, 149, 55, 101, 1, 1, 47, 42, 27, 2, 320, 143, 4898, 2, 117, 62, 149, 294, 1561, 475, 1, 1, 14, 114, 7, 353, 662, 1, 1, 698, 63, 331, 2, 67, 8, 268, 1, 1, 1156], [381, 7229, 9, 87, 381, 7229, 9, 87], [15, 397, 26, 7, 26, 111, 1, 38, 141, 250, 67, 1431, 236, 33, 15, 397, 2, 179, 835, 46, 13, 14, 50, 2, 25, 33, 15, 46, 7, 893, 2, 3, 179, 53, 332, 33, 835, 46, 1342], [79, 286, 198, 1035, 559, 40, 79, 286, 198, 1035, 559, 40], [13, 8, 45, 11, 28, 12033, 12034, 12035, 124, 291, 292, 7230, 7231, 12036, 12037, 550, 2985, 7230, 7231, 13, 31, 720, 313, 111, 101, 6901, 274, 3, 13, 532, 420, 534, 67, 3, 31, 2161, 3, 179, 12038, 97, 95, 4, 39, 35, 14, 663, 510, 411, 161, 73, 149, 685, 219, 2, 134, 10, 740, 662], [150, 5, 4, 5, 19, 563, 168, 20, 575, 262, 150, 5, 4, 5, 19, 563, 168, 20, 575, 262, 12], [79, 286, 198, 1035, 559, 2451, 79, 286, 198, 1035, 559, 2451], [863, 24, 318, 7232, 24, 144, 12, 7233, 6, 75, 112, 105, 10, 863, 24, 318, 7232, 24, 144, 12, 7233, 6, 75, 112, 105, 10], [79, 286, 198, 1035, 559, 11, 40, 79, 286, 198, 1035, 559, 11, 40], [12039, 75, 1892, 12040, 2, 57, 6, 8, 45, 78, 138, 9, 853, 2, 769, 1979, 78, 37, 446, 37, 129, 78, 56, 8, 1150, 78, 271, 90], [367, 331, 77, 192, 1561, 475, 39, 43, 268, 4, 116, 110, 912, 205, 242, 53, 331, 367, 2, 33, 918, 57, 196, 192, 1561, 475, 12, 124, 358, 116, 67, 2196, 1709, 21, 273, 65, 8, 141, 268], [13, 25, 13, 25], [1561, 475, 6, 8, 45, 208, 21, 101, 1, 310, 161, 1561, 475, 6, 8, 45, 39, 35, 14, 114, 85, 942], [235, 108, 453, 235, 108, 453], [2163, 18, 348, 2040, 2378, 54, 2453, 1209, 11, 445, 2163, 18, 421, 348, 2040, 2378, 12, 197, 1209, 5029, 3, 610, 42, 4, 3842, 2066, 673, 7, 6690, 6, 2044, 1, 483, 66, 483, 53, 316, 7, 316, 2855, 42, 4414, 4, 3, 131, 561, 6, 601, 77, 18, 753, 1, 1, 2453, 1209, 1992, 254, 426, 2282, 753, 2, 504, 7, 239, 261, 421, 348, 2040, 2378, 1, 1, 7234, 251, 98, 7, 1460, 18, 131, 2106, 12, 23, 1209, 1, 1, 1, 1, 30], [9, 3198, 7235, 3501, 1171, 168, 20, 12041, 3150, 2621, 3198, 7235, 12042, 1, 1, 4, 168, 20, 3198, 891, 39, 8, 43, 901], [3, 238, 2446, 1719, 2446, 7, 2446, 4, 1451, 3018, 434, 12, 90, 6, 75, 112, 105, 10, 3, 238, 2446, 1719, 2446, 7, 2446, 4, 1451, 3018, 434, 12, 90, 6, 75, 112, 105, 10], [188, 21, 190, 15, 320, 629, 30, 57, 89, 8, 507, 365, 483, 208, 83, 1, 14, 50, 80, 510, 207, 44, 3, 15, 629, 867, 30, 57, 99, 134, 53, 613, 53, 576], [307, 3083, 36, 457, 2505, 8, 45, 3083, 36, 457, 2505, 8, 45, 27, 2, 127, 14, 91, 3, 772], [95, 10, 15, 13, 54, 2, 119, 111, 14, 525, 330, 2, 119, 33, 79, 13, 53, 21, 63, 393, 2, 2365, 172, 39, 95, 4, 10, 15, 691, 6540, 223, 5520, 14, 525, 510], [210, 51, 578, 2611, 1152, 307, 14, 50, 2, 366, 158, 3, 210, 351, 4, 377], [307, 15, 3129, 8, 1014, 83, 195, 4, 1689, 3112, 31, 30, 15, 3129, 91, 3, 37, 71, 163], [33, 167, 246, 12043, 7236, 7, 955, 30, 3, 177, 452, 407, 706, 545, 7, 65, 7237, 110, 38, 355, 274, 33, 148, 828, 7, 169, 3, 119, 541, 116, 304, 130, 333, 7238, 30, 2353, 136, 33, 167, 246, 1896, 77, 7236, 30, 3, 177, 71, 452, 407, 706, 545, 7, 65, 7237, 23, 1896, 77, 185, 2326, 53, 2335, 53, 541, 858, 51, 49, 137, 333, 1, 1, 1633, 21, 63, 207, 1083, 44, 3, 167, 878, 886, 30, 241, 136, 10, 2293, 6769, 7, 38, 2, 2634, 243, 170, 33, 148], [1575, 3996, 12, 90, 6, 1656, 112, 105, 10, 1575, 3996, 12, 90, 6, 1656, 112, 105, 10], [113, 370, 37, 55, 1, 1, 51, 3, 1170, 176, 113, 370, 180, 413, 912, 4, 113, 151, 6, 9, 136, 53, 96, 391, 464, 1, 185, 35, 50, 2, 795, 3, 37, 14], [40, 168, 20, 78, 715, 275, 14, 715, 3, 78, 510, 7, 114, 68, 21, 507, 257, 168, 20, 6, 8, 45, 11, 190, 113, 161, 21, 674, 6, 10, 1316], [133, 2, 522, 1438, 434, 434, 7, 522, 1438, 434, 6, 75, 12, 12044, 105, 133, 2, 522, 1438, 434, 769, 22, 138, 809, 522, 1438, 434, 1, 133, 2, 522, 1438, 434, 769, 22, 138, 809, 522, 1438, 434, 1, 133, 2, 522, 1438, 434, 769, 22, 138, 809, 522, 1438, 434], [363, 50, 2, 119, 3, 318, 127, 107, 36, 570, 314, 4095, 2, 3361, 47, 12045, 330, 73, 24, 12046, 358, 570, 12047, 3361, 363, 50, 2, 119, 3, 318, 127, 107, 36, 570, 314, 4095, 2, 3361], [8, 84, 2, 326, 218, 4, 41, 8, 84, 2, 326, 218, 4, 41], [27, 2, 320, 181, 30, 844, 4765, 27, 2, 320, 181, 30, 844, 4765], [243, 816, 319, 279, 140, 111, 3344, 63, 10, 1316, 51, 104, 181, 63, 331, 372, 593, 7, 201, 3854, 2, 91, 21, 10, 33, 955, 858, 389, 3, 456, 816, 10, 949, 263, 2050, 151, 6, 804, 299, 2077, 816, 261, 1094, 264, 43, 1601, 2, 746, 713, 207, 2032, 23, 713, 23, 6, 3, 2245, 816, 35, 8, 6280, 3, 518, 23, 65, 10, 161, 195, 1892, 3, 12048, 1094, 4, 2645, 30, 195, 12049, 2, 1378, 448, 42, 45, 899, 30, 161, 740, 106, 8, 1262, 21, 6, 3, 135, 4624, 2, 2652, 456, 1094, 1892, 2, 83, 195, 83, 12, 3, 179, 116, 3, 518, 18, 576, 816, 63, 44, 161, 1378, 1843, 428, 8, 2218, 11, 272, 655, 514, 3, 334], [123, 30, 7239, 86, 3537, 7, 6959, 10, 33, 7239, 12050, 3, 452, 65, 201, 141, 12051, 12052, 11, 241, 12053, 567, 12054, 1573, 410, 3, 452, 12055], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [14, 386, 2243, 382, 148, 4899, 201, 2123, 208, 491, 14, 386, 2243, 382, 148, 4899, 201, 2123, 4, 91, 377, 781, 11, 3, 466, 7, 7240, 135], [12056, 148, 208, 491, 3866, 106, 8, 253, 1239, 393, 3, 12057, 7096, 266, 3, 61, 864, 7241, 1439, 1282, 355, 195, 4, 3320, 33, 116, 6, 343, 1601, 11, 117, 12058, 7, 12059, 18, 3, 131, 7, 269, 82, 3348, 207, 68, 285, 1382, 148, 4, 480, 14, 50, 68, 35, 39, 2107, 2, 711, 7242, 711, 7242, 38, 1214, 341, 99, 884, 2, 3320], [15, 26, 32, 64, 15, 26, 32, 64], [54, 1197, 2178, 2, 528, 54, 1197, 2178, 2, 528], [32, 453, 365, 334, 14, 1540, 3, 32, 18, 33, 2070, 711, 12060, 12061, 12062, 135], [1140, 65, 141, 336, 4, 33, 148, 177, 1140, 65, 141, 336, 4, 33, 148, 14, 2016, 3, 179, 1, 1, 1, 1, 1, 1, 135], [87, 87], [692, 20, 13, 55, 1, 692, 20, 13, 1220, 14, 25], [827, 18, 846, 40, 40, 846, 7, 40, 744, 205, 242, 827, 18, 846, 40, 40, 846, 7, 40, 744, 205, 242], [461, 31, 55, 1, 1, 11, 3, 443, 570, 314, 424, 3, 556, 973, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 135], [110, 39, 8, 122, 2, 76, 56, 2789, 2790, 1, 182, 1, 213, 130, 155, 204, 1, 117, 107, 1, 214, 1, 146, 39, 8, 122, 2, 76], [174, 174], [4575, 429, 75, 112, 124, 990, 4575, 429, 75, 112, 124, 990, 1, 271, 73, 12063, 1, 82, 20, 12064, 160, 78], [14, 50, 206, 181, 767, 2, 33, 41, 55, 21, 101, 185, 35, 14, 206, 181, 767, 2, 33, 41, 33, 59, 6, 12065], [58, 94, 6420, 4195, 48, 6, 531, 75, 12, 124, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [46, 31, 46, 31], [24, 46, 31, 24, 46, 31], [87, 11, 191, 87, 11, 191], [40, 1951, 318, 37, 252, 7243, 7244, 7245, 40, 1951, 318, 37, 252, 7243, 7244, 7245], [27, 2, 436, 822, 455, 27, 2, 436, 822, 455], [25, 15, 26, 13, 11, 28, 7246, 25, 15, 26, 13, 11, 28, 7246], [150, 5, 4, 5, 19, 162, 2466, 150, 5, 4, 5, 19, 162, 2466, 12], [28, 351, 1000, 98, 44, 1086, 1140, 10, 3, 213, 28, 351, 1000, 98, 44, 1086, 1140, 10, 3, 213, 1, 635, 3, 28, 2, 715, 3, 115, 53, 180, 63, 27, 2, 100, 12066, 835, 1, 31, 321], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [14, 946, 519, 29, 36, 34, 9, 2, 1516, 12067, 12068, 36, 6857, 6858, 219, 519, 32, 1160, 2, 3, 591, 18, 3, 1324, 1, 1, 21, 6, 311, 2, 2365, 10, 332, 34, 9], [2951, 7247, 652, 641, 297, 78, 7248, 362, 7, 7249, 362, 42, 323, 75, 112, 124, 10, 105, 2951, 7247, 652, 641, 297, 78, 7248, 362, 7, 7249, 362, 42, 323, 75, 112, 124, 10, 105], [27, 2, 46, 2, 408, 130, 57, 32, 27, 2, 46, 2, 408, 130, 57, 32], [61, 94, 90, 24, 203, 76, 60, 6, 75, 12, 124, 105, 10, 48, 6, 98, 10, 640, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 2068, 48, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1205, 27, 2, 29, 2, 1537, 2, 1214, 4, 88, 27, 2, 29, 2, 1537, 2, 1214, 4, 88], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [299, 523, 4, 963, 619, 133, 11, 139, 36, 221, 138, 52, 56, 2467, 28, 56, 7250, 7251, 7252, 271, 190, 953, 233, 9, 399, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 439, 1084, 47, 42, 697, 104, 24, 1174, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 2467, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1727, 725, 724, 222, 194, 1107, 121, 902, 183, 1150, 53, 3, 7253, 7254, 7255, 3022, 6, 130, 79, 801, 44, 2582, 72, 220, 2, 2, 1653, 252, 4, 517, 196, 198, 7256, 10, 517, 142, 10, 667, 58, 573, 3, 3997, 7257, 7258, 3, 222, 11, 23, 194, 587, 44, 6, 3, 3997, 3444, 3328, 3, 179, 252, 1459, 3, 7259, 6, 437, 2, 3, 3532, 447, 62, 194, 72, 902, 6, 4748, 66, 3, 217, 184, 2633, 102, 71, 2, 1150, 194, 78, 2, 1653, 1832, 1107, 30, 2346, 2683, 3, 194, 78, 2633, 466, 2, 3, 217, 7, 3, 220, 3732, 558, 312, 902, 1687, 10, 247, 7, 6, 304, 4, 217, 78, 529, 1108, 53, 130, 480, 1521, 7260, 200, 3401, 78, 890, 78, 7261, 53, 613, 53, 165, 79, 529, 2701, 4, 902, 38, 183, 141, 7262, 66, 567, 2455, 53, 2720, 11, 7263, 1231, 1109, 2456, 1470, 2457, 2458, 2459, 2460, 2461, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 963, 619, 133, 11, 139, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 2467, 221, 247, 301, 138, 301, 247, 301, 138, 1057, 3998, 998, 133, 903, 1646, 801, 139, 108, 136, 108, 138, 108, 56, 24, 1174, 154, 24, 144, 95, 116, 12, 929, 354, 230, 800, 930, 904, 93, 578, 136, 905, 589, 59, 906, 634, 589, 59, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 154, 232, 139, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1058, 93, 59, 93, 146, 963, 619, 133, 11, 139, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 2467, 221, 247, 301, 138, 301, 247, 301, 138, 1057, 3998, 998, 133, 903, 1646, 801, 139, 108, 136, 108, 138, 108, 56, 24, 1174, 154, 24, 144, 95, 116, 12, 929, 354, 230, 800, 930, 904, 93, 578, 136, 905, 589, 59, 906, 634, 589, 59, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 154, 232, 139, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1058, 325], [13, 25, 56, 1017, 2698, 182, 213, 130, 155, 204, 117, 107, 214, 146, 55, 39, 35, 14, 386, 10, 33, 88, 13, 2, 170], [70, 10, 88, 29, 34, 9, 70, 10, 88, 29, 34, 9], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [34, 70, 10, 258, 34, 70, 10, 258], [299, 523, 4, 963, 619, 133, 11, 139, 36, 221, 138, 1, 52, 56, 2467, 1, 28, 56, 7250, 7251, 7252, 1, 271, 190, 1, 953, 233, 9, 399, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 24, 1174, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 2467, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725, 1, 1, 1, 724, 222, 1, 1, 194, 1107, 121, 902, 183, 1150, 53, 3, 7253, 7254, 7255, 3022, 6, 130, 79, 801, 44, 2582, 72, 220, 2, 2, 1653, 252, 4, 517, 196, 198, 7256, 10, 517, 142, 10, 667, 58, 573, 3, 3997, 7257, 7258, 3, 222, 11, 23, 194, 587, 44, 6, 3, 3997, 3444, 3328, 3, 179, 252, 1459, 3, 7259, 6, 437, 2, 3, 3532, 447, 62, 194, 1, 1, 72, 902, 6, 4748, 66, 3, 217, 184, 2633, 102, 71, 2, 1150, 194, 78, 2, 1653, 1832, 1107, 30, 2346, 2683, 3, 194, 78, 2633, 466, 2, 3, 217, 7, 3, 220, 3732, 558, 312, 902, 1687, 10, 247, 7, 6, 304, 4, 217, 78, 529, 1108, 53, 130, 480, 1521, 7260, 200, 3401, 78, 890, 78, 7261, 53, 613, 53, 165, 79, 529, 2701, 4, 902, 38, 183, 141, 7262, 66, 567, 2455, 53, 2720, 11, 7263, 1231, 1109, 1, 2456, 1470, 2457, 2458, 1, 2459, 2460, 1, 2461, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 963, 619, 133, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 2467, 1, 221, 247, 1, 301, 138, 1, 301, 247, 1, 301, 138, 1057, 3998, 998, 1, 133, 903, 1646, 1, 801, 139, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 24, 1174, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1058, 1, 1, 1, 1, 93, 59, 1, 93, 146, 963, 619, 133, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 2467, 1, 221, 247, 1, 301, 138, 1, 301, 247, 1, 301, 138, 1057, 3998, 998, 1, 133, 903, 1646, 1, 801, 139, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 24, 1174, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 1307, 66, 29, 159, 234, 109, 1058, 325], [60, 94, 1212, 361, 92, 69, 60, 6, 75, 112, 49, 105, 10, 48, 6, 98, 10, 640, 12069, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 29, 48, 27, 2, 29, 48], [185, 35, 14, 50, 236, 98, 15, 33, 28, 56, 7, 13, 106, 8, 134, 55, 1, 185, 35, 14, 50, 236, 98, 15, 33, 28, 56, 7, 13, 106, 8, 134], [7264, 1714, 37, 51, 250, 2, 946, 2, 113, 574, 2, 7265, 3702, 7264, 1714, 37, 51, 250, 2, 946, 2, 113, 574, 2, 7265, 3702, 49, 164, 3, 177, 37, 51, 250, 2, 946, 2, 113, 698, 249, 1714, 973, 12070, 4, 469, 1385, 840, 185, 8, 43, 2912], [27, 2, 122, 2, 1343, 27, 2, 122, 2, 1343], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [299, 523, 277, 4, 4900, 285, 1179, 1292, 47, 42, 697, 597, 1775, 3, 293, 12, 6, 12071, 1179, 513, 261, 3249, 42, 304, 2, 1740, 1871, 2701, 10, 194, 293, 44, 185, 43, 7132, 2, 7133, 7134, 30, 200, 1552, 1653, 252, 62, 90, 72, 2975, 30, 1446, 29, 3, 1164, 18, 23, 513, 185, 43, 304, 11, 710, 2249, 62, 3335, 18, 3, 2247, 293, 1, 1, 1192, 10, 161, 155, 5946, 47, 42, 1679, 23, 53, 933, 2247, 12072, 2307, 597, 36, 23, 221, 65, 141, 940, 1379, 161, 217, 1885, 14, 1247, 1395, 23, 138, 196, 7, 3462, 3, 293, 11, 143, 1410, 12073, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 53, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 4900, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 1985, 11, 4900, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 539, 1723, 1973, 173, 909, 1113, 352, 977, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 1047, 7266, 3680, 1, 301, 138, 1, 301, 247, 1, 133, 903, 977, 1, 801, 139, 1, 352, 819, 644, 1, 352, 233, 252, 1, 28, 296, 1983, 79, 1582, 3999, 2990, 4901, 1, 293, 730, 4000, 144, 1, 315, 919, 993, 2101, 505, 3025, 3026, 1148, 522, 4001, 3027, 3028, 1113, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 69, 797, 539, 1, 173, 56, 2101, 280, 1113, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 1723, 1973, 173, 909, 1113, 352, 977, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 3745, 539, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 12074, 1404, 5970, 671, 1405, 1, 139, 615, 1581, 1581, 1746, 1, 427, 1, 1, 1, 512, 352, 1780, 2101, 505, 3025, 3026, 1148, 522, 4001, 3027, 3028, 1113, 1, 1, 512, 352, 40, 730, 4000, 144, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 1394, 1317, 1234, 12075, 1, 1234, 1234, 259, 1356, 845, 960, 228, 1423, 1, 1328, 175, 2797, 1, 4737, 476, 228, 644, 2101, 1, 557, 228, 227, 505, 3025, 1, 227, 227, 1178, 3026, 7267, 1, 228, 227, 7268, 522, 7269, 1, 228, 1177, 4350, 3027, 3028, 1, 228, 259, 1113, 352, 1, 228, 1310, 227, 3096, 730, 7270, 1, 306, 1002, 478, 227, 7271, 144, 3303, 1, 227, 306, 259, 3304, 2087, 1, 259, 228, 979, 3305, 1, 175, 306, 4573, 7272, 1, 175, 1476, 478, 979, 166, 1, 26, 774, 954, 1392, 296, 7273, 1, 227, 228, 175, 79, 1, 476, 227, 3999, 1, 1112, 2990, 1, 228, 259, 557, 7274, 2899, 1, 228, 1356, 259, 7275, 737, 2480, 1, 557, 259, 7276, 505, 4002, 1, 259, 228, 227, 4538, 11, 1, 1178, 228, 356, 131, 4539, 1, 7277, 1, 7278, 1, 259, 226, 226, 7279, 1, 7280, 1, 259, 557, 834, 505, 1, 259, 557, 7281, 4590, 1, 259, 476, 259, 3323, 131, 56, 1, 476, 227, 259, 4807, 4003, 1, 227, 2101, 280, 1113, 1, 557, 259, 7282, 103, 7283, 1, 306, 1463, 226, 845, 1346, 7284, 1113, 1, 68, 7285, 243, 1, 259, 4004, 962, 1, 227, 1950, 352, 1, 228, 227, 8, 336, 1, 228, 228, 228, 228, 476, 862, 4004, 962, 1, 476, 557, 478, 1178, 1355, 1, 7286, 1, 1178, 478, 834, 1, 427, 643, 1, 1, 93, 59, 1, 93, 146, 539, 1723, 1973, 173, 909, 1113, 352, 977, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 247, 1, 221, 138, 1057, 1047, 7266, 3680, 1, 301, 138, 1, 301, 247, 1, 133, 903, 977, 1, 801, 139, 1, 352, 819, 644, 1, 352, 233, 252, 1, 28, 296, 1983, 79, 1582, 3999, 2990, 4901, 1, 293, 730, 4000, 144, 1, 315, 919, 993, 2101, 505, 3025, 3026, 1148, 522, 4001, 3027, 3028, 1113, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 2246, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 69, 797, 539, 1, 173, 56, 2101, 280, 1113, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 1723, 1973, 173, 909, 1113, 352, 977, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 3745, 539, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 12076, 1404, 4739, 671, 1405, 1, 139, 615, 1581, 1581, 1746, 1, 427, 1, 1, 1, 512, 352, 1780, 2101, 505, 3025, 3026, 1148, 522, 4001, 3027, 3028, 1113, 1, 1, 512, 352, 40, 730, 4000, 144, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 1394, 1872, 1234, 1, 1234, 1234, 175, 1356, 1178, 960, 1112, 115, 1, 1936, 228, 851, 1, 4737, 476, 228, 644, 2101, 1, 557, 228, 227, 505, 3025, 1, 227, 227, 1178, 3026, 7267, 1, 228, 227, 7268, 522, 7269, 1, 228, 1177, 4350, 3027, 3028, 1, 228, 259, 1113, 352, 1, 228, 1310, 227, 3096, 730, 7270, 1, 306, 1002, 478, 227, 7271, 144, 3303, 1, 227, 306, 259, 3304, 2087, 1, 259, 228, 979, 3305, 1, 175, 306, 4573, 7272, 1, 175, 1476, 478, 979, 166, 1, 26, 774, 954, 1392, 296, 7273, 1, 227, 228, 175, 79, 1, 476, 227, 3999, 1, 1112, 2990, 1, 228, 259, 557, 7274, 2899, 1, 228, 1356, 259, 7275, 737, 2480, 1, 557, 259, 7276, 505, 4002, 1, 259, 228, 227, 4538, 11, 1, 1178, 228, 356, 131, 4539, 1, 7277, 1, 7278, 1, 259, 226, 226, 7279, 1, 7280, 1, 259, 557, 834, 505, 1, 259, 557, 7281, 4590, 1, 259, 476, 259, 3323, 131, 56, 1, 476, 227, 259, 4807, 4003, 1, 227, 2101, 280, 1113, 1, 557, 259, 7282, 103, 7283, 1, 306, 1463, 226, 845, 1346, 7284, 1113, 1, 68, 7285, 243, 1, 259, 4004, 962, 1, 227, 1950, 352, 1, 228, 227, 8, 336, 1, 228, 228, 228, 228, 476, 862, 4004, 962, 1, 476, 557, 478, 1178, 1355, 1, 7286, 1, 1178, 478, 834, 1, 427, 643, 227], [27, 2, 122, 2, 58, 74, 27, 2, 122, 2, 58, 74, 1343], [54, 29, 2, 480, 78, 10, 73, 24, 383, 110, 49, 357, 230, 36, 480, 1032, 7, 54, 29, 2, 21, 355, 268, 73, 24], [40, 1377, 3384, 1839, 595, 4, 1, 1, 93, 59, 1, 93, 146, 1987, 3384, 1940, 1842, 1, 221, 138, 1, 301, 138, 1, 108, 138, 1, 108, 56, 1, 93, 1344, 131, 1, 1784, 1, 12077, 972, 1, 1651, 1, 12078, 3987, 1, 12079, 1, 1720, 40, 1, 1786, 1, 691, 175, 1, 3266, 1, 12080, 52, 1, 40, 40, 24, 24, 144, 1, 103, 435, 1, 1648, 1, 1649, 1175, 1, 12081, 209, 52, 3022, 1, 1650, 936, 62, 1054, 416, 336, 1, 1647, 1, 159, 3987, 1, 1787, 1, 1785, 1, 1645, 318], [243, 816, 319, 279, 140, 4902, 330, 331, 816, 319, 372, 593, 30, 3, 1594, 302, 816, 63, 147, 12, 49, 4, 3, 334, 14, 326, 3, 163, 57, 586, 11, 104, 797, 68, 35, 246, 38, 330, 143, 881, 4], [4903, 10, 7, 406, 4903, 10, 7, 406, 14, 1005, 3842, 2791, 9, 345, 134], [963, 619, 133, 11, 139, 595, 34, 4, 1, 1, 47, 42, 697, 104, 24, 1174, 154, 24, 144, 108, 848, 313, 369, 18, 963, 619, 133, 11, 139, 364, 11, 380, 230, 36, 3013, 2, 247, 139, 194, 1107, 121, 902, 18, 415, 293, 23, 701, 1794, 433, 3, 863, 6, 1395, 380, 2, 1643, 78, 220, 23, 183, 701, 1409, 293, 1500, 77, 2, 1410, 293, 62, 2099, 1470, 252, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 883, 305, 34, 7, 57, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 315, 776, 11, 79, 46, 639, 364, 579, 319, 192, 313, 305, 34, 7, 86, 121, 1, 456, 353, 79, 46, 639, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212], [93, 146, 1987, 200, 832, 832, 6, 75, 595, 34, 4, 1, 1, 93, 59, 1, 93, 146, 1987, 200, 832, 832, 6, 75, 1, 221, 138, 1, 221, 40, 262, 1, 301, 40, 1, 108, 138, 1, 108, 56, 262, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 1649, 1175, 1, 1720, 262, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 1721, 1, 1645, 318, 1, 1648, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 36, 11, 108, 146, 200, 832, 832, 6, 75, 1, 537, 200, 114, 22, 3003, 1, 832, 3994, 27, 2, 769], [150, 5, 4, 5, 19, 5, 476, 150, 5, 4, 5, 19, 5, 12], [93, 146, 1987, 200, 832, 832, 6, 75, 595, 34, 4, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 1987, 200, 832, 832, 6, 75, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 40, 24, 24, 144, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1, 93, 537, 1, 36, 11, 108, 146, 200, 832, 832, 6, 75, 1, 537, 200, 114, 22, 3003, 1, 832, 3994, 27, 2, 769], [93, 146, 1987, 200, 832, 832, 6, 75, 595, 34, 107, 4, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 1987, 200, 832, 832, 6, 75, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 40, 24, 24, 144, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1, 93, 537, 1, 36, 11, 108, 146, 200, 832, 832, 6, 75, 1, 537, 200, 114, 22, 3003, 1, 832, 3994, 27, 2, 769], [40, 1940, 1842, 595, 34, 4, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 1987, 3384, 1940, 1842, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 40, 24, 24, 144, 1, 95, 116, 12, 929, 1, 69, 1146, 972, 1, 69, 305, 1, 79, 93, 59, 1, 103, 435, 1, 691, 175, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 296, 59, 1, 1, 93, 537, 1, 263, 66, 506, 23, 559, 6, 1014, 51, 1842, 7142, 1, 3987, 52, 3022, 175, 175, 435, 40, 24, 24, 144, 972, 3, 286, 6, 12, 62, 1940, 1842, 35, 54, 2, 544, 241, 287], [395, 8, 45, 146, 726, 8, 45, 10, 115], [1795, 236, 98, 1795, 236, 98], [54, 2, 119, 3, 254, 56, 18, 3, 58, 824, 54, 2, 119, 3, 254, 56, 18, 3, 58, 824], [52, 894, 31, 52, 894, 31], [24, 57, 460, 7137, 7138, 181, 1, 124, 1, 291, 292, 1, 1145, 550, 24, 57, 460, 1, 1, 208, 295, 101, 1, 1, 118, 33, 24, 181, 12082, 310, 11, 3, 12083, 632, 12084, 24, 7, 4192, 1, 1, 1, 21, 63, 12085, 3019, 33, 372, 56, 6, 12086, 39, 35, 119, 23, 14, 1, 1, 458], [58, 94, 1252, 432, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [32, 2, 64, 32, 2, 64], [27, 2, 29, 338, 27, 2, 29, 338], [443, 210, 30, 3, 24, 621, 340, 2001, 212, 47, 38, 241, 3523, 36, 1234, 4236, 4904, 23, 593, 7, 304, 3, 177, 580, 2, 269, 444, 29, 2, 3, 1838, 340, 58, 1, 1, 1, 91, 484, 37, 11, 23, 48, 4, 419, 7, 1858, 91, 163, 464, 1, 1, 12087, 3, 37, 7, 1105, 4, 2, 189, 1731, 18, 460, 576, 1, 1118, 44, 32, 871, 42, 1601, 2, 4254, 18, 483, 696, 4, 310, 7, 248, 2, 1158, 3, 460, 2, 119, 3, 341, 11, 310, 1, 1319, 2034, 1520, 4, 3, 422, 297, 67, 195, 428, 8, 84, 2, 46, 1, 1, 516, 248, 2, 25, 3, 13, 11, 197, 18, 3, 195, 67, 44, 1093, 50, 624, 1, 1, 21, 6, 12088, 2, 243, 103, 3, 179, 957, 7, 189, 73, 460, 11, 669, 483, 1, 21, 246, 43, 2112, 68, 3, 484, 210, 42, 1271, 3402, 18, 7, 460, 185, 43, 350, 11, 443, 540, 62, 21, 6, 6881, 2, 712, 224], [33, 374, 99, 8, 463, 849, 111, 51, 335, 2, 100, 374, 172, 118, 3, 1674, 37, 14, 50, 3805, 3806, 1769], [88, 235, 297, 1004, 88, 235, 297, 1004], [243, 816, 319, 279, 140, 111, 3344, 1, 1, 21, 649, 44, 151, 65, 141, 6393, 18, 1835, 704, 23, 816, 18, 279, 140, 4, 759, 1, 1, 36, 3, 343, 3679, 83, 161, 195, 4062, 36, 12089, 38, 141, 45, 30, 3, 140, 4, 2688, 1, 1, 183, 49, 8, 614, 816, 10, 279, 140, 115, 83, 12, 3, 179, 116, 264, 4729, 4, 3, 7011, 18, 3, 45, 483, 1, 1, 14, 270, 166, 253, 51, 35, 38, 2688, 394, 178, 7, 276, 47, 39, 6969, 3, 816, 1, 1, 458], [58, 94, 1564, 596, 1846, 1222, 640, 60, 24, 2814, 1564, 892, 960, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [13, 25, 13, 25], [82, 20, 8, 134, 546, 7, 4526, 443, 28, 11, 2759, 312, 594, 82, 20, 8, 134, 546, 7, 4526, 443, 28, 11, 2759, 312, 594, 1, 12, 3, 1127, 6, 8, 285, 410, 485, 3816, 1671, 12090, 3, 6141, 2, 410, 3, 12091, 7, 1877, 7, 47, 219, 485, 241, 3816, 287, 2, 652, 641, 7, 1325, 210, 1278, 1462, 160, 1, 3, 52, 134, 1510, 7, 165, 6, 8, 285, 2, 122, 1, 195, 952, 12092, 12093, 12094, 12095, 12096], [41, 217, 31, 146, 496, 177, 71, 97, 170, 130, 41, 97, 100, 3, 41, 835, 3, 236, 18, 1069, 97, 43, 825, 3, 136, 3245, 185, 8, 43, 825, 38, 12097, 142, 567, 420, 179, 764, 50, 14], [51, 45, 4, 41, 97, 12098, 3, 1488, 470, 18, 72, 57, 38, 141, 84, 2, 106, 23, 599, 310, 51, 45, 4, 41, 97, 1158, 3, 1488, 470, 18, 72, 57, 38, 141, 84, 2, 106, 23, 599, 310], [243, 816, 319, 279, 140, 111, 4902, 1, 1, 151, 63, 9, 31, 30, 3076, 2, 73, 279, 140, 220, 7, 21, 63, 4905, 1254, 294, 1302, 1029, 277, 816, 63, 147, 1192, 10, 3, 948, 182, 184, 4, 23, 732, 63, 895, 1, 112, 47, 428, 8, 5849, 2688, 182, 4, 3, 887, 47, 4905, 895, 182, 279, 140, 4, 759, 673, 1, 1378, 101, 4, 759, 330, 2309, 3288, 44, 284, 39, 134, 573, 2688, 182, 3881, 53, 328, 66, 7287, 7288, 179, 895, 1357, 18, 73, 279, 140, 220, 6, 4905, 1254, 11, 3, 7287, 7288, 7, 180, 6, 84, 2, 134, 573, 143, 210, 12099, 12100, 437, 21, 36, 1689, 2337, 73, 394, 18, 279, 140, 7, 430, 376, 279, 140, 10, 423, 673, 573, 12101, 166, 1, 1, 2, 5224, 437, 1378, 101, 1595, 47, 39, 12102, 3, 73, 279, 140, 220, 294, 194, 816, 7, 2688, 182, 3881, 39, 43, 430, 866, 10, 423, 673], [2793, 2794, 65, 210, 2, 122, 24, 340, 58, 4, 1046, 2793, 2794, 65, 210, 2, 122, 24, 340, 58, 4, 1046, 7, 4, 3, 887, 451, 540, 283, 79, 29, 1061, 1928, 64, 185, 612, 14, 118, 4, 129, 30, 911, 332, 793, 86], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 12103, 482, 252, 3, 28, 219, 62, 63, 45, 30, 2156, 896, 3, 31, 514, 1104, 981, 1211, 3196, 6, 164, 72, 37, 356, 2837, 3, 2708, 464, 3, 149, 127, 63, 866, 1095, 2, 113, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [15, 26, 602, 77, 15, 26, 602, 77], [13, 25, 13, 25], [41, 8, 45, 88, 31, 41, 8, 45, 88, 31], [87, 508, 484, 31, 87, 508, 484, 31], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [699, 824, 2, 33, 142, 21, 1, 699, 824, 2, 33, 142, 6, 588, 66, 21, 62, 6, 151, 733, 2, 122, 44, 35, 39, 106, 4834, 1, 1, 12104, 12105, 219, 254, 749, 40, 173, 40, 133], [60, 94, 90, 24, 1285, 60, 24, 90, 76, 618, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [82, 20, 56, 4080, 4081, 182, 213, 130, 155, 204, 117, 107, 214, 146, 29, 2, 3, 82, 20, 52], [150, 5, 4, 5, 19, 26, 650, 150, 5, 4, 5, 19, 26, 650, 12], [23, 71, 63, 331, 2, 3, 24, 1627, 603, 14, 129, 24, 21, 50, 564, 11, 316, 136, 130, 41, 181, 1, 124, 1, 12106, 12107, 1, 319, 550, 6844, 225, 20, 1081, 1, 1, 23, 71, 63, 331, 2, 3, 24, 1627, 603, 14, 129, 24, 21, 50, 564, 11, 316, 136], [27, 2, 122, 2, 1060, 12, 90, 2869, 129, 9, 197, 12, 3, 48, 6, 84, 2, 122, 2, 1060], [8, 285, 2, 421, 2, 106, 1104, 11, 1327, 3119, 4180, 2526, 570, 314, 514, 3, 1104, 482, 11, 1327, 186, 117, 4906, 7289, 7, 186, 117, 4906, 7289, 47, 42, 843, 37, 570, 314, 24, 7290, 230, 1073, 1496, 3172, 10, 570, 314, 7290, 2542, 594, 24, 6, 64, 11, 640, 3172, 10, 3, 15, 52, 456, 1218, 2542, 594, 24, 36, 3, 24, 252, 7, 191, 594], [210, 30, 772, 10, 41, 210, 30, 772, 10, 41], [13, 25, 13, 25], [76, 1004, 76, 1004], [15, 26, 13, 25, 15, 26, 13, 25], [29, 2, 82, 20, 146, 5, 660, 251, 158, 1148, 7, 49, 1288, 29, 2, 3, 82, 20, 20, 894, 260, 52], [121, 1675, 2, 2602, 121, 1675, 2, 2602], [27, 2, 122, 2, 3, 682, 74, 12, 490, 27, 2, 122, 2, 3, 682, 74, 12, 490], [54, 29, 2, 3415, 4316, 4, 966, 392, 10, 212, 28, 486, 4, 1736, 44, 390, 219, 3, 3415, 4316, 297, 4, 966, 392, 10, 212, 425, 4, 226, 7, 1093, 326, 44, 1765, 159, 543, 2, 28, 59, 14, 50, 114, 7, 106, 3, 807, 129, 9, 28, 59, 12108], [213, 31, 1], [378, 966, 392, 10, 11, 162, 20, 6, 8, 2218, 110, 97, 29, 162, 20, 3961, 11, 33, 1418, 114, 669, 116, 465, 2, 3, 1812, 118, 23, 71, 51, 100, 3, 162, 20, 1293, 1, 1282, 104, 29, 6, 502, 14, 129, 104, 52, 718], [211, 419, 2980, 2981, 211, 419, 2980, 2981], [620, 342, 728, 2642, 2643, 620, 342, 728, 2642, 2643], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 680, 1147, 9, 71], [169, 606, 279, 140, 65, 2280, 36, 3, 167, 169, 606, 279, 140, 65, 2280, 36, 3, 167], [29, 2, 1537, 2, 1214, 29, 2, 1537, 2, 1214], [193, 2399, 481, 10, 3, 2504, 30, 155, 204, 2171, 2172, 193, 2399, 481, 10, 3, 2504, 30, 155, 204, 2171, 2172], [966, 392, 10, 212, 1666, 14, 206, 3, 457, 160, 7, 457, 205, 242, 297, 2, 4907, 4908, 966, 392, 10, 212, 390, 6, 27, 2, 239, 7, 322, 457, 23, 986, 390, 6, 2681, 18, 457, 7, 264, 38, 29, 2, 21], [24, 621, 32, 1665, 102, 146, 39, 35, 14, 50, 80, 30, 3, 24, 621, 340, 397, 957], [13, 25, 13, 25], [193, 30, 1090, 666, 1257, 745, 24, 2589, 110, 1105, 1186, 2, 24, 2589, 1, 276, 7113, 11, 934, 1, 276, 2268, 10, 3, 893, 864, 1, 23, 246, 2015, 170, 3, 666, 1257, 1, 1, 924, 496, 3, 177, 37, 163], [27, 2, 70, 13, 10, 13, 125, 20, 13, 120, 27, 2, 70, 13, 10, 13, 125, 20, 13, 120], [15, 1342, 6, 2031, 208, 83, 1, 363, 583, 80, 3291, 2, 25, 33, 15, 1342], [27, 2, 1241, 225, 20, 53, 332, 186, 27, 2, 1241, 225, 20, 53, 332, 186, 47, 742, 351, 3, 37, 71, 419, 4056, 461, 189, 708, 349, 1572, 946, 22, 14, 50, 398, 23, 37, 7, 386, 251, 2, 166, 276, 47, 99, 1241, 577, 225, 20, 12, 161, 591], [40, 260, 82, 2317, 160, 254, 6, 315, 260, 20, 559, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [15, 26, 32, 602, 77, 31, 15, 26, 32, 602, 77, 31], [86, 210, 86, 210], [14, 121, 251, 781, 35, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 21, 6, 1139, 2568, 2, 12109, 68, 35, 38, 268, 23, 71, 66, 1932, 14, 1026, 3, 689, 7, 320, 23, 71, 2, 24, 1226, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [41, 6, 1172, 1117, 2508, 37, 41, 6, 1172, 1117, 2508, 37], [3, 333, 287, 1014, 66, 12110, 526, 100, 10, 235, 817, 18, 149, 694, 91, 57, 163, 11, 316, 222, 7, 1091, 114, 68, 3, 333, 394, 62, 1108, 39, 43, 3939, 62, 68, 151, 6, 72, 2636, 263, 1, 5227, 732, 47, 38, 2, 2159, 235, 12111, 2, 199, 3, 260, 20, 394, 18, 100, 359, 716, 405, 3, 333, 173, 6, 1251, 1725, 316, 6262, 11, 444], [898, 116, 125, 2991, 55, 711, 12112, 1, 1, 14, 320, 23, 2, 21, 192, 175, 34, 62, 2, 1, 1, 1, 1, 1, 30, 135, 750], [24, 168, 998, 190, 476, 1822, 7291, 29, 277, 434, 6, 75, 112, 10, 24, 168, 998, 190, 476, 1822, 7291, 29, 277, 434, 6, 75, 112, 10], [555, 810, 37, 49, 27, 2, 206, 555, 93, 4, 2, 128, 126, 555, 810, 164, 96, 37, 71, 1, 102, 35, 2, 353, 1, 1, 1, 1, 135], [28, 59, 64, 14, 263, 338, 212, 29, 11, 3, 96, 1832, 537, 6, 64, 257, 223, 56, 12113, 12114, 223, 59, 28, 56, 2883, 3, 31, 30, 23, 28, 59, 6, 21, 164, 64, 257, 7, 257, 2033, 183, 47, 428, 843, 3, 179, 31, 276, 3, 28, 59, 7, 13, 65, 141, 274, 7, 21, 330, 1067, 11, 532, 1300, 172, 3, 31, 65, 1078, 257, 3, 223, 6, 164, 37, 71, 28, 1472, 22, 3418, 295, 2, 353, 3, 31], [279, 140, 400, 606, 89, 8, 134, 169, 451, 7153, 151, 6, 9, 220, 2864, 1582, 1284, 2882, 556, 714, 30, 135], [496, 78, 37, 4, 88, 2691, 930, 734, 55, 1, 14, 326, 96, 3, 3215, 18, 3, 37, 184, 49, 496, 329, 1090, 3, 2691, 3690, 1, 1, 1, 14, 106, 3, 807], [243, 816, 319, 279, 140, 111, 3344, 1, 1, 243, 161, 86, 121, 355, 172, 14, 39, 35, 1462, 662, 3, 70, 11, 279, 140, 161, 115, 42, 27, 2, 373, 279, 140, 169, 3, 70, 1, 1, 14, 91, 104, 302, 96, 1, 1, 7292, 1, 1, 759, 1, 1, 759, 1, 1, 7293, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7294, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 771, 1, 1, 895, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7295, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 771, 1, 1, 895, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7296, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 4839, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 1, 261, 42, 3, 952, 115, 30, 210, 1, 1, 458], [692, 20, 13, 25, 102, 692, 20, 13, 25, 102], [243, 816, 319, 279, 140, 111, 4902, 1, 1, 14, 326, 3, 96, 673, 184, 42, 430, 30, 376, 279, 140, 529, 51, 47, 3413, 171, 36, 1302, 1029, 277, 1, 1, 56, 1, 1, 271, 1, 1, 2320, 1, 1, 28, 1, 1, 948, 56, 1, 1, 56, 1, 1, 211, 640, 182, 1, 1, 948, 12115, 1, 1, 816, 1, 1, 7292, 1, 1, 759, 1, 1, 759, 1, 1, 7293, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7294, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 771, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7295, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 771, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 7296, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 2468, 1, 1, 759, 1, 1, 759, 1, 1, 4839, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 7297, 1, 1, 1, 1, 759, 1, 1, 12116, 1, 1, 79, 1434, 1, 1, 752, 28, 529, 1, 1, 895, 1, 1, 771, 1, 1, 1302, 1029, 277, 1, 1, 1, 47, 38, 147, 3, 73, 394, 606, 11, 3, 673, 184, 42, 430, 30, 376, 279, 140, 220], [226, 32, 602, 77, 226, 32, 602, 77], [73, 127, 249, 7298, 249, 976, 5579, 5580, 1, 124, 1, 291, 292, 1, 12117, 3962, 2391, 12118, 1, 12119, 73, 127, 249, 7298, 249, 976, 1, 720, 313, 1, 1, 111, 1, 1, 39, 35, 14, 386, 424, 3, 159, 2007, 11, 249, 7, 36, 113, 7, 113, 42, 661, 1, 1360, 249, 11, 698, 159, 2007, 6, 329, 159, 2007, 6, 424], [9, 1953, 111, 101, 47, 39, 8, 1241, 1953, 11, 186, 263, 3, 177, 37, 71, 664, 39, 35, 14, 38, 366, 342, 1079, 3341, 135], [54, 50, 4, 1658, 1644, 54, 50, 4, 1658, 1644], [57, 319, 1680, 3, 469, 65, 141, 805, 1, 1, 1, 1, 1, 781, 35, 343, 1502, 556, 1, 4188, 4189, 1, 1, 30, 135, 750], [8, 84, 2, 46, 2, 338, 212, 8, 84, 2, 46, 2, 338, 212], [1988, 447, 8, 2409, 2, 12120, 1073, 1021, 359, 7, 160, 359, 55, 4586, 12121, 1, 1, 742, 350, 72, 698, 4, 26, 11, 12122, 72, 2180, 160, 127, 2, 384, 6, 249, 1, 3, 31, 89, 8, 201, 1242, 4, 732, 3, 28, 1639, 2, 598, 1073, 1021, 127, 67, 183, 51, 250, 2, 598, 1073, 160, 127, 1, 1, 731, 1073, 1021, 359, 1, 1, 21, 1100, 265, 1988, 447, 89, 201, 729, 2, 598, 1073, 1021, 359, 4, 732, 3, 1021, 127, 2174, 341, 6, 311, 62, 887, 311, 4830, 698, 4, 3, 464, 4, 732, 3, 1021, 127, 2174, 341, 6, 8, 311, 1696, 698, 1988, 447, 89, 8, 729, 2, 598, 1073, 3, 1021, 127, 1, 1, 3, 177, 2073, 54, 2, 43, 274, 1, 1, 1988, 447, 264, 729, 2, 2634, 3, 968, 1073, 1021, 359, 516, 1243, 3, 1021, 127, 6, 8, 311, 355, 265, 1988, 447, 89, 11, 536, 660, 359, 1, 1988, 447, 264, 199, 3, 1021, 127, 170, 341, 2490, 467, 3, 1021, 127, 2174, 341, 2, 1264, 1459, 3, 1021, 127, 6, 311, 1, 1, 731, 1073, 160, 359, 1, 1, 21, 1100, 265, 1988, 447, 89, 201, 729, 2, 598, 1073, 160, 359, 4, 732, 3, 2416, 2174, 341, 18, 3, 160, 127, 6, 311, 62, 887, 311, 886, 698, 4, 732, 3, 2416, 2174, 341, 18, 3, 160, 127, 6, 8, 311, 2145, 698, 1988, 447, 89, 8, 729, 2, 598, 1073, 3, 160, 127, 1, 1, 3, 177, 2073, 54, 2, 43, 274, 1, 1, 1988, 447, 264, 729, 2, 2634, 3, 968, 1073, 160, 359, 516, 1243, 3, 160, 127, 6, 8, 311, 355, 265, 1988, 447, 89, 11, 536, 660, 359, 1, 1988, 447, 264, 199, 3, 2416, 170, 341, 184, 6, 534, 806, 4, 3, 482, 2490, 467, 3, 2416, 2174, 341, 2, 1264, 1459, 3, 160, 127, 6, 311], [79, 52, 542, 170, 79, 52, 542, 170], [340, 10, 2067, 964, 6, 8, 7299, 4, 3, 381, 719, 68, 47, 38, 381, 12, 2226, 30, 1239, 18, 2629, 265, 310, 3, 340, 6, 8, 7299, 3, 195, 99, 118, 12123, 1352, 106, 8, 38, 3, 2366, 2, 114, 288, 1502, 195, 42, 267, 2, 184, 262, 11, 12124, 3, 123], [75, 1081, 12125, 8, 1751, 24, 2221, 91, 163, 181], [15, 26, 32, 602, 77, 31, 15, 26, 32, 602, 77, 31], [148, 61, 31, 148, 6, 8, 164, 10], [50, 11, 249, 6766, 1, 288, 393, 3, 233, 172, 1, 23, 968, 6, 307, 275], [119, 4909, 810, 111, 83, 246, 54, 451, 5058, 2, 43, 912, 2, 3, 4909, 810, 455, 12126, 12127, 14, 206, 451, 1190, 5954, 5747, 129, 568, 184, 264, 43, 2525, 56, 18, 668, 668, 196, 7, 14, 206, 12, 3, 343, 591, 14, 320, 3, 933, 1623, 2822, 367, 2, 14, 263, 44, 3, 4909, 810, 264, 43, 3035, 2, 83, 694, 236, 3, 1183, 2334], [2575, 2173, 190, 271, 190, 275, 208, 21, 101, 1, 1, 246, 14, 54, 2575, 2173, 11, 161, 1516, 36, 961, 11, 3, 96, 1538, 1, 1, 3899, 3900, 961, 1516, 1, 1, 12128, 12129, 961, 1516, 1, 1, 3899, 3900, 961, 1516, 1, 12130, 12131, 961, 1516, 1, 1, 83, 1713, 1516, 264, 273, 38, 860, 15, 7, 130, 95, 4, 13, 1611, 161, 961, 1516, 99, 106, 1, 2353, 70, 4, 7, 11, 161, 15, 1081, 125, 7, 5438, 20, 1, 1, 185, 35, 14, 4696, 3, 2173, 2334, 7, 778, 68, 47, 99, 118, 3, 2575, 2173, 14, 1, 246, 1202, 444, 98, 10, 3, 779, 2188, 693, 66, 7300, 3119, 1, 1, 68, 151, 6, 143, 123, 14, 270, 80, 253, 1, 1, 458], [243, 816, 319, 279, 140, 111, 3344, 1, 1, 424, 42, 35, 327, 279, 140, 606, 10, 115, 7297, 51, 21, 6, 8, 304, 11, 279, 140, 1, 1, 30], [97, 29, 26, 55, 21, 1, 1, 97, 46, 2, 26, 849, 91, 377, 1, 14, 398, 21, 11, 28, 59, 12132, 7, 12133], [295, 255, 1044, 2745, 2746, 295, 255, 1044, 2745, 2746], [193, 30, 168, 20, 7301, 7302, 193, 30, 168, 20, 7301, 7302], [1140, 336, 111, 21, 101, 1, 1, 363, 91, 288, 23, 39, 43, 1157, 942, 11, 3, 372, 540, 1, 1, 1, 1, 135], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 2, 113, 1, 1, 31, 665, 37, 71, 9, 71], [79, 32, 602, 77, 79, 32, 707], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 7303, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 7304, 6206, 372, 56, 12134, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [123, 30, 170, 4, 41, 55, 1, 1, 97, 170, 10, 3, 41, 142, 7, 88, 12135, 11, 655, 1, 23, 183, 12136, 165, 2073, 82, 20, 476, 1, 1, 14, 11, 50, 5986, 12, 3, 142, 1, 1, 1, 1, 135, 750, 1, 3088, 6926, 2806, 1, 724, 1758, 7, 2612, 1, 6528, 1240, 1, 1, 24, 2079, 879, 4254, 5394, 3143, 259, 190, 730, 24, 144, 1, 1, 24, 2079, 879, 1, 1363, 988, 2567, 2925, 12137, 12138, 1, 4795, 18, 3, 24, 190, 3946, 3141, 1083, 4720, 3946, 4721, 1, 1, 1, 1, 1, 23, 446, 6, 1782, 7, 1562, 679, 11, 199, 66, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 1513, 36, 1225, 426, 1135, 1512, 3, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 3, 679, 1453, 6, 1139, 1454, 68, 35, 268, 23, 319, 311, 2, 72, 6519, 259, 12139, 14, 1026, 3, 689, 7, 320, 23, 71, 1, 24, 1226, 1, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [461, 37, 182, 55, 1, 185, 35, 14, 50, 2, 114, 3, 709, 18, 461, 37, 182, 1, 1, 1, 1, 1, 30, 135], [279, 140, 140, 606, 11, 28, 6259, 110, 49, 8, 84, 2, 326, 3, 587, 527, 1293, 4, 33, 115, 169, 400, 516, 3, 376, 394, 351, 584, 14, 525], [41, 4910, 114, 37, 71, 1676, 31, 1156], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [32, 64, 4, 226, 32, 64, 4, 226], [79, 32, 64, 79, 32, 64], [32, 64, 4, 226, 32, 64, 4, 226], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [1203, 243, 34, 9, 14, 3876, 12140, 12141, 246, 265, 2, 1203, 3, 71, 243, 34, 9, 14, 3876], [148, 369, 6, 8, 45, 111, 1, 1, 33, 148, 382, 3132, 369, 65, 706, 45, 8, 614, 1459, 3, 123, 6, 30, 143, 830, 14, 50, 53, 38, 2, 4836, 532, 87, 12142, 23, 593, 1, 1, 135], [41, 4910, 114, 8, 45, 1676, 31, 55, 1, 1, 611, 326, 3, 4910, 114, 37, 4, 3, 41, 1, 23, 6, 1676, 37, 116, 7, 257, 1890, 1, 1, 54, 104, 3583, 7, 2211, 1340, 1, 1, 1, 1, 1156], [382, 831, 639, 2469, 277, 368], [249, 2469, 277, 368, 1, 49, 1, 291, 292, 1, 2547, 2548, 2469, 277, 368, 1757, 2549, 1, 550, 249, 1, 1, 111, 21, 101, 1, 1, 1, 14, 525, 2, 189, 472, 11, 3, 693, 779, 249], [79, 32, 64, 79, 32, 64], [27, 122, 2, 82, 20, 27, 122, 2, 82, 20], [150, 5, 4, 5, 19, 563, 168, 20, 575, 262, 150, 5, 4, 5, 19, 563, 168, 20, 575, 262, 12], [432, 69, 1475, 200, 10, 40, 6, 323, 75, 4, 850, 20, 850, 20, 432, 69, 1475, 200, 10, 40, 6, 323, 75, 4, 850, 20, 850, 20], [3697, 11, 50, 208, 21, 3697, 492, 1197, 2178, 135], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [255, 12143, 3057, 9, 7305, 241, 2763, 97, 43, 825, 509, 175, 366, 12, 3, 531, 254, 1, 14, 38, 21, 588, 66, 2749, 168, 20, 2382, 9], [28, 524, 50, 2, 46, 2, 15, 26, 28, 524, 50, 2, 46, 2, 15, 26, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 15, 26, 1, 31, 321], [150, 5, 4, 5, 19, 162, 2466, 150, 5, 4, 5, 19, 162, 2466, 12], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [324, 171, 99, 8, 436, 33, 324, 171, 99, 8, 436, 23, 6, 3, 324, 171, 44, 38, 8, 141, 84, 2, 436, 65, 275, 15, 568, 50, 564, 2, 436, 669, 116, 6884, 6885, 113, 120], [955, 6, 7306, 98, 4, 12144, 426, 631, 4200, 4201, 53, 18, 4200, 4201, 6, 8, 30, 2819, 90, 117, 127, 6, 357, 98, 7306, 311, 2, 1215, 3078, 30, 23, 955, 955, 65, 141, 268, 10], [2113, 7082, 3651, 12145, 65, 12146, 5147, 1972, 12147, 770, 77, 18, 283, 3907, 989, 180, 65, 12148, 2144, 39, 35, 14, 270, 80, 253, 424, 23, 6, 389, 3, 569, 1418, 373], [382, 3, 52, 790, 601, 4, 2, 2186, 18, 2329, 75, 307, 382, 3, 52, 790, 601, 4, 2, 2186, 18, 2329, 75, 635, 3, 28, 2, 715, 3, 115, 8, 1361, 200, 1018, 129, 948, 671], [1365, 2522, 1066, 14, 206, 12149, 12150, 12151, 7, 12152, 12153, 12154, 2, 3, 2522, 202, 675, 226, 159, 1161, 3079, 4, 226, 53, 83, 3454], [235, 108, 448, 106, 54, 2, 129, 1, 290, 831, 3239, 210, 10, 33, 86, 5616, 2360, 4168, 12155, 3, 483, 6, 21, 829, 44, 39, 38, 3, 831, 1312, 10, 62, 118, 73, 86], [288, 39, 320, 1136, 2, 612, 240, 18, 24, 56, 4891, 4892, 182, 213, 130, 155, 204, 117, 107, 214, 146, 288, 39, 320, 1136, 2, 612, 240, 18, 24, 21, 6, 2, 2056, 2, 552, 2, 72, 57], [378, 381, 3440, 319, 381, 3440, 319], [27, 2, 100, 7307, 287, 27, 2, 100, 7307, 287], [27, 2, 46, 2, 3, 434, 27, 2, 46, 2, 3, 434, 311, 2, 3, 1718, 31, 53, 332, 12156, 6073], [88, 32, 7, 129, 7308, 50, 110, 246, 265, 2, 3072, 460, 7, 1091, 36, 1619, 2, 2948, 7095, 12157, 86], [279, 140, 86, 52, 587, 527, 1472, 312, 639, 56, 5126, 5127, 182, 213, 130, 155, 204, 117, 107, 214, 146, 279, 140, 86, 52, 587, 527, 1472, 312, 639], [8, 6546, 1816, 88, 36, 88, 2, 12158, 1374, 11, 3529, 447, 59, 7309, 12159, 7, 3172, 42, 952, 96], [29, 2, 603, 56, 1017, 2698, 182, 213, 130, 155, 204, 117, 107, 214, 146, 14, 90, 80, 29, 2, 3, 12160, 7, 12161, 131, 1885], [254, 1795, 3583, 524, 254, 1795, 3583, 524], [40, 24, 144, 6, 267, 6, 8, 267, 268, 260, 20, 559, 12, 124, 10, 105, 40, 24, 144, 6, 267, 6, 8, 267], [13, 25, 10, 338, 212, 13, 25, 10, 338, 212], [324, 171, 8, 1500, 120, 324, 171, 8, 1500, 120], [115, 99, 8, 873, 1814, 1896, 167, 9, 644, 65, 141, 278, 2, 170, 11, 329, 115, 99, 8, 873, 1814, 1896, 167, 9, 644, 65, 141, 278, 2, 170, 11, 329], [1920, 2212, 4, 90, 174, 7310, 65, 1208, 7311, 2435, 99, 8, 586, 1920, 2212, 4, 90, 174, 7310, 65, 1208, 7311, 2435, 99, 8, 586], [13, 25, 7312, 7313, 124, 291, 292, 1145, 243, 7312, 7313, 104, 79, 13, 6, 2482, 754, 720, 313, 111, 21, 274, 33, 76, 13, 23, 334, 51, 1840, 7, 276, 4, 15, 7, 41, 67, 51, 465, 2, 119, 21, 332, 3, 13, 125, 20, 1342, 140, 96, 3, 13, 125, 20, 1342, 855, 979, 33, 1587, 200, 46, 224, 376, 7, 73, 62, 33, 57, 196], [32, 64, 77, 7, 13, 25, 102, 32, 64, 77, 7, 13, 25, 102], [27, 2, 515, 41, 27, 2, 515, 41], [27, 2, 122, 2, 143, 58, 36, 148, 27, 2, 122, 2, 143, 58, 36, 148], [189, 1280, 1068, 224, 11, 4192, 101, 3817, 12, 90, 11, 593, 111, 1, 1, 14, 189, 1280, 1068, 224, 11, 83, 3, 12162, 1066, 96, 448, 99, 43, 4, 90, 1277, 36, 2], [128, 126, 31, 128, 126, 31], [27, 2, 100, 41, 7, 338, 311, 2, 1083, 13, 27, 2, 100, 41, 7, 338, 311, 2, 1083, 13], [27, 2, 29, 245, 27, 2, 29, 245], [1878, 2098, 31, 1878, 2098, 31], [32, 64, 77, 10, 15, 26, 32, 64, 77, 10, 15, 26], [29, 2, 82, 20, 29, 2, 82, 20], [188, 21, 190, 15, 176, 18, 7314, 4, 2156, 89, 8, 507, 55, 208, 83, 1, 38, 248, 2, 176, 3, 7314, 4, 3, 15, 2156, 11, 116, 1, 3, 71, 85, 38, 351, 63, 12163, 155, 204, 185, 8, 122, 2, 40, 24, 24, 144, 68, 4413, 185, 50, 80, 44, 246, 43, 343, 2112, 12164, 3597], [40, 162, 20, 577, 238, 297, 865, 703, 758, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617, 40, 162, 20, 577, 238, 297, 865, 703, 758, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617], [21, 190, 12165, 53, 13, 119, 22, 55, 12166, 1, 13, 119, 4, 3, 53, 187, 8, 134, 14, 11, 104, 50, 1116, 4, 1596, 1511, 3597], [15, 29, 111, 151, 1, 1, 39, 35, 14, 583, 80, 29, 2, 15, 97, 95, 10, 2, 21], [150, 5, 4, 5, 19, 5, 476, 150, 5, 4, 5, 19, 5, 12], [378, 831, 649, 2, 43, 2939, 877, 227, 378, 831, 649, 2, 43, 2939, 877, 146, 382, 148, 831, 1383, 2756, 4796, 148, 99, 8, 134, 573, 133, 2, 61, 4843, 831, 649, 2, 43, 2939], [715, 200, 10, 3, 1984, 78, 715, 200, 10, 3, 1984, 78, 86], [13, 31, 13, 31], [79, 13, 25, 79, 13, 25], [15, 26, 13, 25, 7, 132, 102, 15, 26, 13, 25, 7, 132, 102], [27, 2, 29, 40, 27, 2, 29, 40], [27, 2, 515, 87, 27, 2, 515, 87], [34, 70, 403, 10, 34, 203, 7315, 7316, 34, 70, 403, 10, 34, 203, 7315, 7316], [27, 2, 122, 2, 24, 1705, 27, 2, 122, 2, 24, 1705], [652, 641, 297, 1323, 37, 1170, 12167, 12168, 1708, 1481, 348, 12169, 2832, 1802, 312, 6151, 793, 97, 1323, 546, 283, 134, 131, 10, 652, 641, 297, 151, 6, 532, 540, 3, 915, 18, 483, 42, 1160, 2, 3, 569, 53, 68, 284, 330, 8, 141, 1167], [82, 20, 12170, 12171, 55, 21, 1, 1, 51, 248, 2, 528, 82, 20, 2, 33, 527, 21, 6, 323, 80, 23, 37, 1, 14, 398, 23, 31, 1, 1, 1, 1, 135], [8, 285, 2, 46, 311, 2, 64, 32, 8, 285, 2, 46, 311, 2, 64, 32], [1031, 421, 666, 107, 1031, 421, 666, 107, 1, 118, 37, 4434, 1, 470, 438, 1, 670, 4911, 6, 8, 1332, 322, 860, 4911, 11, 470, 438], [27, 2, 515, 535, 27, 2, 515, 535], [535, 7317, 217, 89, 8, 100, 535, 7317, 217, 89, 8, 100], [162, 20, 212, 6, 8, 45, 162, 20, 212, 6, 8, 45], [378, 1813, 31, 378, 214, 146, 273, 250, 2, 118, 72, 31, 321, 30, 41, 49, 3581, 3582, 73, 1604, 180, 2367, 80, 4677, 1279, 11, 283, 57, 672, 449, 51, 335, 2, 239, 283, 57, 4, 41, 118, 23, 37, 71, 97, 452, 3, 218, 130, 41, 97, 29, 3, 1832, 218, 271, 38, 2, 866, 100, 283, 57, 32, 669, 116, 184, 6, 8, 601, 2, 134, 1089, 2, 43, 84, 2, 239, 283, 57, 4, 1191, 67, 479, 2, 199, 41], [3, 3337, 12, 3, 1451, 18, 3, 459, 490, 347, 1089, 2, 43, 346, 110, 248, 4, 600, 419, 7, 1983], [123, 30, 1745, 111, 356, 290, 123, 30, 3, 1745, 10, 33, 148, 39, 927, 10, 33, 1710, 67, 8, 33, 6506, 62, 1588, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [27, 2, 25, 3, 13, 27, 2, 25, 3, 13], [121, 36, 3963, 3964, 203, 2, 1420, 34, 121, 36, 3963, 3964, 203, 2, 1420, 34], [1944, 3823, 18, 254, 287, 275, 55, 40, 749, 1495, 12172, 7, 40, 749, 4459, 261, 1069, 428, 584, 66, 72, 21, 1730, 223, 272, 3, 1935, 47, 54, 1944, 3823, 251, 2, 207, 261, 1069, 7, 83, 18, 3, 287, 3357, 745, 42, 1368, 23, 6, 305, 102, 14, 1185, 745, 3, 1901, 135, 3963, 3964, 854, 1495, 7040, 24, 203], [3766, 486, 2, 114, 68, 32, 65, 141, 808, 3766, 486, 2, 114, 68, 32, 65, 141, 808], [54, 50, 4, 1483, 15, 13, 7, 2684, 83, 460, 54, 50, 4, 1483, 15, 13, 7, 2684, 83, 460], [32, 562, 11, 2910, 2911, 32, 562, 11, 2910, 2911, 1631, 28, 44, 47, 54, 57, 36, 162, 44, 32, 219, 2, 43, 1805, 32, 808], [203, 1930, 2464, 434, 6, 75, 112, 49, 10, 105, 111, 4005, 6088, 1, 1, 47, 42, 1887, 197, 18, 3, 434, 1930, 2464, 434, 6, 75, 112, 49, 10, 105, 14, 114, 11, 3, 61, 233, 1255, 1450, 11, 23, 434, 7, 1662, 1, 1, 263, 83, 817, 997, 202, 169, 3, 1021, 61, 145, 53, 332, 1550], [13, 125, 20, 13, 120, 3374, 72, 37, 329, 13, 119, 985, 13, 125, 20, 13, 120, 3374, 72, 37, 329, 13, 119, 985], [128, 126, 445, 6, 8, 405, 128, 126, 445, 6, 8, 405, 1, 1, 37, 4006, 12173, 3065, 1043, 12174, 12175], [41, 4912, 462, 55, 50, 1, 1, 209, 174, 1560, 468, 3, 177, 37, 71, 1, 1, 1511], [25, 3, 13, 11, 7318, 7319, 10, 15, 160, 15, 14, 25, 33, 13], [2793, 2794, 64, 77, 12176, 36, 79, 7, 219, 13, 25, 28, 59, 12177, 180, 63, 64, 77, 329, 137, 340, 12, 1046, 271], [27, 2, 873, 98, 142, 27, 2, 873, 98, 142, 1256, 151, 63, 31, 30, 886, 167, 1, 1, 1, 1, 142, 56, 1, 200, 1018, 12178, 1, 1, 12179, 5269, 630, 656], [32, 64, 4, 226, 32, 64, 4, 226], [87, 31, 209, 174, 1806, 87, 31, 209, 174, 1806], [88, 12180, 422, 943, 169, 1342, 70, 742, 248, 2, 12181, 95, 10, 2, 88, 268, 3, 177, 1000, 98, 7320, 1788, 1858, 7321, 3093, 255, 4006, 4007, 4849, 12182, 742, 12183, 44, 71, 467, 696, 2, 149, 7, 1148, 169, 1603, 10, 88, 895, 12184, 1126, 3, 504, 422, 696, 6, 44, 3, 943, 47, 246, 265, 2, 199, 268, 3, 177, 1000, 98, 7320, 1788, 1858, 7321, 3093, 255, 4006, 4007, 4849, 106, 47, 479, 1788, 2, 504, 161, 12185], [197, 263, 31, 197, 263, 31], [132, 226, 32, 132, 226, 32], [32, 64, 55, 101, 1, 6764, 28, 32, 6, 230, 39, 35, 14, 50], [340, 278, 1908, 24, 358, 21, 101, 14, 308, 114, 155, 11, 166, 722, 172, 27, 2, 134, 138, 131, 53, 96, 12186, 130, 12187, 83, 1473, 4490, 195, 7322, 4365, 5401, 1194, 2, 1788, 1349, 890, 1788, 144, 272, 2569, 18, 4255, 209, 209, 209, 24, 262, 6996, 358, 856, 618, 24, 144, 209, 209, 209, 1176, 1728, 76, 618, 24, 144, 209, 209, 209, 209, 209, 209, 209, 209, 209, 12188, 12189, 12190, 12191, 441, 209, 209, 209, 209, 209, 209, 209, 209, 209, 53, 12192, 12193, 226, 12194, 209, 209, 209, 209, 209, 209, 209, 209, 209, 1788, 1349, 890, 1788, 144, 3036, 421, 195, 7322, 12195, 12196, 124, 7323, 3289, 3290, 12197, 12198, 340, 278, 1908, 24, 358, 208, 7323, 14, 308, 114, 1280, 1068, 1908, 11, 161, 24, 21, 343, 278, 1908, 7, 1447, 161, 134, 23, 116, 47, 38, 316, 195, 4, 174, 393, 1931, 7, 241, 12199, 2932, 6937, 14, 386, 12200, 1357, 11, 161, 24, 208, 7324, 163, 511, 155, 1357, 4, 358, 174, 14, 386, 68, 47, 54, 2, 98, 1908, 11, 3973, 6279], [280, 73, 471, 7325, 7326, 280, 73, 471, 7325, 7326], [119, 102, 97, 43, 584, 119, 102, 97, 43, 584], [620, 342, 457, 2171, 2172, 620, 342, 457, 2171, 2172], [280, 73, 471, 3005, 3006, 280, 73, 471, 3005, 3006], [441, 1467, 191, 217, 89, 8, 134, 441, 1467, 191, 217, 89, 8, 134, 1, 37, 209, 441, 1350], [235, 108, 24, 868, 1254, 1565, 235, 108, 24, 868, 1254, 1565], [82, 20, 6, 8, 45, 82, 20, 6, 8, 45], [2586, 37, 4, 41, 1043, 7327, 7328, 2586, 37, 4, 41, 1043, 7327, 7328], [193, 30, 168, 20, 6521, 47, 6720, 1, 1, 39, 35, 14, 1040, 3, 13, 28, 47, 63, 3, 13, 1, 230, 14, 236, 3, 13, 2, 717], [15, 26, 13, 25, 102, 11, 28, 7329, 15, 26, 13, 25, 102, 11, 28, 7329], [620, 342, 3712, 4, 168, 20, 3825, 3826, 620, 342, 3712, 4, 168, 20, 3825, 3826], [181, 196, 18, 4008, 4009, 12, 404, 20, 6, 346, 4, 404, 20, 6, 11, 28, 4008, 4009, 9, 57, 178, 91, 1630, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [88, 8, 45, 208, 491, 1, 1, 330, 248, 2, 100, 88, 14, 91, 581, 3, 377, 11, 3, 71, 329, 405, 3, 179], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [191, 217, 3374, 37, 51, 2921, 191, 217, 3374, 37, 51, 2921], [447, 7330, 149, 668, 2008, 12201, 2134, 134, 14, 1796, 447, 12202, 447, 7330, 1094, 577, 1146, 11, 83, 3, 149, 668, 12203, 18, 2008, 12204, 447, 12205, 2843, 983, 777, 11, 361, 149, 676, 151, 42, 451, 577, 7218, 1190, 184, 428, 399, 30, 626, 1494, 372, 593], [79, 32, 64, 4, 226, 79, 32, 64, 4, 226], [28, 6, 164, 4912, 37, 4, 174, 28, 6, 164, 4912, 37, 4, 174], [57, 196, 229, 2, 186, 8, 431, 12206, 12207, 55, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135], [8, 84, 2, 239, 772, 36, 41, 8, 84, 2, 239, 772, 36, 41], [115, 3959, 89, 8, 134, 115, 264, 434, 10, 36, 4008, 4009, 331, 2091, 2, 291, 292, 3446, 115, 3959, 3063, 3064, 115, 3959, 89, 8, 134, 115, 65, 2, 434, 10, 169, 44, 9, 134, 10, 115, 6, 285, 516, 30, 175, 661, 4903, 248, 9, 119, 30, 450, 750, 4008, 4009, 1802, 200, 190], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [210, 30, 1816, 2, 3, 459, 111, 83, 1, 49, 290, 72, 31, 1816, 2096, 2, 3, 459, 1, 1, 51, 1810, 73, 2856, 11, 3, 2096, 7331, 2, 3, 48, 96, 1, 3, 2128, 184, 42, 350, 38, 9, 1549, 12208, 7, 1641, 51, 5894, 1, 2, 3, 2096, 7331, 3, 2856, 526, 468, 98, 546, 1, 1, 1, 246, 54, 23, 833, 745, 310, 53, 151, 42, 567, 2096, 44, 264, 465, 77], [910, 382, 340, 262, 14, 269, 222, 18, 3, 31, 1, 340, 262], [64, 77, 18, 32, 111, 1, 1, 14, 525, 12209, 12210, 2, 29, 283, 32, 53, 180, 1220, 283, 13, 1, 1, 47, 54, 23, 307, 14, 1, 1, 450], [1474, 236, 98, 235, 229, 24, 181, 21, 14, 308, 236, 98, 235, 229, 24, 181, 28, 4968, 4969, 416, 383, 607], [2831, 225, 20, 63, 350, 67, 9, 1275, 367, 14, 2227, 114, 7, 50, 2, 795, 23, 12211, 2831, 225, 20, 63, 350, 67, 9, 1275, 367, 14, 2227, 114, 7, 50, 2, 795, 23, 123], [76, 76], [21, 21], [15, 39, 8, 176, 66, 557, 14, 50, 80, 434, 2, 557, 176, 21, 6, 307, 15, 39, 8, 176, 66, 557, 14, 50, 80, 434, 2, 557, 176, 21, 6, 307], [382, 831, 639, 111, 4507, 101, 54, 104, 1604, 10, 3, 163, 31, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 1322, 1530, 572, 2589, 57], [3389, 148, 7332, 7333, 49, 291, 292, 3376, 3377, 3376, 3377, 1289, 550, 3389, 148, 208, 21, 50, 14, 50, 3978, 2, 2201, 77, 31, 30, 283, 148, 180, 6, 1192, 4, 3320, 283, 129, 222, 42, 53, 779, 96, 3978, 220, 685], [79, 79], [15, 457, 37, 51, 248, 2, 436, 3, 896, 85, 35, 54, 21, 429, 9, 131, 336, 11, 223, 1544, 52, 1893, 14, 50, 30, 21, 38, 567, 359, 2, 320, 77, 23, 123, 65, 141, 12212, 11, 593, 7, 9, 197, 129, 80, 2, 795, 21], [76, 133, 31, 76, 133, 31, 1, 267, 2, 3, 28, 52, 137, 487, 1, 430, 3, 24, 76, 830, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [1732, 3332, 83, 22, 2, 122, 2, 459, 7334, 40, 40, 459, 1887, 96, 559, 4, 260, 20, 112, 49, 10, 105, 169, 260, 20, 827, 1, 1, 1732, 3332, 83, 22, 2, 122, 2, 459, 7334, 40, 40, 459], [1930, 2464, 434, 6, 75, 112, 49, 10, 105, 1930, 2464, 434, 6, 75, 112, 49, 10, 105], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [150, 5, 4, 5, 19, 756, 757, 4010, 150, 5, 4, 5, 19, 756, 757, 815, 12], [123, 30, 867, 822, 102, 111, 356, 290, 123, 30, 867, 822, 1152, 118, 3, 96, 37, 51, 2870, 436, 102, 330, 23, 123, 372, 593, 67, 51, 267, 2, 76, 21, 331, 3, 102, 2535, 3, 123, 63, 1766, 67, 21, 6, 273, 1361, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [17, 160, 287, 8, 268, 574, 2, 1423, 101, 287, 8, 1675, 53, 332, 1299, 516, 372, 593, 47, 330, 3, 179, 123], [119, 174, 182, 2238, 36, 12213, 106, 8, 134, 55, 21, 63, 2890, 44, 110, 434, 174, 36, 895, 2, 738, 68, 207, 433, 39, 110, 326, 23, 1009, 1, 1, 68, 110, 479, 2, 3765, 3, 2238, 18, 12214, 1809, 4, 738, 7, 413, 10, 3, 229, 4, 3, 57, 21, 2646, 80, 1, 1, 174, 1136, 12215, 178, 1, 1, 174, 1136, 6, 8, 1805, 66, 104, 668, 11, 35, 1, 1, 581, 6, 175, 229, 1, 1, 458, 1116, 11, 104, 50], [150, 5, 4, 5, 19, 756, 757, 4010, 150, 5, 4, 5, 19, 756, 757, 815, 12], [150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 12], [150, 5, 4, 5, 19, 26, 1024, 150, 5, 4, 5, 19, 26, 1024, 12], [40, 15, 26, 7335, 160, 703, 758, 286, 565, 10, 490, 6, 172, 40, 15, 26, 7335, 160, 703, 758, 286, 565, 10, 490, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [40, 15, 26, 297, 160, 703, 758, 286, 565, 10, 490, 6, 172, 40, 15, 26, 297, 160, 703, 758, 286, 565, 10, 490, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [40, 1495, 173, 78, 749, 160, 78, 6, 1656, 40, 1495, 173, 78, 749, 160, 78, 6, 1656], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [58, 824, 659, 27, 2, 122, 2, 254], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [40, 596, 687, 1625, 474, 2861, 173, 160, 2097, 362, 385, 107, 18, 907, 18, 312, 2097, 362, 40, 596, 687, 1625, 474, 2861, 173, 160, 2097, 362, 385, 107, 18, 907, 18, 312, 2097, 362, 1027, 907, 2100, 67, 336, 1, 1, 263, 151, 63, 1021, 61, 145, 12, 596, 687, 53, 332, 1550, 200, 187, 8, 884, 98, 169, 3, 145], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 1556, 150, 5, 4, 5, 19, 26, 1556, 12], [337, 46, 31, 337, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [110, 49, 164, 3, 177, 71, 51, 250, 2, 95, 4, 2, 26, 397, 792, 37, 185, 8, 122, 2, 12216, 56, 5686, 5687, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 164, 3, 177, 71, 51, 250, 2, 95, 4, 2, 26, 397, 792, 37, 185, 8, 122, 2, 71, 78, 6, 15, 75, 722, 172], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [5, 4, 5, 19, 5, 63, 327, 836, 150, 5, 4, 5, 19, 5, 63, 327, 345, 1963, 2093, 7, 991], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [25, 224, 11, 12217, 12218, 137, 13, 125, 20, 13, 25, 3], [25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 49, 291, 292, 1142, 1143, 1289, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 12219, 372, 56, 12220, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [76, 133, 123, 1709, 55, 2, 122, 76, 2, 118, 3, 96, 71], [58, 94, 3517, 4194, 4195, 531, 75, 112, 49, 990, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 990, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 9, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 9, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 17, 16, 9, 17, 1, 1, 256, 298], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [15, 26, 32, 64, 15, 26, 32, 64], [175, 974, 11, 4913, 4914, 821, 65, 141, 495, 12221, 12222, 12223, 181, 1, 124, 1, 291, 292, 1, 814, 3, 1445, 354, 11, 4913, 4914, 65, 402, 1, 1, 55, 1, 1, 974, 11, 4913, 4914, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [29, 502, 4, 2691, 3690, 120, 28, 6, 27, 2, 239, 2691, 3690, 120, 4, 130, 88, 690, 14, 114, 464], [110, 264, 43, 84, 2, 91, 83, 33, 2148, 4, 88, 85, 350, 4, 41, 111, 63, 3670, 68, 264, 43, 84, 2, 91, 83, 33, 2148, 4, 88, 85, 350, 4, 41, 698, 245, 1291, 4687, 722, 172, 39, 201, 91, 33, 2881, 53, 35, 39, 91, 96, 12224, 12225, 854, 220, 2540], [60, 94, 361, 1304, 92, 69, 60, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 392, 4, 2, 128, 126, 27, 2, 392, 4, 2, 128, 126], [150, 5, 4, 5, 19, 162, 2466, 150, 5, 4, 5, 19, 162, 2466, 12], [548, 11, 174, 31, 23, 65, 141, 1361, 541, 116, 335, 2, 2499, 66, 117, 107, 4, 547, 62, 374, 49, 137, 600, 571, 3326, 374, 2727, 2206, 83, 67, 1262, 3, 31, 6, 704, 3, 217, 1, 1, 38, 248, 3080, 66, 2595, 7, 12226, 7, 183, 66, 12227, 1065, 173, 30, 3, 179, 764, 1, 1, 143, 2931, 288, 2, 398, 23, 37, 39, 326, 3, 95, 173, 21, 1407], [86, 452, 12228, 12229, 1, 49, 1, 7186, 7187, 1570, 291, 292, 1, 1145, 243, 86, 452, 1, 1, 111, 1855, 47, 42, 2810, 104, 102, 2, 3, 50, 564, 21, 50, 564, 6, 3, 129, 11, 143, 86, 210], [974, 11, 2910, 2911, 55, 1, 1, 974, 11, 2910, 2911, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [40, 32, 6, 64, 40, 32, 6, 64, 14, 132, 3, 32, 1, 691, 12230], [299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 221, 138, 1, 52, 56, 1, 28, 56, 1, 271, 1, 953, 233, 1, 469, 149, 28, 16, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 439, 1084, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 1176, 1728, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725, 1, 1, 1, 724, 222, 1, 1, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 1, 2456, 1470, 2457, 2458, 1, 2459, 2460, 1, 2461, 1, 1, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 1, 1, 247, 741, 741, 56, 200, 1, 1, 247, 741, 741, 3000, 200, 1, 1, 247, 741, 741, 908, 200, 1, 1, 247, 130, 1265, 3001, 173, 2648, 1, 1, 256, 136, 10, 261, 1503, 7, 135, 3362, 39, 43, 336, 12, 3, 177, 1589, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 221, 247, 1, 301, 247, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1176, 1728, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 40, 1, 221, 247, 1, 301, 247, 1, 133, 903, 318, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1176, 1728, 154, 24, 144, 1, 95, 116, 12, 929, 1, 354, 230, 1, 800, 930, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325], [132, 32, 57, 4, 793, 86, 3, 195, 7336, 7337, 7338, 7339, 7, 12231, 12232, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 195, 7336, 7337, 7338, 7339, 7, 12233, 12234, 59, 12235, 59, 12236, 59, 12237], [27, 2, 436, 3701, 310, 27, 2, 436, 3701, 310], [544, 7340, 4915, 4916, 4917, 4915, 4916, 4917, 89, 8, 45, 11, 24, 849, 112, 106, 8, 253, 424, 151, 6, 273, 202, 226, 32, 11, 911, 14, 544, 44, 32, 53, 754, 53, 285, 53, 613, 143, 165, 52, 460, 11, 7340, 4915, 4916, 4917], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607, 112, 105, 10, 1, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [40, 318, 37, 27, 2, 326, 143, 1790, 112, 105, 10, 40, 318, 37, 27, 2, 326, 143, 1790], [40, 1575, 6, 1656, 1970, 1718, 2092, 27, 2, 326, 143, 1790, 4918, 1790, 22, 2, 170, 42, 75, 40, 1575, 40, 6, 1656, 1, 40, 703, 758, 1970, 1718, 2092, 6, 172, 184, 6, 693, 3, 37, 617, 1, 40, 703, 758, 1718, 2092, 6, 172, 184, 6, 693, 3, 37, 617, 1, 40, 318, 37, 27, 2, 326, 143, 1790, 1, 40, 4918, 1790, 22, 2, 170, 1039, 1790, 362, 37, 1969, 52, 1123, 1196, 2, 421, 3, 653, 200], [27, 2, 122, 2, 519, 27, 2, 122, 2, 519], [32, 132, 32, 132], [150, 5, 4, 5, 19, 5, 476, 150, 5, 4, 5, 19, 5, 12], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 95, 158, 33, 260, 82, 418, 27, 2, 95, 158, 33, 260, 82, 418], [34, 70, 11, 3936, 814, 1028, 124, 12238, 12239, 12240, 12241, 203, 279, 140, 6, 346, 36, 115, 208, 12242, 3936, 1376, 200, 564, 11, 967, 10, 279, 140, 31, 308, 525, 28, 10, 179, 450], [27, 2, 239, 527, 627, 62, 1069, 27, 2, 239, 527, 627, 62, 1069], [51, 117, 200, 6809, 72, 127, 11, 1972, 284, 118, 3, 37, 149, 174, 8, 860, 11, 3392, 1341, 23, 6, 24, 32, 30, 149, 174, 12243, 10, 3, 731, 2304, 63, 399, 2, 2821, 7, 3, 506, 1212, 2, 4919, 1, 1, 2574, 12244, 653, 44, 670, 34, 283, 1119, 1688, 44, 241, 1777, 11, 12245, 149, 12246, 63, 543, 207, 44, 1763, 246, 8, 335, 2, 199, 3392, 1341, 67, 90, 264, 4870, 8, 43, 10, 151, 38, 2714, 4920, 7, 3887, 11, 1019, 4, 3, 3886, 39, 35, 14, 322, 34, 2, 118, 21, 1524, 1688, 44, 21, 264, 43, 84, 2, 43, 3939, 4, 1318], [359, 36, 113, 7, 3529, 2481, 432, 99, 8, 743, 54, 833, 1008, 54, 307, 50, 91, 163, 367, 698, 127, 530, 731, 496, 6433, 346, 15, 6, 8, 12247, 261, 3307, 164, 37, 51, 250, 2, 206, 113, 53, 598, 12248, 113, 38, 425, 113, 7, 113, 183, 179, 123], [274, 148, 7, 54, 33, 86, 1565, 294, 23, 115, 14, 50, 80, 95, 158, 33, 86, 52, 137, 33, 274, 148], [747, 29, 2, 15, 252, 3479, 2, 239, 3, 791, 747, 29, 2, 15, 252, 3479, 2, 239, 3, 791], [88, 31, 55, 106, 8, 38, 29, 2, 3, 12249, 2, 1214, 1022, 4, 88, 91, 163, 464, 2914, 12250, 149, 685, 6538, 2301], [29, 102, 2, 82, 418, 29, 102, 2, 82, 418], [1288, 29, 2, 3182, 254, 365, 334, 1, 1288, 29, 2, 3, 693, 173], [27, 2, 29, 245, 36, 24, 4811, 27, 2, 29, 245, 36, 24, 4811], [28, 27, 2, 95, 4, 2, 41, 28, 27, 2, 95, 4, 2, 41], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [87, 395, 210, 208, 21, 1372, 2, 38, 87, 395, 210, 49, 27, 2, 927, 87, 497, 294, 33, 910, 51, 121, 4, 2485, 51, 281, 158, 33, 2798, 121, 4, 107, 927, 541, 2245, 695, 38, 330, 23, 31, 389, 7, 330, 72, 21, 1954, 398, 3, 31, 99, 54, 23, 588, 257, 424, 89, 23, 1372, 2, 43, 72, 31, 7130, 7131, 149, 120, 4206, 3525], [40, 703, 758, 286, 565, 10, 6, 172, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [82, 20, 542, 134, 82, 20, 542, 134], [58, 94, 1252, 432, 48, 6, 75, 112, 12, 49, 105, 10, 9, 81, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [3, 115, 2558, 4, 7341, 1895, 719, 6, 8, 45, 21, 6, 10, 67, 164, 9, 1136, 10, 3, 167, 3, 115, 2558, 4, 7341, 1895, 719, 6, 8, 45, 21, 6, 10, 67, 164, 9, 1136, 10, 3, 167], [27, 2, 189, 186, 11, 349, 249, 1073, 207, 349, 402, 14, 574, 2, 15, 431, 549, 101, 983, 7, 1374, 571, 1474, 1704, 207, 44, 186, 39, 43, 350, 349, 6, 524, 2, 598, 310], [24, 475, 10, 235, 86, 55, 1, 611, 270, 80, 253, 3, 312, 2, 211, 7, 170, 3, 29, 18, 7342, 181, 4, 33, 3841, 86, 1, 86, 222, 53, 96, 1, 1, 410, 12251, 1, 1962, 107, 12252, 1, 2560, 1, 2560, 1, 1, 12253, 2597, 235, 1, 1, 611, 270, 80, 253, 143, 165, 222, 524], [518, 1904, 13, 25, 518, 1904, 13, 25], [58, 94, 90, 12254, 24, 48, 6, 531, 75, 112, 12, 49, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 17, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1005, 318, 1588, 10, 311, 2, 4303, 31, 1005, 318, 1588, 10, 311, 2, 4303, 31], [349, 1816, 10, 160, 127, 89, 8, 1685, 1595, 1224, 10, 127, 89, 8, 644, 10, 1144, 12255, 4, 2226, 954, 47, 644, 349, 12256, 10, 461, 4267, 644, 107, 3, 349, 65, 141, 12257, 4, 536, 7, 700, 67, 8, 12258, 10, 3, 160, 127, 89, 8, 468, 98, 4, 3, 1597, 18, 1023, 151, 42, 567, 359, 12259, 23, 123, 47, 54, 21, 1766, 510, 129, 12260, 12261], [1715, 49, 290, 193, 2287, 822, 1, 1, 581, 6, 3, 167, 1926, 1171, 164], [382, 4, 108, 65, 8, 141, 1506, 2265, 443, 985, 11, 25, 62, 827, 382, 4, 108, 65, 8, 141, 1506, 2265, 443, 985, 11, 25, 62, 827], [27, 2, 239, 1215, 734, 2675, 10, 338, 27, 2, 239, 1215, 734, 2675, 10, 338], [15, 3814, 191, 217, 64, 77, 15, 3814, 191, 217, 64, 77], [15, 26, 13, 25, 15, 26, 13, 25], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [3, 142, 11, 337, 12, 166, 113, 1570, 65, 351, 3519, 77, 18, 24, 401, 3, 142, 11, 337, 65, 351, 3519, 77, 18, 24, 401, 1, 1, 14, 129, 209, 3480, 3481, 11, 582, 957], [58, 466, 116, 12, 393, 49, 2414, 4124, 116, 63, 10, 1110, 121, 30, 90, 3, 121, 244, 1726, 77, 7, 3, 201, 709, 39, 884, 98, 30, 6, 58, 12262, 479, 2, 12263, 62, 12264, 66, 2399, 77, 393, 3, 58, 380, 4359, 748, 90, 7, 90, 7, 748, 90, 7, 3, 155, 514, 3, 116, 3, 121, 63, 912], [15, 26, 64, 77, 15, 26, 64, 77], [34, 70, 11, 72, 32, 707, 34, 70, 11, 72, 32, 707], [27, 2, 463, 41, 27, 2, 463, 41], [307, 54, 29, 2, 83, 3, 460, 4, 7343, 7344, 596, 7345, 745, 88, 54, 29, 2, 83, 3, 460, 4, 7343, 7344, 596, 7345, 745, 88], [32, 64, 32, 64], [31, 12265, 12266, 1671, 4, 15, 51, 45, 10, 76, 307, 55, 1, 1, 38, 31, 51, 356, 45, 10, 76, 455, 490, 1, 356, 8, 84, 2, 373, 2130, 1671, 4, 15, 51, 356, 10, 76, 372, 1935, 330, 2, 373, 2130, 447, 2, 206, 3206, 4, 15, 67, 63, 8, 84, 2535, 21, 63, 299, 31, 67, 425, 44, 30, 299, 15, 101, 1, 912, 205, 242, 51, 63, 4, 3, 174, 7, 21, 6, 45, 67, 39, 106, 3, 179, 12, 490, 45, 10, 76, 1, 1, 1, 14, 114, 30, 313, 305], [1715, 37, 135], [25, 3, 13, 11, 12267, 12268, 10, 15, 160, 15, 329, 250, 2, 95, 3, 15, 934, 18, 15, 12269, 3, 648, 116, 21, 246, 8, 979, 33, 13, 7, 64, 80, 77, 18, 3, 52], [70, 2699, 2, 1297, 242, 394, 70, 2699, 2, 1297, 242, 394, 7, 3922, 2, 628, 209, 174, 400], [1280, 1068, 12, 1535, 149, 8, 45, 21, 50, 564, 1, 1, 47, 42, 27, 2, 122, 2, 1280, 1068, 12, 1535, 149, 112, 372, 451, 1713, 1162, 1, 1, 14, 263, 51, 23, 63, 4, 4921, 12270, 719, 21, 63, 45, 494, 7, 47, 185, 122, 3, 179, 716, 172, 169, 21, 65, 141, 12271, 2, 1535, 149, 393, 713, 251, 47, 42, 27, 2, 122, 1, 14, 114, 7, 876, 12, 3, 1131, 1, 1, 30, 135], [51, 515, 128, 126, 33, 155, 213, 419, 99, 8, 515, 1515, 1272, 80, 42, 1085, 3, 179, 1677, 51, 515, 128, 126, 33, 155, 213, 419, 99, 8, 515, 1515, 1272, 80, 42, 1085, 3, 179, 1677], [70, 400, 11, 2699, 70, 2699, 2, 1297, 242, 394, 7, 3922, 2, 628, 209, 174, 400], [132, 32, 57, 4, 793, 86, 3, 28, 7346, 7347, 7, 7348, 7349, 55, 101, 1, 1, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 28, 7346, 7347, 7, 7348, 7349, 1, 1, 59, 12272, 1, 1, 59, 12273], [2232, 416, 10, 1274, 78, 8, 45, 4, 26, 160, 2232, 416, 10, 1274, 78, 8, 45, 4, 26, 160, 1, 51, 937, 3, 2232, 416, 36, 1238, 797, 462, 3, 78, 4191, 318, 78, 37, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 1, 51, 937, 3, 2232, 416, 36, 2709, 646, 2627, 1238, 797, 462, 1274, 1101, 98, 67, 21, 89, 8, 729, 80, 2, 421, 365, 782, 1, 3, 179, 2232, 416, 6, 45, 494, 4, 26, 205, 242, 1037, 1, 1, 3, 2222, 416, 416, 6, 45, 494, 4, 26, 7, 26], [846, 703, 758, 286, 565, 10, 6, 172, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [2096, 39, 8, 43, 825, 55, 1, 1, 112, 241, 540, 51, 3, 1530, 2096, 1095, 2, 648, 347, 18, 459, 257, 7, 257, 2096, 1242, 30, 77, 316, 2, 100, 21, 62, 229, 4, 3, 4112, 1, 1, 23, 167, 176, 6, 355, 389, 3342, 23, 57, 1, 1, 1, 1, 1, 135], [1005, 864, 6, 346, 10, 2275, 767, 4, 2929, 7350, 1005, 864, 6, 346, 10, 2275, 767, 4, 2929, 7350, 51, 35, 413, 10, 233, 1971, 7, 1535, 4922, 151, 6, 857, 1005, 864, 6, 346, 219, 2, 43, 179, 53, 10, 165, 2674, 1296], [41, 6, 8, 1628, 41, 6, 8, 1628], [12274, 18, 2163, 1842, 208, 491, 1, 1, 47, 106, 8, 38, 3230, 198, 18, 177, 824, 4, 78, 102, 35, 2, 12275, 3, 2163, 1842, 18, 261, 824, 1, 1, 1, 4278, 4279, 40, 173, 40, 1, 1, 12276, 12277, 40, 173, 40], [870, 31, 870, 6, 8, 45], [10, 121, 935, 1706, 533, 101, 14, 263, 3, 10, 121, 640, 1285, 222, 201, 11, 310, 748, 1244, 2, 1244, 640, 3702, 12278, 1285, 2948, 12279], [3880, 677, 2892, 6, 346, 11, 127, 117, 916, 185, 35, 14, 114, 85, 6, 385, 30, 117, 916, 47, 39, 189, 186, 411, 151, 42, 2214, 95, 780, 37, 3880, 677, 2892, 6, 346, 1, 47, 114, 30, 780, 1076, 7, 2892, 6, 1916, 11, 23, 117, 12280, 1, 1, 151, 264, 43, 577, 265, 11, 2557, 2553, 577, 565, 2387, 2926, 411, 117, 6, 36, 12281, 2118, 65, 2, 43, 543, 241, 677, 11, 23, 2320, 183, 1, 1, 47, 38, 2, 598, 3, 418, 310, 411, 21, 6, 73, 127, 455, 73, 417, 30, 2067, 2393, 207, 305], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [280, 73, 471, 7351, 7352, 280, 73, 471, 7351, 7352], [280, 73, 471, 7353, 7354, 280, 73, 471, 7353, 7354], [7069, 88, 4, 41, 8, 45, 55, 39, 35, 14, 50, 80, 2, 795, 3, 177, 31, 1259, 479, 2, 170, 41, 276, 118, 23, 130, 690, 88, 71, 4, 127, 2, 2205, 582, 38, 2, 413, 12282, 1420, 12283, 420, 62, 276, 3, 41, 6, 825, 67, 151, 6, 9, 133, 30, 88, 184, 54, 5070, 450], [280, 73, 471, 7355, 7356, 280, 73, 471, 7355, 7356], [280, 148, 255, 7357, 1052, 2319, 2038, 2039, 12284, 255, 7357, 1052, 2319, 2038, 2039], [4578, 7358, 4581, 406, 12285, 1393, 1, 4333, 2521, 2438, 1, 7358, 4581, 2709, 62, 1462, 12, 420], [39, 35, 14, 50, 111, 1, 1, 479, 2, 253, 288, 2, 373, 3, 171, 36, 501, 297, 704, 3, 171, 18, 5450, 926, 11, 570, 1672, 357, 4886, 2, 661, 12286, 39, 35, 14, 50], [27, 2, 909, 82, 20, 208, 491, 1, 1, 49, 27, 2, 909, 82, 418, 3, 37, 6, 323, 8, 267, 2, 3, 78, 67, 220, 429, 267, 233, 14, 91, 3, 167, 554, 11, 104, 2047, 1, 1, 1, 1, 1, 135], [13, 89, 8, 134, 21, 530, 32, 6, 808, 13, 89, 8, 134, 21, 530, 32, 6, 808], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [69, 1081, 294, 961, 111, 2600, 3173, 30, 3574, 36, 2738, 419, 47, 12287, 410, 83, 69, 3368, 294, 961, 4, 127, 2, 12288, 23, 312, 35, 42, 653, 2, 410, 3, 177, 521, 4, 3, 69, 916, 11, 83, 4859, 1760, 302, 6, 1942, 3420, 961, 59, 2, 43, 274, 36, 12289, 12290, 961, 2, 961, 18, 687, 819, 18, 3368, 264, 43, 2236, 7, 227, 181, 196, 2, 43, 399, 4, 5744, 155, 59, 746, 3, 521, 42, 912, 14, 778, 207, 44, 47, 39, 3319, 3, 648, 1081, 2, 1760, 294, 961], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [123, 4, 678, 294, 87, 208, 491, 49, 843, 193, 329, 3842, 678, 53, 613, 53, 6256, 964, 10, 87, 1259, 49, 250, 2, 122, 21, 6, 770, 8, 545, 7, 87, 297, 6, 164, 1167, 7, 1281, 77, 102, 2, 611, 353, 3, 179, 11, 24, 12291, 12292, 3618, 12293, 149, 1620, 1535], [15, 1616, 1777, 346, 11, 3, 12294, 2862, 1626, 363, 206, 3, 96, 131, 4, 3, 1692, 7, 1264, 3, 1777, 294, 2302, 1, 1, 358, 1841, 262, 12295, 2640, 1340, 4552, 3272, 1, 190, 1841, 17, 2671, 2671, 90, 2640, 3348, 1, 1668, 1841, 2838, 4757, 4757, 777, 1668, 1, 1689, 1371, 1348, 2470, 1689, 1852, 359, 1371, 447, 1371, 1, 1707, 1841, 17, 2671, 2671, 90, 2640, 3348, 1, 596, 1846, 1841, 1348, 1222, 596, 1846, 457], [626, 577, 252, 4, 249, 55, 1, 1, 47, 1563, 36, 127, 3162, 101, 44, 329, 3162, 127, 112, 576, 284, 38, 884, 1379, 458, 249, 30, 577, 1341, 1, 1, 349, 2320, 12296, 12297, 1378, 56, 409, 3645, 1, 4, 4011, 7359, 1, 4, 4011, 7360, 1, 4, 4011, 7359, 1, 4, 4011, 7360, 1, 1, 302, 18, 532, 627, 184, 65, 577, 1341, 6, 1118, 693, 1, 1, 12, 1997, 284, 42, 3162, 127, 30, 391, 577, 1341, 4, 2831, 1, 1, 102, 104, 967, 4, 2179, 23, 10, 266, 305, 53, 47, 38, 995, 10, 2204, 83, 2336], [54, 50, 4, 25, 13, 4, 13, 125, 20, 13, 120, 54, 50, 4, 25, 13, 4, 13, 125, 20, 13, 120], [150, 5, 4, 5, 19, 645, 20, 260, 20, 409, 203, 150, 5, 4, 5, 19, 645, 20, 260, 20, 409, 203, 12], [150, 5, 4, 5, 19, 645, 20, 40, 409, 315, 150, 5, 4, 5, 19, 645, 20, 40, 409, 315, 12], [32, 4012, 4, 15, 26, 32, 4012, 4, 15, 26], [1203, 34, 9, 1119, 543, 3974, 5889, 246, 265, 2, 1203, 3, 71, 34, 9, 1119, 543, 1, 1, 1, 1, 1, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [150, 5, 4, 5, 19, 26, 650, 150, 5, 4, 5, 19, 26, 650, 12], [31, 30, 547, 191, 217, 208, 491, 1823, 1, 1, 49, 8, 84, 2, 29, 547, 53, 613, 53, 191, 217, 1, 1, 611, 2016, 662, 558, 307], [32, 64, 4, 226, 32, 64, 4, 226], [275, 607, 256, 1718, 4, 254, 11, 78, 40, 14, 114, 377, 275, 607, 256, 1718, 4, 254, 11, 78, 40, 14, 114, 377], [8, 84, 2, 46, 2, 87, 8, 84, 2, 46, 2, 87], [356, 254, 29, 111, 101, 38, 805, 29, 2, 3, 254, 10, 33, 142, 14, 91, 3, 1210, 96, 23, 179, 31, 6, 4473, 11, 12298, 7, 12299, 39, 35, 14, 1419, 11, 23, 29, 2, 43, 6537], [60, 94, 90, 1285, 60, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [27, 2, 29, 245, 27, 2, 29, 245], [150, 5, 4, 5, 19, 162, 2466, 150, 5, 4, 5, 19, 162, 2466, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [27, 2, 189, 186, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 763, 18, 4754, 2613, 11, 367, 4, 431, 549, 6, 67, 264, 43], [15, 6, 75, 417, 20, 24, 314, 740, 42, 8, 84, 2, 1209, 999, 15, 6, 75, 417, 20, 24, 314, 740, 42, 8, 84, 2, 1209, 999, 117, 200, 6, 8, 84, 2, 1209, 999, 4, 1374], [1221, 452, 536, 6, 2259, 98, 30, 189, 186, 1963, 2, 162, 330, 2, 735, 77, 835, 273, 4045, 312, 3, 835, 6, 64, 98, 39, 106, 1210, 355, 12300, 3518], [15, 75, 28, 59, 12301, 31, 15, 75, 271, 90, 9, 18, 195, 952, 52, 15, 26, 15, 160, 31, 355, 5546, 129, 9, 78, 56, 40, 482, 1221], [235, 108, 453, 235, 108, 453, 56, 1017, 2698, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1288, 57, 2, 33, 508, 383], [15, 160, 6, 285, 4, 732, 18, 3248, 359, 3248, 777, 134, 3248, 777, 97, 43, 1320, 514, 186], [150, 5, 4, 5, 19, 5, 259, 150, 5, 4, 5, 19, 5, 12], [94, 10, 15, 26, 94, 10, 15, 26], [738, 121, 738, 121], [7361, 2240, 6, 8, 1977, 1496, 101, 1638, 2, 694, 7361, 2240, 6, 8, 1977, 1496, 101, 1638, 2, 694], [87, 429, 49, 445, 67, 49, 8, 110, 38, 1910, 44, 268, 66, 57, 241, 891, 18, 87, 11, 191, 516, 51, 49, 489, 470, 187, 205, 242, 38, 1548, 489, 33, 115, 7, 3692, 7, 36, 3, 115, 18, 33, 1033, 21, 429, 49, 1656, 62, 2194, 276, 826, 320, 80, 71], [54, 34, 4689, 536, 660, 447, 4689, 536, 660, 6, 8, 578, 21, 141, 10, 72, 12302, 3518, 3974, 12303, 8, 4559, 5617, 5618, 431, 549, 1907], [211, 74, 4, 145, 594, 211, 74, 4, 145, 594], [58, 193, 443, 529, 42, 327, 278, 288, 187, 35, 1264, 151, 42, 58, 193, 15, 26, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 16, 15, 278, 1, 1, 42, 316, 467, 197, 999, 1447, 16, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 40, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 16, 4657, 195, 12, 90, 1, 1, 85, 165, 529, 42, 327, 278, 15, 26, 1, 1, 39, 35, 29, 104, 131, 287, 10, 3, 78, 1, 1, 143, 165, 1119, 62, 210, 30, 165, 571], [220, 466, 116, 165, 58, 1123, 134, 2015, 14, 269, 222, 4, 3, 1380, 96, 68, 443, 529, 42, 1447, 14, 199, 3, 1166, 34, 1380, 4, 3, 1249, 218, 48, 271, 90, 28, 59, 226, 12304, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 26, 15, 160, 78, 56, 40, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 1852, 7, 359, 1232, 1232, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 149, 53, 332, 2113, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 42, 165, 195, 697, 23, 16, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078, 163, 28, 56, 2113, 12305, 129, 9], [114, 33, 299, 11, 3, 309, 128, 126, 347, 111, 14, 114, 33, 299, 11, 3, 309, 128, 126, 347, 49, 250, 2, 909, 173, 2, 3, 1030, 1411, 218, 63, 84, 2, 909, 2, 3, 12306, 1411, 67, 11, 241, 709, 97, 909, 158, 1030, 2532, 299, 1009, 1017, 2276, 854, 120, 188, 309, 7, 1600, 1671], [123, 111, 51, 335, 2, 436, 822, 455, 118, 3, 96, 37, 14, 386, 1701, 1702, 1847, 854, 220, 1371], [150, 5, 4, 5, 19, 5, 259, 150, 5, 4, 5, 19, 5, 12], [48, 129, 1092, 60, 94, 4, 596, 687, 3393, 596, 687, 65, 1092, 44, 310, 748, 7, 858, 3, 856, 63, 8, 45, 284, 38, 1376, 3, 437, 3267, 184, 328, 44, 3, 155, 60, 63, 45, 494, 1, 185, 35, 14, 663, 3, 1994, 18, 3, 1159, 7, 270, 166, 253, 104, 12307, 1, 49, 12308, 44, 1438, 101, 187, 8, 1376, 166, 393, 44, 31], [60, 94, 358, 12309, 24, 76, 60, 6, 75, 12, 124, 105, 10, 48, 6, 98, 10, 640, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 46, 2, 26, 137, 15, 1313, 111, 1, 49, 27, 2, 46, 2, 26, 310, 7, 91, 3, 37, 806, 4, 3, 1210, 1, 102, 104, 50, 12, 3, 1131, 112, 356, 250, 2, 205, 242, 829, 442, 2, 82, 20], [13, 25, 13, 25], [61, 94, 361, 361, 48, 6, 531, 75, 12, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [447, 4, 15, 8, 590, 447, 4, 15, 8, 590], [339, 121, 1120, 941, 339, 121, 1120, 941], [683, 403, 55, 1, 14, 1419, 44, 3268, 592, 12310, 4685, 4707, 841, 29, 2, 104, 414, 1061, 631], [846, 4835, 4171, 4013, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 846, 4835, 4171, 4013, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [1921, 14, 622, 464, 1921, 4923, 103, 626, 37], [220, 466, 116, 165, 58, 1123, 134, 2015, 14, 269, 222, 4, 3, 1380, 96, 68, 443, 529, 42, 1447, 14, 199, 3, 1166, 34, 1380, 4, 3, 1249, 218, 48, 271, 1495, 28, 59, 226, 12311, 52, 35, 42, 697, 894, 193, 10, 14, 302, 83, 387, 88, 15, 872, 553, 623, 999, 44, 42, 278, 387, 1232, 189, 72, 127, 666, 594, 23, 2620, 2, 387, 149, 501, 1148, 449, 149, 288, 39, 23, 31, 43, 2197, 66, 3, 21, 295, 159, 42, 165, 195, 697, 23, 14, 552, 1673, 1210, 7, 2198, 420, 51, 3, 31, 1078, 6, 1223, 4, 33, 623, 51, 335, 2, 465, 4, 21, 530, 49, 4, 21, 7, 97, 504, 21, 77], [2024, 123, 30, 1501, 3, 219, 2, 43, 2358, 411, 21, 6875, 3759, 3, 973, 18, 160, 39, 995, 77, 10, 3, 641, 183, 443, 826, 7, 838, 42, 952, 8, 355, 80, 23, 12312, 458, 256, 7362, 655, 1, 1, 1, 49, 290, 72, 31, 30, 3, 1181, 1618, 1613, 52, 456, 3611, 349, 2, 160, 359, 4, 15, 47, 42, 290, 2, 199, 458, 1344, 7362, 655, 866, 1125, 4, 3, 131, 4, 15, 183, 23, 123, 12313, 12314, 3, 3937, 7, 12315, 62, 3611, 160, 359], [27, 2, 95, 4, 2, 79, 27, 2, 95, 4, 2, 79], [90, 3004, 1669, 7363, 24, 144, 6, 75, 112, 10, 90, 3004, 1669, 7363, 24, 144, 6, 75, 112, 10], [29, 2, 299, 159, 7364, 146, 14, 206, 80, 2, 3, 7364, 181, 159], [1441, 4, 8, 545, 37, 4, 15, 1441, 4, 8, 545, 37, 4, 15], [37, 71, 4, 3827, 3828, 15, 3827, 3828, 37, 71, 1182, 319, 191, 1072, 8, 670, 4, 104, 28, 916], [41, 1128, 2, 8, 545, 41, 1128, 2, 8, 545], [28, 1049, 2, 25, 155, 204, 28, 1049, 2, 25, 155, 204], [32, 64, 77, 32, 64, 77], [15, 26, 15, 160, 32, 64, 15, 26, 15, 160, 32, 64], [660, 136, 36, 376, 2, 73, 148, 660, 136, 36, 376, 2, 73, 148], [39, 176, 4, 2554, 2554, 74, 8, 45], [40, 110, 27, 2, 1273, 3, 301, 78, 6, 21, 1130], [7365, 89, 8, 504, 131, 11, 349, 7365, 89, 8, 504, 131, 11, 349, 611, 114, 11, 127, 9], [39, 8, 1539, 87, 381, 39, 8, 1539, 87, 381], [236, 98, 115, 14, 844, 2, 4275, 4276, 1, 169, 3, 1263, 3199, 65, 141, 12316, 3, 115, 255, 12317, 12318, 755, 43, 236, 98, 12319, 389, 12320, 12321, 2991, 7366, 1, 264, 341, 66, 12322, 1, 223, 1101, 251, 10], [1044, 4135, 14, 844, 2, 4275, 4276, 1, 1263, 3199, 755, 43, 274, 36, 2991, 7366, 4, 1939, 2413, 12323, 4988, 753, 1, 264, 43, 4, 5028], [27, 2, 515, 41, 7, 87, 27, 2, 515, 41, 7, 87], [29, 2, 254, 11, 1952, 2236, 55, 1, 1, 39, 35, 50, 2, 995, 4, 34, 11, 29, 2, 3, 994, 7104, 254, 11, 223, 12324, 12325, 691, 12326, 510, 1, 1, 38, 2714, 3, 1097, 18, 3, 254, 12327, 12328, 994, 120, 11, 1279, 2478], [1114, 1115, 7367, 1114, 1115, 7367], [9, 395, 108, 430, 9, 395, 108, 430], [340, 8, 45, 340, 8, 45], [54, 50, 4, 699, 87, 381, 44, 6, 770, 98, 30, 72, 37, 54, 50, 4, 699, 87, 381, 44, 6, 770, 98, 30, 72, 37], [27, 2, 100, 492, 287, 27, 2, 100, 492, 287, 4, 28, 52], [8, 84, 2, 199, 1039, 469, 55, 1, 1, 49, 8, 84, 2, 199, 1039, 469, 66, 506, 21, 6, 1360, 6574, 1, 611, 50], [130, 441, 1350, 346, 208, 83, 1, 14, 100, 34, 7, 196, 1015], [535, 99, 8, 170, 110, 384, 72, 37, 71, 51, 250, 2, 170, 191, 217, 130, 441, 1350, 6, 8, 430, 1914, 33, 12329, 140, 372, 1948, 7, 172, 49, 496, 23, 71, 2184, 12330], [14, 320, 80, 229, 11, 13, 125, 20, 13, 120, 14, 320, 80, 229, 11, 13, 125, 20, 13, 120], [87, 2566, 134, 12331, 12332, 1, 49, 1, 291, 292, 1, 2985, 1711, 87, 89, 8, 170, 1, 1, 14, 11, 295, 1, 1, 450, 12333, 2395], [1710, 699, 3, 12334, 1710, 12335, 30, 12336, 3, 1745, 18, 3, 142, 6, 1548, 10, 454, 1, 288, 39, 21, 43, 1548, 489, 1, 1, 263, 3, 31, 534, 63, 1766], [131, 12337, 55, 1, 1, 151, 42, 4691, 193, 30, 3, 660, 18, 4841, 420, 168, 20, 15, 11, 12338, 1712, 923, 91, 96, 1, 1, 2685, 556, 1, 2617, 2618, 1, 1, 1, 36, 3867, 3868, 1, 331, 2091, 4924, 1, 2, 4897, 7224, 12339, 2, 4897, 12340, 704, 2510, 223, 7368, 12341, 1, 1, 1, 55, 1518, 1, 1, 112, 12342, 711, 7368, 65, 141, 4841, 283, 734, 4, 168, 20, 1, 1, 112, 44, 116, 3, 131, 65, 8, 141, 1675, 2, 15, 1, 1, 581, 829, 6, 385, 30, 3, 734, 9, 62, 3, 916, 107, 1, 1, 166, 68, 35, 38, 3, 648, 223, 581, 30, 72, 12343, 916, 107, 1, 1, 21, 1261, 43, 411, 1, 1, 14, 114, 1, 1, 1, 1, 30, 450, 750, 1, 135], [553, 3571, 777, 42, 8, 327, 553, 3571, 777, 42, 8, 327, 14, 663, 12, 3, 1131], [3973, 3368, 1722, 11, 1081, 819, 2555, 1106, 3174, 3175, 1, 2133, 1, 72, 12344, 12345, 3173, 4312, 15, 6941, 7073, 7074, 1, 12346, 12347, 12348, 12349, 12350, 12351, 4308, 4309, 1, 2286, 243, 12352, 1043, 5961, 1770, 3973, 3368, 1722, 1, 1, 4523, 1, 1, 47, 42, 1909, 158, 3, 2502, 521, 184, 428, 4746, 828, 47, 99, 118, 251, 2, 35, 66, 1059, 1, 1, 1282, 11, 143, 3240], [148, 2134, 1933, 10, 61, 1383, 2484, 10, 11, 2123, 201, 7, 1128, 489, 148, 2134, 1933, 10, 61, 1383, 2484, 10, 11, 2123, 201, 7, 1128, 489, 1, 1, 1, 3376, 3377, 1, 124, 1, 291, 292, 1, 7332, 7333, 1, 4848, 550, 3389, 148, 1, 1, 1, 208, 491, 1, 1, 2243, 382, 148, 4899, 201, 2123, 4, 91, 377, 1, 781, 11, 3, 466, 7, 7240, 1, 1, 135], [15, 13, 25, 4, 26, 15, 13, 25, 4, 26], [15, 95, 10, 123, 55, 101, 1, 1, 39, 8, 95, 10, 15, 30, 33, 13, 1, 1, 185, 35, 50, 80, 11, 23, 31], [13, 25, 559, 36, 11, 28, 12353, 12354, 13, 25, 559, 36, 646], [51, 699, 2, 162, 20, 705, 835, 99, 100, 67, 680, 12355, 3, 167, 1054, 167, 11, 705, 9, 29, 162, 20, 212, 29, 294, 966, 392, 10, 8, 45], [191, 734, 102, 55, 101, 39, 35, 14, 1419, 191, 734, 11, 80, 14, 326, 3, 222, 96, 7, 270, 80, 253, 3, 801, 11, 3, 179, 7369, 7370, 1388, 1666, 686, 145, 7, 4396, 1156], [2, 647, 113, 113, 1038, 2, 2612, 12356, 7, 12357, 7, 12358, 632, 442, 23, 63, 3002, 2, 43, 1157, 662, 169, 5116, 716, 47, 2303, 2513, 23, 1038, 968, 36, 113, 63, 625, 201, 11, 205, 869, 803, 191, 1595, 884, 4, 710], [191, 734, 102, 55, 101, 39, 35, 14, 1419, 191, 734, 11, 80, 14, 326, 3, 222, 96, 7, 270, 80, 253, 3, 801, 11, 3, 179, 7369, 7370, 1388, 1666, 686, 145, 7, 4396, 15, 1684, 1156], [311, 2, 175, 299, 70, 2241, 9, 58, 133, 6, 285, 311, 2, 175, 299, 70, 2241, 9, 58, 133, 285, 1, 1, 37, 71, 9, 58, 133], [119, 683, 6862, 2, 841, 185, 35, 14, 521, 3, 683, 18, 3, 177, 694, 36, 2, 6863, 6864, 570, 314, 6865, 12359, 12360, 12361, 12362, 12363, 12364, 12365, 12366, 12367, 12368, 12369, 12370, 12371, 12372, 5693, 12373, 12374, 12375, 12376, 12377, 12378, 12379, 12380, 12381, 12382, 12383, 12384, 12385, 12386, 12387, 12388, 12389, 12390, 12391, 12392, 12393, 12394, 12395, 12396, 12397, 12398, 5592, 12399, 12400], [40, 7371, 7372, 297, 78, 160, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 7371, 7372, 297, 78, 160, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617], [359, 97, 43, 727, 9, 127, 39, 43, 727, 12401, 684], [119, 15, 397, 182, 36, 738, 2, 895, 119, 15, 397, 182, 36, 738, 2, 895], [15, 26, 13, 25, 11, 28, 7373, 15, 26, 13, 25, 11, 28, 7373], [32, 64, 32, 64], [14, 25, 15, 26, 13, 11, 28, 12402, 781, 35, 1343, 263, 30, 450, 750], [303, 55, 83, 1, 1, 106, 35, 38, 143, 2096, 393, 3, 31, 18, 303, 18, 610, 7, 160, 3316, 1, 51, 6, 3, 31, 1766], [97, 743, 127, 89, 8, 176, 113, 26], [32, 64, 32, 64], [15, 26, 160, 359, 97, 43, 727, 77, 37, 1, 133, 2, 52, 160, 127, 238, 297, 1945, 30, 301, 1, 160, 127, 238, 69, 1724, 1945, 626, 1, 37, 51, 405, 72, 2263, 133, 3283, 121], [876, 241, 1069, 11, 12403, 55, 1, 993, 2, 3, 218, 1, 40, 838, 555, 555, 632, 555, 632, 7374, 839, 173, 40, 838, 555, 555, 632, 555, 632, 7374, 839, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [150, 5, 4, 5, 19, 26, 650, 150, 5, 4, 5, 19, 26, 650, 12], [581, 4, 2994, 47, 38, 193, 30, 303, 36, 15, 151, 6, 175, 160, 127, 238, 297, 37, 581, 4, 2994, 47, 38, 193, 30, 303, 36, 15, 151, 6, 175, 160, 127, 238, 297, 37], [37, 74, 680, 6, 727, 849, 1, 37, 71, 1, 1, 1284, 604], [280, 73, 471, 7375, 7376, 280, 73, 471, 7375, 7376], [9, 133, 2, 3, 160, 127, 238, 297, 1945, 160, 127, 238, 69, 1724, 1945, 55, 1, 1, 47, 38, 9, 133, 2, 3, 6051, 1945, 78, 1262, 3, 78, 6, 75, 1, 47, 39, 176, 160, 359, 4, 190, 1, 1, 1, 9, 133, 2, 3, 160, 127, 238, 297, 1945, 160, 127, 238, 69, 1724, 1945, 1, 37, 2263, 133, 3283, 121], [193, 30, 1432, 1542, 1543, 193, 30, 1432, 1542, 1543], [280, 73, 471, 7377, 7378, 280, 73, 471, 7377, 7378], [280, 73, 471, 7379, 7380, 280, 73, 471, 7379, 7380], [1168, 751, 406, 7381, 7382, 1168, 751, 406, 7381, 7382], [191, 217, 31, 412, 349, 252, 42, 1321, 44, 12404, 764, 6, 192, 2626], [3153, 3725, 309, 11, 223, 4837, 4838, 520, 1013, 8, 1565, 55, 101, 1, 365, 334, 1, 1, 14, 104, 50, 2, 206, 309, 520, 1013, 2, 33, 1378, 2681, 4837, 4838, 1, 1, 12405, 6, 45, 4, 24, 112, 7, 2265, 83, 161, 1152, 112, 390, 1016, 24, 1, 390, 1493, 268, 3, 520, 1013, 4480, 53, 275, 2, 43, 402, 66, 83, 694, 1, 1, 47, 742, 5572, 3, 96, 498, 66, 104, 102, 1, 68, 582, 957, 6, 275, 14, 270, 166, 253], [41, 210, 576, 33, 41, 1571, 393, 655, 2, 463, 7383, 63, 343, 343, 278, 310, 39, 8, 100, 41, 41, 210, 576, 33, 41, 1571, 393, 655, 2, 463, 7383, 63, 343, 343, 278, 310, 39, 8, 100, 41, 849, 1, 14, 114], [382, 4, 382, 4, 1919, 8, 45], [115, 6, 8, 1506, 98, 115, 6, 8, 1506, 98, 28, 65, 534, 12406, 2, 7300, 1, 1, 142, 56, 2608, 1, 2184], [633, 7, 721, 29, 2, 2239, 254, 1046, 55, 50, 101, 1, 1, 39, 35, 363, 1419, 633, 7, 721, 29, 11, 12407, 12408, 2, 3, 177, 2239, 254, 10, 749, 2160, 749], [191, 217, 31, 2626, 3478, 4, 26, 6, 8, 2950, 143, 1164, 507, 1520, 4, 26], [31, 10, 780, 4, 417, 20, 47, 38, 3652, 503, 30, 458, 18, 3, 2840, 11, 1118, 1538, 7, 7384, 23, 6, 1832, 294, 780, 677, 2702, 4, 15, 4, 417, 20, 21, 6, 127, 294, 1465, 2, 7, 598, 2, 4600, 1, 1362, 3392, 1341, 816, 47, 187, 8, 38, 143, 210, 1, 310, 51, 3, 417, 248, 2, 1433, 3, 127, 30, 2702, 780, 677, 3, 2164, 167, 429, 3, 391, 503, 67, 51, 3, 438, 6, 1605, 7, 1166, 127, 6, 2268, 10, 3, 503, 6, 164, 274, 2, 302, 503, 2191, 1238, 822, 924, 18, 7385, 3, 2702, 503], [58, 94, 12409, 12410, 48, 6, 531, 75, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 86, 432, 20, 181, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 9, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [527, 12411, 527, 267, 2, 3, 86, 52, 4, 78, 719, 12, 24, 6, 8, 45, 14, 185, 35, 6426, 7, 398, 3, 123], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [61, 2807, 4, 1375, 859, 6, 2155, 68, 122, 33, 148, 2, 1375, 859, 7, 335, 2, 61, 10, 3112, 3, 163, 71, 38, 328, 44, 3, 71, 89, 8, 1242, 68, 199, 415, 2807, 62, 517, 1375, 859, 1911, 107, 18, 1375, 859, 6, 12412, 271, 841], [60, 94, 892, 12413, 6, 75, 12, 5464, 5465, 112, 105, 10, 48, 6, 98, 10, 76, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [110, 39, 46, 87, 169, 119, 13, 110, 39, 46, 87, 169, 119, 13, 67, 165, 220, 6, 837], [12414, 435, 3, 2801, 18, 3, 434, 65, 2053, 1696, 617], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [41, 412, 210, 111, 101, 1, 1, 33, 41, 6, 2389, 2, 2107, 98, 245, 4, 33, 412, 733, 1, 1, 1, 38, 248, 2, 7191, 3, 3102, 67, 21, 1373, 23, 65, 141, 1361, 83, 593, 1, 1, 54, 2, 43, 84, 2, 199, 23, 733], [50, 2, 211, 874, 4, 142, 4925, 111, 101, 54, 104, 50, 2, 920, 1029, 874, 4, 142, 4925, 3, 874, 526, 45, 1, 1, 68, 35, 38, 316, 2523, 14, 129, 80], [382, 115, 873, 98, 639, 307, 382, 115, 873, 98, 639, 330, 2, 335, 715, 3, 115, 443, 420, 3, 52, 2898, 456, 4, 2186, 1888, 351, 3, 115, 98, 7, 327, 649, 2, 43, 31, 30, 3, 115, 257, 3, 115, 1391, 75, 142, 56, 3060, 948, 671, 129], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [73, 223, 1017, 2698, 219, 73, 564, 86, 73, 223, 1017, 2698, 219, 73, 564, 86, 86], [188, 15, 88, 21, 664, 44, 15, 88, 6, 250, 2, 320, 3, 485, 66, 149, 57, 2, 3, 117, 129, 188, 15, 88, 21, 664, 44, 15, 88, 6, 250, 2, 320, 3, 485, 66, 149, 57, 2, 3, 117, 129, 3, 485, 66, 149, 57, 63, 4425, 1593, 207, 44, 21, 246, 201, 118, 331, 2, 3, 149, 223, 3, 485, 66, 149, 57, 264, 1493, 118, 331, 2, 3, 117, 129, 1231, 622, 2, 3, 163, 167, 1926, 187, 612, 119, 829, 14, 663, 7, 386, 510], [235, 108, 453, 235, 108, 453], [27, 2, 211, 82, 20, 27, 2, 211, 82, 20], [13, 25, 11, 7386, 7387, 13, 25, 11, 7386, 7387], [13, 111, 1, 14, 25, 33, 13, 7, 867, 3, 13, 2, 95, 4, 1, 613], [189, 1812, 11, 4907, 4908, 189, 2522, 226, 159, 11, 4907, 4908, 12415, 3, 3079, 4, 226, 6, 2, 43, 83, 5901, 732], [132, 32, 57, 4, 793, 86, 3, 28, 4875, 7388, 59, 7389, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 28, 4875, 7388, 59, 7389], [150, 5, 4, 5, 19, 5, 259, 150, 5, 4, 5, 19, 5, 12], [690, 88, 2384, 326, 1964, 31, 3, 1964, 4, 2384, 326, 6, 12416, 1693, 21, 2044, 2, 403, 3, 52, 189, 1881, 91, 163], [51, 137, 86, 133, 6, 1526, 97, 199, 564, 86, 11, 497, 7, 87, 964, 33, 793, 86, 6, 165, 826, 12, 3941, 38, 3586, 393, 3, 179, 1677], [76, 229, 76, 229], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [37, 4, 1090, 260, 82, 20, 37, 4, 1090, 260, 82, 20, 1, 1, 1597, 23, 246, 54, 2, 43, 34, 533, 14, 574, 2, 3, 1899, 724, 101, 1336, 43, 44, 3, 32, 11, 12417, 6, 64, 77, 39, 12418, 137, 72, 1899, 32], [82, 20, 12419, 2, 392, 4, 1109, 28, 59, 10, 1514, 195, 302, 110, 54, 38, 29, 10, 82, 20, 716, 51, 248, 106, 397, 82, 20, 468, 80, 1719, 71, 44, 330, 1279, 14, 1109, 33, 28, 59, 10, 1514, 28, 302, 270, 80, 253, 68, 35, 54, 316, 136, 129, 86], [25, 224, 11, 12420, 12421, 137, 13, 125, 20, 13, 25, 3], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [260, 20, 422, 229, 4, 88, 8, 405, 98, 260, 20, 422, 229, 4, 88, 8, 405, 98], [12422, 822, 102, 37, 1003, 97, 436, 3, 455, 1, 72, 37, 1078, 329, 3, 455, 63, 357, 1260, 1, 3, 455, 97, 43, 1260, 2, 3, 177, 271, 1, 3, 48, 43, 1130, 633, 201, 62, 3087, 1321, 1, 29, 502, 389, 405, 287, 4, 23, 271, 35, 755, 648, 206, 3, 422, 48, 2, 104, 3250, 1589, 302, 1767, 2, 3, 422, 48, 7, 493, 3, 765, 2, 46, 456], [15, 29, 56, 12423, 12424, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 72, 70, 10, 33, 21, 34, 34, 9, 23, 219, 2, 43, 321, 510], [27, 2, 515, 41, 27, 2, 515, 41], [24, 314, 347, 89, 8, 463, 24, 314, 347, 89, 8, 463], [52, 46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [535, 8, 45, 535, 8, 45, 56, 12425, 12426, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 8, 84, 2, 100, 441, 1467, 191, 217, 384, 72, 37, 44, 130, 441, 1350, 6, 8, 430, 7, 2, 129, 33, 718], [12427, 513, 11, 275, 78, 2897, 40, 73, 1411, 1291, 1097, 1, 2770, 91, 163, 78, 809, 1626, 1817, 1818, 1, 188, 299, 189, 188, 1681, 7, 206, 3, 1424, 195, 299, 159, 1, 437, 299, 12428, 437, 195, 1681, 299, 20, 2659, 2660, 1, 850, 206, 2, 260, 20, 850, 1706, 1501, 2424, 6512, 12429, 12430, 1, 206, 78, 2, 125, 78, 5092, 5093, 12431, 12432, 1, 953, 1302, 1029, 277, 206, 78, 2, 953, 1302, 1029, 277, 12433, 12434, 1, 299, 373, 12435, 513, 3073, 3074, 1897, 1898, 1, 81, 893, 81, 437, 194, 6584, 6585, 3289, 3290], [652, 641, 297, 193, 12436, 12437, 1, 124, 1, 291, 292, 1, 5153, 5154, 1, 1145, 243, 652, 641, 297, 193, 1, 1, 50, 564, 1, 1, 47, 42, 1085, 193, 12438, 12439, 4, 3, 12440, 793, 14, 574, 3, 652, 641, 297, 295, 159, 2, 134, 10, 23, 31, 3, 1577, 42, 260, 44, 8, 83, 3, 160, 359, 284, 42, 12441, 42, 1816, 14, 270, 80, 253, 85, 582, 957, 35, 54, 36, 80], [82, 20, 37, 82, 20, 37], [13, 25, 53, 558, 562, 56, 12442, 12443, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 83, 18, 33, 224, 25, 207, 39, 95, 158, 33, 142, 7, 158, 15], [27, 2, 515, 41, 27, 2, 515, 41], [1205, 660, 200, 1321, 10, 88, 445, 1205, 660, 200, 1321, 10, 88, 445], [79, 13, 25, 79, 13, 25], [1461, 31, 51, 28, 6, 250, 2, 199, 1992, 142, 211, 140, 180, 164, 71, 1736, 44, 79, 97, 122, 2, 3, 401, 624, 411, 3, 401, 1064, 6, 75, 62, 3087, 1321, 62, 411, 104, 142, 32, 63, 8, 336, 23, 142, 219, 2, 1005, 2939, 115, 4, 3, 652, 641, 7, 28, 54, 2, 211, 140, 2, 410, 21, 98, 7, 327], [121, 1675, 2, 7390, 11, 13, 121, 1675, 2, 7390, 11, 13], [250, 2, 29, 128, 126, 48, 110, 250, 2, 29, 23, 128, 126, 48, 1688, 21, 63, 3854, 66, 1597, 12444, 448, 1126, 3, 24, 653, 29, 10, 7, 6855, 268, 466], [13, 25, 13, 25], [111, 101, 33, 148, 2825, 1391, 75, 123, 273, 1169, 21, 172, 429, 9, 831, 940, 111, 101, 33, 148, 2825, 1391, 75, 123, 273, 1169, 4154, 1429, 12445, 131, 411, 18, 21, 21, 172, 429, 9, 831, 940, 14, 1005, 831, 62, 148, 62, 14, 2016, 3, 31, 53, 754, 53, 285], [7391, 7392, 27, 2, 176, 36, 492, 7391, 7392, 27, 2, 176, 36, 492], [307, 54, 315, 3877, 29, 11, 83, 738, 1499, 111, 185, 35, 14, 90, 80, 315, 29, 1183, 11, 12446, 3877, 131, 4, 15, 11, 83, 738, 1499, 797, 59, 39, 43, 3385, 3386, 62, 12447, 12448, 12449, 631, 39, 43, 794, 66, 2587, 2588], [4767, 3, 1768, 36, 607, 2, 607, 1768, 11, 40, 4767, 3, 1768, 36, 607, 2, 607, 1768, 11, 40, 78], [25, 13, 102, 11, 553, 55, 14, 25, 33, 13, 11, 553, 4, 26, 33, 28, 56, 6, 12450], [1607, 252, 670, 158, 15, 32, 4, 26, 89, 8, 2313, 30, 939, 88, 55, 1, 32, 1607, 252, 63, 399, 4, 15, 26, 716, 21, 89, 8, 1044, 2, 939, 88, 3, 37, 530, 3, 644, 252, 6, 8, 860, 106, 47, 253, 4, 85, 1149, 3, 7393, 252, 264, 43, 670, 11, 759, 39, 35, 12451, 818, 3, 2988, 704, 7393, 252, 6772, 30, 12452, 101, 14], [12453, 18, 40, 376, 6415, 6416, 1, 1, 7394, 7395, 4101, 4102, 40, 376, 1, 1, 111, 1, 1, 35, 39, 647, 3, 376, 40, 36, 3, 401, 172, 1, 1, 38, 8, 524, 2, 29, 21, 828, 1, 1, 270, 80, 253, 51, 35, 42, 588, 7, 99, 61, 21, 75, 7, 1044, 158, 2163], [13, 25, 102, 36, 646, 13, 25, 102, 36, 646], [2576, 286, 198, 10, 1984, 254, 12454, 12455, 124, 3289, 3290, 7394, 7395, 1456, 3197, 12456, 12457, 2576, 286, 198, 10, 1984, 254, 111, 7324, 12458, 63, 1703, 33, 29, 2, 1984, 11, 1059, 2692, 441, 220, 816, 7, 6045, 6, 327, 77, 18, 198, 30, 201, 2241, 565, 198, 6, 23, 837, 68, 8, 102, 104, 50, 2, 1386, 489, 143, 2510, 287, 2, 565, 98, 241, 198, 1365, 1456, 3197, 4, 954, 68, 35, 54, 2158, 2, 1044, 272, 287, 748, 824, 68, 275], [1346, 254, 218, 29, 1759, 1440, 2551, 4202, 218, 29, 653, 2777, 59, 28, 59, 12459, 2777, 1439, 2017, 4203, 28, 2017, 1836, 120, 12460, 1707, 2551, 218, 40, 83, 627, 426, 457, 3126, 2157, 4204, 103, 18, 29, 633, 201, 62, 315, 753, 315, 753, 56, 2157, 5785, 120, 56], [27, 2, 515, 41, 27, 2, 515, 41], [168, 20, 89, 8, 134, 168, 20, 89, 8, 134, 1, 71, 1700, 37, 52, 417, 20, 37], [279, 140, 15, 3, 2786, 18, 1081, 42, 8, 4, 470, 748, 88, 7, 15, 1, 1, 117, 12461, 12462, 1743, 12463, 1, 1, 149, 676, 1, 88, 982, 540, 441, 540, 1, 15, 982, 540, 441, 540, 1, 1, 2291, 44, 600, 571, 264, 4086, 3, 179, 131, 1, 1, 1958, 2, 3, 136, 268, 36, 4679, 4680, 21, 63, 653, 66, 149, 7, 495, 66, 501, 1, 185, 35, 14, 119, 21, 251, 2], [41, 6, 8, 405, 41, 6, 8, 405], [32, 64, 32, 64], [13, 25, 102, 11, 1734, 195, 13, 25, 102, 11, 1734, 195], [2216, 3918, 113, 1881, 10, 3528, 627, 30, 346, 626, 609, 2216, 3918, 113, 1881, 10, 3528, 627, 30, 346, 626, 609, 249, 1160, 2, 113, 346, 2260, 4926, 626, 7, 12464, 626, 249, 1160, 2, 113, 346, 2260, 4926, 626, 4923, 103, 626, 186, 113, 626, 11, 149, 676, 249, 1160, 2, 113, 346, 2260, 4926, 626, 4923, 103, 626, 4, 2645, 51, 2216, 12465, 503, 753, 6, 12466, 2, 4750, 10, 221, 21, 264, 43, 7, 23, 820, 219, 1524, 866], [3023, 149, 676, 3228, 350, 66, 2216, 42, 897, 684, 4, 4927, 7, 349, 1497, 3023, 149, 676, 3228, 350, 66, 2216, 42, 897, 684, 4, 4927, 7, 349, 1497, 1231, 1160, 10, 184, 47, 330, 2, 391, 23, 334, 149, 676, 149, 676, 47, 330, 310, 44, 428, 339, 7, 524, 1524, 68, 47, 866, 1160, 261, 3, 52, 542, 729, 166, 2, 504, 30, 339, 47, 54, 2216, 2, 3204, 261, 1190, 1, 3023, 149, 676, 3228, 350, 66, 2216, 42, 897, 684, 4, 4927, 7, 349, 1497, 1231, 1160, 10, 184, 47, 330, 2, 391, 23, 334, 149, 676, 149, 676, 47, 330, 310, 44, 428, 339, 7, 524, 1524, 68, 47, 866, 1160, 261, 3, 52, 542, 729, 166, 2, 504, 30, 339, 47, 54, 2216, 2, 3204, 261, 1190], [97, 199, 441, 1467, 191, 217, 208, 491, 1, 97, 199, 441, 1467, 191, 217, 14, 295, 11, 23, 31, 1, 1, 1, 1, 30, 1156], [108, 857, 280, 73, 682, 1915, 7396, 7397, 376, 1743, 1240, 108, 857, 280, 73, 682, 1915, 7396, 7397, 376, 1743, 1240], [7398, 7, 191, 217, 26, 816, 1379, 1707, 1871, 302, 18, 115, 851, 208, 3960, 1, 47, 38, 1021, 2, 2652, 3, 12467, 7, 191, 217, 26, 10, 3, 1942, 302, 18, 82, 20, 220, 430, 115, 18, 1707, 2302, 36, 2117, 3988, 7, 183, 14, 1088, 44, 83, 261, 195, 53, 1942, 42, 3274, 30, 3, 1357, 400, 1477, 103, 18, 1357, 400, 658, 720, 18, 3, 1357, 1042, 18, 3, 400, 420, 18, 827, 7, 400, 2272, 294, 3539, 3, 96, 222, 1, 1, 263, 23, 6, 2, 2652, 201, 10, 115, 18, 1707, 44, 65, 82, 20, 220, 430, 2500, 66, 82, 20, 220, 101, 12468, 302, 1, 1, 1357, 222, 1, 1, 1, 816, 341, 2091, 1, 1, 1, 1, 116, 49, 4, 3, 334, 53, 332, 3, 2680, 271, 116, 2926, 1, 1, 1, 1, 816, 20, 1302, 1029, 277, 1, 1, 1, 1, 1357, 103, 1840, 28, 99, 43, 1840, 30, 1959, 319, 2, 504, 83, 3, 134, 389, 3758, 3, 400, 294, 1603, 3, 1372, 864, 1, 1, 658, 858, 1, 1, 715, 275, 16, 1553, 2, 715, 169, 3, 400, 18, 7398, 7, 191, 217, 26, 1, 1, 1, 1, 1357, 2272, 14, 465, 294, 3, 96, 794, 1597, 1698, 7, 1563, 3, 720, 18, 3, 1357, 816], [148, 6, 290, 886, 167, 148, 6, 290, 886, 167], [331, 36, 2425, 20, 55, 1, 1, 169, 638, 3, 15, 49, 843, 123, 4, 12469, 3, 772, 4, 15, 1852, 1, 1, 14, 353, 12470, 53, 23, 6, 1278, 123, 11, 33, 2392, 597, 1, 1, 1, 1, 1156], [1715, 97, 29, 1715, 294, 128, 126], [82, 20, 6, 164, 64, 77, 1352, 82, 20, 6, 164, 64, 77, 1352], [3371, 302, 219, 12471, 612, 65, 584, 83, 18, 3, 3371, 1482, 36, 3, 3371, 302, 10, 3, 459, 151, 264, 43, 81, 4, 12472, 44, 39, 43, 1368, 14, 876, 3, 302], [41, 31, 146, 27, 2, 46, 2, 41], [191, 217, 2347, 442, 2, 566, 12473, 14, 622, 772, 2, 23, 34, 11, 316, 4435], [15, 13, 25, 102, 15, 13, 25, 102], [280, 73, 471, 7399, 7400, 280, 73, 471, 7399, 7400], [280, 73, 471, 7401, 7402, 280, 73, 471, 7401, 7402], [7403, 73, 471, 2250, 7404, 7403, 73, 471, 2250, 7404], [280, 73, 471, 7405, 7406, 280, 73, 471, 7405, 7406], [211, 771, 394, 1106, 209, 174, 255, 115, 1171, 2579, 7407, 3958, 7408, 7409, 211, 771, 394, 1106, 209, 174, 255, 115, 1171, 2579, 7407, 3958, 7408, 7409], [171, 2952, 4613, 4614, 7410, 2953, 6, 2755, 4, 2000, 1856, 37, 4, 26, 110, 248, 2, 373, 3, 171, 2952, 4613, 4614, 7410, 2953, 4, 26, 294, 1831, 5, 30, 3, 177, 7092, 67, 21, 12474, 4, 2000, 1856, 37, 806, 96, 1, 1, 1019, 4790, 7411, 2953, 1, 220, 7411, 1, 1224, 18, 1656, 505, 1200, 1, 1, 38, 163, 3, 167, 1926, 18, 3, 179, 4, 3, 367, 1, 1, 47, 42, 45, 10, 23, 34, 203, 474, 505, 1200, 357, 1014, 573, 782, 23, 171, 6147, 2, 23, 34], [1220, 692, 20, 13, 1220, 692, 20, 13], [12475, 412, 55, 50, 101, 1, 1, 110, 38, 3, 123, 44, 51, 110, 412, 11, 245, 44, 38, 141, 12476, 3478, 11, 175, 56, 1101, 98, 30, 3, 177, 37, 71, 1, 151, 42, 820, 201, 3774, 98, 2, 1, 14, 114, 7, 12477, 1, 458, 1116, 1, 1, 30, 450, 556, 714, 2395], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [41, 6, 8, 45, 41, 6, 8, 45], [25, 13, 11, 15, 26, 25, 13, 11, 15, 26], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [130, 41, 6, 8, 45, 11, 7412, 7413, 130, 41, 6, 8, 45, 11, 7412, 7413, 363, 114, 115, 12478], [2060, 74, 7, 519, 870, 50, 2, 893, 3, 519, 108, 59, 74, 7, 211, 3, 2060, 10, 3, 4014, 148], [28, 486, 2, 583, 136, 704, 34, 9, 28, 486, 2, 583, 136, 704, 34, 9], [33, 32, 274, 73, 13, 118, 458, 37, 4, 7414, 52, 33, 32, 274, 73, 13, 118, 458, 37, 4, 7414, 52, 15, 52, 13, 185, 8, 274, 33, 417, 20, 52], [191, 217, 31, 288, 106, 119, 3, 71, 78, 51, 699, 2, 26, 1, 1, 1688, 44, 21, 264, 43, 12479], [7309, 55, 1, 1, 96, 181, 6, 4870, 813, 181, 308, 509, 263, 18, 3, 179, 1, 1, 183, 68, 21, 6, 837, 467, 844, 23, 181, 2, 83, 3, 694, 2, 12480, 1518], [73, 2494, 460, 350, 4, 88, 106, 8, 118, 72, 15, 107, 55, 1, 1, 38, 451, 1871, 1507, 433, 2207, 350, 2494, 32, 4, 88, 7415, 4684, 7, 12481, 82, 89, 8, 118, 72, 15, 107, 516, 169, 241, 540, 169, 290, 373, 72, 2384, 326, 412, 336, 47, 38, 1108, 1507, 14, 91, 163, 173, 44, 12482, 3, 31, 7, 3, 1782, 1477, 1, 1, 68, 4928, 106, 8, 118, 72, 15, 59, 21, 1164, 4, 3, 3908, 44, 284, 106, 8, 468, 98, 4, 3, 195, 33, 202, 4928, 239, 411, 21, 2894, 10, 4928, 30, 15, 59, 195, 1262, 44, 3, 32, 63, 8, 350, 7, 189, 3, 272, 7, 272, 257, 47, 264, 485, 68, 47, 479, 2, 119, 3, 1777, 4690, 23, 239, 2489, 3, 2499, 63, 995, 4, 2, 12483, 933, 421, 460, 1, 1, 517, 31, 336, 514, 23, 2719, 312, 6, 2747, 1108, 1776, 2494, 7, 3, 2340, 95, 429, 44, 858, 1709, 3, 32, 351, 1565, 257, 7, 351, 3, 15, 107, 454, 14, 663, 23, 197, 454], [2775, 30, 1593, 73, 3330, 1833, 627, 2161, 2214, 4, 26, 2775, 30, 1593, 73, 3330, 1833, 627, 2161, 2214, 4, 26, 1, 1852, 428, 350, 4, 417, 20, 1, 666, 885, 2222, 416, 438, 1061, 8, 1312, 30, 349, 18, 2164, 438, 1, 666, 7, 780, 2161, 2214, 97, 1740, 85, 6, 2625, 2214, 67, 15, 429, 3, 233, 2214, 7, 1641, 3, 666, 97, 43, 727, 7, 331, 2, 117, 272, 422], [40, 190, 592, 1302, 1029, 277, 160, 6, 1656, 112, 49, 990, 190, 1302, 1029, 277, 78, 40, 429, 75, 112, 49, 990, 1, 308, 114], [40, 162, 20, 577, 238, 297, 865, 703, 758, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617, 40, 162, 20, 577, 238, 297, 865, 703, 758, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 12484, 482, 252, 3, 28, 219, 62, 63, 45, 30, 3975, 896, 3, 31, 54, 3, 29, 18, 3975, 482, 4, 26, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28, 12485], [82, 20, 3, 13, 63, 670, 2376, 10, 33, 12486, 14, 25, 3, 13, 82, 20, 7, 15, 1116], [15, 26, 32, 64, 15, 26, 32, 64], [329, 897, 3, 127, 4, 417, 20, 3678, 7, 731, 2304, 42, 770, 385, 3887, 7, 83, 1, 1, 21, 1100, 265, 80, 273, 38, 422, 31, 3, 3960, 12, 3, 432, 38, 1534, 241, 907, 433, 3, 1212, 65, 141, 1212, 7136, 67, 3, 3678, 7, 3977, 428, 3394, 7, 207, 1228, 6, 250, 2, 119, 21, 2, 1532, 2821, 4, 197, 732, 21, 1100, 265, 3, 3678, 7, 3977, 42, 1827, 36, 3, 1465, 2, 7, 3, 1212, 6, 770, 36, 3, 598, 2, 7, 4, 517, 21, 1100, 265, 3, 117, 274, 3, 1212, 67, 63, 3392, 1341, 534, 411, 1093, 91, 44, 1212, 765, 1332, 53, 506, 10, 624, 3, 1465, 2, 62, 598, 2, 1, 1, 581, 42, 3, 451, 1231, 36, 3, 432, 1, 1, 186, 149, 127, 1, 997, 272, 53, 3394, 12487, 1465, 2, 6, 3394, 4919, 598, 2, 6, 4536, 7416, 1972, 1, 997, 272, 53, 3394, 7416, 1465, 2, 6, 3394, 4919, 598, 2, 6, 4536, 12488, 1972], [15, 26, 32, 64, 15, 26, 32, 64], [150, 5, 4, 5, 19, 645, 20, 260, 20, 409, 203, 150, 5, 4, 5, 19, 645, 20, 260, 20, 409, 203, 12], [1489, 751, 8, 45, 1489, 751, 8, 45], [235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 3411, 6002, 6003, 1, 49, 1, 291, 292, 1, 1289, 2729, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 720, 313, 1, 1, 39, 35, 14, 1975, 7, 90, 29, 2, 33, 73, 86], [8, 164, 143, 376, 475, 4, 33, 41, 308, 106, 3, 807, 2, 876, 3, 179, 7, 50, 80, 3245, 21, 4, 1992, 56, 12489, 182, 213, 130, 155, 204, 117, 107, 214, 146, 49, 8, 164, 143, 376, 475, 4, 33, 41, 308, 106, 3, 807, 2, 876, 3, 179, 7, 50, 80, 3245, 21, 4, 1992, 271], [27, 2, 46, 2, 76, 7, 25, 13, 27, 2, 46, 2, 76, 7, 25, 13], [547, 13, 63, 64, 311, 2, 385, 3019, 14, 25, 3, 13, 56, 12490, 12491, 182, 213, 130, 155, 204, 117, 107, 214, 146, 547, 13, 63, 64, 311, 2, 385, 3019, 14, 25, 3, 13], [57, 251, 123, 4, 41, 111, 1, 1, 49, 8, 164, 143, 376, 475, 4, 33, 41, 308, 106, 3, 807, 2, 876, 3, 179, 7, 50, 80, 3245, 21, 4, 1992, 271], [115, 2, 43, 912, 53, 3122, 66, 918, 208, 491, 1, 1, 115, 107, 1853, 264, 43, 912, 53, 3122, 66, 918, 21, 264, 8, 43, 267, 2, 58, 53, 47, 42, 137, 21, 11, 12492, 348, 21, 1474, 1992, 115, 308, 106, 3, 807], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [97, 100, 82, 20, 55, 21, 1, 51, 335, 2, 100, 82, 20, 118, 23, 207, 544, 82, 20, 489, 33, 142, 7, 276, 1923, 21, 7, 273, 118, 23], [150, 5, 4, 5, 19, 26, 1024, 150, 5, 4, 5, 19, 26, 1024, 12], [150, 5, 4, 5, 19, 26, 650, 150, 5, 4, 5, 19, 26, 650, 12], [150, 5, 4, 5, 19, 654, 374, 26, 15, 1236, 784, 150, 5, 4, 5, 19, 654, 374, 26, 15, 1236, 784, 12], [547, 97, 3339, 2, 333, 2447, 547, 97, 3339, 2, 333, 2447], [401, 32, 132, 401, 32, 132], [110, 250, 2, 50, 12493, 12494, 95, 158, 2095, 2, 70, 283, 1496, 12495, 136, 752, 1, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 814, 1028, 1, 55, 3178], [27, 2, 239, 167, 10, 317, 51, 7417, 6, 1167, 27, 2, 239, 167, 10, 317, 51, 7417, 6, 1167], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [26, 2614, 2614, 503, 193, 12496, 12497, 12498, 225, 20, 47, 38, 843, 193, 30, 3, 225, 418, 3, 503, 158, 3, 127, 6, 391, 67, 3, 225, 20, 65, 517, 503, 1, 698, 127, 328, 186, 225, 20, 1, 698, 127, 328, 186, 225, 20, 1, 755, 31, 3, 225, 418, 655, 169, 3, 1922, 1081, 4, 23, 1127, 47, 706, 3, 312], [97, 463, 501, 297, 55, 1, 1, 669, 116, 493, 1181, 1489, 36, 33, 1844, 118, 3, 177, 37, 1, 1, 1, 1, 1, 450], [2104, 233, 223, 974, 11, 28, 12499, 12500, 12501, 223, 372, 56, 12502, 223, 648, 56, 12503, 223, 107, 223, 271, 90, 120, 56, 2711, 2712, 223, 570, 314, 6785, 223, 1587, 200, 338, 28, 201, 223, 372, 483, 18, 134, 1833, 2062], [25, 224, 11, 12504, 12505, 140, 137, 13, 125, 20, 13, 25, 3961, 1528, 25, 14], [3, 7418, 296, 12, 6, 8, 545, 3993, 90, 1438, 640, 890, 3, 7418, 296, 12, 6, 8, 545, 3993, 90, 1438, 640, 890], [5, 63, 327, 345, 467, 858, 2093, 7, 2690, 2, 2076, 2897, 150, 5, 4, 5, 19, 5, 12], [14, 132, 32, 57, 4, 793, 86, 3, 195, 7419, 7420, 59, 7421, 7, 7422, 7423, 7424, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 195, 7419, 7420, 59, 7421, 7, 7422, 7423, 7424], [60, 94, 90, 1277, 113, 6765, 1285, 60, 6, 75, 12, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [333, 3732, 2, 2293, 30, 5997, 100, 37, 891, 333, 97, 421, 3, 1291, 30, 178, 1123, 1961, 2191, 131, 62, 735, 165, 529, 183, 333, 65, 706, 45, 7, 38, 12506, 77, 3043, 18, 33, 167, 62, 12507, 1968, 44, 526, 1229, 3, 333, 239, 9, 4424, 3672, 62, 12508, 12509, 4, 199, 201, 333, 30, 41, 87, 7, 1903, 100, 148, 2808, 1687, 2150, 4, 2225, 30, 333, 4, 199], [70, 890, 10, 74, 70, 890, 10, 74, 1, 1, 416, 682, 1857, 3544, 472, 1, 4888, 138, 196, 1, 7425, 2845, 1, 2029, 56, 26, 1, 176, 78, 40], [53, 332, 203, 299, 523, 4, 285, 1396, 1056, 293, 3073, 3074, 49, 4929, 4015, 12510, 3962, 5888, 3409, 4263, 823, 4103, 4104, 4063, 4064, 1897, 1898, 3190, 3623, 2659, 2660, 3183, 3617, 203, 299, 523, 4, 285, 1396, 1056, 293, 55, 4929, 47, 42, 164, 364, 285, 2650, 1396, 36, 104, 28, 59, 7426, 108, 1051, 36, 7, 1523, 2, 293, 1775, 44, 293, 43, 802, 30, 760, 311, 2, 3, 12511, 18, 23, 2578, 21, 43, 2044, 2, 3802, 3, 6817, 411, 18, 3, 3699, 2805, 7, 2168, 18, 3, 2578, 382, 1727, 12512, 44, 47, 647, 3, 115, 489, 3, 58, 12, 3, 1131, 1149, 3, 531, 254, 7, 211, 73, 52, 21, 6, 8, 12513, 2, 1134, 2, 2953, 3, 1140, 4, 3, 3886, 53, 23, 6, 313, 2168, 31, 47, 42, 1385, 3, 798, 32, 28, 59, 7426, 2, 2464, 1140, 1627, 159, 9, 155, 29, 2453, 5996, 44, 1742, 2026, 802, 42, 1332, 96, 14, 1544, 161, 101, 68, 35, 253, 288, 104, 115, 38, 2026, 802, 137, 4246, 1062, 254, 183, 1150, 53, 6493, 254, 62, 6763, 254, 1603, 1390, 57, 229, 4904, 3419, 44, 38, 141, 1409, 66, 12514, 55, 358, 115, 368, 169, 3, 115, 65, 141, 243, 4524, 30, 1944, 3574, 14, 270, 166, 253, 47, 38, 350, 404, 20, 34, 7, 625, 21, 2, 1487, 115, 368, 203], [299, 523, 595, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 221, 138, 52, 56, 40, 3393, 596, 687, 81, 3584, 78, 28, 56, 4005, 4930, 7427, 271, 3393, 596, 687, 953, 233, 91, 96, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 505, 1200, 2829, 2830, 394, 3158, 293, 3375, 505, 8, 178, 2471, 609, 262, 212, 302, 4016, 4017, 1466, 61, 2472, 4018, 4019, 505, 2472, 1257, 2102, 505, 1160, 173, 2601, 7, 4020, 874, 3293, 529, 302, 439, 1084, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 318, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 72, 1056, 10, 23, 293, 1469, 863, 1469, 293, 247, 513, 723, 62, 1446, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 382, 1727, 725, 724, 222, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 2456, 1470, 2457, 2458, 2459, 2460, 2461, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 247, 741, 741, 56, 200, 247, 741, 741, 3000, 200, 247, 741, 741, 908, 200, 247, 130, 1265, 3001, 173, 2648, 256, 136, 10, 261, 1503, 7, 135, 3362, 39, 43, 336, 12, 3, 177, 1589, 1407, 93, 131, 442, 388, 93, 59, 93, 146, 318, 1306, 11, 139, 95, 116, 12, 221, 138, 221, 40, 40, 301, 40, 108, 138, 108, 56, 24, 318, 154, 24, 144, 93, 1344, 131, 1784, 1651, 800, 1783, 1720, 40, 1781, 1786, 4021, 1700, 1721, 4022, 1648, 1870, 1867, 139, 1868, 354, 230, 1649, 1175, 1650, 4023, 936, 62, 1054, 416, 336, 1647, 1787, 1785, 1645, 318, 2465, 1869, 702, 371, 93, 371, 93, 537, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 93, 59, 93, 146, 318, 1306, 11, 139, 95, 116, 12, 221, 138, 221, 40, 40, 301, 40, 108, 138, 108, 56, 24, 318, 154, 24, 144, 93, 1344, 131, 1784, 1651, 800, 1783, 1720, 40, 1781, 1786, 4021, 1700, 1721, 4022, 1648, 1870, 1867, 139, 1868, 354, 230, 1649, 1175, 1650, 4023, 936, 62, 1054, 416, 336, 1647, 1787, 1785, 1645, 318, 2465, 1869, 702, 371, 93, 371, 93, 537, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109], [40, 1353, 362, 385, 107, 18, 907, 18, 312, 1353, 362, 1027, 336, 1887, 96, 559, 4, 260, 20, 112, 124, 10, 105, 263, 44, 47, 38, 825, 34, 203, 1256, 11, 3, 179, 31, 67, 1100, 265, 44, 116, 31, 63, 321, 1353, 362, 385, 107, 18, 907, 18, 312, 1353, 362, 1027, 336], [299, 523, 595, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 221, 138, 1, 52, 56, 40, 3393, 596, 687, 81, 3584, 78, 1, 28, 56, 4005, 4930, 7427, 1, 271, 3393, 596, 687, 1, 953, 233, 91, 96, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 505, 1200, 1, 2829, 2830, 394, 1, 3158, 1, 293, 3375, 505, 8, 178, 1, 2471, 609, 1, 262, 212, 302, 1, 4016, 4017, 1466, 1, 61, 2472, 4018, 1, 4019, 505, 1, 2472, 1257, 1, 2102, 505, 1, 1160, 173, 2601, 7, 4020, 1, 874, 3293, 529, 302, 1, 1, 1, 439, 1084, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 24, 318, 154, 24, 144, 1726, 380, 1051, 36, 40, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 1, 34, 201, 776, 11, 261, 364, 433, 3, 380, 63, 230, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 456, 353, 261, 364, 433, 3, 380, 63, 230, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 382, 1727, 725, 1, 1, 1, 724, 222, 1, 1, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 1, 2456, 1470, 2457, 2458, 1, 2459, 2460, 1, 2461, 1, 1, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 1, 1, 247, 741, 741, 56, 200, 1, 1, 247, 741, 741, 3000, 200, 1, 1, 247, 741, 741, 908, 200, 1, 1, 247, 130, 1265, 3001, 173, 2648, 1, 1, 256, 136, 10, 261, 1503, 7, 135, 3362, 39, 43, 336, 12, 3, 177, 1589, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 95, 116, 12, 1, 221, 138, 1, 221, 40, 40, 1, 301, 40, 1, 108, 138, 1, 108, 56, 24, 318, 154, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 800, 1, 1783, 1, 1720, 40, 1, 1781, 1, 1786, 1, 4021, 1700, 1, 1721, 1, 4022, 1, 1648, 1, 1870, 1, 1867, 139, 1, 1868, 1, 354, 230, 1, 1649, 1175, 1, 1650, 4023, 936, 62, 1054, 416, 336, 1, 1647, 1, 1787, 1, 1785, 1, 1645, 318, 1, 2465, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1058, 1, 1, 1, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 95, 116, 12, 1, 221, 138, 1, 221, 40, 40, 1, 301, 40, 1, 108, 138, 1, 108, 56, 24, 318, 154, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 800, 1, 1783, 1, 1720, 40, 1, 1781, 1, 1786, 1, 4021, 1700, 1, 1721, 1, 4022, 1, 1648, 1, 1870, 1, 1867, 139, 1, 1868, 1, 354, 230, 1, 1649, 1175, 1, 1650, 4023, 936, 62, 1054, 416, 336, 1, 1647, 1, 1787, 1, 1785, 1, 1645, 318, 1, 2465, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 630, 656, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 1201, 1, 154, 560, 139, 133, 502, 36, 2, 761, 762, 10, 238, 109], [338, 13, 25, 338, 13, 25], [206, 74, 2845, 10, 40, 206, 74, 2845, 10, 40, 30, 7, 771, 830, 1, 1, 416, 682, 1857, 3544, 472, 1, 4888, 138, 196, 1, 7425, 2845, 1, 2029, 56, 26, 1, 176, 78, 40], [299, 523, 4, 285, 1396, 1056, 293, 221, 138, 1, 7222, 138, 1, 52, 56, 2085, 1, 28, 56, 4929, 4015, 1, 271, 1728, 1, 953, 233, 1118, 96, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 93, 222, 1, 1, 93, 537, 1, 1, 93, 59, 1, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 1396, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 3745, 539, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 12515, 1404, 12516, 671, 3800, 1405, 1, 427, 1, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 352, 5972, 737, 3746, 12517, 753, 9, 1301, 5971, 175, 175, 1, 427, 1, 1, 1, 512, 352, 1780, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 1, 512, 352, 40, 1, 1, 299, 1, 1, 688, 131, 1, 785, 786, 10, 2, 476, 2085, 192, 787, 775, 788, 658, 1, 1, 3747, 936, 1, 1649, 1175, 1, 293, 1, 800, 1, 1645, 1646, 1, 3264, 1, 1781, 1, 3748, 301, 3267, 9, 12518, 12519, 4931, 1, 1720, 2085, 1, 1787, 1, 5983, 1, 1867, 139, 1, 5982, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 1782, 93, 2166, 1, 108, 58, 103, 318, 1, 1869, 1, 5975, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 5981, 1, 5984, 352, 1, 919, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 3266, 1, 5978, 118, 1, 1783, 1, 5976, 539, 1, 1870, 1, 5980, 1, 221, 58, 103, 318, 1, 1784, 1, 5973, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 1651, 1, 3751, 1, 5977, 978, 2470, 472, 419, 1729, 144, 1729, 204, 362, 1, 4489, 476, 1, 1648, 1, 5974, 1, 3752, 204, 1, 3750, 262, 1, 3749, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 4488, 12520, 12521, 12522, 1, 1868, 1, 108, 59, 1, 354, 8, 230, 1, 93, 146, 539, 2649, 352, 118, 1973, 36, 138, 196, 285, 2650, 1396, 1, 1721, 1, 3753, 1, 3748, 301, 668, 12523, 12524, 2302, 58, 1, 1785, 1, 1786], [74, 31, 56, 6511, 182, 213, 130, 155, 204, 117, 107, 214, 146, 250, 2, 122, 74], [299, 523, 595, 4, 380, 36, 608, 401, 2, 1880, 221, 138, 1, 52, 56, 1880, 1, 28, 56, 175, 1, 271, 7428, 1, 953, 233, 175, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 1006, 24, 144, 108, 848, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 364, 11, 380, 8, 230, 36, 247, 139, 18, 2, 247, 139, 18, 104, 1880, 108, 1775, 44, 3, 293, 6, 1251, 1725, 802, 30, 760, 1, 1, 23, 955, 380, 1717, 44, 1880, 65, 1251, 1725, 2042, 2, 2932, 401, 56, 184, 6, 357, 2242, 890, 1873, 42, 890, 605, 44, 583, 77, 4628, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 11, 184, 138, 196, 1480, 65, 141, 653, 608, 380, 6, 285, 1971, 18, 72, 802, 142, 44, 6, 1500, 77, 2, 1064, 44, 65, 141, 1271, 272, 66, 2052, 2960, 62, 3836, 668, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 716, 42, 1386, 2965, 18, 760, 1056, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 332, 161, 506, 776, 3837, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 34, 201, 776, 11, 608, 401, 364, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 1572, 353, 608, 401, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725, 1, 1, 1, 1, 724, 222, 1, 1, 3, 401, 56, 52, 890, 6, 4629, 2670, 52, 11, 143, 2213, 267, 2, 3, 155, 62, 1599, 58, 184, 65, 3, 640, 2357, 18, 4630, 1290, 136, 30, 401, 1129, 625, 2, 669, 18, 3, 4631, 4632, 21, 6, 3326, 304, 11, 4633, 401, 1129, 2, 3, 3622, 138, 1584, 11, 3, 2357, 18, 4634, 200, 7, 817, 10, 58, 1, 1, 3, 401, 56, 52, 3327, 3, 3838, 18, 1977, 401, 1129, 7, 1408, 1325, 1129, 2, 138, 1584, 66, 4635, 2966, 56, 605, 11, 669, 401, 2966, 56, 605, 42, 625, 2, 43, 1748, 11, 423, 2261, 2967, 7, 3631, 3291, 272, 4636, 2, 165, 56, 605, 3, 401, 56, 52, 183, 4637, 3, 724, 1578, 18, 23, 603, 200, 21, 3783, 3, 890, 801, 1154, 2626, 18, 3, 131, 4638, 7, 131, 446, 4639, 304, 4, 890, 53, 934, 18, 3, 155, 801, 3504, 1, 1, 890, 1873, 42, 890, 605, 44, 583, 77, 626, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 56, 11, 184, 138, 196, 1480, 6, 357, 2042, 51, 217, 1152, 2, 353, 3, 196, 18, 2242, 4640, 62, 401, 3, 608, 2436, 933, 4641, 196, 62, 143, 196, 2654, 11, 3, 2203, 196, 23, 3328, 4642, 3, 217, 133, 2, 3, 1594, 293, 137, 23, 819, 1409, 1521, 39, 3839, 43, 336, 137, 608, 1994, 517, 819, 18, 1679, 1409, 2082, 6, 514, 1249, 4, 184, 605, 357, 304, 11, 1039, 7, 753, 803, 42, 1271, 272, 66, 2052, 2960, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 42, 1386, 2965, 18, 1056, 66, 1396, 18, 241, 2201, 1, 1, 1450, 2, 1873, 1089, 4643, 4644, 67, 3, 4645, 4646, 1109, 136, 2968, 2, 241, 3626, 1905, 608, 1577, 42, 4647, 2, 199, 143, 1750, 4648, 136, 284, 2041, 36, 1396, 446, 21, 2026, 1349, 1835, 44, 24, 6, 802, 30, 184, 1287, 2, 4649, 2243, 1, 1, 3840, 241, 1873, 42, 4650, 138, 1584, 18, 4651, 2, 4652, 184, 4653, 29, 2, 2318, 368, 265, 867, 57, 1888, 241, 4654, 122, 2, 443, 1064, 2967, 4655, 7, 516, 1243, 241, 18, 444, 43, 2242, 151, 43, 1515, 44, 42, 8, 4656, 2, 3, 2366, 18, 194, 252, 2443, 62, 136, 2968, 2, 1410, 2969, 4, 241, 1507, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 1, 95, 116, 12, 1, 221, 138, 1, 301, 138, 1, 301, 40, 1880, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 93, 1344, 131, 1, 1651, 1, 800, 1, 1786, 1, 1721, 1, 7429, 1, 1648, 1, 1870, 1, 7430, 1, 3752, 936, 1, 1647, 1, 1787, 1, 1645, 977, 1, 3264, 1, 3751, 1, 1783, 1, 7431, 7432, 49, 1640, 998, 1, 1781, 1, 3395, 1880, 1, 3749, 1, 3266, 1, 3750, 262, 1, 1867, 139, 1, 1868, 1, 354, 8, 230, 1, 1649, 1175, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 7433, 1065, 1863, 1, 3753, 1, 3747, 936, 1, 1785, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 7434, 1404, 7435, 671, 2244, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 1, 1, 512, 352, 40, 7436, 676, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 175, 7437, 1, 960, 862, 845, 228, 43, 7, 2354, 255, 1, 954, 227, 1230, 352, 1, 227, 228, 1095, 1, 228, 478, 3833, 3834, 1, 227, 175, 1392, 2234, 341, 1, 3798, 3988, 1, 259, 478, 1981, 1, 227, 259, 505, 103, 1719, 1, 228, 1394, 3324, 1863, 7438, 1, 259, 228, 227, 3305, 7439, 1, 476, 557, 228, 1356, 7440, 133, 1, 1177, 478, 1177, 557, 735, 271, 1, 1269, 228, 227, 1, 227, 1002, 1002, 834, 2553, 144, 401, 1945, 1, 834, 7441, 676, 1, 478, 228, 1267, 236, 1213, 7442, 1, 1047, 7443, 1, 7444, 1, 227, 227, 1, 306, 1, 306, 259, 1, 1112, 175, 1310, 226, 105, 1213, 7445, 1, 227, 259, 226, 1, 478, 478, 1, 427, 643, 227], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [53, 332, 203, 299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 73, 3073, 3074, 1, 49, 1, 12525, 12526, 12527, 12528, 5634, 5635, 1142, 1143, 1, 3289, 3290, 4103, 4104, 4063, 4064, 1897, 1898, 2659, 2660, 3190, 3623, 3183, 3617, 1, 203, 299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 73, 1, 1, 55, 1707, 115, 295, 1, 1, 47, 38, 940, 12, 975, 1522, 18, 104, 863, 1176, 1728, 154, 24, 144, 1726, 380, 1051, 36, 40, 73, 7, 1523, 2, 247, 18, 197, 62, 316, 301, 817, 23, 597, 701, 197, 18, 3, 177, 1, 72, 1056, 10, 23, 293, 1, 1469, 863, 1, 1469, 293, 1, 247, 513, 723, 62, 1446, 1, 1, 47, 38, 350, 404, 20, 34, 7, 625, 21, 2, 1707, 115, 368, 203, 1, 1, 724, 222, 1, 1, 2995, 151, 38, 141, 1290, 2455, 760, 44, 38, 304, 1503, 7, 2, 2996, 1231, 1109, 1, 2456, 1470, 2457, 2458, 1, 2459, 2460, 1, 2461, 1, 1, 247, 130, 2997, 591, 852, 2998, 183, 1150, 53, 2657, 902, 2999, 200, 1, 1, 247, 741, 741, 56, 200, 1, 1, 247, 741, 741, 3000, 200, 1, 1, 247, 741, 741, 908, 200, 1, 1, 247, 130, 1265, 3001, 173, 2648, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 95, 116, 12, 1, 221, 138, 1, 221, 40, 40, 73, 1, 301, 40, 2255, 1, 108, 138, 1, 108, 56, 1176, 1728, 154, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 800, 1, 1783, 1, 1720, 40, 73, 1, 1781, 1, 3395, 2255, 1, 1786, 1, 1721, 1, 1648, 1, 1867, 139, 1, 1870, 1, 1868, 1, 354, 230, 1, 1649, 1175, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 1787, 1, 1785, 1, 1645, 318, 1, 2465, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325], [217, 6, 27, 2, 239, 1968, 51, 910, 6, 1634, 217, 6, 27, 2, 239, 1968, 51, 910, 6, 1634], [1521, 115, 6, 1693, 7446, 941, 7, 2037, 878, 10, 1521, 115, 6, 1693, 7446, 941, 7, 2037, 878, 10], [453, 8, 860, 11, 130, 2573, 453, 8, 860, 11, 130, 2573], [299, 523, 595, 4, 380, 36, 608, 401, 2, 1880, 221, 138, 1, 52, 56, 1880, 1, 28, 56, 175, 1, 271, 7428, 1, 953, 233, 175, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 1, 439, 1084, 1, 1, 47, 42, 697, 104, 1006, 24, 144, 108, 848, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 364, 11, 380, 8, 230, 36, 247, 139, 18, 2, 247, 139, 18, 104, 1880, 108, 1775, 44, 3, 293, 6, 1251, 1725, 802, 30, 760, 1, 1, 23, 955, 380, 1717, 44, 1880, 65, 1251, 1725, 2042, 2, 2932, 401, 56, 184, 6, 357, 2242, 890, 1873, 42, 890, 605, 44, 583, 77, 4628, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 11, 184, 138, 196, 1480, 65, 141, 653, 608, 380, 6, 285, 1971, 18, 72, 802, 142, 44, 6, 1500, 77, 2, 1064, 44, 65, 141, 1271, 272, 66, 2052, 2960, 62, 3836, 668, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 716, 42, 1386, 2965, 18, 760, 1056, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 332, 161, 506, 776, 3837, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 725, 62, 66, 678, 166, 12, 1, 34, 201, 776, 11, 608, 401, 364, 579, 319, 192, 883, 305, 34, 9, 86, 121, 1, 1572, 353, 608, 401, 364, 899, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 725, 1, 1, 1, 1, 724, 222, 1, 1, 3, 401, 56, 52, 890, 6, 4629, 2670, 52, 11, 143, 2213, 267, 2, 3, 155, 62, 1599, 58, 184, 65, 3, 640, 2357, 18, 4630, 1290, 136, 30, 401, 1129, 625, 2, 669, 18, 3, 4631, 4632, 21, 6, 3326, 304, 11, 4633, 401, 1129, 2, 3, 3622, 138, 1584, 11, 3, 2357, 18, 4634, 200, 7, 817, 10, 58, 1, 1, 3, 401, 56, 52, 3327, 3, 3838, 18, 1977, 401, 1129, 7, 1408, 1325, 1129, 2, 138, 1584, 66, 4635, 2966, 56, 605, 11, 669, 401, 2966, 56, 605, 42, 625, 2, 43, 1748, 11, 423, 2261, 2967, 7, 3631, 3291, 272, 4636, 2, 165, 56, 605, 3, 401, 56, 52, 183, 4637, 3, 724, 1578, 18, 23, 603, 200, 21, 3783, 3, 890, 801, 1154, 2626, 18, 3, 131, 4638, 7, 131, 446, 4639, 304, 4, 890, 53, 934, 18, 3, 155, 801, 3504, 1, 1, 890, 1873, 42, 890, 605, 44, 583, 77, 626, 136, 4, 127, 2, 2288, 3, 199, 18, 3, 401, 56, 11, 184, 138, 196, 1480, 6, 357, 2042, 51, 217, 1152, 2, 353, 3, 196, 18, 2242, 4640, 62, 401, 3, 608, 2436, 933, 4641, 196, 62, 143, 196, 2654, 11, 3, 2203, 196, 23, 3328, 4642, 3, 217, 133, 2, 3, 1594, 293, 137, 23, 819, 1409, 1521, 39, 3839, 43, 336, 137, 608, 1994, 517, 819, 18, 1679, 1409, 2082, 6, 514, 1249, 4, 184, 605, 357, 304, 11, 1039, 7, 753, 803, 42, 1271, 272, 66, 2052, 2960, 53, 934, 18, 760, 2961, 2655, 380, 2, 608, 264, 43, 2962, 11, 2963, 18, 1635, 597, 4, 241, 1507, 72, 718, 43, 2964, 393, 1765, 401, 7, 1767, 2, 21, 2591, 3, 1466, 1676, 1635, 1152, 2, 608, 42, 1386, 2965, 18, 1056, 66, 1396, 18, 241, 2201, 1, 1, 1450, 2, 1873, 1089, 4643, 4644, 67, 3, 4645, 4646, 1109, 136, 2968, 2, 241, 3626, 1905, 608, 1577, 42, 4647, 2, 199, 143, 1750, 4648, 136, 284, 2041, 36, 1396, 446, 21, 2026, 1349, 1835, 44, 24, 6, 802, 30, 184, 1287, 2, 4649, 2243, 1, 1, 3840, 241, 1873, 42, 4650, 138, 1584, 18, 4651, 2, 4652, 184, 4653, 29, 2, 2318, 368, 265, 867, 57, 1888, 241, 4654, 122, 2, 443, 1064, 2967, 4655, 7, 516, 1243, 241, 18, 444, 43, 2242, 151, 43, 1515, 44, 42, 8, 4656, 2, 3, 2366, 18, 194, 252, 2443, 62, 136, 2968, 2, 1410, 2969, 4, 241, 1507, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 1, 93, 59, 1, 93, 146, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 1, 95, 116, 12, 1, 221, 138, 1, 301, 138, 1, 301, 40, 1880, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 93, 1344, 131, 1, 1651, 1, 800, 1, 1786, 1, 1721, 1, 7429, 1, 1648, 1, 1870, 1, 7430, 1, 3752, 936, 1, 1647, 1, 1787, 1, 1645, 977, 1, 3264, 1, 3751, 1, 1783, 1, 7431, 7432, 49, 1640, 998, 1, 1781, 1, 3395, 1880, 1, 3749, 1, 3266, 1, 3750, 262, 1, 1867, 139, 1, 1868, 1, 354, 8, 230, 1, 1649, 1175, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 7433, 1065, 1863, 1, 3753, 1, 3747, 936, 1, 1785, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 539, 78, 466, 30, 1308, 608, 2027, 236, 1309, 802, 928, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 7434, 1404, 7435, 671, 2244, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 1, 1, 512, 352, 40, 7436, 676, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 175, 7437, 1, 960, 862, 845, 228, 43, 7, 2354, 255, 1, 954, 227, 1230, 352, 1, 227, 228, 1095, 1, 228, 478, 3833, 3834, 1, 227, 175, 1392, 2234, 341, 1, 3798, 3988, 1, 259, 478, 1981, 1, 227, 259, 505, 103, 1719, 1, 228, 1394, 3324, 1863, 7438, 1, 259, 228, 227, 3305, 7439, 1, 476, 557, 228, 1356, 7440, 133, 1, 1177, 478, 1177, 557, 735, 271, 1, 1269, 228, 227, 1, 227, 1002, 1002, 834, 2553, 144, 401, 1945, 1, 834, 7441, 676, 1, 478, 228, 1267, 236, 1213, 7442, 1, 1047, 7443, 1, 7444, 1, 227, 227, 1, 306, 1, 306, 259, 1, 1112, 175, 1310, 226, 105, 1213, 7445, 1, 227, 259, 226, 1, 478, 478, 1, 427, 643, 227], [299, 523, 4, 1723, 209, 902, 209, 1265, 741, 597, 40, 73, 221, 138, 1, 52, 56, 40, 73, 1, 301, 40, 2255, 1, 108, 138, 1, 691, 12529, 12530, 12531, 12532, 1, 271, 2300, 1, 953, 233, 9, 1094, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 93, 131, 1, 1, 442, 388, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 95, 116, 12, 1, 221, 138, 1, 221, 40, 40, 73, 1, 301, 40, 2255, 1, 108, 138, 1, 108, 56, 1176, 1728, 154, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 800, 1, 1783, 1, 1720, 40, 73, 1, 1781, 1, 3395, 2255, 1, 1786, 1, 1721, 1, 1648, 1, 1867, 139, 1, 1870, 1, 1868, 1, 354, 230, 1, 1649, 1175, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 1787, 1, 1785, 1, 1645, 318, 1, 2465, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 1, 1, 1, 1, 93, 59, 1, 93, 146, 318, 1306, 11, 139, 1, 95, 116, 12, 1, 221, 138, 1, 221, 40, 40, 73, 1, 301, 40, 2255, 1, 108, 138, 1, 108, 56, 1176, 1728, 154, 24, 144, 1, 93, 1344, 131, 1, 1784, 1, 1651, 1, 800, 1, 1783, 1, 1720, 40, 73, 1, 1781, 1, 3395, 2255, 1, 1786, 1, 1721, 1, 1648, 1, 1867, 139, 1, 1870, 1, 1868, 1, 354, 230, 1, 1649, 1175, 1, 1650, 936, 62, 1054, 416, 336, 2078, 2257, 1, 1647, 1, 1787, 1, 1785, 1, 1645, 318, 1, 2465, 1, 1869, 1, 1, 1, 702, 371, 1, 93, 371, 1, 1, 93, 537, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325, 1, 154, 232, 139, 215, 109, 216, 240, 66, 29, 159, 234, 109, 325], [299, 523, 277, 4, 285, 980, 1678, 1056, 2103, 221, 138, 52, 56, 2103, 28, 56, 4932, 4933, 3396, 271, 7447, 596, 687, 7448, 76, 673, 953, 233, 91, 96, 469, 149, 28, 16, 9, 9, 595, 93, 95, 91, 96, 505, 1200, 2829, 2830, 394, 3158, 293, 3375, 505, 2471, 609, 262, 212, 302, 4016, 4017, 1466, 61, 2472, 4018, 4019, 505, 2472, 1257, 2102, 505, 1160, 173, 2601, 7, 4020, 874, 3293, 529, 302, 2102, 7, 2077, 1994, 2077, 136, 1606, 62, 350, 66, 447, 287, 566, 7449, 2433, 7450, 362, 173, 62, 993, 195, 3396, 7451, 7452, 4024, 362, 220, 4024, 362, 220, 103, 8, 1135, 1411, 236, 760, 1411, 103, 7453, 1140, 394, 173, 889, 2166, 7454, 2166, 7455, 2784, 2077, 2471, 648, 1534, 874, 65, 1150, 393, 23, 173, 3469, 540, 2471, 23, 173, 6, 7456, 7457, 23, 173, 65, 141, 1534, 66, 7458, 467, 874, 195, 2102, 2077, 1329, 313, 7459, 2576, 3699, 930, 2102, 1257, 394, 436, 8, 3084, 2, 436, 439, 1084, 3, 1270, 65, 268, 72, 559, 11, 539, 980, 1678, 446, 619, 36, 104, 1006, 108, 1006, 24, 144, 11, 380, 1051, 36, 247, 139, 18, 2103, 1523, 2, 247, 139, 18, 4025, 3265, 44, 1078, 10, 12, 23, 597, 1717, 44, 2103, 65, 1725, 141, 802, 30, 3, 980, 1678, 3, 619, 352, 380, 36, 3, 802, 108, 3357, 3, 177, 819, 131, 801, 139, 352, 819, 644, 352, 394, 352, 401, 919, 993, 2473, 3029, 1113, 28, 296, 1983, 2665, 2439, 79, 1582, 1989, 505, 2087, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 34, 201, 776, 11, 442, 388, 883, 305, 34, 7, 72, 181, 201, 319, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 604, 1727, 1270, 724, 222, 980, 6, 73, 1678, 44, 7460, 104, 131, 137, 3786, 1795, 7, 276, 7461, 455, 18, 2983, 1714, 2, 7462, 104, 287, 980, 6, 3554, 66, 1410, 772, 2, 813, 245, 7, 828, 1534, 4, 3755, 1390, 7463, 30, 130, 695, 367, 772, 2094, 4026, 38, 1890, 772, 11, 698, 225, 20, 1193, 30, 3733, 2256, 252, 304, 2, 528, 3, 980, 4027, 4028, 1089, 2, 43, 3957, 66, 137, 7464, 2825, 923, 177, 225, 20, 175, 2393, 2700, 496, 3, 377, 219, 2, 100, 21, 7, 747, 3, 2256, 184, 99, 276, 3319, 3, 4027, 528, 272, 352, 746, 980, 6, 327, 10, 3, 1409, 52, 21, 2075, 586, 18, 1737, 4, 3, 2036, 675, 426, 3, 952, 28, 809, 7, 4029, 2693, 373, 926, 2, 1088, 7465, 1379, 2898, 3, 3235, 173, 65, 304, 3, 4028, 7466, 362, 7, 7467, 362, 980, 183, 4029, 3, 7468, 140, 980, 2693, 926, 7, 7469, 3, 1494, 1332, 4, 3, 2094, 2682, 4887, 794, 4, 3, 1407, 1738, 980, 183, 2987, 11, 3, 177, 2693, 2791, 184, 701, 3, 4804, 18, 299, 442, 140, 140, 7470, 140, 7471, 140, 7472, 140, 3, 2700, 6, 156, 18, 3, 1056, 51, 3, 527, 1831, 925, 521, 91, 2200, 4, 2094, 2682, 980, 3367, 3, 179, 2062, 4, 1065, 173, 7, 7473, 925, 10, 3, 527, 7, 4922, 600, 18, 261, 287, 2, 3, 2700, 151, 6, 7474, 7475, 44, 3, 1577, 18, 3, 3030, 7476, 3, 980, 760, 42, 183, 1748, 11, 3, 4030, 7477, 3801, 1396, 3, 813, 7478, 36, 3, 179, 3030, 44, 3327, 4030, 7, 165, 4884, 1108, 53, 3, 7479, 7480, 760, 67, 23, 2399, 6, 8, 7481, 411, 3, 3030, 6, 304, 66, 1290, 7482, 12, 661, 420, 980, 183, 38, 3, 4190, 2, 7483, 58, 1123, 7, 7484, 287, 4, 1325, 1499, 2094, 4026, 42, 7485, 996, 18, 252, 44, 43, 304, 2, 7486, 58, 1192, 1499, 980, 985, 1795, 10, 3, 177, 287, 7, 173, 3220, 7487, 7488, 7489, 7490, 7491, 7492, 7493, 7494, 2779, 7495, 7496, 900, 7497, 7498, 7499, 7500, 4934, 7501, 3360, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 3121, 566, 7514, 1407, 93, 131, 93, 59, 93, 146, 539, 980, 1678, 446, 619, 702, 371, 93, 371, 293, 7, 133, 136, 221, 138, 221, 40, 2103, 221, 247, 301, 138, 301, 40, 2707, 2986, 301, 247, 301, 138, 1057, 4025, 3265, 133, 903, 1646, 352, 819, 644, 28, 296, 1983, 2665, 2439, 79, 1582, 1989, 293, 315, 919, 993, 2473, 3029, 1113, 108, 136, 108, 138, 108, 56, 1006, 24, 144, 95, 116, 12, 929, 354, 8, 230, 69, 1580, 800, 930, 69, 305, 69, 394, 904, 93, 578, 136, 905, 589, 59, 906, 634, 589, 59, 634, 93, 59, 1055, 59, 93, 103, 59, 296, 59, 93, 537, 539, 980, 1678, 446, 619, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1199, 59, 93, 59, 116, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 139, 1233, 1268, 59, 1401, 1402, 774, 262, 1403, 7515, 1404, 7516, 671, 1405, 427, 512, 352, 1780, 2473, 3029, 1113, 512, 352, 40, 299, 642, 657, 427, 642, 427, 642, 643, 657, 427, 643, 306, 175, 1317, 306, 960, 845, 1269, 1177, 1112, 7517, 2624, 1230, 476, 1112, 228, 1230, 644, 228, 1177, 2473, 7518, 228, 3143, 1113, 352, 228, 227, 293, 259, 773, 306, 737, 7519, 478, 962, 7520, 557, 26, 478, 10, 737, 3746, 26, 774, 28, 296, 7521, 954, 227, 1002, 7522, 7523, 306, 259, 476, 7524, 2439, 259, 228, 227, 7525, 1582, 227, 557, 259, 505, 4002, 175, 557, 227, 220, 259, 228, 1178, 227, 730, 455, 7526, 478, 227, 259, 7527, 505, 7528, 259, 226, 1317, 1002, 7529, 7530, 306, 228, 7531, 227, 228, 7532, 175, 7, 1002, 228, 3925, 7533, 247, 1356, 7534, 596, 687, 7535, 259, 227, 259, 7536, 79, 7537, 1463, 259, 7538, 7539, 175, 476, 259, 7540, 427, 643, 227], [27, 2, 122, 30, 76, 208, 491, 1, 1, 49, 250, 2, 122, 30, 1889, 1599, 58, 294, 1, 1, 14, 106, 3, 54, 315, 1059, 12, 2616, 99, 43, 565, 66, 2616, 2, 2616, 99, 43, 109, 4087, 2330, 7, 148, 7, 235, 6, 8, 1642, 1, 1, 1, 30, 135], [3686, 312, 8, 45, 225, 418, 42, 1395, 311, 2, 346, 981, 1211, 3686, 312, 8, 45, 225, 418, 42, 1395, 311, 2, 346, 981, 1211, 69, 6, 5947, 8, 164, 3325, 411, 18, 9, 981, 1211, 12533, 12534, 350, 312, 12535, 3, 981, 2210, 428, 2, 43, 588, 192, 3, 52, 23, 312, 6, 8, 45], [150, 5, 4, 5, 19, 645, 20, 40, 409, 203, 150, 5, 4, 5, 19, 645, 20, 40, 409, 203, 12], [3996, 90, 7541, 128, 126, 2403, 969, 7542, 763, 3996, 90, 7541, 128, 126, 2403, 969, 7542, 763], [299, 523, 277, 4, 285, 980, 1678, 1056, 2103, 221, 138, 1, 52, 56, 2103, 1, 28, 56, 4932, 4933, 3396, 1, 271, 7447, 596, 687, 7448, 76, 673, 1, 953, 233, 91, 96, 1, 469, 149, 28, 16, 9, 9, 1, 595, 93, 95, 91, 96, 1, 1, 1, 1, 505, 1200, 1, 2829, 2830, 394, 1, 3158, 1, 293, 3375, 505, 1, 2471, 609, 1, 262, 212, 302, 1, 4016, 4017, 1466, 1, 61, 2472, 4018, 1, 4019, 505, 1, 2472, 1257, 1, 2102, 505, 1, 1160, 173, 2601, 7, 4020, 1, 874, 3293, 529, 302, 1, 1, 1, 1, 2102, 7, 2077, 1994, 1, 1, 2077, 136, 1, 1606, 62, 350, 66, 447, 287, 566, 7449, 2433, 7450, 362, 1, 173, 62, 993, 195, 3396, 7451, 7452, 4024, 362, 1, 220, 4024, 362, 1, 220, 103, 8, 1135, 1, 1411, 236, 760, 1, 1411, 103, 7453, 1140, 1, 394, 1, 173, 889, 1, 2166, 7454, 1, 2166, 7455, 2784, 1, 1, 2077, 2471, 1, 648, 1534, 874, 65, 1150, 393, 23, 173, 3469, 540, 1, 2471, 23, 173, 6, 7456, 1, 7457, 23, 173, 65, 141, 1534, 66, 7458, 467, 874, 195, 1, 2102, 2077, 1329, 313, 1, 7459, 2576, 1, 3699, 930, 1, 2102, 1257, 394, 1, 436, 8, 3084, 2, 436, 1, 1, 1, 1, 1, 439, 1084, 1, 1, 3, 1270, 65, 268, 72, 559, 11, 539, 980, 1678, 446, 619, 36, 104, 1006, 108, 1006, 24, 144, 11, 380, 1051, 36, 247, 139, 18, 2103, 1523, 2, 247, 139, 18, 4025, 3265, 44, 1078, 10, 12, 23, 597, 1717, 44, 2103, 65, 1725, 141, 802, 30, 3, 980, 1678, 1, 1, 1, 3, 619, 352, 380, 36, 3, 802, 108, 3357, 3, 177, 819, 131, 1, 801, 139, 1, 352, 819, 644, 1, 352, 394, 352, 1, 401, 1, 919, 993, 2473, 3029, 1113, 1, 28, 296, 1983, 2665, 2439, 79, 1582, 1989, 1, 505, 2087, 1, 1, 1, 47, 42, 932, 23, 439, 2, 35, 192, 313, 305, 34, 7, 86, 121, 332, 161, 506, 93, 561, 1030, 68, 35, 246, 265, 166, 2, 796, 261, 523, 931, 4, 3, 710, 91, 96, 11, 561, 615, 62, 68, 35, 38, 143, 582, 498, 62, 881, 14, 270, 166, 253, 624, 66, 798, 2, 166, 192, 23, 34, 7, 882, 3, 34, 251, 2, 3, 1270, 62, 66, 678, 166, 12, 1, 34, 201, 776, 11, 442, 388, 883, 305, 34, 7, 72, 181, 201, 319, 1, 1985, 388, 2, 3, 212, 9, 579, 319, 67, 388, 99, 43, 178, 11, 260, 803, 4, 3, 212, 1, 1, 604, 1, 1727, 1270, 1, 1, 1, 1, 724, 222, 1, 1, 980, 6, 73, 1678, 44, 7460, 104, 131, 137, 3786, 1795, 7, 276, 7461, 455, 18, 2983, 1714, 2, 7462, 104, 287, 980, 6, 3554, 66, 1410, 772, 2, 813, 245, 7, 828, 1534, 4, 3755, 1390, 7463, 30, 130, 695, 367, 772, 2094, 4026, 38, 1890, 772, 11, 698, 225, 20, 1193, 30, 3733, 2256, 252, 304, 2, 528, 3, 980, 4027, 4028, 1089, 2, 43, 3957, 66, 137, 7464, 2825, 923, 177, 225, 20, 175, 2393, 2700, 496, 3, 377, 219, 2, 100, 21, 7, 747, 3, 2256, 184, 99, 276, 3319, 3, 4027, 528, 272, 352, 1, 1, 746, 980, 6, 327, 10, 3, 1409, 52, 21, 2075, 586, 18, 1737, 4, 3, 2036, 675, 426, 3, 952, 28, 809, 7, 4029, 2693, 373, 926, 2, 1088, 7465, 1379, 2898, 3, 3235, 173, 65, 304, 3, 4028, 7466, 362, 7, 7467, 362, 980, 183, 4029, 3, 7468, 140, 980, 2693, 926, 7, 7469, 3, 1494, 1332, 4, 3, 2094, 2682, 4887, 794, 4, 3, 1407, 1738, 1, 1, 980, 183, 2987, 11, 3, 177, 2693, 2791, 184, 701, 3, 4804, 18, 299, 442, 140, 1, 140, 7470, 1, 140, 7471, 1, 140, 7472, 140, 1, 1, 3, 2700, 6, 156, 18, 3, 1056, 51, 3, 527, 1831, 925, 521, 91, 2200, 4, 2094, 2682, 980, 3367, 3, 179, 2062, 4, 1065, 173, 7, 7473, 925, 10, 3, 527, 7, 4922, 600, 18, 261, 287, 2, 3, 2700, 1, 1, 151, 6, 7474, 7475, 44, 3, 1577, 18, 3, 3030, 7476, 3, 980, 760, 42, 183, 1748, 11, 3, 4030, 7477, 3801, 1396, 3, 813, 7478, 36, 3, 179, 3030, 44, 3327, 4030, 7, 165, 4884, 1108, 53, 3, 7479, 7480, 760, 67, 23, 2399, 6, 8, 7481, 411, 3, 3030, 6, 304, 66, 1290, 7482, 12, 661, 420, 1, 1, 980, 183, 38, 3, 4190, 2, 7483, 58, 1123, 7, 7484, 287, 4, 1325, 1499, 2094, 4026, 42, 7485, 996, 18, 252, 44, 43, 304, 2, 7486, 58, 1192, 1499, 1, 1, 980, 985, 1795, 10, 3, 177, 287, 7, 173, 3220, 1, 1, 7487, 1, 7488, 1, 7489, 1, 7490, 1, 7491, 1, 7492, 1, 7493, 1, 7494, 1, 2779, 1, 7495, 1, 7496, 900, 1, 7497, 1, 7498, 1, 7499, 1, 7500, 1, 4934, 1, 7501, 1, 3360, 1, 7502, 1, 7503, 1, 7504, 1, 7505, 1, 7506, 1, 7507, 1, 7508, 1, 7509, 1, 7510, 1, 7511, 1, 7512, 1, 7513, 1, 3121, 1, 566, 1, 7514, 1, 1, 1, 1, 1407, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 93, 131, 1, 1, 1, 93, 59, 1, 93, 146, 539, 980, 1678, 446, 619, 1, 702, 371, 1, 93, 371, 1, 1, 293, 7, 133, 136, 1, 221, 138, 1, 221, 40, 2103, 1, 221, 247, 1, 301, 138, 1, 301, 40, 2707, 2986, 1, 301, 247, 1, 301, 138, 1057, 4025, 3265, 1, 133, 903, 1646, 1, 352, 819, 644, 1, 28, 296, 1983, 2665, 2439, 79, 1582, 1989, 1, 293, 1, 315, 919, 993, 2473, 3029, 1113, 1, 1, 108, 136, 1, 108, 138, 1, 108, 56, 1006, 24, 144, 1, 95, 116, 12, 929, 1, 354, 8, 230, 1, 69, 1580, 1, 800, 930, 1, 69, 305, 1, 69, 394, 1, 1, 904, 93, 578, 136, 1, 905, 589, 59, 906, 1, 634, 589, 59, 1, 634, 93, 59, 1, 1055, 59, 1, 93, 103, 59, 1, 296, 59, 1, 1, 93, 537, 1, 539, 980, 1678, 446, 619, 1, 1146, 972, 305, 354, 979, 1866, 518, 1354, 518, 230, 880, 892, 370, 1305, 1, 1199, 59, 93, 59, 116, 1, 215, 138, 216, 138, 1397, 1398, 1399, 1400, 978, 1, 1, 139, 1233, 1268, 59, 1401, 1402, 774, 1, 262, 1403, 7515, 1404, 7516, 671, 1405, 1, 427, 1, 1, 1, 512, 352, 1780, 2473, 3029, 1113, 1, 1, 512, 352, 40, 1, 1, 299, 1, 1, 642, 657, 1, 427, 642, 1, 427, 642, 1, 1, 643, 657, 1, 427, 643, 1, 259, 1317, 306, 960, 845, 1269, 1177, 1112, 7517, 2624, 1230, 1, 1112, 228, 1230, 644, 1, 228, 1177, 2473, 7518, 1, 228, 3143, 1113, 352, 1, 228, 227, 293, 1, 259, 773, 306, 737, 7519, 1, 478, 962, 7520, 1, 557, 26, 478, 10, 737, 3746, 1, 26, 774, 28, 296, 7521, 1, 954, 227, 1002, 7522, 7523, 1, 306, 259, 476, 7524, 2439, 1, 227, 227, 476, 7525, 1582, 1, 259, 557, 259, 505, 4002, 1, 175, 557, 227, 220, 1, 259, 1178, 227, 730, 455, 7526, 1, 478, 227, 259, 7527, 505, 7528, 1, 259, 226, 1317, 1002, 7529, 7530, 1, 306, 228, 7531, 1, 227, 228, 7532, 1, 175, 7, 1, 1002, 228, 3925, 7533, 247, 1, 1356, 7534, 596, 687, 7535, 1, 259, 227, 259, 7536, 79, 7537, 1, 1463, 259, 7538, 7539, 1, 306, 259, 259, 7540, 1, 427, 643, 227], [82, 20, 82, 20, 3492, 45, 567, 420, 483, 12536, 573, 12537, 709, 7, 507, 278, 51, 21, 12538, 1933, 327, 1, 14, 91, 163, 176, 167, 18, 3, 37], [2386, 700, 5, 4, 5, 19, 645, 20, 40, 409, 203, 5, 56, 645, 20, 40, 409, 203], [14, 1044, 217, 36, 174, 2, 332, 7543, 7544, 14, 1044, 217, 36, 174, 2, 332, 7543, 7544], [13, 25, 13, 25], [34, 9, 34, 70, 34, 9, 34, 70], [14, 7545, 74, 1277, 12, 261, 148, 14, 7545, 74, 1277, 12, 261, 148], [876, 173, 55, 50, 1, 1, 14, 876, 3, 333, 173, 3977, 5887, 1536, 1, 36, 33, 490, 254, 2368, 7546, 4745, 173, 12539, 12540, 2368, 7546, 4745, 1, 36, 576], [27, 2, 122, 2, 340, 36, 3222, 382, 27, 2, 122, 2, 340, 36, 3222, 382], [29, 2, 12541, 7, 1495, 1807, 824, 448, 246, 129, 12, 1495, 2, 118, 29, 11, 12542, 12543, 7, 12544, 12545, 2, 3, 177, 605, 1, 1, 1, 1, 749, 40, 1954, 314, 1924, 4813, 12546, 12547, 1, 1, 29, 6, 524, 2, 295, 1358, 7, 1807], [395, 8, 45, 10, 382, 910, 395, 8, 45, 10, 382, 910], [27, 2, 189, 440, 4, 404, 20, 110, 49, 27, 2, 189, 504, 73, 440, 4, 404, 20], [27, 2, 873, 98, 3, 148, 27, 2, 873, 98, 3, 148], [27, 2, 392, 4, 2, 87, 7, 41, 27, 2, 392, 4, 2, 87, 7, 41], [40, 385, 107, 18, 907, 18, 312, 1353, 362, 1027, 336, 40, 1353, 362, 385, 107, 18, 907, 18, 312, 1353, 362, 1027, 336], [13, 25, 13, 25], [37, 4, 117, 365, 334, 1, 1, 3, 117, 755, 2, 1109, 3, 569, 131, 1, 7547, 1358, 12548, 1, 3397, 7548, 7549, 1, 2316, 3209, 9, 4015, 1, 7550, 1, 1, 67, 253, 47, 38, 261, 197, 1, 7547, 592, 2300, 12549, 2300, 12550, 1, 592, 4547, 3397, 7548, 7549, 1, 2316, 3209, 9, 4015, 1, 7550, 1, 7, 261, 131, 6, 385, 1, 1, 1, 85, 39, 106, 2, 118, 3, 2203, 136, 1, 1, 23, 136, 6, 4, 3, 117, 1, 1, 1, 14, 270, 80, 253, 68, 35, 39, 50, 80], [32, 64, 77, 32, 64, 77], [459, 490, 347, 1530, 2096, 89, 8, 38, 1707, 765, 91, 1176], [210, 30, 155, 204, 184, 6, 984, 83, 3, 116, 1], [15, 26, 13, 25, 54, 15, 13, 25, 49, 164, 3, 37, 51, 637, 158, 82, 20, 44, 38, 2042, 2, 458, 420, 30, 3, 385, 13, 376, 13], [175, 3629, 1591, 80, 44, 38, 9, 432, 1330, 4816, 7551, 6, 183, 290, 3, 179, 123, 325, 12551, 12552, 4816, 7551, 86, 52, 432, 1330], [564, 86, 432, 1330, 51, 1090, 33, 432, 1330, 384, 2072, 1967, 3, 1696, 432, 1330, 1383, 6, 1565, 10, 33, 86, 51, 2159, 3, 864, 2072, 1967, 6, 268, 1, 1, 1515, 42, 290, 3, 179, 210], [15, 26, 32, 64, 15, 26, 32, 64], [186, 3003, 341, 18, 57, 38, 163, 600, 57, 3, 197, 331, 7, 63, 8, 3050, 7, 3, 165, 38, 268, 30, 3, 186, 37, 71, 1, 689, 56, 4005, 4930, 1295, 68, 8, 396, 4935, 4936, 186, 639, 252, 2244, 2244, 1, 186, 639, 1065, 12553, 4937, 646, 12554, 12555, 12556, 2518, 3463, 7552, 12557, 7553, 7554, 1, 1, 4242, 12558, 12559, 117, 1906, 368, 12560, 1, 3555, 947, 1, 1, 646, 12561, 12562, 12563, 948, 12564, 7553, 7554, 1, 1, 4935, 4936, 947, 1, 12565, 4937, 646, 592, 6159, 3555, 12566, 12567, 4937, 12568, 7552, 12569, 3463, 12570, 4987, 478, 12571, 2526, 12572, 106, 12573, 12574, 2244, 2244], [29, 603, 37, 29, 603, 37, 163], [15, 26, 13, 25, 15, 26, 13, 25], [40, 703, 758, 1718, 2092, 6, 172, 184, 6, 693, 3, 37, 617, 40, 703, 758, 1718, 2092, 6, 172, 184, 6, 693, 3, 37, 617, 1, 1970, 1718, 2092, 6, 172, 184, 6, 693, 3, 435, 617], [33, 214, 89, 8, 38, 281, 2886, 7, 97, 1202, 98, 432, 20, 181, 891, 33, 214, 89, 8, 38, 281, 2886, 7, 97, 1202, 98, 432, 20, 181, 891], [32, 707, 32, 707], [110, 49, 290, 210, 30, 357, 659, 541, 532, 858, 36, 41, 97, 320, 62, 12575, 57, 62, 412, 51, 110, 49, 290, 210, 30, 357, 659, 541, 532, 858, 36, 41, 97, 320, 62, 384, 57, 62, 412, 51, 21, 5323], [876, 14, 876, 36, 1, 1, 12576, 40, 173, 40, 3098, 12577, 7, 3331, 3331, 12578, 3331, 12579, 1171, 226, 839, 4934, 1, 1, 1, 1, 781, 35, 343, 1502, 556, 1, 4188, 4189, 1, 1, 30, 450, 750, 135], [3, 12580, 6, 45, 37, 71, 1680, 41, 65, 3186, 72, 37, 184, 6, 12581, 21, 36, 45, 861, 53, 175, 764, 41, 264, 43, 1167, 110, 246, 265, 80, 2, 106, 851, 736, 172, 30, 1713, 12582, 7, 736, 172, 735, 50], [432, 1330, 8, 45, 33, 432, 1330, 89, 8, 1089, 2, 43, 1694, 98, 977, 497, 33, 107, 6, 2042, 2, 205, 242, 23, 66, 678, 36, 33, 793, 86, 169, 3630, 3, 432, 1330, 273, 187, 8, 1202, 98], [1009, 18, 1686, 11, 517, 181, 767, 1009, 18, 1686, 11, 517, 181, 767, 146, 54, 77, 489, 174, 11, 72, 223, 448, 89, 8, 134, 4, 24, 143, 345], [28, 7555, 27, 2, 122, 192, 76, 27, 2, 29, 417, 20, 7, 417, 20, 865, 110, 38, 274, 33, 224, 137, 13, 125, 20, 13, 120, 169, 3, 224, 119, 49, 27, 2, 122, 192, 76, 1, 33, 28, 59, 6, 7555], [432, 1330, 8, 285, 10, 86, 236, 432, 1330, 8, 285, 10, 86, 236], [159, 66, 89, 8, 134, 4, 3, 73, 7415, 366, 91, 163, 925, 33, 48, 89, 8, 468, 3, 12583, 66, 3, 648, 1329, 7, 12, 3, 1708, 1329, 6, 4990, 1, 582, 3, 7193, 12584, 42, 8, 7065], [15, 26, 132, 102, 15, 26, 132, 102], [70, 10, 258, 70, 10, 258], [7556, 90, 2930, 7557, 1575, 6, 1656, 112, 49, 105, 10, 7556, 90, 2930, 7557, 1575, 6, 1656, 112, 49, 105, 10], [280, 73, 471, 2695, 2696, 280, 73, 471, 2695, 2696], [432, 1330, 442, 2, 33, 174, 86, 6, 8, 1628, 3, 432, 1330, 2571, 30, 33, 174, 86, 6, 8, 1628, 861, 51, 250, 2, 29, 432, 1330, 36, 33, 174, 86, 384, 8, 285, 71, 10, 33, 86, 38, 183, 248, 2, 29, 432, 1330, 36, 3, 107, 7, 384, 71, 44, 1449, 44, 33, 121, 97, 43, 402, 12, 23, 116], [3736, 519, 108, 453, 383, 3736, 519, 108, 453, 383], [54, 173, 1368, 10, 58, 1582, 254, 40, 54, 173, 1368, 10, 58, 1582, 254, 1, 1, 85, 6, 3, 173, 315, 12585, 12586, 2573, 1, 1, 85, 78, 254, 6, 21, 10, 40, 1, 1, 1, 36, 85, 81, 341, 62, 372, 2836, 341, 106, 35, 479, 3, 173, 1368, 68, 12587, 3, 1251, 1947, 81, 341, 99, 43, 304, 1, 1, 106, 35, 479, 3, 2281, 218, 1368, 68, 8, 35, 755, 269, 3, 1871, 4003, 2, 876, 16, 1, 1, 68, 3, 81, 2635, 6, 8, 3817, 6, 21, 837, 2, 729, 191, 540, 2, 2009, 3, 12588, 2635, 1344, 12589, 2114, 11, 6978, 186, 1, 1, 106, 35, 479, 23, 4003, 7, 62, 218, 1368, 2, 558, 1050, 1209, 7, 30, 558, 1050, 56, 4, 165, 12590, 72, 12591, 99, 43, 588, 1, 68, 8, 276, 35, 54, 2, 431, 3, 73, 56, 7, 271, 2, 876, 21, 2, 1, 1, 263, 483, 2569, 81, 6, 178, 23, 6, 11, 173, 12592, 3137, 201, 357, 40, 7, 40, 53, 284, 42, 3031, 11, 1324], [54, 29, 11, 7558, 7559, 111, 151, 1, 1, 47, 479, 583, 7558, 7559, 3, 179, 29, 53, 38, 11, 40, 838, 254], [132, 15, 26, 15, 160, 32, 132, 15, 26, 15, 160, 32], [485, 115, 4925, 12593, 12594, 12595, 12596, 12597, 199, 130, 70, 1, 70, 1197, 2487, 1197, 1114, 566, 1, 485, 1681, 1, 485, 70, 2058, 1, 485, 1302, 1029, 277, 1, 485, 15, 217, 1, 373, 114, 286, 12598, 513, 18, 2058, 1, 70, 830, 382, 1, 114, 68, 73, 394, 18, 174, 1357, 4, 1, 1, 205, 7560, 12599, 3308, 4853, 767, 205, 7560, 2958, 12600, 405], [7561, 400, 7561, 400], [31, 10, 780, 4, 417, 20, 47, 38, 3652, 503, 30, 458, 18, 3, 2840, 11, 1118, 1538, 7, 7384, 23, 6, 1832, 294, 780, 677, 2702, 4, 15, 4, 417, 20, 21, 6, 127, 294, 1465, 2, 7, 598, 2, 4600, 1, 1362, 3392, 1341, 816, 47, 187, 8, 38, 143, 210, 1, 310, 51, 3, 417, 248, 2, 1433, 3, 127, 30, 2702, 780, 677, 3, 2164, 167, 429, 3, 391, 503, 67, 51, 3, 438, 6, 1605, 7, 1166, 127, 6, 2268, 10, 3, 503, 6, 164, 274, 2, 302, 503, 2191, 1238, 822, 924, 18, 7385, 3, 2702, 503], [41, 31, 41, 31], [4938, 32, 808, 32, 219, 2, 43, 1805, 1362, 14, 747, 12601, 32, 510, 180, 6, 8, 2333, 24, 599, 23, 106, 8, 253, 424, 283, 32, 63, 808, 310], [15, 26, 13, 25, 15, 26, 13, 25], [32, 808, 11, 28, 4938, 32, 808, 11, 28, 4938], [27, 2, 122, 2, 340, 27, 2, 122, 2, 340], [735, 279, 140, 748, 7, 437, 116, 311, 2, 4860, 489, 7562, 111, 1, 246, 35, 14, 735, 279, 140, 11, 2557, 748, 7, 437, 116, 311, 2, 4860, 489, 7562, 21, 63, 495, 66, 7563, 7564], [417, 20, 24, 31, 7, 82, 20, 31, 417, 20, 24, 31, 7, 82, 20, 31], [25, 224, 11, 7565, 7566, 137, 13, 125, 20, 13, 25, 3], [27, 2, 122, 76, 208, 491, 1823, 1, 1, 49, 27, 2, 29, 76, 1, 1, 14, 622, 96, 71], [33, 874, 125, 296, 6, 808, 33, 874, 125, 296, 6, 808], [1921, 2730, 113, 763, 1744, 625, 2, 4939, 1896, 37, 1921, 136, 36, 4939, 1896, 38, 248, 2, 421, 3, 1291, 12602, 3, 50, 18, 3, 90, 3991, 448, 1834, 106, 44, 1012, 284, 1667, 80, 44, 83, 18, 3, 1744, 284, 106, 42, 421, 30, 23, 438, 462, 82, 63, 84, 2, 421, 423, 1291, 44, 97, 43, 588, 1192, 10, 85, 38, 141, 1591, 599, 3, 3991, 2174, 423, 1291], [452, 609, 31, 452, 1009, 31], [3498, 13, 25, 8, 285, 3498, 13, 25, 8, 285], [39, 176, 791, 51, 1426, 2, 176, 36, 168, 1499, 346, 2447, 347, 6, 357, 727, 1, 1, 33, 4044, 6, 44, 1905, 3, 791, 6, 4, 2741, 233, 83, 2262, 273, 12603, 4, 12604, 2163], [110, 39, 8, 95, 158, 15, 1245, 192, 3, 76, 110, 267, 2, 3, 76, 67, 39, 8, 95, 158, 15, 737, 164, 3, 37, 71, 44, 649, 2, 12605, 44, 49, 8, 267, 2, 3, 76, 143, 50, 6, 2610], [163, 181, 6, 1071, 10, 527, 53, 1380, 30, 1065, 7, 1466, 67, 51, 331, 680, 6, 2, 43, 1534, 163, 181, 6, 1071, 10, 527, 53, 1380, 30, 1065, 7, 1466, 67, 51, 331, 680, 6, 2, 43, 1534], [191, 217, 46, 111, 1, 1, 308, 50, 80, 77, 10, 29, 791, 412, 2, 239, 7, 528, 4, 191, 217, 12606], [40, 162, 20, 577, 238, 297, 865, 344, 1184, 6, 172, 112, 49, 10, 105, 40, 162, 20, 577, 238, 297, 865, 344, 1184, 6, 172, 184, 6, 693, 3, 37, 617], [3, 167, 12, 3, 12607, 1427, 6, 406, 14, 119], [280, 73, 471, 7567, 7568, 280, 73, 471, 7567, 7568], [280, 73, 471, 7569, 7570, 280, 73, 471, 7569, 7570], [280, 73, 471, 7571, 7572, 280, 73, 471, 7571, 7572], [280, 73, 471, 7573, 7574, 280, 73, 471, 7573, 7574], [15, 31, 33, 15, 1313, 351, 399, 310, 169, 44, 49, 8, 84, 2, 504, 143, 131, 2, 527, 14, 50], [846, 4031, 160, 2474, 362, 385, 107, 18, 907, 18, 312, 2474, 362, 846, 4031, 160, 2474, 362, 385, 107, 18, 907, 18, 312, 2474, 362, 1027, 907, 2100, 67, 336, 1, 12, 116, 49, 990], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [24, 621, 32, 8, 45, 184, 63, 350, 576, 24, 621, 32, 8, 45, 184, 63, 350, 576], [28, 32, 6, 64, 27, 2, 46, 79], [8, 84, 2, 927, 143, 1677, 8, 84, 2, 927, 143, 1677], [235, 108, 453, 102, 11, 28, 12608, 12609, 208, 6443, 1, 1, 14, 326, 96, 1942, 102], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [110, 97, 122, 3, 58, 74, 1955, 110, 97, 122, 3, 58, 74, 1955], [399, 671, 205, 242, 348, 7575, 30, 1947, 3795, 70, 54, 1297, 242, 394, 959, 62, 2324, 55, 1029, 101, 1, 1, 33, 671, 205, 242, 348, 7575, 65, 456, 399, 2, 3, 1947, 671, 3795, 70, 959, 6, 9, 345, 45, 1, 23, 6, 72, 7342, 24, 21, 671, 205, 242, 348, 1, 1, 53, 332, 874, 724, 295, 12610, 79, 3795, 70, 1416, 12, 975, 394, 959, 62, 2324, 14, 528, 7, 269, 3, 140, 10, 3, 177, 818, 1, 1, 2160, 1349, 12611, 874, 2080, 2428], [235, 108, 453, 508, 108, 235, 108, 453, 508, 108], [131, 876, 876, 3, 131, 287, 36, 415, 531, 286, 2, 4014, 148], [3130, 12612, 12613, 3130, 140, 400, 10, 527], [226, 64, 77, 226, 64, 77], [2608, 429, 406, 52, 287, 920, 30, 1297, 242, 839, 671, 925, 2608, 429, 406, 52, 287, 920, 30, 1297, 242, 839, 671, 925], [1445, 354, 11, 3390, 3391, 65, 402, 4850, 4851, 181, 1, 124, 1, 291, 292, 1, 1289, 3, 1445, 354, 11, 3390, 3391, 65, 402, 1, 1, 55, 1, 1, 974, 11, 3390, 3391, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [102, 35, 2, 25, 33, 13, 18, 13, 125, 20, 185, 8, 46, 7, 25, 33, 13, 102, 35, 2, 25, 33, 13, 18, 13, 125, 20, 53, 754, 53, 285, 1, 185, 8, 46, 7, 25, 33, 13], [25, 224, 11, 7576, 1028, 137, 13, 125, 20, 13, 25, 3], [25, 224, 11, 7576, 1028, 137, 13, 125, 20, 13, 25, 3], [3, 1445, 354, 11, 4940, 4941, 65, 402, 4850, 4851, 181, 1, 49, 1, 291, 292, 1, 1289, 3, 1445, 354, 11, 4940, 4941, 65, 402, 1, 1, 55, 1, 1, 974, 11, 4940, 4941, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [397, 2, 78, 40, 8, 285, 397, 2, 78, 40, 8, 285, 78, 6, 4, 2186, 12, 3, 717, 167], [555, 93, 55, 1, 1, 329, 2810, 555, 93, 3061, 326, 3, 181, 6, 8, 357, 1998, 7, 241, 71, 6, 1086, 1, 1, 14, 114, 7, 386], [1533, 34, 1711, 461, 1284, 2882, 556, 714, 30, 450], [58, 94, 1252, 2986, 24, 1252, 76, 618, 323, 75, 112, 49, 1547, 10, 9, 81, 12614, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 1547, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 17, 16, 9, 17, 1, 1, 256, 298], [1348, 287, 8, 1320, 53, 332, 1299, 114, 7, 270, 166, 253, 3, 2478, 14, 1109, 181, 319, 111, 2600, 1, 1, 47, 38, 8, 268, 3, 160, 3253, 287, 11, 1348, 310, 14, 114, 36, 104, 591, 7, 243, 320, 3, 287, 2, 166, 1, 1, 183, 47, 246, 265, 2, 253, 1459, 21, 99, 43, 285, 44, 72, 1437, 319, 6, 331, 2, 3, 2562, 826, 4, 732, 3, 3243, 447, 1373], [457, 3398, 1922, 120, 187, 8, 134, 546, 1408, 63, 8, 285, 849], [27, 2, 100, 149, 359, 772, 504, 2000, 440, 7, 39, 239, 527, 772, 294, 15, 31, 169, 15, 70, 10, 52, 1553, 2, 398, 3, 31, 18, 26, 7, 26, 95, 10, 49, 27, 2, 100, 239, 149, 127, 41, 57, 772, 622, 377, 528, 37, 4, 1232, 1232, 7, 53, 332, 37, 68, 77, 366, 6, 1167, 7, 335, 2, 100, 3, 377, 52, 6, 1761, 2, 211, 41, 622, 41, 400, 1553, 1, 1, 31, 333, 173, 1606, 169, 327, 2000, 403, 49, 27, 2, 504, 62, 504, 2, 142, 1, 1, 31, 27, 2, 239, 287, 1071, 10, 12615, 2, 552, 444, 2, 149, 127, 4, 1232, 1232], [27, 2, 320, 62, 384, 57, 27, 2, 320, 62, 384, 57], [1711, 34, 1711, 461, 55, 1518, 1, 1, 91, 3, 177, 57, 12616, 14, 398, 21, 53, 754, 53, 285, 1, 781, 35, 1, 1, 1, 1, 135, 750], [8, 84, 2, 29, 692, 20, 220, 34, 797, 34, 9, 56, 12617, 182, 213, 130, 155, 204, 117, 107, 214, 146, 8, 84, 2, 29, 692, 20, 220, 34, 797, 34, 9], [1749, 1009, 14, 119, 12, 3108, 7305, 1749, 207, 44, 169, 175, 58, 25, 3, 142, 2140, 12618, 14, 270, 2749, 106, 21], [3520, 31, 12, 117, 48, 208, 209, 7303, 1, 1, 4, 470, 30, 161, 12619, 971, 14, 326, 96, 3, 177, 222, 1, 1, 1, 151, 42, 451, 1742, 348, 115, 7, 148, 1, 1, 261, 451, 42, 267, 137, 728, 1255, 1, 1, 3, 56, 18, 3, 148, 6, 1198, 4, 3, 33, 2609, 347, 18, 348, 115, 1, 1, 67, 3, 56, 18, 3, 348, 115, 6, 8, 1198, 4, 3, 58, 18, 3, 148, 1, 1, 47, 42, 27, 2, 236, 3, 401, 56, 7, 7577, 4, 609, 18, 753, 3261, 1, 1, 1, 14, 2201, 23, 77, 10, 305], [121, 1616, 2, 738, 295, 379, 121, 1616, 2, 738, 295, 379, 63, 833, 746, 3, 7577, 63, 543, 7, 7129, 4886], [1195, 32, 4865, 1195, 32, 4865, 129, 9, 1550, 12620], [79, 32, 64, 79, 32, 64], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [155, 204, 54, 50, 1658, 3, 1297, 242, 155, 204], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 28, 12621, 4, 64, 47, 219, 2, 743, 28, 62, 25, 13, 482, 252, 3, 28, 219, 62, 63, 45, 30, 896, 3, 31, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 269, 29, 3, 179, 53, 23, 165, 28], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 551, 412, 78, 409, 636, 150, 5, 4, 5, 19, 551, 412, 78, 409, 636, 12], [150, 5, 4, 5, 19, 26, 842, 150, 5, 4, 5, 19, 26, 842, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [54, 2, 606, 3, 41, 56, 12622, 182, 213, 130, 155, 204, 117, 107, 214, 146, 54, 2, 606, 3, 41], [24, 7578, 641, 297, 64, 77, 11, 454, 458, 1639, 18, 385, 13, 443, 1742, 199, 3, 179, 95, 4, 24, 7578, 641, 297, 64, 77], [5, 63, 327, 345, 467, 858, 2093, 7, 2690, 150, 5, 4, 5, 19, 5, 12], [544, 473, 7, 1757, 2549, 1, 49, 1, 291, 292, 1, 5818, 5819, 1, 550, 544, 473, 7, 1, 1, 21, 50, 1, 1, 47, 54, 544, 600, 473, 7, 67, 118, 179, 37, 71, 53, 167, 96, 1, 1, 172, 47, 996, 444, 2, 2639, 12623, 472, 2, 43, 350, 1, 1, 14, 50, 114, 288, 47, 39, 544, 444], [34, 70, 11, 7579, 7580, 814, 1028, 49, 1897, 1898, 7579, 7580, 34, 9, 189, 57, 32, 11, 223, 12624, 12625, 365, 334, 4495, 28, 486, 2, 200, 564, 7, 653, 2, 3105, 3, 31, 308, 509, 23, 102, 10, 305, 7, 525, 28, 450], [1070, 10, 705, 46, 1070, 10, 705, 46], [652, 641, 115, 64, 7581, 652, 641, 115, 64, 7581], [874, 2080, 1795, 347, 27, 2, 46, 874, 2080, 1795, 347, 27, 2, 46], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 551, 40, 203, 150, 5, 4, 5, 19, 551, 40, 203, 12], [443, 1790, 42, 323, 75, 10, 40, 374, 26, 112, 124, 10, 105, 443, 1790, 42, 323, 75, 10, 40, 374, 26, 112, 124, 10, 105, 1, 312, 12626, 6, 8, 327, 1, 312, 12627, 6, 8, 327, 1, 312, 12628, 6, 8, 327, 1, 312, 12629, 6, 8, 327, 1, 312, 12630, 6, 8, 327, 1, 312, 7582, 6936, 7582, 6, 8, 327], [4942, 1715, 106, 8, 1242, 4942, 1715, 42, 8, 4487, 7, 264, 43, 4942, 1219, 516, 323, 53, 677, 7, 264, 43, 23, 6, 1278, 626, 149, 359, 7, 359, 2, 43, 2343, 10, 2204, 1, 14, 91, 3, 177, 149, 359, 1, 1, 627, 7, 1, 666, 627, 7], [166, 4695, 162, 20, 1425, 4, 11, 7583, 694, 14, 206, 3, 1424, 615, 11, 3, 177, 7583, 694, 448, 38, 4695, 1742, 2, 1425, 4, 7, 77, 30, 162, 20, 12, 423, 12631, 7, 2173, 166, 12632, 12633, 166, 3480, 3481, 166, 12634, 12635, 166, 12636, 12637, 166, 12638, 12639, 166, 7043, 7044, 68, 43, 18, 582, 967, 14, 2871, 565, 2, 129, 80, 12, 143, 116, 3039, 3040, 4825, 2622, 1123, 120, 166, 113, 90, 2301], [29, 524, 2, 2010, 2011, 4, 166, 113, 28, 12640, 330, 29, 2, 3, 166, 113, 2010, 2011, 40, 2, 106, 4603, 12641, 12642, 636, 310, 44, 29, 649, 2, 43, 1478, 14, 876, 510, 49, 12643, 6776, 2158, 42, 275, 2, 876, 23, 133, 662, 21, 6, 1278, 2676, 2, 3, 160, 312, 7, 219, 2, 43, 662, 2071], [79, 13, 25, 79, 13, 25], [28, 1049, 2, 114, 68, 151, 42, 1715, 10, 130, 1560, 28, 1049, 2, 114, 68, 151, 42, 1715, 10, 130, 1560], [162, 20, 116, 31, 162, 20, 116, 31, 56, 3039, 3040, 182, 213, 130, 155, 204, 117, 107, 214, 146, 106, 102, 116, 142, 29, 36, 21, 11, 101, 1066, 448, 42, 625, 142], [5, 63, 327, 345, 467, 858, 2093, 7, 2690, 150, 5, 4, 5, 19, 5, 12], [2182, 125, 223, 7584, 1230, 2182, 125, 223, 7584, 1230], [128, 126, 6, 783, 80, 2, 46, 12, 669, 347, 14, 525, 30, 3139, 33, 32, 1105, 4], [40, 3, 233, 10, 40, 24, 144, 233, 6, 8, 53, 1027, 1696, 40, 3, 233, 10, 40, 24, 144, 233, 6, 8, 53, 1027, 1696], [3310, 115, 4, 3895, 7585, 2, 7586, 1061, 7587, 10, 46, 3310, 115, 4, 3895, 7585, 2, 7586, 1061, 7587, 10, 46], [3, 1445, 354, 11, 1855, 4943, 65, 402, 12644, 12645, 181, 124, 291, 292, 1145, 3, 1445, 354, 11, 1855, 4943, 65, 402, 55, 974, 11, 1855, 4943, 821, 65, 141, 495, 413, 3, 229, 2, 239], [27, 2, 1422, 74, 27, 2, 1422, 74], [25, 13, 11, 25, 13, 11], [15, 1618, 238, 8, 45, 15, 1618, 238, 8, 45], [119, 15, 74, 14, 119, 33, 15, 74, 585, 1245, 160, 2, 90, 7114], [27, 2, 91, 88, 206, 4, 4, 41, 27, 2, 91, 88, 206, 4, 4, 41], [290, 1237, 30, 33, 13, 1090, 3, 212, 56, 12646, 12647, 182, 213, 130, 155, 204, 117, 107, 214, 146, 290, 1237, 30, 33, 13, 1090, 3, 212], [27, 2, 122, 2, 41, 130, 41, 83, 334, 21, 429, 624, 250, 2, 122, 62, 1435, 80, 72, 37, 393, 8, 357, 84, 2, 122, 2, 3, 78, 38, 245, 36, 23, 334, 273, 4282, 4, 33, 2710, 44, 97, 118, 2, 320, 7, 9, 73, 245, 770, 4, 38, 1837, 41, 1633, 7, 33, 2677, 52, 746, 30, 9, 2732], [41, 672, 55, 1, 1, 33, 41, 672, 429, 9, 136, 51, 612, 1639, 2, 1299, 381, 30, 80, 137, 3, 3128, 1604, 288, 39, 398, 44], [27, 2, 504, 772, 36, 191, 217, 27, 2, 504, 772, 36, 191, 217], [79, 13, 25, 79, 13, 25], [27, 2, 46, 2, 197, 116, 56, 3039, 3040, 182, 213, 130, 155, 204, 117, 107, 214, 146, 38, 330, 7, 273, 38, 210, 30, 6740, 590, 21, 6, 355, 1993, 347, 39, 35, 386], [4878, 286, 22, 10, 774, 306, 3, 317, 6, 3, 286, 22, 10, 774, 306, 7588, 6, 240, 1027, 3759, 1175, 1175], [3262, 881, 11, 2300, 14, 574, 34, 2, 12648, 12649, 12650, 264, 8, 43, 2361, 2, 2702, 6025, 62, 2450, 677, 11], [32, 64, 77, 1999, 2452, 31, 32, 64, 77, 1999, 2452, 31], [82, 20, 52, 8, 84, 2, 322, 117, 222, 4, 82, 20, 52], [27, 2, 927, 143, 395, 36, 87, 27, 2, 927, 143, 395, 36, 87], [337, 6, 8, 545, 359, 39, 8, 43, 2488, 77, 52, 6, 2259, 98, 62, 1172, 37, 91, 96, 151, 63, 724, 37, 1625, 14, 335, 257, 1625, 68, 3, 123, 2327, 14, 1026, 72, 718, 1625, 37, 3, 177, 37, 3471, 329, 578, 3, 102, 1182, 1182, 233, 37, 37, 318, 78, 37, 1, 1, 1170, 38, 1837, 142, 443, 420, 3212], [13, 25, 7, 46, 210, 4, 128, 126, 13, 25, 7, 46, 210, 4, 128, 126], [223, 13, 11, 705, 6, 8, 45, 14, 31, 73, 13, 11, 705, 29, 11, 223, 12651, 12652, 962, 510], [743, 18, 108, 14, 743, 23, 108, 36, 1627, 1, 1, 130, 41, 1, 49, 1, 3452, 3453, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 1, 1, 104, 235, 108, 6, 970, 230, 36, 1090, 505, 192, 480, 1032, 411, 3, 235, 108, 65, 141, 2119, 35, 526, 54, 2, 509, 143, 354, 505, 99, 456, 43, 1606, 53, 754, 53, 29, 6, 2426, 66, 104, 718, 1, 1, 14, 2125, 3, 693, 5930, 47, 97, 119, 21, 62, 544, 21, 1, 1, 1833, 263, 5931, 3, 130, 41, 297, 11, 1774, 7, 799, 1918, 576, 6, 8, 511, 495, 140, 11, 1090, 24, 181, 599, 21, 6, 205, 2715, 7, 495, 14, 1247, 137, 197, 18, 3, 165, 3, 3733, 181, 140, 4, 104, 235, 108, 3, 213, 10, 104, 235, 108, 62, 3, 130, 1191, 297, 4123, 11, 104, 235, 108, 126, 1, 1, 3679, 694, 30, 739, 631, 199, 1750, 868, 235, 817, 2, 29, 41, 57, 24, 6, 1385, 844, 7, 3734, 3, 1464, 462, 11, 161, 694, 2, 199, 1832, 1750, 868, 817, 2, 729, 11, 3735, 2045, 7, 747, 134, 3239, 1685, 23, 6, 72, 2645, 2, 3, 1347, 11, 24, 868, 817, 1, 1, 511, 495, 3736, 817, 39, 43, 336, 4, 23, 1347, 1, 1, 519, 1747, 724, 367, 1, 1, 3, 693, 1347, 99, 43, 399, 53, 165, 817, 42, 495, 11, 199, 1, 1, 68, 35, 918, 72, 495, 108, 7, 246, 265, 2, 509, 5932, 18, 23, 1464, 462, 35, 39, 436, 404, 20, 34, 12653, 24, 404, 20, 144, 439, 106, 12654, 1117, 439, 302, 12655, 59, 7589, 403, 439, 106, 1010, 59, 7589, 1380, 235, 2, 3, 21, 188, 295, 314, 237, 68, 21, 6, 1750, 868, 108, 35, 54, 2, 552, 3, 1367, 455, 336, 4, 3, 519, 1747, 1238, 1107, 23, 1367, 755, 43, 1281, 66, 35, 7, 104, 569, 1329, 739, 7, 794, 2, 3, 237, 1959, 2, 34, 357, 670, 35, 39, 552, 3, 1281, 455, 2, 3, 34, 62, 320, 3, 1281, 455, 2, 3, 237, 7, 284, 99, 552, 21, 1, 1, 143, 34, 573, 3, 1281, 455, 99, 43, 2043, 35, 38, 1162, 2, 312, 7, 436, 3, 455, 389, 104, 108, 99, 43, 502, 584, 36, 1627, 1, 1, 519, 1747, 1238, 1107, 1, 1, 136, 393, 104, 235, 108, 1, 108, 416, 1, 1, 2905, 1, 1, 108, 103, 1, 1, 383, 1, 1, 108, 59, 1, 1, 12656, 12657, 1, 1, 108, 948, 1, 1, 1774, 1, 1, 108, 28, 296, 1, 1, 3144, 2905, 1, 1, 108, 2560, 1, 1, 480, 1032, 394, 1, 1, 1, 1, 108, 29, 1517, 1, 1, 2119, 1, 1, 108, 29, 1517, 709, 1, 1, 188, 1, 1, 1, 331, 12, 124, 2], [27, 2, 46, 2, 41, 7, 87, 27, 2, 46, 2, 41, 7, 87], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 12658, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 397, 1, 1, 896, 3, 31, 274, 13, 137, 13, 120, 27, 2, 95, 158, 15, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [338, 13, 25, 102, 1808, 13, 226, 13, 25, 524], [132, 32, 57, 4, 793, 86, 3, 28, 12659, 12660, 59, 7590, 55, 101, 1, 1, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 28, 59, 7590], [87, 1171, 8, 637, 4, 1223, 12, 637, 4, 1, 508, 484, 37], [31, 329, 699, 1243, 92, 69, 7591, 2597, 55, 1, 1, 49, 843, 72, 31, 329, 699, 92, 69, 7591, 58, 1, 611, 366, 158, 3, 179], [25, 3, 13, 11, 10, 15, 160, 1245, 64, 77, 18, 15, 26, 8, 236, 98, 4, 13, 125, 20, 164, 72, 37, 27, 2, 326, 32, 11, 28, 12661, 51, 637, 158, 13, 125, 20, 1, 1, 14, 1026, 7565, 7566, 746, 32, 6, 499], [25, 224, 11, 12662, 12663, 137, 13, 125, 20, 13, 25, 3], [981, 1211, 31, 55, 10, 461, 3, 461, 63, 350, 11, 12664, 18, 1208, 30, 503, 18, 669, 23, 503, 65, 8, 141, 274, 4, 3, 1430, 127, 67, 3, 981, 1211, 65, 141, 3487, 4, 11, 344, 973, 18, 38, 1098, 393, 23, 30, 3, 2479, 432, 7, 284, 42, 8, 614, 21, 285, 2, 981, 1211, 12, 661, 763, 39, 35, 91, 85, 65, 1821, 23], [150, 5, 4, 5, 19, 5, 476, 150, 5, 4, 5, 19, 5, 12], [5, 7592, 36, 3, 1773, 220, 706, 3, 5, 7592, 2385, 18, 3, 1773, 706, 7, 219, 2, 43, 991, 14, 844, 2, 3, 1773, 159], [79, 32, 64, 77, 79, 32, 64, 77], [33, 1375, 859, 6, 8, 1613, 33, 142, 110, 742, 425, 83, 3, 12665, 7, 21, 273, 8, 1613, 33, 142], [210, 30, 555, 810, 210, 30, 555, 810], [13, 25, 13, 25], [27, 2, 515, 41, 169, 811, 3, 13, 27, 2, 515, 41, 169, 811, 3, 13], [132, 7593, 7594, 132, 7593, 7594, 115, 56, 12666, 129, 56, 28, 59, 718], [27, 2, 46, 2, 79, 32, 64, 27, 2, 46, 2, 79, 32, 64], [27, 2, 95, 158, 162, 20, 110, 118, 6640, 2, 162, 20, 397, 347, 924, 18, 899, 164, 12667, 30, 1812, 1, 91, 772], [110, 97, 410, 87, 381, 541, 116, 21, 684, 77, 1736, 44, 87, 6, 8, 327, 110, 97, 410, 87, 381, 541, 116, 21, 684, 77, 1736, 44, 87, 6, 8, 327], [7595, 486, 2, 25, 13, 11, 28, 7596, 7595, 486, 2, 25, 13, 11, 28, 7596], [25, 3, 13, 11, 2113, 731, 20, 10, 15, 160, 872, 110, 38, 8, 304, 23, 4, 3911, 12668, 7, 21, 99, 8, 270, 80, 4, 30, 33, 628, 13], [213, 31, 128, 126, 8, 590, 213, 31, 128, 126, 8, 590], [15, 26, 13, 25, 15, 26, 13, 25], [60, 94, 1564, 596, 1846, 892, 60, 6, 75, 12, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [29, 2, 76, 28, 59, 6590, 142, 56, 12669, 1, 29, 2, 76], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [547, 3953, 400, 547, 3953, 400], [431, 549, 140, 46, 31, 431, 549, 140, 46, 31], [191, 217, 1019, 9, 12670, 12671, 191, 217, 2899, 80, 12672, 175], [54, 857, 317, 11, 7597, 7598, 54, 857, 317, 11, 7597, 7598], [438, 923, 31, 30, 3, 225, 20, 1626, 11, 759, 438, 923, 31, 30, 3, 225, 20, 1626, 11, 759], [7599, 7600, 13, 65, 562, 14, 121, 911, 12, 14, 121, 7599, 7600, 12, 2, 70, 283, 13, 180, 97, 46, 2, 1096], [949, 1070, 949, 1070], [116, 2672, 6, 8, 45, 168, 20, 27, 2, 122, 2, 78, 116, 2672, 4, 168, 20, 89, 8, 134, 168, 20, 6, 430, 10, 3, 28, 115, 6253], [58, 193, 443, 529, 42, 327, 278, 33, 490, 271, 6, 90, 1259, 884, 2, 166, 113, 7, 122, 2, 3, 58, 33, 115, 1687, 3869, 3870, 278, 83, 1671, 42, 278, 1, 1, 288, 187, 35, 1264, 151, 42, 58, 193, 1, 1, 6, 201, 15, 278, 14, 199, 3, 1166, 34, 745, 3, 15, 218, 68, 201, 15, 6, 327, 278, 1, 1, 42, 316, 467, 197, 999, 1447, 1, 1, 85, 15, 78, 42, 35, 10, 78, 56, 6, 651, 4, 3, 233, 1844, 12, 3, 1451, 1, 722, 18, 104, 167, 1, 1, 106, 165, 616, 2189, 183, 1189, 278, 466, 420, 4, 15, 1, 1, 85, 165, 529, 42, 327, 278, 1, 1, 39, 35, 29, 104, 131, 287, 10, 3, 78, 1, 1, 143, 165, 1119, 62, 210, 30, 165, 571], [2095, 1812, 8, 45, 110, 27, 2, 95, 4, 2, 162, 20, 2095, 294, 3, 1812, 212, 10, 3, 459, 1259, 413, 10, 3, 2095, 229, 4, 3, 212, 356, 1271, 2, 46, 167, 924, 18, 357, 1105, 899, 158, 3, 52, 38, 248, 5006, 33, 213, 1301, 7, 742, 248, 637, 4, 137, 600, 419, 7, 4901], [24, 314, 89, 8, 468, 676, 169, 274, 33, 13, 110, 355, 274, 33, 13, 7, 172, 33, 24, 314, 32, 89, 8, 468, 3, 765, 2, 1961, 4, 3, 149, 676, 46, 957, 12673, 12674], [40, 703, 758, 286, 565, 10, 4724, 6, 172, 184, 6, 96, 3, 37, 617, 40, 286, 565, 10, 4724, 6, 172, 184, 6, 96, 3, 37, 617, 77, 18, 344, 889, 607], [211, 492, 7601, 4032, 4033, 211, 492, 7601, 4032, 4033], [25, 3, 13, 11, 4944, 4945, 10, 79, 46, 111, 14, 132, 4554, 32, 4944, 4945, 12675], [25, 224, 11, 4944, 4945, 137, 13, 125, 20, 13, 25, 111, 1, 14, 132, 4554, 12676, 32], [193, 30, 142, 477, 406, 3134, 7602, 2767, 2768, 193, 30, 142, 477, 406, 3134, 7602, 2767, 2768], [1366, 12677, 12678, 39, 35, 995, 90, 652, 277, 247, 10, 3, 880, 356, 250, 2, 118, 348, 10, 3, 12679, 111, 12680, 39, 35, 995, 90, 652, 277, 247, 10, 3, 880, 356, 250, 2, 118, 348, 10, 3, 58], [27, 2, 100, 128, 126, 56, 12681, 182, 213, 130, 155, 204, 117, 107, 214, 146, 97, 118, 128, 126, 2, 100, 21, 355, 3506, 7, 12682], [378, 626, 182, 4, 1635, 57, 71, 110, 268, 245, 163, 11, 1360, 272, 128, 126, 11, 72, 223, 448, 6, 9, 345, 45, 12, 24, 1, 71, 63, 4, 738, 3, 165, 6, 12683, 1262], [57, 1813, 210, 30, 812, 57, 1813, 210, 30, 812], [307, 54, 29, 2, 83, 7603, 824, 11, 73, 348, 28, 11, 337, 3505, 310, 83, 2855, 4, 7603, 38, 141, 274, 2, 28, 46, 4591, 315, 29, 14, 206, 23, 28, 2, 83, 3580, 838, 510, 160, 6, 75, 4519, 4520, 113, 1064, 166, 113], [15, 629, 167, 31, 111, 1, 1, 308, 366, 158, 96, 3215, 15, 629, 167, 747, 2, 468, 222, 4, 2362, 12684, 6, 151, 143, 31, 4, 15, 58, 1, 1, 1, 135], [4858, 78, 190, 8, 4369, 11, 7604, 40, 169, 827, 18, 3, 12685, 33, 7604, 42, 8, 84, 2, 122, 2, 3, 4858, 78, 40], [966, 392, 10, 11, 162, 20, 2095, 6, 8, 45, 966, 392, 10, 11, 162, 20, 2095, 6, 8, 45, 1, 14, 91, 167, 96], [15, 26, 1878, 2098, 31, 15, 26, 1878, 2098, 31], [309, 29, 101, 1, 246, 265, 2, 421, 309, 1, 1382, 35, 2, 90, 29], [123, 30, 168, 20, 55, 7605, 1, 1, 47, 38, 193, 30, 161, 168, 20, 1, 14, 100, 7606, 113, 4842, 7607, 7608, 1, 1, 276, 35, 91, 23, 835, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 887, 51, 47, 106, 7609, 10, 3489, 47, 185, 91, 4, 73, 835, 161, 852, 18, 7610, 11, 23, 7611, 67, 172, 23, 733, 6, 77, 18, 200, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [13, 25, 102, 13, 25, 102], [123, 30, 168, 20, 55, 7605, 1, 1, 47, 38, 193, 30, 161, 168, 20, 1, 14, 100, 7606, 113, 4842, 7607, 7608, 1, 1, 276, 35, 91, 23, 835, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 887, 51, 47, 106, 7609, 10, 3489, 47, 185, 91, 4, 73, 835, 161, 852, 18, 7610, 11, 23, 7611, 67, 172, 23, 733, 6, 77, 18, 200, 1, 1, 1, 1, 1, 342, 1079, 556, 714, 135], [621, 340, 29, 102, 111, 177, 42, 3, 222, 18, 621, 4904, 24, 361, 36, 1059, 7, 102, 35, 2, 12686, 12687, 340, 29, 2438, 9, 621, 648, 56, 621, 372, 56, 621, 57, 59, 271, 24, 2001, 57, 59, 29, 275, 1362, 341, 12688, 12689, 361, 12690, 5866, 361, 12691, 1865, 7112, 7612, 7612, 361, 30], [26, 29, 55, 50, 1, 1, 33, 29, 2, 26, 649, 2, 43, 8, 45, 1, 1, 14, 747, 7, 778], [100, 127, 12692, 210, 417, 20, 4, 3, 417, 20, 160, 52, 3, 12693, 3347, 42, 8, 2146, 143, 1212, 136, 1, 1, 14, 114, 7, 398, 3, 31, 1008], [337, 8, 45, 337, 12, 90, 6, 3869, 3870, 278, 7, 684, 77], [309, 46, 31, 55, 1, 246, 35, 14, 295, 1, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15], [9, 873, 9, 873], [404, 20, 1004, 146, 404, 20, 119, 38, 274, 3, 233, 2, 1167, 2043, 924, 18, 1167, 421, 288, 2, 1662, 3, 119], [4, 3, 3208, 171, 151, 6, 9, 765, 2, 4694, 2, 3, 12694, 2, 384, 21, 636, 4, 104, 181, 3, 3208, 171, 1, 48, 2944, 505, 1881, 6713, 483, 3921, 1, 219, 2, 38, 4694, 765, 1, 97, 91, 21, 10, 3, 167], [692, 20, 13, 2577, 14, 25, 33, 692, 20, 13, 53, 1220, 691, 6179, 361, 2744], [260, 20, 220, 867, 443, 245, 192, 1979, 3562, 24, 144, 111, 1768, 1, 53, 1690, 47, 320, 245, 183, 486, 12695, 77, 18, 260, 20, 220, 10, 636, 935, 1, 3, 1979, 78, 65, 12696, 3, 179, 11, 372, 2717, 1, 112, 3, 195, 42, 496, 1776, 245, 11, 698, 91, 163, 3, 1776, 245, 38, 141, 496, 636, 1, 197, 316, 1677, 2, 263, 6, 44, 260, 20, 12697, 371, 18, 245, 331, 332, 483, 67, 3, 371, 65, 8, 12698, 1775, 44, 1979, 78, 649, 2, 43, 578, 21, 1633, 924, 18, 260, 20, 867, 444, 443, 420, 1, 1979, 78, 3562, 24, 144, 1, 3, 31, 65, 141, 4141, 2, 2324, 125, 1, 3127, 1663, 68, 35, 185, 366, 158, 23, 53, 3, 1131, 270, 80, 253, 68, 35, 54, 316, 222], [3955, 111, 96, 779, 223, 6, 27, 2, 46, 338, 212, 14, 25, 3, 13, 1934, 9, 56, 2415, 6993, 6994, 3955, 1611, 30], [395, 8, 45, 395, 8, 45, 1, 142, 416, 382, 3132, 1, 56, 1111], [69, 791, 29, 6, 8, 45, 9, 69, 39, 29, 131, 849, 69, 29, 1219, 45, 415, 580, 9, 69, 39, 29, 610, 62, 416, 2942, 118, 804, 7, 3708, 4088, 4, 117, 359, 83, 1760, 42, 952, 1, 37, 71, 27, 2, 633, 367, 136, 36, 15, 91, 377], [7613, 102, 3385, 3386, 73, 148, 102, 3385, 3386, 101, 163, 72, 7613, 220, 255, 175, 73, 142, 148, 255, 3385, 3386, 1, 1, 1284, 604], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [4946, 219, 29, 2, 96, 128, 126, 2128, 4946, 219, 29, 2, 96, 128, 126, 2128, 1316, 1764, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 1316, 1764, 611, 4041, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 611, 12699, 949, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 949, 260, 594, 1620, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 12700, 594, 1620, 88, 101, 218, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 88, 101, 218, 7614, 12701, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 7614, 101, 381, 266, 2573, 173, 1654, 195, 2703, 128, 126, 24, 203, 839, 101, 218, 2704, 266, 2573, 55, 2404, 288, 2032, 42, 47, 4, 23, 4549, 38, 8, 989, 268, 175, 34, 30, 450, 750, 4034, 4035, 220, 2540, 262, 12702, 685, 24, 2079, 879, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 6, 2349, 36, 1225, 426, 1135, 1512, 572, 62, 1294, 18, 23, 446, 66, 826, 448, 42, 8, 7238, 30, 3, 679, 1295, 6, 1139, 1454, 68, 35, 38, 268, 23, 319, 311, 2, 175, 1531, 276, 14, 1026, 3, 689, 7, 320, 23, 71, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182, 66, 4034, 4035, 331, 2091, 4924, 2, 3365, 3366, 704, 1533, 9, 29, 2, 535, 1116, 2404, 135, 750, 4034, 4035, 220, 685, 23, 446, 6, 679, 1562, 11, 3, 199, 18, 3, 1389, 7, 1261, 1048, 136, 44, 6, 1025, 62, 1135, 3, 722, 18, 1225, 12703, 3, 572, 62, 1294, 18, 23, 446, 66, 1931, 448, 42, 8, 3, 679, 1453, 6, 1139, 12704, 35, 38, 268, 23, 446, 66, 1932, 14, 1026, 3, 689, 7, 181, 21, 23, 71, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182, 66, 3365, 3366, 331, 2091, 4924, 2, 4034, 4035, 1488, 243, 9, 29, 2, 535, 55, 4946, 44, 1428, 175, 1716, 116, 110, 4291, 175, 34, 2, 1156], [27, 2, 493, 33, 1013, 51, 493, 182, 151, 6, 72, 37, 7, 27, 2, 465, 582, 27, 2, 493, 33, 1013, 51, 493, 182, 151, 6, 72, 37, 7, 27, 2, 465, 582], [131, 81, 1052, 876, 2980, 2981, 131, 81, 1052, 876, 2980, 2981], [280, 73, 471, 7615, 7616, 280, 73, 471, 7615, 7616], [97, 95, 4, 2, 279, 140, 55, 1, 1, 97, 95, 4, 2, 279, 140, 91, 37, 71, 163, 4, 3, 3886, 248, 207, 458, 420, 44, 33, 13, 6, 7241, 64, 454], [127, 2547, 2548, 124, 291, 292, 1757, 2549, 3942, 3943, 2469, 277, 368, 1289, 550, 127, 111, 21, 101, 308, 14, 525, 53, 47, 27, 2, 189, 472, 11, 461, 2363, 2364, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 1322, 1530, 572, 2589, 57, 1757, 2549, 124, 2469, 3023, 2547, 2548, 2469, 277, 368, 3942, 3943, 243, 127, 5277, 14, 189, 34, 2, 21, 11, 50, 5752, 5753, 262, 1906, 120, 2469, 3023, 124, 2547, 2548, 2469, 277, 368, 1757, 2549, 3942, 3943, 243, 127, 111, 12705, 1345, 1508, 101, 39, 201, 189, 473, 47, 42, 8, 723, 2, 189, 472, 113, 432, 1931, 39, 189, 472, 11, 3, 473], [193, 30, 74, 4, 47, 205, 3482, 4763, 4787, 956, 193, 30, 74, 4, 47, 205, 3482, 4763, 4787, 956], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [41, 6, 8, 1360, 13, 41, 6, 8, 1360, 13], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [214, 12706, 49, 12707, 3958, 12708, 2598, 12709, 3527, 21, 113, 190], [550, 72, 2396, 1127, 36, 3, 174, 18, 309, 7, 1600, 229, 8, 405, 111, 1, 1, 23, 229, 6, 8, 405, 1, 1, 181, 1, 124, 1, 12710, 12711, 1, 72, 2396, 1127, 36, 3, 174, 18, 309, 7, 1600, 1, 1, 208, 101, 1, 1, 3, 174, 18, 309, 7, 1600, 4894, 24, 694, 30, 7234, 2396, 5800, 2, 5315, 35, 18, 104, 3838, 4, 12712, 365, 2396, 12713, 1, 1, 413, 581, 2, 29, 3, 628, 2396, 1127, 1, 1, 4609, 4610, 1, 3, 174, 18, 309, 7, 1600], [172, 1735, 2, 3, 155, 4007, 7617, 1130, 1611, 1, 172, 29, 2, 3, 155, 4007, 7617, 1130, 1, 1, 1362, 23, 1935, 1, 1, 49, 651, 4, 1046, 190], [229, 2, 309, 2396, 1127, 89, 8, 134, 110, 49, 8, 84, 2, 100, 3, 2396, 1127, 229, 624, 4, 3, 181, 1664, 36, 3, 128, 126, 48, 248, 600, 3, 738, 7, 895, 182, 864], [606, 36, 209, 174, 771, 2, 174, 771, 11, 582, 137, 18, 3, 140, 2699, 21, 6, 54, 2, 211, 606, 2, 72, 771, 174, 52, 1, 363, 12714, 3, 628, 174, 771, 394, 7, 211, 3, 62, 771, 394], [142, 58, 133, 805, 142, 58, 133, 805], [79, 32, 64, 7, 25, 13, 79, 32, 64, 7, 25, 13], [52, 317, 1480, 123, 8, 84, 2, 236, 1480, 325], [79, 54, 2, 43, 736, 79, 54, 2, 43, 736], [27, 2, 100, 441, 1467, 27, 2, 100, 441, 1467], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [3, 672, 10, 33, 383, 6, 8, 323, 143, 964, 56, 2971, 182, 213, 130, 155, 204, 117, 107, 214, 146, 111, 3, 672, 10, 33, 383, 6, 8, 323, 143, 964], [15, 26, 32, 64, 15, 26, 32, 64], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [25, 33, 13, 33, 26, 52, 13, 65, 141, 64, 311, 2, 454, 458, 22, 985, 14, 132, 33, 28, 59, 12715, 7, 13, 363, 326, 163, 37, 464, 11, 104, 797], [553, 4607, 31, 363, 91, 3, 377, 11, 316, 222, 553, 4607, 31, 363, 91, 3, 377, 11, 316, 222], [268, 50, 88, 6, 1223, 363, 50, 2, 795], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [15, 26, 32, 4012, 15, 26, 32, 4012], [8, 84, 2, 46, 2, 309, 8, 84, 2, 46, 2, 309], [148, 6, 272, 7618, 1126, 943, 1062, 7, 395, 629, 1441, 183, 8, 45, 52, 6, 278, 148, 6, 272, 7618, 1126, 943, 1062, 7, 395, 629, 1441, 183, 8, 45, 52, 6, 278], [3, 1445, 354, 11, 4947, 4948, 65, 402, 4058, 4059, 181, 1, 49, 1, 291, 292, 1, 1289, 3, 1445, 354, 11, 4947, 4948, 65, 402, 1, 1, 55, 1, 1, 974, 11, 4947, 4948, 821, 65, 141, 495, 1, 1, 413, 3, 229, 2, 239], [39, 46, 2, 87, 701, 484, 562, 87, 11, 191, 140, 39, 43, 304], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [79, 32, 64, 79, 32, 64], [79, 32, 64, 79, 32, 64], [79, 95, 4, 13, 25, 7021, 7022, 181, 1, 49, 1, 291, 292, 1, 3490, 3491, 2565, 1, 1289, 79, 95, 4, 13, 25, 1, 720, 313, 1, 1, 111, 21, 101, 1, 1, 97, 95, 4, 2, 79, 1, 14, 25, 79, 13, 25, 1, 1, 135], [41, 41], [14, 25, 33, 15, 13, 14, 25, 33, 15, 13], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [58, 94, 596, 687, 12716, 48, 6, 531, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [58, 94, 90, 48, 6, 531, 75, 112, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 756, 757, 4010, 150, 5, 4, 5, 19, 756, 757, 815, 12], [150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 12], [846, 7619, 4013, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 846, 7619, 4013, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [150, 5, 4, 5, 19, 1417, 150, 5, 4, 5, 19, 1417, 12], [40, 596, 687, 1625, 474, 2861, 173, 160, 385, 107, 18, 907, 18, 312, 2097, 362, 1027, 12717, 40, 596, 687, 1625, 474, 2861, 173, 160, 2097, 362, 385, 107, 18, 907, 18, 312, 2097, 362, 1027, 907, 2100, 67, 336], [40, 90, 1232, 474, 422, 173, 1301, 160, 2097, 362, 200, 6, 75, 112, 990, 10, 40, 90, 1232, 474, 422, 173, 1301, 160, 2097, 362, 200, 6, 75, 112, 990, 10], [40, 474, 1227, 160, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362, 512, 40, 474, 1227, 160, 1351, 362, 385, 107, 18, 907, 18, 312, 1351, 362, 1027, 907, 2100, 67, 336], [150, 5, 4, 5, 19, 756, 757, 4010, 150, 5, 4, 5, 19, 756, 757, 815, 12], [40, 553, 1265, 297, 7, 422, 409, 2480, 1257, 362, 200, 6, 75, 40, 553, 1265, 297, 7, 422, 409, 2480, 1257, 362, 200, 6, 75, 2480, 1257, 362, 385, 107, 18, 907, 18, 312, 2480, 1257, 362, 1027, 336], [378, 95, 4, 12718, 378, 208, 1730, 1, 63, 10, 1316, 7, 2599, 389, 1126, 274, 33, 13, 53, 275, 1, 172, 21, 649, 44, 33, 1640, 79, 95, 4, 6, 273, 30, 3, 376, 13, 329, 41, 12719, 449, 6, 534, 10, 3, 73, 13, 1, 1, 183, 3, 24, 1640, 95, 10, 6, 8, 722, 1, 1834, 95, 4, 30, 33, 24, 144, 32, 184, 6, 8, 1180, 143, 316, 1, 1, 85, 219, 2, 43, 588, 1, 1, 49, 8, 7, 99, 8, 43, 12, 24, 48, 58, 11, 517, 593], [872, 777, 42, 2389, 411, 18, 3, 78, 31, 872, 777, 42, 2389, 411, 18, 3, 78, 31, 185, 35, 14, 114, 7, 778, 14, 622, 3, 167, 554, 331, 4, 72, 57], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [827, 577, 238, 686, 605, 40, 7, 40, 12, 49, 827, 577, 238, 686, 605, 40, 7, 40, 12, 49], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 150, 5, 4, 5, 19, 654, 374, 26, 15, 1444, 784, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [2386, 700, 26, 2773, 5, 56, 26, 2773], [150, 5, 4, 5, 19, 26, 170, 374, 4036, 150, 5, 4, 5, 19, 26, 170, 374, 4036, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [1203, 243, 1550, 766, 12720, 12721, 246, 265, 2, 1203, 3, 71, 243, 1550, 766], [150, 5, 4, 5, 19, 26, 170, 150, 5, 4, 5, 19, 26, 170, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [15, 26, 6, 8, 178, 110, 267, 294, 76, 2, 366, 98, 136, 7, 15, 99, 8, 122, 63, 84, 2, 122, 2, 161, 437, 254, 113, 838, 254, 67, 8, 15], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 1556, 150, 5, 4, 5, 19, 26, 1556, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 26, 488, 150, 5, 4, 5, 19, 26, 488, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 1462, 150, 5, 4, 5, 19, 26, 1462, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 26, 1462, 374, 4036, 150, 5, 4, 5, 19, 26, 1462, 374, 4036, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [15, 6, 64, 77, 54, 2, 132, 21, 15, 6, 64, 77, 54, 2, 132, 21], [175, 828, 350, 1592, 1373, 2, 118, 825, 4, 553, 7620, 311, 2, 163, 37, 71, 175, 828, 350, 1592, 1373, 2, 118, 825, 4, 553, 7620, 311, 2, 163, 37, 71], [4878, 286, 22, 10, 774, 259, 6, 22, 260, 20, 559, 3, 317, 6, 3, 286, 22, 10, 774, 259, 7588, 6, 240, 1027, 3759, 1175, 1175], [150, 5, 4, 5, 19, 551, 40, 203, 150, 5, 4, 5, 19, 551, 40, 203, 12], [58, 94, 1930, 2462, 3372, 4833, 113, 58, 6, 75, 112, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 9, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [150, 5, 4, 5, 19, 983, 1753, 2083, 49, 150, 5, 4, 5, 19, 983, 1753, 2083, 49, 12], [150, 5, 4, 5, 19, 983, 1753, 2083, 168, 150, 5, 4, 5, 19, 983, 1753, 2083, 168, 12], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [31, 30, 1452, 181, 208, 491, 1, 1, 49, 27, 2, 528, 33, 475, 77, 18, 361, 174, 516, 68, 49, 267, 30, 155, 1, 308, 50, 4, 2179, 3, 31, 1, 1, 135], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [7621, 119, 275, 4, 41, 1050, 71, 1, 12722, 12723, 1, 341, 1981, 1, 3169, 3170, 1, 12724, 7621, 119, 275, 4, 41, 1, 1, 208, 491, 1, 1, 828, 38, 141, 12725, 53, 594, 120, 149, 36, 1604, 120, 149, 1, 1, 308, 50, 80, 77, 2, 410, 3, 119, 4, 41, 129, 222, 7, 128, 126, 129, 222], [40, 703, 286, 565, 10, 6, 172, 77, 18, 344, 889, 607, 1910, 3, 3564, 4, 260, 20, 1, 184, 6, 96, 3, 435, 617, 1, 54, 2, 114], [150, 5, 4, 5, 19, 654, 374, 26, 15, 1236, 784, 150, 5, 4, 5, 19, 654, 374, 26, 15, 1236, 784, 12], [1070, 10, 660, 18, 1091, 36, 86, 2, 52, 1070, 10, 660, 18, 1091, 36, 86, 2, 52], [15, 13, 25, 15, 13, 25], [15, 88, 13, 25, 15, 88, 13, 25], [54, 13, 25, 54, 13, 25], [1304, 361, 451, 2108, 42, 75, 12, 124, 105, 10, 1304, 361, 451, 2108, 42, 75, 12, 124, 105, 10], [1070, 393, 4921, 1001, 1070, 393, 4921, 1001], [58, 94, 24, 262, 1204, 358, 24, 29, 277, 7, 277, 42, 75, 12, 124, 105, 10, 358, 24, 262, 1204, 358, 24, 29, 277, 7, 277, 42, 75, 12, 124, 105, 10], [358, 1575, 40, 6, 1656, 358, 1575, 40, 6, 1656], [13, 119, 274, 33, 13, 310, 67, 8, 83, 29, 1499, 428, 399, 54, 2, 70, 83, 1589], [25, 224, 11, 12726, 12727, 137, 13, 125, 20, 13, 25, 119, 2, 73, 13, 5349], [70, 10, 965, 70, 10, 965], [55, 14, 91, 3, 2585, 469, 96, 577, 252, 23, 469, 6, 1572, 3211, 7, 6, 3744, 7622, 12728, 181, 49, 291, 292, 461, 577, 252, 469, 1572, 3204, 55, 14, 91, 3, 2585, 469, 96, 577, 252, 23, 469, 6, 1572, 3211, 7, 6, 3744, 6, 21, 285, 2, 2288, 36, 1572, 3211, 433, 106, 3, 461, 1216, 23, 136, 36], [27, 2, 122, 2, 519, 27, 2, 122, 2, 519], [39, 35, 366, 7, 91, 424, 23, 268, 10, 470, 7, 8, 470, 7623, 7624, 1, 49, 1, 291, 292, 1, 3296, 3297, 1, 4949, 39, 35, 366, 12, 23, 248, 2, 384, 470, 201, 7, 21, 268, 3, 1793, 10, 470, 1, 1, 39, 35, 366, 7, 91, 424, 23, 268, 10, 470, 7, 8, 470, 1, 1, 7623, 7624, 1, 124, 1, 3296, 3297, 1, 39, 35, 366, 12, 23, 248, 2, 384, 470, 201, 7, 21, 268, 3, 1793, 10, 470], [132, 32, 57, 4, 793, 86, 3, 195, 55, 101, 185, 35, 14, 132, 32, 245, 4, 793, 86, 3, 83, 195, 96, 12729, 12730, 59, 12731, 12732, 12733, 59, 12734, 12735, 4932, 4933, 59, 3396, 12736, 12737, 12738, 4935, 4936, 59, 2667, 12739, 12740, 12741, 2462, 4906, 59, 12742, 263, 274, 3, 793, 1843, 3, 28, 2, 73, 340, 7, 131, 1214, 36, 104, 200, 153, 6, 275, 2, 280, 57, 10, 104, 235, 108, 6, 23, 108, 24, 868, 6, 23, 857, 18, 104, 376, 108, 68, 16, 14, 1088, 24, 131, 65, 141, 1157, 36, 3, 376, 108, 544, 480, 280, 36, 609, 181, 1091, 672, 11, 508, 108, 14, 552, 631, 455, 1281, 66, 120, 2, 3, 404, 20, 34, 14, 1088, 3, 108, 6, 24, 495, 11, 57, 280, 68, 21, 6, 8, 24, 495, 108, 14, 129, 3, 237, 11, 50, 30, 480, 280, 10, 508, 108, 14, 129, 3, 108, 69, 35, 183, 622, 2, 3, 5072, 1738, 11, 1477, 65, 3, 480, 280, 141, 402, 10, 104, 108, 917, 35, 99, 384, 72, 57, 1736, 3, 108, 65, 141, 2119, 51, 23, 6, 402, 23, 1012, 219, 2, 43, 402, 11, 104, 108, 2, 2181, 30, 24], [40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 40, 703, 758, 286, 565, 10, 6, 172, 184, 6, 96, 3, 435, 617, 77, 18, 344, 889, 607], [50, 30, 3387, 1772, 112, 120, 1126, 24, 6062, 6063, 1, 49, 1, 291, 292, 1, 1145, 50, 30, 3387, 1772, 112, 120, 1126, 24, 1, 1, 111, 1, 1, 356, 3044, 10, 1155, 18, 7625, 7626, 7, 1017, 7627, 1, 1, 7625, 7626, 1741, 2413, 120, 7, 324, 171, 2529, 4950, 12743, 6, 9, 345, 30, 3, 24, 1741, 65, 72, 324, 171, 4, 4950, 1732, 1, 288, 89, 1017, 7627, 118, 29, 2, 44, 2, 766, 7, 62, 844, 2, 3, 391, 120, 1, 288, 39, 47, 1088, 151, 42, 9, 165, 1152, 4, 4950, 2429, 1772, 1, 1, 263, 161, 174, 99, 43, 1167, 11, 3, 12744, 483, 3371, 1, 1, 135], [218, 29, 40, 3010, 3956, 1763, 299, 1249, 7628, 269, 29, 2, 4583, 4584, 28, 59, 7628, 2, 3, 96, 58, 218, 218, 29, 40, 3010, 3956, 1763, 299, 1249], [27, 2, 170, 382, 27, 2, 170, 382, 1223, 10, 717, 167], [15, 26, 547, 13, 15, 26, 547, 13], [70, 129, 107, 4, 226, 70, 129, 107, 4, 226], [88, 782, 31, 88, 782, 31], [339, 121, 1120, 941, 339, 121, 1120, 941], [25, 224, 11, 12745, 12746, 137, 13, 125, 20, 13, 25, 14, 25, 15, 13, 11, 12747], [29, 26, 52, 15, 348, 200, 1018, 7629, 928, 1018, 26, 416, 6, 8, 45, 4, 348, 200, 1018, 7629, 928, 1018, 37, 163, 1, 54, 2, 12748, 241, 205, 12749, 4, 26, 12750], [399, 224, 7, 57, 10, 235, 108, 399, 224, 7, 57, 10, 235, 108], [13, 125, 20, 13, 120, 13, 25, 229, 13, 125, 20, 13, 120, 13, 25, 229], [547, 171, 356, 164, 72, 37, 51, 356, 250, 2, 373, 33, 547, 171, 21, 855, 729, 80, 2, 95, 4, 2, 26, 23, 6, 829, 38, 373, 30, 9, 210, 4, 3, 887, 54, 23, 2, 373, 33, 636, 440], [27, 2, 46, 2, 309, 27, 2, 46, 2, 309], [324, 32, 99, 8, 644, 33, 570, 314, 274, 10, 36, 4037, 2, 4037, 244, 72, 324, 32, 11, 274, 3, 570, 1038, 2, 4037, 67, 3, 324, 32, 99, 273, 8, 436, 384, 23, 37, 71, 1259, 335, 2, 436, 3, 324, 32, 570, 314, 24, 4037, 230, 1073, 1496, 3172, 10], [29, 2, 82, 20, 56, 4038, 4039, 182, 213, 130, 155, 204, 117, 107, 214, 146, 20, 29, 171], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [1986, 18, 24, 314, 1986, 18, 24, 314], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [24, 167, 2228, 63, 274, 2, 24, 167, 2228, 24, 167, 2228, 63, 274, 2, 24, 167, 2228, 514, 3, 372, 21, 70, 10, 33, 115, 14, 119, 251, 2, 24, 7, 398, 3, 447, 207, 83, 24, 167, 12751, 526, 118, 274], [3993, 12, 4846, 174, 65, 706, 3611, 138, 1584, 21, 6, 183, 4147, 7, 3, 12752, 6, 2756], [1205, 1293, 2, 527, 55, 1730, 1, 1, 39, 35, 50, 12753, 12754, 2, 528, 3, 1205, 1293, 2, 283, 527, 14], [41, 790, 1761, 11, 13, 41, 790, 1761, 11, 13], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [54, 2, 253, 68, 6, 84, 2, 320, 1979, 192, 14, 185, 612, 114, 68, 6, 1642, 2, 320, 1979, 192, 1, 47, 54, 2, 38, 23, 2366, 2, 320, 77, 225, 20, 2158, 192, 181, 1, 1, 23, 1578, 507, 4, 3, 887, 7, 21, 343, 1429, 11, 161, 501, 1076, 1, 14, 270, 80, 253, 424, 23, 65, 141, 706], [132, 32, 57, 4, 793, 86, 3, 28, 4447, 4448, 59, 7630, 55, 101, 185, 35, 14, 132, 32, 57, 4, 793, 86, 3, 28, 4447, 4448, 59, 7630], [339, 121, 1120, 941, 339, 121, 1120, 941], [32, 64, 32, 64], [70, 18, 1317, 2, 872, 7, 374, 12755, 12756, 4040, 12757, 2914, 12758, 628, 120, 7631, 7632, 89, 23, 54, 119, 4, 1408, 7633, 12759, 12760, 12761, 628, 120, 7631, 7632, 89, 23, 54, 119, 4, 1408, 7633], [70, 18, 1317, 2, 872, 7, 374, 12762, 12763, 12764, 14, 778, 2, 119, 2, 7634, 7635, 4040, 1017, 7622, 4040, 12765, 2250, 12766, 628, 120, 3995, 4951, 89, 23, 54, 119, 4, 1408, 7636], [70, 18, 1317, 2, 872, 7, 374, 12767, 4939, 120, 207, 1688, 23, 28, 59, 89, 8, 54, 521, 12768, 12769, 6815, 12770, 14, 778, 2, 119, 2, 7634, 7635, 4040, 12771, 12772, 2883, 12773, 628, 120, 3995, 4951, 89, 23, 54, 119, 4, 1408, 7636, 4951, 3995, 628, 120, 1855, 2391, 89, 23, 54, 119, 4, 1408, 12774], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 1142, 1143, 1145, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 12775, 372, 56, 7304, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [7637, 7638, 8, 84, 2, 100, 457, 7637, 7638, 86, 290, 123, 30, 457, 29, 57, 163, 12776, 3, 31, 14, 2182, 5953, 2, 353], [64, 77, 10, 3, 3373, 220, 64, 77, 10, 3, 3373, 220], [1629, 765, 8, 12777, 4, 333, 1629, 765, 8, 45, 4, 333], [7639, 1283, 1334, 64, 7639, 1283, 1334, 64], [1031, 29, 2, 58, 254, 1031, 29, 2, 58, 254], [14, 878, 489, 3909, 11, 309, 11, 28, 4952, 4953, 14, 878, 489, 3909, 11, 309, 11, 28, 4952, 4953], [1374, 865, 2427, 484, 1722, 66, 3287, 355, 336, 77, 44, 3, 12778, 484, 6, 8, 860, 96, 6, 3, 37, 47, 351, 51, 6427, 2, 197, 18, 3, 12779, 10, 1374, 865, 1, 1, 1962, 352, 6922, 3137, 1, 37, 71, 37, 329, 7640, 699, 676, 3644, 730, 801, 352, 7641, 2427, 484, 1722, 66, 3287, 1, 1154, 37, 71, 37, 329, 7640, 699, 676, 3644, 730, 801, 352, 7641, 2427, 484, 1722, 66, 3287, 1, 422, 200, 1, 1019, 12780, 1, 2834, 3121, 763, 3121, 144, 24, 122, 1845, 12781, 5718, 117, 12782, 1, 2834, 12783, 763, 12784, 4911, 2721, 12785, 3397, 182, 12786, 6842, 12787, 1, 2834, 7642, 763, 7642, 12788, 12789, 12790, 1, 2834, 7643, 763, 7643, 7644, 7644, 2321, 2320, 12791, 12792, 57, 1652, 12793, 56, 56, 56, 1517, 12794, 4931, 4931, 214, 12795, 7645, 7645, 12796, 12797, 1, 2834, 12798, 763, 1, 12799, 1653, 2581, 3137, 1, 1, 14, 118, 23, 833, 754, 53, 47, 38, 1239, 18, 205, 869, 601, 10, 4, 865, 7, 47, 54, 3, 865, 52, 251, 10, 470, 754, 161, 1760, 42, 183, 393, 2, 12800, 3, 73, 632, 44, 284, 402, 11, 24, 2, 3, 191, 7, 112, 47, 38, 484, 31, 284, 330, 2, 12801, 21, 2069, 14, 4832, 23, 53, 307, 7, 398, 53, 754, 53, 285], [14, 119, 57, 196, 18, 28, 4038, 4039, 36, 2, 14, 119, 57, 196, 18, 28, 4038, 4039, 36, 2], [150, 5, 4, 5, 19, 654, 374, 26, 948, 1236, 784, 150, 5, 4, 5, 19, 654, 374, 26, 948, 1236, 784, 12], [309, 31, 203, 14, 878, 489, 3909, 11, 309, 11, 28, 4952, 4953, 1, 203, 14, 119, 57, 196, 18, 28, 4038, 4039, 36, 2], [3398, 20, 8, 45, 192, 1045, 52, 55, 101, 1, 185, 35, 14, 295, 30, 3398, 31, 192, 1045, 1, 3, 220, 3398, 131, 120, 7, 3398, 1922, 120, 89, 8, 134, 51, 250, 2, 909, 3234, 1, 1, 35, 39, 326, 3, 37, 176, 167, 163], [1590, 31, 1590, 31], [27, 2, 46, 2, 87, 484, 37, 27, 2, 46, 2, 87, 484, 37], [1920, 2212, 1610, 99, 8, 513, 2, 57, 1920, 2212, 1610, 99, 8, 513, 2, 57], [34, 70, 10, 258, 34, 70, 10, 258], [34, 34, 9, 70, 2, 4889, 4890, 34, 34, 9, 70, 2, 4889, 4890], [41, 31, 88, 1172, 37, 71, 41, 31, 88, 1172, 37, 71], [33, 41, 99, 8, 100, 21, 6, 1223, 30, 167, 323, 578, 33, 41, 99, 8, 100, 21, 6, 1223, 30, 167, 323, 578], [235, 7646, 7647, 31, 235, 7646, 7647, 31], [262, 90, 520, 719, 7648, 36, 1064, 1064, 56, 24, 7649, 3564, 262, 90, 520, 719, 7648, 36, 1064, 1064, 56, 24, 7649, 1, 12802, 49, 1547, 1, 108, 90, 520, 719, 227, 1, 2168, 804], [25, 3, 13, 11, 7318, 7319, 10, 15, 160, 15, 14, 25, 33, 13, 187, 326, 77, 424, 21, 39, 95, 10, 169, 655, 116, 1538, 411, 51, 25, 33, 2580, 695, 63, 10, 1280, 1068], [13, 119, 49, 64, 77, 18, 13, 125, 20, 13, 119, 411, 18, 454, 458, 985, 33, 13, 6960, 134, 185, 35, 14, 243, 236, 80], [12803, 57, 31, 1897, 1898, 124, 1463, 7650, 12804, 12805, 1142, 1143, 12806, 12807, 12808, 12809, 12810, 12811, 5536, 5537, 5661, 5662, 6191], [78, 40, 6, 8, 545, 47, 42, 1426, 2, 46, 158, 161, 577, 238, 140, 2, 2114, 1094, 7, 78, 40, 6, 8, 545, 23, 6, 3, 1708, 116, 745, 451, 1162, 44, 47, 42, 290, 72, 31, 30, 23, 78, 14, 386, 51, 31, 65, 141, 1524], [7651, 1149, 7651, 1149], [299, 37, 4, 914, 324, 1275, 447, 299, 37, 4, 914, 324, 1275, 447], [218, 29, 55, 1, 1, 14, 583, 315, 29, 2, 12812, 12813, 7, 12814, 12815, 2, 3, 177, 218, 1, 1, 40, 749, 501, 188, 961, 4598, 839, 173, 40, 749, 501, 188, 961, 4598, 839, 1, 1, 1, 450], [431, 549, 140, 55, 1, 49, 27, 2, 29, 431, 549, 140, 21, 99, 8, 2596, 33, 13], [40, 1718, 2092, 6, 172, 318, 37, 27, 2, 326, 143, 1790, 1, 4918, 1790, 22, 2, 170, 1039, 1790, 362, 37, 1969, 52, 1123, 1196, 2, 421, 3, 653, 200], [24, 1986, 24, 1986], [27, 2, 132, 28, 460, 4, 13, 125, 20, 59, 13, 120, 13, 125, 20, 123, 366, 12, 3, 132, 460, 95, 23, 1147, 2, 669, 7, 541, 28], [717, 167, 4, 3, 190, 7652, 6, 8, 45, 143, 316, 14, 114, 717, 167, 4, 3, 190, 7652, 6, 8, 45, 143, 316, 14, 114], [87, 63, 1909, 11, 12816, 12817, 10, 87, 103, 4, 283, 56, 4, 3, 412, 1844, 7, 283, 1630, 429, 98, 30, 4954, 4955, 56, 12818, 21, 1, 12819, 12820, 89, 8, 468, 98, 12, 83, 4954, 4955, 6, 9, 345, 30, 24, 3099, 3433, 679, 7, 331, 2, 4954, 4955, 42, 357, 1998, 2, 12821, 7, 3, 609, 42, 626, 1, 1, 4, 143, 93, 39, 35, 38, 612, 366, 158, 23, 7, 391], [27, 2, 515, 41, 27, 2, 515, 41], [209, 88, 690, 11, 41, 209, 88, 690, 11, 41, 1, 37, 72, 37, 1078, 1761, 23, 438, 2, 209, 690, 88], [110, 49, 73, 223, 7, 526, 38, 29, 2, 162, 20, 1590, 309, 7, 824, 165, 467, 306, 325, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [431, 549, 140, 13, 25, 431, 549, 140, 13, 25], [1413, 659, 1413, 659], [13, 25, 11, 431, 549, 140, 13, 25, 11, 431, 549, 140, 28, 59, 12822], [431, 549, 140, 46, 365, 334, 49, 27, 2, 95, 158, 431, 549, 140, 39, 35, 14, 25, 33, 13, 6561, 12823, 3557, 18, 149, 2132], [7653, 342, 47, 3856, 950, 951, 7653, 342, 47, 3856, 950, 951], [278, 142, 485, 1080, 1053, 278, 142, 485, 1080, 1053], [692, 20, 6, 8, 590, 4, 155, 204, 346, 1197, 1114, 1115, 692, 20, 6, 8, 590, 4, 155, 204, 346, 1197, 1114, 1115], [280, 73, 471, 4032, 4033, 280, 73, 471, 4032, 4033], [2237, 1087, 406, 2893, 2237, 1087, 406, 2893], [15, 46, 365, 334, 1, 1, 39, 35, 14, 25, 33, 15, 46, 53, 21, 2646, 80, 33, 13, 6, 626], [193, 30, 1986, 47, 950, 951, 193, 30, 1986, 47, 950, 951], [406, 235, 86, 235, 86, 2521, 1434, 30, 1393, 1, 831, 406, 2846, 9, 345, 265, 1018, 1, 452, 35, 39, 12824, 91, 1096, 1, 6227, 406], [2706, 140, 110, 49, 8, 84, 2, 46, 33, 32, 755, 38, 3, 385, 13, 3938, 6, 33, 691, 2602, 717, 2, 1854, 742, 350, 104, 28, 32, 14, 199, 177, 12825, 871, 1636, 1637, 149, 120, 1338, 1346], [407, 70, 55, 101, 1, 1, 39, 35, 14, 70, 3, 254, 7, 12826, 734, 11, 33, 148, 382, 270, 80, 253, 68, 35, 275, 582, 222], [15, 191, 1541, 548, 11, 333, 37, 71, 206, 4, 6, 8, 901, 546, 146, 54, 1735, 2, 373, 547, 440, 323, 12827, 21, 264, 43, 3, 179, 29, 53, 12828, 12829, 7, 12830, 12831, 1, 1, 183, 1, 1, 1, 183, 330, 15, 191, 1541, 1063, 1186, 33, 348, 716, 21, 89, 8, 134, 118, 3, 177, 71, 3, 2802, 6, 2803, 30, 37, 91, 95, 173, 11, 316, 222, 3, 548, 206, 4, 6, 8, 901, 546], [79, 32, 707, 79, 32, 707], [110, 97, 25, 33, 15, 13, 110, 9, 345, 253, 33, 15, 13, 7, 38, 670, 2816, 985, 14, 25], [3693, 418, 42, 8, 327, 10, 3, 78, 40, 184, 6, 7654, 10, 293, 40, 3693, 418, 42, 8, 327, 10, 3, 78, 40, 184, 6, 7654, 10, 293, 40, 411, 18, 23, 81, 5, 6, 2389], [73, 223, 8, 84, 2, 46, 2, 52, 4829, 28, 59, 4829, 56, 12832, 12833, 28, 637, 4, 11, 3, 648, 116, 7, 164, 37, 1439, 12834, 1440, 3358, 78, 6938, 2846, 4760, 12835, 255, 4006, 12836, 37, 3, 299, 603, 10, 3, 78, 89, 8, 1048, 142, 32, 11, 23, 1427, 1999, 2452, 142, 56, 1654, 129], [846, 4031, 160, 2474, 362, 385, 107, 18, 907, 18, 312, 2474, 362, 846, 4031, 160, 2474, 362, 385, 107, 18, 907, 18, 312, 2474, 362, 1027, 907, 2100, 67, 336], [73, 57, 123, 73, 57, 123], [12837, 12838, 97, 91, 83, 283, 117, 460, 4, 939, 88, 356, 12839, 89, 8, 326, 1713, 740, 44, 42, 2762, 4, 283, 149, 1214, 4, 209, 88, 10, 3, 33, 202, 460, 239, 183, 180, 5786, 180, 65, 241, 4, 3, 302, 44, 106, 8, 5825, 2, 911, 163, 283, 57, 2, 23, 34], [148, 926, 1698, 8, 45, 208, 491, 1, 1087, 18, 148, 6, 8, 45, 14, 106, 3, 54, 315, 1, 1, 148, 222, 1, 1, 382, 877, 671, 771, 1, 200, 1018, 1, 142, 56, 12840, 1, 361, 4626, 1, 1, 1, 30, 135], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [279, 140, 233, 70, 279, 140, 1635, 233, 70, 28, 12841, 12842, 1565, 3, 167, 2228, 66, 4663, 79, 12843, 7034, 190, 432, 428, 678, 408, 3, 86, 63, 3455, 7, 12844, 233, 63, 274, 2, 4046, 296, 8, 4670, 456, 66, 5613, 10, 257, 3, 233, 63, 4852, 12, 4046, 296, 8, 4670, 121, 59, 53, 47, 843, 44, 6672, 12845, 246, 35, 14, 270, 166, 253, 68, 47, 185, 38, 3, 233, 811, 251, 257, 2, 178, 456], [417, 20, 8, 12846, 417, 20, 8, 590], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [2407, 4464, 190, 623, 37, 2441, 37, 71, 12847, 12848, 5704, 12849, 1106, 936, 1, 1, 1840, 12, 1012, 12850, 1106, 3188, 7655, 4663, 1520, 1164, 4, 447, 2293, 1, 1, 37, 3471, 648, 116, 23, 334, 49, 6880, 1, 1, 151, 6, 197, 700, 12, 23, 1012, 1106, 3188, 7655, 12, 3, 1127, 3898, 169, 44, 3522, 4, 3, 623, 39, 43, 1320, 53, 4497, 716, 623, 6, 2149, 7, 3898, 899, 389, 804, 3522, 39, 43, 582, 1320, 1147, 201, 11, 2441, 2231, 6, 327, 573, 143, 210], [15, 88, 26, 422, 1465, 2, 460, 6, 1071, 573, 3397, 307, 1465, 2, 32, 6, 1160, 2, 936, 1054, 3397, 21, 39, 942, 44, 1465, 2, 32, 6, 1071, 573, 3880, 1190, 23, 6, 2067, 31, 1, 23, 31, 6, 848, 22, 1732, 627, 4, 88, 939, 14, 663, 288, 3, 52, 1642, 3, 28, 2, 504, 21], [12851, 6, 8, 45, 11, 113, 1712, 485, 2708, 350, 924, 18, 34, 9, 34, 9, 4431, 4432, 15, 26, 727, 2, 3941, 4408, 9, 1077, 12852, 68, 3, 113, 252, 6, 236, 12, 113, 370, 176, 6, 2076, 51, 113, 252, 6, 236, 2, 113, 37, 71, 7, 9, 629], [3, 74, 255, 1439, 1532, 12853, 89, 8, 176, 546, 3, 74, 6, 12, 12854, 12855, 1209], [2225, 859, 2225, 859, 6, 8, 45], [13, 25, 102, 294, 13, 125, 20, 13, 13, 25, 102, 294, 13, 125, 20, 13], [150, 5, 4, 5, 19, 5, 150, 5, 4, 5, 19, 5, 12], [3547, 1385, 10, 558, 918, 329, 3019, 110, 351, 3, 73, 148, 828, 7, 3547, 3459, 62, 6265, 10, 558, 918, 456, 3177, 329, 3019, 4, 79, 148], [27, 2, 46, 3, 518, 1617, 46, 167, 110, 49, 27, 2, 46, 3, 919], [878, 489, 279, 140, 11, 2557, 748, 437, 116, 878, 489, 279, 140, 11, 2557, 748, 437, 116, 311, 2, 381, 1, 495, 66, 7563, 7564], [1274, 78, 4, 160, 8, 545, 318, 78, 37, 3666, 2546, 78, 1687, 158, 318, 78, 37, 1, 71, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 1, 23, 37, 1147, 30, 3, 2232, 416, 1, 1, 30, 3, 2222, 416, 416, 1274, 6, 770, 98, 67, 3, 416, 6, 8, 45, 1, 1, 23, 65, 899, 191, 518, 11, 4898], [25, 3, 13, 11, 12856, 12857, 10, 15, 160, 15, 14, 25, 33, 15, 13, 26], [150, 5, 4, 5, 19, 5, 360, 150, 5, 4, 5, 19, 5, 12], [14, 25, 13, 11, 28, 7656, 338, 1734, 28, 14, 25, 13, 11, 28, 7656, 338, 1734, 28, 14, 57, 119, 136, 2, 12858, 62, 12859], [27, 2, 122, 2, 340, 27, 2, 122, 2, 340], [13, 25, 15, 26, 13, 25, 15, 26], [255, 2054, 170, 18, 1854, 312, 360, 360, 360, 55, 360, 27, 2, 392, 4, 169, 566, 70, 91, 3, 71, 360, 360, 360, 135], [1533, 26, 15, 360, 360, 360, 55, 12860, 360, 360, 14, 114, 104, 1313, 609, 11, 26, 264, 43, 360, 360, 360], [15, 7, 191, 217, 13, 230, 12861, 12862, 49, 291, 292, 1289, 550, 15, 7, 191, 217, 13, 230, 720, 313, 55, 257, 49, 843, 3, 31, 329, 405, 3, 15, 13, 65, 141, 230, 270, 166, 106, 807, 135], [54, 487, 315, 394, 7, 2060, 220, 54, 487, 315, 394, 7, 2060, 220], [2084, 18, 3, 2418, 973, 99, 410, 1531, 6497, 6498, 181, 360, 49, 360, 291, 292, 360, 1289, 550, 2084, 18, 3, 2418, 973, 99, 410, 1531, 360, 360, 111, 360, 360, 2084, 18, 3, 2418, 973, 99, 410, 1531, 360, 14, 398, 23, 360, 360, 3, 344, 973, 18, 3123, 1457, 360, 360, 135], [162, 20, 566], [79, 32, 64, 79, 32, 64], [15, 88, 1574, 51, 6, 625, 848, 1776, 57, 51, 47, 70, 3, 1574, 30, 625, 233, 7, 223, 1748, 52, 6, 867, 1776, 245, 2, 149, 223, 7, 223, 1748], [150, 5, 4, 5, 19, 5, 360, 150, 5, 4, 5, 19, 5, 12], [827, 846, 4768, 422, 205, 242, 78, 78, 12, 124, 105, 10, 827, 846, 4768, 422, 205, 242, 78, 78, 12, 124, 105, 10], [150, 5, 4, 5, 19, 5, 360, 150, 5, 4, 5, 19, 5, 12], [308, 622, 181, 712, 32, 11, 7657, 7658, 7659, 3830, 55, 6774, 308, 622, 181, 712, 32, 11, 7657, 7658, 7659, 3830, 6835, 6833, 6834], [288, 2, 95, 31, 360, 360, 360, 185, 95, 10, 2, 3, 52, 53, 205, 242, 1156, 360, 360, 360, 360], [76, 76], [150, 5, 4, 5, 19, 551, 40, 203, 360, 150, 5, 4, 5, 19, 551, 40, 203, 12], [111, 21, 50, 101, 14, 1975, 33, 73, 24, 108, 12863, 12864, 360, 49, 360, 291, 292, 360, 1711, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 1298, 1759, 2371, 718, 2603, 1770, 2059, 360, 720, 313, 360, 360, 111, 21, 50, 101, 360, 360, 14, 1975, 33, 73, 24, 108, 360, 360], [39, 35, 1975, 33, 32, 207, 39, 199, 41, 297, 291, 292, 49, 4920, 12865, 243, 4949, 243, 104, 235, 108, 65, 141, 502, 29, 2, 3, 78, 192, 480, 1032, 411, 18, 78, 3837, 208, 4920], [113, 763, 543, 368, 197, 483, 1202, 1194, 632, 102, 2, 12866, 4, 256, 12867, 740, 173, 163, 30, 117, 460, 360, 206, 1202, 483, 4, 431, 549, 11, 3, 740, 4, 163, 302, 11, 113, 201], [14, 485, 104, 1947, 404, 20, 1163, 7, 270, 80, 253, 448, 2836, 3, 309, 128, 126, 48, 1017, 2276, 124, 291, 292, 4949, 550, 309, 128, 126, 48, 14, 485, 104, 1947, 404, 20, 1163, 7, 270, 80, 253, 448, 2836, 3, 309, 128, 126, 48, 532, 1162, 1311, 330, 653, 119, 44, 2343, 2245, 3225, 18, 5691, 8, 614, 448, 62, 424, 23, 63, 12868, 1017, 2276, 854, 120, 188, 309, 7, 1600, 1671, 12869, 12870, 49, 1017, 2276, 243, 309, 128, 126, 48, 2869, 4609, 4610, 1604, 949, 4315, 1600, 7, 2203, 4605, 188, 988, 18, 309, 7, 1600, 12871], [34, 70, 814, 1028, 360, 49, 360, 1897, 1898, 360, 1017, 12872, 360, 34, 9, 9, 1735, 2, 4671, 7, 705, 360, 360, 365, 334, 4495, 360, 360, 28, 486, 2, 200, 564, 7, 653, 2, 3105, 3, 732, 1288, 35, 2, 918, 3, 31, 10, 305, 7, 525, 28, 10, 179, 360, 360, 360, 360, 450], [41, 984, 411, 18, 88, 1387, 41, 984, 411, 18, 88, 1387], [1070, 393, 223, 3214, 3294, 1070, 393, 223, 3214, 3294], [705, 116, 734, 70, 136, 705, 116, 734, 70, 136], [431, 549, 140, 32, 132, 7, 13, 25, 431, 549, 140, 32, 132, 7, 13, 25], [39, 46, 2, 547, 1755, 294, 76, 307, 360, 360, 360, 360, 135], [12873, 29, 10, 2095, 576, 21, 1756, 80, 29, 241, 256, 136, 10, 2095, 67, 273, 106, 8, 38, 229, 323, 11, 33, 1590, 248, 2, 412, 7, 680, 12874, 98, 12875, 12876, 926, 32, 120], [27, 2, 122, 2, 40, 7660, 12877, 486, 4, 11, 72, 31, 433, 180, 7, 283, 739, 63, 8, 84, 2, 122, 2, 58, 254, 184, 6, 40, 284, 243, 987, 3, 2245, 1481, 7, 53, 332, 7660, 151, 201, 451, 18, 444, 448, 42, 45, 67, 4, 517, 1901, 151, 246, 43, 316, 826, 770], [117, 159, 7661, 469, 360, 360, 360, 55, 360, 360, 191, 12878, 65, 828, 141, 912, 2, 239, 944, 1303, 117, 1146, 4801, 53, 2501, 149, 601, 844, 511, 4, 3, 547, 52, 284, 42, 3781, 53, 1496, 360, 360, 39, 35, 14, 2388, 3, 3236, 6470, 7661, 469, 3236, 149, 12879, 2, 468, 944, 1303, 117, 1146, 4801, 740, 53, 2501, 360, 360, 23, 469, 6, 304, 4, 567, 547, 7, 374, 440, 149, 1214, 462, 125, 2727, 2206, 449, 270, 80, 253, 68, 35, 38, 143, 498, 360, 360, 135], [338, 212, 111, 101, 63, 601, 158, 3, 338, 173, 7, 1703, 241, 2073, 11, 3, 2947, 7, 23, 6, 3, 167, 44, 429, 98, 23, 6, 10, 33, 171, 681, 51, 49, 1105, 158, 76, 14, 525, 4, 164, 23, 2, 895, 12880, 12881, 149, 685], [1575, 40, 6, 1656, 1575, 40, 6, 1656], [550, 732, 59, 2047, 732, 2047, 1515, 12882, 12883, 360, 124, 360, 291, 292, 360, 1145, 550, 732, 59, 2047, 732, 2047, 1515, 360, 360, 14, 91, 3, 1998, 57, 96, 23, 1100, 1723, 2, 80, 7, 43, 241, 2201, 18, 1390, 62, 12884, 57, 14, 485, 21, 7, 270, 80, 253, 68, 21, 1100, 1643, 7, 6, 36, 1643, 12885, 12, 24, 187, 8, 100, 62, 239, 143, 18, 3, 772, 360, 360, 38, 9, 2931, 424, 460, 12886, 246, 43, 867, 80, 72, 57, 360, 360, 135], [14, 647, 28, 7662, 7663, 7664, 36, 2464, 7665, 1627, 14, 647, 28, 7662, 7663, 7664, 36, 2464, 7665, 1627, 28, 115, 65, 141, 1312], [34, 70, 10, 203, 2, 28, 4856, 4857, 34, 70, 10, 203, 2, 28, 4856, 4857], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [279, 140, 6, 346, 36, 115, 115, 268, 443, 79, 299, 1094, 1256, 7, 172, 3, 279, 140, 140, 6, 346, 36, 3, 167, 360, 1448, 4183, 114, 140, 2, 91, 44, 3399, 1350, 6, 430, 10, 3, 115, 360, 279, 140, 1373, 2, 211, 4, 3, 6678, 18, 3399, 360, 304, 3399, 12887, 2, 647, 83, 1200, 991, 115, 3399, 273, 1373, 2, 211, 360, 1448, 736, 20, 2, 91, 44, 3, 115, 273, 65, 2692, 441, 430, 360, 360, 54, 50, 2, 280, 3, 2665, 394, 18, 3399, 10, 3, 115, 7, 50, 243, 211, 279, 140, 360, 360, 425, 1253, 1507, 1163, 95, 12888, 360, 129, 107, 360, 115, 56, 3060, 360, 948, 394, 79, 771, 360, 12889, 1169, 917, 360, 1477, 3770, 17, 360, 569, 1038, 1707, 115, 368, 360, 709, 11, 7308, 54, 2, 4871, 2692, 441, 2, 2, 211, 88, 217, 360, 570, 314, 17, 360], [15, 32, 132, 56, 3259, 3260, 182, 213, 130, 155, 204, 117, 107, 214, 146, 132, 15, 32, 11, 12890, 12891, 28, 56, 6677], [32, 64, 32, 64], [114, 233, 4, 457, 14, 129, 1463, 7650, 12892, 393, 283, 457, 114, 233, 669, 116, 180, 1639, 2, 239, 283, 3347, 3, 239, 521, 7, 180, 39, 91, 283, 3347, 1591, 911, 2, 413, 4, 119, 403, 7, 3, 468, 33, 101, 3347, 767, 67, 21, 649, 2, 25, 669, 116], [76, 11, 148, 110, 54, 76, 11, 33, 73, 148, 56, 12893, 4471, 4472, 685, 462, 82, 24], [162, 20, 705, 765, 8, 7666, 162, 20, 705, 765, 8, 7666], [15, 1068, 7035, 451, 460, 2, 43, 543, 110, 49, 1282, 38, 517, 451, 460, 44, 54, 2, 43, 543, 7, 14, 586, 36, 3, 123, 6, 44, 3, 37, 201, 1101, 98, 68, 612, 1639, 2, 1386, 100, 627, 11, 261, 460, 360, 360, 23, 439, 65, 141, 350, 1073, 2, 34, 9], [910, 219, 4014, 311, 2, 443, 210, 30, 88, 340, 449, 910, 219, 4014, 311, 2, 443, 210, 30, 88, 340, 449], [245, 8, 770, 4, 36, 1561, 181, 360, 360, 360, 365, 1364, 360, 49, 8, 496, 3, 245, 44, 331, 36, 1561, 181, 360, 14, 386, 360, 360], [279, 140, 31, 279, 140, 31], [378, 79, 13, 25, 11, 7667, 7668, 378, 79, 13, 25, 11, 7667, 7668], [348, 646, 990, 12894, 110, 49, 27, 2, 29, 3, 348, 12895, 2, 2174, 3, 12896, 6747, 609, 360, 6, 9, 58], [661, 7002, 97, 43, 825, 10, 567, 673, 661, 2780, 3220, 97, 43, 825, 10, 316, 467, 197, 5723, 3057, 594]]
len(encoded_docs)
8448
len(encoded_docs[100])
66
from keras.preprocessing.sequence import pad_sequences
max_length = 4
padded_docs = pad_sequences(encoded_docs, maxlen=max_length, padding='post')
print(padded_docs)
[[ 46 1 31 321] [ 23 1 1 450] [ 76 1 1 135] ... [ 25 11 7667 7668] [ 360 6 9 58] [ 197 5723 3057 594]]
len(padded_docs)
8448
from numpy import array
from numpy import asarray
embeddings_index = dict()
f = open(r'C:\Users\p0s041d\Documents\Program\Learning\AIML\AIML\AIML\Projects\Capstone\glove.6B.100d.txt', encoding="utf8")
for line in f:
values = line.split()
word = values[0]
coefs = asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
f.close()
print('Loaded %s word vectors.' % len(embeddings_index))
Loaded 400000 word vectors.
vocab_size
12897
from numpy import zeros
embedding_matrix = zeros((vocab_size, 100))
for word, i in t.word_index.items():
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
embedding_matrix
array([[ 0. , 0. , 0. , ..., 0. ,
0. , 0. ],
[ 0. , 0. , 0. , ..., 0. ,
0. , 0. ],
[-0.18970001, 0.050024 , 0.19084001, ..., -0.39804 ,
0.47646999, -0.15983 ],
...,
[ 0. , 0. , 0. , ..., 0. ,
0. , 0. ],
[ 0.098617 , 0.30335 , 0.42662001, ..., -0.027689 ,
0.64256001, -0.16596 ],
[-0.18623 , 0.8556 , 0.23913001, ..., -0.29189 ,
0.20461001, 0.11364 ]])
len(embedding_matrix)
12897
len(embedding_vector)
100
embedding_vector
array([-0.18623 , 0.8556 , 0.23913 , -0.28364 , 0.42644 ,
0.53413 , -0.20933 , 0.62036 , 0.42669 , 0.12441 ,
0.70042 , 0.29595 , 0.11292 , 1.0007 , 0.44742 ,
0.2462 , -0.13847 , 0.44831 , -0.31438 , -1.5512 ,
-0.65495 , 0.88447 , -0.18315 , -0.41552 , 0.37614 ,
-0.20903 , -0.15741 , -0.30897 , -0.27333 , -0.98919 ,
1.1202 , -0.81974 , -0.16259 , 0.025915 , 0.12655 ,
0.4407 , 0.050202 , -1.112 , 0.4189 , -0.64667 ,
0.83372 , -0.13188 , -0.22297 , -0.57159 , -0.50911 ,
0.36209 , -0.55448 , 0.36452 , 0.54012 , 0.18349 ,
-0.17795 , -0.2767 , 0.0094245, 0.17373 , -0.23509 ,
0.25633 , 0.56227 , -0.65154 , 0.22734 , 0.69082 ,
-0.38881 , 0.38857 , -0.33709 , 1.495 , 0.13485 ,
-0.10135 , 1.1894 , 0.29158 , 0.1388 , -0.51022 ,
0.52696 , 0.46785 , 0.44245 , -0.69217 , -0.11638 ,
1.0169 , -0.87174 , -0.13083 , -0.027384 , 0.12659 ,
0.20354 , -0.083098 , -0.20891 , 0.10224 , -0.1158 ,
-0.25569 , 0.38872 , -0.31484 , -0.63547 , -0.067142 ,
0.52572 , 1.6097 , 0.9686 , 0.57259 , -0.028736 ,
-0.20505 , 0.35581 , -0.29189 , 0.20461 , 0.11364 ],
dtype=float32)
from keras.models import Sequential
from keras.layers import Dense, Activation, Dropout
from tensorflow.keras.optimizers import SGD
import random
len(embedding_matrix)
12897
len(embedding_matrix[1])
100
vocab_size
12897
from keras.layers import Dense
from keras.layers import Flatten
from keras.layers import Embedding
# define model
model = Sequential()
e = Embedding(vocab_size, 100, weights=[embedding_matrix], input_length=4, trainable=False)
model.add(e)
model.add(Flatten())
model.add(Dense(1, activation='sigmoid'))
# compile the model
model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy'])
# summarize the model
print(model.summary())
Model: "sequential" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding (Embedding) (None, 4, 100) 1289700 _________________________________________________________________ flatten (Flatten) (None, 400) 0 _________________________________________________________________ dense (Dense) (None, 1) 401 ================================================================= Total params: 1,290,101 Trainable params: 401 Non-trainable params: 1,289,700 _________________________________________________________________ None
Datafinal['target'] = Datafinal['Assignment group'].astype('category').cat.codes
Datafinal.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 8448 entries, 0 to 8447 Data columns (total 9 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Short description 8448 non-null object 1 Description 8448 non-null object 2 Assignment group 8448 non-null object 3 merged 8448 non-null object 4 word_count 8448 non-null int64 5 processed_text 8448 non-null object 6 list_processed_text 8448 non-null object 7 word_vec 8448 non-null object 8 target 8448 non-null int8 dtypes: int64(1), int8(1), object(7) memory usage: 536.4+ KB
from sklearn import preprocessing
encoder = preprocessing.LabelEncoder()
# encoding train labels
encoder.fit(Datafinal['target'])
Datafinal['target'] = encoder.transform(Datafinal['target'])
len(Datafinal['word_vec'][2])
37
Datafinal.tail()
| Short description | Description | Assignment group | merged | word_count | processed_text | list_processed_text | word_vec | target | |
|---|---|---|---|---|---|---|---|---|---|
| 8443 | emails not coming in from zz mail | xd xd xd good afternoon xd am not receiving th... | GRP_29 | emails not coming in from zz mail xd xd xd goo... | 28 | [email, coming, zz, mail, xd, xd, xd, good, af... | [[email], [coming], [zz], [mail], [xd], [xd], ... | [[-0.03458795031317685, -0.07116646942174046, ... | 22 |
| 8444 | telephony software issue | telephony software issue | GRP_0 | telephony software issue telephony software issue | 6 | [telephony, software, issue, telephony, softwa... | [[telephony], [software], [issue], [telephony]... | [[-0.025529385958330562, -0.06839717876210043,... | 0 |
| 8445 | vip windows password reset for tifpdchb pedxruyf | vip windows password reset for tifpdchb pedxruyf | GRP_0 | vip windows password reset for tifpdchb pedxru... | 14 | [vip, window, password, reset, tifpdchb, pedxr... | [[vip], [window], [password], [reset], [tifpdc... | [[-0.059252774711951874, 0.0406000708840385, -... | 0 |
| 8446 | machine o est funcionando | i am unable to access the machine utilities to... | GRP_62 | machine o est funcionando i am unable to acces... | 22 | [machine, est, funcionando, unable, access, ma... | [[machine], [est], [funcionando], [unable], [a... | [[-0.05634223027315519, 0.02646564335606232, 0... | 59 |
| 8447 | Different programs cannot be opened on several... | Different program types cannot be opened on mo... | GRP_49 | Different programs cannot be opened on several... | 21 | [different, program, cannot, opened, several, ... | [[different], [program], [cannot], [opened], [... | [[-0.04628437802839156, 0.09360408251656997, 0... | 44 |
# fit the model
model.fit(padded_docs, Datafinal['target'], epochs=30, verbose=1)
Epoch 1/30 264/264 [==============================] - 1s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0116 Epoch 2/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 3/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 4/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 5/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 6/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 7/30 264/264 [==============================] - 1s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049: 0s - loss: 0.0000e+00 - accuracy: 0. Epoch 8/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 9/30 264/264 [==============================] - 1s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 10/30 264/264 [==============================] - 1s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 11/30 264/264 [==============================] - 1s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 12/30 264/264 [==============================] - 1s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 13/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 14/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0049 Epoch 15/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 16/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 17/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 18/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 19/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 20/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 21/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 22/30 264/264 [==============================] - 0s 2ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 23/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 24/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 25/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 26/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 27/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 28/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 29/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050 Epoch 30/30 264/264 [==============================] - 0s 1ms/step - loss: 0.0000e+00 - accuracy: 0.0050
<keras.callbacks.History at 0x179c806e1c0>
# evaluate the model
loss, accuracy = model.evaluate(padded_docs, Datafinal['target'], verbose=0)
print('Accuracy: %f' % (accuracy*100))
Accuracy: 0.497159
from sklearn.model_selection import train_test_split
X_tr, X_te, y_tr, y_te = train_test_split(Datafinal['merged'], Datafinal['Assignment group'], test_size=0.2, random_state=10)
len(X_tr)
6758
X_tr
1372 request unlock user account sekarfts hello ple...
4299 job sid hotf failed in job scheduler at job si...
1049 reset passwords for soldfnbq uhnbsvqd using pa...
1772 job job failed in job scheduler at job job fai...
5233 ctrl alt and delete keys are not working ctrl ...
...
4829 erp sid password reset erp sid password reset
7291 security incidents in repeat outbound connecti...
1344 jobs are getting fail due to dbif rsql sql err...
7293 unable to access site unable to access site
1289 computer will not turn on the computer lthyqzn...
Name: merged, Length: 6758, dtype: object
We have sucessfully split the dataset into training and test sets in the ratio of 80:20
from sklearn.naive_bayes import MultinomialNB
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.pipeline import Pipeline
from sklearn.feature_extraction.text import TfidfTransformer
nb = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', MultinomialNB()),
])
nb.fit(X_tr, y_tr)
from sklearn.metrics import accuracy_score, confusion_matrix, f1_score
from sklearn.metrics import classification_report
y_pred = nb.predict(X_te)
predictions = nb.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred, y_te))
print('f1 score %s' % f1_score(y_pred, y_te,average='weighted'))
print(classification_report(y_te, y_pred))
print(confusion_matrix(y_te,y_pred))
accuracy 0.5307692307692308
f1 score 0.677926889621502
precision recall f1-score support
GRP_0 0.53 1.00 0.69 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.00 0.00 0.00 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.80 0.18 0.29 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.00 0.00 0.00 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 1.00 0.07 0.13 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 1.00 0.29 0.45 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.00 0.00 0.00 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.00 0.00 0.00 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.49 0.92 0.64 127
GRP_9 0.00 0.00 0.00 53
accuracy 0.53 1690
macro avg 0.06 0.04 0.04 1690
weighted avg 0.36 0.53 0.38 1690
[[750 0 0 ... 0 0 0]
[ 2 0 0 ... 0 2 0]
[ 16 0 0 ... 0 12 0]
...
[ 1 0 0 ... 0 0 0]
[ 10 0 0 ... 0 117 0]
[ 16 0 0 ... 0 37 0]]
nb2 = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', KNeighborsClassifier()),
])
nb2.fit(X_tr, y_tr)
y_pred2 = nb2.predict(X_te)
predictions2 = nb2.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred2, y_te))
print('f1 score %s' % f1_score(y_pred2, y_te,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_te, y_pred2))
print(confusion_matrix(y_te,y_pred2))
accuracy 0.6094674556213018
f1 score 0.6682337763836222
precision recall f1-score support
GRP_0 0.63 0.97 0.76 750
GRP_1 1.00 0.25 0.40 4
GRP_10 0.55 0.39 0.46 28
GRP_11 1.00 0.33 0.50 6
GRP_12 0.44 0.36 0.40 45
GRP_13 0.59 0.34 0.43 38
GRP_14 0.75 0.27 0.40 33
GRP_15 0.50 0.12 0.20 8
GRP_16 0.00 0.00 0.00 20
GRP_17 1.00 0.81 0.89 21
GRP_18 0.20 0.15 0.17 13
GRP_19 0.60 0.13 0.21 46
GRP_2 0.74 0.35 0.48 57
GRP_20 0.00 0.00 0.00 12
GRP_21 1.00 0.40 0.57 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 1.00 0.69 0.82 62
GRP_25 0.80 0.36 0.50 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 1.00 0.14 0.25 7
GRP_29 0.43 0.30 0.35 20
GRP_3 0.60 0.16 0.25 38
GRP_30 0.20 0.12 0.15 8
GRP_31 0.08 0.09 0.09 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.67 0.14 0.24 28
GRP_34 0.25 0.08 0.12 13
GRP_35 0.00 0.00 0.00 1
GRP_36 1.00 0.50 0.67 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.40 0.16 0.23 25
GRP_40 0.00 0.00 0.00 8
GRP_41 1.00 0.38 0.55 8
GRP_42 1.00 0.17 0.29 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.08 0.14 0.11 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.53 0.32 0.40 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 1.00 0.25 0.40 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.26 0.76 0.39 37
GRP_60 0.50 0.33 0.40 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 1.00 0.23 0.38 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.78 0.57 0.66 127
GRP_9 0.88 0.13 0.23 53
accuracy 0.61 1690
macro avg 0.35 0.17 0.21 1690
weighted avg 0.60 0.61 0.55 1690
[[728 0 1 ... 0 0 0]
[ 1 1 0 ... 0 1 0]
[ 10 0 11 ... 0 0 0]
...
[ 1 0 0 ... 0 0 0]
[ 9 0 1 ... 0 73 0]
[ 15 0 0 ... 0 0 7]]
nb11 = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', KNeighborsClassifier()),
])
nb2.fit(X_tr, y_tr)
y_pred2 = nb2.predict(X_te)
predictions2 = nb2.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred2, y_te))
print('f1 score %s' % f1_score(y_pred2, y_te,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_te, y_pred2))
print(confusion_matrix(y_te,y_pred2))
encoded_docs
accuracy 0.6094674556213018
f1 score 0.6682337763836222
precision recall f1-score support
GRP_0 0.63 0.97 0.76 750
GRP_1 1.00 0.25 0.40 4
GRP_10 0.55 0.39 0.46 28
GRP_11 1.00 0.33 0.50 6
GRP_12 0.44 0.36 0.40 45
GRP_13 0.59 0.34 0.43 38
GRP_14 0.75 0.27 0.40 33
GRP_15 0.50 0.12 0.20 8
GRP_16 0.00 0.00 0.00 20
GRP_17 1.00 0.81 0.89 21
GRP_18 0.20 0.15 0.17 13
GRP_19 0.60 0.13 0.21 46
GRP_2 0.74 0.35 0.48 57
GRP_20 0.00 0.00 0.00 12
GRP_21 1.00 0.40 0.57 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 1.00 0.69 0.82 62
GRP_25 0.80 0.36 0.50 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 1.00 0.14 0.25 7
GRP_29 0.43 0.30 0.35 20
GRP_3 0.60 0.16 0.25 38
GRP_30 0.20 0.12 0.15 8
GRP_31 0.08 0.09 0.09 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.67 0.14 0.24 28
GRP_34 0.25 0.08 0.12 13
GRP_35 0.00 0.00 0.00 1
GRP_36 1.00 0.50 0.67 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.40 0.16 0.23 25
GRP_40 0.00 0.00 0.00 8
GRP_41 1.00 0.38 0.55 8
GRP_42 1.00 0.17 0.29 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.08 0.14 0.11 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.53 0.32 0.40 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 1.00 0.25 0.40 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.26 0.76 0.39 37
GRP_60 0.50 0.33 0.40 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 1.00 0.23 0.38 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.78 0.57 0.66 127
GRP_9 0.88 0.13 0.23 53
accuracy 0.61 1690
macro avg 0.35 0.17 0.21 1690
weighted avg 0.60 0.61 0.55 1690
[[728 0 1 ... 0 0 0]
[ 1 1 0 ... 0 1 0]
[ 10 0 11 ... 0 0 0]
...
[ 1 0 0 ... 0 0 0]
[ 9 0 1 ... 0 73 0]
[ 15 0 0 ... 0 0 7]]
[[46, 31, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [41, 55, 101, 1, 1, 33, 964, 87, 964, 449, 42, 8, 1180, 4, 33, 41, 672, 39, 4956, 14, 386, 288, 2, 391, 23, 1, 1, 450], [1031, 95, 4, 2, 175, 76, 111, 4041, 39, 95, 10, 2, 175, 76, 1, 1, 135], [27, 2, 29, 162, 20, 347, 27, 2, 29, 162, 20, 347], [87, 37, 87, 37], [27, 2, 95, 4, 2, 82, 20, 7, 87, 27, 2, 95, 4, 2, 82, 20, 7, 87], [93, 804, 40, 24, 144, 3, 763, 18, 4957, 617, 11, 1181, 26, 3400, 93, 804, 40, 24, 144, 3, 763, 18, 4957, 617, 11, 1181, 26, 3400, 4958, 4958, 131, 7669, 6], [34, 9, 2104, 233, 73, 933, 223, 322, 28, 56, 34, 9, 2104, 233, 73, 933, 223, 322, 28, 56], [27, 2, 1796, 206, 4042, 10, 41, 27, 2, 1796, 206, 4042, 10, 41], [34, 70, 10, 258, 34, 70, 10, 258], [82, 20, 530, 8, 267, 7, 27, 2, 436, 440, 82, 20, 530, 8, 267, 7, 27, 2, 436, 440], [162, 20, 48, 8, 590, 347, 546, 162, 20, 48, 8, 590, 347, 546], [27, 2, 46, 2, 162, 20, 2, 4959, 4960, 2475, 27, 2, 46, 2, 162, 20, 2, 4959, 4960, 2475], [28, 1007, 2, 25, 3, 13, 28, 1007, 2, 25, 3, 13], [27, 2, 100, 1657, 27, 2, 100, 1657], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 46, 2, 24, 76, 111, 49, 27, 2, 46, 2, 24, 76, 580, 250, 2, 100, 73, 908, 137, 3, 96, 229, 67, 8, 84, 2, 118, 294, 363, 50, 1008, 53, 47, 42, 45, 36, 490, 1059, 311, 2, 713, 591, 1797], [51, 4961, 115, 167, 99, 8, 884, 251, 51, 4961, 115, 167, 99, 8, 884, 251], [15, 26, 32, 64, 15, 26, 32, 64], [27, 2, 392, 158, 76, 27, 2, 392, 158, 76], [27, 2, 114, 1657, 27, 2, 114, 1657], [76, 31, 55, 1730, 1, 1, 49, 8, 84, 2, 122, 76, 36, 490, 174, 1731, 655, 1311, 63, 267, 172, 21, 6, 8, 45, 849, 164, 71, 44, 33, 908, 562, 67, 68, 413, 10, 3, 229, 680, 1147, 1, 1, 1, 1, 1, 54, 50, 30, 104, 690, 88, 1, 413, 581, 1, 1, 1413, 30, 1798, 296, 704, 104, 690, 88, 498, 172, 413, 581, 1, 1, 135], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [28, 486, 11, 69, 86, 107, 28, 486, 11, 69, 86, 107], [76, 8, 45, 55, 356, 8, 357, 84, 2, 122, 2, 24, 58, 294, 3, 76, 363, 114, 491, 49, 8, 357, 84, 2, 909, 53, 764, 18, 9, 24, 58], [15, 26, 13, 25, 15, 26, 13, 25], [27, 2, 46, 2, 162, 20, 2, 114, 1657, 27, 2, 46, 2, 162, 20, 2, 114, 1657], [32, 64, 77, 32, 64, 77], [27, 2, 46, 2, 162, 20, 27, 2, 46, 2, 162, 20], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [13, 25, 11, 128, 126, 13, 25, 11, 128, 126], [25, 195, 111, 14, 25, 195, 13, 217, 59, 691, 4043], [2476, 18, 58, 196, 7670, 38, 451, 817, 44, 42, 250, 2, 818, 72, 138, 196, 284, 42, 250, 2, 818, 197, 6, 74, 30, 3, 40, 18, 7671, 7, 3, 165, 6, 73, 452, 11, 15, 3, 452, 6, 137, 3401, 2, 118, 558, 196, 625, 7, 3, 74, 6, 531, 4962, 33, 4044, 6, 44, 3, 196, 187, 8, 118, 236, 2, 1586, 196, 4, 3401, 54, 23, 1524, 207, 3, 452, 99, 1202, 98, 517, 196], [338, 13, 25, 338, 13, 25], [27, 2, 211, 1114, 1115, 27, 2, 211, 1114, 1115], [34, 9, 2104, 233, 73, 933, 223, 34, 9, 2104, 233, 73, 933, 223], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [27, 2, 353, 34, 9, 625, 2, 1587, 3, 233, 864, 6, 4963, 169, 532, 2477], [1658, 82, 20, 54, 2, 211, 82, 20, 10, 3, 115], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [34, 70, 965, 34, 70, 965], [910, 726, 8, 45, 910, 726, 8, 45], [27, 2, 46, 2, 52, 27, 2, 46, 2, 52], [14, 2705, 777, 10, 74, 2, 74, 31, 219, 2, 43, 321, 310, 111, 3, 74, 74, 6, 8, 45, 7, 219, 934, 1312, 39, 35, 2705, 3, 777, 4, 1732, 2, 74, 74, 7672, 7673, 65, 4964, 44, 7674, 219, 73, 934, 7, 21, 8, 2105, 11, 532, 540, 207, 3, 225, 418, 99, 54, 2, 176, 10, 74, 11, 172, 23, 219, 2, 43, 1271, 3402, 18, 310, 112, 3, 225, 418, 42, 727, 7, 42, 2258, 98, 66, 72, 240, 69, 12, 124, 4, 90, 10, 636, 935, 14, 129, 7675, 7676, 68, 35, 38, 498, 393, 3, 777, 4, 1732, 11, 310], [27, 2, 46, 2, 162, 20, 705, 27, 2, 46, 2, 162, 20, 705], [39, 8, 95, 158, 162, 20, 705, 294, 966, 392, 10, 212, 39, 8, 95, 158, 162, 20, 705, 294, 966, 392, 10, 212], [13, 274, 4, 13, 125, 20, 67, 4045, 70, 11, 15, 32, 13, 274, 4, 13, 125, 20, 67, 4045, 70, 11, 15, 32], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 13, 119, 192, 13, 125, 20, 79, 13, 119, 192, 13, 125, 20], [233, 89, 8, 119, 10, 279, 140, 51, 1797, 121, 3, 296, 790, 10, 3, 10, 4046, 121, 233], [5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12, 5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [378, 54, 33, 13, 125, 20, 13, 120, 13, 25, 110, 54, 33, 13, 125, 20, 13, 120, 13, 25], [25, 2706, 140, 13, 55, 14, 25, 33, 2706, 140, 13, 7677, 7678, 188, 462, 120, 1148, 4965], [32, 64, 77, 329, 4, 174, 32, 3031, 2259, 77, 1, 285, 2478, 1, 1, 1060, 62, 235, 108, 57, 280, 65, 72, 626, 13, 2106, 1, 79, 7, 58, 224, 106, 8, 1471], [87, 381, 365, 334, 1, 1, 330, 2, 25, 33, 13, 257, 7, 742, 805, 33, 765, 11, 1009, 98, 87, 381, 257, 39, 35, 14, 50, 80, 39, 1203, 288, 35, 428, 84, 2, 2107, 21, 251, 3, 372, 116], [3032, 10, 518, 4966, 3032, 10, 518, 4966, 288, 2, 118, 13, 25], [54, 472, 11, 349, 113, 113, 673, 1116, 54, 472, 11, 349, 113, 113, 673], [132, 397, 13, 55, 1, 14, 50, 2, 132, 33, 24, 441, 95, 10, 13, 307], [5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12, 5, 249, 1235, 1236, 3403, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [13, 274, 275, 11, 28, 2260, 13, 274, 275, 11, 28, 2260], [210, 30, 41, 135], [307, 189, 4967, 14, 50, 335, 2, 189, 4967, 11, 23, 249, 1, 473, 1, 473, 1, 1, 473, 36, 113, 2, 113], [358, 24, 451, 2108, 42, 75, 112, 49, 105, 10, 358, 24, 451, 2108, 42, 75, 112, 49, 105, 10, 1, 1, 24, 262, 1204, 358, 24, 29, 277, 1, 24, 262, 1204, 358, 24, 29, 277], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 3, 15, 59, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [186, 263, 39, 106, 644, 981, 31, 259, 7, 1, 113, 113, 2, 113, 1, 3, 31, 452, 1, 3404, 7679, 3404, 7680, 3404, 7681, 3404, 7682, 263, 8, 2261, 114, 104, 982], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 64, 28, 4043, 21, 101, 14, 308, 743, 64, 142, 11, 28, 4043, 28, 56, 4968, 4969], [382, 33, 148, 1588, 6, 8, 45, 257, 7, 1416, 104, 307, 50, 33, 148, 1588, 6, 8, 45, 257, 7, 1416, 104, 307, 50], [28, 219, 50, 2, 122, 2, 3, 519, 133, 12, 490, 28, 219, 50, 2, 122, 2, 3, 519, 133, 12, 490, 330, 3, 28, 122, 2, 3, 728, 12, 490, 267, 2, 3, 28, 52, 137, 487, 425, 3, 58, 609, 50, 3, 28, 46, 2, 3, 490, 519, 659, 3, 490, 728, 28, 328, 44, 180, 6, 84, 2, 46, 2, 3, 490, 519, 31, 321], [203, 34, 70, 203, 34, 70], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [61, 94, 2479, 2480, 7, 7683, 1589, 531, 75, 112, 12, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 7684, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [61, 94, 190, 3033, 48, 6, 531, 75, 112, 49, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [28, 4047, 4048, 290, 210, 637, 2, 41, 28, 4047, 4048, 290, 210, 637, 2, 41, 7685, 99, 43, 178, 1059, 1272, 49, 180, 507, 77, 18, 24, 3034, 102, 35, 2, 1273, 77, 2, 911, 7, 398, 3, 31], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [82, 20, 791, 2262, 4, 492, 1149, 42, 8, 806, 55, 21, 200, 1, 54, 2, 317, 3, 1358, 610, 2, 766, 1358, 1, 3, 82, 20, 706, 323, 492, 2262, 1, 1, 312, 1, 1, 1, 15, 160, 127, 238, 69, 4970, 7686, 2263, 301, 160, 127, 238, 69, 1881, 8, 3035, 173, 97, 43, 7687, 172, 1, 1, 7688, 1, 1117, 3036, 1, 3037, 15, 4049, 3405, 2481, 2109, 7689, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 15, 4049, 3405, 2481, 2109, 7690, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 15, 4049, 3405, 2481, 2109, 7691, 2109, 566, 59, 2109, 566, 4050, 1, 3037, 7692, 4051, 4971, 4051, 566, 59, 4051, 566, 7693, 1, 474, 4052, 2110, 7694, 2110, 566, 59, 2110, 566, 4053, 1, 474, 4052, 2110, 7695, 2110, 566, 59, 2110, 566, 4053, 1, 474, 4052, 2110, 7696, 2110, 566, 59, 2110, 566, 4053, 1, 3037, 1313, 7697, 4054, 373, 4054, 566, 59, 4054, 566, 4972, 1, 1, 4055, 4056, 367, 4971, 1, 1, 1, 1, 1, 1, 6, 23, 1150, 123, 51, 21, 99, 43, 833], [5, 983, 4057, 113, 22, 4, 5, 19, 12, 5, 983, 4057, 113, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12, 5, 249, 1235, 1525, 1660, 22, 4, 5, 19, 12], [27, 2, 100, 419, 27, 2, 100, 419], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [1661, 370, 1010, 1661, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387, 1661, 370, 1010, 1661, 834, 10, 78, 6, 272, 198, 375, 198, 178, 387], [27, 2, 239, 1657, 36, 162, 20, 116, 27, 2, 239, 1657, 36, 162, 20, 116], [13, 3406, 1059, 33, 52, 530, 33, 13, 2264, 1059, 67, 51, 479, 2, 119, 2, 73, 13, 21, 89, 8, 729, 3, 73, 13, 6, 8, 1733, 21, 530, 78, 89, 8, 4973, 308, 114, 7, 106, 3, 807, 53, 3, 13, 6, 2482, 1059], [243, 338, 212, 29, 31, 55, 180, 6, 72, 1734, 28, 14, 25, 3, 13, 7, 778, 4058, 4059, 4974, 4975, 338, 212, 29, 31, 111, 96, 779, 223, 4976, 4977, 30, 28, 59, 1989, 6, 8, 84, 2, 46, 2, 338, 212, 2, 29, 283, 1418, 3407, 7, 442, 2483, 180, 6, 692, 20, 28, 14, 25, 283, 28, 59, 7, 13, 7, 1662, 251], [338, 212, 29, 31, 111, 96, 779, 223, 4976, 4977, 30, 28, 59, 1989, 6, 8, 84, 2, 46, 2, 338, 212, 2, 29, 283, 1418, 3407, 7, 442, 2483, 180, 6, 692, 20, 28, 14, 25, 283, 28, 59, 7, 13, 7, 1662, 251], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [692, 20, 52, 95, 10, 37, 55, 365, 334, 49, 1085, 210, 30, 692, 20, 95, 10, 541, 116, 335, 2, 95, 10, 294, 966, 392, 212, 3, 177, 167, 1061, 1086, 7, 21, 2484, 151, 1663, 104, 295, 2, 398, 23, 31], [333, 984, 31, 333, 984, 31], [27, 2, 500, 173, 4, 128, 126, 27, 2, 500, 173, 4, 128, 126], [27, 2, 70, 13, 10, 3, 13, 125, 20, 13, 120, 27, 2, 70, 13, 10, 3, 13, 125, 20, 13, 120], [1205, 660, 260, 20, 29, 403, 1205, 660, 260, 20, 29, 403], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 1359, 180, 99, 4978, 28, 1359, 180, 99, 4978], [27, 70, 224, 10, 13, 125, 20, 27, 70, 224, 10, 13, 125, 20], [15, 26, 15, 160, 13, 25, 32, 6, 64, 15, 26, 15, 160, 13, 25, 32, 6, 64], [78, 210, 55, 1, 1, 38, 141, 250, 2, 3408, 29, 2, 33, 1418, 4979, 136, 10, 3, 459, 2485, 3, 162, 20, 705, 212, 3, 165, 136, 10, 3, 212, 884, 98, 573, 193, 67, 3, 1418, 7698, 89, 8, 21, 2111, 429, 3, 412, 4980], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [27, 2, 452, 324, 171, 27, 2, 452, 324, 171], [13, 25, 11, 4981, 4982, 4983, 13, 25, 11, 4981, 4982, 4983], [27, 2, 46, 4, 1590, 681, 27, 2, 46, 4, 1590, 681], [55, 356, 290, 72, 31, 30, 33, 41, 239, 39, 35, 121, 80, 7, 270, 80, 818, 33, 167, 55, 356, 290, 72, 31, 30, 33, 41, 239, 39, 35, 121, 80, 7, 270, 80, 818, 33, 167], [27, 2, 29, 475, 27, 2, 29, 475], [27, 2, 452, 324, 171, 27, 2, 452, 324, 171], [235, 108, 453, 4984, 4985, 124, 291, 292, 3038, 2707, 7699, 714, 7700, 7701, 7702, 7703, 592, 2708, 7704, 7705, 7706, 480, 1032, 7707, 4986, 2708, 4987, 7708, 4988, 7709, 111, 268, 23, 71, 7, 161, 437, 21, 7710, 65, 1591, 80, 2, 100, 34], [318, 1087, 99, 8, 134, 169, 2486, 1664, 99, 72, 415, 1062, 1087, 318, 1087, 99, 8, 134, 169, 2486, 1664, 99, 72, 415, 1062, 1087], [339, 121, 533, 339, 121, 533], [70, 10, 258, 70, 10, 258], [13, 119, 1799, 13, 125, 20, 13, 120, 55, 491, 1, 1, 248, 2, 119, 33, 13, 1799, 693, 351, 96, 37, 611, 50, 253, 85, 354, 2, 43, 1271, 582, 2, 1088, 83, 224, 42, 179, 7711, 112, 7712, 7713, 530, 83, 224, 428, 8, 274], [132, 508, 107, 4, 338, 132, 508, 107, 4, 338], [1526, 200, 10, 1274, 78, 4, 26, 1416, 1800, 715, 10, 160, 78, 1526, 200, 10, 1274, 78, 4, 26, 1416, 1800, 715, 10, 160, 78, 3, 37, 1990, 4, 160, 7, 429, 318, 7714, 37, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 437, 302, 3, 31, 39, 43, 7715, 4, 160, 387, 24, 117, 387, 7, 1885, 349, 249, 4989, 124, 4060, 24, 117, 387, 7, 937, 36, 2709, 39, 493, 462, 126, 387, 682, 4989, 124, 7716, 67, 3, 167, 1527, 95, 10, 182, 661, 714, 387, 592, 24, 117, 387, 1885, 349, 387, 47, 330, 23, 210, 534, 567, 420, 389, 7, 21, 524, 820, 715, 18, 3, 78, 7717, 6, 365, 129, 568, 11, 23, 31, 53, 180, 63, 534, 45, 10, 3, 1886, 1206, 30, 161, 415, 69, 1274], [27, 2, 29, 76, 27, 2, 29, 76], [27, 2, 100, 41, 27, 2, 100, 41], [211, 407, 4, 74, 162, 4, 40, 211, 407, 4, 74, 162, 4, 40], [27, 2, 320, 245, 36, 2710, 27, 2, 320, 245, 36, 2710], [29, 2, 191, 217, 610, 56, 7718, 7719, 182, 213, 130, 155, 204, 117, 107, 146, 97, 1089, 2, 29, 3, 610, 36, 3, 535, 220, 44, 6, 430, 10, 33, 142, 21, 542, 509, 80, 2, 3, 179, 347, 44, 33, 1033, 38], [1360, 489, 57, 1183, 36, 508, 86, 56, 7720, 182, 213, 130, 155, 204, 117, 107, 146, 38, 7721, 3, 376, 86, 33, 181, 63, 1593, 4, 21, 39, 35, 509, 489, 3, 1183, 236, 2, 239, 475, 10, 44, 86], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 239, 1657, 4, 419, 27, 2, 239, 1657, 4, 419], [1528, 13, 25, 14, 25, 162, 20, 7722, 13, 25], [1529, 674, 496, 443, 245, 36, 15, 307, 111, 161, 1529, 674, 30, 3, 57, 196, 268, 245, 704, 3, 1207, 37, 4, 1314, 18, 7723, 180, 6, 343, 7724, 23, 219, 2, 43, 833, 510, 163, 6, 173, 4061, 36, 15, 7725, 3, 245], [90, 24, 238, 1034, 7, 1011, 6, 75, 112, 124, 105, 10, 90, 24, 238, 1034, 7, 1011, 6, 75, 112, 124, 105, 10], [13, 25, 365, 334, 38, 1991, 33, 13, 11, 15, 26, 38, 912, 985, 7, 22, 185, 35, 14, 25, 33, 28, 59, 6, 7726], [338, 46, 31, 338, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [27, 2, 170, 382, 4, 108, 7727, 7728, 6, 27, 2, 170, 283, 382, 4, 910, 108], [15, 176, 20, 211, 15, 176, 20, 211], [365, 334, 49, 290, 1237, 164, 158, 33, 76, 56, 3039, 3040, 182, 213, 130, 155, 204, 117, 107, 146, 365, 334, 49, 290, 1237, 164, 158, 33, 76, 39, 35, 525], [211, 1238, 2487, 211, 1238, 2487], [13, 25, 36, 226, 13, 25, 36, 226], [25, 3, 13, 11, 7729, 7730, 10, 15, 865, 15, 14, 25, 33, 13, 2, 26, 21, 230, 46, 7731], [110, 304, 2, 38, 1735, 2, 23, 271, 10, 128, 126, 172, 106, 8, 54, 29, 2711, 2712, 1530, 1064], [88, 206, 4, 6, 164, 808, 36, 41, 88, 206, 4, 6, 164, 808, 36, 41], [41, 1315, 41, 1315], [76, 8, 45, 76, 8, 45], [25, 224, 11, 7732, 7733, 137, 13, 125, 20, 13, 25, 223, 6, 164, 72, 37, 28, 1472, 22, 51, 250, 2, 95, 158, 3, 338, 212, 390, 6, 84, 2, 29, 15, 7, 6, 84, 2, 29, 3, 459, 248, 2, 25, 7, 119, 408, 13, 294, 13, 125, 20, 13, 120, 67, 351, 72, 37, 97, 326, 32, 7734, 10, 1594, 202, 675, 408, 28, 59, 6, 7735], [5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 203, 22, 4, 5, 19, 12], [338, 13, 25, 338, 13, 25], [913, 74, 14, 263, 241, 4990, 15, 303, 6, 1361, 4, 74, 913, 3, 176, 6, 8, 1118, 4991, 14, 1419, 2, 1420, 3, 179, 662, 53, 1239, 18, 1208, 6, 164, 7736], [70, 566, 1151, 208, 83, 1, 1, 566, 1151, 6, 8, 45, 143, 316, 54, 29, 2, 239, 2488, 225, 418, 4, 15, 1, 1, 2489, 566, 70, 6, 275, 1, 1, 1, 1, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 47, 42, 1887, 96, 559, 4, 850, 20, 1, 1, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [29, 2, 547, 55, 1, 1, 1362, 372, 593, 63, 1090, 547, 440, 137, 3041, 212, 7, 151, 428, 9, 210, 1, 1, 937, 23, 593, 3, 52, 6, 4992, 278, 51, 95, 4, 7, 1888, 89, 8, 729, 80, 2, 29, 143, 440, 1, 1, 39, 21, 43, 3, 31, 30, 143, 145, 62, 33, 29, 1473, 62, 2490, 264, 335, 2, 29, 547, 137, 661, 986, 1, 1, 96, 3, 176, 167, 36, 85, 91, 169, 95, 4, 1, 1, 49, 183, 84, 2, 118, 2, 501, 440, 91, 96, 716, 51, 413, 4993, 548, 53, 63, 820, 987, 1992, 835, 6, 100, 716, 4062, 7737, 44, 3, 167, 6, 339, 1, 1, 1, 1663, 104, 295, 1, 1, 38, 2112, 483, 1, 1, 2113, 1, 1, 1, 7738, 7739, 1, 1363, 988, 1, 501, 120, 7740, 1, 1240, 1, 4994, 1, 1, 24, 4995, 1421, 646, 4996, 4997, 3042, 730, 24, 144, 1, 1, 24, 4995, 1421, 646, 2491, 7741, 4998, 3042, 4996, 4997, 1, 1421, 7742, 7743, 851, 7744, 7745, 3042, 7746, 7747, 7748, 4998, 7749, 7750, 7751, 7752, 7753, 7754, 1, 7755, 7756, 7757, 7758, 7759], [79, 32, 707, 79, 32, 707], [34, 9, 1119, 543, 7760, 3409, 34, 9, 1119, 543, 493, 3, 177, 229, 2, 239, 3, 938, 4, 72, 885, 182], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [28, 219, 520, 2, 199, 82, 20, 2, 239, 610, 28, 219, 520, 2, 199, 82, 20, 2, 239, 610, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 7, 3410, 3, 28, 10, 288, 46, 2, 191, 217, 7, 239, 610, 1, 31, 321], [87, 8, 45, 55, 1, 1, 49, 27, 2, 29, 3, 87, 3, 13, 6, 323, 37], [32, 132, 102, 32, 132, 102], [307, 186, 263, 1665, 102, 55, 21, 101, 185, 35, 14, 1241, 186, 263, 11, 96, 127, 47, 97, 31, 472, 11, 207, 2265, 18, 2266, 536, 11, 83, 18, 627, 12, 731, 113, 149, 676, 186, 113, 113, 731, 852, 7761, 207, 249, 115, 249, 673, 249, 673], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52], [27, 2, 509, 176, 77, 36, 913, 27, 2, 509, 176, 77, 36, 913], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [132, 431, 549, 140, 32, 111, 151, 1, 1, 246, 35, 14, 50, 80, 132, 33, 431, 549, 140, 32, 7, 25, 33, 431, 549, 140, 13], [27, 2, 29, 13, 125, 20, 59, 13, 120, 7762, 7763, 7764, 110, 335, 2, 119, 172, 33, 13, 3411, 2, 163, 181, 67, 23, 526, 134, 63, 77, 18, 174, 11, 1316, 116, 599, 172, 67, 1, 13, 125, 20, 229, 526, 134, 14, 50, 1, 1, 1, 1, 104, 13, 2264, 4, 483, 1, 1, 3, 1595, 2, 119, 104, 13, 541, 540, 7765, 131, 299, 745, 24, 1, 1, 14, 46, 2, 1, 1012, 66, 1012, 3412, 10, 137, 3, 1587, 200, 20, 6, 178, 581, 1, 1, 14, 106, 8, 853, 2, 23, 57, 68, 35, 1474, 967, 14, 436, 34, 2, 3, 188, 295, 314, 192, 143, 18, 261, 7766, 1, 1, 404, 20, 1, 57, 1, 1, 450], [5, 40, 708, 22, 4, 5, 19, 12, 5, 40, 708, 22, 4, 5, 19, 12], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [88, 683, 11, 28, 4999, 7767, 7768, 49, 7769, 7770, 550, 88, 683, 11, 4999, 55, 88, 6, 8, 430, 4, 33, 148, 14, 295, 80, 10, 23], [27, 2, 122, 2, 76, 27, 2, 122, 2, 76], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [2114, 11, 235, 86, 29, 2, 181, 767, 2114, 11, 235, 86, 29, 2, 181, 767], [131, 8, 546, 3413, 11, 83, 3, 694, 4, 3, 914, 20, 5000, 238, 131, 8, 546, 3413, 11, 83, 3, 694, 4, 3, 914, 20, 5000, 238], [968, 319, 49, 291, 292, 243, 968, 319, 208, 363, 50, 2, 70, 117, 968, 319, 57, 196, 476], [2, 2713, 218, 44, 66, 1531, 2714, 2, 254, 110, 479, 2713, 218], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [58, 94, 361, 48, 531, 75, 112, 12, 124, 105, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [13, 25, 102, 13, 25, 102], [28, 6, 8, 84, 2, 91, 83, 1065, 4, 475, 10, 283, 383, 28, 6, 8, 84, 2, 91, 83, 1065, 4, 475, 10, 283, 383], [13, 25, 13, 25], [27, 2, 500, 83, 475, 4, 41, 10, 340, 27, 2, 500, 83, 475, 4, 41, 10, 340], [88, 681, 89, 8, 1242, 10, 41, 88, 681, 89, 8, 1242, 10, 41], [27, 2, 436, 324, 171, 53, 21, 6, 64, 66, 28, 27, 2, 436, 324, 171, 53, 21, 6, 64, 66, 28], [5001, 70, 10, 258, 5001, 70, 10, 258], [110, 54, 2, 766, 3, 73, 462, 1152, 96, 110, 54, 2, 766, 3, 73, 462, 1152, 96], [34, 70, 10, 258, 34, 70, 10, 258], [274, 527, 3414, 274, 527, 3414], [27, 2, 100, 580, 56, 7771, 7772, 182, 213, 130, 155, 204, 117, 107, 146, 3415, 7773, 99, 8, 373, 4, 33, 213], [939, 88, 574, 88, 7, 683, 2, 4063, 4064, 199, 809, 265, 3416, 3417], [726, 365, 1364, 1, 1, 49, 290, 210, 257, 30, 33, 2267, 4, 44, 97, 118, 143, 726, 7, 97, 4065, 4, 87, 497], [54, 3, 691, 2, 436, 3, 2492, 54, 3, 691, 2, 436, 3, 2492], [403, 10, 415, 213, 403, 10, 415, 213], [27, 2, 29, 1590, 7, 165, 1666, 4, 162, 20, 197, 116, 27, 2, 29, 1590, 7, 165, 1666, 4, 162, 20, 197, 116, 29, 502], [27, 2, 91, 3, 628, 1013, 4, 309, 27, 2, 91, 3, 628, 1013, 4, 309, 28, 59, 7774], [28, 2268, 10, 407, 70, 866, 7, 276, 169, 1801, 3, 348, 180, 7775, 37, 28, 2268, 10, 407, 70, 866, 7, 276, 169, 1801, 3, 348, 180, 268, 72, 37, 1736, 7776, 940, 7777, 37], [15, 26, 32, 132, 15, 26, 32, 132], [79, 13, 25, 79, 13, 25], [214, 107, 70, 214, 107, 70], [2492, 136, 2492, 136], [14, 583, 5002, 29, 2, 260, 20, 4066, 7, 1422, 911, 2, 5003, 5004, 101, 53, 72, 1317, 4, 3, 1889, 1318, 14, 583, 5002, 29, 2, 260, 20, 4066, 7, 1422, 911, 2, 5003, 5004, 101, 53, 72, 1317, 4, 3, 1889, 1318], [1120, 941, 533, 1120, 941, 533], [338, 1734, 28, 13, 25, 338, 1734, 28, 13, 25], [58, 94, 432, 768, 24, 1532, 76, 618, 6, 75, 49, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1533, 34, 9, 1119, 543, 111, 38, 205, 2715, 4, 26, 7, 21, 507, 172, 546, 3, 1275, 481, 428, 1014, 456, 573, 143, 684, 49, 7778, 3, 119, 135], [15, 26, 32, 132, 15, 26, 32, 132], [1475, 968, 18, 1802, 5005, 2, 4067, 358, 1596, 136, 7779, 124, 7780, 7781, 1475, 968, 18, 1802, 5005, 2, 4067, 358, 1596, 136, 47, 42, 7782, 4068, 11, 7783, 72, 1802, 348, 2, 4067, 358, 1059, 23, 6, 355, 11, 104, 1596, 136, 746, 1319, 6, 4, 1209, 47, 99, 3418, 104, 295, 4, 104, 3043, 2, 50, 166, 4, 5006, 23, 2493, 1059], [14, 206, 33, 134, 86, 107, 2, 33, 809, 129, 86], [1365, 1066, 2, 4069, 1365, 1066, 2, 4069], [566, 31, 10, 205, 242, 148, 566, 31, 10, 205, 242, 148], [295, 255, 1476, 7784, 5007, 5008, 295, 255, 1476, 7785, 5007, 5008], [193, 30, 2716, 55, 21, 942, 257, 3, 115, 7786, 1737, 98, 257, 7, 257, 7, 355, 4070, 80, 30, 175, 886, 167, 30, 1993, 3044, 85, 47, 39, 106, 151], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [168, 20, 1803, 51, 1804, 42, 584, 8, 84, 2, 647, 2115, 1804, 44, 38, 141, 4071, 4, 15, 168, 20, 1803, 51, 1804, 42, 584, 8, 84, 2, 647, 2115, 1804, 44, 38, 141, 4071, 4, 15], [747, 4072, 4073, 202, 675, 32, 747, 4072, 4073, 202, 675, 32, 56, 7787, 146, 54, 4072, 4073, 202, 675, 32, 1805], [500, 245, 31, 500, 245, 31], [155, 204, 210, 28, 6, 290, 210, 30, 283, 155, 204, 3, 347, 790, 2269, 7, 3045, 98, 30, 4074, 37], [121, 11, 1414, 1415, 121, 11, 1414, 1415], [339, 121, 339, 121], [27, 2, 239, 1657, 27, 2, 239, 1657], [117, 8, 164, 127, 4075, 456, 451, 117, 460, 38, 8, 141, 164, 3, 127, 4075, 456, 265, 284, 38, 141, 11, 3, 887, 2717, 600, 42, 426, 3, 179, 266, 3046, 7788, 7, 264, 456, 43, 867, 4075, 2, 112, 284, 38, 8, 141, 164, 444, 39, 612, 366, 158, 23, 23, 6, 4076, 3, 117, 5009, 3, 4077, 53, 284, 199, 23, 3047, 53, 7789, 207, 284, 39, 1418, 3, 1597, 1276, 149, 685, 24, 203], [160, 127, 64, 160, 127, 6, 64, 66, 28, 5010, 5011, 9, 197, 65, 141, 84, 2, 132, 39, 23, 127, 43, 499, 2270, 1239, 6, 357, 1320, 66, 5010, 5011], [110, 54, 29, 2, 501, 1738, 18, 459, 110, 185, 820, 118, 158, 3, 501, 1738, 7, 172, 39, 110, 54, 29, 14, 2711, 2712, 1530, 1064], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [110, 742, 268, 3, 71, 96, 39, 35, 1667, 80, 36, 1739, 3, 57, 779, 63, 331, 110, 742, 268, 3, 71, 96, 39, 35, 1667, 80, 36, 1739, 3, 57, 779, 63, 331], [57, 196, 1036, 57, 196, 1036], [15, 1423, 7, 939, 88, 1121, 31, 7790, 484, 5012, 111, 83, 47, 38, 1121, 31, 748, 15, 1423, 7, 939, 88, 311, 2, 484, 5012, 10, 1122, 3419, 7, 44, 484, 6, 8, 989, 399, 10, 15, 1423, 943, 31, 521, 2, 131, 915, 460, 149, 594, 131, 674, 2271, 1091, 3048, 42, 8, 357, 1320, 36, 15, 1423, 2, 1067, 30, 21, 939, 88, 7, 2718, 7791, 4, 83, 3049, 409, 865, 7, 686, 31, 170, 116, 124, 2719, 1477, 51, 7792, 36, 117, 916, 101, 1092, 3, 31, 44, 2494, 32, 350, 4, 15, 1093, 884, 158, 939, 989, 15, 1423, 101, 1890, 44, 3, 915, 42, 4, 273, 4078, 3047, 233, 184, 5013, 2720, 284, 42, 8, 989, 3050, 268, 66, 3, 1594, 52, 2116, 241, 95, 548, 7, 250, 2, 1740, 3, 1886, 1206, 748, 15, 1423, 935, 7, 939, 749, 21, 141, 1890, 44, 3, 31, 65, 244, 4, 160, 1037, 112, 1272, 990, 10, 47, 1890, 3, 179, 2272, 30, 1122, 944, 20, 7, 15, 1423, 1994, 18, 165, 933, 160, 3049, 53, 613, 35, 39, 326, 37, 1210, 36, 15, 1423, 52, 4, 3, 181, 549, 1886, 1206, 21, 664, 44, 3, 484, 11, 1122, 7793, 38, 141, 399, 10, 53, 21, 6, 5014, 3, 5015, 341, 2117, 67, 3, 73, 484, 6, 8, 399, 10, 15, 1423, 284, 42, 8, 516, 1995, 18, 23, 119, 207, 51, 3, 160, 1122, 5016, 24, 88, 1421, 944, 7794, 3051, 441, 351, 991, 10, 1272, 23, 1121, 664, 2, 38, 141, 1478, 569, 1477, 47, 54, 3, 1122, 5016, 484, 549, 2, 43, 331, 2, 15, 935, 101, 207, 44, 284, 39, 70, 21, 10, 15, 1423, 52, 1739, 39, 1273, 77, 2, 11, 496, 3, 484, 222, 106, 47, 38, 72, 1122, 522, 4, 3420, 62, 106, 35, 479, 80, 2, 100, 732, 30, 130, 746, 484, 6, 268, 2118, 47, 39, 648, 106, 23, 10, 865, 52, 7, 276, 2116, 1036, 44, 21, 507, 47, 39, 2114, 21, 2, 160, 7, 165, 3049], [74, 123, 31, 136, 14, 421, 83, 275, 498, 96, 68, 8, 21, 99, 43, 969, 251, 2, 3, 237, 1366, 2, 269, 275, 136, 237, 2, 485, 34, 68, 8, 84, 2, 353, 276, 14, 574, 2, 1424, 159, 332, 104, 74, 123, 1038, 1598, 74, 56, 410, 416, 512, 1153, 913, 682, 2721, 1154, 665, 18, 3, 123, 37, 530, 54, 2, 528, 7, 211, 140, 407, 36, 3, 40, 142, 2, 176, 2, 2721, 103, 18, 481, 8, 303, 57, 333, 695, 449, 695, 225, 20, 186, 263, 160, 127, 449, 85, 52, 62, 220, 357, 304, 12, 116, 18, 3, 123, 512, 79, 15, 79, 68, 8, 303, 12, 83, 89, 21, 1185, 2, 769, 1039, 10, 3, 58, 7, 65, 61, 1479, 18, 3, 74, 141, 402, 8, 614, 85, 23, 2720, 68, 15, 52, 184, 52, 512, 26, 26, 585, 474, 8, 15, 68, 21, 72, 15, 74, 123, 39, 3, 15, 629, 43, 945, 2, 517, 15, 74, 970, 8, 15, 85, 74, 39, 21, 43, 945, 454, 68, 367, 6, 8, 303, 546, 14, 513, 586, 18, 3, 367, 7, 552, 2, 3, 404, 20, 34], [61, 94, 1668, 1668, 48, 531, 75, 112, 12, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 266, 152, 48, 9, 16, 9, 17, 51, 187, 21, 170, 49, 105, 10, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 89, 48, 38, 81, 60, 16, 16, 9, 17, 81, 60, 202, 9, 16, 9, 17, 48, 129, 156, 86, 57, 17, 16, 9, 17, 194, 281, 4, 17, 16, 9, 17, 282, 25, 17, 16, 9, 17, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 69, 34, 188, 92, 300, 92, 69, 92, 69, 188, 92, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 256, 298], [27, 2, 95, 158, 15, 55, 101, 1, 1, 49, 27, 2, 95, 158, 33, 15, 32, 516, 3, 391, 13, 59, 8, 2495, 1, 1, 54, 1480, 10, 343, 307, 935], [79, 13, 25, 79, 13, 25], [1040, 383, 7795, 7796, 236, 98, 5017, 24, 868, 383, 1206, 3, 376, 197, 63, 1478, 1, 1367, 7, 4079, 7797, 6, 163, 1, 172, 283, 32, 6, 2119, 1, 185, 35, 14, 1040, 283, 73, 108], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 25, 3, 13, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [27, 2, 176, 2, 74, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2273, 2274, 111, 2273, 2274], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 1806, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2273, 2274, 55, 5018, 7798, 111, 2273, 2274, 55], [54, 173, 1368, 10, 254, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 1, 587, 992, 296, 1, 580, 1041, 65, 1016, 3, 971, 1, 2273, 2274, 55], [26, 397, 792, 37, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 7799, 7800, 3052, 2273, 2274, 111, 2273, 2274], [27, 2, 46, 2, 2496, 56, 4080, 4081, 182, 213, 130, 155, 204, 117, 107, 146, 55, 123, 2722, 4, 2, 87], [25, 3, 13, 11, 3053, 3054, 10, 181, 14, 13, 255, 3053, 3054, 181, 2, 25, 14, 73, 13, 2, 120], [13, 7801, 26, 55, 1, 1, 14, 132, 7, 25, 33, 13, 11, 26, 52], [2497, 217, 683, 562, 7, 217, 6, 172, 4, 205, 242, 1042, 2498, 1240, 2497, 217, 683, 562, 7, 217, 6, 172, 4, 205, 242, 1042, 2498, 1240], [619, 497, 8, 285, 192, 190, 1669, 52, 560, 497, 42, 45, 494, 14, 114, 619, 497, 8, 285, 192, 190, 1669, 52, 560, 497, 42, 45, 494, 14, 114], [123, 342, 5019, 2723, 2724, 123, 342, 5019, 2723, 2724], [363, 183, 946, 249, 7, 2, 33, 457, 28, 32, 54, 2, 189, 2725, 11, 600, 249, 363, 183, 946, 249, 7, 2, 33, 457, 28, 32, 54, 2, 189, 2725, 11, 600, 249], [3, 646, 39, 8, 43, 1014, 11, 472, 208, 21, 1, 1, 246, 35, 363, 50, 2, 114, 472, 646, 39, 8, 43, 1014, 11, 23, 472], [5020, 2, 100, 333, 173, 30, 130, 445, 67, 8, 134, 56, 182, 213, 130, 155, 204, 117, 107, 146, 5020, 2, 100, 333, 173, 30, 130, 445, 67, 8, 134], [27, 2, 46, 2, 162, 20, 27, 2, 46, 2, 162, 20], [378, 38, 141, 27, 2, 29, 33, 7802, 681, 11, 567, 540, 1315, 10, 116, 1425, 85, 106, 54, 2, 106, 2, 7803, 5018, 7804, 49, 7805, 7806, 243, 550, 29, 2, 116, 208], [191, 217, 8, 45, 191, 217, 8, 45], [260, 20, 15, 374, 37, 111, 1, 1, 2726, 479, 2, 236, 2499, 4, 260, 20, 30, 131, 221, 1, 1, 3421, 5021, 3421, 2727, 888, 2727, 888, 1, 1, 49, 164, 96, 37, 71], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [14, 25, 33, 15, 7, 547, 13, 1089, 2, 66, 8, 1996, 1116, 5022, 5023, 988, 501, 191, 24], [535, 9, 345, 507, 55, 1, 1, 535, 9, 345, 507, 62, 110, 39, 9, 345, 100, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 135, 750], [175, 1891, 11, 5024, 5025, 821, 65, 141, 495, 175, 1891, 11, 5024, 5025, 821, 65, 141, 495], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [41, 1009, 6, 274, 41, 1009, 6, 274], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [73, 13, 255, 32, 56, 5026, 5027, 73, 13, 255, 32, 56, 5026, 5027, 13, 255, 23, 32, 9, 345, 507, 223, 6, 1997, 4, 5028, 7, 4082, 1481], [114, 233, 681, 6, 8, 1180, 4, 457, 167, 114, 233, 864, 6, 8, 1534, 4, 33, 457, 167], [74, 123, 31, 136, 74, 751, 947, 751, 39, 9, 345, 326, 993], [27, 2, 100, 15, 26, 329, 4, 174, 573, 637, 4, 2, 76, 194, 49, 27, 2, 46, 2, 15, 21, 3422, 792, 37], [79, 32, 64, 79, 32, 64], [87, 381, 55, 1, 1, 269, 80, 662, 3, 87, 381, 615, 5029, 21, 6, 8, 1805, 1, 1, 1, 1, 1, 1, 1, 1, 135], [41, 218, 218, 174, 41, 218, 218, 174], [39, 8, 46, 87, 208, 21, 1, 1, 39, 8, 46, 3, 87, 246, 35, 363, 50, 2, 114, 21], [2728, 948, 65, 141, 2500, 53, 1321, 192, 3423, 850, 368, 7, 35, 38, 9, 3423, 1121, 2728, 948, 65, 141, 2500, 53, 1321, 192, 3423, 850, 368, 7, 35, 38, 9, 3423, 1121], [27, 2, 189, 186, 249, 39, 176, 917, 67, 39, 644, 537, 136, 91, 377, 14, 269, 3, 177, 1, 1, 85, 127, 107, 1, 1, 85, 349, 62, 438, 107, 249, 1, 1, 85, 432, 271, 113, 1, 1, 31, 665, 37, 71, 91, 377], [15, 26, 32, 64, 15, 26, 32, 64], [27, 2, 75, 463, 309, 1670, 7807, 7808, 49, 291, 292, 2729, 27, 2, 75, 463, 309, 1670, 3055, 1998, 71, 27, 2, 75, 463, 309, 1670, 111, 1999, 987, 613, 49, 27, 2, 75, 463, 7, 164, 96, 1535, 187, 25, 1480, 716, 273, 179, 31, 7809, 14, 50, 988, 18, 149, 24, 2501, 7810, 1322, 7], [24, 57, 2, 1599, 86, 7811, 7812, 83, 1, 1, 14, 50, 2, 236, 98, 3, 57, 29, 2, 33, 1599, 918, 793, 86, 1, 1, 1, 135], [58, 94, 361, 48, 531, 75, 112, 12, 124, 105, 12, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 12, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [27, 2, 95, 4, 2, 338, 27, 2, 95, 4, 2, 338], [87, 37, 329, 637, 4, 87, 37, 329, 637, 4], [1205, 660, 88, 400, 1205, 660, 88, 400], [27, 2, 29, 1590, 681, 27, 2, 29, 1590, 681], [148, 6, 343, 278, 143, 2275, 5030, 100, 6, 5031, 7, 4083, 3424, 148, 6, 343, 278, 143, 2275, 5030, 100, 6, 5031, 7, 4083, 3424], [34, 70, 10, 258, 34, 70, 10, 258], [327, 315, 160, 7, 54, 15, 70, 3425, 77, 11, 567, 655, 146, 11, 2117, 47, 99, 43, 327, 315, 160, 7, 54, 15, 70, 3425, 77, 11, 567, 655], [361, 29, 277, 7, 277, 696, 75, 12, 124, 105, 10, 361, 29, 277, 7, 277, 696, 75, 12, 124, 105, 10], [54, 13, 25, 54, 13, 25], [210, 30, 492, 1151, 10, 383, 11, 1741, 210, 30, 492, 1151, 10, 383, 11, 1741], [82, 418, 8, 267, 2, 58, 516, 1243, 76, 6, 267, 82, 418, 8, 267, 2, 58, 516, 1243, 76, 6, 267], [41, 88, 42, 290, 31, 30, 41, 7, 88, 10, 161, 86, 7, 1742, 1, 1, 331, 36, 33, 383, 1, 135], [54, 15, 13, 25, 11, 54, 15, 13, 25, 11], [110, 54, 299, 11, 3, 205, 242, 7, 686, 3426, 18, 88, 2, 106, 241, 949, 205, 869, 7, 520, 99, 54, 29, 2, 3, 520, 7, 2502, 220, 11, 130, 690, 1, 1, 1017, 2276, 1, 854, 120, 188, 309, 7, 1600, 1671, 1, 356, 1, 1, 24, 203, 1807, 986, 90, 1277], [318, 195, 42, 27, 2, 528, 822, 503, 173, 10, 417, 20, 24, 314, 318, 195, 42, 27, 2, 528, 822, 503, 173, 10, 417, 20, 24, 314, 3, 31, 6, 1800, 442, 2, 3, 119, 912, 11, 2503, 528, 47, 54, 2, 398, 210, 510, 53, 23, 6, 1278, 805, 149, 415, 195, 507, 494, 83, 7813, 6, 3, 503, 145, 2000, 171, 11, 3, 780, 101, 2, 2730, 503, 131, 4, 15, 15, 7, 21, 6, 601, 2, 43, 1601, 2, 780, 2271, 11, 83, 503, 442, 7814, 158, 15, 716, 3, 733, 417, 822, 171, 36, 44, 171, 526, 91, 123, 2, 90, 29, 183, 11, 318, 195, 1892, 53, 3, 415, 195, 1089, 2, 38, 534, 29, 2, 21, 135], [27, 2, 46, 2, 128, 126, 27, 2, 46, 2, 128, 126], [27, 2, 384, 245, 10, 24, 794, 383, 27, 2, 384, 245, 10, 24, 794, 383], [79, 13, 25, 79, 13, 25], [168, 20, 1244, 5032, 5033, 5034, 5035, 950, 951, 168, 20, 1244, 5032, 5033, 5034, 5035, 950, 951], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [1202, 98, 376, 5036, 1369, 1602, 1202, 98, 376, 5036, 1369, 1602], [620, 5037, 72, 5038, 422, 823, 1369, 1602, 620, 5037, 72, 5038, 422, 823, 1369, 1602], [295, 255, 47, 2277, 2278, 295, 255, 47, 2277, 2278], [691, 64, 55, 691, 7815, 4084, 4085, 6, 64, 77, 18, 283, 142, 49, 867, 23, 71, 10, 283, 1155, 14, 50, 5039, 5040, 994, 7816], [27, 2, 122, 2, 728, 155, 27, 2, 122, 2, 728, 155], [211, 128, 126, 211, 128, 126], [102, 2, 25, 130, 445, 368, 13, 11, 102, 2, 25, 130, 445, 368, 13, 11], [34, 70, 34, 70], [15, 26, 32, 132, 15, 26, 32, 132], [97, 29, 621, 340, 2001, 212, 384, 2001, 212, 318, 37, 51, 1426, 2, 31, 621, 340, 29, 1, 23, 6, 3, 229, 63, 1118, 2, 199, 1, 7817], [28, 219, 50, 2, 46, 2, 3, 24, 76, 28, 219, 50, 2, 46, 2, 3, 24, 76, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 24, 76, 1, 28, 328, 180, 6, 172, 5041, 5042, 46, 2, 3, 15, 26, 1, 31, 321], [54, 2, 1422, 2279, 18, 1033, 54, 2, 1422, 2279, 18, 1033], [15, 26, 13, 25, 15, 26, 13, 25], [73, 101, 222, 8, 399, 10, 553, 440, 36, 338, 73, 101, 7, 120, 222, 8, 399, 10, 553, 440, 36, 338, 10, 405, 3, 547, 440, 36, 338, 622, 464, 3, 440, 273, 429, 3, 376, 101, 131, 54, 2, 4086, 3, 73, 101, 131, 1, 1, 73, 120, 222, 42, 534, 399, 10, 15, 1, 1, 86, 630, 656], [57, 2120, 323, 343, 3056, 51, 5043, 2, 245, 57, 2120, 323, 343, 3056, 51, 5043, 2, 245, 1, 267, 2, 3, 28, 52, 137, 487, 1, 1524, 3, 2120, 889, 1, 635, 3, 28, 2, 114, 172, 1, 28, 328, 83, 6, 494, 172, 1, 31, 321], [25, 224, 11, 5044, 5045, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5044, 5045, 137, 13, 125, 20, 13, 25], [142, 4, 3, 145, 2002, 6, 75, 14, 398, 142, 4, 3, 145, 2002, 6, 75, 14, 398], [142, 6, 75, 4, 3, 376, 3057, 594, 14, 398, 11, 15, 142, 6, 75, 4, 3, 376, 3057, 594, 14, 398, 11, 15], [28, 219, 73, 279, 140, 13, 28, 219, 73, 279, 140, 13], [378, 74, 133, 102, 2, 1743, 55, 479, 2, 122, 33, 1427, 2, 74, 1743, 4, 190, 3, 177, 167, 554, 530, 54, 1279, 2, 122, 2, 23, 74, 36, 3, 52, 718, 458], [110, 97, 118, 1186, 3, 58, 10, 33, 115, 110, 97, 118, 1186, 3, 58, 10, 33, 115], [378, 46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 390, 63, 84, 2, 46, 1, 31, 321], [1808, 13, 11, 3, 459, 27, 2, 46, 2, 3, 459], [14, 25, 33, 26, 13, 28, 59, 7818], [54, 2, 280, 621, 1280, 1068, 29, 54, 2, 280, 621, 1280, 1068, 29], [1237, 3058, 7, 303, 7819, 225, 418, 365, 483, 1, 1, 14, 525, 30, 31, 96, 1, 1, 1, 1, 51, 1603, 2, 239, 3, 5046, 225, 20, 23, 664, 339, 1, 1, 14, 50, 1, 1, 450], [41, 855, 100, 41, 855, 100], [82, 20, 1428, 836, 116, 2, 463, 31, 6, 5047, 1892, 169, 124, 5048, 1, 1007, 2, 1809, 2, 82, 20, 1893, 101, 2, 114, 10, 32], [1069, 302, 4, 41, 2280, 97, 91, 143, 18, 3, 1069, 4, 41, 245, 3427, 4, 3, 239], [79, 13, 25, 79, 13, 25], [97, 122, 2, 58, 1123, 4, 1153, 97, 29, 15, 1153, 58, 824, 318, 58, 254, 29, 6, 45, 494, 1124, 7820, 890, 7821, 25, 273, 5049, 443, 195, 952, 138], [307, 520, 719, 5050, 89, 8, 134, 5051, 5050, 8, 45], [131, 81, 11, 190, 131, 81, 11, 190], [78, 5052, 651, 12, 190, 271, 6, 75, 112, 10, 78, 5052, 651, 12, 190, 271, 6, 75, 112, 10], [190, 24, 1669, 3428, 734, 5053, 112, 49, 105, 10, 190, 24, 1669, 3428, 734, 5053, 112, 49, 105, 10], [32, 64, 32, 64], [27, 2, 392, 4, 2, 3, 76, 110, 49, 8, 84, 2, 392, 1186, 76, 30, 33, 28, 56, 7, 13, 21, 530, 626, 13, 67, 21, 6, 3, 197, 820, 199], [299, 523, 4, 3059, 9, 982, 1894, 138, 3060, 221, 138, 52, 56, 3060, 28, 56, 7822, 7823, 271, 90, 953, 233, 9, 1094, 469, 149, 28, 16, 9, 16, 595, 93, 95, 91, 96], [2731, 405, 443, 1069, 2731, 405, 443, 1069], [52, 3061, 11, 4087, 5054, 7824, 208, 491, 47, 275, 52, 638, 11, 4087, 5054, 1810, 4, 212, 10, 3, 177, 142, 142, 56, 5055, 200, 1018, 9, 7825, 416, 222, 2121, 14, 106, 3, 807, 7, 778, 10, 307, 935, 30, 450], [27, 2, 46, 2, 115, 32, 64, 77], [307, 29, 2, 5056, 5057, 659, 111, 185, 35, 14, 50, 169, 72, 37, 71, 78, 659, 97, 410, 143, 5058, 2, 7826, 672, 9, 5059, 36, 283, 672, 9, 672, 1482, 285, 343, 307], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 563, 168, 20, 1895, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 1895, 262, 22, 4, 5, 19, 12], [324, 171, 1211, 982, 167, 790, 2259, 98, 324, 171, 1211, 982, 167, 790, 2259, 98, 1, 23, 6, 1278, 4088, 30, 1125, 324, 440, 1892, 4089, 443, 1482, 42, 275], [211, 168, 20, 2723, 2724, 211, 168, 20, 2723, 2724], [29, 2, 1798, 3429, 1798, 40, 14, 269, 29, 2, 96, 254, 2, 239, 3, 610, 1, 1798, 3429, 1798], [58, 94, 190, 48, 6, 75, 112, 5060, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 5060, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [2281, 271, 12, 190, 58, 6, 75, 190, 2281, 271, 12, 190, 58, 6, 75, 28, 3062, 83, 3, 529, 42, 75, 15, 41, 155, 2504], [40, 369, 286, 375, 6, 40, 369, 286, 375, 6], [270, 1809, 8, 2122, 55, 1, 1, 622, 3, 96, 167, 554, 1, 1, 1, 1, 1156], [40, 553, 1184, 463, 10, 78, 6, 313, 511, 1035, 6, 112, 10, 40, 553, 1184, 463, 10, 78, 6, 313, 511, 1035, 6, 112, 10], [457, 39, 8, 45, 457, 1019, 3, 442, 3, 136, 183, 1014, 3, 3430, 107, 67, 114, 3, 15, 7827, 9, 131, 39, 114, 363, 50], [168, 20, 89, 8, 70, 541, 2123, 168, 20, 89, 8, 70, 541, 2123], [308, 586, 3, 527, 287, 18, 28, 59, 5061, 2, 5062, 437, 218, 308, 586, 3, 527, 287, 18, 28, 59, 5061, 2, 5062, 437, 218], [193, 30, 5063, 55, 3, 32, 5063, 6, 511, 64, 77, 3, 28, 97, 95, 10, 3, 52, 14, 50, 3431, 3432, 2282, 1604], [60, 94, 361, 1212, 24, 262, 1187, 1212, 856, 618, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [457, 1536, 592, 7828, 89, 8, 134, 37, 71, 51, 335, 2, 100, 3, 652, 1, 652, 639, 1, 35, 97, 322, 3, 1605, 652, 1, 709, 1, 1472, 131, 6, 346, 62, 1213, 63, 8, 2495, 66, 217, 1, 1, 2505, 65, 1095, 2, 517, 919, 91, 163, 181, 30, 3, 222], [672, 982, 4090, 3063, 3064, 55, 14, 509, 175, 366, 781, 35], [54, 519, 870, 11, 33, 148, 54, 519, 870, 11, 33, 148], [370, 74, 1811, 9, 345, 1370, 370, 74, 1811, 9, 345, 1370], [5, 1417, 22, 4, 5, 19, 12, 5, 1417, 22, 4, 5, 19, 12], [79, 64, 111, 177, 28, 59, 5064, 6, 64, 611, 50, 28, 59, 7829], [131, 97, 43, 1606, 131, 97, 43, 1606, 3, 348, 6, 12, 175, 4091, 348, 56, 7830, 287, 42, 331, 36, 7831, 287, 42, 2106, 4, 1607, 7, 362, 1149], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [15, 5065, 5066, 3065, 4092, 1043, 5067, 15, 5065, 5066, 3065, 4092, 1043, 5067, 1, 1, 5068, 53, 28, 486, 4, 257, 14, 622, 2, 7832, 258], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 513, 169, 1483, 13, 10, 13, 125, 20, 27, 2, 513, 169, 1483, 13, 10, 13, 125, 20, 129, 107, 513, 481, 42, 8, 5069, 4, 3, 513, 218, 14, 114], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [74, 31, 104, 173, 185, 8, 43, 727, 311, 2, 72, 37, 10, 40, 1020, 10, 227], [82, 1323, 31, 1371, 915, 11, 82, 20, 39, 304, 91, 377, 11, 1154], [191, 217, 8, 45, 55, 1, 1, 191, 217, 3066, 4093, 8, 45, 4, 33, 142, 1, 1, 30, 450], [73, 13, 8, 45, 4, 76, 55, 1, 1, 39, 35, 14, 50, 80, 2, 995, 73, 13, 2, 33, 32, 1, 1, 576, 38, 274, 33, 13, 184, 1067, 241, 7833, 62, 207, 1, 276, 112, 44, 21, 89, 8, 134, 1, 1, 33, 7834, 6, 44, 3, 73, 13, 63, 3, 179, 265, 4, 3, 887, 1324, 1311, 62, 207, 1, 1, 479, 2, 95, 158, 13, 125, 20, 13, 120, 67, 573, 143, 2732, 1, 1, 1, 1, 5070, 450], [363, 946, 249, 7, 2, 33, 28, 56, 5071, 35, 54, 2, 189, 2725, 11, 1325, 249, 363, 946, 249, 7, 2, 33, 28, 56, 5071, 35, 54, 2, 189, 2725, 11, 1325, 249], [1009, 98, 33, 1608, 236, 11, 245, 111, 21, 4094, 1, 1, 259, 265, 2, 1372, 384, 104, 295, 11, 1009, 98, 33, 1608, 236, 11, 245, 1, 1, 1, 363, 326, 33, 96, 853, 1, 1, 340, 7, 131, 1214, 36, 104, 200, 153, 6, 275, 2, 280, 57, 10, 104, 235, 108, 99, 199, 340, 1, 1, 6, 23, 108, 24, 868, 917, 1, 1, 6, 23, 857, 18, 104, 376, 108, 917, 1, 1, 68, 16, 14, 1088, 24, 131, 65, 141, 1157, 36, 3, 376, 108, 544, 480, 280, 36, 609, 181, 1091, 672, 837, 1, 1, 11, 508, 108, 14, 552, 631, 455, 1281, 66, 120, 2, 3, 404, 20, 34, 7835, 1, 1, 14, 1088, 3, 108, 6, 24, 495, 11, 57, 280, 1, 1, 68, 21, 6, 8, 24, 495, 108, 14, 129, 3, 237, 1, 1, 11, 50, 30, 480, 280, 10, 508, 108, 14, 129, 3, 108, 69, 35, 183, 622, 2, 3, 5072, 1738, 11, 1477, 1, 1, 65, 3, 480, 280, 141, 402, 10, 104, 108, 917, 649, 1, 1, 1, 135], [27, 2, 46, 2, 15, 26, 27, 2, 46, 2, 15, 26], [735, 570, 314, 208, 83, 39, 35, 50, 2, 735, 3, 570, 314, 18, 4095, 11], [27, 2, 46, 2, 79, 27, 2, 46, 2, 79], [1215, 2506, 102, 7836, 55, 1, 1, 38, 891, 2, 312, 481, 4, 33, 15, 623, 67, 326, 972, 1, 14, 386], [82, 20, 909, 31, 7837, 7838, 124, 291, 292, 7839, 550, 82, 20, 909, 31, 208, 491, 3067, 14, 326, 96, 3, 464, 18, 82, 20, 31, 2733, 514, 909, 14, 50, 80, 2, 353, 3, 179], [27, 2, 95, 4, 2, 128, 126, 27, 2, 95, 4, 2, 128, 126], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 1216, 98, 440, 10, 149, 7, 1148, 681, 27, 2, 1216, 98, 440, 10, 149, 7, 1148, 681, 4, 338], [25, 195, 13, 25, 195, 13], [403, 704, 637, 4, 2, 1590, 212, 403, 704, 637, 4, 2, 1590, 212], [1070, 10, 15, 26, 547, 548, 1070, 10, 15, 26, 547, 548], [13, 25, 102, 13, 25, 102], [238, 1034, 10, 90, 113, 892, 6, 75, 112, 124, 238, 1034, 10, 90, 113, 892, 6, 75, 112, 124, 1, 954, 3433, 2507, 60, 59, 6, 7840], [13, 25, 13, 25], [14, 525, 5073, 5074, 4, 637, 158, 260, 20, 36, 88, 91, 163, 167, 554, 180, 63, 27, 2, 29, 137, 283, 79, 871, 14, 525, 5073, 5074, 4, 637, 158, 260, 20, 36, 88, 91, 163, 167, 554, 180, 63, 27, 2, 29, 137, 283, 79, 871], [41, 984, 10, 235, 1484, 41, 984, 10, 235, 1484], [893, 672, 10, 86, 500, 30, 41, 893, 672, 10, 86, 500, 30, 41], [41, 984, 31, 41, 984, 31], [27, 2, 326, 2731, 10, 15, 27, 2, 326, 2731, 10, 15], [162, 20, 8, 45, 3, 162, 20, 297, 10, 3, 1812, 347, 3068, 2, 1896, 167, 51, 100, 3, 1418, 7, 7841, 681, 7, 89, 680, 39, 8, 239, 143, 1418, 915], [41, 99, 8, 100, 110, 49, 27, 2, 100, 41, 49, 164, 3, 37, 71, 1, 73, 2508, 347, 11, 3, 1117, 97, 43, 350, 1, 1, 38, 248, 1801, 3, 142, 1, 38, 248, 937, 41, 4, 2003, 1042, 1, 38, 248, 137, 3, 736, 733, 11, 41, 1, 1, 14, 386], [54, 29, 2, 15, 5075, 54, 29, 2, 5075, 2, 322, 1537, 11, 21, 570, 1672, 330, 653, 7, 268, 23, 29, 12, 3, 591, 18, 29, 664, 2, 43, 1326, 257, 54, 66], [13, 25, 11, 5076, 5077, 13, 25, 11, 5076, 5077], [768, 4096, 651, 12, 90, 6, 75, 112, 124, 768, 4096, 651, 12, 90, 6, 75, 112, 124, 238, 1609, 4096, 10, 3069, 7, 4097, 6, 75, 112, 124], [32, 602, 7, 54, 2, 132, 32, 602, 7, 54, 2, 132], [5078, 10, 34, 9, 5078, 10, 34, 9], [162, 20, 414, 392, 4, 162, 20, 705, 27, 2, 91, 414, 2734, 335, 2, 29, 7, 384, 167, 96, 21, 99, 8, 1044, 77, 18, 23, 239, 1, 1, 1, 1, 1, 1, 1, 135], [76, 13, 8, 45, 611, 295, 2, 353, 23, 123], [8, 84, 2, 322, 632, 4, 3, 555, 810, 4, 128, 126, 8, 84, 2, 322, 632, 4, 3, 555, 810, 4, 128, 126, 91, 163, 684], [307, 57, 1813, 111, 330, 72, 7842, 2509, 10, 3, 3434, 12, 3, 591, 18, 330, 283, 41, 4, 33, 41, 67, 172, 21, 1326, 330, 268, 72, 57, 44, 21, 63, 172, 2106, 10, 128, 126, 67, 526, 91, 1096, 51, 413, 10, 3, 229, 39, 38, 283, 57, 1368, 294], [29, 2, 5079, 223, 128, 126, 2735, 2736, 5079, 53, 113, 120, 4, 90, 38, 1312, 911, 102, 29, 2, 283, 128, 126, 2, 586, 1673, 481, 389, 21, 6, 357, 584, 53, 332, 181, 96, 3070, 3071, 49, 550, 2735, 2736, 128, 126, 11, 191, 2483, 99, 43, 4098, 11, 540, 7843, 35, 264, 1674, 98, 10, 23, 2, 91, 68, 151, 42, 143, 287, 35, 54, 7844, 2718, 2737, 7, 949, 120, 181, 49, 3070, 3071, 2735, 2736, 128, 126, 11, 191, 2483, 99, 43, 4098, 11, 540, 2735, 2736, 32, 65, 141, 584, 36, 3, 202, 675, 423, 128, 126, 11, 191, 99, 43, 4098, 11, 540, 35, 243, 3, 2510, 1097, 18, 83, 481, 1071, 2, 423, 128, 126, 11, 191, 68, 35, 246, 265, 2, 504, 505, 2511, 3, 483, 5080, 1538, 35, 39, 586, 1429, 481, 2, 517, 271, 35, 39, 183, 129, 104, 718, 2, 3072, 3435, 2, 517, 128, 126, 11, 191, 1097, 169, 540, 2735, 2736, 128, 126, 11, 191, 99, 43, 2124, 584, 465, 2, 2735, 2736, 128, 126, 11, 191, 12], [97, 100, 333, 287, 36, 40, 838, 5081, 780, 628, 780, 839, 7, 5082, 5083, 39, 97, 100, 333, 287, 36, 40, 838, 5081, 780, 628, 780, 839, 7, 5082, 5083, 39, 287, 42, 278, 2, 100, 62, 99, 7845], [97, 176, 2, 1610, 426, 33, 809, 10, 1814, 97, 176, 2, 1610, 426, 33, 809, 10, 1814], [97, 176, 36, 79, 30, 73, 115, 63, 355, 1118, 97, 176, 36, 79, 30, 73, 115, 63, 355, 1118], [1526, 519, 31, 10, 1526, 519, 31, 10], [25, 224, 11, 4099, 4100, 137, 13, 125, 20, 13, 25, 421], [25, 3, 13, 11, 4099, 4100, 10, 15, 2502, 15, 402], [41, 6, 278, 41, 6, 278], [89, 3, 76, 5084, 3, 973, 18, 131, 44, 39, 43, 1675, 89, 3, 76, 5084, 3, 973, 18, 131, 44, 39, 43, 1675], [1203, 439, 34, 9, 65, 141, 625, 2, 5085, 5086, 7846, 7847, 246, 265, 2, 1203, 3, 71, 439, 34, 9, 65, 141, 625, 2, 5085, 5086], [13, 25, 13, 25], [32, 1061, 64, 77, 32, 1061, 64, 77, 1, 59, 274, 36, 24, 2, 24], [13, 25, 13, 25], [32, 64, 32, 64], [403, 85, 683, 89, 3436, 3437, 65, 3436, 3437, 65, 683], [27, 2, 46, 2, 82, 20, 27, 2, 46, 2, 82, 20], [13, 119, 102, 13, 119, 102], [205, 869, 611, 2125, 205, 869, 611, 2125], [25, 3, 13, 11, 5087, 5088, 10, 15, 160, 1245, 110, 27, 2, 46, 15, 52, 82, 20, 26], [1808, 46, 136, 11, 338, 1808, 46, 136, 11, 338], [25, 15, 26, 13, 11, 5089, 25, 15, 26, 13, 11, 5089], [27, 2, 46, 2, 3, 459, 1808, 691, 13], [25, 224, 11, 5087, 5088, 137, 13, 125, 20, 13, 25, 53, 332, 52, 2512, 172, 38, 25, 3, 13, 67, 356, 27, 2, 46, 15, 52, 26], [1808, 691, 13, 27, 2, 46, 2, 3, 459], [13, 25, 11, 5090, 5091, 4, 1045, 13, 25, 11, 5090, 5091, 4, 1045], [27, 2, 199, 3438, 2004, 86, 11, 87, 497, 27, 2, 199, 3438, 2004, 86, 11, 87, 497], [2513, 181, 2514, 36, 623, 571, 18, 1815, 631, 2513, 181, 2514, 36, 623, 571, 18, 1815, 631, 118, 1676, 181, 2514, 11, 1430, 631, 36, 623, 1744, 67, 284, 38, 141, 402, 836, 1311], [128, 126, 584, 136, 55, 3, 28, 7848, 2283, 584, 136, 36, 128, 126, 576, 6, 285, 2713, 23, 136], [128, 126, 48, 102, 55, 39, 35, 206, 3, 195, 96, 2, 53, 101, 1066, 2, 3, 7849, 580, 264, 38, 3435, 195, 96, 39, 38, 1158, 29, 7850, 7851, 3073, 3074, 1897, 1898, 7852, 7853, 4101, 4102, 7854, 7855, 7856, 7857, 7858, 7859, 5092, 5093, 4103, 4104, 7860, 7861], [25, 3, 13, 11, 7862, 7863, 10, 15, 160, 15, 169, 1009, 73, 3439, 13, 1431, 29, 15, 454, 458, 1373, 1282, 11, 44], [7864, 36, 190, 113, 113, 54, 4, 7865, 3, 179, 15, 7866, 55, 83, 33, 7867, 7868, 7, 7869, 54, 11, 3, 710, 4105, 15, 3440, 11, 113, 113, 454], [193, 30, 212, 3436, 3437, 193, 30, 212, 3436, 3437], [27, 2, 46, 2, 15, 2515, 13, 25, 524], [27, 2, 46, 2, 115, 1808, 691, 13], [27, 2, 1539, 7, 280, 87, 381, 27, 2, 1539, 7, 280, 87, 381], [1327, 623, 4, 37, 233, 1327, 623, 4, 37, 233, 14, 386, 709, 11, 37, 7, 715, 623], [280, 2126, 2005, 255, 162, 3441, 3441, 5094, 2516, 2517, 280, 2126, 2005, 255, 162, 3441, 3441, 5094, 2516, 2517], [223, 460, 7870, 5095, 5096, 851, 5095, 5096, 851, 223, 142, 29, 6, 2006, 14, 90, 911, 29, 251, 510, 283, 372, 483, 30, 24, 6], [5097, 58, 94, 541, 858, 4, 7871, 5097, 58, 94, 541, 858, 2504, 7, 155, 600, 42, 952, 129], [82, 20, 429, 71, 2, 83, 195, 18, 596, 687, 169, 3, 397, 112, 82, 20, 195, 18, 596, 687, 1092, 44, 82, 20, 429, 71, 169, 3, 397, 442, 2, 3, 78, 40, 474, 78, 1, 14, 91, 163, 71], [14, 32, 2005, 1540, 148, 255, 4106, 162, 840, 4107, 32, 255, 5098, 5099, 6, 202, 14, 2518, 7872, 14, 1540, 148, 255, 175, 162, 840, 4107, 32, 255, 5098, 5099, 6, 202, 14, 7873, 1611, 66, 4101, 4102, 331, 2738, 3075, 2, 1485, 1486, 704, 243, 14, 32, 2005, 1540, 148, 255, 4106, 162, 840, 4107, 32, 7874, 7875, 6, 202, 14, 616, 14, 7876, 7, 50, 100, 3, 7877, 44, 410, 556, 227], [149, 120, 1881, 4, 191, 1541, 204, 3, 177, 149, 2519, 97, 91, 3, 149, 120, 1881, 4, 191, 1541, 204, 5100, 5101, 5102, 5103, 5104, 7878, 3442, 3443, 14, 114, 423, 299, 7, 609, 30, 3076, 2, 553], [25, 224, 11, 5105, 5106, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5105, 5106, 137, 13, 125, 20, 13, 25], [193, 30, 1432, 1542, 1543, 193, 30, 1432, 1542, 1543], [295, 255, 1476, 5107, 5108, 2723, 2724, 295, 255, 1476, 5107, 5108, 2723, 2724], [5109, 1433, 480, 74, 47, 5110, 5111, 5109, 1433, 480, 74, 47, 5110, 5111], [640, 214, 2127, 75, 24, 168, 168, 113, 55, 3444, 36, 24, 168, 113, 23, 181, 11, 1544, 44, 47, 38, 640, 214, 2127, 75, 83, 7879, 497, 7, 415, 497, 42, 8, 327, 825, 5112, 2, 92, 11, 663, 7, 11, 7880, 3, 123, 5112, 9], [553, 29, 8, 45, 55, 39, 172, 322, 553, 67, 8, 84, 2, 366, 158, 143, 2739, 91, 96, 464, 37, 51, 1125, 143, 198, 149, 120, 24, 7881, 1487], [553, 29, 11, 149, 2519, 101, 33, 149, 2519, 42, 8, 697, 423, 101, 239, 4, 553, 849, 188, 29, 284, 54, 21, 2, 1216, 131, 548, 39, 35, 14, 920, 188, 29, 11, 5100, 5101, 5102, 5103, 5104, 7882, 3442, 3443], [4108, 5113, 1326, 4108, 5113, 1326, 752, 717, 161, 569, 178, 296, 99, 43, 30, 35, 1015, 587, 992, 296, 580, 1041, 65, 1016, 3, 971, 2520, 55, 54, 104, 50, 33, 87, 5114, 4, 41, 6, 1326, 55, 54, 104, 50, 33, 87, 5114, 4, 41, 6, 1326, 921, 922, 55], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [1545, 5115, 37, 71, 28, 6, 8, 3077, 4, 3, 632, 839, 743, 14, 129, 1545, 522, 33, 28, 59, 7883, 356, 3078, 4, 5116, 205, 869, 11, 1328, 1374, 7, 63, 1098, 2, 243, 211, 1545, 217, 400, 4109, 85, 742, 534, 588, 30, 96, 2128, 51, 170, 1545, 7, 322, 33, 79, 28, 56, 7, 79, 13, 384, 177, 37, 71, 28, 6, 8, 3077, 4, 3, 632, 839, 743, 14, 129, 1545, 522], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [214, 2521, 512, 1434, 1240, 259, 9, 345, 133, 406, 214, 2521, 512, 1434, 1240, 259, 9, 345, 133, 406], [14, 280, 28, 5117, 251, 2, 5118, 12, 15, 14, 280, 28, 5117, 251, 2, 5118, 12, 15], [15, 119, 18, 73, 2007, 8, 45, 4, 3445, 469, 5119, 55, 177, 123, 1, 311, 2, 1099, 521, 10, 20, 11, 72, 268, 127, 248, 2, 70, 3, 2007, 4, 3445, 67, 51, 2129, 3, 666, 21, 89, 8, 134, 37, 71, 469, 5119, 97, 43, 274, 7884, 2284, 11, 1019, 143, 5120, 288, 2, 795, 44, 187, 44, 10, 165, 851, 389, 7, 21, 1067, 201, 73, 1677, 6, 44, 47, 38, 72, 127, 327, 1, 15, 131, 4, 732, 21, 6, 1099, 127, 3446, 627, 53, 693], [28, 1811, 3447, 230, 28, 1811, 3447, 230], [5121, 5122, 4, 113, 190, 9, 446, 2, 3, 78, 4, 1046, 7885, 78, 4, 1046, 5121, 5122, 4, 113, 190, 9, 446, 2, 3, 78, 4, 1046, 284, 42, 867, 3, 71], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [419, 88, 88, 419, 88, 88], [29, 2, 254, 55, 1, 1, 308, 102, 2, 583, 29, 2, 254, 1, 1, 3448], [308, 206, 28, 59, 5123, 2, 15, 191, 1899, 101, 4, 404, 20, 20, 308, 206, 28, 59, 5123, 2, 15, 191, 1899, 101, 4, 404, 20, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [527, 438, 346, 51, 504, 377, 527, 438, 346, 51, 504, 377], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [2130, 909, 447, 521, 2, 677, 1318, 4, 88, 2130, 909, 447, 521, 2, 677, 1318, 4, 88], [78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 49, 105, 10, 78, 3449, 202, 675, 651, 4, 3450, 2740, 6, 75, 112, 49, 105, 10], [6, 230, 172, 53, 3, 28, 1359, 6, 230, 172, 53, 3, 28, 1359], [29, 2, 40, 838, 7886, 14, 583, 315, 29, 2, 28, 7887, 11, 218, 779, 4, 3, 1488], [3, 28, 32, 6, 230, 172, 56, 4110, 4111, 182, 213, 130, 155, 204, 117, 107, 146, 3, 28, 32, 6, 230, 172], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [116, 131, 11, 190, 2285, 42, 346, 83, 116, 131, 65, 141, 346, 112, 576, 1272, 5124, 131, 6, 1008, 524, 11, 3, 179, 894, 1329, 7888], [58, 94, 3451, 190, 856, 1159, 6, 75, 112, 49, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [110, 49, 27, 2, 100, 3, 128, 126, 229, 667, 66, 33, 1487, 5125, 56, 7889, 7890, 182, 213, 130, 155, 204, 117, 107, 146, 49, 27, 2, 100, 3, 128, 126, 229, 667, 66, 33, 1487, 5125, 2498, 195, 7891, 128, 126, 24, 203, 841], [39, 8, 1273, 2, 13, 125, 20, 13, 120, 2, 119, 33, 13, 56, 5126, 5127, 182, 213, 130, 155, 204, 117, 107, 146, 39, 8, 1273, 2, 13, 125, 20, 13, 120, 2, 119, 33, 13], [841, 7892, 7893, 55, 611, 206, 33, 56, 4, 2, 23, 101, 183, 54, 2282, 753, 18, 23, 112, 38, 4112, 23, 101, 169, 7894, 5128, 1126, 24, 30, 450], [5, 26, 842, 22, 4, 5, 19, 12, 5, 26, 842, 22, 4, 5, 19, 12], [939, 174, 41, 14, 269, 222, 18, 3, 31, 4113, 4114, 111, 4113, 4114, 4115, 4116, 4113, 4114, 59], [175, 40, 749, 191, 5129, 5130, 175, 40, 749, 191, 5129, 5130], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [2131, 299, 713, 1678, 2131, 299, 713, 1678], [209, 41, 706, 638, 1031, 384, 62, 320, 475, 112, 2741, 14, 114, 7895, 1100, 265, 7896, 174, 7, 430, 4117, 38, 72, 29, 603, 44, 855, 134, 30, 5131], [34, 70, 10, 258, 34, 70, 10, 258], [397, 792, 37, 10, 15, 26, 397, 792, 37, 10, 15, 26, 28, 7897, 7898, 486, 10, 1155, 18, 28], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [79, 32, 64, 79, 32, 64], [81, 10, 24, 794, 235, 86, 81, 10, 24, 794, 235, 86], [2522, 7, 226, 11, 3452, 3453, 14, 189, 72, 2522, 7, 226, 11, 3452, 3453, 7899, 3, 3079, 4, 226, 6, 2, 43, 83, 3454], [7900, 11, 2132, 520, 14, 1040, 3, 4118, 923, 96, 11, 3, 2132, 520, 284, 54, 2, 43, 202, 36, 1047, 12, 49, 5132, 2, 12, 124, 5132], [97, 118, 158, 88, 346, 3, 149, 7, 1148, 681, 36, 3, 1489, 212, 184, 1435, 29, 2, 88, 207, 526, 38, 29, 2, 88], [14, 269, 29, 110, 54, 29, 2, 3, 177, 993, 14, 91, 7901, 7902, 11, 631, 7903, 7904, 24, 90, 113, 1064], [34, 70, 10, 258, 34, 70, 10, 258], [27, 2, 46, 2, 128, 126, 13, 25, 27, 2, 46, 2, 128, 126, 13, 25], [83, 33, 497, 2, 33, 138, 86, 42, 601, 2, 432, 1330, 21, 6, 8, 516, 3455, 83, 33, 497, 2, 33, 138, 86, 42, 601, 2, 432, 1330, 21, 6, 8, 516, 3455], [149, 594, 2008, 10, 1246, 8, 3080, 2, 1325, 4, 184, 3, 32, 6, 1160, 924, 21, 429, 83, 149, 594, 2008, 10, 1246, 8, 3080, 2, 1325, 4, 184, 3, 32, 6, 1160, 91, 163, 57, 446, 1161, 698, 11, 32], [115, 8, 1679, 1375, 859, 115, 8, 1679, 1375, 859], [290, 1237, 699, 2, 1060, 7905, 6, 290, 1237, 699, 2, 1060, 12, 194, 1589, 7, 90], [110, 97, 95, 158, 15, 110, 248, 3456, 3, 142, 7, 248, 637, 158, 517, 142, 7, 118, 339, 167], [102, 2, 25, 130, 445, 368, 13, 11, 130, 10, 1155, 18, 24, 203, 181, 124, 291, 292, 7906, 102, 2, 25, 130, 445, 368, 13, 11, 720, 313, 102, 2, 25, 28, 13, 3, 177, 28, 4, 104, 668, 65, 653, 13, 25, 43, 1124, 11, 423, 32, 648, 56, 7907, 372, 56, 7908, 1247, 1331, 23, 28, 2, 1217, 23, 102, 6, 1490, 389, 1436, 68, 35, 38, 1218, 44, 23, 6, 860, 102, 199, 104, 200, 522, 212, 174, 79, 1491, 79, 1122, 449, 2, 25, 3, 13, 11, 23, 28, 479, 2, 270, 35, 195, 25, 423, 918, 224, 114, 77, 288, 35, 39, 747, 13, 25, 11, 195, 4, 104, 668, 30, 355, 532, 1492, 604, 24, 203, 23, 71, 63, 331, 36, 72, 1546, 57, 196, 14, 106, 8, 853, 2, 23, 71], [90, 173, 78, 40, 65, 22, 531, 254, 90, 173, 78, 40, 65, 22, 531, 254], [27, 2, 452, 3, 324, 171, 27, 2, 452, 3, 324, 171], [339, 121, 533, 339, 121, 533], [132, 32, 3, 28, 5133, 5134, 59, 5135, 111, 101, 185, 35, 14, 132, 32, 3, 28, 5133, 5134, 59, 5135, 732, 23, 32, 63, 562, 14, 946, 3, 29, 11, 3, 32, 3, 120, 23, 28, 6, 7909, 7910, 14, 129, 7911, 62, 68, 35, 38, 316, 2523, 14, 955, 80], [27, 2, 46, 2, 41, 5136, 5137, 124, 291, 292, 7912, 2729, 123, 30, 41, 21, 6, 257, 383, 5136, 5137, 291, 292, 123, 30, 41, 55, 97, 170, 41, 383], [397, 792, 37, 4, 15, 397, 792, 37, 4, 15], [41, 984, 31, 41, 984, 31], [3, 691, 4119, 99, 43, 304, 2, 46, 2, 24, 192, 1045, 55, 3, 691, 4119, 99, 43, 304, 2, 46, 2, 24, 192, 1045, 2489, 44, 47, 54, 2, 544, 23, 28, 809, 10, 3, 1045, 605, 207, 14, 320, 34, 2, 3, 1045, 101, 411, 283, 32, 4, 202, 675, 6, 8, 64, 3081, 3082, 120, 2133, 5138, 5139, 72, 3081, 3082, 2286, 13, 111, 39, 35, 14, 25, 33, 32, 207, 39, 46, 257, 33, 28, 6, 4119, 33, 372, 13, 63, 7913, 21, 2134, 134, 207, 1031, 46, 12, 3, 1127], [1528, 29, 64, 5140, 64, 80, 77, 248, 601, 1186, 13, 125, 20, 2, 25, 33, 13, 67, 5140, 1219, 1332, 39, 35, 14, 132, 33, 32, 510], [27, 2, 122, 2, 3, 490, 155, 155, 133, 89, 8, 1242, 2, 43, 45, 519], [27, 2, 392, 4, 260, 20, 55, 49, 27, 2, 392, 158, 260, 20, 39, 612, 14, 525, 80, 30, 33, 391, 28, 56, 7, 13, 38, 1493, 1281, 158, 21, 389], [1205, 660, 88, 672, 8, 323, 10, 41, 1205, 660, 88, 672, 8, 323, 10, 41], [27, 2, 29, 15, 294, 33, 76, 133, 45, 36, 490, 244, 76, 97, 29, 15, 737, 164, 397, 792, 37, 4120, 2287, 2, 21, 101, 12, 90], [235, 108, 453, 55, 1033, 246, 35, 14, 43, 207, 450, 7, 1040, 3, 73, 383, 18, 2742, 2743, 24, 7914, 222, 14, 91, 181, 96, 458], [175, 1891, 11, 4121, 4122, 821, 65, 141, 495, 55, 1, 1, 841, 1891, 11, 4121, 4122, 821, 65, 141, 495], [13, 25, 291, 292, 124, 5141, 5142, 7915, 7916, 5141, 5142, 104, 79, 13, 6, 2482, 754, 111, 1680, 21, 6, 72, 1437, 312, 47, 97, 946, 3, 116, 1538, 746, 35, 884, 251, 36, 1316, 14, 583, 166, 121, 251, 47, 99, 25, 3, 13, 11, 35], [13, 25, 13, 25], [15, 26, 13, 25, 15, 26, 13, 25], [15, 56, 7917, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 7918, 454, 458, 7919, 985, 7920], [87, 445, 381, 984, 27, 2, 1539, 87, 381, 1, 87, 790, 984], [27, 2, 122, 2, 24, 314, 149, 676, 8, 45, 27, 2, 122, 2, 24, 314, 149, 676, 8, 45], [339, 121, 339, 121], [27, 2, 122, 2, 188, 92, 1484, 56, 7921, 182, 213, 130, 155, 204, 117, 107, 214, 146, 27, 2, 122, 2, 155, 137, 1484, 200], [13, 65, 562, 7922, 63, 77, 18, 174, 11, 836, 116, 7, 219, 967, 30, 637, 251, 4, 2, 3, 115, 172, 180, 6, 4, 174, 12, 3, 1127], [146, 692, 20, 13, 1220, 56, 7923, 182, 213, 130, 155, 204, 117, 107, 214, 146, 692, 20, 13, 1220], [15, 5143, 5144, 7, 5145, 503, 8, 3457, 10, 666, 15, 666, 5144, 441, 503, 7, 5145, 1248, 503, 42, 67, 83, 2007, 42, 1063, 91, 1210, 4, 57, 163, 54, 666, 2, 320, 2, 117, 11, 3083], [185, 8, 199, 7924, 220, 412, 7, 204, 1899, 15, 535, 212, 37, 71, 21, 63, 8, 285, 2, 2009, 3, 7925, 7, 423, 1494, 1, 39, 170, 7926, 3, 136, 198, 53, 21, 542, 1048, 143, 131], [166, 116, 119, 111, 101, 96, 6, 3, 459, 1816, 2, 43, 4123, 11, 166, 116, 119, 510, 1662, 68, 35, 38, 143, 498, 1021, 200, 5146, 85, 6, 3, 93, 4124, 5147, 116, 3045, 4, 851, 51, 89, 21, 3055, 124, 1547, 2117, 4125, 51, 89, 21, 591, 177, 116, 119, 49, 990, 4125, 448, 7, 85, 99, 43, 952, 83, 15, 195, 83, 15, 571, 1161, 15, 474, 872, 88, 431, 549, 1245, 85, 6, 3, 709, 83, 15, 571, 755, 43, 706, 514, 116, 119, 2, 2288, 131, 7927, 498, 1495, 1438, 5148, 5149, 1817, 1818, 7, 58, 1249, 135], [5, 40, 5150, 636, 22, 4, 5, 19, 12, 5, 40, 5150, 636, 22, 4, 5, 19, 12], [4, 65, 3458, 167, 67, 1548, 489, 2135, 167, 207, 9, 345, 3459, 5151, 1272, 4, 65, 3458, 167, 67, 1548, 489, 2135, 167, 207, 9, 345, 3459, 5151, 1272, 86, 115, 56, 7928], [13, 25, 11, 205, 5152, 56, 5153, 5154, 182, 213, 130, 155, 204, 117, 107, 214, 146, 25, 3, 13, 11, 3460, 3461, 205, 5152], [27, 2, 46, 2, 87, 27, 2, 46, 2, 87], [148, 210, 2136, 33, 41, 7929, 451, 420, 248, 2, 715, 33, 148, 67, 21, 542, 1900, 849, 1801, 6, 10, 33, 167, 11, 534, 2524, 72, 1901, 925, 1549, 2744, 5155, 5156, 5157, 5158, 5159, 24], [496, 128, 126, 2137, 245, 4, 8, 4, 895, 424, 42, 261, 770, 4, 7930, 38, 534, 1591, 7931, 85, 284, 5160, 67, 284, 264, 43, 4, 895, 14, 322, 34, 11, 128], [27, 2, 100, 41, 27, 2, 100, 41], [138, 196, 5161, 7932, 6, 251, 4, 3, 174, 169, 532, 1162, 489, 390, 2289, 72, 138, 196, 5161, 71, 653, 2, 715, 7, 390, 187, 8, 91, 3, 71, 257], [513, 542, 134, 4, 3, 490, 74, 513, 542, 134, 4, 3, 490, 74], [15, 26, 32, 602, 77, 15, 26, 32, 602, 77], [87, 381, 206, 4, 164, 808, 36, 41, 87, 381, 206, 4, 164, 808, 36, 41], [110, 39, 122, 33, 263, 1433, 2, 3, 76, 110, 39, 122, 33, 263, 1433, 2, 3, 76, 1, 347, 7933, 8, 43, 806], [3, 13, 11, 5162, 65, 562, 596, 687, 15, 8, 45, 310, 3, 15, 6, 8, 45, 329, 1426, 2, 199, 3, 15, 217, 21, 429, 71, 163, 130, 2290, 2010, 2011, 407, 46, 22, 11, 28, 5162, 709, 3, 13, 18, 3, 32, 65, 562, 47, 38, 1376, 3, 69, 44, 1359, 3, 13, 6, 562, 311, 2, 609, 1593, 66, 24, 1902, 101, 1902, 101, 264, 132, 32, 7934, 13, 7, 280, 3, 15, 30, 3, 73, 13], [25, 224, 11, 4084, 4085, 137, 13, 125, 20, 13, 25, 25, 224, 11, 4084, 4085, 137, 13, 125, 20, 13, 25], [1745, 8, 45, 4, 87, 55, 1, 49, 843, 3, 31, 18, 9, 726, 514, 87, 381, 308, 106, 807, 1, 1, 135], [123, 18, 34, 9, 184, 63, 833, 30, 1550, 65, 251, 704, 34, 9, 184, 63, 833, 30, 1550, 926, 28, 1092, 4, 3, 163, 57, 44, 3, 220, 6, 323, 3, 123, 257, 310, 1, 47, 38, 1376, 3, 69, 7, 284, 1591, 166, 284, 99, 1377, 67, 38, 3084, 2, 373, 3, 1039, 257, 329, 284, 42, 3462, 183, 284, 38, 2291, 166, 2, 5163, 3, 1902, 101, 2, 183, 1377, 21, 649, 3, 1333, 6, 346, 136], [1746, 74, 1219, 303, 56, 7935, 7936, 182, 213, 130, 155, 204, 117, 107, 214, 146, 1746, 74, 273, 8, 45, 169, 52, 715], [193, 30, 3, 5164, 1248, 47, 2745, 2746, 193, 30, 3, 5164, 1248, 47, 2745, 2746], [4126, 4127, 104, 79, 13, 6, 2482, 754, 4126, 4127, 49, 291, 292, 1533, 4126, 4127, 104, 79, 13, 6, 2482, 754, 720, 313, 55, 38, 274, 33, 13, 532, 483, 540, 1311, 424, 118, 23, 2012, 14, 1544, 80, 68, 38, 119, 257], [1533, 749, 254, 218, 5080, 2137, 14, 485, 7, 1185, 55, 21, 295, 1, 1, 185, 35, 14, 583, 711, 7937, 7938, 3, 1279, 2, 633, 7, 721, 463, 7, 909, 287, 36, 3, 188, 749, 254, 11, 3, 218, 7939, 7940, 447, 1, 458], [90, 62, 2137, 83, 1681, 1283, 7941, 7, 3463, 11, 5165, 39, 43, 584, 5165, 3463, 39, 183, 43, 584], [205, 242, 56, 5166, 5167, 182, 213, 130, 155, 204, 117, 107, 214, 146, 205, 242], [888, 996, 8, 1157, 456, 55, 21, 1, 1, 14, 114, 424, 888, 996, 63, 8, 1157, 456], [54, 2, 189, 3, 186, 263, 11, 473, 67, 21, 855, 134, 54, 2, 189, 3, 186, 263, 11, 473, 67, 21, 855, 134], [15, 26, 15, 160, 13, 25, 56, 7942, 182, 213, 130, 155, 204, 117, 107, 214, 146, 365, 334, 39, 35, 14, 25, 33, 15, 13], [54, 2, 211, 1746, 74, 54, 2, 211, 1746, 74], [307, 195, 4, 190, 42, 260, 44, 284, 97, 1273, 533, 137, 3, 1413, 3085, 5166, 5167, 1092, 44, 180, 7, 283, 1033, 42, 27, 2, 1273, 533, 137, 3, 1413, 1, 51, 284, 1682, 77, 3, 455, 3, 569, 347, 1101, 98, 201, 30, 3, 24, 1819], [73, 383, 453, 1439, 2292, 342, 480, 1032, 1244, 1440, 2013, 956, 2014, 2138, 2139, 1820, 259, 55, 1033, 246, 35, 14, 43, 207, 450, 7, 1040, 3, 73, 383, 18, 2742, 2743, 24, 7943, 222, 14, 91, 181, 96, 458], [218, 29, 40, 5168, 3464, 5169, 218, 29, 40, 5168, 3464, 5169, 633, 7, 721, 29, 524], [4, 41, 7, 83, 165, 130, 529, 71, 664, 1612, 462, 2747, 4, 41, 7, 83, 165, 130, 529, 71, 664, 1612, 462, 2747], [148, 7944, 31, 843, 1613, 31, 142, 56, 7945, 200, 1018, 7946], [25, 224, 11, 5170, 5171, 137, 13, 125, 20, 13, 25, 25, 224, 11, 5170, 5171, 137, 13, 125, 20, 13, 25], [74, 3465, 55, 1, 1, 3, 74, 947, 89, 8, 513, 143, 481, 1, 1, 37, 71, 114, 29, 255, 3, 177, 7947, 22, 1, 1, 40, 5172, 947, 173, 40, 5172, 947, 3, 993, 97, 43, 336, 1, 1, 3, 37, 39, 183, 43, 1821, 66, 4128, 3, 108, 10, 7, 489, 567, 420, 8, 398, 1, 1, 1284, 135], [15, 26, 13, 25, 15, 26, 13, 25], [15, 64, 22, 985, 13, 64, 14, 1040, 15, 22, 985], [13, 6, 8, 1996, 13, 6, 8, 1996], [348, 115, 406, 3, 7948, 115, 9, 345, 2140, 98], [115, 4129, 4, 5173, 1283, 1334, 6, 8, 164, 58, 133, 115, 4129, 4, 5173, 1283, 1334, 6, 8, 164, 58, 133], [121, 36, 5174, 11, 5175, 396, 2525, 7949, 36, 5174, 1049, 2, 1809, 2, 5175], [3086, 4, 223, 1551, 447, 4130, 4131, 6, 1180, 339, 3086, 4, 223, 1551, 447, 4130, 4131, 6, 1180, 339], [168, 20, 4, 190, 2285, 4132, 5176, 5177, 3466, 1043, 168, 20, 4, 190, 2285, 4132, 5176, 5177, 3466, 1043], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [939, 88, 37, 405, 41, 55, 1, 51, 100, 41, 88, 1128, 10, 2526, 30, 441, 7, 68, 1822, 1372, 39, 134, 30, 41, 67, 8, 30, 88, 1441, 4, 1, 3087, 41, 2293], [1811, 3063, 3064, 55, 39, 35, 91, 433, 3, 181, 864, 6, 10, 3, 74, 7950, 1326, 1116, 3088], [111, 532, 195, 42, 8, 84, 2, 397, 2, 88, 580, 229, 195, 7951, 7952, 7953, 7954, 14, 118, 4, 2135, 30, 444], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [453, 18, 41, 57, 29, 10, 1683, 7955, 108, 11, 4133, 4134, 111, 14, 90, 57, 29, 10, 73, 1683, 108, 11, 4133, 4134, 1221, 358, 7, 7956, 7957, 14, 326, 136, 53, 1674, 57, 120, 56, 7958, 7959, 6, 23, 857, 18, 104, 376, 108, 16, 53, 3, 1442, 376, 1683, 86, 6, 9, 345, 4, 199, 14, 647, 29, 10, 3, 376, 1683, 108], [193, 30, 2716, 3467, 3, 142, 12, 33, 4135, 65, 355, 351, 77, 18, 3, 7960, 257, 7, 201, 65, 175, 886, 167, 30, 1993, 7961, 14, 509, 175, 366, 12, 21, 10, 48], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [9, 452, 10, 564, 86, 9, 452, 10, 564, 86], [193, 30, 728, 255, 142, 3468, 348, 2294, 2295, 193, 30, 728, 255, 142, 3468, 348, 2294, 2295], [58, 94, 596, 687, 2748, 58, 24, 1222, 596, 687, 856, 1159, 6, 75, 112, 10, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [168, 20, 6, 4136, 7, 278, 12, 3, 5178, 168, 20, 6, 4136, 7, 278, 12, 3, 5178], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [738, 623, 1541, 36, 83, 1069, 42, 1326, 592, 1614, 3089, 4137, 3090, 5179, 738, 623, 1541, 36, 83, 1069, 42, 1326, 592, 1614, 3089, 4137, 3090, 5179, 4, 3, 334, 151, 428, 3469, 1541, 14, 114, 183, 3, 2479, 218], [123, 30, 41, 39, 29, 8, 170, 41], [58, 824, 10, 2527, 2527, 2527, 8, 267, 112, 5180, 58, 824, 10, 2527, 2527, 2527, 8, 267, 112, 5180], [13, 25, 5181, 13, 25, 5181], [205, 242, 1413, 205, 242, 1413], [3091, 102, 10, 2296, 409, 1250, 11, 5, 81, 20, 40, 1250, 3091, 102, 10, 2296, 409, 1250, 11, 5, 81, 20, 40, 1250], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [223, 868, 1747, 1367, 223, 868, 1747, 1367], [1413, 3085, 11, 738, 182, 6, 8, 45, 14, 114, 68, 23, 6, 442, 2, 3, 119, 4, 56, 18, 3, 279, 140, 5182, 36, 7962, 2, 190, 1, 14, 114, 3, 163, 37, 1, 1413, 919, 1, 895, 182, 1413, 507, 2015], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [349, 103, 3092, 542, 189, 143, 1595, 11, 3, 3470, 2528, 359, 1284, 604], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [3093, 119, 22, 208, 491, 62, 1823, 1, 1, 329, 811, 33, 13, 294, 3, 13, 125, 20, 13, 120, 177, 31, 3471, 1, 1, 1, 11, 3, 15, 1245, 160, 1594, 21, 63, 8, 84, 2, 119, 3, 13, 222, 2141, 14, 129, 104, 1730, 1, 1, 458], [1443, 74, 4, 594, 591, 753, 190, 406, 7963, 889], [10, 5183, 11, 205, 869, 2728, 10, 5183, 11, 205, 869, 2728], [74, 1811, 55, 50, 74, 1811, 6, 9, 345, 45, 861, 1443, 42, 7964, 14, 1544, 711, 2749, 458, 1116, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [594, 252, 1616, 114, 11, 348, 470, 3, 177, 594, 3094, 96, 42, 357, 2142, 36, 161, 470, 2, 7965, 7966, 51, 612, 497, 3, 50, 564, 470, 284, 264, 43, 2142, 2, 7967, 7968, 39, 35, 14, 114, 3, 1616, 594, 3094, 159, 7969], [82, 20, 46, 31, 82, 20, 46, 31, 1, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [58, 94, 361, 112, 3095, 5184, 92, 69, 854, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 3095, 5184, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 1, 1, 156, 237, 16, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [205, 242, 34, 205, 242, 34], [46, 8, 285, 11, 4138, 223, 5185, 55, 177, 4138, 223, 45, 4, 7970, 6, 27, 2, 46, 283, 24, 459, 181, 59, 2, 239, 2143, 2750, 102, 2, 2016, 3, 179, 510, 56, 5185, 107, 181, 59, 28, 59, 7971, 13, 7972], [41, 41, 41, 3096], [60, 94, 361, 113, 640, 92, 69, 60, 6, 75, 112, 49, 10, 105, 48, 98, 10, 1285, 92, 69, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 92, 69, 854, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [31, 4, 1280, 1068, 7, 15, 46, 111, 1, 1, 47, 42, 843, 31, 4, 340, 1121, 7, 15, 46, 1, 1, 1, 135], [205, 242, 2125, 205, 242], [47, 42, 27, 2, 70, 3, 233, 4, 404, 20, 1163, 55, 14, 50, 166, 10, 23, 31, 31, 47, 42, 27, 2, 70, 3, 233, 11, 1163, 4, 404, 20, 20, 96, 42, 3, 698, 1163, 11, 104, 957], [205, 869, 14, 2125, 205, 869, 363, 2125], [205, 869, 14, 2125, 205, 869, 14, 2125], [333, 603, 123, 2, 373, 72, 4139, 55, 38, 4140, 197, 220, 184, 29, 603, 7973, 38, 534, 425, 30, 532, 18, 33, 7974, 7, 21, 45, 494, 3, 297, 6, 912, 11, 7975, 1822, 20, 101, 4, 423, 348, 21, 8, 45, 38, 425, 423, 52, 782, 53, 613, 184, 6, 179, 53, 33, 52, 52, 1129, 7976, 7977, 7978, 782, 174, 771, 23, 6, 3, 37, 85, 118, 4, 423, 52], [160, 127, 107, 31, 533, 511, 15, 52, 160, 127, 107, 97, 43, 336, 169, 127, 107, 63, 1740, 322, 4, 2297, 1319, 6, 494, 389, 15, 5186, 145, 14, 100, 34, 11, 4141, 3, 1748, 101, 44, 343, 307, 135], [37, 46, 10, 2, 3, 26, 52, 37, 46, 10, 2, 3, 26, 52, 1, 231, 28, 222, 223, 7, 120, 56, 1, 28, 65, 248, 3, 13, 125, 20, 1659, 120, 1, 499, 7, 25, 3, 15, 59, 2, 1102, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [174, 333, 1903, 174, 333, 1903], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [5, 162, 414, 17, 22, 4, 5, 19, 12, 5, 162, 414, 17, 22, 4, 5, 19, 12], [27, 2, 29, 41, 111, 21, 101, 308, 14, 525, 53, 28, 7979, 27, 2, 29, 41, 169, 180, 119, 283, 13, 7980, 7981, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [14, 544, 177, 261, 908, 350, 66, 5187, 14, 544, 177, 261, 908, 350, 66, 5187], [51, 35, 366, 98, 503, 7, 1552, 437, 1552, 6, 2144, 7, 35, 39, 8, 91, 3, 188, 1552, 91, 377], [1070, 10, 518, 1904, 4142, 4143, 124, 291, 292, 7982, 7983, 3472, 3473, 550, 518, 1904, 208, 5188, 14, 43, 207, 450, 7, 50, 38, 141, 783, 162, 67, 284, 1591, 80, 44, 35, 42, 3, 722, 826, 2, 1809, 2, 151, 38, 141, 588, 119, 10, 3, 2017, 18, 988, 149, 5189, 7, 47, 51, 149, 2519, 36, 5189, 1496, 943, 42, 7984, 4, 518, 1617, 3474, 3, 2529, 6, 273, 3472, 3473, 264, 43, 4142, 4143, 7, 4044, 179, 31, 1336, 43, 30, 47, 7985, 1487, 151, 63, 119, 18, 149, 988, 53, 613, 47, 1050, 1684, 7986, 7987, 47, 73, 1684, 3472, 3473, 5190, 1050, 1684, 3472, 3473, 5190, 73, 1684, 4142, 4143, 246, 35, 43, 207, 450, 7, 50, 166, 14, 4, 732, 35, 54, 316, 957, 270, 80, 253], [14, 269, 29, 11, 475, 4, 33, 235, 86, 7988, 7989, 1, 124, 1, 291, 292, 1, 550, 104, 235, 108, 6, 970, 230, 36, 1286, 137, 480, 1032, 599, 104, 718, 2751, 21, 29, 1, 1, 14, 269, 29, 11, 475, 4, 33, 235, 86], [5, 645, 20, 2530, 686, 203, 22, 4, 5, 19, 12, 5, 645, 20, 2530, 686, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12, 5, 645, 20, 40, 409, 203, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [238, 1011, 90, 29, 277, 10, 90, 1337, 277, 6, 75, 112, 124, 238, 1011, 90, 29, 277, 10, 90, 1337, 277, 6, 75, 112, 124], [41, 33, 41, 6, 8, 45, 14, 91, 68, 35, 39, 398, 7990, 7991, 149, 120, 1338], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 190, 78, 6, 75, 112, 49, 105, 10, 40, 190, 78, 6, 75, 112, 49, 105, 10], [121, 997, 7, 151, 63, 201, 2752, 7, 680, 1825, 121, 997, 7, 151, 63, 201, 2752, 7, 680, 1825], [339, 121, 1120, 941, 339, 121, 1120, 941], [15, 13, 25, 111, 1474, 2, 25, 15, 13, 46, 59, 7992, 30, 1156], [121, 997, 7, 351, 659, 121, 997, 7, 351, 659], [5, 5191, 22, 4, 5, 19, 12, 5, 5191, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 89, 8, 884, 98, 169, 1250, 827, 40, 89, 8, 884, 98, 169, 1250, 827, 263, 44, 828, 151, 63, 4144, 7, 61, 431, 1312, 10, 23, 78, 195, 5192, 769, 40, 2753, 40, 24, 24, 144, 30, 2018, 18, 131, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 102, 1339, 77, 769, 1497, 11, 3097, 331, 268, 805, 2298, 195, 5192], [5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 948, 1444, 784, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 26, 488, 22, 4, 5, 19, 12, 5, 26, 488, 22, 4, 5, 19, 12], [5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12], [15, 26, 32, 64, 15, 26, 32, 64], [5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12, 5, 654, 374, 26, 15, 1444, 784, 22, 4, 5, 19, 12], [434, 75, 358, 24, 5193, 29, 277, 651, 12, 358, 6, 75, 112, 124, 434, 75, 358, 24, 5193, 29, 277, 651, 12, 358, 6, 75, 112, 124], [1070, 10, 324, 171, 15, 1070, 10, 324, 171, 15], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 1618, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 744, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 645, 20, 640, 409, 315, 22, 4, 5, 19, 12, 5, 645, 20, 640, 409, 315, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [40, 286, 369, 6, 272, 198, 375, 40, 286, 369, 6, 272, 198, 375, 198, 178, 387], [5, 2754, 22, 4, 5, 19, 12, 5, 2754, 22, 4, 5, 19, 12], [40, 78, 6, 1130, 47, 42, 1085, 72, 2531, 4, 161, 571, 3078, 30, 78, 40, 1, 1251, 18, 3, 58, 958, 42, 8, 3098, 311, 2, 23, 123, 1, 1, 14, 386, 1, 1, 1, 135], [58, 94, 596, 687, 7993, 48, 6, 531, 7994, 112, 49, 10, 105, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 10, 105, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 9, 17, 1, 1, 81, 60, 202, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [32, 132, 32, 132], [3, 1445, 354, 11, 4145, 4146, 65, 402, 124, 291, 292, 3, 1445, 354, 11, 4145, 4146, 65, 402, 55, 974, 11, 4145, 4146, 821, 65, 141, 495], [193, 30, 3, 131, 416, 4, 333, 110, 97, 118, 3, 131, 416, 2, 134, 4, 33, 333, 2711, 2712, 1530, 1064], [13, 25, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [61, 94, 82, 1826, 432, 1252, 24, 58, 6, 75, 112, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 9, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 551, 2299, 315, 22, 4, 5, 19, 12, 5, 551, 2299, 315, 22, 4, 5, 19, 12], [41, 8, 45, 55, 1, 1, 33, 41, 297, 10, 33, 148, 1219, 405], [40, 78, 4147, 726, 4, 3, 78, 40, 78, 4147, 726, 4, 3, 78], [34, 70, 10, 34, 9, 34, 70, 10, 34, 9], [90, 24, 24, 17, 90, 90, 1337, 277, 696, 75, 12, 124, 105, 10, 90, 24, 24, 17, 90, 90, 1337, 277, 696, 75, 12, 124, 105, 10, 1, 1011, 238, 75, 10, 24, 17, 90, 90, 1337, 277, 1, 24, 17, 90, 90, 29, 277, 696, 75, 12, 124, 105, 10, 1011, 238, 75], [60, 94, 90, 1277, 24, 4148, 2019, 76, 618, 24, 144, 696, 75, 12, 124, 105, 10, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 105, 10, 1, 1, 147, 145, 61, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [169, 33, 1749, 63, 70, 39, 9, 345, 95, 4, 2, 15, 110, 118, 72, 37, 541, 116, 44, 335, 2, 95, 158, 15, 118, 95, 792, 37, 185, 8, 122, 2, 71, 78], [27, 2, 122, 2, 15, 27, 2, 122, 2, 15], [27, 2, 29, 705, 294, 419, 13, 1553, 2755, 4, 72, 1446, 29, 37], [40, 65, 254, 44, 6, 2756, 2145, 71, 452, 6, 183, 2756, 10, 7, 489, 1905, 21, 65, 9, 37, 14, 114, 40, 652, 641, 297, 78, 254, 11, 285, 193, 197, 18, 3, 824, 6, 2756, 2145], [90, 7, 90, 3099, 165, 1589, 53, 613, 41, 5194, 2, 320, 853, 245, 90, 7, 90, 3099, 165, 1589, 53, 613, 458, 195, 41, 5194, 2, 320, 853, 245, 73, 57, 99, 320, 67, 853, 99, 4149, 7, 41, 1527, 30, 8, 7995, 37, 23, 664, 2, 43, 1361, 201, 30, 174, 1750, 49, 137, 174, 351, 458, 2757, 36, 90, 7, 2757, 36, 90, 3475, 53, 613, 2532, 7996, 123, 24, 7997], [29, 502, 29, 502, 128, 126, 114, 1210, 4, 57, 377, 185, 35, 14, 5195, 3, 4150, 809, 10, 128, 126, 4, 3, 2271, 2758, 4150, 5196, 3, 501, 765, 67, 384, 3, 71, 29, 502, 4150, 6, 1064, 4, 2300, 14, 91, 3, 1210, 96], [1549, 287, 5197, 1549, 287, 5197], [25, 13, 55, 64, 1619, 77, 18, 15, 39, 35, 25, 33, 13, 7998, 7999, 160, 739], [2006, 694, 151, 6, 72, 223, 44, 65, 141, 2006, 448, 273, 65, 29, 2, 24, 57, 10, 283, 508, 108, 8000, 8001, 4151, 4152, 5198, 120], [41, 8, 45, 41, 8, 45], [499, 7, 25, 15, 26, 499, 7, 25, 15, 26], [24, 314, 8, 1827, 857, 438, 24, 314, 6, 8, 1827, 857, 627, 51, 284, 42, 178, 1, 349, 4, 24, 314, 6, 2759, 4153, 30, 857, 3, 8002, 767, 6, 8, 2146, 3, 857, 3476, 6, 8003, 249], [378, 15, 32, 64, 11, 28, 5199, 5200, 378, 15, 32, 64, 11, 28, 5199, 5200], [41, 984, 11, 83, 195, 41, 984, 11, 83, 195], [41, 88, 1441, 4, 31, 55, 88, 1441, 4, 2760, 42, 8, 5201, 425, 51, 735, 41, 4154, 3, 88, 733, 4, 33, 41, 51, 735, 3, 447, 14, 91, 163, 167, 554, 8004, 8005, 854, 149, 685, 2301, 1620, 2761, 2302], [1610, 855, 74, 176, 11, 3477, 4, 161, 174, 1], [13, 37, 4, 15, 208, 491, 14, 50, 80, 4, 15, 46, 28, 59, 8006, 30, 135], [191, 674, 59, 5202, 55, 101, 39, 35, 14, 189, 191, 674, 59, 11, 5202, 4, 1340, 120, 2533, 2534, 101, 1287, 1051, 7, 1906, 188, 21], [2303, 121, 2303, 121], [59, 59, 74, 38, 1208, 1223, 98, 31], [209, 41, 58, 37, 891, 51, 3478, 4, 1103, 3, 177, 71, 6, 268, 311, 2, 628, 58, 2304, 241, 1164, 8, 43, 2762, 4, 104, 412], [87, 37, 329, 637, 4, 87, 37, 329, 637, 4], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 26, 322, 28, 59, 18, 28, 290, 3, 31, 8007, 482, 252, 3, 28, 219, 62, 63, 45, 30, 3479, 896, 3, 31, 1378, 8008, 8009, 511, 89, 8, 38, 29, 2, 239, 610, 14, 606, 408, 29, 53, 23, 6, 1099, 1595, 11, 83, 3100, 10, 3, 24, 101, 269, 29, 3, 179, 53, 23, 165, 28, 8010, 8011], [27, 2, 100, 5203, 287, 10, 3, 142, 27, 2, 100, 5203, 287, 10, 3, 142], [87, 123, 576, 330, 241, 193, 30, 41, 169, 13, 119, 3, 123, 63, 88, 73, 394, 63, 1063, 7, 2535, 33, 4155, 428, 272, 172, 33, 87, 11, 191, 6, 8, 45, 7, 185, 8, 1539, 72, 1429, 381, 23, 334, 586, 18, 3, 87, 167, 6, 96, 6, 3, 392, 4, 196, 391, 68, 8, 85, 264, 21, 43, 38, 2305, 23, 411, 3, 214, 50, 470, 1315, 98, 10, 35, 53, 754, 53, 35, 493, 107, 2, 1496, 3, 121, 5204, 5205, 1276, 149, 685, 101], [50, 470, 86, 123, 14, 263, 51, 4156, 158, 3, 50, 470, 53, 754, 53, 35, 410, 2008, 62, 21, 1315, 98, 10, 35, 8012, 3, 121, 5204, 5205, 1276, 149, 685], [87, 55, 1, 49, 290, 1237, 1090, 87, 737, 164, 3101, 489, 51, 493, 36, 3, 86, 2758, 1828, 23, 1061, 294], [33, 115, 526, 134, 30, 340, 38, 340, 67, 33, 142, 89, 8, 134, 30, 340, 201, 507, 30, 92, 69, 92, 69, 21, 6, 8013, 8014, 30, 387], [339, 121, 339, 121], [136, 10, 1253, 1163, 56, 4157, 4158, 182, 213, 130, 155, 204, 117, 107, 214, 146, 825, 34, 23, 334, 448, 6, 21, 625, 2], [57, 196, 4, 457, 3480, 3481, 124, 291, 292, 8015, 8016, 5206, 5207, 243, 457, 5206, 5207, 3, 57, 196, 10, 23, 809, 6, 626, 14, 119, 2, 183, 54, 2, 206, 3, 24, 1536, 2, 408, 809], [25, 3, 13, 11, 8017, 8018, 10, 15, 160, 1245, 110, 49, 73, 2, 15, 7, 38, 330, 9, 520, 12, 83, 1, 246, 35, 14, 121, 80, 7, 8019, 80, 294, 46, 62, 12, 975, 1377, 33, 46, 56, 7, 13, 14, 7], [339, 121, 339, 121], [41, 3102, 37, 55, 101, 1, 304, 2, 43, 84, 2, 91, 85, 412, 4, 41, 745, 492, 772, 67, 169, 3, 606, 97, 412, 745, 492, 377, 4, 33, 812, 1, 39, 35, 14, 386], [15, 26, 15, 160, 13, 25, 15, 26, 15, 160, 13, 25], [309, 46, 37, 51, 335, 2, 46, 2, 309, 520, 413, 10, 3, 95, 4, 36, 3, 128, 126, 48, 21, 1428, 80, 2, 3, 347, 2, 493, 182, 413, 10, 8020, 276, 118, 72, 37, 44, 530, 3, 347, 22, 2, 463], [376, 34, 9, 203, 90, 29, 11, 3103, 41, 480, 10, 79, 86, 90, 29, 11, 3103, 41, 480, 10, 79, 86, 631, 6, 163, 30, 23, 34], [238, 1011, 2297, 5208, 10, 24, 168, 998, 190, 3104, 29, 277, 6, 75, 1011, 2297, 5208, 10, 24, 168, 998, 190, 3104, 29, 277, 6, 75, 112], [25, 224, 11, 8021, 8022, 137, 13, 125, 20, 13, 25, 97, 95, 158, 8023, 13, 120, 2, 119, 2, 73, 13], [13, 25, 102, 13, 25, 102], [33, 415, 317, 99, 8, 884, 10, 23, 334, 33, 415, 317, 99, 8, 884, 10, 23, 334], [186, 31, 365, 334, 1, 1, 47, 38, 307, 54, 11, 967, 53, 117, 6, 4078, 2147, 11, 249, 14, 583, 23, 1314, 313, 305, 1, 1, 716, 1, 1, 47, 38, 5209, 8024, 4, 897, 186, 11, 149, 127, 3, 186, 350, 11, 673, 151, 6, 1685, 311, 18, 673, 67, 47, 39, 8, 119, 186, 1224, 1664, 39, 47, 544, 186, 47, 187, 8, 1104, 3, 186, 51, 350, 7, 3, 186, 6, 273, 323, 4, 1221, 67, 51, 47, 335, 2, 410, 521, 151, 6, 72, 37, 44, 3, 186, 65, 141, 1751, 47, 38, 248, 2, 8025, 5210, 186, 67, 47, 42, 164, 71, 1736, 44, 186, 65, 534, 141, 225, 2306, 67, 4, 83, 8026, 3, 186, 6, 2536, 4, 15, 7, 9, 521, 39, 43, 912], [24, 144, 8, 45, 890, 31, 24, 144, 8, 45, 890, 31], [117, 2505, 7, 128, 20, 6, 8, 45, 117, 2505, 7, 128, 20, 6, 8, 45], [27, 2, 121, 4, 1611, 1, 1, 248, 678, 4, 23, 334, 9, 1314, 184, 765, 493, 356, 662, 659], [29, 2, 535, 365, 334, 14, 583, 8027, 8028, 29, 2, 535, 498, 8029, 8030, 8031, 854, 529, 685], [555, 810, 210, 55, 49, 164, 37, 51, 250, 2, 189, 73, 555, 810, 107, 163, 3, 464, 18, 3, 37, 54, 104, 50, 2, 353, 21], [667, 812, 8, 638, 2148, 667, 812, 8, 638, 2148], [110, 97, 118, 158, 33, 142, 118, 72, 37, 9, 138, 196, 110, 97, 118, 158, 33, 142, 118, 72, 37, 9, 138, 196], [32, 64, 4, 15, 26, 32, 64, 4, 15, 26], [246, 35, 14, 25, 33, 15, 1245, 13, 356, 64, 77, 18, 21, 1116, 246, 35, 14, 25, 33, 15, 1245, 13, 356, 64, 77, 18, 21], [41, 7, 87, 8, 545, 41, 7, 87, 8, 545], [74, 4, 47, 205, 3482, 5211, 1208, 2294, 2295, 74, 4, 47, 205, 3482, 5211, 1208, 2294, 2295], [54, 29, 2, 1481, 1907, 14, 236, 98, 29, 2, 3, 177, 993, 838, 40, 2763, 1481, 1907, 28, 8032], [40, 474, 5212, 239, 160, 127, 238, 297, 3483, 362, 312, 371, 804, 40, 474, 5212, 239, 160, 127, 238, 297, 3483, 362, 312, 371, 804], [13, 9, 316, 860, 73, 13, 2, 29, 2, 15, 26, 15, 160, 13, 9, 316, 860, 73, 13, 2, 29, 2, 15, 26, 15, 160], [920, 2020, 1052, 168, 20, 2764, 2765, 920, 2020, 1052, 168, 20, 2764, 2765], [50, 2, 211, 15, 4, 142, 5213, 111, 101, 185, 35, 14, 50, 80, 2, 920, 15, 4, 142, 3, 72, 28, 142, 5213, 14, 5214, 80, 68, 35, 38, 316, 8033, 5215], [3105, 249, 249, 111, 101, 363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008, 1498, 1239, 2021, 8034, 8035, 24, 2022, 8036], [47, 201, 629, 72, 37, 71, 47, 201, 629, 72, 37, 71, 1, 4159, 4, 3, 58, 1, 4159, 3, 58, 609, 1, 8, 83, 1249, 42, 402, 1, 2766, 175, 1127, 1074, 1075], [115, 278, 33, 115, 6, 545, 278, 39, 3, 115, 101, 14, 114, 2, 1908, 21, 98, 582, 1, 49, 1909, 11, 286, 8037, 62, 2307, 103, 18, 597, 184, 99, 50, 115, 1752, 558, 8038, 3484], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [4160, 4161, 11, 872, 1682, 1341, 4162, 5216, 11, 4160, 4161, 11, 872, 1682, 1341, 4162, 5216, 11], [3485, 74, 89, 8, 134, 3485, 74, 4, 3, 1621, 2270, 8039, 89, 8, 31, 143, 1443], [5, 654, 3486, 22, 4, 5, 19, 12, 5, 654, 3486, 22, 4, 5, 19, 12], [142, 255, 5217, 205, 5218, 2767, 2768, 142, 255, 5217, 205, 5218, 2767, 2768], [115, 56, 55, 47, 54, 73, 115, 56, 200, 1018, 18, 3, 115, 6, 8040, 3431, 3432, 2282, 1604, 24, 1686, 8041, 3106, 1252, 1252, 730, 24, 144], [186, 27, 2, 598, 77, 186, 14, 269, 3, 177, 85, 127, 107, 117, 127, 1664, 85, 349, 62, 438, 107, 438, 249, 85, 432, 271, 113, 31, 665, 37, 71, 3, 186, 5219, 6, 3, 2258, 5219, 6, 186, 263, 6, 3487, 67, 52, 530, 186, 6, 8, 2258, 989, 39, 8, 1420, 14, 50], [1342, 25, 11, 15, 28, 56, 5220, 15, 26, 32, 65, 141, 8, 499, 1254, 1342, 25, 11, 15, 28, 56, 5220, 111, 499, 3, 15, 26, 32, 14, 46, 30, 179, 13, 8, 45], [1255, 728, 2308, 4163, 3107, 1255, 728, 2308, 4163, 3107], [535, 97, 199, 21, 411, 18, 346, 2537], [15, 26, 466, 116, 454, 278, 999, 42, 357, 2149, 7, 15, 133, 6, 1478, 2150, 999, 42, 2149, 7, 15, 133, 6, 1478, 2150], [14, 743, 29, 2, 40, 749, 8042, 1284, 604], [363, 743, 29, 2, 40, 555, 1284, 604], [2012, 57, 319, 790, 10, 867, 11, 3, 495, 840, 111, 21, 101, 1, 1, 38, 273, 268, 3, 57, 319, 2012, 2, 766, 2725, 636, 11, 3, 2538, 184, 38, 534, 495, 7, 151, 42, 9, 143, 2023, 2725, 1126, 2, 766, 4, 80, 183, 1207, 38, 141, 2309, 66, 457, 101, 1, 1, 308, 485, 3, 52, 7, 398, 11, 80], [278, 15, 50, 15, 6, 343, 278, 30, 4164, 14, 353, 12, 3, 1131], [15, 278, 75, 532, 1499, 1447, 12, 975, 168, 15, 278, 75, 532, 1499, 1447, 12, 975, 168], [81, 255, 142, 3488, 1554, 1555, 81, 255, 142, 3488, 1554, 1555], [339, 121, 339, 121], [95, 4, 11, 15, 6, 77, 18, 127, 95, 4, 11, 15, 6, 77, 18, 127], [363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008, 363, 50, 2, 373, 77, 472, 1073, 473, 673, 117, 54, 444, 1008], [168, 20, 9, 345, 507, 168, 20, 6, 8, 45, 168, 20, 9, 345, 507], [307, 14, 8043, 28, 59, 5221, 55, 83, 5221, 6, 8, 202, 4, 13, 125, 20, 7, 1668, 39, 29, 2, 79, 14, 39, 35, 114, 7, 106, 85, 6, 1099, 1498, 4165, 2539, 4166, 135], [27, 2, 100, 3489, 287, 27, 2, 100, 3489, 287], [5222, 327, 36, 40, 6, 290, 72, 31, 1500, 212, 5223, 144, 268, 8044, 559, 49, 10, 105, 1, 1, 5222, 327, 36, 40, 6, 290, 72, 31, 1500, 212, 5223, 144, 1, 1, 163, 6, 3, 167, 554], [1342, 25, 11, 15, 28, 56, 8045, 781, 35, 1343, 263, 30, 450, 750, 30, 135], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [128, 126, 8, 178, 9, 155, 29, 128, 126, 8, 178, 9, 155, 29], [102, 898, 55, 1, 1, 1288, 35, 2, 269, 80, 72, 898, 11, 3, 96, 779, 447, 1, 1, 1, 1, 135], [547, 37, 3490, 3491, 181, 1, 49, 1, 291, 292, 1, 1289, 547, 37, 1, 1, 50, 564, 1, 1, 1, 351, 96, 37, 71, 51, 1448, 8046, 294, 26, 1, 14, 398, 3, 31], [168, 20, 89, 8, 134, 168, 20, 89, 8, 134], [5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12, 5, 551, 412, 78, 409, 636, 22, 4, 5, 19, 12], [8047, 3108, 1076, 3109, 115, 4167, 170, 98, 169, 1801, 62, 21, 3492, 514, 3, 8048, 8049, 14, 8050, 781, 35], [15, 6, 454, 278, 56, 3110, 3111, 182, 213, 130, 155, 204, 117, 107, 214, 146, 15, 6, 454, 278], [195, 36, 1290, 1076, 42, 2769, 278, 466, 4, 15, 82, 20, 82, 20, 449, 195, 36, 1290, 1076, 42, 2769, 278, 466, 4, 15, 82, 20, 82, 20, 449, 7, 27, 2, 134], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [60, 94, 90, 113, 24, 1285, 76, 6, 75, 112, 124, 10, 105, 48, 98, 10, 640, 188, 92, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [15, 26, 52, 75, 111, 113, 3112, 15, 26, 52, 75, 311, 2, 23, 31, 47, 62, 8, 84, 2, 5224, 437, 359, 11, 310, 21, 5225, 10, 288, 4168, 3, 52, 99, 43, 98, 38, 2151, 21, 34, 203, 8051, 8052, 1072, 739, 24, 572, 368, 18, 1322, 1824, 1335, 57], [27, 2, 114, 1418, 2750, 4, 162, 20, 27, 2, 114, 1418, 2750, 4, 162, 20], [15, 59, 5226, 15, 13, 63, 1991, 21, 15, 59, 5226, 15, 13, 63, 1991, 7, 1587, 200, 52, 13, 63, 1991, 454, 516, 5227, 83, 571, 428, 64, 106, 80, 8053, 2, 132, 444], [15, 1687, 343, 278, 4, 358, 379, 38, 2, 2766, 858, 11, 669, 1072, 18, 15], [15, 466, 116, 6, 343, 278, 53, 47, 336, 44, 3, 15, 466, 116, 1908, 6, 343, 278, 23, 334, 14, 50, 4169, 7, 398, 23, 31, 510], [113, 15, 26, 52, 278, 111, 21, 101, 1, 1, 308, 14, 525, 2, 114, 113, 3112, 15, 26, 52, 278, 748, 2, 636], [363, 50, 2, 114, 15, 311, 2, 278, 466, 1498, 363, 50, 2, 114, 15, 311, 2, 278, 466, 1498], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [40, 7, 3113, 40, 7, 3113, 42, 12, 924, 18], [175, 974, 11, 5228, 5229, 5230, 821, 65, 141, 495, 175, 974, 11, 5228, 5229, 5230, 821, 65, 141, 495], [5, 551, 40, 203, 22, 4, 5, 19, 12, 5, 551, 40, 203, 22, 4, 5, 19, 12], [1445, 354, 11, 5231, 5232, 65, 402, 974, 11, 5231, 5232, 821, 65, 141, 495], [376, 245, 288, 106, 29, 33, 1256, 134, 245, 1, 382, 527, 542, 1216, 98, 475, 2310, 467], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [5, 5, 22, 4, 5, 19, 12, 81, 1497, 1, 1, 908, 1829, 116, 655, 1, 1, 402, 286, 379, 1, 22, 286, 379, 1, 1188, 286, 379, 1, 1, 286, 379, 344, 1, 1, 402, 538, 379, 1, 22, 538, 379, 1, 1188, 538, 379, 1, 1, 538, 379, 344, 1, 1, 1830, 344, 976, 1, 304, 538, 344, 1, 286, 296, 684, 344, 1, 1, 5, 5, 22, 4, 5, 19, 12], [5, 26, 1556, 22, 4, 5, 19, 12, 2024, 2296, 254, 116, 124, 1, 686, 3114, 1, 97, 721, 2, 108, 646, 37, 1, 1, 5, 26, 1556, 22, 4, 5, 19, 12], [5, 26, 1556, 22, 4, 5, 19, 12, 5, 26, 1556, 22, 4, 5, 19, 12], [79, 13, 25, 102, 79, 13, 25, 102], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 95, 4, 2, 309, 27, 2, 95, 4, 2, 309], [403, 2, 320, 87, 381, 403, 2, 320, 87, 381], [27, 2, 122, 2, 490, 74, 27, 2, 122, 2, 490, 74], [218, 29, 275, 208, 21, 101, 14, 90, 633, 7, 721, 29, 10, 3, 177, 451, 1069, 2, 80, 8054, 40, 838, 508, 173, 40, 838, 508, 40, 838, 3493, 173, 40, 838, 3493], [34, 70, 965, 34, 70, 965], [41, 31, 209, 88, 690, 41, 31, 209, 88, 690], [14, 90, 5233, 5234, 29, 2, 74, 1165, 2152, 332, 2311, 2312, 14, 90, 5233, 5234, 29, 2, 74, 1165, 2152, 332, 2311, 2312], [13, 70, 403, 13, 70, 403], [76, 403, 11, 28, 5235, 76, 403, 11, 28, 5235], [128, 126, 1614, 365, 1364, 1, 39, 35, 14, 206, 73, 2025, 4112, 8055, 485, 2, 3, 2025, 594, 39, 35, 183, 647, 8056, 8057, 53, 3, 1097, 18, 23, 3494, 18, 23, 347, 14, 199, 1619, 8058, 8059, 7, 3495, 3496, 2, 23, 347], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [15, 859, 4, 3497, 6, 8, 45, 15, 859, 4, 3497, 6, 8, 45], [5236, 115, 4, 3497, 6, 8, 45, 5236, 115, 4, 3497, 6, 8, 45], [9, 873, 9, 873], [33, 41, 542, 134, 4, 372, 8060, 1162, 38, 179, 123, 170, 41, 41, 6, 405, 67, 21, 542, 100, 21, 63, 420, 833, 66, 161, 21, 200, 2540, 67, 21, 50, 820, 11, 197, 593, 7, 467, 21, 8061, 257, 14, 50, 80, 2, 398, 21, 33, 86, 107, 6, 99, 43, 12, 490, 1059, 1364, 36], [15, 26, 32, 602, 77, 15, 26, 32, 602, 77], [8, 84, 2, 118, 186, 2, 189, 11, 249, 110, 1688, 983, 6, 77, 18, 2313, 7, 1753, 447, 54, 2, 43, 373, 3, 473, 63, 350, 1501, 268, 12, 23, 1364, 569, 4057, 5, 6, 8, 147, 599, 169, 124, 23, 473, 219, 2, 598, 389, 276], [34, 70, 10, 258, 34, 70, 10, 258], [2314, 1257, 37, 2314, 1257, 37], [13, 25, 25, 41, 13, 11, 8062, 8063, 283, 79, 397, 13, 6, 661, 112, 180, 542, 95, 10, 2, 24], [621, 155, 29, 110, 49, 290, 1237, 30, 164, 155, 621, 29, 11, 3, 568, 96, 8064, 8065, 2540, 82, 90, 113], [287, 10, 605, 8, 178, 287, 97, 43, 825, 40, 222, 794, 51, 250, 2, 100, 173, 201, 1449, 3, 173, 6, 5237, 7, 97, 43, 825, 443, 287, 1910, 112, 12, 113, 38, 2026, 1321, 1036, 18, 1321, 287, 36, 661, 838, 9, 181, 18, 1189, 704, 143, 285, 78, 521], [4170, 4, 3, 3498, 594, 6, 75, 12, 3, 90, 113, 129, 146, 4170, 4, 3, 3498, 594, 6, 75, 12, 3, 90, 113], [238, 1911, 7, 1911, 133, 2, 90, 113, 6, 75, 112, 124, 105, 10, 238, 1911, 7, 1911, 133, 2, 90, 113, 6, 75, 112, 124, 105, 10], [226, 32, 64, 77, 226, 32, 64, 77], [443, 271, 1379, 1487, 696, 75, 12, 105, 10, 14, 326, 3, 163, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 10, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 16, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 9, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [1045, 29, 110, 49, 164, 484, 37, 250, 2, 29, 4171, 8066, 91, 163, 8067, 8068], [15, 26, 13, 25, 102, 15, 26, 13, 25, 102], [874, 1000, 403, 1448, 1166, 513, 7, 584, 2027, 874, 1000, 403, 1448, 1166, 513, 7, 584, 2027], [29, 2, 352, 5238, 11, 5239, 5240, 5239, 5240, 9, 345, 65, 29, 2, 352, 5238, 180, 219, 29, 14, 91, 3, 163, 57, 36, 8069, 365, 334, 151, 6, 343, 836, 116, 44, 187, 8, 1376, 3, 101, 7, 35, 49, 4, 361, 11, 1162, 7, 134, 30, 3, 101, 137, 3, 73, 282, 54, 104, 50, 411, 49, 8, 849, 84, 2, 43, 267, 220, 433, 63, 84, 2, 410, 8070, 268, 23, 177, 71, 39, 35, 50, 2, 38, 23, 133, 45, 257, 38, 183, 3, 8071, 8072, 67, 23, 6, 273, 45, 613], [27, 2, 122, 2, 41, 27, 2, 122, 2, 41], [37, 30, 5241, 82, 20, 15, 8073, 7, 24, 418, 111, 101, 54, 104, 50, 30, 451, 37, 3, 5241, 3, 82, 20, 3, 451, 684, 377, 4, 34, 2526, 142, 5242, 8074, 8075, 7, 5242, 8076, 8077, 68, 35, 38, 316, 2523, 14, 5214, 80], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [235, 108, 453, 24, 868, 146, 54, 86, 2, 122, 2, 41], [41, 94, 55, 6, 41, 75, 39, 1089, 2, 122, 10, 148, 2315, 14, 386, 331, 36, 33, 383, 8078, 8079, 854, 149, 685], [307, 14, 189, 577, 252, 4, 5243, 14, 189, 577, 252, 4, 5243, 23, 6, 1754, 307, 53, 47, 38, 2, 644, 2316, 225, 20, 66, 3, 591, 18, 3, 593, 1831, 151, 63, 72, 1475, 18, 981, 36, 23, 271, 2, 190, 36, 113, 2, 113, 186, 473, 2316, 225, 20, 6, 8, 1751, 4, 501], [88, 29, 31, 111, 1689, 97, 95, 158, 88, 83, 195, 4, 1689], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [57, 683, 2, 114, 10, 57, 2, 4172, 683, 11, 160, 3048, 8080, 8081, 90, 8082, 8083, 8084, 90, 90, 8085, 8086, 8087, 8088], [39, 8, 392, 158, 88, 62, 966, 392, 10, 212, 10, 3, 459, 39, 8, 392, 158, 88, 62, 966, 392, 10, 212, 10, 3, 459, 21, 1449, 33, 13, 6, 8, 391, 23, 6, 3, 13, 199, 11, 83, 165, 29, 3474, 4, 24], [13, 25, 13, 25], [3499, 52, 74, 74, 8089, 8090, 8091, 6, 8, 45, 39, 176, 3499, 370, 11, 161, 8092], [27, 2, 119, 13, 27, 2, 119, 13], [8, 84, 2, 46, 2, 1812, 197, 101, 21, 1493, 1067, 8, 84, 2, 46, 2, 1812, 197, 101, 21, 1493, 1067, 1, 622, 34, 34, 9], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [115, 1814, 280, 11, 194, 24, 199, 97, 43, 1105, 4, 2, 21, 664, 3, 401, 5244, 6, 1478, 115, 1814, 280, 11, 194, 24, 199, 97, 43, 1105, 4, 2, 21, 664, 3, 401, 5244, 6, 1478], [5245, 219, 3, 1183, 2, 504, 2, 3, 218, 4173, 5246, 2317, 2770, 5245, 219, 3, 1183, 2, 504, 2, 3, 218, 4173, 5246, 2317, 2770], [219, 29, 2, 78, 40, 3500, 5247, 2, 3, 28, 5248, 5249, 5250, 633, 201, 29, 3, 56, 18, 3, 223, 448, 219, 29, 6, 5248, 5249, 5250, 223, 107, 3, 173, 6, 651, 10, 161, 1249, 254, 254, 276, 3115, 173, 3500, 276, 3115, 173, 5247, 23, 63, 236, 98, 66, 161, 918, 21, 8093, 389, 180, 63, 8094, 489], [54, 29, 2, 338, 54, 29, 2, 338], [82, 20, 400, 82, 20, 400], [168, 20, 11, 113, 113, 6, 45, 343, 2153, 14, 50, 581, 662, 1116, 168, 20, 11, 113, 113, 6, 45, 343, 2153, 14, 50, 581, 662], [88, 31, 209, 8095, 31, 88, 31, 209, 41, 31], [28, 219, 50, 2, 46, 2, 3, 337, 28, 219, 50, 2, 46, 2, 3, 337], [168, 20, 4174, 700, 125, 89, 8, 134, 45, 30, 3, 571, 6, 3116, 1912, 3, 578, 18, 359, 6, 9, 345, 285, 12, 3, 1127, 1, 4175, 8096, 342, 2541, 8097, 1244, 4168, 1043, 3501, 4175, 8098, 1106, 8099, 3089, 1244, 3502, 5251, 1043, 4176, 3501], [3117, 3118, 223, 974, 4177, 2489, 44, 711, 8100, 99, 2509, 3, 24, 62, 5252, 12, 3, 591, 18, 8101, 99, 5252, 4, 3, 312, 18, 1797, 3, 460, 404, 20, 1380, 223, 233, 8102, 175, 8103, 1813, 39, 43, 1832, 426, 1833, 8104, 207, 44, 3, 568, 2, 1739, 3, 644, 174, 767, 63, 5253, 65, 29, 11, 175, 2318, 1538, 18, 4178, 3, 8105, 6, 1834, 2154, 77, 66, 3, 8106, 62, 3, 1748, 162, 1076, 7, 264, 43, 1690, 30, 600, 18, 444], [14, 25, 33, 26, 13, 1077, 8107], [28, 219, 50, 2, 46, 2, 3, 128, 126, 48, 28, 219, 50, 2, 46, 2, 3, 128, 126, 48, 1, 794, 3, 28, 3, 57, 59, 7, 13, 169, 5254, 3, 28, 222, 1, 635, 3, 28, 2, 335, 7, 46, 2, 3, 128, 126, 1, 28, 328, 180, 6, 172, 84, 2, 46, 2, 3, 128, 126, 1, 31, 321], [32, 707, 32, 707], [41, 1318, 239, 626, 41, 1318, 239, 626], [142, 123, 208, 63, 8, 84, 2, 465, 10, 155, 112, 23, 334, 72, 8108, 190, 63, 8, 84, 2, 95, 4, 47, 38, 248, 207, 1502, 44, 3, 4179, 6, 64, 38, 3, 71, 104, 13, 65, 562, 7, 755, 43, 274, 14, 844, 80, 3, 73, 13], [1913, 3503, 8, 323, 98, 4, 548, 11, 209, 333, 55, 1, 1, 51, 199, 548, 11, 209, 333, 172, 39, 91, 3, 1913, 3503, 516, 51, 765, 6, 1548, 10, 622, 2, 464, 63, 84, 2, 91, 1913, 3503, 1256, 573, 123, 3, 201, 2024, 119, 10, 33, 115, 6, 828, 1914, 2, 174, 3504, 39, 35, 14, 50, 2107, 33, 1913, 3503, 251], [213, 31, 1114, 1115, 7, 5255, 31, 213, 31, 1114, 1115, 7, 5255, 31], [8, 84, 2, 106, 1104, 3119, 117, 5256, 616, 32, 1622, 38, 661, 1623, 1672, 8, 84, 2, 106, 1104, 11, 186, 117, 5256, 4180, 127, 1, 3120, 1258, 1258, 1258, 1258, 1, 8109, 205, 242, 11, 117, 1, 1, 37, 1, 616, 32, 1622, 38, 661, 1623, 1672, 1, 71, 9, 654, 1, 1, 5257, 1, 35, 670, 443, 616, 32, 1622, 1541, 625, 2, 661, 1623, 1672, 4, 367, 438, 716, 83, 616, 32, 1622, 1541, 30, 1623, 314, 1622, 755, 43, 625, 2, 3, 179, 1623, 314, 1, 1, 1107, 1, 68, 3, 71, 6, 72, 37, 71, 114, 7, 119, 3, 616, 32, 1622, 1541, 207, 44, 83, 1541, 30, 1623, 314, 1622, 42, 625, 2, 3, 179, 1623, 314, 1, 1, 4, 8110, 35, 39, 119, 23, 71, 36, 72, 37, 71, 2, 435, 71, 319, 62, 35, 39, 4181, 21, 2028, 2, 106, 207, 91, 3, 3505, 3412, 8111, 1012, 426, 2542, 949, 119, 71, 753, 71, 3121, 654, 71], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [547, 1755, 171, 8, 45, 110, 100, 547, 1755, 7, 122, 2, 26, 1, 335, 2, 100, 171, 8112, 8113, 8114, 462, 125, 916, 12, 1, 3, 835, 2, 493, 1494, 11, 8115, 664, 9, 178, 4182, 131, 153, 6, 236, 2, 11, 501, 1, 413, 837, 3, 52, 3506, 7, 89, 680, 5258, 118, 130, 333, 8, 545, 37, 1, 1, 6, 151, 829, 385, 30, 3, 52, 6, 151, 829, 385, 30, 33, 609, 1, 1, 54, 2, 1216, 440, 11, 72, 415, 2771, 207, 21, 6, 2490, 307, 44, 118, 23, 833, 2772], [97, 176, 10, 90, 74, 1610, 143, 345, 14, 398, 97, 176, 10, 90, 74, 1610, 143, 345, 14, 398], [27, 2, 176, 36, 3, 74, 3507, 27, 2, 176, 36, 3, 74, 3507], [110, 54, 2, 38, 8116, 3508, 543, 2, 33, 130, 57, 9, 197, 65, 1756, 80, 30, 23, 49, 8, 614, 424, 23, 63, 1167, 77, 51, 330, 268, 9, 50], [28, 27, 2, 122, 12, 3, 1060, 12, 174, 28, 27, 2, 122, 12, 3, 1060, 12, 174, 425, 3, 58, 133, 609, 1805, 3, 58, 1450, 399, 3, 58, 830, 399, 3, 1749, 10, 3, 115, 991, 3, 115, 28, 8117, 180, 6, 8118, 381, 7, 99, 121, 1059], [1168, 272, 695, 370, 303, 110, 479, 2, 176, 175, 107, 3509, 4, 3, 370, 303, 53, 175, 1168, 272, 695, 370, 303, 30, 3, 2120, 8119, 23, 6, 8, 285, 44, 110, 39, 633, 21, 30, 175, 513, 8120, 86], [5, 26, 650, 22, 4, 5, 19, 12, 5, 26, 650, 22, 4, 5, 19, 12], [218, 29, 275, 208, 21, 101, 14, 90, 633, 7, 721, 29, 10, 3, 177, 451, 1069, 2, 80, 8121, 40, 838, 508, 173, 40, 838, 508, 40, 838, 3493, 173, 40, 838, 3493], [15, 26, 32, 132, 7, 13, 25, 15, 26, 32, 132, 7, 13, 25], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [14, 236, 28, 5259, 546, 169, 46, 83, 58, 824, 42, 346, 14, 236, 28, 5259, 546, 169, 46, 83, 58, 824, 42, 346], [486, 4, 2, 118, 4, 2135, 30, 1414, 1415, 486, 4, 2, 118, 4, 2135, 30, 1414, 1415], [378, 32, 132, 378, 32, 132], [295, 255, 2319, 5260, 1557, 1558, 295, 255, 2319, 5260, 1557, 1558], [280, 73, 471, 2764, 2765, 280, 73, 471, 2764, 2765], [34, 70, 11, 34, 9, 34, 70, 11, 34, 9], [60, 94, 361, 522, 1337, 277, 6, 75, 12, 49, 105, 10, 60, 94, 361, 522, 1337, 277, 6, 75, 12, 49, 105, 10], [60, 94, 24, 262, 1187, 92, 69, 856, 618, 6, 75, 112, 49, 105, 48, 6, 98, 92, 69, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 16, 16, 9, 17, 1, 1, 51, 187, 21, 170, 49, 105, 1, 1, 147, 145, 61, 9, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 9, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 16, 16, 9, 17, 1, 1, 81, 60, 202, 16, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 16, 16, 9, 17, 1, 1, 194, 281, 4, 16, 9, 17, 1, 1, 282, 25, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 1, 1, 156, 237, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [46, 31, 46, 31, 1, 231, 28, 222, 223, 7, 120, 56, 1, 425, 3, 28, 56, 4, 226, 7, 499, 3, 32, 1, 635, 3, 28, 2, 46, 7, 114, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [214, 4, 3, 381, 719, 214, 107, 4, 190, 3, 8122, 89, 8, 134, 68, 612, 497, 36, 240, 276, 3, 86, 4167, 8123, 14, 509, 175, 8124, 781, 35], [27, 2, 515, 41, 27, 2, 515, 41], [15, 29, 31, 52, 26, 26, 26, 26, 585, 165, 124, 1, 1, 322, 28, 59, 18, 28, 290, 3, 31, 8125, 1, 1, 482, 252, 3, 28, 219, 62, 63, 45, 30, 1, 1, 896, 3, 31, 14, 25, 3, 13, 68, 275, 14, 132, 3, 59, 1, 1, 68, 35, 42, 164, 8, 723, 71, 1132, 3, 677, 276, 106, 1133, 7, 552, 764, 2, 3, 404, 20, 34, 1, 1, 269, 29, 3, 179, 53, 23, 165, 28], [15, 32, 64, 208, 101, 1, 1, 33, 15, 32, 351, 64, 411, 18, 385, 13, 1134, 1, 1, 14, 295, 2, 118, 132, 3, 179], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [15, 303, 160, 127, 74, 959, 857, 160, 127, 74, 959, 6, 357, 1312, 647, 3510, 36, 959, 2, 959, 10, 15, 571, 74, 857, 35, 99, 54, 2, 38, 61, 58, 1121, 7, 3, 74, 430, 2284, 389, 404, 20, 34, 39, 43, 825, 106, 35, 38, 83, 4183, 693, 8126, 16, 9, 16, 4184, 15, 74, 56, 387, 1153, 59, 913, 959, 56, 2484, 3, 179, 138, 196, 68, 1150, 138, 2484, 3, 179, 410, 416, 18, 3, 857, 15, 74, 682, 1915, 8127, 85, 15, 74, 106, 35, 511, 199, 387, 1153, 59, 913, 302, 3, 15, 52, 3, 74, 219, 2, 43, 1916, 15, 26, 26, 26, 26, 26, 26, 585, 474, 449, 585, 26, 474, 179, 53, 376, 959, 85, 6, 511, 727, 10, 261, 958, 36, 15, 387, 225, 418, 186, 1001, 449, 179, 53, 376, 959, 271, 18, 211, 2320, 2321, 1917, 641, 4185, 179, 53, 376, 959, 437, 21, 48, 129, 56, 3117, 3118, 8128, 74, 1911, 107, 74, 1381, 196, 1911, 8129], [40, 6, 511, 1085, 313, 1184, 1035, 14, 663, 40, 6, 511, 1085, 313, 1184, 1035, 14, 663], [5261, 5262, 486, 704, 218, 29, 403, 5261, 5262, 486, 704, 218, 29, 403], [218, 633, 7, 721, 29, 524, 208, 1033, 1, 1, 14, 90, 29, 2, 23, 993, 11, 80, 11, 633, 7, 721, 29, 1, 1, 4186, 1624, 875, 485], [453, 18, 41, 57, 29, 10, 383, 108, 11, 8130, 8131, 111, 14, 90, 57, 29, 10, 73, 383, 108, 11, 161, 2501, 1529, 120, 136, 53, 1674, 57, 120, 56, 8132, 8133, 7, 8134, 8135, 6, 23, 108, 24, 868, 16, 6, 23, 857, 18, 104, 376, 108, 16, 53, 3, 1442, 376, 1683, 86, 6, 2155], [29, 31, 2, 338, 55, 197, 18, 3, 8136, 8137, 8138, 8139, 4187, 28, 59, 6, 8140, 6, 8, 84, 2, 46, 2, 338, 53, 283, 28, 59, 64, 180, 6, 1734, 28, 14, 243, 236, 283, 13, 7, 778], [620, 342, 1168, 1443, 369, 1149, 2543, 5263, 1074, 1075, 8141, 342, 1168, 1443, 369, 1149, 2543, 5263, 1074, 1075], [280, 73, 471, 4, 1625, 3511, 3512, 280, 73, 471, 4, 1625, 3511, 3512], [3, 317, 10, 161, 1691, 348, 6, 406, 365, 334, 8142, 3, 317, 10, 161, 1691, 348, 6, 406, 14, 269, 175, 857, 317, 12, 2029, 1189, 781, 35], [743, 255, 218, 529, 63, 3101, 14, 743, 257], [920, 2498, 36, 2709, 108, 5264, 51, 1125, 3122, 66, 1042, 920, 2498, 36, 2709, 108, 5264, 51, 1125, 3122, 66, 1042], [876, 14, 876, 3, 421, 173, 40, 162, 1002, 8143, 5265, 1161, 83, 287, 426, 5265, 3513, 3514, 556, 4188, 4189], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [74, 8, 45, 111, 21, 1, 1, 14, 50, 2, 353, 161, 8144, 74, 123, 3, 74, 6, 494, 169, 74, 2540, 114, 21, 6, 2, 106, 30, 161, 1255, 7, 78, 1503, 4, 3, 78, 719, 1, 1, 47, 522, 38, 9, 1835, 7, 4190, 2, 796, 44, 14, 38, 612, 2, 50, 510, 1, 1, 1, 135], [168, 20, 363, 7, 5266, 42, 45, 343, 278, 168, 20, 363, 7, 5266, 42, 45, 343, 278], [721, 1473, 255, 5267, 960, 2004, 721, 1473, 255, 5267, 960, 2004], [10, 3, 895, 1626, 47, 42, 303, 738, 924, 18, 895, 151, 63, 119, 4, 961, 222, 912, 30, 34, 9, 23, 6, 8, 546, 303, 10, 3, 895, 1626, 21, 6, 323, 3, 391, 131, 67, 3, 8145, 42, 4, 738, 698, 5268, 924, 18, 961, 196, 2544, 5269, 924, 18, 32, 107, 183, 91, 44, 151, 6, 72, 1344, 1065, 357, 727, 11, 3, 740, 1504, 8146, 2545, 5270, 8147, 5268, 14, 263, 161, 73, 961, 32, 222, 201, 3, 895, 394, 264, 176, 10, 3, 895, 481, 8, 600, 738, 7, 895], [168, 20, 777, 257, 8, 327, 14, 50, 662, 1918, 359, 106, 8, 410, 21, 158, 3, 2, 106, 302, 14, 114, 3, 233, 7, 715, 3, 52], [6, 87, 75, 110, 49, 8, 84, 2, 118, 158, 87, 722, 172, 6, 151, 72, 94], [1259, 1682, 4, 143, 973, 3123, 158, 15, 21, 468, 80, 201, 2322, 1888, 4, 3, 52, 1259, 1682, 4, 143, 973, 3123, 158, 15, 21, 468, 80, 201, 2322, 1888, 4, 3, 52, 14, 129, 8148, 80, 510, 33, 86], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [26, 1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 467, 714, 1274, 78, 3124, 30, 318, 78, 37, 4, 732, 18, 143, 165, 397, 182, 276, 714, 7, 3, 416, 5271, 6, 304, 3, 31, 1169, 4, 15, 15, 52, 26, 53, 613, 53, 10, 205, 8149, 20, 205, 8150, 314, 994, 1037, 582, 37, 71, 1065, 6, 37, 329, 250, 2, 1882, 3, 819, 566, 1883, 302, 1884, 18, 936, 1182, 1063, 36, 437, 1592, 2030, 397, 182, 714, 6, 837, 68, 161, 8151, 416, 6, 304, 83, 182, 1089, 2, 43, 45, 494, 67, 746, 3, 28, 521, 2, 143, 165, 182, 387, 592, 62, 21, 7, 3515, 3, 416, 5271, 3, 5272, 2546, 52, 4191, 30, 3, 37, 71, 514, 937, 312, 18, 1274, 3516], [5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12, 5, 563, 168, 20, 575, 262, 22, 4, 5, 19, 12], [27, 2, 189, 186, 307, 113, 38, 673, 97, 350, 917, 11, 249, 161, 117, 6, 343, 307, 23, 981, 1, 246, 35, 14, 50, 8152], [81, 131, 208, 491, 1, 66, 1531, 197, 18, 3, 218, 4, 40, 8153, 65, 141, 584, 1, 1288, 35, 2, 2009, 3, 179, 1, 1, 30, 135], [26, 1430, 1815, 631, 31, 111, 21, 101, 1, 1, 97, 766, 840, 192, 3, 229, 794, 201, 747, 2, 766, 899, 4, 15, 192, 80, 1, 1, 308, 398, 11, 80], [112, 5273, 78, 193, 5274, 8, 1135, 112, 5273, 78, 193, 5274, 8, 1135], [4192, 8154, 123, 171, 36, 2323, 1153, 24, 144, 124, 123, 171, 36, 2323, 1153, 24, 144, 260, 52, 2323, 348, 103, 416, 1911, 8155, 123, 107, 37, 665, 125, 3125, 2, 8156, 8157, 62, 8158, 639, 940, 372, 1078, 124, 628, 233, 4193, 107, 175, 222], [25, 3, 13, 11, 5275, 5276, 10, 15, 160, 15, 365, 483, 1, 185, 35, 14, 25, 13, 11, 15], [8, 84, 2, 206, 555, 632, 158, 128, 126, 8159, 8160, 1604, 120, 1358, 24, 361, 1601], [1370, 191, 217, 102, 29, 2, 118, 1370, 33, 59, 6], [39, 95, 4, 404, 20, 533, 28, 8161, 8162, 8163, 39, 95, 10, 3, 404, 20, 3, 52, 452, 3, 28, 7, 13, 2031, 185, 35, 134, 10, 23], [58, 94, 3517, 4194, 4195, 531, 75, 112, 124, 10, 105, 48, 65, 9, 81, 60, 85, 103, 18, 94, 58, 60, 61, 14, 289, 85, 103, 18, 94, 1, 1, 266, 152, 48, 9, 16, 9, 17, 1, 1, 51, 187, 21, 170, 124, 10, 105, 1, 1, 147, 145, 61, 17, 16, 9, 17, 24, 61, 153, 61, 1, 1, 147, 145, 58, 17, 16, 9, 17, 24, 157, 16, 9, 153, 157, 34, 1, 1, 89, 48, 38, 81, 60, 9, 16, 9, 17, 1, 1, 81, 60, 202, 17, 16, 9, 17, 1, 1, 48, 129, 156, 86, 57, 17, 16, 9, 17, 1, 1, 194, 281, 4, 17, 16, 9, 17, 1, 1, 282, 25, 17, 16, 9, 17, 1, 1, 231, 48, 45, 10, 81, 60, 17, 16, 9, 17, 1, 1, 69, 34, 188, 92, 300, 92, 69, 92, 69, 17, 1, 1, 156, 237, 17, 16, 9, 17, 152, 244, 16, 9, 17, 1, 1, 256, 298], [5, 26, 2773, 22, 4, 5, 19, 12, 5, 26, 2773, 22, 4, 5, 19, 12], [249, 2774, 307, 8164, 8165, 49, 291, 292, 2547, 2548, 4196, 4197, 550, 249, 2774, 307, 21, 50, 14, 50, 114, 21, 307, 5277, 4, 710, 14, 2151, 1108, 31, 2, 161, 21, 53, 613, 262, 1906, 120, 2547, 2548, 49, 4196, 4197, 1757, 2549, 4198, 4199, 243, 249, 2774, 111, 334, 23, 31, 273, 8, 795, 989, 273, 3112, 179, 31, 3, 441, 1505, 2324, 467, 5278, 1505, 441, 1505, 5279, 7, 2325, 5278, 1505, 5279, 67, 4, 15, 26, 2156, 806, 21, 6, 391, 163, 11, 104, 797, 111, 334, 54, 104, 1758, 10, 23, 31, 23, 6, 31, 2326, 112, 372, 273, 8, 795, 989, 163, 57, 2127, 11, 104, 797, 8166, 8167, 1072, 739, 57, 124, 4196, 4197, 4198, 4199, 2547, 2548, 1533, 249, 2774, 55, 21, 588, 38, 5280, 483, 342, 1079, 556, 714, 135], [3, 263, 184, 63, 820, 727, 12, 1451, 18, 3, 2775, 63, 346, 14, 50, 2, 995, 21, 251, 14, 91, 377], [15, 64, 55, 33, 28, 59, 8168, 14, 50, 2, 132, 21], [37, 15, 26, 1222, 1692, 2300, 225, 20, 1551, 97, 373, 3, 15, 26, 1222, 1692, 2300, 225, 20, 1551, 429, 72, 37, 1, 135], [128, 126, 29, 31, 648, 56, 8169, 372, 56, 8170, 117, 5, 1836, 149, 685, 129, 57, 196, 1205, 797, 107, 8171, 63, 8172, 304, 16, 665, 18, 123, 27, 2, 29, 128, 126, 48, 68, 23, 123, 2327, 129, 104, 295, 101, 7, 1109, 261, 724, 222, 688, 59, 26, 8173, 8174, 8175, 341, 7, 116, 124, 28, 31, 103, 28, 89, 8, 38, 1183, 1477, 1271, 207, 2032, 1128, 2, 3, 459, 412, 2550, 2550, 102, 1128, 2, 455, 413, 10, 886, 3518, 29, 502, 71, 2033, 330, 29, 2, 23, 48], [29, 2, 26, 110, 54, 29, 2, 26, 205, 242, 52, 691, 8176, 739, 5281, 5282, 120, 4200, 4201, 8177, 8178, 1275, 2776], [9, 898, 4, 1666, 9, 898, 4, 1666], [27, 2, 95, 4, 2, 15, 26, 27, 2, 95, 4, 2, 15, 26], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [29, 2, 15, 26, 11, 28, 5283, 5284, 29, 2, 15, 26, 11, 28, 5283, 5284], [218, 29, 653, 11, 40, 1759, 1440, 2551, 4202, 1, 218, 29, 653, 40, 1, 1, 2777, 59, 1, 28, 59, 1, 1, 2777, 1439, 2017, 4203, 1, 28, 2017, 1836, 1, 1, 2551, 1, 218, 4186, 1624, 875, 485, 839, 3075, 1, 1, 3126, 2157, 4204, 1, 103, 18, 29, 633, 201, 62, 315, 753], [218, 29, 102, 146, 54, 29, 2, 3, 177, 218, 11, 161, 875, 485, 4186, 1624, 875, 485, 54, 2, 118, 633, 721, 54, 2, 504, 287, 581, 7, 43, 84, 2, 100, 444], [499, 32, 499, 32], [780, 7, 1552, 366, 98, 4, 690, 88, 8, 45, 3, 163, 464, 6, 36, 8179, 8180, 390, 2034, 98, 462, 44, 390, 8181, 47, 38, 3, 167, 429], [82, 20, 8, 84, 2, 70, 73, 117, 82, 20, 8, 84, 2, 70, 73, 117], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [27, 2, 100, 82, 20, 27, 2, 100, 82, 20], [1279, 2, 189, 570, 1672, 4, 26, 15, 482, 5285, 110, 9, 345, 38, 29, 2, 189, 570, 1672, 4, 26, 201, 26, 14, 70, 29, 11, 570, 314, 1665, 4, 3, 205, 869, 52, 26, 482, 5285], [128, 126, 31, 146, 290, 210, 30, 128, 126, 27, 2, 29, 47, 38, 964, 44, 826, 38, 2, 644, 481, 2, 3, 2025, 7, 42, 8, 84, 2, 29, 51, 99, 21, 43, 833], [1586, 138, 196, 21, 65, 141, 653, 66, 161, 2510, 200, 2, 269, 444, 30, 1586, 138, 196, 11, 116, 1425, 44, 99, 43, 531, 5286, 4, 39, 35, 269, 129, 146, 106, 8182, 3, 102, 11, 1586, 138, 196, 2, 23, 767, 11, 967], [128, 126, 52, 8, 45, 3, 128, 126, 52, 6, 8, 45, 443, 195, 171, 164, 72, 37, 250, 2, 100, 143, 24, 128, 126, 144, 580, 23, 3127, 4205, 3, 822, 312, 53, 47, 97, 29, 143, 102, 62, 70, 495, 2538, 3, 37, 71, 184, 2328, 98, 6, 163, 23, 4205, 3042, 7, 90], [97, 118, 33, 1062, 340, 1919, 2, 134, 10, 33, 148, 97, 118, 33, 1062, 340, 1919, 2, 134, 10, 33, 148], [27, 2, 29, 128, 126, 27, 2, 29, 128, 126], [128, 126, 31, 146, 63, 3519, 489, 18, 76, 7, 248, 567, 420, 2, 118, 251, 4, 49, 172, 251, 158, 76, 67, 97, 392, 10, 2, 88], [128, 126, 31, 128, 126, 31], [128, 126, 75, 128, 126, 75], [87, 11, 191, 6, 8, 267, 2, 3, 480, 8183, 8184, 86, 33, 87, 11, 191, 39, 122, 2, 480, 23, 65, 141, 601, 10, 83, 593, 38, 1837, 7, 1105, 251, 158, 87, 67, 21, 99, 8, 122, 7, 737, 164, 23, 37], [3, 24, 128, 126, 6, 260, 75, 233, 112, 124, 3, 24, 128, 126, 6, 260, 75, 233, 112, 124], [378, 128, 126, 347, 29, 31, 378, 128, 126, 347, 29, 31], [51, 327, 1222, 171, 8185, 100, 127, 171, 3, 171, 6, 8, 1827, 90, 3128, 2528, 51, 327, 3, 171, 698, 246, 43, 249, 11, 271, 113, 53, 3, 221, 271, 7, 1693, 614, 10, 3, 3129, 681, 44, 3128, 2528, 42, 2762, 23, 171, 6, 8, 1694, 98, 23, 3128, 1367], [9, 873, 200, 1018, 5287, 79, 327, 158, 123, 1128, 2, 170, 98, 736, 347, 590, 494, 4, 2003, 1042, 30, 3520, 28, 63, 84, 2, 95, 4, 137, 522, 32, 67, 5288, 5288, 38, 29, 2, 21, 248, 2329, 75, 115, 7, 250, 1506, 98, 9, 465, 8186, 61, 9, 465, 21, 63, 601, 2, 736, 167, 257, 7, 257, 1047, 5287, 129, 222, 39, 43, 1376, 514], [40, 369, 370, 1010, 40, 2035, 6, 272, 198, 375, 198, 178, 387, 40, 369, 370, 1010, 40, 2035, 6, 272, 198, 375, 198, 178], [110, 54, 33, 196, 543, 2, 1920, 1610, 110, 54, 33, 196, 543, 2, 1920, 1610], [508, 107, 64, 324, 171, 508, 107, 64, 324, 171], [15, 26, 13, 25, 15, 26, 13, 25], [21, 13, 55, 1382, 2, 25, 83, 33, 224, 411, 64, 88, 15, 76, 55, 83, 33, 224, 42, 64, 88, 15, 76, 135, 750], [87, 7, 41, 2313, 31, 381, 42, 8, 323, 98, 4, 87, 87, 7, 41, 2313, 31, 381, 42, 8, 323, 98, 4, 87, 1, 37, 71, 163, 1, 1, 37, 71, 87, 11, 191, 7, 480, 2552, 1693, 133], [41, 3521, 27, 2, 100, 3, 41, 558, 3521, 12, 312, 3522], [23, 71, 63, 331, 2, 3, 24, 1627, 603, 14, 129, 24, 21, 50, 564, 11, 316, 136, 8187, 8188, 124, 291, 292, 2553, 319, 243, 461, 9, 8189, 55, 185, 35, 114, 23, 71], [1838, 32, 11, 540, 8190, 8191, 24, 8192, 1240, 57, 1538, 36, 172, 8193, 1059, 12, 959], [27, 2, 176, 407, 8, 336, 27, 2, 176, 407, 8, 336], [27, 2, 100, 41, 27, 2, 100, 41], [9, 29, 2, 309, 91, 96, 639, 71, 717, 2, 3, 24, 191, 309, 7, 1559, 314, 309, 520, 48, 161, 915, 701, 44, 3, 95, 4, 871, 35, 304, 2, 29, 23, 48, 36, 3, 24, 128, 126, 106, 8, 1471, 3, 915, 47, 38, 10, 173, 745, 3, 202, 675, 14, 436, 34, 2, 3, 188, 295, 314, 2, 1088, 44, 104, 58, 95, 4, 59, 6, 546, 670, 158, 15], [219, 2, 119, 13, 219, 2, 119, 13], [1373, 2, 95, 4, 2, 15, 7, 82, 20, 110, 274, 33, 13, 137, 3, 13, 120, 7, 172, 49, 64, 77, 18, 15, 304, 3, 13, 120, 2, 132, 67, 273, 1373, 2, 95, 4, 2, 15, 7, 82, 20], [5, 5, 22, 4, 5, 19, 12, 5, 5, 22, 4, 5, 19, 12], [27, 2, 100, 535, 27, 2, 100, 535], [87, 6, 8, 1628, 250, 2, 199, 87, 6, 8, 545, 63, 45, 1256], [378, 28, 27, 2, 46, 2, 3, 115, 378, 28, 27, 2, 46, 2, 3, 115, 1, 635, 3, 28, 2, 715, 3, 115, 7, 335, 2, 46, 30, 3, 73, 13, 9, 465, 1, 25, 7, 50, 3, 28, 46, 2, 3, 115, 1, 267, 2, 3, 28, 52, 137, 487, 1, 50, 3, 28, 46, 2, 3, 13, 120, 20, 13, 20, 7, 119, 3, 224, 1, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 1, 396, 328, 44, 180, 63, 84, 2, 46, 1, 31, 321], [2104, 233, 73, 933, 223, 8194, 8195, 166, 2036, 347, 75, 2, 1088, 44, 83, 275, 131, 1190, 42, 421, 389, 2287, 199, 23, 1380, 11, 3523, 5289, 5290, 1760, 449, 14, 421, 83, 1482, 59, 648, 56, 8196, 372, 56, 8197, 271, 90, 166, 120, 2001, 8198, 8199, 570, 314, 8200, 415, 24, 56, 8201, 85, 571, 106, 284, 54, 29, 10, 337, 337, 16, 68, 16, 6, 28, 1170, 522, 62, 739, 1170, 54, 691, 7, 695, 299, 263, 11, 337, 206, 1171, 2297, 28, 2, 28, 26, 32, 6, 24, 57, 275, 11, 23, 568, 68, 16, 66, 506, 841, 683, 99, 43, 625, 11, 199, 18, 1191, 7, 128, 126, 201, 8, 41, 217, 62, 87, 68, 41, 217, 62, 87, 42, 275, 316, 3524, 683, 755, 43, 625, 7, 39, 43, 304, 201, 10, 24, 142, 574, 841, 62, 683, 29, 265, 448, 275, 23, 6, 2, 485, 586, 36, 568, 29, 11, 2158, 1416, 29, 599, 341, 6, 3, 142, 868, 66, 24, 68, 16, 6, 21, 148, 62, 527, 142, 56, 6, 194, 29, 76, 275, 68, 16, 14, 269, 2, 184, 83, 529, 15, 571, 58, 605, 3, 28, 219, 29, 192, 76, 170, 341], [191, 217, 55, 191, 217, 191, 217, 76, 8202, 8203, 854, 220, 685, 8204, 101], [24, 621, 32, 236, 98, 24, 621, 32, 236, 98], [4, 161, 4206, 3525, 57, 767, 47, 39, 8205, 72, 57, 7, 2554, 252, 21, 67, 21, 6, 8, 8206, 8, 638, 207, 44, 3, 165, 826, 45, 3, 57, 767, 39, 91, 448, 65, 669, 57, 207, 47, 42, 8207, 134], [403, 704, 3526, 500, 639, 245, 403, 704, 3526, 500, 639, 245], [27, 2, 46, 2, 337, 52, 5291, 5292, 27, 2, 46, 2, 337, 52, 5291, 5292, 1, 1, 425, 32, 7, 336, 44, 21, 63, 8, 64, 77, 1, 2291, 28, 2, 132, 32, 36, 13, 125, 20, 7, 335, 637, 4, 257, 241, 116], [27, 2, 515, 309, 1114, 1115, 31, 27, 2, 515, 309, 1114, 1115, 31], [27, 2, 29, 116, 27, 2, 29, 116], [363, 25, 80, 3, 26, 88, 160, 29, 56, 8208, 182, 213, 130, 155, 204, 117, 107, 214, 146, 363, 25, 80, 3, 26, 88, 160, 29, 1498], [97, 118, 1799, 2, 117, 220, 295, 829, 385, 30, 3, 86, 35, 118, 8209, 423, 107, 6], [130, 41, 8, 545, 97, 100, 8210, 8211, 86, 90, 271, 46], [486, 2, 132, 1817, 1818, 32, 28, 59, 5293, 486, 2, 132, 1817, 1818, 32, 28, 59, 5293], [14, 236, 751, 255, 47, 74, 63, 25, 2, 2330, 1009, 5294, 14, 236, 751, 255, 47, 74, 63, 25, 2, 2330, 1009, 5294], [50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 50, 2, 119, 3, 79, 13, 137, 13, 125, 20, 13, 20, 267, 2, 3, 28, 52, 137, 487, 50, 3, 28, 46, 2, 3, 13, 125, 20, 13, 20, 7, 119, 3, 224, 50, 3, 28, 2, 500, 3, 1615, 2, 3, 24, 58, 396, 328, 44, 180, 63, 84, 2, 46, 31, 321], [3527, 8212, 5295, 8213, 8214, 3466, 168, 20, 49, 2126, 4207, 1043, 5296, 8215, 5297, 30, 711, 5295, 28, 5298, 8216, 168, 20, 89, 8, 465, 2, 3, 142, 4207, 37, 71, 52, 37, 7, 1839], [32, 132, 32, 132], [193, 342, 46, 4, 1625, 3511, 3512, 193, 342, 46, 4, 1625, 3511, 3512], [15, 365, 334, 49, 27, 2, 95, 158, 33, 15, 53, 1695, 169, 485, 30, 8217, 8218, 21, 63, 1218, 23, 63, 36, 3, 8219, 18, 605, 39, 35, 14, 391, 207, 39, 95, 4, 53, 1695], [27, 2, 46, 2, 26, 27, 2, 46, 2, 26], ...]
run_classification(KNeighborsClassifier(), X_train, X_test, y_train, y_test)
from sklearn.tree import DecisionTreeClassifier
nb3 = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', DecisionTreeClassifier()),
])
nb3.fit(X_tr, y_tr)
y_pred3 = nb3.predict(X_te)
predictions3 = nb3.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred3, y_te))
print('f1 score %s' % f1_score(y_pred3, y_te,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_te, y_pred3))
print(confusion_matrix(y_te,y_pred3))
accuracy 0.5621301775147929
f1 score 0.5885170496482441
precision recall f1-score support
GRP_0 0.73 0.83 0.78 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.39 0.32 0.35 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.33 0.29 0.31 45
GRP_13 0.32 0.26 0.29 38
GRP_14 0.44 0.33 0.38 33
GRP_15 0.29 0.25 0.27 8
GRP_16 0.33 0.35 0.34 20
GRP_17 1.00 1.00 1.00 21
GRP_18 0.09 0.08 0.08 13
GRP_19 0.22 0.15 0.18 46
GRP_2 0.38 0.30 0.33 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.33 0.20 0.25 5
GRP_22 0.15 0.33 0.21 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.70 0.76 0.73 62
GRP_25 0.27 0.14 0.18 22
GRP_26 0.12 0.10 0.11 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.57 0.40 0.47 20
GRP_3 0.22 0.21 0.21 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.38 0.45 0.42 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.20 0.11 0.14 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.17 0.50 0.25 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.18 0.16 0.17 25
GRP_40 0.20 0.12 0.15 8
GRP_41 0.40 0.25 0.31 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.33 0.29 0.31 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.48 0.40 0.43 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.43 0.27 0.33 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 1.00 0.50 0.67 2
GRP_69 0.00 0.00 0.00 0
GRP_7 0.57 0.62 0.59 13
GRP_71 0.00 0.00 0.00 1
GRP_73 0.00 0.00 0.00 0
GRP_8 0.55 0.80 0.66 127
GRP_9 0.36 0.19 0.25 53
accuracy 0.56 1690
macro avg 0.18 0.17 0.17 1690
weighted avg 0.52 0.56 0.54 1690
[[623 1 4 ... 0 2 4]
[ 0 0 0 ... 0 1 0]
[ 4 0 9 ... 0 3 0]
...
[ 0 0 0 ... 0 0 0]
[ 1 0 1 ... 0 102 3]
[ 6 0 0 ... 0 29 10]]
from sklearn.ensemble import RandomForestClassifier
nb4 = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', RandomForestClassifier()),
])
nb4.fit(X_tr, y_tr)
y_pred4 = nb4.predict(X_te)
predictions4 = nb4.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred4, y_te))
print('f1 score %s' % f1_score(y_pred4, y_te,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_te, y_pred4))
print(confusion_matrix(y_te,y_pred4))
accuracy 0.6088757396449704
f1 score 0.6993969058928033
precision recall f1-score support
GRP_0 0.59 0.99 0.74 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.90 0.32 0.47 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.50 0.38 0.43 45
GRP_13 0.62 0.13 0.22 38
GRP_14 0.78 0.21 0.33 33
GRP_15 1.00 0.12 0.22 8
GRP_16 0.00 0.00 0.00 20
GRP_17 1.00 0.90 0.95 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.75 0.07 0.12 46
GRP_2 0.86 0.33 0.48 57
GRP_20 0.00 0.00 0.00 12
GRP_21 1.00 0.20 0.33 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.96 0.76 0.85 62
GRP_25 0.60 0.14 0.22 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 1.00 0.10 0.18 20
GRP_3 0.20 0.03 0.05 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.75 0.27 0.40 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.75 0.11 0.19 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 1.00 0.50 0.67 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 1.00 0.12 0.21 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 1.00 0.17 0.29 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.62 0.32 0.42 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.76 0.35 0.48 37
GRP_60 0.33 0.33 0.33 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_69 0.00 0.00 0.00 0
GRP_7 0.50 0.08 0.13 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.57 0.84 0.68 127
GRP_9 0.45 0.17 0.25 53
accuracy 0.61 1690
macro avg 0.28 0.12 0.15 1690
weighted avg 0.57 0.61 0.52 1690
[[745 0 0 ... 0 0 0]
[ 2 0 0 ... 0 1 0]
[ 15 0 9 ... 0 3 0]
...
[ 1 0 0 ... 0 0 0]
[ 5 0 1 ... 0 107 3]
[ 15 0 0 ... 0 29 9]]
pip install xgboost
Requirement already satisfied: xgboost in c:\users\p0s041d\anaconda3\lib\site-packages (1.5.0) Requirement already satisfied: numpy in c:\users\p0s041d\anaconda3\lib\site-packages (from xgboost) (1.21.3) Requirement already satisfied: scipy in c:\users\p0s041d\anaconda3\lib\site-packages (from xgboost) (1.5.2) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
from xgboost import XGBClassifier
nb5 = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', XGBClassifier()),
])
nb5.fit(X_tr, y_tr)
y_pred5 = nb5.predict(X_te)
predictions5 = nb5.predict_proba(X_te)
print('accuracy %s' % accuracy_score(y_pred5, y_te))
print('f1 score %s' % f1_score(y_pred5, y_te,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_te, y_pred5))
print(confusion_matrix(y_te,y_pred5))
[00:04:24] WARNING: C:/Users/Administrator/workspace/xgboost-win64_release_1.5.0/src/learner.cc:1115: Starting in XGBoost 1.3.0, the default evaluation metric used with the objective 'multi:softprob' was changed from 'merror' to 'mlogloss'. Explicitly set eval_metric if you'd like to restore the old behavior.
accuracy 0.6177514792899408
f1 score 0.6675088539690079
precision recall f1-score support
GRP_0 0.67 0.92 0.78 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.73 0.39 0.51 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.43 0.51 0.47 45
GRP_13 0.52 0.34 0.41 38
GRP_14 0.43 0.18 0.26 33
GRP_15 0.50 0.12 0.20 8
GRP_16 0.50 0.20 0.29 20
GRP_17 0.93 0.62 0.74 21
GRP_18 0.28 0.38 0.32 13
GRP_19 0.48 0.30 0.37 46
GRP_2 0.49 0.39 0.43 57
GRP_20 0.00 0.00 0.00 12
GRP_21 1.00 0.20 0.33 5
GRP_22 0.33 0.17 0.22 6
GRP_23 1.00 0.50 0.67 2
GRP_24 0.85 0.73 0.78 62
GRP_25 0.55 0.50 0.52 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.43 0.50 0.47 20
GRP_3 0.34 0.26 0.30 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.57 0.36 0.44 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.50 0.14 0.22 28
GRP_34 0.17 0.08 0.11 13
GRP_35 0.00 0.00 0.00 1
GRP_36 1.00 0.50 0.67 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.31 0.16 0.21 25
GRP_40 0.50 0.12 0.20 8
GRP_41 1.00 0.38 0.55 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.62 0.32 0.42 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.67 0.50 0.57 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.80 0.32 0.46 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_69 0.00 0.00 0.00 0
GRP_7 0.62 0.62 0.62 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.55 0.81 0.66 127
GRP_9 0.50 0.23 0.31 53
accuracy 0.62 1690
macro avg 0.29 0.18 0.21 1690
weighted avg 0.57 0.62 0.57 1690
[[690 0 1 ... 0 0 0]
[ 0 0 0 ... 0 1 0]
[ 12 0 11 ... 0 3 0]
...
[ 1 0 0 ... 0 0 0]
[ 2 0 1 ... 0 103 3]
[ 12 0 0 ... 0 29 12]]
#from keras.preprocessing.sequence import pad_sequences
padded_docs3 = pad_sequences(encoded_docs, maxlen=28, padding='post')
print(padded_docs3)
[[ 28 56 4 ... 1 31 321] [ 41 55 101 ... 1 1 450] [1031 95 4 ... 0 0 0] ... [ 378 79 13 ... 0 0 0] [ 348 646 990 ... 0 0 0] [ 661 7002 97 ... 0 0 0]]
## Splitting the data into train and test sets to build the classifiers
from sklearn.model_selection import train_test_split
X_tr2, X_te2, y_tr2, y_te2 = train_test_split(padded_docs3, Datafinal['Assignment group'], test_size=0.2, random_state=10)
max(map(len, encoded_docs))
1261
Maximum length was found = 1261 words
#from keras.preprocessing.sequence import pad_sequences
padded_docs4 = pad_sequences(encoded_docs, maxlen=1261, padding='post')
print(padded_docs4)
[[ 46 31 231 ... 0 0 0] [ 41 55 101 ... 0 0 0] [1031 95 4 ... 0 0 0] ... [ 378 79 13 ... 0 0 0] [ 348 646 990 ... 0 0 0] [ 661 7002 97 ... 0 0 0]]
## Splitting the data into train and test sets to build the classifiers
from sklearn.model_selection import train_test_split
X_tr3, X_te3, y_tr3, y_te3 = train_test_split(padded_docs4, Datafinal['Assignment group'], test_size=0.2, random_state=10)
import statistics
statistics.median(map(len, encoded_docs))
19.0
#from keras.preprocessing.sequence import pad_sequences
padded_docs5 = pad_sequences(encoded_docs, maxlen=18, padding='post')
print(padded_docs5)
[[ 3 28 2 ... 1 31 321] [ 42 8 1180 ... 1 1 450] [1031 95 4 ... 1 135 0] ... [ 378 79 13 ... 0 0 0] [ 110 49 27 ... 6 9 58] [ 43 825 10 ... 5723 3057 594]]
## Splitting the data into train and test sets to build the classifiers
from sklearn.model_selection import train_test_split
X_tr5, X_te5, y_tr5, y_te5 = train_test_split(padded_docs5, Datafinal['Assignment group'], test_size=0.2, random_state=10)
dTree_feature_random = DecisionTreeClassifier(random_state=1)
# use a full grid over all parameters
param_grid = {"max_depth": [3, None],
"max_features": [1, 3, 5,7,9,10],
"min_samples_split": [2, 3, 10],
"min_samples_leaf": [1, 3, 10],
"criterion": ["gini", "entropy"]}
from sklearn.model_selection import GridSearchCV
# run grid search
grid_search = GridSearchCV(dTree_feature_random, param_grid=param_grid)
grid_search.fit(X_tr2, y_tr2)
GridSearchCV(estimator=DecisionTreeClassifier(random_state=1),
param_grid={'criterion': ['gini', 'entropy'],
'max_depth': [3, None],
'max_features': [1, 3, 5, 7, 9, 10],
'min_samples_leaf': [1, 3, 10],
'min_samples_split': [2, 3, 10]})
print(grid_search.score(X_tr2, y_tr2))
print(grid_search.score(X_te2, y_te2))
#print(grid_search.score(X_valid_feature_select, y_valid))
0.6032849955608168 0.5100591715976331
from sklearn import metrics
print(metrics.classification_report(y_te2, pd.DataFrame(grid_search.predict(X_te2))))
precision recall f1-score support
GRP_0 0.56 0.90 0.70 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.39 0.32 0.35 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.12 0.09 0.10 45
GRP_13 0.07 0.03 0.04 38
GRP_14 0.00 0.00 0.00 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 1.00 0.76 0.86 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.15 0.04 0.07 46
GRP_2 0.20 0.14 0.16 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.63 0.58 0.61 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.50 0.12 0.20 8
GRP_31 0.40 0.18 0.25 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.27 0.12 0.17 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.36 0.36 0.36 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.38 0.14 0.20 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.52 0.64 0.57 127
GRP_9 0.37 0.13 0.19 53
accuracy 0.51 1690
macro avg 0.09 0.07 0.08 1690
weighted avg 0.38 0.51 0.42 1690
from sklearn.model_selection import GridSearchCV
# run grid search
grid_search4 = GridSearchCV(dTree_feature_random, param_grid=param_grid)
grid_search4.fit(X_tr3, y_tr3)
GridSearchCV(estimator=DecisionTreeClassifier(random_state=1),
param_grid={'criterion': ['gini', 'entropy'],
'max_depth': [3, None],
'max_features': [1, 3, 5, 7, 9, 10],
'min_samples_leaf': [1, 3, 10],
'min_samples_split': [2, 3, 10]})
print(grid_search4.score(X_tr3, y_tr3))
print(grid_search4.score(X_te3, y_te3))
#print(grid_search.score(X_valid_feature_select, y_valid))
0.5686593666765315 0.5017751479289941
from sklearn import metrics
print(metrics.classification_report(y_te3, pd.DataFrame(grid_search4.predict(X_te3))))
precision recall f1-score support
GRP_0 0.53 0.94 0.68 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.44 0.29 0.35 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.16 0.09 0.11 45
GRP_13 0.06 0.03 0.04 38
GRP_14 0.00 0.00 0.00 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.80 0.76 0.78 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.17 0.02 0.03 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.60 0.55 0.57 62
GRP_25 0.33 0.05 0.08 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.17 0.03 0.05 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.10 0.04 0.06 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.35 0.16 0.22 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.42 0.52 0.47 127
GRP_9 0.41 0.13 0.20 53
accuracy 0.50 1690
macro avg 0.07 0.06 0.06 1690
weighted avg 0.35 0.50 0.39 1690
RF_feature_random = RandomForestClassifier(random_state=1)
# use a full grid over all parameters
param_grid = {"max_depth": [3, None],
"max_features": [1, 3, 5,7,9,10],
"min_samples_split": [2, 3, 10],
"min_samples_leaf": [1, 3, 10],
"criterion": ["gini", "entropy"]}
from sklearn.model_selection import GridSearchCV
# run grid search
grid_search2 = GridSearchCV(RF_feature_random, param_grid=param_grid)
grid_search2.fit(X_tr2, y_tr2)
GridSearchCV(estimator=RandomForestClassifier(random_state=1),
param_grid={'criterion': ['gini', 'entropy'],
'max_depth': [3, None],
'max_features': [1, 3, 5, 7, 9, 10],
'min_samples_leaf': [1, 3, 10],
'min_samples_split': [2, 3, 10]})
print(grid_search2.score(X_tr2, y_tr2))
print(grid_search2.score(X_te2, y_te2))
#print(grid_search.score(X_valid_feature_select, y_valid))
0.9523527670908553 0.5644970414201184
from sklearn import metrics
print(metrics.classification_report(y_te2, pd.DataFrame(grid_search2.predict(X_te2))))
precision recall f1-score support
GRP_0 0.55 0.99 0.70 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.90 0.32 0.47 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.31 0.09 0.14 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.00 0.00 0.00 33
GRP_15 1.00 0.12 0.22 8
GRP_16 0.00 0.00 0.00 20
GRP_17 1.00 1.00 1.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.86 0.21 0.34 57
GRP_20 0.00 0.00 0.00 12
GRP_21 1.00 0.20 0.33 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.83 0.61 0.70 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.17 0.03 0.05 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.57 0.36 0.44 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 1.00 0.50 0.67 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 1.00 0.12 0.21 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.62 0.32 0.42 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.75 0.24 0.37 37
GRP_60 0.33 0.33 0.33 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.58 0.72 0.64 127
GRP_9 0.42 0.15 0.22 53
accuracy 0.56 1690
macro avg 0.19 0.10 0.12 1690
weighted avg 0.45 0.56 0.45 1690
dtree_feature_random2 = DecisionTreeClassifier(random_state=1)
# specify parameters and distributions to sample from
from scipy.stats import randint as sp_randint
param_dist = {"max_depth": [3, None],
"max_features": sp_randint(1, 11),
"min_samples_split": sp_randint(2, 11),
"min_samples_leaf": sp_randint(1, 11),
# "bootstrap": [True, False],
"criterion": ["gini", "entropy"]}
from sklearn.model_selection import RandomizedSearchCV
# run randomized search
samples = 10 # number of random samples
randomCV = RandomizedSearchCV(dtree_feature_random2, param_distributions=param_dist, n_iter=samples) #default cv = 3
randomCV.fit(X_tr2, y_tr2)
print(randomCV.best_params_)
{'criterion': 'entropy', 'max_depth': None, 'max_features': 7, 'min_samples_leaf': 10, 'min_samples_split': 4}
print(randomCV.score(X_te2, y_te2))
0.5100591715976331
RF_feature_random2 = RandomForestClassifier(random_state=1)
# specify parameters and distributions to sample from
param_dist2 = {"max_depth": [3, None],
"max_features": sp_randint(1, 11),
"min_samples_split": sp_randint(2, 11),
"min_samples_leaf": sp_randint(1, 11),
"bootstrap": [True, False],
"criterion": ["gini", "entropy"]}
# run randomized search
samples = 10 # number of random samples
randomCV2 = RandomizedSearchCV(RF_feature_random2, param_distributions=param_dist, n_iter=samples) #default cv = 3
randomCV2.fit(X_tr2, y_tr2)
print(randomCV2.best_params_)
{'criterion': 'gini', 'max_depth': None, 'max_features': 7, 'min_samples_leaf': 1, 'min_samples_split': 3}
print(randomCV2.score(X_te2, y_te2))
0.5633136094674556
# The maximum number of words to be used. (most frequent)
MAX_NB_WORDS = 50000
# Max number of words in each complaint.
MAX_SEQUENCE_LENGTH = 250
# This is fixed.
EMBEDDING_DIM = 100
tokenizer = Tokenizer(num_words=MAX_NB_WORDS, filters='!"#$%&()*+,-./:;<=>?@[\]^_`{|}~', lower=True)
tokenizer.fit_on_texts(Datafinal['Assignment group'].values)
word_index = tokenizer.word_index
print('Found %s unique tokens.' % len(word_index))
Found 75 unique tokens.
#X = tokenizer.texts_to_sequences(filtered_tkt['Assignment group'].values)
X = padded_docs3
print('Shape of data tensor:', X.shape)
Shape of data tensor: (8448, 28)
Y = pd.get_dummies(Datafinal['Assignment group'].values)
print('Shape of label tensor:', Y.shape)
Shape of label tensor: (8448, 74)
X_train, X_test, Y_train, Y_test = train_test_split(X,Y, test_size = 0.20, random_state = 42)
print(X_train.shape,Y_train.shape)
print(X_test.shape,Y_test.shape)
(6758, 28) (6758, 74) (1690, 28) (1690, 74)
from keras.layers import Input, Dropout, Flatten, Dense, Embedding, LSTM, GRU
from keras.callbacks import EarlyStopping, ModelCheckpoint
model = Sequential()
model.add(Embedding(MAX_NB_WORDS, EMBEDDING_DIM, input_length=X.shape[1]))
model.add(LSTM(100, dropout=0.2, recurrent_dropout=0.2))
model.add(Dense(74, activation='softmax'))
model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
epochs = 30 # Keeping the epochs count as 5 as accuracy starts decreasign after 5 epochs
batch_size = 64
history = model.fit(X_train, Y_train, epochs=epochs, batch_size=batch_size,validation_split=0.1,callbacks=[EarlyStopping(monitor='val_loss', patience=3, min_delta=0.0001)])
Epoch 1/30 96/96 [==============================] - 15s 121ms/step - loss: 2.7689 - accuracy: 0.4633 - val_loss: 2.5005 - val_accuracy: 0.4393 Epoch 2/30 96/96 [==============================] - 11s 115ms/step - loss: 2.1559 - accuracy: 0.5345 - val_loss: 2.1589 - val_accuracy: 0.5237 Epoch 3/30 96/96 [==============================] - 11s 111ms/step - loss: 1.8563 - accuracy: 0.5748 - val_loss: 2.0437 - val_accuracy: 0.5385 Epoch 4/30 96/96 [==============================] - 11s 113ms/step - loss: 1.6575 - accuracy: 0.5977 - val_loss: 1.9298 - val_accuracy: 0.5429 Epoch 5/30 96/96 [==============================] - 11s 112ms/step - loss: 1.5171 - accuracy: 0.6161 - val_loss: 2.0122 - val_accuracy: 0.5503 Epoch 6/30 96/96 [==============================] - 11s 115ms/step - loss: 1.4126 - accuracy: 0.6302 - val_loss: 1.9673 - val_accuracy: 0.5311 Epoch 7/30 96/96 [==============================] - 11s 113ms/step - loss: 1.2814 - accuracy: 0.6585 - val_loss: 2.0286 - val_accuracy: 0.5459
accr = model.evaluate(X_test,Y_test)
print('Test set\n Loss: {:0.3f}\n Accuracy: {:0.3f}'.format(accr[0],accr[1]))
53/53 [==============================] - 0s 8ms/step - loss: 1.9286 - accuracy: 0.5746 Test set Loss: 1.929 Accuracy: 0.575
plt.title('Loss')
plt.plot(history.history['loss'], label='train')
plt.plot(history.history['val_loss'], label='test')
plt.legend()
plt.show();
print(X_train.shape,Y_train.shape)
print(X_test.shape,Y_test.shape)
(6758, 28) (6758, 74) (1690, 28) (1690, 74)
nb6 = Pipeline([
('clf', MultinomialNB()),
])
nb6.fit(X_train, y_tr)
y_pred = nb6.predict(X_test)
predictions = nb6.predict_proba(X_test)
print('accuracy %s' % accuracy_score(y_pred, y_te))
print('f1 score %s' % f1_score(y_pred, y_te,average='weighted'))
print(classification_report(y_te, y_pred))
print(confusion_matrix(y_te,y_pred))
accuracy 0.004142011834319527
f1 score 0.00394417745183505
precision recall f1-score support
GRP_0 0.00 0.00 0.00 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.04 0.04 0.04 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.00 0.00 0.00 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.00 0.00 0.00 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.11 0.08 0.09 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.10 0.02 0.03 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.00 0.00 0.00 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.06 0.05 0.06 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_43 0.00 0.00 0.00 0
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.02 0.04 0.03 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_56 0.00 0.00 0.00 0
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.02 0.03 0.02 37
GRP_60 0.00 0.00 0.00 3
GRP_61 0.00 0.00 0.00 0
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_64 0.00 0.00 0.00 0
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_67 0.00 0.00 0.00 0
GRP_68 0.00 0.00 0.00 0
GRP_69 0.00 0.00 0.00 0
GRP_7 0.04 0.08 0.05 13
GRP_70 0.00 0.00 0.00 0
GRP_71 0.00 0.00 0.00 1
GRP_72 0.00 0.00 0.00 0
GRP_73 0.00 0.00 0.00 0
GRP_8 0.00 0.00 0.00 127
GRP_9 0.00 0.00 0.00 53
accuracy 0.00 1690
macro avg 0.01 0.00 0.00 1690
weighted avg 0.01 0.00 0.00 1690
[[ 0 78 6 ... 7 0 1]
[ 0 0 0 ... 0 0 0]
[ 0 4 1 ... 0 0 0]
...
[ 0 0 0 ... 0 0 0]
[ 0 10 1 ... 1 0 0]
[ 0 7 0 ... 0 0 0]]
nb7 = Pipeline([
('clf', KNeighborsClassifier()),
])
nb7.fit(X_train, y_tr)
y_pred7 = nb7.predict(X_test)
predictions = nb7.predict_proba(X_test)
print('accuracy %s' % accuracy_score(y_pred7, y_te))
print('f1 score %s' % f1_score(y_pred7, y_te,average='weighted'))
print(classification_report(y_te, y_pred7))
print(confusion_matrix(y_te,y_pred7))
accuracy 0.4124260355029586
f1 score 0.555462029924814
precision recall f1-score support
GRP_0 0.44 0.92 0.60 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.00 0.00 0.00 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.00 0.00 0.00 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.00 0.00 0.00 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.25 0.02 0.03 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.00 0.00 0.00 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.20 0.04 0.06 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.00 0.00 0.00 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.00 0.00 0.00 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.07 0.02 0.03 127
GRP_9 0.00 0.00 0.00 53
accuracy 0.41 1690
macro avg 0.02 0.02 0.01 1690
weighted avg 0.21 0.41 0.27 1690
[[693 1 6 ... 0 8 8]
[ 3 0 0 ... 0 0 0]
[ 27 0 0 ... 0 0 0]
...
[ 1 0 0 ... 0 0 0]
[118 0 1 ... 0 2 1]
[ 51 0 1 ... 0 0 0]]
from sklearn.tree import DecisionTreeClassifier
nb8 = Pipeline([
('clf', DecisionTreeClassifier()),
])
nb8.fit(X_train, y_tr)
y_pred8 = nb8.predict(X_test)
predictions = nb8.predict_proba(X_test)
print('accuracy %s' % accuracy_score(y_pred8, y_te))
print('f1 score %s' % f1_score(y_pred8, y_te,average='weighted'))
print(classification_report(y_te, y_pred8))
print(confusion_matrix(y_te,y_pred8))
accuracy 0.2727810650887574
f1 score 0.30536378233480793
precision recall f1-score support
GRP_0 0.45 0.59 0.51 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.08 0.04 0.05 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.04 0.04 0.04 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.11 0.06 0.08 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.14 0.05 0.07 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.02 0.02 0.02 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.00 0.00 0.00 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.08 0.05 0.06 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_39 0.00 0.00 0.00 0
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_43 0.00 0.00 0.00 0
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.05 0.04 0.04 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.05 0.03 0.04 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_68 0.00 0.00 0.00 0
GRP_69 0.00 0.00 0.00 0
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_72 0.00 0.00 0.00 0
GRP_8 0.07 0.06 0.07 127
GRP_9 0.11 0.08 0.09 53
accuracy 0.27 1690
macro avg 0.02 0.02 0.02 1690
weighted avg 0.22 0.27 0.24 1690
[[439 2 5 ... 0 58 12]
[ 4 0 0 ... 0 0 0]
[ 18 0 1 ... 0 1 0]
...
[ 0 0 0 ... 0 0 0]
[ 74 1 1 ... 0 8 7]
[ 32 0 0 ... 0 1 4]]
from sklearn.ensemble import RandomForestClassifier
nb9 = Pipeline([
('clf', RandomForestClassifier()),
])
nb9.fit(X_train, y_tr)
y_pred9 = nb9.predict(X_test)
predictions = nb9.predict_proba(X_test)
print('accuracy %s' % accuracy_score(y_pred9, y_te))
print('f1 score %s' % f1_score(y_pred9, y_te,average='weighted'))
print(classification_report(y_te, y_pred9))
print(confusion_matrix(y_te,y_pred9))
accuracy 0.421301775147929
f1 score 0.571073927308175
precision recall f1-score support
GRP_0 0.45 0.95 0.61 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.00 0.00 0.00 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.08 0.02 0.04 45
GRP_13 0.00 0.00 0.00 38
GRP_14 0.50 0.03 0.06 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.00 0.00 0.00 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.00 0.00 0.00 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.12 0.04 0.06 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.00 0.00 0.00 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_69 0.00 0.00 0.00 0
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.00 0.00 0.00 127
GRP_9 0.00 0.00 0.00 53
accuracy 0.42 1690
macro avg 0.02 0.02 0.01 1690
weighted avg 0.21 0.42 0.27 1690
[[709 0 0 ... 0 6 5]
[ 4 0 0 ... 0 0 0]
[ 27 0 0 ... 0 0 0]
...
[ 1 0 0 ... 0 0 0]
[119 1 0 ... 0 0 0]
[ 50 0 0 ... 0 1 0]]
pip install xgboost
Requirement already satisfied: xgboost in c:\users\p0s041d\anaconda3\lib\site-packages (1.5.0) Requirement already satisfied: scipy in c:\users\p0s041d\anaconda3\lib\site-packages (from xgboost) (1.5.2) Requirement already satisfied: numpy in c:\users\p0s041d\anaconda3\lib\site-packages (from xgboost) (1.21.3) Note: you may need to restart the kernel to use updated packages.
WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available. You should consider upgrading via the 'C:\Users\p0s041d\Anaconda3\python.exe -m pip install --upgrade pip' command.
from xgboost import XGBClassifier
nb10 = Pipeline([
('clf', XGBClassifier()),
])
nb10.fit(X_train, y_tr)
y_pred10 = nb10.predict(X_test)
predictions = nb10.predict_proba(X_test)
print('accuracy %s' % accuracy_score(y_pred10, y_te))
print('f1 score %s' % f1_score(y_pred10, y_te,average='weighted'))
print(classification_report(y_te, y_pred10))
print(confusion_matrix(y_te,y_pred10))
[02:11:43] WARNING: C:/Users/Administrator/workspace/xgboost-win64_release_1.5.0/src/learner.cc:1115: Starting in XGBoost 1.3.0, the default evaluation metric used with the objective 'multi:softprob' was changed from 'merror' to 'mlogloss'. Explicitly set eval_metric if you'd like to restore the old behavior.
accuracy 0.4230769230769231
f1 score 0.5717330378709872
precision recall f1-score support
GRP_0 0.45 0.95 0.61 750
GRP_1 0.00 0.00 0.00 4
GRP_10 0.00 0.00 0.00 28
GRP_11 0.00 0.00 0.00 6
GRP_12 0.00 0.00 0.00 45
GRP_13 0.00 0.00 0.00 38
GRP_14 1.00 0.03 0.06 33
GRP_15 0.00 0.00 0.00 8
GRP_16 0.00 0.00 0.00 20
GRP_17 0.00 0.00 0.00 21
GRP_18 0.00 0.00 0.00 13
GRP_19 0.00 0.00 0.00 46
GRP_2 0.00 0.00 0.00 57
GRP_20 0.00 0.00 0.00 12
GRP_21 0.00 0.00 0.00 5
GRP_22 0.00 0.00 0.00 6
GRP_23 0.00 0.00 0.00 2
GRP_24 0.14 0.02 0.03 62
GRP_25 0.00 0.00 0.00 22
GRP_26 0.00 0.00 0.00 10
GRP_27 0.00 0.00 0.00 6
GRP_28 0.00 0.00 0.00 7
GRP_29 0.00 0.00 0.00 20
GRP_3 0.00 0.00 0.00 38
GRP_30 0.00 0.00 0.00 8
GRP_31 0.00 0.00 0.00 11
GRP_32 0.00 0.00 0.00 1
GRP_33 0.00 0.00 0.00 28
GRP_34 0.00 0.00 0.00 13
GRP_35 0.00 0.00 0.00 1
GRP_36 0.00 0.00 0.00 2
GRP_37 0.00 0.00 0.00 5
GRP_38 0.00 0.00 0.00 1
GRP_4 0.00 0.00 0.00 25
GRP_40 0.00 0.00 0.00 8
GRP_41 0.00 0.00 0.00 8
GRP_42 0.00 0.00 0.00 6
GRP_43 0.00 0.00 0.00 0
GRP_44 0.00 0.00 0.00 3
GRP_45 0.00 0.00 0.00 5
GRP_46 0.00 0.00 0.00 4
GRP_47 0.00 0.00 0.00 7
GRP_48 0.00 0.00 0.00 1
GRP_49 0.00 0.00 0.00 2
GRP_5 0.20 0.04 0.07 25
GRP_50 0.00 0.00 0.00 4
GRP_51 0.00 0.00 0.00 3
GRP_52 0.00 0.00 0.00 2
GRP_53 0.00 0.00 0.00 2
GRP_54 0.00 0.00 0.00 1
GRP_55 0.00 0.00 0.00 4
GRP_57 0.00 0.00 0.00 1
GRP_58 0.00 0.00 0.00 1
GRP_59 0.00 0.00 0.00 1
GRP_6 0.00 0.00 0.00 37
GRP_60 0.00 0.00 0.00 3
GRP_62 0.00 0.00 0.00 9
GRP_63 0.00 0.00 0.00 1
GRP_65 0.00 0.00 0.00 2
GRP_66 0.00 0.00 0.00 2
GRP_69 0.00 0.00 0.00 0
GRP_7 0.00 0.00 0.00 13
GRP_71 0.00 0.00 0.00 1
GRP_8 0.10 0.02 0.03 127
GRP_9 0.00 0.00 0.00 53
accuracy 0.42 1690
macro avg 0.03 0.02 0.01 1690
weighted avg 0.23 0.42 0.27 1690
[[710 0 0 ... 0 10 3]
[ 4 0 0 ... 0 0 0]
[ 27 0 0 ... 0 0 0]
...
[ 1 0 0 ... 0 0 0]
[118 0 0 ... 0 2 1]
[ 50 0 0 ... 0 1 0]]
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncoder, OneHotEncoder
labelencoder_X = LabelEncoder()
#new_X('gender', 'topic', 'sign')=labelencoder_X.fit_transform(X['gender', 'topic', 'sign'])
Datafinal['target']=labelencoder_X.fit_transform(Datafinal['Assignment group'])
vectorizer = TfidfVectorizer()
vectorizer.fit(Datafinal['merged'])
TfidfVectorizer()
X = vectorizer.transform(Datafinal['merged'])
X_tr_countvec_wo_padd, X_te_countvec_wo_padd, y_tr_countvec_wo_padd, y_te_countvec_wo_padd = train_test_split(
X, Datafinal['target'],test_size=0.15, random_state=0)
from sklearn.feature_selection import SelectKBest, chi2
ch2 = SelectKBest(chi2, k='all')
X_tr_countvec_wo_padd = ch2.fit_transform(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
X_te_countvec_wo_padd = ch2.transform(X_te_countvec_wo_padd)
X_tr_countvec_wo_padd, X_te_countvec_wo_padd
(<7180x12772 sparse matrix of type '<class 'numpy.float64'>' with 137948 stored elements in Compressed Sparse Row format>, <1268x12772 sparse matrix of type '<class 'numpy.float64'>' with 23851 stored elements in Compressed Sparse Row format>)
print(X_tr_countvec_wo_padd)
(0, 6297) 0.5309285565256462 (0, 5101) 0.2636678366543083 (0, 129) 0.6653083198196642 (0, 76) 0.45382703683051545 (1, 12610) 0.30065005889772833 (1, 12543) 0.15813488620215646 (1, 12216) 0.05895317909460283 (1, 12054) 0.04273860981478475 (1, 12051) 0.05191836173137176 (1, 11972) 0.04511096415647436 (1, 11557) 0.10286869508537586 (1, 11528) 0.08797990094445236 (1, 11472) 0.12023096468493241 (1, 11466) 0.041003981785575565 (1, 11463) 0.06274715790631441 (1, 11462) 0.05736618980282548 (1, 11084) 0.08157405391360857 (1, 11068) 0.09463080336902543 (1, 10972) 0.09081257060212526 (1, 10940) 0.22221317360345252 (1, 10921) 0.06668525977268508 (1, 10896) 0.04376243424007365 (1, 10839) 0.18978770752548607 (1, 10815) 0.05307563083915568 (1, 10802) 0.22675116040054571 : : (7177, 861) 0.0434381828550888 (7177, 796) 0.04150508315269628 (7177, 790) 0.0658417553682581 (7177, 688) 0.07153076939818115 (7177, 599) 0.03169917546779367 (7177, 540) 0.07792026557831225 (7177, 488) 0.038976367579192005 (7177, 421) 0.06678860577776655 (7177, 405) 0.03449908090684707 (7177, 323) 0.05432555660400124 (7177, 243) 0.048784311520885096 (7178, 12270) 0.6183872651202522 (7178, 12179) 0.3960207748831848 (7178, 11972) 0.3354460775914511 (7178, 7328) 0.2237593846099943 (7178, 2855) 0.35883837901350496 (7178, 1915) 0.41159132737758686 (7179, 10997) 0.21319304260918437 (7179, 7848) 0.6163698701437941 (7179, 7172) 0.24887559192860195 (7179, 6536) 0.29471008750240885 (7179, 6534) 0.2999387991919227 (7179, 5101) 0.27654094944328816 (7179, 4673) 0.2416789259048812 (7179, 1614) 0.44832681229460997
#nb6 = Pipeline([
# ('clf', MultinomialNB()),
# ])
from sklearn.model_selection import train_test_split,GridSearchCV
parameters_nb6=dict(alpha=[1.0,0],fit_prior=[True,False])
nb6 = MultinomialNB()
clf_nb6 = GridSearchCV(nb6, parameters_nb6, cv=10)
clf_nb6.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
#nb6.fit(X_train, y_tr)
scores = clf_nb6.cv_results_['mean_test_score']
nb6_comb=[]
score_list=[]
[ nb6_comb.append([i,j]) for i in parameters_nb6['alpha'] for j in parameters_nb6['fit_prior'] ]
for score, n_nb6 in zip(scores, np.array(nb6_comb)):
score_list.append([n_nb6,score])
print(n_nb6,":",score)
[1. 1.] : 0.5525069637883008 [1. 0.] : 0.5981894150417826 [0. 1.] : 0.6444289693593314 [0. 0.] : 0.5266016713091922
print("The best parameters for MultinomialNB: ",clf_nb6.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for MultinomialNB: ",clf_nb6.best_score_)
The best parameters for MultinomialNB: {'alpha': 0, 'fit_prior': True}
The best score for MultinomialNB: 0.6444289693593314
from sklearn import metrics
MultinomialNB_final = MultinomialNB(alpha=0, fit_prior= True)
MultinomialNB_final.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
y_pred = MultinomialNB_final.predict(X_te_countvec_wo_padd)
predictions = MultinomialNB_final.predict_proba(X_te_countvec_wo_padd)
acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'MultinomialNB','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
#acc_df[0]=['MultinomialNB',accuracy_score(y_pred, y_te2),f1_score(y_pred, y_te2,average='weighted')]
print('accuracy %s' % accuracy_score(y_pred, y_te_countvec_wo_padd))
print('f1 score %s' % f1_score(y_pred, y_te_countvec_wo_padd,average='weighted'))
#print(classification_report(y_te, y_pred))
#cm=confusion_matrix(str(y_te),y_pred, labels=[-1, 1])
print(confusion_matrix(y_te_countvec_wo_padd,y_pred))
accuracy 0.667981072555205 f1 score 0.714744838944073 [[572 0 0 ... 1 0 0] [ 1 3 0 ... 0 0 0] [ 3 0 9 ... 0 4 0] ... [ 1 0 0 ... 0 0 0] [ 3 0 0 ... 0 86 0] [ 5 0 1 ... 0 22 7]]
acc_df
| Model_Name | acc_score | f1_score | |
|---|---|---|---|
| 0 | MultinomialNB | 0.667981 | 0.714745 |
parameters_NNH=dict(n_neighbors=range(1,10),leaf_size=range(10,50), weights = ['uniform', 'distance'])
NNH = KNeighborsClassifier()
clf_NNH = GridSearchCV(NNH, parameters_NNH, cv=5)
clf_NNH.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
scores = clf_NNH.cv_results_['mean_test_score']
nnh_comb=[]
score_list=[]
[ nnh_comb.append([i,j]) for i in parameters_NNH['n_neighbors'] for j in parameters_NNH['leaf_size'] ]
for score, n_nnh in zip(scores, np.array(nnh_comb)):
score_list.append([n_nnh,score])
print(n_nnh,":",score)
[ 1 10] : 0.5928969359331476 [ 1 11] : 0.5928969359331476 [ 1 12] : 0.5635097493036212 [ 1 13] : 0.5789693593314763 [ 1 14] : 0.6360724233983287 [ 1 15] : 0.6385793871866295 [ 1 16] : 0.6278551532033426 [ 1 17] : 0.636908077994429 [ 1 18] : 0.6350974930362117 [ 1 19] : 0.6449860724233983 [ 1 20] : 0.6387186629526462 [ 1 21] : 0.6487465181058496 [ 1 22] : 0.6396935933147632 [ 1 23] : 0.6506963788300836 [ 1 24] : 0.6428969359331476 [ 1 25] : 0.6523676880222841 [ 1 26] : 0.6396935933147633 [ 1 27] : 0.6493036211699165 [ 1 28] : 0.5928969359331476 [ 1 29] : 0.5928969359331476 [ 1 30] : 0.5635097493036212 [ 1 31] : 0.5789693593314763 [ 1 32] : 0.6360724233983287 [ 1 33] : 0.6385793871866295 [ 1 34] : 0.6278551532033426 [ 1 35] : 0.636908077994429 [ 1 36] : 0.6350974930362117 [ 1 37] : 0.6449860724233983 [ 1 38] : 0.6387186629526462 [ 1 39] : 0.6487465181058496 [ 1 40] : 0.6396935933147632 [ 1 41] : 0.6506963788300836 [ 1 42] : 0.6428969359331476 [ 1 43] : 0.6523676880222841 [ 1 44] : 0.6396935933147633 [ 1 45] : 0.6493036211699165 [ 1 46] : 0.5928969359331476 [ 1 47] : 0.5928969359331476 [ 1 48] : 0.5635097493036212 [ 1 49] : 0.5789693593314763 [ 2 10] : 0.6360724233983287 [ 2 11] : 0.6385793871866295 [ 2 12] : 0.6278551532033426 [ 2 13] : 0.636908077994429 [ 2 14] : 0.6350974930362117 [ 2 15] : 0.6449860724233983 [ 2 16] : 0.6387186629526462 [ 2 17] : 0.6487465181058496 [ 2 18] : 0.6396935933147632 [ 2 19] : 0.6506963788300836 [ 2 20] : 0.6428969359331476 [ 2 21] : 0.6523676880222841 [ 2 22] : 0.6396935933147633 [ 2 23] : 0.6493036211699165 [ 2 24] : 0.5928969359331476 [ 2 25] : 0.5928969359331476 [ 2 26] : 0.5635097493036212 [ 2 27] : 0.5789693593314763 [ 2 28] : 0.6360724233983287 [ 2 29] : 0.6385793871866295 [ 2 30] : 0.6278551532033426 [ 2 31] : 0.636908077994429 [ 2 32] : 0.6350974930362117 [ 2 33] : 0.6449860724233983 [ 2 34] : 0.6387186629526462 [ 2 35] : 0.6487465181058496 [ 2 36] : 0.6396935933147632 [ 2 37] : 0.6506963788300836 [ 2 38] : 0.6428969359331476 [ 2 39] : 0.6523676880222841 [ 2 40] : 0.6396935933147633 [ 2 41] : 0.6493036211699165 [ 2 42] : 0.5928969359331476 [ 2 43] : 0.5928969359331476 [ 2 44] : 0.5635097493036212 [ 2 45] : 0.5789693593314763 [ 2 46] : 0.6360724233983287 [ 2 47] : 0.6385793871866295 [ 2 48] : 0.6278551532033426 [ 2 49] : 0.636908077994429 [ 3 10] : 0.6350974930362117 [ 3 11] : 0.6449860724233983 [ 3 12] : 0.6387186629526462 [ 3 13] : 0.6487465181058496 [ 3 14] : 0.6396935933147632 [ 3 15] : 0.6506963788300836 [ 3 16] : 0.6428969359331476 [ 3 17] : 0.6523676880222841 [ 3 18] : 0.6396935933147633 [ 3 19] : 0.6493036211699165 [ 3 20] : 0.5928969359331476 [ 3 21] : 0.5928969359331476 [ 3 22] : 0.5635097493036212 [ 3 23] : 0.5789693593314763 [ 3 24] : 0.6360724233983287 [ 3 25] : 0.6385793871866295 [ 3 26] : 0.6278551532033426 [ 3 27] : 0.636908077994429 [ 3 28] : 0.6350974930362117 [ 3 29] : 0.6449860724233983 [ 3 30] : 0.6387186629526462 [ 3 31] : 0.6487465181058496 [ 3 32] : 0.6396935933147632 [ 3 33] : 0.6506963788300836 [ 3 34] : 0.6428969359331476 [ 3 35] : 0.6523676880222841 [ 3 36] : 0.6396935933147633 [ 3 37] : 0.6493036211699165 [ 3 38] : 0.5928969359331476 [ 3 39] : 0.5928969359331476 [ 3 40] : 0.5635097493036212 [ 3 41] : 0.5789693593314763 [ 3 42] : 0.6360724233983287 [ 3 43] : 0.6385793871866295 [ 3 44] : 0.6278551532033426 [ 3 45] : 0.636908077994429 [ 3 46] : 0.6350974930362117 [ 3 47] : 0.6449860724233983 [ 3 48] : 0.6387186629526462 [ 3 49] : 0.6487465181058496 [ 4 10] : 0.6396935933147632 [ 4 11] : 0.6506963788300836 [ 4 12] : 0.6428969359331476 [ 4 13] : 0.6523676880222841 [ 4 14] : 0.6396935933147633 [ 4 15] : 0.6493036211699165 [ 4 16] : 0.5928969359331476 [ 4 17] : 0.5928969359331476 [ 4 18] : 0.5635097493036212 [ 4 19] : 0.5789693593314763 [ 4 20] : 0.6360724233983287 [ 4 21] : 0.6385793871866295 [ 4 22] : 0.6278551532033426 [ 4 23] : 0.636908077994429 [ 4 24] : 0.6350974930362117 [ 4 25] : 0.6449860724233983 [ 4 26] : 0.6387186629526462 [ 4 27] : 0.6487465181058496 [ 4 28] : 0.6396935933147632 [ 4 29] : 0.6506963788300836 [ 4 30] : 0.6428969359331476 [ 4 31] : 0.6523676880222841 [ 4 32] : 0.6396935933147633 [ 4 33] : 0.6493036211699165 [ 4 34] : 0.5928969359331476 [ 4 35] : 0.5928969359331476 [ 4 36] : 0.5635097493036212 [ 4 37] : 0.5789693593314763 [ 4 38] : 0.6360724233983287 [ 4 39] : 0.6385793871866295 [ 4 40] : 0.6278551532033426 [ 4 41] : 0.636908077994429 [ 4 42] : 0.6350974930362117 [ 4 43] : 0.6449860724233983 [ 4 44] : 0.6387186629526462 [ 4 45] : 0.6487465181058496 [ 4 46] : 0.6396935933147632 [ 4 47] : 0.6506963788300836 [ 4 48] : 0.6428969359331476 [ 4 49] : 0.6523676880222841 [ 5 10] : 0.6396935933147633 [ 5 11] : 0.6493036211699165 [ 5 12] : 0.5928969359331476 [ 5 13] : 0.5928969359331476 [ 5 14] : 0.5635097493036212 [ 5 15] : 0.5789693593314763 [ 5 16] : 0.6360724233983287 [ 5 17] : 0.6385793871866295 [ 5 18] : 0.6278551532033426 [ 5 19] : 0.636908077994429 [ 5 20] : 0.6350974930362117 [ 5 21] : 0.6449860724233983 [ 5 22] : 0.6387186629526462 [ 5 23] : 0.6487465181058496 [ 5 24] : 0.6396935933147632 [ 5 25] : 0.6506963788300836 [ 5 26] : 0.6428969359331476 [ 5 27] : 0.6523676880222841 [ 5 28] : 0.6396935933147633 [ 5 29] : 0.6493036211699165 [ 5 30] : 0.5928969359331476 [ 5 31] : 0.5928969359331476 [ 5 32] : 0.5635097493036212 [ 5 33] : 0.5789693593314763 [ 5 34] : 0.6360724233983287 [ 5 35] : 0.6385793871866295 [ 5 36] : 0.6278551532033426 [ 5 37] : 0.636908077994429 [ 5 38] : 0.6350974930362117 [ 5 39] : 0.6449860724233983 [ 5 40] : 0.6387186629526462 [ 5 41] : 0.6487465181058496 [ 5 42] : 0.6396935933147632 [ 5 43] : 0.6506963788300836 [ 5 44] : 0.6428969359331476 [ 5 45] : 0.6523676880222841 [ 5 46] : 0.6396935933147633 [ 5 47] : 0.6493036211699165 [ 5 48] : 0.5928969359331476 [ 5 49] : 0.5928969359331476 [ 6 10] : 0.5635097493036212 [ 6 11] : 0.5789693593314763 [ 6 12] : 0.6360724233983287 [ 6 13] : 0.6385793871866295 [ 6 14] : 0.6278551532033426 [ 6 15] : 0.636908077994429 [ 6 16] : 0.6350974930362117 [ 6 17] : 0.6449860724233983 [ 6 18] : 0.6387186629526462 [ 6 19] : 0.6487465181058496 [ 6 20] : 0.6396935933147632 [ 6 21] : 0.6506963788300836 [ 6 22] : 0.6428969359331476 [ 6 23] : 0.6523676880222841 [ 6 24] : 0.6396935933147633 [ 6 25] : 0.6493036211699165 [ 6 26] : 0.5928969359331476 [ 6 27] : 0.5928969359331476 [ 6 28] : 0.5635097493036212 [ 6 29] : 0.5789693593314763 [ 6 30] : 0.6360724233983287 [ 6 31] : 0.6385793871866295 [ 6 32] : 0.6278551532033426 [ 6 33] : 0.636908077994429 [ 6 34] : 0.6350974930362117 [ 6 35] : 0.6449860724233983 [ 6 36] : 0.6387186629526462 [ 6 37] : 0.6487465181058496 [ 6 38] : 0.6396935933147632 [ 6 39] : 0.6506963788300836 [ 6 40] : 0.6428969359331476 [ 6 41] : 0.6523676880222841 [ 6 42] : 0.6396935933147633 [ 6 43] : 0.6493036211699165 [ 6 44] : 0.5928969359331476 [ 6 45] : 0.5928969359331476 [ 6 46] : 0.5635097493036212 [ 6 47] : 0.5789693593314763 [ 6 48] : 0.6360724233983287 [ 6 49] : 0.6385793871866295 [ 7 10] : 0.6278551532033426 [ 7 11] : 0.636908077994429 [ 7 12] : 0.6350974930362117 [ 7 13] : 0.6449860724233983 [ 7 14] : 0.6387186629526462 [ 7 15] : 0.6487465181058496 [ 7 16] : 0.6396935933147632 [ 7 17] : 0.6506963788300836 [ 7 18] : 0.6428969359331476 [ 7 19] : 0.6523676880222841 [ 7 20] : 0.6396935933147633 [ 7 21] : 0.6493036211699165 [ 7 22] : 0.5928969359331476 [ 7 23] : 0.5928969359331476 [ 7 24] : 0.5635097493036212 [ 7 25] : 0.5789693593314763 [ 7 26] : 0.6360724233983287 [ 7 27] : 0.6385793871866295 [ 7 28] : 0.6278551532033426 [ 7 29] : 0.636908077994429 [ 7 30] : 0.6350974930362117 [ 7 31] : 0.6449860724233983 [ 7 32] : 0.6387186629526462 [ 7 33] : 0.6487465181058496 [ 7 34] : 0.6396935933147632 [ 7 35] : 0.6506963788300836 [ 7 36] : 0.6428969359331476 [ 7 37] : 0.6523676880222841 [ 7 38] : 0.6396935933147633 [ 7 39] : 0.6493036211699165 [ 7 40] : 0.5928969359331476 [ 7 41] : 0.5928969359331476 [ 7 42] : 0.5635097493036212 [ 7 43] : 0.5789693593314763 [ 7 44] : 0.6360724233983287 [ 7 45] : 0.6385793871866295 [ 7 46] : 0.6278551532033426 [ 7 47] : 0.636908077994429 [ 7 48] : 0.6350974930362117 [ 7 49] : 0.6449860724233983 [ 8 10] : 0.6387186629526462 [ 8 11] : 0.6487465181058496 [ 8 12] : 0.6396935933147632 [ 8 13] : 0.6506963788300836 [ 8 14] : 0.6428969359331476 [ 8 15] : 0.6523676880222841 [ 8 16] : 0.6396935933147633 [ 8 17] : 0.6493036211699165 [ 8 18] : 0.5928969359331476 [ 8 19] : 0.5928969359331476 [ 8 20] : 0.5635097493036212 [ 8 21] : 0.5789693593314763 [ 8 22] : 0.6360724233983287 [ 8 23] : 0.6385793871866295 [ 8 24] : 0.6278551532033426 [ 8 25] : 0.636908077994429 [ 8 26] : 0.6350974930362117 [ 8 27] : 0.6449860724233983 [ 8 28] : 0.6387186629526462 [ 8 29] : 0.6487465181058496 [ 8 30] : 0.6396935933147632 [ 8 31] : 0.6506963788300836 [ 8 32] : 0.6428969359331476 [ 8 33] : 0.6523676880222841 [ 8 34] : 0.6396935933147633 [ 8 35] : 0.6493036211699165 [ 8 36] : 0.5928969359331476 [ 8 37] : 0.5928969359331476 [ 8 38] : 0.5635097493036212 [ 8 39] : 0.5789693593314763 [ 8 40] : 0.6360724233983287 [ 8 41] : 0.6385793871866295 [ 8 42] : 0.6278551532033426 [ 8 43] : 0.636908077994429 [ 8 44] : 0.6350974930362117 [ 8 45] : 0.6449860724233983 [ 8 46] : 0.6387186629526462 [ 8 47] : 0.6487465181058496 [ 8 48] : 0.6396935933147632 [ 8 49] : 0.6506963788300836 [ 9 10] : 0.6428969359331476 [ 9 11] : 0.6523676880222841 [ 9 12] : 0.6396935933147633 [ 9 13] : 0.6493036211699165 [ 9 14] : 0.5928969359331476 [ 9 15] : 0.5928969359331476 [ 9 16] : 0.5635097493036212 [ 9 17] : 0.5789693593314763 [ 9 18] : 0.6360724233983287 [ 9 19] : 0.6385793871866295 [ 9 20] : 0.6278551532033426 [ 9 21] : 0.636908077994429 [ 9 22] : 0.6350974930362117 [ 9 23] : 0.6449860724233983 [ 9 24] : 0.6387186629526462 [ 9 25] : 0.6487465181058496 [ 9 26] : 0.6396935933147632 [ 9 27] : 0.6506963788300836 [ 9 28] : 0.6428969359331476 [ 9 29] : 0.6523676880222841 [ 9 30] : 0.6396935933147633 [ 9 31] : 0.6493036211699165 [ 9 32] : 0.5928969359331476 [ 9 33] : 0.5928969359331476 [ 9 34] : 0.5635097493036212 [ 9 35] : 0.5789693593314763 [ 9 36] : 0.6360724233983287 [ 9 37] : 0.6385793871866295 [ 9 38] : 0.6278551532033426 [ 9 39] : 0.636908077994429 [ 9 40] : 0.6350974930362117 [ 9 41] : 0.6449860724233983 [ 9 42] : 0.6387186629526462 [ 9 43] : 0.6487465181058496 [ 9 44] : 0.6396935933147632 [ 9 45] : 0.6506963788300836 [ 9 46] : 0.6428969359331476 [ 9 47] : 0.6523676880222841 [ 9 48] : 0.6396935933147633 [ 9 49] : 0.6493036211699165
print("The best parameters for KNN: ",clf_NNH.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for KNN: ",clf_NNH.best_score_)
The best parameters for KNN: {'leaf_size': 10, 'n_neighbors': 8, 'weights': 'distance'}
The best score for KNN: 0.6566852367688022
NNH_final = KNeighborsClassifier(n_neighbors=7,leaf_size=10, weights = 'distance')
NNH_final.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
KNeighborsClassifier(leaf_size=10, n_neighbors=7, weights='distance')
from sklearn import metrics
print(NNH_final.score(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd))
y_pred = NNH_final.predict(X_te_countvec_wo_padd)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'KNN','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_te_countvec_wo_padd, y_pred)
#check_Acc(NNH_final)
0.9506963788300835
acc_df
| Model_Name | acc_score | f1_score | |
|---|---|---|---|
| 0 | MultinomialNB | 0.667192 | 0.714364 |
| 1 | KNN | 0.674290 | 0.736438 |
from sklearn import svm
#svm.SVC(gamma=0.025, C=3)
parameters_svm=dict(gamma=np.arange(0.01,0.05,0.01),C=range(1,10),decision_function_shape=['ovo'],class_weight=['balanced'])
SVM = svm.SVC()
clf_SVM = GridSearchCV(SVM, parameters_svm, cv=5)
clf_SVM.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
GridSearchCV(cv=5, estimator=SVC(),
param_grid={'C': range(1, 10), 'class_weight': ['balanced'],
'decision_function_shape': ['ovo'],
'gamma': array([0.01, 0.02, 0.03, 0.04])})
print("The best parameters for SVM: ",clf_SVM.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for SVM: ",clf_SVM.best_score_)
The best parameters for SVM: {'C': 9, 'class_weight': 'balanced', 'decision_function_shape': 'ovo', 'gamma': 0.04}
The best score for SVM: 0.5077994428969359
SVM_final = svm.SVC(C=9, class_weight = 'balanced', decision_function_shape='ovo', gamma=0.04) ##substitute with best parameters
SVM_final.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
SVC(C=9, class_weight='balanced', decision_function_shape='ovo', gamma=0.04)
from sklearn import metrics
print(SVM_final.score(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd))
y_pred = SVM_final.predict(X_te_countvec_wo_padd)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'SVM','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_te_countvec_wo_padd, y_pred)
0.6612813370473538
from sklearn.tree import DecisionTreeClassifier
parameters_dTree=dict(criterion=['gini','entropy'],max_depth=range(3,15),random_state=[1])
dTree = DecisionTreeClassifier()
clf_dTree = GridSearchCV(dTree, parameters_dTree, cv=5)
clf_dTree.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
GridSearchCV(cv=5, estimator=DecisionTreeClassifier(),
param_grid={'criterion': ['gini', 'entropy'],
'max_depth': range(3, 15), 'random_state': [1]})
print("The best parameters for Decision Tree: ",clf_dTree.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for Decision Tree: ",clf_dTree.best_score_)
The best parameters for Decision Tree: {'criterion': 'gini', 'max_depth': 14, 'random_state': 1}
The best score for Decision Tree: 0.595682451253482
dTree_final=DecisionTreeClassifier(criterion='gini',max_depth=14,random_state=1)
dTree_final.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
y_pred = dTree_final.predict(X_te_countvec_wo_padd)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'Decision Tree','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_te_countvec_wo_padd, y_pred)
#check_Acc(dTree_final)
acc_df
| Model_Name | acc_score | f1_score | |
|---|---|---|---|
| 0 | MultinomialNB | 0.667192 | 0.714364 |
| 1 | KNN | 0.674290 | 0.736438 |
| 2 | SVM | 0.543375 | 0.505016 |
| 3 | Decision Tree | 0.604890 | 0.697461 |
from sklearn.ensemble import RandomForestClassifier
parameters_RForest=dict(criterion=['gini','entropy'],max_depth=range(3,15),random_state=[1],n_estimators=[100],bootstrap=[True,False],class_weight=['balanced', 'balanced_subsample'])
RForest = RandomForestClassifier()
clf_RForest = GridSearchCV(RForest, parameters_RForest, cv=5)
clf_RForest.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
GridSearchCV(cv=5, estimator=RandomForestClassifier(),
param_grid={'bootstrap': [True, False],
'class_weight': ['balanced', 'balanced_subsample'],
'criterion': ['gini', 'entropy'],
'max_depth': range(3, 15), 'n_estimators': [100],
'random_state': [1]})
print("The best parameters for Random Forest: ",clf_RForest.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for Random Forest: ",clf_RForest.best_score_)
The best parameters for Random Forest: {'bootstrap': True, 'class_weight': 'balanced_subsample', 'criterion': 'entropy', 'max_depth': 14, 'n_estimators': 100, 'random_state': 1}
The best score for Random Forest: 0.37771587743732593
RForest_final=RandomForestClassifier(criterion='entropy',max_depth=13,random_state=1,n_estimators=100,class_weight='balanced',bootstrap=True)
RForest_final.fit(X_tr_countvec_wo_padd, y_tr_countvec_wo_padd)
y_pred = RForest_final.predict(X_te_countvec_wo_padd)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'Random Forest','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_te_countvec_wo_padd, y_pred)
#check_Acc(RForest_final)
acc_df
| Model_Name | acc_score | f1_score | |
|---|---|---|---|
| 0 | MultinomialNB | 0.667192 | 0.714364 |
| 1 | KNN | 0.674290 | 0.736438 |
| 2 | SVM | 0.543375 | 0.505016 |
| 3 | Decision Tree | 0.604890 | 0.697461 |
| 4 | Random Forest | 0.313091 | 0.267932 |
sns.lineplot(data=acc_df,x="Model_Name", y="acc_score")
<AxesSubplot:xlabel='Model_Name', ylabel='acc_score'>
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
plt.plot(acc_df["Model_Name"], acc_df["acc_score"], label = "Accuracy Score")
plt.plot(acc_df["Model_Name"], acc_df["f1_score"], label = "F1 Score")
plt.legend()
<matplotlib.legend.Legend at 0x20bb5c43280>
def GRP_0_vs_others (row):
if row['Assignment group']!= 'GRP_0':
return 'Others'
return 'GRP_0'
Datafinal.apply(lambda row: GRP_0_vs_others(row), axis=1)
0 GRP_0
1 GRP_0
2 GRP_0
3 GRP_0
4 GRP_0
...
8443 Others
8444 GRP_0
8445 GRP_0
8446 Others
8447 Others
Length: 8448, dtype: object
Datafinal['GRP_0_vs_others'] = Datafinal.apply (lambda row: GRP_0_vs_others(row), axis=1)
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.model_selection import train_test_split
vectorizer = TfidfVectorizer()
vectorizer.fit(Datafinal['merged'])
TfidfVectorizer()
X = vectorizer.transform(Datafinal['merged'])
X
<8448x12804 sparse matrix of type '<class 'numpy.float64'>' with 161821 stored elements in Compressed Sparse Row format>
X_tr_step_classify, X_test_final, y_tr_discard, y_test_final = train_test_split(
X, Datafinal['Assignment group'],test_size=0.10, random_state=0)
X_tr_step_classify, X_test_final, y_tr_step_classify, y_test_discard = train_test_split(
X, Datafinal['GRP_0_vs_others'],test_size=0.10, random_state=0)
X_tr_step_1, X_test_step_1, y_tr_step_1, y_test_step_1 = train_test_split(
X_tr_step_classify,y_tr_step_classify,test_size=0.10, random_state=0)
y_tr_step_1
4179 Others
126 GRP_0
1918 Others
6845 Others
4106 GRP_0
...
2886 Others
4925 GRP_0
3774 Others
6193 Others
203 GRP_0
Name: GRP_0_vs_others, Length: 6842, dtype: object
from sklearn.model_selection import train_test_split,GridSearchCV
parameters_KN_classifier2=dict(n_neighbors=range(1,10),leaf_size=range(10,50), weights = ['uniform', 'distance'])
KN_classifier2 = KNeighborsClassifier()
clf_KN_classifier2 = GridSearchCV(KN_classifier2, parameters_KN_classifier2, cv=5)
clf_KN_classifier2.fit(X_tr_step_1, y_tr_step_1)
scores = clf_KN_classifier2.cv_results_['mean_test_score']
KN_classifier2_comb=[]
score_list=[]
[ KN_classifier2_comb.append([i,j]) for i in parameters_KN_classifier2['n_neighbors'] for j in parameters_KN_classifier2['leaf_size'] ]
for score, n_nnh in zip(scores, np.array(KN_classifier2_comb)):
score_list.append([n_nnh,score])
print(n_nnh,":",score)
[ 1 10] : 0.6989096493363919 [ 1 11] : 0.6989096493363919 [ 1 12] : 0.6677773078911059 [ 1 13] : 0.6989098629212427 [ 1 14] : 0.7896786188749205 [ 1 15] : 0.79187138774621 [ 1 16] : 0.7638074062682881 [ 1 17] : 0.7757919726269656 [ 1 18] : 0.7968419343952772 [ 1 19] : 0.8010804189680435 [ 1 20] : 0.7816404598054669 [ 1 21] : 0.7902635209889833 [ 1 22] : 0.8000580950794323 [ 1 23] : 0.8041508079914909 [ 1 24] : 0.7871949474367682 [ 1 25] : 0.7950874416379394 [ 1 26] : 0.800495089684279 [ 1 27] : 0.8044417105583536 [ 1 28] : 0.6989096493363919 [ 1 29] : 0.6989096493363919 [ 1 30] : 0.6677773078911059 [ 1 31] : 0.6989098629212427 [ 1 32] : 0.7896786188749205 [ 1 33] : 0.79187138774621 [ 1 34] : 0.7638074062682881 [ 1 35] : 0.7757919726269656 [ 1 36] : 0.7968419343952772 [ 1 37] : 0.8010804189680435 [ 1 38] : 0.7816404598054669 [ 1 39] : 0.7902635209889833 [ 1 40] : 0.8000580950794323 [ 1 41] : 0.8041508079914909 [ 1 42] : 0.7871949474367682 [ 1 43] : 0.7950874416379394 [ 1 44] : 0.800495089684279 [ 1 45] : 0.8044417105583536 [ 1 46] : 0.6989096493363919 [ 1 47] : 0.6989096493363919 [ 1 48] : 0.6677773078911059 [ 1 49] : 0.6989098629212427 [ 2 10] : 0.7896786188749205 [ 2 11] : 0.79187138774621 [ 2 12] : 0.7638074062682881 [ 2 13] : 0.7757919726269656 [ 2 14] : 0.7968419343952772 [ 2 15] : 0.8010804189680435 [ 2 16] : 0.7816404598054669 [ 2 17] : 0.7902635209889833 [ 2 18] : 0.8000580950794323 [ 2 19] : 0.8041508079914909 [ 2 20] : 0.7871949474367682 [ 2 21] : 0.7950874416379394 [ 2 22] : 0.800495089684279 [ 2 23] : 0.8044417105583536 [ 2 24] : 0.6989096493363919 [ 2 25] : 0.6989096493363919 [ 2 26] : 0.6677773078911059 [ 2 27] : 0.6989098629212427 [ 2 28] : 0.7896786188749205 [ 2 29] : 0.79187138774621 [ 2 30] : 0.7638074062682881 [ 2 31] : 0.7757919726269656 [ 2 32] : 0.7968419343952772 [ 2 33] : 0.8010804189680435 [ 2 34] : 0.7816404598054669 [ 2 35] : 0.7902635209889833 [ 2 36] : 0.8000580950794323 [ 2 37] : 0.8041508079914909 [ 2 38] : 0.7871949474367682 [ 2 39] : 0.7950874416379394 [ 2 40] : 0.800495089684279 [ 2 41] : 0.8044417105583536 [ 2 42] : 0.6989096493363919 [ 2 43] : 0.6989096493363919 [ 2 44] : 0.6677773078911059 [ 2 45] : 0.6989098629212427 [ 2 46] : 0.7896786188749205 [ 2 47] : 0.79187138774621 [ 2 48] : 0.7638074062682881 [ 2 49] : 0.7757919726269656 [ 3 10] : 0.7968419343952772 [ 3 11] : 0.8010804189680435 [ 3 12] : 0.7816404598054669 [ 3 13] : 0.7902635209889833 [ 3 14] : 0.8000580950794323 [ 3 15] : 0.8041508079914909 [ 3 16] : 0.7871949474367682 [ 3 17] : 0.7950874416379394 [ 3 18] : 0.800495089684279 [ 3 19] : 0.8044417105583536 [ 3 20] : 0.6989096493363919 [ 3 21] : 0.6989096493363919 [ 3 22] : 0.6677773078911059 [ 3 23] : 0.6989098629212427 [ 3 24] : 0.7896786188749205 [ 3 25] : 0.79187138774621 [ 3 26] : 0.7638074062682881 [ 3 27] : 0.7757919726269656 [ 3 28] : 0.7968419343952772 [ 3 29] : 0.8010804189680435 [ 3 30] : 0.7816404598054669 [ 3 31] : 0.7902635209889833 [ 3 32] : 0.8000580950794323 [ 3 33] : 0.8041508079914909 [ 3 34] : 0.7871949474367682 [ 3 35] : 0.7950874416379394 [ 3 36] : 0.800495089684279 [ 3 37] : 0.8044417105583536 [ 3 38] : 0.6989096493363919 [ 3 39] : 0.6989096493363919 [ 3 40] : 0.6677773078911059 [ 3 41] : 0.6989098629212427 [ 3 42] : 0.7896786188749205 [ 3 43] : 0.79187138774621 [ 3 44] : 0.7638074062682881 [ 3 45] : 0.7757919726269656 [ 3 46] : 0.7968419343952772 [ 3 47] : 0.8010804189680435 [ 3 48] : 0.7816404598054669 [ 3 49] : 0.7902635209889833 [ 4 10] : 0.8000580950794323 [ 4 11] : 0.8041508079914909 [ 4 12] : 0.7871949474367682 [ 4 13] : 0.7950874416379394 [ 4 14] : 0.800495089684279 [ 4 15] : 0.8044417105583536 [ 4 16] : 0.6989096493363919 [ 4 17] : 0.6989096493363919 [ 4 18] : 0.6677773078911059 [ 4 19] : 0.6989098629212427 [ 4 20] : 0.7896786188749205 [ 4 21] : 0.79187138774621 [ 4 22] : 0.7638074062682881 [ 4 23] : 0.7757919726269656 [ 4 24] : 0.7968419343952772 [ 4 25] : 0.8010804189680435 [ 4 26] : 0.7816404598054669 [ 4 27] : 0.7902635209889833 [ 4 28] : 0.8000580950794323 [ 4 29] : 0.8041508079914909 [ 4 30] : 0.7871949474367682 [ 4 31] : 0.7950874416379394 [ 4 32] : 0.800495089684279 [ 4 33] : 0.8044417105583536 [ 4 34] : 0.6989096493363919 [ 4 35] : 0.6989096493363919 [ 4 36] : 0.6677773078911059 [ 4 37] : 0.6989098629212427 [ 4 38] : 0.7896786188749205 [ 4 39] : 0.79187138774621 [ 4 40] : 0.7638074062682881 [ 4 41] : 0.7757919726269656 [ 4 42] : 0.7968419343952772 [ 4 43] : 0.8010804189680435 [ 4 44] : 0.7816404598054669 [ 4 45] : 0.7902635209889833 [ 4 46] : 0.8000580950794323 [ 4 47] : 0.8041508079914909 [ 4 48] : 0.7871949474367682 [ 4 49] : 0.7950874416379394 [ 5 10] : 0.800495089684279 [ 5 11] : 0.8044417105583536 [ 5 12] : 0.6989096493363919 [ 5 13] : 0.6989096493363919 [ 5 14] : 0.6677773078911059 [ 5 15] : 0.6989098629212427 [ 5 16] : 0.7896786188749205 [ 5 17] : 0.79187138774621 [ 5 18] : 0.7638074062682881 [ 5 19] : 0.7757919726269656 [ 5 20] : 0.7968419343952772 [ 5 21] : 0.8010804189680435 [ 5 22] : 0.7816404598054669 [ 5 23] : 0.7902635209889833 [ 5 24] : 0.8000580950794323 [ 5 25] : 0.8041508079914909 [ 5 26] : 0.7871949474367682 [ 5 27] : 0.7950874416379394 [ 5 28] : 0.800495089684279 [ 5 29] : 0.8044417105583536 [ 5 30] : 0.6989096493363919 [ 5 31] : 0.6989096493363919 [ 5 32] : 0.6677773078911059 [ 5 33] : 0.6989098629212427 [ 5 34] : 0.7896786188749205 [ 5 35] : 0.79187138774621 [ 5 36] : 0.7638074062682881 [ 5 37] : 0.7757919726269656 [ 5 38] : 0.7968419343952772 [ 5 39] : 0.8010804189680435 [ 5 40] : 0.7816404598054669 [ 5 41] : 0.7902635209889833 [ 5 42] : 0.8000580950794323 [ 5 43] : 0.8041508079914909 [ 5 44] : 0.7871949474367682 [ 5 45] : 0.7950874416379394 [ 5 46] : 0.800495089684279 [ 5 47] : 0.8044417105583536 [ 5 48] : 0.6989096493363919 [ 5 49] : 0.6989096493363919 [ 6 10] : 0.6677773078911059 [ 6 11] : 0.6989098629212427 [ 6 12] : 0.7896786188749205 [ 6 13] : 0.79187138774621 [ 6 14] : 0.7638074062682881 [ 6 15] : 0.7757919726269656 [ 6 16] : 0.7968419343952772 [ 6 17] : 0.8010804189680435 [ 6 18] : 0.7816404598054669 [ 6 19] : 0.7902635209889833 [ 6 20] : 0.8000580950794323 [ 6 21] : 0.8041508079914909 [ 6 22] : 0.7871949474367682 [ 6 23] : 0.7950874416379394 [ 6 24] : 0.800495089684279 [ 6 25] : 0.8044417105583536 [ 6 26] : 0.6989096493363919 [ 6 27] : 0.6989096493363919 [ 6 28] : 0.6677773078911059 [ 6 29] : 0.6989098629212427 [ 6 30] : 0.7896786188749205 [ 6 31] : 0.79187138774621 [ 6 32] : 0.7638074062682881 [ 6 33] : 0.7757919726269656 [ 6 34] : 0.7968419343952772 [ 6 35] : 0.8010804189680435 [ 6 36] : 0.7816404598054669 [ 6 37] : 0.7902635209889833 [ 6 38] : 0.8000580950794323 [ 6 39] : 0.8041508079914909 [ 6 40] : 0.7871949474367682 [ 6 41] : 0.7950874416379394 [ 6 42] : 0.800495089684279 [ 6 43] : 0.8044417105583536 [ 6 44] : 0.6989096493363919 [ 6 45] : 0.6989096493363919 [ 6 46] : 0.6677773078911059 [ 6 47] : 0.6989098629212427 [ 6 48] : 0.7896786188749205 [ 6 49] : 0.79187138774621 [ 7 10] : 0.7638074062682881 [ 7 11] : 0.7757919726269656 [ 7 12] : 0.7968419343952772 [ 7 13] : 0.8010804189680435 [ 7 14] : 0.7816404598054669 [ 7 15] : 0.7902635209889833 [ 7 16] : 0.8000580950794323 [ 7 17] : 0.8041508079914909 [ 7 18] : 0.7871949474367682 [ 7 19] : 0.7950874416379394 [ 7 20] : 0.800495089684279 [ 7 21] : 0.8044417105583536 [ 7 22] : 0.6989096493363919 [ 7 23] : 0.6989096493363919 [ 7 24] : 0.6677773078911059 [ 7 25] : 0.6989098629212427 [ 7 26] : 0.7896786188749205 [ 7 27] : 0.79187138774621 [ 7 28] : 0.7638074062682881 [ 7 29] : 0.7757919726269656 [ 7 30] : 0.7968419343952772 [ 7 31] : 0.8010804189680435 [ 7 32] : 0.7816404598054669 [ 7 33] : 0.7902635209889833 [ 7 34] : 0.8000580950794323 [ 7 35] : 0.8041508079914909 [ 7 36] : 0.7871949474367682 [ 7 37] : 0.7950874416379394 [ 7 38] : 0.800495089684279 [ 7 39] : 0.8044417105583536 [ 7 40] : 0.6989096493363919 [ 7 41] : 0.6989096493363919 [ 7 42] : 0.6677773078911059 [ 7 43] : 0.6989098629212427 [ 7 44] : 0.7896786188749205 [ 7 45] : 0.79187138774621 [ 7 46] : 0.7638074062682881 [ 7 47] : 0.7757919726269656 [ 7 48] : 0.7968419343952772 [ 7 49] : 0.8010804189680435 [ 8 10] : 0.7816404598054669 [ 8 11] : 0.7902635209889833 [ 8 12] : 0.8000580950794323 [ 8 13] : 0.8041508079914909 [ 8 14] : 0.7871949474367682 [ 8 15] : 0.7950874416379394 [ 8 16] : 0.800495089684279 [ 8 17] : 0.8044417105583536 [ 8 18] : 0.6989096493363919 [ 8 19] : 0.6989096493363919 [ 8 20] : 0.6677773078911059 [ 8 21] : 0.6989098629212427 [ 8 22] : 0.7896786188749205 [ 8 23] : 0.79187138774621 [ 8 24] : 0.7638074062682881 [ 8 25] : 0.7757919726269656 [ 8 26] : 0.7968419343952772 [ 8 27] : 0.8010804189680435 [ 8 28] : 0.7816404598054669 [ 8 29] : 0.7902635209889833 [ 8 30] : 0.8000580950794323 [ 8 31] : 0.8041508079914909 [ 8 32] : 0.7871949474367682 [ 8 33] : 0.7950874416379394 [ 8 34] : 0.800495089684279 [ 8 35] : 0.8044417105583536 [ 8 36] : 0.6989096493363919 [ 8 37] : 0.6989096493363919 [ 8 38] : 0.6677773078911059 [ 8 39] : 0.6989098629212427 [ 8 40] : 0.7896786188749205 [ 8 41] : 0.79187138774621 [ 8 42] : 0.7638074062682881 [ 8 43] : 0.7757919726269656 [ 8 44] : 0.7968419343952772 [ 8 45] : 0.8010804189680435 [ 8 46] : 0.7816404598054669 [ 8 47] : 0.7902635209889833 [ 8 48] : 0.8000580950794323 [ 8 49] : 0.8041508079914909 [ 9 10] : 0.7871949474367682 [ 9 11] : 0.7950874416379394 [ 9 12] : 0.800495089684279 [ 9 13] : 0.8044417105583536 [ 9 14] : 0.6989096493363919 [ 9 15] : 0.6989096493363919 [ 9 16] : 0.6677773078911059 [ 9 17] : 0.6989098629212427 [ 9 18] : 0.7896786188749205 [ 9 19] : 0.79187138774621 [ 9 20] : 0.7638074062682881 [ 9 21] : 0.7757919726269656 [ 9 22] : 0.7968419343952772 [ 9 23] : 0.8010804189680435 [ 9 24] : 0.7816404598054669 [ 9 25] : 0.7902635209889833 [ 9 26] : 0.8000580950794323 [ 9 27] : 0.8041508079914909 [ 9 28] : 0.7871949474367682 [ 9 29] : 0.7950874416379394 [ 9 30] : 0.800495089684279 [ 9 31] : 0.8044417105583536 [ 9 32] : 0.6989096493363919 [ 9 33] : 0.6989096493363919 [ 9 34] : 0.6677773078911059 [ 9 35] : 0.6989098629212427 [ 9 36] : 0.7896786188749205 [ 9 37] : 0.79187138774621 [ 9 38] : 0.7638074062682881 [ 9 39] : 0.7757919726269656 [ 9 40] : 0.7968419343952772 [ 9 41] : 0.8010804189680435 [ 9 42] : 0.7816404598054669 [ 9 43] : 0.7902635209889833 [ 9 44] : 0.8000580950794323 [ 9 45] : 0.8041508079914909 [ 9 46] : 0.7871949474367682 [ 9 47] : 0.7950874416379394 [ 9 48] : 0.800495089684279 [ 9 49] : 0.8044417105583536
print("The best parameters for KNN: ",clf_KN_classifier2.best_params_)
#print(clf_nb6.best_estimator_)
print("The best score for KNN: ",clf_KN_classifier2.best_score_)
The best parameters for KNN: {'leaf_size': 10, 'n_neighbors': 9, 'weights': 'distance'}
The best score for KNN: 0.8044417105583536
KN_classifier2_final = KNeighborsClassifier(n_neighbors=9,leaf_size=10, weights = 'distance')
KN_classifier2_final.fit(X_tr_step_1, y_tr_step_1)
KNeighborsClassifier(leaf_size=10, n_neighbors=9, weights='distance')
from sklearn import metrics
print(KN_classifier2_final.score(X_tr_step_1, y_tr_step_1))
y_pred = KN_classifier2_final.predict(X_test_step_1)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
#acc_df=acc_df.append({'Model_Name':'KNN class','acc_score':accuracy_score(y_pred, y_te_countvec_wo_padd),'f1_score':f1_score(y_pred, y_te_countvec_wo_padd,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_test_step_1, y_pred)
#check_Acc(NNH_final)
0.9980999707687811
from sklearn.metrics import accuracy_score, confusion_matrix, f1_score
from sklearn.metrics import classification_report
print('accuracy %s' % accuracy_score(y_pred, y_test_step_1))
print('f1 score %s' % f1_score(y_pred, y_test_step_1,average='weighted'))
accuracy 0.7936925098554534 f1 score 0.7953753250076152
from xgboost import XGBClassifier
from sklearn.metrics import accuracy_score, confusion_matrix, f1_score, classification_report
XGB2 = XGBClassifier()
XGB2.fit(X_tr_step_1, y_tr_step_1)
y_pred = XGB2.predict(X_test_step_1)
predictions2 = XGB2.predict_proba(X_test_step_1)
print('accuracy %s' % accuracy_score(y_pred, y_test_step_1))
print('f1 score %s' % f1_score(y_pred, y_test_step_1,average='weighted'))
#print ("logloss: %0.3f " % multiclass_logloss(y_te,predictions))
print(classification_report(y_test_step_1, y_pred))
print(confusion_matrix(y_test_step_1, y_pred))
[08:59:26] WARNING: C:/Users/Administrator/workspace/xgboost-win64_release_1.5.0/src/learner.cc:1115: Starting in XGBoost 1.3.0, the default evaluation metric used with the objective 'binary:logistic' was changed from 'error' to 'logloss'. Explicitly set eval_metric if you'd like to restore the old behavior.
accuracy 0.8344283837056504
f1 score 0.834276117300238
precision recall f1-score support
GRP_0 0.81 0.83 0.82 349
Others 0.86 0.83 0.85 412
accuracy 0.83 761
macro avg 0.83 0.83 0.83 761
weighted avg 0.84 0.83 0.83 761
[[291 58]
[ 68 344]]
#Create Dataset for 'others' i.e all groups which is not part of GRP_0
DatafinalOthers= Datafinal[Datafinal['Assignment group'] != 'GRP_0']
DatafinalOthers
| Short description | Description | Assignment group | merged | GRP_0_vs_others | |
|---|---|---|---|---|---|
| 6 | event critical hostname company com the value ... | event critical hostname company com the value ... | GRP_1 | event critical hostname company com the value ... | Others |
| 17 | when undocking pc screen will not come back | when undocking pc screen will not come back | GRP_3 | when undocking pc screen will not come back wh... | Others |
| 32 | duplication of network address | gentles have two devices that are trying to sh... | GRP_4 | duplication of network address gentles have tw... | Others |
| 43 | please reroute jobs on printer to printer issu... | hi the printer printer is not working and need... | GRP_5 | please reroute jobs on printer to printer issu... | Others |
| 47 | job job failed in job scheduler at | job job failed in job scheduler at | GRP_6 | job job failed in job scheduler at job job fai... | Others |
| ... | ... | ... | ... | ... | ... |
| 8441 | erp fi ob two accounts to be added | i am sorry have another two accounts that need... | GRP_10 | erp fi ob two accounts to be added i am sorry ... | Others |
| 8442 | tablet needs reimaged due to multiple issues w... | tablet needs reimaged due to multiple issues w... | GRP_3 | tablet needs reimaged due to multiple issues w... | Others |
| 8443 | emails not coming in from zz mail | xd xd xd good afternoon xd am not receiving th... | GRP_29 | emails not coming in from zz mail xd xd xd goo... | Others |
| 8446 | machine o est funcionando | i am unable to access the machine utilities to... | GRP_62 | machine o est funcionando i am unable to acces... | Others |
| 8447 | Different programs cannot be opened on several... | Different program types cannot be opened on mo... | GRP_49 | Different programs cannot be opened on several... | Others |
4476 rows × 5 columns
maxOthers = DatafinalOthers['Assignment group'].value_counts().max()
maxOthers
661
from sklearn.utils import resample
DatafinalOthers_resampled = DatafinalOthers[0:0]
for grp in DatafinalOthers['Assignment group'].unique():
temp = DatafinalOthers[DatafinalOthers['Assignment group'] == grp]
resampled = resample(temp, replace=True, n_samples=int(maxOthers/2), random_state=123)
DatafinalOthers_resampled = DatafinalOthers_resampled.append(resampled)
plt.style.use('ggplot') # Using gg plot for plotting based on descending order
%matplotlib inline
descending_order = DatafinalOthers_resampled['Assignment group'].value_counts().sort_values(ascending=False).index
plt.subplots(figsize=(22,5))
#added code for x label rotate
ay=sns.countplot(x='Assignment group', data=DatafinalOthers_resampled,order=descending_order)
ay.set_xticklabels(ay.get_xticklabels(), rotation=45, ha="right")
plt.tight_layout()
plt.show()
We can see above that all the groups are distributed uniformly now
X_classifier2 = vectorizer.transform(DatafinalOthers_resampled['merged'])
X_tr_step_2, X_test_step_2, y_tr_step_2, y_test_step_2 = train_test_split(X_classifier2, DatafinalOthers_resampled['Assignment group'],test_size=0.15, random_state=0)
KN3_final = KNeighborsClassifier(n_neighbors=7,leaf_size=10, weights = 'distance')
KN3_final.fit(X_tr_step_2, y_tr_step_2)
KNeighborsClassifier(leaf_size=10, n_neighbors=7, weights='distance')
from sklearn import metrics
print(KN3_final.score(X_tr_step_2, y_tr_step_2))
y_pred = KN3_final.predict(X_test_step_2)
#acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
#acc_df=acc_df.append({'Model_Name':'KNN_with_resampled_data','acc_score':accuracy_score(y_pred, y_test_step_2),'f1_score':f1_score(y_pred, y_test_step_2,average='weighted')},ignore_index=True)
cm=metrics.confusion_matrix(y_test_step_2, y_pred)
#check_Acc(NNH_final)
0.9547274858370776
print('accuracy %s' % accuracy_score(y_pred, y_test_step_2))
print('f1 score %s' % f1_score(y_pred, y_test_step_2,average='weighted'))
accuracy 0.9322080796900941 f1 score 0.9293711184351205
def condition_based_classifier(X):
# Step:1 - Apply Classifier1 on X and find Y
y_predicted = []
y_predicted = XGB2.predict(X) # Applying classifier 1 overall
for i in range(len(y_predicted)):
if y_predicted[i] != 'GRP_0':
# Step:2 - For all X which are classified as "Others", apply Classifier2
y_predicted[i]=KN3_final.predict(X[i])[0] # Applying classifier 2 wherever predicted y is not GRP_0
# Step:3 - Finally generate the classification results
return y_predicted
y_pred2=[]
y_pred2=condition_based_classifier(X_test_final)
y_pred2
array(['GRP_41', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_0', 'GRP_4',
'GRP_0', 'GRP_0', 'GRP_6', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_19',
'GRP_29', 'GRP_0', 'GRP_11', 'GRP_18', 'GRP_40', 'GRP_0', 'GRP_23',
'GRP_7', 'GRP_34', 'GRP_0', 'GRP_0', 'GRP_24', 'GRP_3', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_3', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_25', 'GRP_0', 'GRP_0', 'GRP_4', 'GRP_0', 'GRP_14',
'GRP_0', 'GRP_17', 'GRP_16', 'GRP_10', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_3', 'GRP_18', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_21', 'GRP_0', 'GRP_37', 'GRP_13', 'GRP_33',
'GRP_0', 'GRP_22', 'GRP_0', 'GRP_29', 'GRP_31', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_8', 'GRP_25', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_62',
'GRP_34', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_37', 'GRP_14', 'GRP_0',
'GRP_13', 'GRP_0', 'GRP_24', 'GRP_11', 'GRP_0', 'GRP_24', 'GRP_0',
'GRP_0', 'GRP_13', 'GRP_47', 'GRP_0', 'GRP_10', 'GRP_0', 'GRP_0',
'GRP_8', 'GRP_16', 'GRP_0', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_10', 'GRP_19',
'GRP_29', 'GRP_12', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_5', 'GRP_7', 'GRP_0', 'GRP_12', 'GRP_0', 'GRP_0', 'GRP_18',
'GRP_14', 'GRP_0', 'GRP_6', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_0',
'GRP_25', 'GRP_13', 'GRP_0', 'GRP_20', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_34', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_39', 'GRP_13', 'GRP_3',
'GRP_4', 'GRP_0', 'GRP_33', 'GRP_0', 'GRP_0', 'GRP_18', 'GRP_62',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_2', 'GRP_65',
'GRP_0', 'GRP_0', 'GRP_4', 'GRP_23', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_42', 'GRP_0', 'GRP_0', 'GRP_14', 'GRP_0', 'GRP_13', 'GRP_8',
'GRP_13', 'GRP_8', 'GRP_56', 'GRP_0', 'GRP_0', 'GRP_2', 'GRP_8',
'GRP_0', 'GRP_12', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_22', 'GRP_16',
'GRP_46', 'GRP_0', 'GRP_23', 'GRP_0', 'GRP_23', 'GRP_3', 'GRP_0',
'GRP_0', 'GRP_14', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_13', 'GRP_3', 'GRP_0', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_65',
'GRP_0', 'GRP_0', 'GRP_22', 'GRP_0', 'GRP_8', 'GRP_45', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_30', 'GRP_49', 'GRP_10', 'GRP_12',
'GRP_13', 'GRP_20', 'GRP_16', 'GRP_0', 'GRP_6', 'GRP_0', 'GRP_8',
'GRP_0', 'GRP_24', 'GRP_21', 'GRP_0', 'GRP_26', 'GRP_13', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_8', 'GRP_24', 'GRP_11', 'GRP_8', 'GRP_19',
'GRP_8', 'GRP_18', 'GRP_13', 'GRP_4', 'GRP_0', 'GRP_46', 'GRP_25',
'GRP_13', 'GRP_0', 'GRP_4', 'GRP_33', 'GRP_62', 'GRP_2', 'GRP_10',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_14', 'GRP_0',
'GRP_13', 'GRP_0', 'GRP_0', 'GRP_14', 'GRP_28', 'GRP_28', 'GRP_13',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_12', 'GRP_0', 'GRP_4', 'GRP_0',
'GRP_12', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_15',
'GRP_7', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_18', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_0',
'GRP_40', 'GRP_0', 'GRP_6', 'GRP_0', 'GRP_9', 'GRP_10', 'GRP_0',
'GRP_0', 'GRP_3', 'GRP_47', 'GRP_0', 'GRP_2', 'GRP_0', 'GRP_40',
'GRP_0', 'GRP_0', 'GRP_12', 'GRP_5', 'GRP_50', 'GRP_4', 'GRP_0',
'GRP_0', 'GRP_2', 'GRP_0', 'GRP_0', 'GRP_8', 'GRP_1', 'GRP_0',
'GRP_0', 'GRP_13', 'GRP_0', 'GRP_24', 'GRP_19', 'GRP_60', 'GRP_3',
'GRP_24', 'GRP_37', 'GRP_8', 'GRP_0', 'GRP_0', 'GRP_2', 'GRP_0',
'GRP_8', 'GRP_0', 'GRP_47', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_0',
'GRP_9', 'GRP_7', 'GRP_30', 'GRP_40', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_5', 'GRP_31', 'GRP_8', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_8', 'GRP_8', 'GRP_5', 'GRP_0', 'GRP_0',
'GRP_19', 'GRP_7', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_8', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_4', 'GRP_0', 'GRP_28',
'GRP_63', 'GRP_0', 'GRP_0', 'GRP_24', 'GRP_25', 'GRP_13', 'GRP_0',
'GRP_62', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_8', 'GRP_12', 'GRP_0',
'GRP_2', 'GRP_27', 'GRP_9', 'GRP_0', 'GRP_5', 'GRP_0', 'GRP_41',
'GRP_0', 'GRP_8', 'GRP_0', 'GRP_0', 'GRP_31', 'GRP_0', 'GRP_47',
'GRP_19', 'GRP_0', 'GRP_49', 'GRP_0', 'GRP_27', 'GRP_13', 'GRP_13',
'GRP_18', 'GRP_5', 'GRP_0', 'GRP_0', 'GRP_3', 'GRP_20', 'GRP_2',
'GRP_6', 'GRP_8', 'GRP_24', 'GRP_0', 'GRP_4', 'GRP_39', 'GRP_13',
'GRP_0', 'GRP_2', 'GRP_0', 'GRP_0', 'GRP_24', 'GRP_41', 'GRP_0',
'GRP_56', 'GRP_40', 'GRP_7', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_20',
'GRP_17', 'GRP_0', 'GRP_13', 'GRP_3', 'GRP_31', 'GRP_0', 'GRP_13',
'GRP_0', 'GRP_28', 'GRP_13', 'GRP_0', 'GRP_2', 'GRP_18', 'GRP_0',
'GRP_16', 'GRP_0', 'GRP_13', 'GRP_13', 'GRP_0', 'GRP_21', 'GRP_33',
'GRP_21', 'GRP_29', 'GRP_0', 'GRP_0', 'GRP_47', 'GRP_13', 'GRP_24',
'GRP_0', 'GRP_33', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_13', 'GRP_33', 'GRP_0', 'GRP_14', 'GRP_24', 'GRP_0', 'GRP_0',
'GRP_29', 'GRP_41', 'GRP_27', 'GRP_0', 'GRP_29', 'GRP_13', 'GRP_0',
'GRP_60', 'GRP_48', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_3', 'GRP_0',
'GRP_14', 'GRP_34', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_8', 'GRP_0',
'GRP_0', 'GRP_3', 'GRP_0', 'GRP_9', 'GRP_24', 'GRP_23', 'GRP_30',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_16', 'GRP_25', 'GRP_0',
'GRP_6', 'GRP_0', 'GRP_54', 'GRP_0', 'GRP_1', 'GRP_0', 'GRP_7',
'GRP_13', 'GRP_0', 'GRP_12', 'GRP_0', 'GRP_6', 'GRP_33', 'GRP_30',
'GRP_60', 'GRP_8', 'GRP_0', 'GRP_12', 'GRP_24', 'GRP_3', 'GRP_0',
'GRP_10', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_10',
'GRP_0', 'GRP_8', 'GRP_23', 'GRP_13', 'GRP_0', 'GRP_8', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_42', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_31',
'GRP_0', 'GRP_47', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_5', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_1', 'GRP_12',
'GRP_9', 'GRP_52', 'GRP_19', 'GRP_4', 'GRP_0', 'GRP_0', 'GRP_55',
'GRP_37', 'GRP_13', 'GRP_5', 'GRP_0', 'GRP_19', 'GRP_0', 'GRP_25',
'GRP_15', 'GRP_16', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_40', 'GRP_0', 'GRP_0', 'GRP_17', 'GRP_2', 'GRP_27',
'GRP_0', 'GRP_49', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_31',
'GRP_62', 'GRP_13', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_0', 'GRP_19',
'GRP_3', 'GRP_28', 'GRP_62', 'GRP_0', 'GRP_8', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_39', 'GRP_16', 'GRP_0',
'GRP_2', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_62', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_4', 'GRP_18', 'GRP_33', 'GRP_9', 'GRP_13',
'GRP_13', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_65', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_13', 'GRP_19', 'GRP_34', 'GRP_0', 'GRP_4', 'GRP_0',
'GRP_40', 'GRP_65', 'GRP_0', 'GRP_6', 'GRP_24', 'GRP_41', 'GRP_12',
'GRP_30', 'GRP_42', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_4',
'GRP_5', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_13', 'GRP_24', 'GRP_30',
'GRP_8', 'GRP_0', 'GRP_3', 'GRP_0', 'GRP_33', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_13', 'GRP_13', 'GRP_13', 'GRP_13', 'GRP_13',
'GRP_31', 'GRP_17', 'GRP_25', 'GRP_0', 'GRP_4', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_24', 'GRP_47', 'GRP_0', 'GRP_4', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_12', 'GRP_14', 'GRP_36', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_16', 'GRP_69', 'GRP_34', 'GRP_28', 'GRP_0', 'GRP_28', 'GRP_0',
'GRP_29', 'GRP_12', 'GRP_0', 'GRP_3', 'GRP_0', 'GRP_48', 'GRP_5',
'GRP_3', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_2', 'GRP_10', 'GRP_0',
'GRP_6', 'GRP_16', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_24', 'GRP_9', 'GRP_23', 'GRP_0',
'GRP_25', 'GRP_16', 'GRP_0', 'GRP_1', 'GRP_9', 'GRP_33', 'GRP_18',
'GRP_0', 'GRP_0', 'GRP_26', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_10', 'GRP_0', 'GRP_40', 'GRP_8', 'GRP_24', 'GRP_44', 'GRP_47',
'GRP_10', 'GRP_3', 'GRP_47', 'GRP_0', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_19', 'GRP_0', 'GRP_5', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_0', 'GRP_28', 'GRP_29', 'GRP_13', 'GRP_24',
'GRP_0', 'GRP_31', 'GRP_2', 'GRP_1', 'GRP_0', 'GRP_0', 'GRP_3',
'GRP_0', 'GRP_60', 'GRP_0', 'GRP_0', 'GRP_20', 'GRP_17', 'GRP_0',
'GRP_0', 'GRP_12', 'GRP_0', 'GRP_13', 'GRP_0', 'GRP_0', 'GRP_0',
'GRP_8', 'GRP_14', 'GRP_18', 'GRP_1', 'GRP_47', 'GRP_0', 'GRP_0',
'GRP_0', 'GRP_4', 'GRP_12', 'GRP_16', 'GRP_16', 'GRP_0', 'GRP_8',
'GRP_0', 'GRP_24', 'GRP_12', 'GRP_29', 'GRP_5', 'GRP_33', 'GRP_0',
'GRP_0', 'GRP_0', 'GRP_17', 'GRP_8', 'GRP_0', 'GRP_28'],
dtype=object)
len(y_pred2) # Checking length of y_pred2
845
len(y_test_final) # Checking length of y_test_final
845
y_test_final
6645 GRP_41
5399 GRP_0
2883 GRP_0
1570 GRP_9
6680 GRP_34
...
5575 GRP_0
5848 GRP_17
8048 GRP_8
444 GRP_0
3269 GRP_4
Name: Assignment group, Length: 845, dtype: object
y_test_final = np.array(y_test_final) # Converting y_test_final into array for comparison with predicted data which is also an array
print('accuracy %s' % accuracy_score(y_pred2, y_test_final)) # Comparing between test and predicted data
print('f1 score %s' % f1_score(y_pred2, y_test_final,average='weighted'))
accuracy 0.7715976331360946 f1 score 0.7598849475279427
acc_df=pd.DataFrame(columns=['Model_Name','acc_score','f1_score'])
acc_df=acc_df.append({'Model_Name':'MultinomialNB','acc_score':0.667192,'f1_score':0.714364},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'KNN','acc_score':0.674290,'f1_score':0.736438},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'SVM','acc_score':0.543375,'f1_score':0.505016},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'Decision Tree','acc_score':0.604890,'f1_score':0.697461},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'Random Forest without tuning','acc_score':0.612426,'f1_score':0.700588},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'LSTM','acc_score':0.574,'f1_score':0.5},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'Custom classifier with resampling','acc_score':0.771598,'f1_score':0.759885},ignore_index=True)
acc_df=acc_df.append({'Model_Name':'KNN with resampled data without GRP_0','acc_score':0.932208,'f1_score':0.929371},ignore_index=True)
%matplotlib inline
acc_df_sorted= acc_df.sort_values('acc_score')
f = plt.figure()
f.set_figwidth(10)
f.set_figheight(6)
plt.title("Best accuracies and F1 scores of various techniques used in project")
plt.plot(acc_df_sorted["Model_Name"], acc_df_sorted["acc_score"], label = "Accuracy Score")
plt.plot(acc_df_sorted["Model_Name"], acc_df_sorted["f1_score"], label = "F1 Score")
plt.xticks(rotation=60)
plt.legend()
<matplotlib.legend.Legend at 0x1f64486af40>
The maximum accuracy was found with K Neighbors classifier of 66% - After applying Hyperparameter tuning on tokenized ticket description data (without padding) Below are the top 3 classifiers along with the methods:
K Neighbors with hp tuning (66%) > Multinomial NB with hp tuning (65%) > K Neighbors, XG Boost and SVM (without hp tuning)
To address these shortcomings, we had to define custom function to selectively remove these junk values from the dataset
Given data looked genuine with “Caller IDs” provided for each ticket. In industry practice, if there is a possibility of malicious tickets, we can build a solution to first verify the registered Caller IDs and then process the concerned tickets
The proposed classifier should be kept updated with by periodically monitoring the performance/ accuracy and accordingly refitting the models with updated data.